Reapply r162160 with a fix: Optimize Arith->Trunc->SETCC sequence to allow better...
[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 "X86.h"
18 #include "X86InstrBuilder.h"
19 #include "X86TargetMachine.h"
20 #include "X86TargetObjectFile.h"
21 #include "Utils/X86ShuffleDecode.h"
22 #include "llvm/CallingConv.h"
23 #include "llvm/Constants.h"
24 #include "llvm/DerivedTypes.h"
25 #include "llvm/GlobalAlias.h"
26 #include "llvm/GlobalVariable.h"
27 #include "llvm/Function.h"
28 #include "llvm/Instructions.h"
29 #include "llvm/Intrinsics.h"
30 #include "llvm/LLVMContext.h"
31 #include "llvm/CodeGen/IntrinsicLowering.h"
32 #include "llvm/CodeGen/MachineFrameInfo.h"
33 #include "llvm/CodeGen/MachineFunction.h"
34 #include "llvm/CodeGen/MachineInstrBuilder.h"
35 #include "llvm/CodeGen/MachineJumpTableInfo.h"
36 #include "llvm/CodeGen/MachineModuleInfo.h"
37 #include "llvm/CodeGen/MachineRegisterInfo.h"
38 #include "llvm/MC/MCAsmInfo.h"
39 #include "llvm/MC/MCContext.h"
40 #include "llvm/MC/MCExpr.h"
41 #include "llvm/MC/MCSymbol.h"
42 #include "llvm/ADT/SmallSet.h"
43 #include "llvm/ADT/Statistic.h"
44 #include "llvm/ADT/StringExtras.h"
45 #include "llvm/ADT/VariadicFunction.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.getConstant(NormalizedIdxVal, MVT::i32);
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.getConstant(NormalizedIdxVal, MVT::i32);
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   X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
162
163   RegInfo = TM.getRegisterInfo();
164   TD = getTargetData();
165
166   // Set up the TargetLowering object.
167   static const MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
168
169   // X86 is weird, it always uses i8 for shift amounts and setcc results.
170   setBooleanContents(ZeroOrOneBooleanContent);
171   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
172   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
173
174   // For 64-bit since we have so many registers use the ILP scheduler, for
175   // 32-bit code use the register pressure specific scheduling.
176   // For Atom, always use ILP scheduling.
177   if (Subtarget->isAtom())
178     setSchedulingPreference(Sched::ILP);
179   else if (Subtarget->is64Bit())
180     setSchedulingPreference(Sched::ILP);
181   else
182     setSchedulingPreference(Sched::RegPressure);
183   setStackPointerRegisterToSaveRestore(X86StackPtr);
184
185   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
186     // Setup Windows compiler runtime calls.
187     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
188     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
189     setLibcallName(RTLIB::SREM_I64, "_allrem");
190     setLibcallName(RTLIB::UREM_I64, "_aullrem");
191     setLibcallName(RTLIB::MUL_I64, "_allmul");
192     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
193     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
194     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
195     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
196     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
197
198     // The _ftol2 runtime function has an unusual calling conv, which
199     // is modeled by a special pseudo-instruction.
200     setLibcallName(RTLIB::FPTOUINT_F64_I64, 0);
201     setLibcallName(RTLIB::FPTOUINT_F32_I64, 0);
202     setLibcallName(RTLIB::FPTOUINT_F64_I32, 0);
203     setLibcallName(RTLIB::FPTOUINT_F32_I32, 0);
204   }
205
206   if (Subtarget->isTargetDarwin()) {
207     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
208     setUseUnderscoreSetJmp(false);
209     setUseUnderscoreLongJmp(false);
210   } else if (Subtarget->isTargetMingw()) {
211     // MS runtime is weird: it exports _setjmp, but longjmp!
212     setUseUnderscoreSetJmp(true);
213     setUseUnderscoreLongJmp(false);
214   } else {
215     setUseUnderscoreSetJmp(true);
216     setUseUnderscoreLongJmp(true);
217   }
218
219   // Set up the register classes.
220   addRegisterClass(MVT::i8, &X86::GR8RegClass);
221   addRegisterClass(MVT::i16, &X86::GR16RegClass);
222   addRegisterClass(MVT::i32, &X86::GR32RegClass);
223   if (Subtarget->is64Bit())
224     addRegisterClass(MVT::i64, &X86::GR64RegClass);
225
226   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
227
228   // We don't accept any truncstore of integer registers.
229   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
230   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
231   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
232   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
233   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
234   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
235
236   // SETOEQ and SETUNE require checking two conditions.
237   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
238   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
239   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
240   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
241   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
242   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
243
244   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
245   // operation.
246   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
247   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
248   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
249
250   if (Subtarget->is64Bit()) {
251     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
252     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
253   } else if (!TM.Options.UseSoftFloat) {
254     // We have an algorithm for SSE2->double, and we turn this into a
255     // 64-bit FILD followed by conditional FADD for other targets.
256     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
257     // We have an algorithm for SSE2, and we turn this into a 64-bit
258     // FILD for other targets.
259     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
260   }
261
262   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
263   // this operation.
264   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
265   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
266
267   if (!TM.Options.UseSoftFloat) {
268     // SSE has no i16 to fp conversion, only i32
269     if (X86ScalarSSEf32) {
270       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
271       // f32 and f64 cases are Legal, f80 case is not
272       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
273     } else {
274       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
275       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
276     }
277   } else {
278     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
279     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
280   }
281
282   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
283   // are Legal, f80 is custom lowered.
284   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
285   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
286
287   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
288   // this operation.
289   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
290   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
291
292   if (X86ScalarSSEf32) {
293     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
294     // f32 and f64 cases are Legal, f80 case is not
295     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
296   } else {
297     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
298     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
299   }
300
301   // Handle FP_TO_UINT by promoting the destination to a larger signed
302   // conversion.
303   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
304   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
305   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
306
307   if (Subtarget->is64Bit()) {
308     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
309     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
310   } else if (!TM.Options.UseSoftFloat) {
311     // Since AVX is a superset of SSE3, only check for SSE here.
312     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
313       // Expand FP_TO_UINT into a select.
314       // FIXME: We would like to use a Custom expander here eventually to do
315       // the optimal thing for SSE vs. the default expansion in the legalizer.
316       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
317     else
318       // With SSE3 we can use fisttpll to convert to a signed i64; without
319       // SSE, we're stuck with a fistpll.
320       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
321   }
322
323   if (isTargetFTOL()) {
324     // Use the _ftol2 runtime function, which has a pseudo-instruction
325     // to handle its weird calling convention.
326     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Custom);
327   }
328
329   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
330   if (!X86ScalarSSEf64) {
331     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
332     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
333     if (Subtarget->is64Bit()) {
334       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
335       // Without SSE, i64->f64 goes through memory.
336       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
337     }
338   }
339
340   // Scalar integer divide and remainder are lowered to use operations that
341   // produce two results, to match the available instructions. This exposes
342   // the two-result form to trivial CSE, which is able to combine x/y and x%y
343   // into a single instruction.
344   //
345   // Scalar integer multiply-high is also lowered to use two-result
346   // operations, to match the available instructions. However, plain multiply
347   // (low) operations are left as Legal, as there are single-result
348   // instructions for this in x86. Using the two-result multiply instructions
349   // when both high and low results are needed must be arranged by dagcombine.
350   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
351     MVT VT = IntVTs[i];
352     setOperationAction(ISD::MULHS, VT, Expand);
353     setOperationAction(ISD::MULHU, VT, Expand);
354     setOperationAction(ISD::SDIV, VT, Expand);
355     setOperationAction(ISD::UDIV, VT, Expand);
356     setOperationAction(ISD::SREM, VT, Expand);
357     setOperationAction(ISD::UREM, VT, Expand);
358
359     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
360     setOperationAction(ISD::ADDC, VT, Custom);
361     setOperationAction(ISD::ADDE, VT, Custom);
362     setOperationAction(ISD::SUBC, VT, Custom);
363     setOperationAction(ISD::SUBE, VT, Custom);
364   }
365
366   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
367   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
368   setOperationAction(ISD::BR_CC            , MVT::Other, Expand);
369   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
370   if (Subtarget->is64Bit())
371     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
372   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
373   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
374   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
375   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
376   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
377   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
378   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
379   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
380
381   // Promote the i8 variants and force them on up to i32 which has a shorter
382   // encoding.
383   setOperationAction(ISD::CTTZ             , MVT::i8   , Promote);
384   AddPromotedToType (ISD::CTTZ             , MVT::i8   , MVT::i32);
385   setOperationAction(ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , Promote);
386   AddPromotedToType (ISD::CTTZ_ZERO_UNDEF  , MVT::i8   , MVT::i32);
387   if (Subtarget->hasBMI()) {
388     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i16  , Expand);
389     setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i32  , Expand);
390     if (Subtarget->is64Bit())
391       setOperationAction(ISD::CTTZ_ZERO_UNDEF, MVT::i64, Expand);
392   } else {
393     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
394     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
395     if (Subtarget->is64Bit())
396       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
397   }
398
399   if (Subtarget->hasLZCNT()) {
400     // When promoting the i8 variants, force them to i32 for a shorter
401     // encoding.
402     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
403     AddPromotedToType (ISD::CTLZ           , MVT::i8   , MVT::i32);
404     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Promote);
405     AddPromotedToType (ISD::CTLZ_ZERO_UNDEF, MVT::i8   , MVT::i32);
406     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Expand);
407     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Expand);
408     if (Subtarget->is64Bit())
409       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Expand);
410   } else {
411     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
412     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
413     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
414     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i8   , Custom);
415     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i16  , Custom);
416     setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i32  , Custom);
417     if (Subtarget->is64Bit()) {
418       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
419       setOperationAction(ISD::CTLZ_ZERO_UNDEF, MVT::i64, Custom);
420     }
421   }
422
423   if (Subtarget->hasPOPCNT()) {
424     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
425   } else {
426     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
427     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
428     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
429     if (Subtarget->is64Bit())
430       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
431   }
432
433   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
434   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
435
436   // These should be promoted to a larger select which is supported.
437   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
438   // X86 wants to expand cmov itself.
439   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
440   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
441   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
442   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
443   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
444   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
445   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
446   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
447   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
448   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
449   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
450   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
451   if (Subtarget->is64Bit()) {
452     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
453     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
454   }
455   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
456
457   // Darwin ABI issue.
458   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
459   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
460   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
461   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
462   if (Subtarget->is64Bit())
463     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
464   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
465   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
466   if (Subtarget->is64Bit()) {
467     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
468     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
469     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
470     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
471     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
472   }
473   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
474   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
475   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
476   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
477   if (Subtarget->is64Bit()) {
478     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
479     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
480     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
481   }
482
483   if (Subtarget->hasSSE1())
484     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
485
486   setOperationAction(ISD::MEMBARRIER    , MVT::Other, Custom);
487   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
488
489   // On X86 and X86-64, atomic operations are lowered to locked instructions.
490   // Locked instructions, in turn, have implicit fence semantics (all memory
491   // operations are flushed before issuing the locked instruction, and they
492   // are not buffered), so we can fold away the common pattern of
493   // fence-atomic-fence.
494   setShouldFoldAtomicFences(true);
495
496   // Expand certain atomics
497   for (unsigned i = 0; i != array_lengthof(IntVTs); ++i) {
498     MVT VT = IntVTs[i];
499     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
500     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
501     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
502   }
503
504   if (!Subtarget->is64Bit()) {
505     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
506     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
507     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
508     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
509     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
510     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
511     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
512     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
513   }
514
515   if (Subtarget->hasCmpxchg16b()) {
516     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
517   }
518
519   // FIXME - use subtarget debug flags
520   if (!Subtarget->isTargetDarwin() &&
521       !Subtarget->isTargetELF() &&
522       !Subtarget->isTargetCygMing()) {
523     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
524   }
525
526   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
527   setOperationAction(ISD::EHSELECTION,   MVT::i64, Expand);
528   setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
529   setOperationAction(ISD::EHSELECTION,   MVT::i32, Expand);
530   if (Subtarget->is64Bit()) {
531     setExceptionPointerRegister(X86::RAX);
532     setExceptionSelectorRegister(X86::RDX);
533   } else {
534     setExceptionPointerRegister(X86::EAX);
535     setExceptionSelectorRegister(X86::EDX);
536   }
537   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
538   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
539
540   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
541   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
542
543   setOperationAction(ISD::TRAP, MVT::Other, Legal);
544
545   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
546   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
547   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
548   if (Subtarget->is64Bit()) {
549     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
550     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
551   } else {
552     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
553     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
554   }
555
556   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
557   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
558
559   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
560     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
561                        MVT::i64 : MVT::i32, Custom);
562   else if (TM.Options.EnableSegmentedStacks)
563     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
564                        MVT::i64 : MVT::i32, Custom);
565   else
566     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
567                        MVT::i64 : MVT::i32, Expand);
568
569   if (!TM.Options.UseSoftFloat && X86ScalarSSEf64) {
570     // f32 and f64 use SSE.
571     // Set up the FP register classes.
572     addRegisterClass(MVT::f32, &X86::FR32RegClass);
573     addRegisterClass(MVT::f64, &X86::FR64RegClass);
574
575     // Use ANDPD to simulate FABS.
576     setOperationAction(ISD::FABS , MVT::f64, Custom);
577     setOperationAction(ISD::FABS , MVT::f32, Custom);
578
579     // Use XORP to simulate FNEG.
580     setOperationAction(ISD::FNEG , MVT::f64, Custom);
581     setOperationAction(ISD::FNEG , MVT::f32, Custom);
582
583     // Use ANDPD and ORPD to simulate FCOPYSIGN.
584     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
585     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
586
587     // Lower this to FGETSIGNx86 plus an AND.
588     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
589     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
590
591     // We don't support sin/cos/fmod
592     setOperationAction(ISD::FSIN , MVT::f64, Expand);
593     setOperationAction(ISD::FCOS , MVT::f64, Expand);
594     setOperationAction(ISD::FSIN , MVT::f32, Expand);
595     setOperationAction(ISD::FCOS , MVT::f32, Expand);
596
597     // Expand FP immediates into loads from the stack, except for the special
598     // cases we handle.
599     addLegalFPImmediate(APFloat(+0.0)); // xorpd
600     addLegalFPImmediate(APFloat(+0.0f)); // xorps
601   } else if (!TM.Options.UseSoftFloat && X86ScalarSSEf32) {
602     // Use SSE for f32, x87 for f64.
603     // Set up the FP register classes.
604     addRegisterClass(MVT::f32, &X86::FR32RegClass);
605     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
606
607     // Use ANDPS to simulate FABS.
608     setOperationAction(ISD::FABS , MVT::f32, Custom);
609
610     // Use XORP to simulate FNEG.
611     setOperationAction(ISD::FNEG , MVT::f32, Custom);
612
613     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
614
615     // Use ANDPS and ORPS to simulate FCOPYSIGN.
616     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
617     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
618
619     // We don't support sin/cos/fmod
620     setOperationAction(ISD::FSIN , MVT::f32, Expand);
621     setOperationAction(ISD::FCOS , MVT::f32, Expand);
622
623     // Special cases we handle for FP constants.
624     addLegalFPImmediate(APFloat(+0.0f)); // xorps
625     addLegalFPImmediate(APFloat(+0.0)); // FLD0
626     addLegalFPImmediate(APFloat(+1.0)); // FLD1
627     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
628     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
629
630     if (!TM.Options.UnsafeFPMath) {
631       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
632       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
633     }
634   } else if (!TM.Options.UseSoftFloat) {
635     // f32 and f64 in x87.
636     // Set up the FP register classes.
637     addRegisterClass(MVT::f64, &X86::RFP64RegClass);
638     addRegisterClass(MVT::f32, &X86::RFP32RegClass);
639
640     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
641     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
642     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
643     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
644
645     if (!TM.Options.UnsafeFPMath) {
646       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
647       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
648     }
649     addLegalFPImmediate(APFloat(+0.0)); // FLD0
650     addLegalFPImmediate(APFloat(+1.0)); // FLD1
651     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
652     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
653     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
654     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
655     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
656     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
657   }
658
659   // We don't support FMA.
660   setOperationAction(ISD::FMA, MVT::f64, Expand);
661   setOperationAction(ISD::FMA, MVT::f32, Expand);
662
663   // Long double always uses X87.
664   if (!TM.Options.UseSoftFloat) {
665     addRegisterClass(MVT::f80, &X86::RFP80RegClass);
666     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
667     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
668     {
669       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
670       addLegalFPImmediate(TmpFlt);  // FLD0
671       TmpFlt.changeSign();
672       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
673
674       bool ignored;
675       APFloat TmpFlt2(+1.0);
676       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
677                       &ignored);
678       addLegalFPImmediate(TmpFlt2);  // FLD1
679       TmpFlt2.changeSign();
680       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
681     }
682
683     if (!TM.Options.UnsafeFPMath) {
684       setOperationAction(ISD::FSIN           , MVT::f80  , Expand);
685       setOperationAction(ISD::FCOS           , MVT::f80  , Expand);
686     }
687
688     setOperationAction(ISD::FFLOOR, MVT::f80, Expand);
689     setOperationAction(ISD::FCEIL,  MVT::f80, Expand);
690     setOperationAction(ISD::FTRUNC, MVT::f80, Expand);
691     setOperationAction(ISD::FRINT,  MVT::f80, Expand);
692     setOperationAction(ISD::FNEARBYINT, MVT::f80, Expand);
693     setOperationAction(ISD::FMA, MVT::f80, Expand);
694   }
695
696   // Always use a library call for pow.
697   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
698   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
699   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
700
701   setOperationAction(ISD::FLOG, MVT::f80, Expand);
702   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
703   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
704   setOperationAction(ISD::FEXP, MVT::f80, Expand);
705   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
706
707   // First set operation action for all vector types to either promote
708   // (for widening) or expand (for scalarization). Then we will selectively
709   // turn on ones that can be effectively codegen'd.
710   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
711            VT <= MVT::LAST_VECTOR_VALUETYPE; ++VT) {
712     setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
713     setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
714     setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
715     setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
716     setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
717     setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
718     setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
719     setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
720     setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
721     setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
722     setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
723     setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
724     setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
725     setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
726     setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
727     setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
728     setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
729     setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
730     setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
731     setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
732     setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
733     setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
734     setOperationAction(ISD::FMA,  (MVT::SimpleValueType)VT, Expand);
735     setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
736     setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
737     setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
738     setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
739     setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
740     setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
741     setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
742     setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
743     setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
744     setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
745     setOperationAction(ISD::CTTZ_ZERO_UNDEF, (MVT::SimpleValueType)VT, Expand);
746     setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
747     setOperationAction(ISD::CTLZ_ZERO_UNDEF, (MVT::SimpleValueType)VT, Expand);
748     setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
749     setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
750     setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
751     setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
752     setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
753     setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
754     setOperationAction(ISD::SETCC, (MVT::SimpleValueType)VT, Expand);
755     setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
756     setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
757     setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
758     setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
759     setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
760     setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
761     setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
762     setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
763     setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
764     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
765     setOperationAction(ISD::TRUNCATE,  (MVT::SimpleValueType)VT, Expand);
766     setOperationAction(ISD::SIGN_EXTEND,  (MVT::SimpleValueType)VT, Expand);
767     setOperationAction(ISD::ZERO_EXTEND,  (MVT::SimpleValueType)VT, Expand);
768     setOperationAction(ISD::ANY_EXTEND,  (MVT::SimpleValueType)VT, Expand);
769     setOperationAction(ISD::VSELECT,  (MVT::SimpleValueType)VT, Expand);
770     for (int InnerVT = MVT::FIRST_VECTOR_VALUETYPE;
771              InnerVT <= MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
772       setTruncStoreAction((MVT::SimpleValueType)VT,
773                           (MVT::SimpleValueType)InnerVT, Expand);
774     setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
775     setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
776     setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
777   }
778
779   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
780   // with -msoft-float, disable use of MMX as well.
781   if (!TM.Options.UseSoftFloat && Subtarget->hasMMX()) {
782     addRegisterClass(MVT::x86mmx, &X86::VR64RegClass);
783     // No operations on x86mmx supported, everything uses intrinsics.
784   }
785
786   // MMX-sized vectors (other than x86mmx) are expected to be expanded
787   // into smaller operations.
788   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
789   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
790   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
791   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
792   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
793   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
794   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
795   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
796   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
797   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
798   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
799   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
800   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
801   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
802   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
803   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
804   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
805   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
806   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
807   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
808   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
809   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
810   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
811   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
812   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
813   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
814   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
815   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
816   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
817
818   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE1()) {
819     addRegisterClass(MVT::v4f32, &X86::VR128RegClass);
820
821     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
822     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
823     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
824     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
825     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
826     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
827     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
828     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
829     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
830     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
831     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
832   }
833
834   if (!TM.Options.UseSoftFloat && Subtarget->hasSSE2()) {
835     addRegisterClass(MVT::v2f64, &X86::VR128RegClass);
836
837     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
838     // registers cannot be used even for integer operations.
839     addRegisterClass(MVT::v16i8, &X86::VR128RegClass);
840     addRegisterClass(MVT::v8i16, &X86::VR128RegClass);
841     addRegisterClass(MVT::v4i32, &X86::VR128RegClass);
842     addRegisterClass(MVT::v2i64, &X86::VR128RegClass);
843
844     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
845     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
846     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
847     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
848     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
849     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
850     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
851     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
852     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
853     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
854     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
855     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
856     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
857     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
858     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
859     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
860
861     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
862     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
863     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
864     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
865
866     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
867     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
868     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
869     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
870     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
871
872     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
873     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
874       MVT VT = (MVT::SimpleValueType)i;
875       // Do not attempt to custom lower non-power-of-2 vectors
876       if (!isPowerOf2_32(VT.getVectorNumElements()))
877         continue;
878       // Do not attempt to custom lower non-128-bit vectors
879       if (!VT.is128BitVector())
880         continue;
881       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
882       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
883       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
884     }
885
886     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
887     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
888     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
889     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
890     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
891     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
892
893     if (Subtarget->is64Bit()) {
894       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
895       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
896     }
897
898     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
899     for (int i = MVT::v16i8; i != MVT::v2i64; ++i) {
900       MVT VT = (MVT::SimpleValueType)i;
901
902       // Do not attempt to promote non-128-bit vectors
903       if (!VT.is128BitVector())
904         continue;
905
906       setOperationAction(ISD::AND,    VT, Promote);
907       AddPromotedToType (ISD::AND,    VT, MVT::v2i64);
908       setOperationAction(ISD::OR,     VT, Promote);
909       AddPromotedToType (ISD::OR,     VT, MVT::v2i64);
910       setOperationAction(ISD::XOR,    VT, Promote);
911       AddPromotedToType (ISD::XOR,    VT, MVT::v2i64);
912       setOperationAction(ISD::LOAD,   VT, Promote);
913       AddPromotedToType (ISD::LOAD,   VT, MVT::v2i64);
914       setOperationAction(ISD::SELECT, VT, Promote);
915       AddPromotedToType (ISD::SELECT, VT, MVT::v2i64);
916     }
917
918     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
919
920     // Custom lower v2i64 and v2f64 selects.
921     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
922     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
923     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
924     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
925
926     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
927     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
928   }
929
930   if (Subtarget->hasSSE41()) {
931     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
932     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
933     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
934     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
935     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
936     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
937     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
938     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
939     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
940     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
941
942     // FIXME: Do we need to handle scalar-to-vector here?
943     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
944
945     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
946     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
947     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
948     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
949     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
950
951     // i8 and i16 vectors are custom , because the source register and source
952     // source memory operand types are not the same width.  f32 vectors are
953     // custom since the immediate controlling the insert encodes additional
954     // information.
955     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
956     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
957     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
958     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
959
960     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
961     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
962     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
963     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
964
965     // FIXME: these should be Legal but thats only for the case where
966     // the index is constant.  For now custom expand to deal with that.
967     if (Subtarget->is64Bit()) {
968       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
969       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
970     }
971   }
972
973   if (Subtarget->hasSSE2()) {
974     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
975     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
976
977     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
978     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
979
980     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
981     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
982
983     if (Subtarget->hasAVX2()) {
984       setOperationAction(ISD::SRL,             MVT::v2i64, Legal);
985       setOperationAction(ISD::SRL,             MVT::v4i32, Legal);
986
987       setOperationAction(ISD::SHL,             MVT::v2i64, Legal);
988       setOperationAction(ISD::SHL,             MVT::v4i32, Legal);
989
990       setOperationAction(ISD::SRA,             MVT::v4i32, Legal);
991     } else {
992       setOperationAction(ISD::SRL,             MVT::v2i64, Custom);
993       setOperationAction(ISD::SRL,             MVT::v4i32, Custom);
994
995       setOperationAction(ISD::SHL,             MVT::v2i64, Custom);
996       setOperationAction(ISD::SHL,             MVT::v4i32, Custom);
997
998       setOperationAction(ISD::SRA,             MVT::v4i32, Custom);
999     }
1000   }
1001
1002   if (!TM.Options.UseSoftFloat && Subtarget->hasAVX()) {
1003     addRegisterClass(MVT::v32i8,  &X86::VR256RegClass);
1004     addRegisterClass(MVT::v16i16, &X86::VR256RegClass);
1005     addRegisterClass(MVT::v8i32,  &X86::VR256RegClass);
1006     addRegisterClass(MVT::v8f32,  &X86::VR256RegClass);
1007     addRegisterClass(MVT::v4i64,  &X86::VR256RegClass);
1008     addRegisterClass(MVT::v4f64,  &X86::VR256RegClass);
1009
1010     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
1011     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
1012     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
1013
1014     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
1015     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1016     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1017     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1018     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1019     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1020
1021     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1022     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1023     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1024     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1025     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1026     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1027
1028     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1029     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1030     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1031
1032     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1033     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1034
1035     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1036     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1037
1038     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1039     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1040
1041     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1042     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1043     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1044     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1045
1046     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1047     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1048     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1049
1050     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1051     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1052     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1053     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1054
1055     if (Subtarget->hasFMA()) {
1056       setOperationAction(ISD::FMA,             MVT::v8f32, Custom);
1057       setOperationAction(ISD::FMA,             MVT::v4f64, Custom);
1058       setOperationAction(ISD::FMA,             MVT::v4f32, Custom);
1059       setOperationAction(ISD::FMA,             MVT::v2f64, Custom);
1060       setOperationAction(ISD::FMA,             MVT::f32, Custom);
1061       setOperationAction(ISD::FMA,             MVT::f64, Custom);
1062     }
1063
1064     if (Subtarget->hasAVX2()) {
1065       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1066       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1067       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1068       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1069
1070       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1071       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1072       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1073       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1074
1075       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1076       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1077       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1078       // Don't lower v32i8 because there is no 128-bit byte mul
1079
1080       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1081
1082       setOperationAction(ISD::SRL,             MVT::v4i64, Legal);
1083       setOperationAction(ISD::SRL,             MVT::v8i32, Legal);
1084
1085       setOperationAction(ISD::SHL,             MVT::v4i64, Legal);
1086       setOperationAction(ISD::SHL,             MVT::v8i32, Legal);
1087
1088       setOperationAction(ISD::SRA,             MVT::v8i32, Legal);
1089     } else {
1090       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1091       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1092       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1093       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1094
1095       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1096       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1097       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1098       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1099
1100       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1101       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1102       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1103       // Don't lower v32i8 because there is no 128-bit byte mul
1104
1105       setOperationAction(ISD::SRL,             MVT::v4i64, Custom);
1106       setOperationAction(ISD::SRL,             MVT::v8i32, Custom);
1107
1108       setOperationAction(ISD::SHL,             MVT::v4i64, Custom);
1109       setOperationAction(ISD::SHL,             MVT::v8i32, Custom);
1110
1111       setOperationAction(ISD::SRA,             MVT::v8i32, Custom);
1112     }
1113
1114     // Custom lower several nodes for 256-bit types.
1115     for (int i = MVT::FIRST_VECTOR_VALUETYPE;
1116              i <= MVT::LAST_VECTOR_VALUETYPE; ++i) {
1117       MVT VT = (MVT::SimpleValueType)i;
1118
1119       // Extract subvector is special because the value type
1120       // (result) is 128-bit but the source is 256-bit wide.
1121       if (VT.is128BitVector())
1122         setOperationAction(ISD::EXTRACT_SUBVECTOR, VT, Custom);
1123
1124       // Do not attempt to custom lower other non-256-bit vectors
1125       if (!VT.is256BitVector())
1126         continue;
1127
1128       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
1129       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
1130       setOperationAction(ISD::INSERT_VECTOR_ELT,  VT, Custom);
1131       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
1132       setOperationAction(ISD::SCALAR_TO_VECTOR,   VT, Custom);
1133       setOperationAction(ISD::INSERT_SUBVECTOR,   VT, Custom);
1134       setOperationAction(ISD::CONCAT_VECTORS,     VT, Custom);
1135     }
1136
1137     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1138     for (int i = MVT::v32i8; i != MVT::v4i64; ++i) {
1139       MVT VT = (MVT::SimpleValueType)i;
1140
1141       // Do not attempt to promote non-256-bit vectors
1142       if (!VT.is256BitVector())
1143         continue;
1144
1145       setOperationAction(ISD::AND,    VT, Promote);
1146       AddPromotedToType (ISD::AND,    VT, MVT::v4i64);
1147       setOperationAction(ISD::OR,     VT, Promote);
1148       AddPromotedToType (ISD::OR,     VT, MVT::v4i64);
1149       setOperationAction(ISD::XOR,    VT, Promote);
1150       AddPromotedToType (ISD::XOR,    VT, MVT::v4i64);
1151       setOperationAction(ISD::LOAD,   VT, Promote);
1152       AddPromotedToType (ISD::LOAD,   VT, MVT::v4i64);
1153       setOperationAction(ISD::SELECT, VT, Promote);
1154       AddPromotedToType (ISD::SELECT, VT, MVT::v4i64);
1155     }
1156   }
1157
1158   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1159   // of this type with custom code.
1160   for (int VT = MVT::FIRST_VECTOR_VALUETYPE;
1161            VT != MVT::LAST_VECTOR_VALUETYPE; VT++) {
1162     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,
1163                        Custom);
1164   }
1165
1166   // We want to custom lower some of our intrinsics.
1167   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1168   setOperationAction(ISD::INTRINSIC_W_CHAIN, MVT::Other, Custom);
1169
1170
1171   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1172   // handle type legalization for these operations here.
1173   //
1174   // FIXME: We really should do custom legalization for addition and
1175   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1176   // than generic legalization for 64-bit multiplication-with-overflow, though.
1177   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1178     // Add/Sub/Mul with overflow operations are custom lowered.
1179     MVT VT = IntVTs[i];
1180     setOperationAction(ISD::SADDO, VT, Custom);
1181     setOperationAction(ISD::UADDO, VT, Custom);
1182     setOperationAction(ISD::SSUBO, VT, Custom);
1183     setOperationAction(ISD::USUBO, VT, Custom);
1184     setOperationAction(ISD::SMULO, VT, Custom);
1185     setOperationAction(ISD::UMULO, VT, Custom);
1186   }
1187
1188   // There are no 8-bit 3-address imul/mul instructions
1189   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1190   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1191
1192   if (!Subtarget->is64Bit()) {
1193     // These libcalls are not available in 32-bit.
1194     setLibcallName(RTLIB::SHL_I128, 0);
1195     setLibcallName(RTLIB::SRL_I128, 0);
1196     setLibcallName(RTLIB::SRA_I128, 0);
1197   }
1198
1199   // We have target-specific dag combine patterns for the following nodes:
1200   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1201   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1202   setTargetDAGCombine(ISD::VSELECT);
1203   setTargetDAGCombine(ISD::SELECT);
1204   setTargetDAGCombine(ISD::SHL);
1205   setTargetDAGCombine(ISD::SRA);
1206   setTargetDAGCombine(ISD::SRL);
1207   setTargetDAGCombine(ISD::OR);
1208   setTargetDAGCombine(ISD::AND);
1209   setTargetDAGCombine(ISD::ADD);
1210   setTargetDAGCombine(ISD::FADD);
1211   setTargetDAGCombine(ISD::FSUB);
1212   setTargetDAGCombine(ISD::FMA);
1213   setTargetDAGCombine(ISD::SUB);
1214   setTargetDAGCombine(ISD::LOAD);
1215   setTargetDAGCombine(ISD::STORE);
1216   setTargetDAGCombine(ISD::ZERO_EXTEND);
1217   setTargetDAGCombine(ISD::ANY_EXTEND);
1218   setTargetDAGCombine(ISD::SIGN_EXTEND);
1219   setTargetDAGCombine(ISD::TRUNCATE);
1220   setTargetDAGCombine(ISD::UINT_TO_FP);
1221   setTargetDAGCombine(ISD::SINT_TO_FP);
1222   setTargetDAGCombine(ISD::SETCC);
1223   setTargetDAGCombine(ISD::FP_TO_SINT);
1224   if (Subtarget->is64Bit())
1225     setTargetDAGCombine(ISD::MUL);
1226   setTargetDAGCombine(ISD::XOR);
1227
1228   computeRegisterProperties();
1229
1230   // On Darwin, -Os means optimize for size without hurting performance,
1231   // do not reduce the limit.
1232   maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1233   maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1234   maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1235   maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1236   maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1237   maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1238   setPrefLoopAlignment(4); // 2^4 bytes.
1239   benefitFromCodePlacementOpt = true;
1240
1241   // Predictable cmov don't hurt on atom because it's in-order.
1242   predictableSelectIsExpensive = !Subtarget->isAtom();
1243
1244   setPrefFunctionAlignment(4); // 2^4 bytes.
1245 }
1246
1247
1248 EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1249   if (!VT.isVector()) return MVT::i8;
1250   return VT.changeVectorElementTypeToInteger();
1251 }
1252
1253
1254 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1255 /// the desired ByVal argument alignment.
1256 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1257   if (MaxAlign == 16)
1258     return;
1259   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1260     if (VTy->getBitWidth() == 128)
1261       MaxAlign = 16;
1262   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1263     unsigned EltAlign = 0;
1264     getMaxByValAlign(ATy->getElementType(), EltAlign);
1265     if (EltAlign > MaxAlign)
1266       MaxAlign = EltAlign;
1267   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1268     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1269       unsigned EltAlign = 0;
1270       getMaxByValAlign(STy->getElementType(i), EltAlign);
1271       if (EltAlign > MaxAlign)
1272         MaxAlign = EltAlign;
1273       if (MaxAlign == 16)
1274         break;
1275     }
1276   }
1277 }
1278
1279 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1280 /// function arguments in the caller parameter area. For X86, aggregates
1281 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1282 /// are at 4-byte boundaries.
1283 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1284   if (Subtarget->is64Bit()) {
1285     // Max of 8 and alignment of type.
1286     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1287     if (TyAlign > 8)
1288       return TyAlign;
1289     return 8;
1290   }
1291
1292   unsigned Align = 4;
1293   if (Subtarget->hasSSE1())
1294     getMaxByValAlign(Ty, Align);
1295   return Align;
1296 }
1297
1298 /// getOptimalMemOpType - Returns the target specific optimal type for load
1299 /// and store operations as a result of memset, memcpy, and memmove
1300 /// lowering. If DstAlign is zero that means it's safe to destination
1301 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1302 /// means there isn't a need to check it against alignment requirement,
1303 /// probably because the source does not need to be loaded. If
1304 /// 'IsZeroVal' is true, that means it's safe to return a
1305 /// non-scalar-integer type, e.g. empty string source, constant, or loaded
1306 /// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1307 /// constant so it does not need to be loaded.
1308 /// It returns EVT::Other if the type should be determined using generic
1309 /// target-independent logic.
1310 EVT
1311 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1312                                        unsigned DstAlign, unsigned SrcAlign,
1313                                        bool IsZeroVal,
1314                                        bool MemcpyStrSrc,
1315                                        MachineFunction &MF) const {
1316   // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1317   // linux.  This is because the stack realignment code can't handle certain
1318   // cases like PR2962.  This should be removed when PR2962 is fixed.
1319   const Function *F = MF.getFunction();
1320   if (IsZeroVal &&
1321       !F->hasFnAttr(Attribute::NoImplicitFloat)) {
1322     if (Size >= 16 &&
1323         (Subtarget->isUnalignedMemAccessFast() ||
1324          ((DstAlign == 0 || DstAlign >= 16) &&
1325           (SrcAlign == 0 || SrcAlign >= 16))) &&
1326         Subtarget->getStackAlignment() >= 16) {
1327       if (Subtarget->getStackAlignment() >= 32) {
1328         if (Subtarget->hasAVX2())
1329           return MVT::v8i32;
1330         if (Subtarget->hasAVX())
1331           return MVT::v8f32;
1332       }
1333       if (Subtarget->hasSSE2())
1334         return MVT::v4i32;
1335       if (Subtarget->hasSSE1())
1336         return MVT::v4f32;
1337     } else if (!MemcpyStrSrc && Size >= 8 &&
1338                !Subtarget->is64Bit() &&
1339                Subtarget->getStackAlignment() >= 8 &&
1340                Subtarget->hasSSE2()) {
1341       // Do not use f64 to lower memcpy if source is string constant. It's
1342       // better to use i32 to avoid the loads.
1343       return MVT::f64;
1344     }
1345   }
1346   if (Subtarget->is64Bit() && Size >= 8)
1347     return MVT::i64;
1348   return MVT::i32;
1349 }
1350
1351 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1352 /// current function.  The returned value is a member of the
1353 /// MachineJumpTableInfo::JTEntryKind enum.
1354 unsigned X86TargetLowering::getJumpTableEncoding() const {
1355   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1356   // symbol.
1357   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1358       Subtarget->isPICStyleGOT())
1359     return MachineJumpTableInfo::EK_Custom32;
1360
1361   // Otherwise, use the normal jump table encoding heuristics.
1362   return TargetLowering::getJumpTableEncoding();
1363 }
1364
1365 const MCExpr *
1366 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1367                                              const MachineBasicBlock *MBB,
1368                                              unsigned uid,MCContext &Ctx) const{
1369   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1370          Subtarget->isPICStyleGOT());
1371   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1372   // entries.
1373   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1374                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1375 }
1376
1377 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1378 /// jumptable.
1379 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1380                                                     SelectionDAG &DAG) const {
1381   if (!Subtarget->is64Bit())
1382     // This doesn't have DebugLoc associated with it, but is not really the
1383     // same as a Register.
1384     return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
1385   return Table;
1386 }
1387
1388 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1389 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1390 /// MCExpr.
1391 const MCExpr *X86TargetLowering::
1392 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1393                              MCContext &Ctx) const {
1394   // X86-64 uses RIP relative addressing based on the jump table label.
1395   if (Subtarget->isPICStyleRIPRel())
1396     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1397
1398   // Otherwise, the reference is relative to the PIC base.
1399   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1400 }
1401
1402 // FIXME: Why this routine is here? Move to RegInfo!
1403 std::pair<const TargetRegisterClass*, uint8_t>
1404 X86TargetLowering::findRepresentativeClass(EVT VT) const{
1405   const TargetRegisterClass *RRC = 0;
1406   uint8_t Cost = 1;
1407   switch (VT.getSimpleVT().SimpleTy) {
1408   default:
1409     return TargetLowering::findRepresentativeClass(VT);
1410   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1411     RRC = Subtarget->is64Bit() ?
1412       (const TargetRegisterClass*)&X86::GR64RegClass :
1413       (const TargetRegisterClass*)&X86::GR32RegClass;
1414     break;
1415   case MVT::x86mmx:
1416     RRC = &X86::VR64RegClass;
1417     break;
1418   case MVT::f32: case MVT::f64:
1419   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1420   case MVT::v4f32: case MVT::v2f64:
1421   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1422   case MVT::v4f64:
1423     RRC = &X86::VR128RegClass;
1424     break;
1425   }
1426   return std::make_pair(RRC, Cost);
1427 }
1428
1429 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1430                                                unsigned &Offset) const {
1431   if (!Subtarget->isTargetLinux())
1432     return false;
1433
1434   if (Subtarget->is64Bit()) {
1435     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1436     Offset = 0x28;
1437     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1438       AddressSpace = 256;
1439     else
1440       AddressSpace = 257;
1441   } else {
1442     // %gs:0x14 on i386
1443     Offset = 0x14;
1444     AddressSpace = 256;
1445   }
1446   return true;
1447 }
1448
1449
1450 //===----------------------------------------------------------------------===//
1451 //               Return Value Calling Convention Implementation
1452 //===----------------------------------------------------------------------===//
1453
1454 #include "X86GenCallingConv.inc"
1455
1456 bool
1457 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1458                                   MachineFunction &MF, bool isVarArg,
1459                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1460                         LLVMContext &Context) const {
1461   SmallVector<CCValAssign, 16> RVLocs;
1462   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1463                  RVLocs, Context);
1464   return CCInfo.CheckReturn(Outs, RetCC_X86);
1465 }
1466
1467 SDValue
1468 X86TargetLowering::LowerReturn(SDValue Chain,
1469                                CallingConv::ID CallConv, bool isVarArg,
1470                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1471                                const SmallVectorImpl<SDValue> &OutVals,
1472                                DebugLoc dl, SelectionDAG &DAG) const {
1473   MachineFunction &MF = DAG.getMachineFunction();
1474   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1475
1476   SmallVector<CCValAssign, 16> RVLocs;
1477   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1478                  RVLocs, *DAG.getContext());
1479   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1480
1481   // Add the regs to the liveout set for the function.
1482   MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1483   for (unsigned i = 0; i != RVLocs.size(); ++i)
1484     if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1485       MRI.addLiveOut(RVLocs[i].getLocReg());
1486
1487   SDValue Flag;
1488
1489   SmallVector<SDValue, 6> RetOps;
1490   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1491   // Operand #1 = Bytes To Pop
1492   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1493                    MVT::i16));
1494
1495   // Copy the result values into the output registers.
1496   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1497     CCValAssign &VA = RVLocs[i];
1498     assert(VA.isRegLoc() && "Can only return in registers!");
1499     SDValue ValToCopy = OutVals[i];
1500     EVT ValVT = ValToCopy.getValueType();
1501
1502     // Promote values to the appropriate types
1503     if (VA.getLocInfo() == CCValAssign::SExt)
1504       ValToCopy = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), ValToCopy);
1505     else if (VA.getLocInfo() == CCValAssign::ZExt)
1506       ValToCopy = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), ValToCopy);
1507     else if (VA.getLocInfo() == CCValAssign::AExt)
1508       ValToCopy = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), ValToCopy);
1509     else if (VA.getLocInfo() == CCValAssign::BCvt)
1510       ValToCopy = DAG.getNode(ISD::BITCAST, dl, VA.getLocVT(), ValToCopy);
1511
1512     // If this is x86-64, and we disabled SSE, we can't return FP values,
1513     // or SSE or MMX vectors.
1514     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1515          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1516           (Subtarget->is64Bit() && !Subtarget->hasSSE1())) {
1517       report_fatal_error("SSE register return with SSE disabled");
1518     }
1519     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1520     // llvm-gcc has never done it right and no one has noticed, so this
1521     // should be OK for now.
1522     if (ValVT == MVT::f64 &&
1523         (Subtarget->is64Bit() && !Subtarget->hasSSE2()))
1524       report_fatal_error("SSE2 register return with SSE2 disabled");
1525
1526     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1527     // the RET instruction and handled by the FP Stackifier.
1528     if (VA.getLocReg() == X86::ST0 ||
1529         VA.getLocReg() == X86::ST1) {
1530       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1531       // change the value to the FP stack register class.
1532       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1533         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1534       RetOps.push_back(ValToCopy);
1535       // Don't emit a copytoreg.
1536       continue;
1537     }
1538
1539     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1540     // which is returned in RAX / RDX.
1541     if (Subtarget->is64Bit()) {
1542       if (ValVT == MVT::x86mmx) {
1543         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1544           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1545           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1546                                   ValToCopy);
1547           // If we don't have SSE2 available, convert to v4f32 so the generated
1548           // register is legal.
1549           if (!Subtarget->hasSSE2())
1550             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1551         }
1552       }
1553     }
1554
1555     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1556     Flag = Chain.getValue(1);
1557   }
1558
1559   // The x86-64 ABI for returning structs by value requires that we copy
1560   // the sret argument into %rax for the return. We saved the argument into
1561   // a virtual register in the entry block, so now we copy the value out
1562   // and into %rax.
1563   if (Subtarget->is64Bit() &&
1564       DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1565     MachineFunction &MF = DAG.getMachineFunction();
1566     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1567     unsigned Reg = FuncInfo->getSRetReturnReg();
1568     assert(Reg &&
1569            "SRetReturnReg should have been set in LowerFormalArguments().");
1570     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1571
1572     Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
1573     Flag = Chain.getValue(1);
1574
1575     // RAX now acts like a return value.
1576     MRI.addLiveOut(X86::RAX);
1577   }
1578
1579   RetOps[0] = Chain;  // Update chain.
1580
1581   // Add the flag if we have it.
1582   if (Flag.getNode())
1583     RetOps.push_back(Flag);
1584
1585   return DAG.getNode(X86ISD::RET_FLAG, dl,
1586                      MVT::Other, &RetOps[0], RetOps.size());
1587 }
1588
1589 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N, SDValue &Chain) const {
1590   if (N->getNumValues() != 1)
1591     return false;
1592   if (!N->hasNUsesOfValue(1, 0))
1593     return false;
1594
1595   SDValue TCChain = Chain;
1596   SDNode *Copy = *N->use_begin();
1597   if (Copy->getOpcode() == ISD::CopyToReg) {
1598     // If the copy has a glue operand, we conservatively assume it isn't safe to
1599     // perform a tail call.
1600     if (Copy->getOperand(Copy->getNumOperands()-1).getValueType() == MVT::Glue)
1601       return false;
1602     TCChain = Copy->getOperand(0);
1603   } else if (Copy->getOpcode() != ISD::FP_EXTEND)
1604     return false;
1605
1606   bool HasRet = false;
1607   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1608        UI != UE; ++UI) {
1609     if (UI->getOpcode() != X86ISD::RET_FLAG)
1610       return false;
1611     HasRet = true;
1612   }
1613
1614   if (!HasRet)
1615     return false;
1616
1617   Chain = TCChain;
1618   return true;
1619 }
1620
1621 EVT
1622 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
1623                                             ISD::NodeType ExtendKind) const {
1624   MVT ReturnMVT;
1625   // TODO: Is this also valid on 32-bit?
1626   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1627     ReturnMVT = MVT::i8;
1628   else
1629     ReturnMVT = MVT::i32;
1630
1631   EVT MinVT = getRegisterType(Context, ReturnMVT);
1632   return VT.bitsLT(MinVT) ? MinVT : VT;
1633 }
1634
1635 /// LowerCallResult - Lower the result values of a call into the
1636 /// appropriate copies out of appropriate physical registers.
1637 ///
1638 SDValue
1639 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1640                                    CallingConv::ID CallConv, bool isVarArg,
1641                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1642                                    DebugLoc dl, SelectionDAG &DAG,
1643                                    SmallVectorImpl<SDValue> &InVals) const {
1644
1645   // Assign locations to each value returned by this call.
1646   SmallVector<CCValAssign, 16> RVLocs;
1647   bool Is64Bit = Subtarget->is64Bit();
1648   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1649                  getTargetMachine(), RVLocs, *DAG.getContext());
1650   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1651
1652   // Copy all of the result registers out of their specified physreg.
1653   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1654     CCValAssign &VA = RVLocs[i];
1655     EVT CopyVT = VA.getValVT();
1656
1657     // If this is x86-64, and we disabled SSE, we can't return FP values
1658     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1659         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasSSE1())) {
1660       report_fatal_error("SSE register return with SSE disabled");
1661     }
1662
1663     SDValue Val;
1664
1665     // If this is a call to a function that returns an fp value on the floating
1666     // point stack, we must guarantee the value is popped from the stack, so
1667     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1668     // if the return value is not used. We use the FpPOP_RETVAL instruction
1669     // instead.
1670     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1671       // If we prefer to use the value in xmm registers, copy it out as f80 and
1672       // use a truncate to move it from fp stack reg to xmm reg.
1673       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1674       SDValue Ops[] = { Chain, InFlag };
1675       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1676                                          MVT::Other, MVT::Glue, Ops, 2), 1);
1677       Val = Chain.getValue(0);
1678
1679       // Round the f80 to the right size, which also moves it to the appropriate
1680       // xmm register.
1681       if (CopyVT != VA.getValVT())
1682         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1683                           // This truncation won't change the value.
1684                           DAG.getIntPtrConstant(1));
1685     } else {
1686       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1687                                  CopyVT, InFlag).getValue(1);
1688       Val = Chain.getValue(0);
1689     }
1690     InFlag = Chain.getValue(2);
1691     InVals.push_back(Val);
1692   }
1693
1694   return Chain;
1695 }
1696
1697
1698 //===----------------------------------------------------------------------===//
1699 //                C & StdCall & Fast Calling Convention implementation
1700 //===----------------------------------------------------------------------===//
1701 //  StdCall calling convention seems to be standard for many Windows' API
1702 //  routines and around. It differs from C calling convention just a little:
1703 //  callee should clean up the stack, not caller. Symbols should be also
1704 //  decorated in some fancy way :) It doesn't support any vector arguments.
1705 //  For info on fast calling convention see Fast Calling Convention (tail call)
1706 //  implementation LowerX86_32FastCCCallTo.
1707
1708 /// CallIsStructReturn - Determines whether a call uses struct return
1709 /// semantics.
1710 enum StructReturnType {
1711   NotStructReturn,
1712   RegStructReturn,
1713   StackStructReturn
1714 };
1715 static StructReturnType
1716 callIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1717   if (Outs.empty())
1718     return NotStructReturn;
1719
1720   const ISD::ArgFlagsTy &Flags = Outs[0].Flags;
1721   if (!Flags.isSRet())
1722     return NotStructReturn;
1723   if (Flags.isInReg())
1724     return RegStructReturn;
1725   return StackStructReturn;
1726 }
1727
1728 /// ArgsAreStructReturn - Determines whether a function uses struct
1729 /// return semantics.
1730 static StructReturnType
1731 argsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1732   if (Ins.empty())
1733     return NotStructReturn;
1734
1735   const ISD::ArgFlagsTy &Flags = Ins[0].Flags;
1736   if (!Flags.isSRet())
1737     return NotStructReturn;
1738   if (Flags.isInReg())
1739     return RegStructReturn;
1740   return StackStructReturn;
1741 }
1742
1743 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1744 /// by "Src" to address "Dst" with size and alignment information specified by
1745 /// the specific parameter attribute. The copy will be passed as a byval
1746 /// function parameter.
1747 static SDValue
1748 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1749                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1750                           DebugLoc dl) {
1751   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
1752
1753   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
1754                        /*isVolatile*/false, /*AlwaysInline=*/true,
1755                        MachinePointerInfo(), MachinePointerInfo());
1756 }
1757
1758 /// IsTailCallConvention - Return true if the calling convention is one that
1759 /// supports tail call optimization.
1760 static bool IsTailCallConvention(CallingConv::ID CC) {
1761   return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1762 }
1763
1764 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1765   if (!CI->isTailCall() || getTargetMachine().Options.DisableTailCalls)
1766     return false;
1767
1768   CallSite CS(CI);
1769   CallingConv::ID CalleeCC = CS.getCallingConv();
1770   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1771     return false;
1772
1773   return true;
1774 }
1775
1776 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
1777 /// a tailcall target by changing its ABI.
1778 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC,
1779                                    bool GuaranteedTailCallOpt) {
1780   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
1781 }
1782
1783 SDValue
1784 X86TargetLowering::LowerMemArgument(SDValue Chain,
1785                                     CallingConv::ID CallConv,
1786                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1787                                     DebugLoc dl, SelectionDAG &DAG,
1788                                     const CCValAssign &VA,
1789                                     MachineFrameInfo *MFI,
1790                                     unsigned i) const {
1791   // Create the nodes corresponding to a load from this parameter slot.
1792   ISD::ArgFlagsTy Flags = Ins[i].Flags;
1793   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv,
1794                               getTargetMachine().Options.GuaranteedTailCallOpt);
1795   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
1796   EVT ValVT;
1797
1798   // If value is passed by pointer we have address passed instead of the value
1799   // itself.
1800   if (VA.getLocInfo() == CCValAssign::Indirect)
1801     ValVT = VA.getLocVT();
1802   else
1803     ValVT = VA.getValVT();
1804
1805   // FIXME: For now, all byval parameter objects are marked mutable. This can be
1806   // changed with more analysis.
1807   // In case of tail call optimization mark all arguments mutable. Since they
1808   // could be overwritten by lowering of arguments in case of a tail call.
1809   if (Flags.isByVal()) {
1810     unsigned Bytes = Flags.getByValSize();
1811     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1812     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
1813     return DAG.getFrameIndex(FI, getPointerTy());
1814   } else {
1815     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
1816                                     VA.getLocMemOffset(), isImmutable);
1817     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1818     return DAG.getLoad(ValVT, dl, Chain, FIN,
1819                        MachinePointerInfo::getFixedStack(FI),
1820                        false, false, false, 0);
1821   }
1822 }
1823
1824 SDValue
1825 X86TargetLowering::LowerFormalArguments(SDValue Chain,
1826                                         CallingConv::ID CallConv,
1827                                         bool isVarArg,
1828                                       const SmallVectorImpl<ISD::InputArg> &Ins,
1829                                         DebugLoc dl,
1830                                         SelectionDAG &DAG,
1831                                         SmallVectorImpl<SDValue> &InVals)
1832                                           const {
1833   MachineFunction &MF = DAG.getMachineFunction();
1834   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1835
1836   const Function* Fn = MF.getFunction();
1837   if (Fn->hasExternalLinkage() &&
1838       Subtarget->isTargetCygMing() &&
1839       Fn->getName() == "main")
1840     FuncInfo->setForceFramePointer(true);
1841
1842   MachineFrameInfo *MFI = MF.getFrameInfo();
1843   bool Is64Bit = Subtarget->is64Bit();
1844   bool IsWindows = Subtarget->isTargetWindows();
1845   bool IsWin64 = Subtarget->isTargetWin64();
1846
1847   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1848          "Var args not supported with calling convention fastcc or ghc");
1849
1850   // Assign locations to all of the incoming arguments.
1851   SmallVector<CCValAssign, 16> ArgLocs;
1852   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1853                  ArgLocs, *DAG.getContext());
1854
1855   // Allocate shadow area for Win64
1856   if (IsWin64) {
1857     CCInfo.AllocateStack(32, 8);
1858   }
1859
1860   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
1861
1862   unsigned LastVal = ~0U;
1863   SDValue ArgValue;
1864   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1865     CCValAssign &VA = ArgLocs[i];
1866     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1867     // places.
1868     assert(VA.getValNo() != LastVal &&
1869            "Don't support value assigned to multiple locs yet");
1870     (void)LastVal;
1871     LastVal = VA.getValNo();
1872
1873     if (VA.isRegLoc()) {
1874       EVT RegVT = VA.getLocVT();
1875       const TargetRegisterClass *RC;
1876       if (RegVT == MVT::i32)
1877         RC = &X86::GR32RegClass;
1878       else if (Is64Bit && RegVT == MVT::i64)
1879         RC = &X86::GR64RegClass;
1880       else if (RegVT == MVT::f32)
1881         RC = &X86::FR32RegClass;
1882       else if (RegVT == MVT::f64)
1883         RC = &X86::FR64RegClass;
1884       else if (RegVT.is256BitVector())
1885         RC = &X86::VR256RegClass;
1886       else if (RegVT.is128BitVector())
1887         RC = &X86::VR128RegClass;
1888       else if (RegVT == MVT::x86mmx)
1889         RC = &X86::VR64RegClass;
1890       else
1891         llvm_unreachable("Unknown argument type!");
1892
1893       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1894       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1895
1896       // If this is an 8 or 16-bit value, it is really passed promoted to 32
1897       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
1898       // right size.
1899       if (VA.getLocInfo() == CCValAssign::SExt)
1900         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1901                                DAG.getValueType(VA.getValVT()));
1902       else if (VA.getLocInfo() == CCValAssign::ZExt)
1903         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1904                                DAG.getValueType(VA.getValVT()));
1905       else if (VA.getLocInfo() == CCValAssign::BCvt)
1906         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
1907
1908       if (VA.isExtInLoc()) {
1909         // Handle MMX values passed in XMM regs.
1910         if (RegVT.isVector()) {
1911           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1912                                  ArgValue);
1913         } else
1914           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1915       }
1916     } else {
1917       assert(VA.isMemLoc());
1918       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
1919     }
1920
1921     // If value is passed via pointer - do a load.
1922     if (VA.getLocInfo() == CCValAssign::Indirect)
1923       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1924                              MachinePointerInfo(), false, false, false, 0);
1925
1926     InVals.push_back(ArgValue);
1927   }
1928
1929   // The x86-64 ABI for returning structs by value requires that we copy
1930   // the sret argument into %rax for the return. Save the argument into
1931   // a virtual register so that we can access it from the return points.
1932   if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
1933     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1934     unsigned Reg = FuncInfo->getSRetReturnReg();
1935     if (!Reg) {
1936       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1937       FuncInfo->setSRetReturnReg(Reg);
1938     }
1939     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
1940     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
1941   }
1942
1943   unsigned StackSize = CCInfo.getNextStackOffset();
1944   // Align stack specially for tail calls.
1945   if (FuncIsMadeTailCallSafe(CallConv,
1946                              MF.getTarget().Options.GuaranteedTailCallOpt))
1947     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
1948
1949   // If the function takes variable number of arguments, make a frame index for
1950   // the start of the first vararg value... for expansion of llvm.va_start.
1951   if (isVarArg) {
1952     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1953                     CallConv != CallingConv::X86_ThisCall)) {
1954       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
1955     }
1956     if (Is64Bit) {
1957       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1958
1959       // FIXME: We should really autogenerate these arrays
1960       static const uint16_t GPR64ArgRegsWin64[] = {
1961         X86::RCX, X86::RDX, X86::R8,  X86::R9
1962       };
1963       static const uint16_t GPR64ArgRegs64Bit[] = {
1964         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1965       };
1966       static const uint16_t XMMArgRegs64Bit[] = {
1967         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1968         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1969       };
1970       const uint16_t *GPR64ArgRegs;
1971       unsigned NumXMMRegs = 0;
1972
1973       if (IsWin64) {
1974         // The XMM registers which might contain var arg parameters are shadowed
1975         // in their paired GPR.  So we only need to save the GPR to their home
1976         // slots.
1977         TotalNumIntRegs = 4;
1978         GPR64ArgRegs = GPR64ArgRegsWin64;
1979       } else {
1980         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1981         GPR64ArgRegs = GPR64ArgRegs64Bit;
1982
1983         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit,
1984                                                 TotalNumXMMRegs);
1985       }
1986       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1987                                                        TotalNumIntRegs);
1988
1989       bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
1990       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
1991              "SSE register cannot be used when SSE is disabled!");
1992       assert(!(NumXMMRegs && MF.getTarget().Options.UseSoftFloat &&
1993                NoImplicitFloatOps) &&
1994              "SSE register cannot be used when SSE is disabled!");
1995       if (MF.getTarget().Options.UseSoftFloat || NoImplicitFloatOps ||
1996           !Subtarget->hasSSE1())
1997         // Kernel mode asks for SSE to be disabled, so don't push them
1998         // on the stack.
1999         TotalNumXMMRegs = 0;
2000
2001       if (IsWin64) {
2002         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
2003         // Get to the caller-allocated home save location.  Add 8 to account
2004         // for the return address.
2005         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
2006         FuncInfo->setRegSaveFrameIndex(
2007           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
2008         // Fixup to set vararg frame on shadow area (4 x i64).
2009         if (NumIntRegs < 4)
2010           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
2011       } else {
2012         // For X86-64, if there are vararg parameters that are passed via
2013         // registers, then we must store them to their spots on the stack so
2014         // they may be loaded by deferencing the result of va_next.
2015         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
2016         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
2017         FuncInfo->setRegSaveFrameIndex(
2018           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
2019                                false));
2020       }
2021
2022       // Store the integer parameter registers.
2023       SmallVector<SDValue, 8> MemOps;
2024       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
2025                                         getPointerTy());
2026       unsigned Offset = FuncInfo->getVarArgsGPOffset();
2027       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
2028         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
2029                                   DAG.getIntPtrConstant(Offset));
2030         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
2031                                      &X86::GR64RegClass);
2032         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
2033         SDValue Store =
2034           DAG.getStore(Val.getValue(1), dl, Val, FIN,
2035                        MachinePointerInfo::getFixedStack(
2036                          FuncInfo->getRegSaveFrameIndex(), Offset),
2037                        false, false, 0);
2038         MemOps.push_back(Store);
2039         Offset += 8;
2040       }
2041
2042       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
2043         // Now store the XMM (fp + vector) parameter registers.
2044         SmallVector<SDValue, 11> SaveXMMOps;
2045         SaveXMMOps.push_back(Chain);
2046
2047         unsigned AL = MF.addLiveIn(X86::AL, &X86::GR8RegClass);
2048         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
2049         SaveXMMOps.push_back(ALVal);
2050
2051         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2052                                FuncInfo->getRegSaveFrameIndex()));
2053         SaveXMMOps.push_back(DAG.getIntPtrConstant(
2054                                FuncInfo->getVarArgsFPOffset()));
2055
2056         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
2057           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
2058                                        &X86::VR128RegClass);
2059           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
2060           SaveXMMOps.push_back(Val);
2061         }
2062         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
2063                                      MVT::Other,
2064                                      &SaveXMMOps[0], SaveXMMOps.size()));
2065       }
2066
2067       if (!MemOps.empty())
2068         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2069                             &MemOps[0], MemOps.size());
2070     }
2071   }
2072
2073   // Some CCs need callee pop.
2074   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2075                        MF.getTarget().Options.GuaranteedTailCallOpt)) {
2076     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2077   } else {
2078     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2079     // If this is an sret function, the return should pop the hidden pointer.
2080     if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2081         argsAreStructReturn(Ins) == StackStructReturn)
2082       FuncInfo->setBytesToPopOnReturn(4);
2083   }
2084
2085   if (!Is64Bit) {
2086     // RegSaveFrameIndex is X86-64 only.
2087     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2088     if (CallConv == CallingConv::X86_FastCall ||
2089         CallConv == CallingConv::X86_ThisCall)
2090       // fastcc functions can't have varargs.
2091       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2092   }
2093
2094   FuncInfo->setArgumentStackSize(StackSize);
2095
2096   return Chain;
2097 }
2098
2099 SDValue
2100 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2101                                     SDValue StackPtr, SDValue Arg,
2102                                     DebugLoc dl, SelectionDAG &DAG,
2103                                     const CCValAssign &VA,
2104                                     ISD::ArgFlagsTy Flags) const {
2105   unsigned LocMemOffset = VA.getLocMemOffset();
2106   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2107   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2108   if (Flags.isByVal())
2109     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2110
2111   return DAG.getStore(Chain, dl, Arg, PtrOff,
2112                       MachinePointerInfo::getStack(LocMemOffset),
2113                       false, false, 0);
2114 }
2115
2116 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2117 /// optimization is performed and it is required.
2118 SDValue
2119 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2120                                            SDValue &OutRetAddr, SDValue Chain,
2121                                            bool IsTailCall, bool Is64Bit,
2122                                            int FPDiff, DebugLoc dl) const {
2123   // Adjust the Return address stack slot.
2124   EVT VT = getPointerTy();
2125   OutRetAddr = getReturnAddressFrameIndex(DAG);
2126
2127   // Load the "old" Return address.
2128   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2129                            false, false, false, 0);
2130   return SDValue(OutRetAddr.getNode(), 1);
2131 }
2132
2133 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2134 /// optimization is performed and it is required (FPDiff!=0).
2135 static SDValue
2136 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2137                          SDValue Chain, SDValue RetAddrFrIdx,
2138                          bool Is64Bit, int FPDiff, DebugLoc dl) {
2139   // Store the return address to the appropriate stack slot.
2140   if (!FPDiff) return Chain;
2141   // Calculate the new stack slot for the return address.
2142   int SlotSize = Is64Bit ? 8 : 4;
2143   int NewReturnAddrFI =
2144     MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
2145   EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
2146   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
2147   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2148                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2149                        false, false, 0);
2150   return Chain;
2151 }
2152
2153 SDValue
2154 X86TargetLowering::LowerCall(TargetLowering::CallLoweringInfo &CLI,
2155                              SmallVectorImpl<SDValue> &InVals) const {
2156   SelectionDAG &DAG                     = CLI.DAG;
2157   DebugLoc &dl                          = CLI.DL;
2158   SmallVector<ISD::OutputArg, 32> &Outs = CLI.Outs;
2159   SmallVector<SDValue, 32> &OutVals     = CLI.OutVals;
2160   SmallVector<ISD::InputArg, 32> &Ins   = CLI.Ins;
2161   SDValue Chain                         = CLI.Chain;
2162   SDValue Callee                        = CLI.Callee;
2163   CallingConv::ID CallConv              = CLI.CallConv;
2164   bool &isTailCall                      = CLI.IsTailCall;
2165   bool isVarArg                         = CLI.IsVarArg;
2166
2167   MachineFunction &MF = DAG.getMachineFunction();
2168   bool Is64Bit        = Subtarget->is64Bit();
2169   bool IsWin64        = Subtarget->isTargetWin64();
2170   bool IsWindows      = Subtarget->isTargetWindows();
2171   StructReturnType SR = callIsStructReturn(Outs);
2172   bool IsSibcall      = false;
2173
2174   if (MF.getTarget().Options.DisableTailCalls)
2175     isTailCall = false;
2176
2177   if (isTailCall) {
2178     // Check if it's really possible to do a tail call.
2179     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2180                     isVarArg, SR != NotStructReturn,
2181                     MF.getFunction()->hasStructRetAttr(),
2182                     Outs, OutVals, Ins, DAG);
2183
2184     // Sibcalls are automatically detected tailcalls which do not require
2185     // ABI changes.
2186     if (!MF.getTarget().Options.GuaranteedTailCallOpt && isTailCall)
2187       IsSibcall = true;
2188
2189     if (isTailCall)
2190       ++NumTailCalls;
2191   }
2192
2193   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2194          "Var args not supported with calling convention fastcc or ghc");
2195
2196   // Analyze operands of the call, assigning locations to each operand.
2197   SmallVector<CCValAssign, 16> ArgLocs;
2198   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2199                  ArgLocs, *DAG.getContext());
2200
2201   // Allocate shadow area for Win64
2202   if (IsWin64) {
2203     CCInfo.AllocateStack(32, 8);
2204   }
2205
2206   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2207
2208   // Get a count of how many bytes are to be pushed on the stack.
2209   unsigned NumBytes = CCInfo.getNextStackOffset();
2210   if (IsSibcall)
2211     // This is a sibcall. The memory operands are available in caller's
2212     // own caller's stack.
2213     NumBytes = 0;
2214   else if (getTargetMachine().Options.GuaranteedTailCallOpt &&
2215            IsTailCallConvention(CallConv))
2216     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2217
2218   int FPDiff = 0;
2219   if (isTailCall && !IsSibcall) {
2220     // Lower arguments at fp - stackoffset + fpdiff.
2221     unsigned NumBytesCallerPushed =
2222       MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2223     FPDiff = NumBytesCallerPushed - NumBytes;
2224
2225     // Set the delta of movement of the returnaddr stackslot.
2226     // But only set if delta is greater than previous delta.
2227     if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2228       MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2229   }
2230
2231   if (!IsSibcall)
2232     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2233
2234   SDValue RetAddrFrIdx;
2235   // Load return address for tail calls.
2236   if (isTailCall && FPDiff)
2237     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2238                                     Is64Bit, FPDiff, dl);
2239
2240   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2241   SmallVector<SDValue, 8> MemOpChains;
2242   SDValue StackPtr;
2243
2244   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2245   // of tail call optimization arguments are handle later.
2246   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2247     CCValAssign &VA = ArgLocs[i];
2248     EVT RegVT = VA.getLocVT();
2249     SDValue Arg = OutVals[i];
2250     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2251     bool isByVal = Flags.isByVal();
2252
2253     // Promote the value if needed.
2254     switch (VA.getLocInfo()) {
2255     default: llvm_unreachable("Unknown loc info!");
2256     case CCValAssign::Full: break;
2257     case CCValAssign::SExt:
2258       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2259       break;
2260     case CCValAssign::ZExt:
2261       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2262       break;
2263     case CCValAssign::AExt:
2264       if (RegVT.is128BitVector()) {
2265         // Special case: passing MMX values in XMM registers.
2266         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2267         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2268         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2269       } else
2270         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2271       break;
2272     case CCValAssign::BCvt:
2273       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2274       break;
2275     case CCValAssign::Indirect: {
2276       // Store the argument.
2277       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2278       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2279       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2280                            MachinePointerInfo::getFixedStack(FI),
2281                            false, false, 0);
2282       Arg = SpillSlot;
2283       break;
2284     }
2285     }
2286
2287     if (VA.isRegLoc()) {
2288       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2289       if (isVarArg && IsWin64) {
2290         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2291         // shadow reg if callee is a varargs function.
2292         unsigned ShadowReg = 0;
2293         switch (VA.getLocReg()) {
2294         case X86::XMM0: ShadowReg = X86::RCX; break;
2295         case X86::XMM1: ShadowReg = X86::RDX; break;
2296         case X86::XMM2: ShadowReg = X86::R8; break;
2297         case X86::XMM3: ShadowReg = X86::R9; break;
2298         }
2299         if (ShadowReg)
2300           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2301       }
2302     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2303       assert(VA.isMemLoc());
2304       if (StackPtr.getNode() == 0)
2305         StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2306       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2307                                              dl, DAG, VA, Flags));
2308     }
2309   }
2310
2311   if (!MemOpChains.empty())
2312     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2313                         &MemOpChains[0], MemOpChains.size());
2314
2315   if (Subtarget->isPICStyleGOT()) {
2316     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2317     // GOT pointer.
2318     if (!isTailCall) {
2319       RegsToPass.push_back(std::make_pair(unsigned(X86::EBX),
2320                DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy())));
2321     } else {
2322       // If we are tail calling and generating PIC/GOT style code load the
2323       // address of the callee into ECX. The value in ecx is used as target of
2324       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2325       // for tail calls on PIC/GOT architectures. Normally we would just put the
2326       // address of GOT into ebx and then call target@PLT. But for tail calls
2327       // ebx would be restored (since ebx is callee saved) before jumping to the
2328       // target@PLT.
2329
2330       // Note: The actual moving to ECX is done further down.
2331       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2332       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2333           !G->getGlobal()->hasProtectedVisibility())
2334         Callee = LowerGlobalAddress(Callee, DAG);
2335       else if (isa<ExternalSymbolSDNode>(Callee))
2336         Callee = LowerExternalSymbol(Callee, DAG);
2337     }
2338   }
2339
2340   if (Is64Bit && isVarArg && !IsWin64) {
2341     // From AMD64 ABI document:
2342     // For calls that may call functions that use varargs or stdargs
2343     // (prototype-less calls or calls to functions containing ellipsis (...) in
2344     // the declaration) %al is used as hidden argument to specify the number
2345     // of SSE registers used. The contents of %al do not need to match exactly
2346     // the number of registers, but must be an ubound on the number of SSE
2347     // registers used and is in the range 0 - 8 inclusive.
2348
2349     // Count the number of XMM registers allocated.
2350     static const uint16_t XMMArgRegs[] = {
2351       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2352       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2353     };
2354     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2355     assert((Subtarget->hasSSE1() || !NumXMMRegs)
2356            && "SSE registers cannot be used when SSE is disabled");
2357
2358     RegsToPass.push_back(std::make_pair(unsigned(X86::AL),
2359                                         DAG.getConstant(NumXMMRegs, MVT::i8)));
2360   }
2361
2362   // For tail calls lower the arguments to the 'real' stack slot.
2363   if (isTailCall) {
2364     // Force all the incoming stack arguments to be loaded from the stack
2365     // before any new outgoing arguments are stored to the stack, because the
2366     // outgoing stack slots may alias the incoming argument stack slots, and
2367     // the alias isn't otherwise explicit. This is slightly more conservative
2368     // than necessary, because it means that each store effectively depends
2369     // on every argument instead of just those arguments it would clobber.
2370     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2371
2372     SmallVector<SDValue, 8> MemOpChains2;
2373     SDValue FIN;
2374     int FI = 0;
2375     if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2376       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2377         CCValAssign &VA = ArgLocs[i];
2378         if (VA.isRegLoc())
2379           continue;
2380         assert(VA.isMemLoc());
2381         SDValue Arg = OutVals[i];
2382         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2383         // Create frame index.
2384         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2385         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2386         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2387         FIN = DAG.getFrameIndex(FI, getPointerTy());
2388
2389         if (Flags.isByVal()) {
2390           // Copy relative to framepointer.
2391           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2392           if (StackPtr.getNode() == 0)
2393             StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
2394                                           getPointerTy());
2395           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2396
2397           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2398                                                            ArgChain,
2399                                                            Flags, DAG, dl));
2400         } else {
2401           // Store relative to framepointer.
2402           MemOpChains2.push_back(
2403             DAG.getStore(ArgChain, dl, Arg, FIN,
2404                          MachinePointerInfo::getFixedStack(FI),
2405                          false, false, 0));
2406         }
2407       }
2408     }
2409
2410     if (!MemOpChains2.empty())
2411       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2412                           &MemOpChains2[0], MemOpChains2.size());
2413
2414     // Store the return address to the appropriate stack slot.
2415     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
2416                                      FPDiff, dl);
2417   }
2418
2419   // Build a sequence of copy-to-reg nodes chained together with token chain
2420   // and flag operands which copy the outgoing args into registers.
2421   SDValue InFlag;
2422   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2423     Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2424                              RegsToPass[i].second, InFlag);
2425     InFlag = Chain.getValue(1);
2426   }
2427
2428   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2429     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2430     // In the 64-bit large code model, we have to make all calls
2431     // through a register, since the call instruction's 32-bit
2432     // pc-relative offset may not be large enough to hold the whole
2433     // address.
2434   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2435     // If the callee is a GlobalAddress node (quite common, every direct call
2436     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2437     // it.
2438
2439     // We should use extra load for direct calls to dllimported functions in
2440     // non-JIT mode.
2441     const GlobalValue *GV = G->getGlobal();
2442     if (!GV->hasDLLImportLinkage()) {
2443       unsigned char OpFlags = 0;
2444       bool ExtraLoad = false;
2445       unsigned WrapperKind = ISD::DELETED_NODE;
2446
2447       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2448       // external symbols most go through the PLT in PIC mode.  If the symbol
2449       // has hidden or protected visibility, or if it is static or local, then
2450       // we don't need to use the PLT - we can directly call it.
2451       if (Subtarget->isTargetELF() &&
2452           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2453           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2454         OpFlags = X86II::MO_PLT;
2455       } else if (Subtarget->isPICStyleStubAny() &&
2456                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2457                  (!Subtarget->getTargetTriple().isMacOSX() ||
2458                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2459         // PC-relative references to external symbols should go through $stub,
2460         // unless we're building with the leopard linker or later, which
2461         // automatically synthesizes these stubs.
2462         OpFlags = X86II::MO_DARWIN_STUB;
2463       } else if (Subtarget->isPICStyleRIPRel() &&
2464                  isa<Function>(GV) &&
2465                  cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2466         // If the function is marked as non-lazy, generate an indirect call
2467         // which loads from the GOT directly. This avoids runtime overhead
2468         // at the cost of eager binding (and one extra byte of encoding).
2469         OpFlags = X86II::MO_GOTPCREL;
2470         WrapperKind = X86ISD::WrapperRIP;
2471         ExtraLoad = true;
2472       }
2473
2474       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2475                                           G->getOffset(), OpFlags);
2476
2477       // Add a wrapper if needed.
2478       if (WrapperKind != ISD::DELETED_NODE)
2479         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2480       // Add extra indirection if needed.
2481       if (ExtraLoad)
2482         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2483                              MachinePointerInfo::getGOT(),
2484                              false, false, false, 0);
2485     }
2486   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2487     unsigned char OpFlags = 0;
2488
2489     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2490     // external symbols should go through the PLT.
2491     if (Subtarget->isTargetELF() &&
2492         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2493       OpFlags = X86II::MO_PLT;
2494     } else if (Subtarget->isPICStyleStubAny() &&
2495                (!Subtarget->getTargetTriple().isMacOSX() ||
2496                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2497       // PC-relative references to external symbols should go through $stub,
2498       // unless we're building with the leopard linker or later, which
2499       // automatically synthesizes these stubs.
2500       OpFlags = X86II::MO_DARWIN_STUB;
2501     }
2502
2503     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2504                                          OpFlags);
2505   }
2506
2507   // Returns a chain & a flag for retval copy to use.
2508   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2509   SmallVector<SDValue, 8> Ops;
2510
2511   if (!IsSibcall && isTailCall) {
2512     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2513                            DAG.getIntPtrConstant(0, true), InFlag);
2514     InFlag = Chain.getValue(1);
2515   }
2516
2517   Ops.push_back(Chain);
2518   Ops.push_back(Callee);
2519
2520   if (isTailCall)
2521     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2522
2523   // Add argument registers to the end of the list so that they are known live
2524   // into the call.
2525   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2526     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2527                                   RegsToPass[i].second.getValueType()));
2528
2529   // Add a register mask operand representing the call-preserved registers.
2530   const TargetRegisterInfo *TRI = getTargetMachine().getRegisterInfo();
2531   const uint32_t *Mask = TRI->getCallPreservedMask(CallConv);
2532   assert(Mask && "Missing call preserved mask for calling convention");
2533   Ops.push_back(DAG.getRegisterMask(Mask));
2534
2535   if (InFlag.getNode())
2536     Ops.push_back(InFlag);
2537
2538   if (isTailCall) {
2539     // We used to do:
2540     //// If this is the first return lowered for this function, add the regs
2541     //// to the liveout set for the function.
2542     // This isn't right, although it's probably harmless on x86; liveouts
2543     // should be computed from returns not tail calls.  Consider a void
2544     // function making a tail call to a function returning int.
2545     return DAG.getNode(X86ISD::TC_RETURN, dl,
2546                        NodeTys, &Ops[0], Ops.size());
2547   }
2548
2549   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2550   InFlag = Chain.getValue(1);
2551
2552   // Create the CALLSEQ_END node.
2553   unsigned NumBytesForCalleeToPush;
2554   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg,
2555                        getTargetMachine().Options.GuaranteedTailCallOpt))
2556     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2557   else if (!Is64Bit && !IsTailCallConvention(CallConv) && !IsWindows &&
2558            SR == StackStructReturn)
2559     // If this is a call to a struct-return function, the callee
2560     // pops the hidden struct pointer, so we have to push it back.
2561     // This is common for Darwin/X86, Linux & Mingw32 targets.
2562     // For MSVC Win32 targets, the caller pops the hidden struct pointer.
2563     NumBytesForCalleeToPush = 4;
2564   else
2565     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2566
2567   // Returns a flag for retval copy to use.
2568   if (!IsSibcall) {
2569     Chain = DAG.getCALLSEQ_END(Chain,
2570                                DAG.getIntPtrConstant(NumBytes, true),
2571                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2572                                                      true),
2573                                InFlag);
2574     InFlag = Chain.getValue(1);
2575   }
2576
2577   // Handle result values, copying them out of physregs into vregs that we
2578   // return.
2579   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2580                          Ins, dl, DAG, InVals);
2581 }
2582
2583
2584 //===----------------------------------------------------------------------===//
2585 //                Fast Calling Convention (tail call) implementation
2586 //===----------------------------------------------------------------------===//
2587
2588 //  Like std call, callee cleans arguments, convention except that ECX is
2589 //  reserved for storing the tail called function address. Only 2 registers are
2590 //  free for argument passing (inreg). Tail call optimization is performed
2591 //  provided:
2592 //                * tailcallopt is enabled
2593 //                * caller/callee are fastcc
2594 //  On X86_64 architecture with GOT-style position independent code only local
2595 //  (within module) calls are supported at the moment.
2596 //  To keep the stack aligned according to platform abi the function
2597 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2598 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2599 //  If a tail called function callee has more arguments than the caller the
2600 //  caller needs to make sure that there is room to move the RETADDR to. This is
2601 //  achieved by reserving an area the size of the argument delta right after the
2602 //  original REtADDR, but before the saved framepointer or the spilled registers
2603 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2604 //  stack layout:
2605 //    arg1
2606 //    arg2
2607 //    RETADDR
2608 //    [ new RETADDR
2609 //      move area ]
2610 //    (possible EBP)
2611 //    ESI
2612 //    EDI
2613 //    local1 ..
2614
2615 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2616 /// for a 16 byte align requirement.
2617 unsigned
2618 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2619                                                SelectionDAG& DAG) const {
2620   MachineFunction &MF = DAG.getMachineFunction();
2621   const TargetMachine &TM = MF.getTarget();
2622   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2623   unsigned StackAlignment = TFI.getStackAlignment();
2624   uint64_t AlignMask = StackAlignment - 1;
2625   int64_t Offset = StackSize;
2626   uint64_t SlotSize = TD->getPointerSize();
2627   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2628     // Number smaller than 12 so just add the difference.
2629     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2630   } else {
2631     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2632     Offset = ((~AlignMask) & Offset) + StackAlignment +
2633       (StackAlignment-SlotSize);
2634   }
2635   return Offset;
2636 }
2637
2638 /// MatchingStackOffset - Return true if the given stack call argument is
2639 /// already available in the same position (relatively) of the caller's
2640 /// incoming argument stack.
2641 static
2642 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2643                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2644                          const X86InstrInfo *TII) {
2645   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2646   int FI = INT_MAX;
2647   if (Arg.getOpcode() == ISD::CopyFromReg) {
2648     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2649     if (!TargetRegisterInfo::isVirtualRegister(VR))
2650       return false;
2651     MachineInstr *Def = MRI->getVRegDef(VR);
2652     if (!Def)
2653       return false;
2654     if (!Flags.isByVal()) {
2655       if (!TII->isLoadFromStackSlot(Def, FI))
2656         return false;
2657     } else {
2658       unsigned Opcode = Def->getOpcode();
2659       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2660           Def->getOperand(1).isFI()) {
2661         FI = Def->getOperand(1).getIndex();
2662         Bytes = Flags.getByValSize();
2663       } else
2664         return false;
2665     }
2666   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2667     if (Flags.isByVal())
2668       // ByVal argument is passed in as a pointer but it's now being
2669       // dereferenced. e.g.
2670       // define @foo(%struct.X* %A) {
2671       //   tail call @bar(%struct.X* byval %A)
2672       // }
2673       return false;
2674     SDValue Ptr = Ld->getBasePtr();
2675     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2676     if (!FINode)
2677       return false;
2678     FI = FINode->getIndex();
2679   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2680     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2681     FI = FINode->getIndex();
2682     Bytes = Flags.getByValSize();
2683   } else
2684     return false;
2685
2686   assert(FI != INT_MAX);
2687   if (!MFI->isFixedObjectIndex(FI))
2688     return false;
2689   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2690 }
2691
2692 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
2693 /// for tail call optimization. Targets which want to do tail call
2694 /// optimization should implement this function.
2695 bool
2696 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2697                                                      CallingConv::ID CalleeCC,
2698                                                      bool isVarArg,
2699                                                      bool isCalleeStructRet,
2700                                                      bool isCallerStructRet,
2701                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
2702                                     const SmallVectorImpl<SDValue> &OutVals,
2703                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2704                                                      SelectionDAG& DAG) const {
2705   if (!IsTailCallConvention(CalleeCC) &&
2706       CalleeCC != CallingConv::C)
2707     return false;
2708
2709   // If -tailcallopt is specified, make fastcc functions tail-callable.
2710   const MachineFunction &MF = DAG.getMachineFunction();
2711   const Function *CallerF = DAG.getMachineFunction().getFunction();
2712   CallingConv::ID CallerCC = CallerF->getCallingConv();
2713   bool CCMatch = CallerCC == CalleeCC;
2714
2715   if (getTargetMachine().Options.GuaranteedTailCallOpt) {
2716     if (IsTailCallConvention(CalleeCC) && CCMatch)
2717       return true;
2718     return false;
2719   }
2720
2721   // Look for obvious safe cases to perform tail call optimization that do not
2722   // require ABI changes. This is what gcc calls sibcall.
2723
2724   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2725   // emit a special epilogue.
2726   if (RegInfo->needsStackRealignment(MF))
2727     return false;
2728
2729   // Also avoid sibcall optimization if either caller or callee uses struct
2730   // return semantics.
2731   if (isCalleeStructRet || isCallerStructRet)
2732     return false;
2733
2734   // An stdcall caller is expected to clean up its arguments; the callee
2735   // isn't going to do that.
2736   if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2737     return false;
2738
2739   // Do not sibcall optimize vararg calls unless all arguments are passed via
2740   // registers.
2741   if (isVarArg && !Outs.empty()) {
2742
2743     // Optimizing for varargs on Win64 is unlikely to be safe without
2744     // additional testing.
2745     if (Subtarget->isTargetWin64())
2746       return false;
2747
2748     SmallVector<CCValAssign, 16> ArgLocs;
2749     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2750                    getTargetMachine(), ArgLocs, *DAG.getContext());
2751
2752     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2753     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2754       if (!ArgLocs[i].isRegLoc())
2755         return false;
2756   }
2757
2758   // If the call result is in ST0 / ST1, it needs to be popped off the x87
2759   // stack.  Therefore, if it's not used by the call it is not safe to optimize
2760   // this into a sibcall.
2761   bool Unused = false;
2762   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2763     if (!Ins[i].Used) {
2764       Unused = true;
2765       break;
2766     }
2767   }
2768   if (Unused) {
2769     SmallVector<CCValAssign, 16> RVLocs;
2770     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2771                    getTargetMachine(), RVLocs, *DAG.getContext());
2772     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2773     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2774       CCValAssign &VA = RVLocs[i];
2775       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2776         return false;
2777     }
2778   }
2779
2780   // If the calling conventions do not match, then we'd better make sure the
2781   // results are returned in the same way as what the caller expects.
2782   if (!CCMatch) {
2783     SmallVector<CCValAssign, 16> RVLocs1;
2784     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2785                     getTargetMachine(), RVLocs1, *DAG.getContext());
2786     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2787
2788     SmallVector<CCValAssign, 16> RVLocs2;
2789     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2790                     getTargetMachine(), RVLocs2, *DAG.getContext());
2791     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2792
2793     if (RVLocs1.size() != RVLocs2.size())
2794       return false;
2795     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2796       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2797         return false;
2798       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2799         return false;
2800       if (RVLocs1[i].isRegLoc()) {
2801         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2802           return false;
2803       } else {
2804         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2805           return false;
2806       }
2807     }
2808   }
2809
2810   // If the callee takes no arguments then go on to check the results of the
2811   // call.
2812   if (!Outs.empty()) {
2813     // Check if stack adjustment is needed. For now, do not do this if any
2814     // argument is passed on the stack.
2815     SmallVector<CCValAssign, 16> ArgLocs;
2816     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2817                    getTargetMachine(), ArgLocs, *DAG.getContext());
2818
2819     // Allocate shadow area for Win64
2820     if (Subtarget->isTargetWin64()) {
2821       CCInfo.AllocateStack(32, 8);
2822     }
2823
2824     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2825     if (CCInfo.getNextStackOffset()) {
2826       MachineFunction &MF = DAG.getMachineFunction();
2827       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2828         return false;
2829
2830       // Check if the arguments are already laid out in the right way as
2831       // the caller's fixed stack objects.
2832       MachineFrameInfo *MFI = MF.getFrameInfo();
2833       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2834       const X86InstrInfo *TII =
2835         ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
2836       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2837         CCValAssign &VA = ArgLocs[i];
2838         SDValue Arg = OutVals[i];
2839         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2840         if (VA.getLocInfo() == CCValAssign::Indirect)
2841           return false;
2842         if (!VA.isRegLoc()) {
2843           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2844                                    MFI, MRI, TII))
2845             return false;
2846         }
2847       }
2848     }
2849
2850     // If the tailcall address may be in a register, then make sure it's
2851     // possible to register allocate for it. In 32-bit, the call address can
2852     // only target EAX, EDX, or ECX since the tail call must be scheduled after
2853     // callee-saved registers are restored. These happen to be the same
2854     // registers used to pass 'inreg' arguments so watch out for those.
2855     if (!Subtarget->is64Bit() &&
2856         !isa<GlobalAddressSDNode>(Callee) &&
2857         !isa<ExternalSymbolSDNode>(Callee)) {
2858       unsigned NumInRegs = 0;
2859       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2860         CCValAssign &VA = ArgLocs[i];
2861         if (!VA.isRegLoc())
2862           continue;
2863         unsigned Reg = VA.getLocReg();
2864         switch (Reg) {
2865         default: break;
2866         case X86::EAX: case X86::EDX: case X86::ECX:
2867           if (++NumInRegs == 3)
2868             return false;
2869           break;
2870         }
2871       }
2872     }
2873   }
2874
2875   return true;
2876 }
2877
2878 FastISel *
2879 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo,
2880                                   const TargetLibraryInfo *libInfo) const {
2881   return X86::createFastISel(funcInfo, libInfo);
2882 }
2883
2884
2885 //===----------------------------------------------------------------------===//
2886 //                           Other Lowering Hooks
2887 //===----------------------------------------------------------------------===//
2888
2889 static bool MayFoldLoad(SDValue Op) {
2890   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2891 }
2892
2893 static bool MayFoldIntoStore(SDValue Op) {
2894   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2895 }
2896
2897 static bool isTargetShuffle(unsigned Opcode) {
2898   switch(Opcode) {
2899   default: return false;
2900   case X86ISD::PSHUFD:
2901   case X86ISD::PSHUFHW:
2902   case X86ISD::PSHUFLW:
2903   case X86ISD::SHUFP:
2904   case X86ISD::PALIGN:
2905   case X86ISD::MOVLHPS:
2906   case X86ISD::MOVLHPD:
2907   case X86ISD::MOVHLPS:
2908   case X86ISD::MOVLPS:
2909   case X86ISD::MOVLPD:
2910   case X86ISD::MOVSHDUP:
2911   case X86ISD::MOVSLDUP:
2912   case X86ISD::MOVDDUP:
2913   case X86ISD::MOVSS:
2914   case X86ISD::MOVSD:
2915   case X86ISD::UNPCKL:
2916   case X86ISD::UNPCKH:
2917   case X86ISD::VPERMILP:
2918   case X86ISD::VPERM2X128:
2919   case X86ISD::VPERMI:
2920     return true;
2921   }
2922 }
2923
2924 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2925                                     SDValue V1, SelectionDAG &DAG) {
2926   switch(Opc) {
2927   default: llvm_unreachable("Unknown x86 shuffle node");
2928   case X86ISD::MOVSHDUP:
2929   case X86ISD::MOVSLDUP:
2930   case X86ISD::MOVDDUP:
2931     return DAG.getNode(Opc, dl, VT, V1);
2932   }
2933 }
2934
2935 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2936                                     SDValue V1, unsigned TargetMask,
2937                                     SelectionDAG &DAG) {
2938   switch(Opc) {
2939   default: llvm_unreachable("Unknown x86 shuffle node");
2940   case X86ISD::PSHUFD:
2941   case X86ISD::PSHUFHW:
2942   case X86ISD::PSHUFLW:
2943   case X86ISD::VPERMILP:
2944   case X86ISD::VPERMI:
2945     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2946   }
2947 }
2948
2949 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2950                                     SDValue V1, SDValue V2, unsigned TargetMask,
2951                                     SelectionDAG &DAG) {
2952   switch(Opc) {
2953   default: llvm_unreachable("Unknown x86 shuffle node");
2954   case X86ISD::PALIGN:
2955   case X86ISD::SHUFP:
2956   case X86ISD::VPERM2X128:
2957     return DAG.getNode(Opc, dl, VT, V1, V2,
2958                        DAG.getConstant(TargetMask, MVT::i8));
2959   }
2960 }
2961
2962 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2963                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
2964   switch(Opc) {
2965   default: llvm_unreachable("Unknown x86 shuffle node");
2966   case X86ISD::MOVLHPS:
2967   case X86ISD::MOVLHPD:
2968   case X86ISD::MOVHLPS:
2969   case X86ISD::MOVLPS:
2970   case X86ISD::MOVLPD:
2971   case X86ISD::MOVSS:
2972   case X86ISD::MOVSD:
2973   case X86ISD::UNPCKL:
2974   case X86ISD::UNPCKH:
2975     return DAG.getNode(Opc, dl, VT, V1, V2);
2976   }
2977 }
2978
2979 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
2980   MachineFunction &MF = DAG.getMachineFunction();
2981   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2982   int ReturnAddrIndex = FuncInfo->getRAIndex();
2983
2984   if (ReturnAddrIndex == 0) {
2985     // Set up a frame object for the return address.
2986     uint64_t SlotSize = TD->getPointerSize();
2987     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
2988                                                            false);
2989     FuncInfo->setRAIndex(ReturnAddrIndex);
2990   }
2991
2992   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2993 }
2994
2995
2996 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2997                                        bool hasSymbolicDisplacement) {
2998   // Offset should fit into 32 bit immediate field.
2999   if (!isInt<32>(Offset))
3000     return false;
3001
3002   // If we don't have a symbolic displacement - we don't have any extra
3003   // restrictions.
3004   if (!hasSymbolicDisplacement)
3005     return true;
3006
3007   // FIXME: Some tweaks might be needed for medium code model.
3008   if (M != CodeModel::Small && M != CodeModel::Kernel)
3009     return false;
3010
3011   // For small code model we assume that latest object is 16MB before end of 31
3012   // bits boundary. We may also accept pretty large negative constants knowing
3013   // that all objects are in the positive half of address space.
3014   if (M == CodeModel::Small && Offset < 16*1024*1024)
3015     return true;
3016
3017   // For kernel code model we know that all object resist in the negative half
3018   // of 32bits address space. We may not accept negative offsets, since they may
3019   // be just off and we may accept pretty large positive ones.
3020   if (M == CodeModel::Kernel && Offset > 0)
3021     return true;
3022
3023   return false;
3024 }
3025
3026 /// isCalleePop - Determines whether the callee is required to pop its
3027 /// own arguments. Callee pop is necessary to support tail calls.
3028 bool X86::isCalleePop(CallingConv::ID CallingConv,
3029                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3030   if (IsVarArg)
3031     return false;
3032
3033   switch (CallingConv) {
3034   default:
3035     return false;
3036   case CallingConv::X86_StdCall:
3037     return !is64Bit;
3038   case CallingConv::X86_FastCall:
3039     return !is64Bit;
3040   case CallingConv::X86_ThisCall:
3041     return !is64Bit;
3042   case CallingConv::Fast:
3043     return TailCallOpt;
3044   case CallingConv::GHC:
3045     return TailCallOpt;
3046   }
3047 }
3048
3049 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3050 /// specific condition code, returning the condition code and the LHS/RHS of the
3051 /// comparison to make.
3052 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3053                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3054   if (!isFP) {
3055     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3056       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3057         // X > -1   -> X == 0, jump !sign.
3058         RHS = DAG.getConstant(0, RHS.getValueType());
3059         return X86::COND_NS;
3060       }
3061       if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3062         // X < 0   -> X == 0, jump on sign.
3063         return X86::COND_S;
3064       }
3065       if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3066         // X < 1   -> X <= 0
3067         RHS = DAG.getConstant(0, RHS.getValueType());
3068         return X86::COND_LE;
3069       }
3070     }
3071
3072     switch (SetCCOpcode) {
3073     default: llvm_unreachable("Invalid integer condition!");
3074     case ISD::SETEQ:  return X86::COND_E;
3075     case ISD::SETGT:  return X86::COND_G;
3076     case ISD::SETGE:  return X86::COND_GE;
3077     case ISD::SETLT:  return X86::COND_L;
3078     case ISD::SETLE:  return X86::COND_LE;
3079     case ISD::SETNE:  return X86::COND_NE;
3080     case ISD::SETULT: return X86::COND_B;
3081     case ISD::SETUGT: return X86::COND_A;
3082     case ISD::SETULE: return X86::COND_BE;
3083     case ISD::SETUGE: return X86::COND_AE;
3084     }
3085   }
3086
3087   // First determine if it is required or is profitable to flip the operands.
3088
3089   // If LHS is a foldable load, but RHS is not, flip the condition.
3090   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3091       !ISD::isNON_EXTLoad(RHS.getNode())) {
3092     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3093     std::swap(LHS, RHS);
3094   }
3095
3096   switch (SetCCOpcode) {
3097   default: break;
3098   case ISD::SETOLT:
3099   case ISD::SETOLE:
3100   case ISD::SETUGT:
3101   case ISD::SETUGE:
3102     std::swap(LHS, RHS);
3103     break;
3104   }
3105
3106   // On a floating point condition, the flags are set as follows:
3107   // ZF  PF  CF   op
3108   //  0 | 0 | 0 | X > Y
3109   //  0 | 0 | 1 | X < Y
3110   //  1 | 0 | 0 | X == Y
3111   //  1 | 1 | 1 | unordered
3112   switch (SetCCOpcode) {
3113   default: llvm_unreachable("Condcode should be pre-legalized away");
3114   case ISD::SETUEQ:
3115   case ISD::SETEQ:   return X86::COND_E;
3116   case ISD::SETOLT:              // flipped
3117   case ISD::SETOGT:
3118   case ISD::SETGT:   return X86::COND_A;
3119   case ISD::SETOLE:              // flipped
3120   case ISD::SETOGE:
3121   case ISD::SETGE:   return X86::COND_AE;
3122   case ISD::SETUGT:              // flipped
3123   case ISD::SETULT:
3124   case ISD::SETLT:   return X86::COND_B;
3125   case ISD::SETUGE:              // flipped
3126   case ISD::SETULE:
3127   case ISD::SETLE:   return X86::COND_BE;
3128   case ISD::SETONE:
3129   case ISD::SETNE:   return X86::COND_NE;
3130   case ISD::SETUO:   return X86::COND_P;
3131   case ISD::SETO:    return X86::COND_NP;
3132   case ISD::SETOEQ:
3133   case ISD::SETUNE:  return X86::COND_INVALID;
3134   }
3135 }
3136
3137 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3138 /// code. Current x86 isa includes the following FP cmov instructions:
3139 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3140 static bool hasFPCMov(unsigned X86CC) {
3141   switch (X86CC) {
3142   default:
3143     return false;
3144   case X86::COND_B:
3145   case X86::COND_BE:
3146   case X86::COND_E:
3147   case X86::COND_P:
3148   case X86::COND_A:
3149   case X86::COND_AE:
3150   case X86::COND_NE:
3151   case X86::COND_NP:
3152     return true;
3153   }
3154 }
3155
3156 /// isFPImmLegal - Returns true if the target can instruction select the
3157 /// specified FP immediate natively. If false, the legalizer will
3158 /// materialize the FP immediate as a load from a constant pool.
3159 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3160   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3161     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3162       return true;
3163   }
3164   return false;
3165 }
3166
3167 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3168 /// the specified range (L, H].
3169 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3170   return (Val < 0) || (Val >= Low && Val < Hi);
3171 }
3172
3173 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3174 /// specified value.
3175 static bool isUndefOrEqual(int Val, int CmpVal) {
3176   if (Val < 0 || Val == CmpVal)
3177     return true;
3178   return false;
3179 }
3180
3181 /// isSequentialOrUndefInRange - Return true if every element in Mask, beginning
3182 /// from position Pos and ending in Pos+Size, falls within the specified
3183 /// sequential range (L, L+Pos]. or is undef.
3184 static bool isSequentialOrUndefInRange(ArrayRef<int> Mask,
3185                                        unsigned Pos, unsigned Size, int Low) {
3186   for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3187     if (!isUndefOrEqual(Mask[i], Low))
3188       return false;
3189   return true;
3190 }
3191
3192 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3193 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3194 /// the second operand.
3195 static bool isPSHUFDMask(ArrayRef<int> Mask, EVT VT) {
3196   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3197     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3198   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3199     return (Mask[0] < 2 && Mask[1] < 2);
3200   return false;
3201 }
3202
3203 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3204 /// is suitable for input to PSHUFHW.
3205 static bool isPSHUFHWMask(ArrayRef<int> Mask, EVT VT, bool HasAVX2) {
3206   if (VT != MVT::v8i16 && (!HasAVX2 || VT != MVT::v16i16))
3207     return false;
3208
3209   // Lower quadword copied in order or undef.
3210   if (!isSequentialOrUndefInRange(Mask, 0, 4, 0))
3211     return false;
3212
3213   // Upper quadword shuffled.
3214   for (unsigned i = 4; i != 8; ++i)
3215     if (!isUndefOrInRange(Mask[i], 4, 8))
3216       return false;
3217
3218   if (VT == MVT::v16i16) {
3219     // Lower quadword copied in order or undef.
3220     if (!isSequentialOrUndefInRange(Mask, 8, 4, 8))
3221       return false;
3222
3223     // Upper quadword shuffled.
3224     for (unsigned i = 12; i != 16; ++i)
3225       if (!isUndefOrInRange(Mask[i], 12, 16))
3226         return false;
3227   }
3228
3229   return true;
3230 }
3231
3232 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3233 /// is suitable for input to PSHUFLW.
3234 static bool isPSHUFLWMask(ArrayRef<int> Mask, EVT VT, bool HasAVX2) {
3235   if (VT != MVT::v8i16 && (!HasAVX2 || VT != MVT::v16i16))
3236     return false;
3237
3238   // Upper quadword copied in order.
3239   if (!isSequentialOrUndefInRange(Mask, 4, 4, 4))
3240     return false;
3241
3242   // Lower quadword shuffled.
3243   for (unsigned i = 0; i != 4; ++i)
3244     if (!isUndefOrInRange(Mask[i], 0, 4))
3245       return false;
3246
3247   if (VT == MVT::v16i16) {
3248     // Upper quadword copied in order.
3249     if (!isSequentialOrUndefInRange(Mask, 12, 4, 12))
3250       return false;
3251
3252     // Lower quadword shuffled.
3253     for (unsigned i = 8; i != 12; ++i)
3254       if (!isUndefOrInRange(Mask[i], 8, 12))
3255         return false;
3256   }
3257
3258   return true;
3259 }
3260
3261 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3262 /// is suitable for input to PALIGNR.
3263 static bool isPALIGNRMask(ArrayRef<int> Mask, EVT VT,
3264                           const X86Subtarget *Subtarget) {
3265   if ((VT.getSizeInBits() == 128 && !Subtarget->hasSSSE3()) ||
3266       (VT.getSizeInBits() == 256 && !Subtarget->hasAVX2()))
3267     return false;
3268
3269   unsigned NumElts = VT.getVectorNumElements();
3270   unsigned NumLanes = VT.getSizeInBits()/128;
3271   unsigned NumLaneElts = NumElts/NumLanes;
3272
3273   // Do not handle 64-bit element shuffles with palignr.
3274   if (NumLaneElts == 2)
3275     return false;
3276
3277   for (unsigned l = 0; l != NumElts; l+=NumLaneElts) {
3278     unsigned i;
3279     for (i = 0; i != NumLaneElts; ++i) {
3280       if (Mask[i+l] >= 0)
3281         break;
3282     }
3283
3284     // Lane is all undef, go to next lane
3285     if (i == NumLaneElts)
3286       continue;
3287
3288     int Start = Mask[i+l];
3289
3290     // Make sure its in this lane in one of the sources
3291     if (!isUndefOrInRange(Start, l, l+NumLaneElts) &&
3292         !isUndefOrInRange(Start, l+NumElts, l+NumElts+NumLaneElts))
3293       return false;
3294
3295     // If not lane 0, then we must match lane 0
3296     if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Start, Mask[i]+l))
3297       return false;
3298
3299     // Correct second source to be contiguous with first source
3300     if (Start >= (int)NumElts)
3301       Start -= NumElts - NumLaneElts;
3302
3303     // Make sure we're shifting in the right direction.
3304     if (Start <= (int)(i+l))
3305       return false;
3306
3307     Start -= i;
3308
3309     // Check the rest of the elements to see if they are consecutive.
3310     for (++i; i != NumLaneElts; ++i) {
3311       int Idx = Mask[i+l];
3312
3313       // Make sure its in this lane
3314       if (!isUndefOrInRange(Idx, l, l+NumLaneElts) &&
3315           !isUndefOrInRange(Idx, l+NumElts, l+NumElts+NumLaneElts))
3316         return false;
3317
3318       // If not lane 0, then we must match lane 0
3319       if (l != 0 && Mask[i] >= 0 && !isUndefOrEqual(Idx, Mask[i]+l))
3320         return false;
3321
3322       if (Idx >= (int)NumElts)
3323         Idx -= NumElts - NumLaneElts;
3324
3325       if (!isUndefOrEqual(Idx, Start+i))
3326         return false;
3327
3328     }
3329   }
3330
3331   return true;
3332 }
3333
3334 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3335 /// the two vector operands have swapped position.
3336 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask,
3337                                      unsigned NumElems) {
3338   for (unsigned i = 0; i != NumElems; ++i) {
3339     int idx = Mask[i];
3340     if (idx < 0)
3341       continue;
3342     else if (idx < (int)NumElems)
3343       Mask[i] = idx + NumElems;
3344     else
3345       Mask[i] = idx - NumElems;
3346   }
3347 }
3348
3349 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3350 /// specifies a shuffle of elements that is suitable for input to 128/256-bit
3351 /// SHUFPS and SHUFPD. If Commuted is true, then it checks for sources to be
3352 /// reverse of what x86 shuffles want.
3353 static bool isSHUFPMask(ArrayRef<int> Mask, EVT VT, bool HasAVX,
3354                         bool Commuted = false) {
3355   if (!HasAVX && VT.getSizeInBits() == 256)
3356     return false;
3357
3358   unsigned NumElems = VT.getVectorNumElements();
3359   unsigned NumLanes = VT.getSizeInBits()/128;
3360   unsigned NumLaneElems = NumElems/NumLanes;
3361
3362   if (NumLaneElems != 2 && NumLaneElems != 4)
3363     return false;
3364
3365   // VSHUFPSY divides the resulting vector into 4 chunks.
3366   // The sources are also splitted into 4 chunks, and each destination
3367   // chunk must come from a different source chunk.
3368   //
3369   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3370   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3371   //
3372   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3373   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3374   //
3375   // VSHUFPDY divides the resulting vector into 4 chunks.
3376   // The sources are also splitted into 4 chunks, and each destination
3377   // chunk must come from a different source chunk.
3378   //
3379   //  SRC1 =>      X3       X2       X1       X0
3380   //  SRC2 =>      Y3       Y2       Y1       Y0
3381   //
3382   //  DST  =>  Y3..Y2,  X3..X2,  Y1..Y0,  X1..X0
3383   //
3384   unsigned HalfLaneElems = NumLaneElems/2;
3385   for (unsigned l = 0; l != NumElems; l += NumLaneElems) {
3386     for (unsigned i = 0; i != NumLaneElems; ++i) {
3387       int Idx = Mask[i+l];
3388       unsigned RngStart = l + ((Commuted == (i<HalfLaneElems)) ? NumElems : 0);
3389       if (!isUndefOrInRange(Idx, RngStart, RngStart+NumLaneElems))
3390         return false;
3391       // For VSHUFPSY, the mask of the second half must be the same as the
3392       // first but with the appropriate offsets. This works in the same way as
3393       // VPERMILPS works with masks.
3394       if (NumElems != 8 || l == 0 || Mask[i] < 0)
3395         continue;
3396       if (!isUndefOrEqual(Idx, Mask[i]+l))
3397         return false;
3398     }
3399   }
3400
3401   return true;
3402 }
3403
3404 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3405 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3406 static bool isMOVHLPSMask(ArrayRef<int> Mask, EVT VT) {
3407   if (!VT.is128BitVector())
3408     return false;
3409
3410   unsigned NumElems = VT.getVectorNumElements();
3411
3412   if (NumElems != 4)
3413     return false;
3414
3415   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3416   return isUndefOrEqual(Mask[0], 6) &&
3417          isUndefOrEqual(Mask[1], 7) &&
3418          isUndefOrEqual(Mask[2], 2) &&
3419          isUndefOrEqual(Mask[3], 3);
3420 }
3421
3422 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3423 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3424 /// <2, 3, 2, 3>
3425 static bool isMOVHLPS_v_undef_Mask(ArrayRef<int> Mask, EVT VT) {
3426   if (!VT.is128BitVector())
3427     return false;
3428
3429   unsigned NumElems = VT.getVectorNumElements();
3430
3431   if (NumElems != 4)
3432     return false;
3433
3434   return isUndefOrEqual(Mask[0], 2) &&
3435          isUndefOrEqual(Mask[1], 3) &&
3436          isUndefOrEqual(Mask[2], 2) &&
3437          isUndefOrEqual(Mask[3], 3);
3438 }
3439
3440 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3441 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3442 static bool isMOVLPMask(ArrayRef<int> Mask, EVT VT) {
3443   if (!VT.is128BitVector())
3444     return false;
3445
3446   unsigned NumElems = VT.getVectorNumElements();
3447
3448   if (NumElems != 2 && NumElems != 4)
3449     return false;
3450
3451   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3452     if (!isUndefOrEqual(Mask[i], i + NumElems))
3453       return false;
3454
3455   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
3456     if (!isUndefOrEqual(Mask[i], i))
3457       return false;
3458
3459   return true;
3460 }
3461
3462 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3463 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3464 static bool isMOVLHPSMask(ArrayRef<int> Mask, EVT VT) {
3465   if (!VT.is128BitVector())
3466     return false;
3467
3468   unsigned NumElems = VT.getVectorNumElements();
3469
3470   if (NumElems != 2 && NumElems != 4)
3471     return false;
3472
3473   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3474     if (!isUndefOrEqual(Mask[i], i))
3475       return false;
3476
3477   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3478     if (!isUndefOrEqual(Mask[i + e], i + NumElems))
3479       return false;
3480
3481   return true;
3482 }
3483
3484 //
3485 // Some special combinations that can be optimized.
3486 //
3487 static
3488 SDValue Compact8x32ShuffleNode(ShuffleVectorSDNode *SVOp,
3489                                SelectionDAG &DAG) {
3490   EVT VT = SVOp->getValueType(0);
3491   DebugLoc dl = SVOp->getDebugLoc();
3492
3493   if (VT != MVT::v8i32 && VT != MVT::v8f32)
3494     return SDValue();
3495
3496   ArrayRef<int> Mask = SVOp->getMask();
3497
3498   // These are the special masks that may be optimized.
3499   static const int MaskToOptimizeEven[] = {0, 8, 2, 10, 4, 12, 6, 14};
3500   static const int MaskToOptimizeOdd[]  = {1, 9, 3, 11, 5, 13, 7, 15};
3501   bool MatchEvenMask = true;
3502   bool MatchOddMask  = true;
3503   for (int i=0; i<8; ++i) {
3504     if (!isUndefOrEqual(Mask[i], MaskToOptimizeEven[i]))
3505       MatchEvenMask = false;
3506     if (!isUndefOrEqual(Mask[i], MaskToOptimizeOdd[i]))
3507       MatchOddMask = false;
3508   }
3509   static const int CompactionMaskEven[] = {0, 2, -1, -1, 4, 6, -1, -1};
3510   static const int CompactionMaskOdd [] = {1, 3, -1, -1, 5, 7, -1, -1};
3511
3512   const int *CompactionMask;
3513   if (MatchEvenMask)
3514     CompactionMask = CompactionMaskEven;
3515   else if (MatchOddMask)
3516     CompactionMask = CompactionMaskOdd;
3517   else
3518     return SDValue();
3519
3520   SDValue UndefNode = DAG.getNode(ISD::UNDEF, dl, VT);
3521
3522   SDValue Op0 = DAG.getVectorShuffle(VT, dl, SVOp->getOperand(0),
3523                                      UndefNode, CompactionMask);
3524   SDValue Op1 = DAG.getVectorShuffle(VT, dl, SVOp->getOperand(1),
3525                                      UndefNode, CompactionMask);
3526   static const int UnpackMask[] = {0, 8, 1, 9, 4, 12, 5, 13};
3527   return DAG.getVectorShuffle(VT, dl, Op0, Op1, UnpackMask);
3528 }
3529
3530 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3531 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3532 static bool isUNPCKLMask(ArrayRef<int> Mask, EVT VT,
3533                          bool HasAVX2, bool V2IsSplat = false) {
3534   unsigned NumElts = VT.getVectorNumElements();
3535
3536   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3537          "Unsupported vector type for unpckh");
3538
3539   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3540       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3541     return false;
3542
3543   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3544   // independently on 128-bit lanes.
3545   unsigned NumLanes = VT.getSizeInBits()/128;
3546   unsigned NumLaneElts = NumElts/NumLanes;
3547
3548   for (unsigned l = 0; l != NumLanes; ++l) {
3549     for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3550          i != (l+1)*NumLaneElts;
3551          i += 2, ++j) {
3552       int BitI  = Mask[i];
3553       int BitI1 = Mask[i+1];
3554       if (!isUndefOrEqual(BitI, j))
3555         return false;
3556       if (V2IsSplat) {
3557         if (!isUndefOrEqual(BitI1, NumElts))
3558           return false;
3559       } else {
3560         if (!isUndefOrEqual(BitI1, j + NumElts))
3561           return false;
3562       }
3563     }
3564   }
3565
3566   return true;
3567 }
3568
3569 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3570 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3571 static bool isUNPCKHMask(ArrayRef<int> Mask, EVT VT,
3572                          bool HasAVX2, bool V2IsSplat = false) {
3573   unsigned NumElts = VT.getVectorNumElements();
3574
3575   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3576          "Unsupported vector type for unpckh");
3577
3578   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3579       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3580     return false;
3581
3582   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3583   // independently on 128-bit lanes.
3584   unsigned NumLanes = VT.getSizeInBits()/128;
3585   unsigned NumLaneElts = NumElts/NumLanes;
3586
3587   for (unsigned l = 0; l != NumLanes; ++l) {
3588     for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3589          i != (l+1)*NumLaneElts; i += 2, ++j) {
3590       int BitI  = Mask[i];
3591       int BitI1 = Mask[i+1];
3592       if (!isUndefOrEqual(BitI, j))
3593         return false;
3594       if (V2IsSplat) {
3595         if (isUndefOrEqual(BitI1, NumElts))
3596           return false;
3597       } else {
3598         if (!isUndefOrEqual(BitI1, j+NumElts))
3599           return false;
3600       }
3601     }
3602   }
3603   return true;
3604 }
3605
3606 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3607 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3608 /// <0, 0, 1, 1>
3609 static bool isUNPCKL_v_undef_Mask(ArrayRef<int> Mask, EVT VT,
3610                                   bool HasAVX2) {
3611   unsigned NumElts = VT.getVectorNumElements();
3612
3613   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3614          "Unsupported vector type for unpckh");
3615
3616   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3617       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3618     return false;
3619
3620   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3621   // FIXME: Need a better way to get rid of this, there's no latency difference
3622   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3623   // the former later. We should also remove the "_undef" special mask.
3624   if (NumElts == 4 && VT.getSizeInBits() == 256)
3625     return false;
3626
3627   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3628   // independently on 128-bit lanes.
3629   unsigned NumLanes = VT.getSizeInBits()/128;
3630   unsigned NumLaneElts = NumElts/NumLanes;
3631
3632   for (unsigned l = 0; l != NumLanes; ++l) {
3633     for (unsigned i = l*NumLaneElts, j = l*NumLaneElts;
3634          i != (l+1)*NumLaneElts;
3635          i += 2, ++j) {
3636       int BitI  = Mask[i];
3637       int BitI1 = Mask[i+1];
3638
3639       if (!isUndefOrEqual(BitI, j))
3640         return false;
3641       if (!isUndefOrEqual(BitI1, j))
3642         return false;
3643     }
3644   }
3645
3646   return true;
3647 }
3648
3649 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3650 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3651 /// <2, 2, 3, 3>
3652 static bool isUNPCKH_v_undef_Mask(ArrayRef<int> Mask, EVT VT, bool HasAVX2) {
3653   unsigned NumElts = VT.getVectorNumElements();
3654
3655   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3656          "Unsupported vector type for unpckh");
3657
3658   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3659       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3660     return false;
3661
3662   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3663   // independently on 128-bit lanes.
3664   unsigned NumLanes = VT.getSizeInBits()/128;
3665   unsigned NumLaneElts = NumElts/NumLanes;
3666
3667   for (unsigned l = 0; l != NumLanes; ++l) {
3668     for (unsigned i = l*NumLaneElts, j = (l*NumLaneElts)+NumLaneElts/2;
3669          i != (l+1)*NumLaneElts; i += 2, ++j) {
3670       int BitI  = Mask[i];
3671       int BitI1 = Mask[i+1];
3672       if (!isUndefOrEqual(BitI, j))
3673         return false;
3674       if (!isUndefOrEqual(BitI1, j))
3675         return false;
3676     }
3677   }
3678   return true;
3679 }
3680
3681 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3682 /// specifies a shuffle of elements that is suitable for input to MOVSS,
3683 /// MOVSD, and MOVD, i.e. setting the lowest element.
3684 static bool isMOVLMask(ArrayRef<int> Mask, EVT VT) {
3685   if (VT.getVectorElementType().getSizeInBits() < 32)
3686     return false;
3687   if (!VT.is128BitVector())
3688     return false;
3689
3690   unsigned NumElts = VT.getVectorNumElements();
3691
3692   if (!isUndefOrEqual(Mask[0], NumElts))
3693     return false;
3694
3695   for (unsigned i = 1; i != NumElts; ++i)
3696     if (!isUndefOrEqual(Mask[i], i))
3697       return false;
3698
3699   return true;
3700 }
3701
3702 /// isVPERM2X128Mask - Match 256-bit shuffles where the elements are considered
3703 /// as permutations between 128-bit chunks or halves. As an example: this
3704 /// shuffle bellow:
3705 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3706 /// The first half comes from the second half of V1 and the second half from the
3707 /// the second half of V2.
3708 static bool isVPERM2X128Mask(ArrayRef<int> Mask, EVT VT, bool HasAVX) {
3709   if (!HasAVX || !VT.is256BitVector())
3710     return false;
3711
3712   // The shuffle result is divided into half A and half B. In total the two
3713   // sources have 4 halves, namely: C, D, E, F. The final values of A and
3714   // B must come from C, D, E or F.
3715   unsigned HalfSize = VT.getVectorNumElements()/2;
3716   bool MatchA = false, MatchB = false;
3717
3718   // Check if A comes from one of C, D, E, F.
3719   for (unsigned Half = 0; Half != 4; ++Half) {
3720     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3721       MatchA = true;
3722       break;
3723     }
3724   }
3725
3726   // Check if B comes from one of C, D, E, F.
3727   for (unsigned Half = 0; Half != 4; ++Half) {
3728     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3729       MatchB = true;
3730       break;
3731     }
3732   }
3733
3734   return MatchA && MatchB;
3735 }
3736
3737 /// getShuffleVPERM2X128Immediate - Return the appropriate immediate to shuffle
3738 /// the specified VECTOR_MASK mask with VPERM2F128/VPERM2I128 instructions.
3739 static unsigned getShuffleVPERM2X128Immediate(ShuffleVectorSDNode *SVOp) {
3740   EVT VT = SVOp->getValueType(0);
3741
3742   unsigned HalfSize = VT.getVectorNumElements()/2;
3743
3744   unsigned FstHalf = 0, SndHalf = 0;
3745   for (unsigned i = 0; i < HalfSize; ++i) {
3746     if (SVOp->getMaskElt(i) > 0) {
3747       FstHalf = SVOp->getMaskElt(i)/HalfSize;
3748       break;
3749     }
3750   }
3751   for (unsigned i = HalfSize; i < HalfSize*2; ++i) {
3752     if (SVOp->getMaskElt(i) > 0) {
3753       SndHalf = SVOp->getMaskElt(i)/HalfSize;
3754       break;
3755     }
3756   }
3757
3758   return (FstHalf | (SndHalf << 4));
3759 }
3760
3761 /// isVPERMILPMask - Return true if the specified VECTOR_SHUFFLE operand
3762 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3763 /// Note that VPERMIL mask matching is different depending whether theunderlying
3764 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3765 /// to the same elements of the low, but to the higher half of the source.
3766 /// In VPERMILPD the two lanes could be shuffled independently of each other
3767 /// with the same restriction that lanes can't be crossed. Also handles PSHUFDY.
3768 static bool isVPERMILPMask(ArrayRef<int> Mask, EVT VT, bool HasAVX) {
3769   if (!HasAVX)
3770     return false;
3771
3772   unsigned NumElts = VT.getVectorNumElements();
3773   // Only match 256-bit with 32/64-bit types
3774   if (VT.getSizeInBits() != 256 || (NumElts != 4 && NumElts != 8))
3775     return false;
3776
3777   unsigned NumLanes = VT.getSizeInBits()/128;
3778   unsigned LaneSize = NumElts/NumLanes;
3779   for (unsigned l = 0; l != NumElts; l += LaneSize) {
3780     for (unsigned i = 0; i != LaneSize; ++i) {
3781       if (!isUndefOrInRange(Mask[i+l], l, l+LaneSize))
3782         return false;
3783       if (NumElts != 8 || l == 0)
3784         continue;
3785       // VPERMILPS handling
3786       if (Mask[i] < 0)
3787         continue;
3788       if (!isUndefOrEqual(Mask[i+l], Mask[i]+l))
3789         return false;
3790     }
3791   }
3792
3793   return true;
3794 }
3795
3796 /// isCommutedMOVLMask - Returns true if the shuffle mask is except the reverse
3797 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
3798 /// element of vector 2 and the other elements to come from vector 1 in order.
3799 static bool isCommutedMOVLMask(ArrayRef<int> Mask, EVT VT,
3800                                bool V2IsSplat = false, bool V2IsUndef = false) {
3801   if (!VT.is128BitVector())
3802     return false;
3803
3804   unsigned NumOps = VT.getVectorNumElements();
3805   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
3806     return false;
3807
3808   if (!isUndefOrEqual(Mask[0], 0))
3809     return false;
3810
3811   for (unsigned i = 1; i != NumOps; ++i)
3812     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3813           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3814           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
3815       return false;
3816
3817   return true;
3818 }
3819
3820 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3821 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
3822 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3823 static bool isMOVSHDUPMask(ArrayRef<int> Mask, EVT VT,
3824                            const X86Subtarget *Subtarget) {
3825   if (!Subtarget->hasSSE3())
3826     return false;
3827
3828   unsigned NumElems = VT.getVectorNumElements();
3829
3830   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3831       (VT.getSizeInBits() == 256 && NumElems != 8))
3832     return false;
3833
3834   // "i+1" is the value the indexed mask element must have
3835   for (unsigned i = 0; i != NumElems; i += 2)
3836     if (!isUndefOrEqual(Mask[i], i+1) ||
3837         !isUndefOrEqual(Mask[i+1], i+1))
3838       return false;
3839
3840   return true;
3841 }
3842
3843 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3844 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
3845 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3846 static bool isMOVSLDUPMask(ArrayRef<int> Mask, EVT VT,
3847                            const X86Subtarget *Subtarget) {
3848   if (!Subtarget->hasSSE3())
3849     return false;
3850
3851   unsigned NumElems = VT.getVectorNumElements();
3852
3853   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3854       (VT.getSizeInBits() == 256 && NumElems != 8))
3855     return false;
3856
3857   // "i" is the value the indexed mask element must have
3858   for (unsigned i = 0; i != NumElems; i += 2)
3859     if (!isUndefOrEqual(Mask[i], i) ||
3860         !isUndefOrEqual(Mask[i+1], i))
3861       return false;
3862
3863   return true;
3864 }
3865
3866 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
3867 /// specifies a shuffle of elements that is suitable for input to 256-bit
3868 /// version of MOVDDUP.
3869 static bool isMOVDDUPYMask(ArrayRef<int> Mask, EVT VT, bool HasAVX) {
3870   if (!HasAVX || !VT.is256BitVector())
3871     return false;
3872
3873   unsigned NumElts = VT.getVectorNumElements();
3874   if (NumElts != 4)
3875     return false;
3876
3877   for (unsigned i = 0; i != NumElts/2; ++i)
3878     if (!isUndefOrEqual(Mask[i], 0))
3879       return false;
3880   for (unsigned i = NumElts/2; i != NumElts; ++i)
3881     if (!isUndefOrEqual(Mask[i], NumElts/2))
3882       return false;
3883   return true;
3884 }
3885
3886 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3887 /// specifies a shuffle of elements that is suitable for input to 128-bit
3888 /// version of MOVDDUP.
3889 static bool isMOVDDUPMask(ArrayRef<int> Mask, EVT VT) {
3890   if (!VT.is128BitVector())
3891     return false;
3892
3893   unsigned e = VT.getVectorNumElements() / 2;
3894   for (unsigned i = 0; i != e; ++i)
3895     if (!isUndefOrEqual(Mask[i], i))
3896       return false;
3897   for (unsigned i = 0; i != e; ++i)
3898     if (!isUndefOrEqual(Mask[e+i], i))
3899       return false;
3900   return true;
3901 }
3902
3903 /// isVEXTRACTF128Index - Return true if the specified
3904 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3905 /// suitable for input to VEXTRACTF128.
3906 bool X86::isVEXTRACTF128Index(SDNode *N) {
3907   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3908     return false;
3909
3910   // The index should be aligned on a 128-bit boundary.
3911   uint64_t Index =
3912     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3913
3914   unsigned VL = N->getValueType(0).getVectorNumElements();
3915   unsigned VBits = N->getValueType(0).getSizeInBits();
3916   unsigned ElSize = VBits / VL;
3917   bool Result = (Index * ElSize) % 128 == 0;
3918
3919   return Result;
3920 }
3921
3922 /// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3923 /// operand specifies a subvector insert that is suitable for input to
3924 /// VINSERTF128.
3925 bool X86::isVINSERTF128Index(SDNode *N) {
3926   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3927     return false;
3928
3929   // The index should be aligned on a 128-bit boundary.
3930   uint64_t Index =
3931     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3932
3933   unsigned VL = N->getValueType(0).getVectorNumElements();
3934   unsigned VBits = N->getValueType(0).getSizeInBits();
3935   unsigned ElSize = VBits / VL;
3936   bool Result = (Index * ElSize) % 128 == 0;
3937
3938   return Result;
3939 }
3940
3941 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
3942 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
3943 /// Handles 128-bit and 256-bit.
3944 static unsigned getShuffleSHUFImmediate(ShuffleVectorSDNode *N) {
3945   EVT VT = N->getValueType(0);
3946
3947   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3948          "Unsupported vector type for PSHUF/SHUFP");
3949
3950   // Handle 128 and 256-bit vector lengths. AVX defines PSHUF/SHUFP to operate
3951   // independently on 128-bit lanes.
3952   unsigned NumElts = VT.getVectorNumElements();
3953   unsigned NumLanes = VT.getSizeInBits()/128;
3954   unsigned NumLaneElts = NumElts/NumLanes;
3955
3956   assert((NumLaneElts == 2 || NumLaneElts == 4) &&
3957          "Only supports 2 or 4 elements per lane");
3958
3959   unsigned Shift = (NumLaneElts == 4) ? 1 : 0;
3960   unsigned Mask = 0;
3961   for (unsigned i = 0; i != NumElts; ++i) {
3962     int Elt = N->getMaskElt(i);
3963     if (Elt < 0) continue;
3964     Elt &= NumLaneElts - 1;
3965     unsigned ShAmt = (i << Shift) % 8;
3966     Mask |= Elt << ShAmt;
3967   }
3968
3969   return Mask;
3970 }
3971
3972 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
3973 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
3974 static unsigned getShufflePSHUFHWImmediate(ShuffleVectorSDNode *N) {
3975   EVT VT = N->getValueType(0);
3976
3977   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
3978          "Unsupported vector type for PSHUFHW");
3979
3980   unsigned NumElts = VT.getVectorNumElements();
3981
3982   unsigned Mask = 0;
3983   for (unsigned l = 0; l != NumElts; l += 8) {
3984     // 8 nodes per lane, but we only care about the last 4.
3985     for (unsigned i = 0; i < 4; ++i) {
3986       int Elt = N->getMaskElt(l+i+4);
3987       if (Elt < 0) continue;
3988       Elt &= 0x3; // only 2-bits.
3989       Mask |= Elt << (i * 2);
3990     }
3991   }
3992
3993   return Mask;
3994 }
3995
3996 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
3997 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
3998 static unsigned getShufflePSHUFLWImmediate(ShuffleVectorSDNode *N) {
3999   EVT VT = N->getValueType(0);
4000
4001   assert((VT == MVT::v8i16 || VT == MVT::v16i16) &&
4002          "Unsupported vector type for PSHUFHW");
4003
4004   unsigned NumElts = VT.getVectorNumElements();
4005
4006   unsigned Mask = 0;
4007   for (unsigned l = 0; l != NumElts; l += 8) {
4008     // 8 nodes per lane, but we only care about the first 4.
4009     for (unsigned i = 0; i < 4; ++i) {
4010       int Elt = N->getMaskElt(l+i);
4011       if (Elt < 0) continue;
4012       Elt &= 0x3; // only 2-bits
4013       Mask |= Elt << (i * 2);
4014     }
4015   }
4016
4017   return Mask;
4018 }
4019
4020 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4021 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4022 static unsigned getShufflePALIGNRImmediate(ShuffleVectorSDNode *SVOp) {
4023   EVT VT = SVOp->getValueType(0);
4024   unsigned EltSize = VT.getVectorElementType().getSizeInBits() >> 3;
4025
4026   unsigned NumElts = VT.getVectorNumElements();
4027   unsigned NumLanes = VT.getSizeInBits()/128;
4028   unsigned NumLaneElts = NumElts/NumLanes;
4029
4030   int Val = 0;
4031   unsigned i;
4032   for (i = 0; i != NumElts; ++i) {
4033     Val = SVOp->getMaskElt(i);
4034     if (Val >= 0)
4035       break;
4036   }
4037   if (Val >= (int)NumElts)
4038     Val -= NumElts - NumLaneElts;
4039
4040   assert(Val - i > 0 && "PALIGNR imm should be positive");
4041   return (Val - i) * EltSize;
4042 }
4043
4044 /// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4045 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4046 /// instructions.
4047 unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4048   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4049     llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4050
4051   uint64_t Index =
4052     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4053
4054   EVT VecVT = N->getOperand(0).getValueType();
4055   EVT ElVT = VecVT.getVectorElementType();
4056
4057   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4058   return Index / NumElemsPerChunk;
4059 }
4060
4061 /// getInsertVINSERTF128Immediate - Return the appropriate immediate
4062 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4063 /// instructions.
4064 unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4065   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4066     llvm_unreachable("Illegal insert subvector for VINSERTF128");
4067
4068   uint64_t Index =
4069     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4070
4071   EVT VecVT = N->getValueType(0);
4072   EVT ElVT = VecVT.getVectorElementType();
4073
4074   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4075   return Index / NumElemsPerChunk;
4076 }
4077
4078 /// getShuffleCLImmediate - Return the appropriate immediate to shuffle
4079 /// the specified VECTOR_SHUFFLE mask with VPERMQ and VPERMPD instructions.
4080 /// Handles 256-bit.
4081 static unsigned getShuffleCLImmediate(ShuffleVectorSDNode *N) {
4082   EVT VT = N->getValueType(0);
4083
4084   unsigned NumElts = VT.getVectorNumElements();
4085
4086   assert((VT.is256BitVector() && NumElts == 4) &&
4087          "Unsupported vector type for VPERMQ/VPERMPD");
4088
4089   unsigned Mask = 0;
4090   for (unsigned i = 0; i != NumElts; ++i) {
4091     int Elt = N->getMaskElt(i);
4092     if (Elt < 0)
4093       continue;
4094     Mask |= Elt << (i*2);
4095   }
4096
4097   return Mask;
4098 }
4099 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4100 /// constant +0.0.
4101 bool X86::isZeroNode(SDValue Elt) {
4102   return ((isa<ConstantSDNode>(Elt) &&
4103            cast<ConstantSDNode>(Elt)->isNullValue()) ||
4104           (isa<ConstantFPSDNode>(Elt) &&
4105            cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4106 }
4107
4108 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4109 /// their permute mask.
4110 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4111                                     SelectionDAG &DAG) {
4112   EVT VT = SVOp->getValueType(0);
4113   unsigned NumElems = VT.getVectorNumElements();
4114   SmallVector<int, 8> MaskVec;
4115
4116   for (unsigned i = 0; i != NumElems; ++i) {
4117     int Idx = SVOp->getMaskElt(i);
4118     if (Idx >= 0) {
4119       if (Idx < (int)NumElems)
4120         Idx += NumElems;
4121       else
4122         Idx -= NumElems;
4123     }
4124     MaskVec.push_back(Idx);
4125   }
4126   return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4127                               SVOp->getOperand(0), &MaskVec[0]);
4128 }
4129
4130 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4131 /// match movhlps. The lower half elements should come from upper half of
4132 /// V1 (and in order), and the upper half elements should come from the upper
4133 /// half of V2 (and in order).
4134 static bool ShouldXformToMOVHLPS(ArrayRef<int> Mask, EVT VT) {
4135   if (!VT.is128BitVector())
4136     return false;
4137   if (VT.getVectorNumElements() != 4)
4138     return false;
4139   for (unsigned i = 0, e = 2; i != e; ++i)
4140     if (!isUndefOrEqual(Mask[i], i+2))
4141       return false;
4142   for (unsigned i = 2; i != 4; ++i)
4143     if (!isUndefOrEqual(Mask[i], i+4))
4144       return false;
4145   return true;
4146 }
4147
4148 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4149 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4150 /// required.
4151 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4152   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4153     return false;
4154   N = N->getOperand(0).getNode();
4155   if (!ISD::isNON_EXTLoad(N))
4156     return false;
4157   if (LD)
4158     *LD = cast<LoadSDNode>(N);
4159   return true;
4160 }
4161
4162 // Test whether the given value is a vector value which will be legalized
4163 // into a load.
4164 static bool WillBeConstantPoolLoad(SDNode *N) {
4165   if (N->getOpcode() != ISD::BUILD_VECTOR)
4166     return false;
4167
4168   // Check for any non-constant elements.
4169   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4170     switch (N->getOperand(i).getNode()->getOpcode()) {
4171     case ISD::UNDEF:
4172     case ISD::ConstantFP:
4173     case ISD::Constant:
4174       break;
4175     default:
4176       return false;
4177     }
4178
4179   // Vectors of all-zeros and all-ones are materialized with special
4180   // instructions rather than being loaded.
4181   return !ISD::isBuildVectorAllZeros(N) &&
4182          !ISD::isBuildVectorAllOnes(N);
4183 }
4184
4185 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4186 /// match movlp{s|d}. The lower half elements should come from lower half of
4187 /// V1 (and in order), and the upper half elements should come from the upper
4188 /// half of V2 (and in order). And since V1 will become the source of the
4189 /// MOVLP, it must be either a vector load or a scalar load to vector.
4190 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4191                                ArrayRef<int> Mask, EVT VT) {
4192   if (!VT.is128BitVector())
4193     return false;
4194
4195   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4196     return false;
4197   // Is V2 is a vector load, don't do this transformation. We will try to use
4198   // load folding shufps op.
4199   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4200     return false;
4201
4202   unsigned NumElems = VT.getVectorNumElements();
4203
4204   if (NumElems != 2 && NumElems != 4)
4205     return false;
4206   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4207     if (!isUndefOrEqual(Mask[i], i))
4208       return false;
4209   for (unsigned i = NumElems/2, e = NumElems; i != e; ++i)
4210     if (!isUndefOrEqual(Mask[i], i+NumElems))
4211       return false;
4212   return true;
4213 }
4214
4215 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4216 /// all the same.
4217 static bool isSplatVector(SDNode *N) {
4218   if (N->getOpcode() != ISD::BUILD_VECTOR)
4219     return false;
4220
4221   SDValue SplatValue = N->getOperand(0);
4222   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4223     if (N->getOperand(i) != SplatValue)
4224       return false;
4225   return true;
4226 }
4227
4228 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4229 /// to an zero vector.
4230 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4231 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4232   SDValue V1 = N->getOperand(0);
4233   SDValue V2 = N->getOperand(1);
4234   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4235   for (unsigned i = 0; i != NumElems; ++i) {
4236     int Idx = N->getMaskElt(i);
4237     if (Idx >= (int)NumElems) {
4238       unsigned Opc = V2.getOpcode();
4239       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4240         continue;
4241       if (Opc != ISD::BUILD_VECTOR ||
4242           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4243         return false;
4244     } else if (Idx >= 0) {
4245       unsigned Opc = V1.getOpcode();
4246       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4247         continue;
4248       if (Opc != ISD::BUILD_VECTOR ||
4249           !X86::isZeroNode(V1.getOperand(Idx)))
4250         return false;
4251     }
4252   }
4253   return true;
4254 }
4255
4256 /// getZeroVector - Returns a vector of specified type with all zero elements.
4257 ///
4258 static SDValue getZeroVector(EVT VT, const X86Subtarget *Subtarget,
4259                              SelectionDAG &DAG, DebugLoc dl) {
4260   assert(VT.isVector() && "Expected a vector type");
4261   unsigned Size = VT.getSizeInBits();
4262
4263   // Always build SSE zero vectors as <4 x i32> bitcasted
4264   // to their dest type. This ensures they get CSE'd.
4265   SDValue Vec;
4266   if (Size == 128) {  // SSE
4267     if (Subtarget->hasSSE2()) {  // SSE2
4268       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4269       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4270     } else { // SSE1
4271       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4272       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4273     }
4274   } else if (Size == 256) { // AVX
4275     if (Subtarget->hasAVX2()) { // AVX2
4276       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4277       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4278       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4279     } else {
4280       // 256-bit logic and arithmetic instructions in AVX are all
4281       // floating-point, no support for integer ops. Emit fp zeroed vectors.
4282       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4283       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4284       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
4285     }
4286   } else
4287     llvm_unreachable("Unexpected vector type");
4288
4289   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4290 }
4291
4292 /// getOnesVector - Returns a vector of specified type with all bits set.
4293 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4294 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4295 /// Then bitcast to their original type, ensuring they get CSE'd.
4296 static SDValue getOnesVector(EVT VT, bool HasAVX2, SelectionDAG &DAG,
4297                              DebugLoc dl) {
4298   assert(VT.isVector() && "Expected a vector type");
4299   unsigned Size = VT.getSizeInBits();
4300
4301   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4302   SDValue Vec;
4303   if (Size == 256) {
4304     if (HasAVX2) { // AVX2
4305       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4306       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4307     } else { // AVX
4308       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4309       Vec = Concat128BitVectors(Vec, Vec, MVT::v8i32, 8, DAG, dl);
4310     }
4311   } else if (Size == 128) {
4312     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4313   } else
4314     llvm_unreachable("Unexpected vector type");
4315
4316   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4317 }
4318
4319 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4320 /// that point to V2 points to its first element.
4321 static void NormalizeMask(SmallVectorImpl<int> &Mask, unsigned NumElems) {
4322   for (unsigned i = 0; i != NumElems; ++i) {
4323     if (Mask[i] > (int)NumElems) {
4324       Mask[i] = NumElems;
4325     }
4326   }
4327 }
4328
4329 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4330 /// operation of specified width.
4331 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4332                        SDValue V2) {
4333   unsigned NumElems = VT.getVectorNumElements();
4334   SmallVector<int, 8> Mask;
4335   Mask.push_back(NumElems);
4336   for (unsigned i = 1; i != NumElems; ++i)
4337     Mask.push_back(i);
4338   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4339 }
4340
4341 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4342 static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4343                           SDValue V2) {
4344   unsigned NumElems = VT.getVectorNumElements();
4345   SmallVector<int, 8> Mask;
4346   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4347     Mask.push_back(i);
4348     Mask.push_back(i + NumElems);
4349   }
4350   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4351 }
4352
4353 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4354 static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4355                           SDValue V2) {
4356   unsigned NumElems = VT.getVectorNumElements();
4357   SmallVector<int, 8> Mask;
4358   for (unsigned i = 0, Half = NumElems/2; i != Half; ++i) {
4359     Mask.push_back(i + Half);
4360     Mask.push_back(i + NumElems + Half);
4361   }
4362   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4363 }
4364
4365 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4366 // a generic shuffle instruction because the target has no such instructions.
4367 // Generate shuffles which repeat i16 and i8 several times until they can be
4368 // represented by v4f32 and then be manipulated by target suported shuffles.
4369 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4370   EVT VT = V.getValueType();
4371   int NumElems = VT.getVectorNumElements();
4372   DebugLoc dl = V.getDebugLoc();
4373
4374   while (NumElems > 4) {
4375     if (EltNo < NumElems/2) {
4376       V = getUnpackl(DAG, dl, VT, V, V);
4377     } else {
4378       V = getUnpackh(DAG, dl, VT, V, V);
4379       EltNo -= NumElems/2;
4380     }
4381     NumElems >>= 1;
4382   }
4383   return V;
4384 }
4385
4386 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4387 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4388   EVT VT = V.getValueType();
4389   DebugLoc dl = V.getDebugLoc();
4390   unsigned Size = VT.getSizeInBits();
4391
4392   if (Size == 128) {
4393     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4394     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4395     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4396                              &SplatMask[0]);
4397   } else if (Size == 256) {
4398     // To use VPERMILPS to splat scalars, the second half of indicies must
4399     // refer to the higher part, which is a duplication of the lower one,
4400     // because VPERMILPS can only handle in-lane permutations.
4401     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4402                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4403
4404     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4405     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4406                              &SplatMask[0]);
4407   } else
4408     llvm_unreachable("Vector size not supported");
4409
4410   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4411 }
4412
4413 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4414 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4415   EVT SrcVT = SV->getValueType(0);
4416   SDValue V1 = SV->getOperand(0);
4417   DebugLoc dl = SV->getDebugLoc();
4418
4419   int EltNo = SV->getSplatIndex();
4420   int NumElems = SrcVT.getVectorNumElements();
4421   unsigned Size = SrcVT.getSizeInBits();
4422
4423   assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4424           "Unknown how to promote splat for type");
4425
4426   // Extract the 128-bit part containing the splat element and update
4427   // the splat element index when it refers to the higher register.
4428   if (Size == 256) {
4429     V1 = Extract128BitVector(V1, EltNo, DAG, dl);
4430     if (EltNo >= NumElems/2)
4431       EltNo -= NumElems/2;
4432   }
4433
4434   // All i16 and i8 vector types can't be used directly by a generic shuffle
4435   // instruction because the target has no such instruction. Generate shuffles
4436   // which repeat i16 and i8 several times until they fit in i32, and then can
4437   // be manipulated by target suported shuffles.
4438   EVT EltVT = SrcVT.getVectorElementType();
4439   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4440     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4441
4442   // Recreate the 256-bit vector and place the same 128-bit vector
4443   // into the low and high part. This is necessary because we want
4444   // to use VPERM* to shuffle the vectors
4445   if (Size == 256) {
4446     V1 = DAG.getNode(ISD::CONCAT_VECTORS, dl, SrcVT, V1, V1);
4447   }
4448
4449   return getLegalSplat(DAG, V1, EltNo);
4450 }
4451
4452 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4453 /// vector of zero or undef vector.  This produces a shuffle where the low
4454 /// element of V2 is swizzled into the zero/undef vector, landing at element
4455 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4456 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4457                                            bool IsZero,
4458                                            const X86Subtarget *Subtarget,
4459                                            SelectionDAG &DAG) {
4460   EVT VT = V2.getValueType();
4461   SDValue V1 = IsZero
4462     ? getZeroVector(VT, Subtarget, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4463   unsigned NumElems = VT.getVectorNumElements();
4464   SmallVector<int, 16> MaskVec;
4465   for (unsigned i = 0; i != NumElems; ++i)
4466     // If this is the insertion idx, put the low elt of V2 here.
4467     MaskVec.push_back(i == Idx ? NumElems : i);
4468   return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
4469 }
4470
4471 /// getTargetShuffleMask - Calculates the shuffle mask corresponding to the
4472 /// target specific opcode. Returns true if the Mask could be calculated.
4473 /// Sets IsUnary to true if only uses one source.
4474 static bool getTargetShuffleMask(SDNode *N, MVT VT,
4475                                  SmallVectorImpl<int> &Mask, bool &IsUnary) {
4476   unsigned NumElems = VT.getVectorNumElements();
4477   SDValue ImmN;
4478
4479   IsUnary = false;
4480   switch(N->getOpcode()) {
4481   case X86ISD::SHUFP:
4482     ImmN = N->getOperand(N->getNumOperands()-1);
4483     DecodeSHUFPMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4484     break;
4485   case X86ISD::UNPCKH:
4486     DecodeUNPCKHMask(VT, Mask);
4487     break;
4488   case X86ISD::UNPCKL:
4489     DecodeUNPCKLMask(VT, Mask);
4490     break;
4491   case X86ISD::MOVHLPS:
4492     DecodeMOVHLPSMask(NumElems, Mask);
4493     break;
4494   case X86ISD::MOVLHPS:
4495     DecodeMOVLHPSMask(NumElems, Mask);
4496     break;
4497   case X86ISD::PSHUFD:
4498   case X86ISD::VPERMILP:
4499     ImmN = N->getOperand(N->getNumOperands()-1);
4500     DecodePSHUFMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4501     IsUnary = true;
4502     break;
4503   case X86ISD::PSHUFHW:
4504     ImmN = N->getOperand(N->getNumOperands()-1);
4505     DecodePSHUFHWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4506     IsUnary = true;
4507     break;
4508   case X86ISD::PSHUFLW:
4509     ImmN = N->getOperand(N->getNumOperands()-1);
4510     DecodePSHUFLWMask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4511     IsUnary = true;
4512     break;
4513   case X86ISD::VPERMI:
4514     ImmN = N->getOperand(N->getNumOperands()-1);
4515     DecodeVPERMMask(cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4516     IsUnary = true;
4517     break;
4518   case X86ISD::MOVSS:
4519   case X86ISD::MOVSD: {
4520     // The index 0 always comes from the first element of the second source,
4521     // this is why MOVSS and MOVSD are used in the first place. The other
4522     // elements come from the other positions of the first source vector
4523     Mask.push_back(NumElems);
4524     for (unsigned i = 1; i != NumElems; ++i) {
4525       Mask.push_back(i);
4526     }
4527     break;
4528   }
4529   case X86ISD::VPERM2X128:
4530     ImmN = N->getOperand(N->getNumOperands()-1);
4531     DecodeVPERM2X128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(), Mask);
4532     if (Mask.empty()) return false;
4533     break;
4534   case X86ISD::MOVDDUP:
4535   case X86ISD::MOVLHPD:
4536   case X86ISD::MOVLPD:
4537   case X86ISD::MOVLPS:
4538   case X86ISD::MOVSHDUP:
4539   case X86ISD::MOVSLDUP:
4540   case X86ISD::PALIGN:
4541     // Not yet implemented
4542     return false;
4543   default: llvm_unreachable("unknown target shuffle node");
4544   }
4545
4546   return true;
4547 }
4548
4549 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4550 /// element of the result of the vector shuffle.
4551 static SDValue getShuffleScalarElt(SDNode *N, unsigned Index, SelectionDAG &DAG,
4552                                    unsigned Depth) {
4553   if (Depth == 6)
4554     return SDValue();  // Limit search depth.
4555
4556   SDValue V = SDValue(N, 0);
4557   EVT VT = V.getValueType();
4558   unsigned Opcode = V.getOpcode();
4559
4560   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4561   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4562     int Elt = SV->getMaskElt(Index);
4563
4564     if (Elt < 0)
4565       return DAG.getUNDEF(VT.getVectorElementType());
4566
4567     unsigned NumElems = VT.getVectorNumElements();
4568     SDValue NewV = (Elt < (int)NumElems) ? SV->getOperand(0)
4569                                          : SV->getOperand(1);
4570     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG, Depth+1);
4571   }
4572
4573   // Recurse into target specific vector shuffles to find scalars.
4574   if (isTargetShuffle(Opcode)) {
4575     MVT ShufVT = V.getValueType().getSimpleVT();
4576     unsigned NumElems = ShufVT.getVectorNumElements();
4577     SmallVector<int, 16> ShuffleMask;
4578     SDValue ImmN;
4579     bool IsUnary;
4580
4581     if (!getTargetShuffleMask(N, ShufVT, ShuffleMask, IsUnary))
4582       return SDValue();
4583
4584     int Elt = ShuffleMask[Index];
4585     if (Elt < 0)
4586       return DAG.getUNDEF(ShufVT.getVectorElementType());
4587
4588     SDValue NewV = (Elt < (int)NumElems) ? N->getOperand(0)
4589                                          : N->getOperand(1);
4590     return getShuffleScalarElt(NewV.getNode(), Elt % NumElems, DAG,
4591                                Depth+1);
4592   }
4593
4594   // Actual nodes that may contain scalar elements
4595   if (Opcode == ISD::BITCAST) {
4596     V = V.getOperand(0);
4597     EVT SrcVT = V.getValueType();
4598     unsigned NumElems = VT.getVectorNumElements();
4599
4600     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4601       return SDValue();
4602   }
4603
4604   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4605     return (Index == 0) ? V.getOperand(0)
4606                         : DAG.getUNDEF(VT.getVectorElementType());
4607
4608   if (V.getOpcode() == ISD::BUILD_VECTOR)
4609     return V.getOperand(Index);
4610
4611   return SDValue();
4612 }
4613
4614 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
4615 /// shuffle operation which come from a consecutively from a zero. The
4616 /// search can start in two different directions, from left or right.
4617 static
4618 unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, unsigned NumElems,
4619                                   bool ZerosFromLeft, SelectionDAG &DAG) {
4620   unsigned i;
4621   for (i = 0; i != NumElems; ++i) {
4622     unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
4623     SDValue Elt = getShuffleScalarElt(SVOp, Index, DAG, 0);
4624     if (!(Elt.getNode() &&
4625          (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4626       break;
4627   }
4628
4629   return i;
4630 }
4631
4632 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies [MaskI, MaskE)
4633 /// correspond consecutively to elements from one of the vector operands,
4634 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
4635 static
4636 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp,
4637                               unsigned MaskI, unsigned MaskE, unsigned OpIdx,
4638                               unsigned NumElems, unsigned &OpNum) {
4639   bool SeenV1 = false;
4640   bool SeenV2 = false;
4641
4642   for (unsigned i = MaskI; i != MaskE; ++i, ++OpIdx) {
4643     int Idx = SVOp->getMaskElt(i);
4644     // Ignore undef indicies
4645     if (Idx < 0)
4646       continue;
4647
4648     if (Idx < (int)NumElems)
4649       SeenV1 = true;
4650     else
4651       SeenV2 = true;
4652
4653     // Only accept consecutive elements from the same vector
4654     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4655       return false;
4656   }
4657
4658   OpNum = SeenV1 ? 0 : 1;
4659   return true;
4660 }
4661
4662 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4663 /// logical left shift of a vector.
4664 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4665                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4666   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4667   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4668               false /* check zeros from right */, DAG);
4669   unsigned OpSrc;
4670
4671   if (!NumZeros)
4672     return false;
4673
4674   // Considering the elements in the mask that are not consecutive zeros,
4675   // check if they consecutively come from only one of the source vectors.
4676   //
4677   //               V1 = {X, A, B, C}     0
4678   //                         \  \  \    /
4679   //   vector_shuffle V1, V2 <1, 2, 3, X>
4680   //
4681   if (!isShuffleMaskConsecutive(SVOp,
4682             0,                   // Mask Start Index
4683             NumElems-NumZeros,   // Mask End Index(exclusive)
4684             NumZeros,            // Where to start looking in the src vector
4685             NumElems,            // Number of elements in vector
4686             OpSrc))              // Which source operand ?
4687     return false;
4688
4689   isLeft = false;
4690   ShAmt = NumZeros;
4691   ShVal = SVOp->getOperand(OpSrc);
4692   return true;
4693 }
4694
4695 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4696 /// logical left shift of a vector.
4697 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4698                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4699   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4700   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4701               true /* check zeros from left */, DAG);
4702   unsigned OpSrc;
4703
4704   if (!NumZeros)
4705     return false;
4706
4707   // Considering the elements in the mask that are not consecutive zeros,
4708   // check if they consecutively come from only one of the source vectors.
4709   //
4710   //                           0    { A, B, X, X } = V2
4711   //                          / \    /  /
4712   //   vector_shuffle V1, V2 <X, X, 4, 5>
4713   //
4714   if (!isShuffleMaskConsecutive(SVOp,
4715             NumZeros,     // Mask Start Index
4716             NumElems,     // Mask End Index(exclusive)
4717             0,            // Where to start looking in the src vector
4718             NumElems,     // Number of elements in vector
4719             OpSrc))       // Which source operand ?
4720     return false;
4721
4722   isLeft = true;
4723   ShAmt = NumZeros;
4724   ShVal = SVOp->getOperand(OpSrc);
4725   return true;
4726 }
4727
4728 /// isVectorShift - Returns true if the shuffle can be implemented as a
4729 /// logical left or right shift of a vector.
4730 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4731                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4732   // Although the logic below support any bitwidth size, there are no
4733   // shift instructions which handle more than 128-bit vectors.
4734   if (!SVOp->getValueType(0).is128BitVector())
4735     return false;
4736
4737   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4738       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4739     return true;
4740
4741   return false;
4742 }
4743
4744 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4745 ///
4746 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4747                                        unsigned NumNonZero, unsigned NumZero,
4748                                        SelectionDAG &DAG,
4749                                        const X86Subtarget* Subtarget,
4750                                        const TargetLowering &TLI) {
4751   if (NumNonZero > 8)
4752     return SDValue();
4753
4754   DebugLoc dl = Op.getDebugLoc();
4755   SDValue V(0, 0);
4756   bool First = true;
4757   for (unsigned i = 0; i < 16; ++i) {
4758     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4759     if (ThisIsNonZero && First) {
4760       if (NumZero)
4761         V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4762       else
4763         V = DAG.getUNDEF(MVT::v8i16);
4764       First = false;
4765     }
4766
4767     if ((i & 1) != 0) {
4768       SDValue ThisElt(0, 0), LastElt(0, 0);
4769       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4770       if (LastIsNonZero) {
4771         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4772                               MVT::i16, Op.getOperand(i-1));
4773       }
4774       if (ThisIsNonZero) {
4775         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4776         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4777                               ThisElt, DAG.getConstant(8, MVT::i8));
4778         if (LastIsNonZero)
4779           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4780       } else
4781         ThisElt = LastElt;
4782
4783       if (ThisElt.getNode())
4784         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4785                         DAG.getIntPtrConstant(i/2));
4786     }
4787   }
4788
4789   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
4790 }
4791
4792 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
4793 ///
4794 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4795                                      unsigned NumNonZero, unsigned NumZero,
4796                                      SelectionDAG &DAG,
4797                                      const X86Subtarget* Subtarget,
4798                                      const TargetLowering &TLI) {
4799   if (NumNonZero > 4)
4800     return SDValue();
4801
4802   DebugLoc dl = Op.getDebugLoc();
4803   SDValue V(0, 0);
4804   bool First = true;
4805   for (unsigned i = 0; i < 8; ++i) {
4806     bool isNonZero = (NonZeros & (1 << i)) != 0;
4807     if (isNonZero) {
4808       if (First) {
4809         if (NumZero)
4810           V = getZeroVector(MVT::v8i16, Subtarget, DAG, dl);
4811         else
4812           V = DAG.getUNDEF(MVT::v8i16);
4813         First = false;
4814       }
4815       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4816                       MVT::v8i16, V, Op.getOperand(i),
4817                       DAG.getIntPtrConstant(i));
4818     }
4819   }
4820
4821   return V;
4822 }
4823
4824 /// getVShift - Return a vector logical shift node.
4825 ///
4826 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
4827                          unsigned NumBits, SelectionDAG &DAG,
4828                          const TargetLowering &TLI, DebugLoc dl) {
4829   assert(VT.is128BitVector() && "Unknown type for VShift");
4830   EVT ShVT = MVT::v2i64;
4831   unsigned Opc = isLeft ? X86ISD::VSHLDQ : X86ISD::VSRLDQ;
4832   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4833   return DAG.getNode(ISD::BITCAST, dl, VT,
4834                      DAG.getNode(Opc, dl, ShVT, SrcOp,
4835                              DAG.getConstant(NumBits,
4836                                   TLI.getShiftAmountTy(SrcOp.getValueType()))));
4837 }
4838
4839 SDValue
4840 X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
4841                                           SelectionDAG &DAG) const {
4842
4843   // Check if the scalar load can be widened into a vector load. And if
4844   // the address is "base + cst" see if the cst can be "absorbed" into
4845   // the shuffle mask.
4846   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4847     SDValue Ptr = LD->getBasePtr();
4848     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4849       return SDValue();
4850     EVT PVT = LD->getValueType(0);
4851     if (PVT != MVT::i32 && PVT != MVT::f32)
4852       return SDValue();
4853
4854     int FI = -1;
4855     int64_t Offset = 0;
4856     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4857       FI = FINode->getIndex();
4858       Offset = 0;
4859     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
4860                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4861       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4862       Offset = Ptr.getConstantOperandVal(1);
4863       Ptr = Ptr.getOperand(0);
4864     } else {
4865       return SDValue();
4866     }
4867
4868     // FIXME: 256-bit vector instructions don't require a strict alignment,
4869     // improve this code to support it better.
4870     unsigned RequiredAlign = VT.getSizeInBits()/8;
4871     SDValue Chain = LD->getChain();
4872     // Make sure the stack object alignment is at least 16 or 32.
4873     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4874     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
4875       if (MFI->isFixedObjectIndex(FI)) {
4876         // Can't change the alignment. FIXME: It's possible to compute
4877         // the exact stack offset and reference FI + adjust offset instead.
4878         // If someone *really* cares about this. That's the way to implement it.
4879         return SDValue();
4880       } else {
4881         MFI->setObjectAlignment(FI, RequiredAlign);
4882       }
4883     }
4884
4885     // (Offset % 16 or 32) must be multiple of 4. Then address is then
4886     // Ptr + (Offset & ~15).
4887     if (Offset < 0)
4888       return SDValue();
4889     if ((Offset % RequiredAlign) & 3)
4890       return SDValue();
4891     int64_t StartOffset = Offset & ~(RequiredAlign-1);
4892     if (StartOffset)
4893       Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4894                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4895
4896     int EltNo = (Offset - StartOffset) >> 2;
4897     unsigned NumElems = VT.getVectorNumElements();
4898
4899     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
4900     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
4901                              LD->getPointerInfo().getWithOffset(StartOffset),
4902                              false, false, false, 0);
4903
4904     SmallVector<int, 8> Mask;
4905     for (unsigned i = 0; i != NumElems; ++i)
4906       Mask.push_back(EltNo);
4907
4908     return DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &Mask[0]);
4909   }
4910
4911   return SDValue();
4912 }
4913
4914 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4915 /// vector of type 'VT', see if the elements can be replaced by a single large
4916 /// load which has the same value as a build_vector whose operands are 'elts'.
4917 ///
4918 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
4919 ///
4920 /// FIXME: we'd also like to handle the case where the last elements are zero
4921 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4922 /// There's even a handy isZeroNode for that purpose.
4923 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
4924                                         DebugLoc &DL, SelectionDAG &DAG) {
4925   EVT EltVT = VT.getVectorElementType();
4926   unsigned NumElems = Elts.size();
4927
4928   LoadSDNode *LDBase = NULL;
4929   unsigned LastLoadedElt = -1U;
4930
4931   // For each element in the initializer, see if we've found a load or an undef.
4932   // If we don't find an initial load element, or later load elements are
4933   // non-consecutive, bail out.
4934   for (unsigned i = 0; i < NumElems; ++i) {
4935     SDValue Elt = Elts[i];
4936
4937     if (!Elt.getNode() ||
4938         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4939       return SDValue();
4940     if (!LDBase) {
4941       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4942         return SDValue();
4943       LDBase = cast<LoadSDNode>(Elt.getNode());
4944       LastLoadedElt = i;
4945       continue;
4946     }
4947     if (Elt.getOpcode() == ISD::UNDEF)
4948       continue;
4949
4950     LoadSDNode *LD = cast<LoadSDNode>(Elt);
4951     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4952       return SDValue();
4953     LastLoadedElt = i;
4954   }
4955
4956   // If we have found an entire vector of loads and undefs, then return a large
4957   // load of the entire vector width starting at the base pointer.  If we found
4958   // consecutive loads for the low half, generate a vzext_load node.
4959   if (LastLoadedElt == NumElems - 1) {
4960     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
4961       return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
4962                          LDBase->getPointerInfo(),
4963                          LDBase->isVolatile(), LDBase->isNonTemporal(),
4964                          LDBase->isInvariant(), 0);
4965     return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
4966                        LDBase->getPointerInfo(),
4967                        LDBase->isVolatile(), LDBase->isNonTemporal(),
4968                        LDBase->isInvariant(), LDBase->getAlignment());
4969   }
4970   if (NumElems == 4 && LastLoadedElt == 1 &&
4971       DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
4972     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4973     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
4974     SDValue ResNode =
4975         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
4976                                 LDBase->getPointerInfo(),
4977                                 LDBase->getAlignment(),
4978                                 false/*isVolatile*/, true/*ReadMem*/,
4979                                 false/*WriteMem*/);
4980     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
4981   }
4982   return SDValue();
4983 }
4984
4985 /// LowerVectorBroadcast - Attempt to use the vbroadcast instruction
4986 /// to generate a splat value for the following cases:
4987 /// 1. A splat BUILD_VECTOR which uses a single scalar load, or a constant.
4988 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
4989 /// a scalar load, or a constant.
4990 /// The VBROADCAST node is returned when a pattern is found,
4991 /// or SDValue() otherwise.
4992 SDValue
4993 X86TargetLowering::LowerVectorBroadcast(SDValue &Op, SelectionDAG &DAG) const {
4994   if (!Subtarget->hasAVX())
4995     return SDValue();
4996
4997   EVT VT = Op.getValueType();
4998   DebugLoc dl = Op.getDebugLoc();
4999
5000   assert((VT.is128BitVector() || VT.is256BitVector()) &&
5001          "Unsupported vector type for broadcast.");
5002
5003   SDValue Ld;
5004   bool ConstSplatVal;
5005
5006   switch (Op.getOpcode()) {
5007     default:
5008       // Unknown pattern found.
5009       return SDValue();
5010
5011     case ISD::BUILD_VECTOR: {
5012       // The BUILD_VECTOR node must be a splat.
5013       if (!isSplatVector(Op.getNode()))
5014         return SDValue();
5015
5016       Ld = Op.getOperand(0);
5017       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5018                      Ld.getOpcode() == ISD::ConstantFP);
5019
5020       // The suspected load node has several users. Make sure that all
5021       // of its users are from the BUILD_VECTOR node.
5022       // Constants may have multiple users.
5023       if (!ConstSplatVal && !Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5024         return SDValue();
5025       break;
5026     }
5027
5028     case ISD::VECTOR_SHUFFLE: {
5029       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5030
5031       // Shuffles must have a splat mask where the first element is
5032       // broadcasted.
5033       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5034         return SDValue();
5035
5036       SDValue Sc = Op.getOperand(0);
5037       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR &&
5038           Sc.getOpcode() != ISD::BUILD_VECTOR) {
5039
5040         if (!Subtarget->hasAVX2())
5041           return SDValue();
5042
5043         // Use the register form of the broadcast instruction available on AVX2.
5044         if (VT.is256BitVector())
5045           Sc = Extract128BitVector(Sc, 0, DAG, dl);
5046         return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Sc);
5047       }
5048
5049       Ld = Sc.getOperand(0);
5050       ConstSplatVal = (Ld.getOpcode() == ISD::Constant ||
5051                        Ld.getOpcode() == ISD::ConstantFP);
5052
5053       // The scalar_to_vector node and the suspected
5054       // load node must have exactly one user.
5055       // Constants may have multiple users.
5056       if (!ConstSplatVal && (!Sc.hasOneUse() || !Ld.hasOneUse()))
5057         return SDValue();
5058       break;
5059     }
5060   }
5061
5062   bool Is256 = VT.is256BitVector();
5063
5064   // Handle the broadcasting a single constant scalar from the constant pool
5065   // into a vector. On Sandybridge it is still better to load a constant vector
5066   // from the constant pool and not to broadcast it from a scalar.
5067   if (ConstSplatVal && Subtarget->hasAVX2()) {
5068     EVT CVT = Ld.getValueType();
5069     assert(!CVT.isVector() && "Must not broadcast a vector type");
5070     unsigned ScalarSize = CVT.getSizeInBits();
5071
5072     if (ScalarSize == 32 || (Is256 && ScalarSize == 64)) {
5073       const Constant *C = 0;
5074       if (ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Ld))
5075         C = CI->getConstantIntValue();
5076       else if (ConstantFPSDNode *CF = dyn_cast<ConstantFPSDNode>(Ld))
5077         C = CF->getConstantFPValue();
5078
5079       assert(C && "Invalid constant type");
5080
5081       SDValue CP = DAG.getConstantPool(C, getPointerTy());
5082       unsigned Alignment = cast<ConstantPoolSDNode>(CP)->getAlignment();
5083       Ld = DAG.getLoad(CVT, dl, DAG.getEntryNode(), CP,
5084                        MachinePointerInfo::getConstantPool(),
5085                        false, false, false, Alignment);
5086
5087       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5088     }
5089   }
5090
5091   bool IsLoad = ISD::isNormalLoad(Ld.getNode());
5092   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5093
5094   // Handle AVX2 in-register broadcasts.
5095   if (!IsLoad && Subtarget->hasAVX2() &&
5096       (ScalarSize == 32 || (Is256 && ScalarSize == 64)))
5097     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5098
5099   // The scalar source must be a normal load.
5100   if (!IsLoad)
5101     return SDValue();
5102
5103   if (ScalarSize == 32 || (Is256 && ScalarSize == 64))
5104     return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5105
5106   // The integer check is needed for the 64-bit into 128-bit so it doesn't match
5107   // double since there is no vbroadcastsd xmm
5108   if (Subtarget->hasAVX2() && Ld.getValueType().isInteger()) {
5109     if (ScalarSize == 8 || ScalarSize == 16 || ScalarSize == 64)
5110       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, Ld);
5111   }
5112
5113   // Unsupported broadcast.
5114   return SDValue();
5115 }
5116
5117 // LowerVectorFpExtend - Recognize the scalarized FP_EXTEND from v2f32 to v2f64
5118 // and convert it into X86ISD::VFPEXT due to the current ISD::FP_EXTEND has the
5119 // constraint of matching input/output vector elements.
5120 SDValue
5121 X86TargetLowering::LowerVectorFpExtend(SDValue &Op, SelectionDAG &DAG) const {
5122   DebugLoc DL = Op.getDebugLoc();
5123   SDNode *N = Op.getNode();
5124   EVT VT = Op.getValueType();
5125   unsigned NumElts = Op.getNumOperands();
5126
5127   // Check supported types and sub-targets.
5128   //
5129   // Only v2f32 -> v2f64 needs special handling.
5130   if (VT != MVT::v2f64 || !Subtarget->hasSSE2())
5131     return SDValue();
5132
5133   SDValue VecIn;
5134   EVT VecInVT;
5135   SmallVector<int, 8> Mask;
5136   EVT SrcVT = MVT::Other;
5137
5138   // Check the patterns could be translated into X86vfpext.
5139   for (unsigned i = 0; i < NumElts; ++i) {
5140     SDValue In = N->getOperand(i);
5141     unsigned Opcode = In.getOpcode();
5142
5143     // Skip if the element is undefined.
5144     if (Opcode == ISD::UNDEF) {
5145       Mask.push_back(-1);
5146       continue;
5147     }
5148
5149     // Quit if one of the elements is not defined from 'fpext'.
5150     if (Opcode != ISD::FP_EXTEND)
5151       return SDValue();
5152
5153     // Check how the source of 'fpext' is defined.
5154     SDValue L2In = In.getOperand(0);
5155     EVT L2InVT = L2In.getValueType();
5156
5157     // Check the original type
5158     if (SrcVT == MVT::Other)
5159       SrcVT = L2InVT;
5160     else if (SrcVT != L2InVT) // Quit if non-homogenous typed.
5161       return SDValue();
5162
5163     // Check whether the value being 'fpext'ed is extracted from the same
5164     // source.
5165     Opcode = L2In.getOpcode();
5166
5167     // Quit if it's not extracted with a constant index.
5168     if (Opcode != ISD::EXTRACT_VECTOR_ELT ||
5169         !isa<ConstantSDNode>(L2In.getOperand(1)))
5170       return SDValue();
5171
5172     SDValue ExtractedFromVec = L2In.getOperand(0);
5173
5174     if (VecIn.getNode() == 0) {
5175       VecIn = ExtractedFromVec;
5176       VecInVT = ExtractedFromVec.getValueType();
5177     } else if (VecIn != ExtractedFromVec) // Quit if built from more than 1 vec.
5178       return SDValue();
5179
5180     Mask.push_back(cast<ConstantSDNode>(L2In.getOperand(1))->getZExtValue());
5181   }
5182
5183   // Fill the remaining mask as undef.
5184   for (unsigned i = NumElts; i < VecInVT.getVectorNumElements(); ++i)
5185     Mask.push_back(-1);
5186
5187   return DAG.getNode(X86ISD::VFPEXT, DL, VT,
5188                      DAG.getVectorShuffle(VecInVT, DL,
5189                                           VecIn, DAG.getUNDEF(VecInVT),
5190                                           &Mask[0]));
5191 }
5192
5193 SDValue
5194 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5195   DebugLoc dl = Op.getDebugLoc();
5196
5197   EVT VT = Op.getValueType();
5198   EVT ExtVT = VT.getVectorElementType();
5199   unsigned NumElems = Op.getNumOperands();
5200
5201   // Vectors containing all zeros can be matched by pxor and xorps later
5202   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5203     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5204     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5205     if (VT == MVT::v4i32 || VT == MVT::v8i32)
5206       return Op;
5207
5208     return getZeroVector(VT, Subtarget, DAG, dl);
5209   }
5210
5211   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5212   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5213   // vpcmpeqd on 256-bit vectors.
5214   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5215     if (VT == MVT::v4i32 || (VT == MVT::v8i32 && Subtarget->hasAVX2()))
5216       return Op;
5217
5218     return getOnesVector(VT, Subtarget->hasAVX2(), DAG, dl);
5219   }
5220
5221   SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
5222   if (Broadcast.getNode())
5223     return Broadcast;
5224
5225   SDValue FpExt = LowerVectorFpExtend(Op, DAG);
5226   if (FpExt.getNode())
5227     return FpExt;
5228
5229   unsigned EVTBits = ExtVT.getSizeInBits();
5230
5231   unsigned NumZero  = 0;
5232   unsigned NumNonZero = 0;
5233   unsigned NonZeros = 0;
5234   bool IsAllConstants = true;
5235   SmallSet<SDValue, 8> Values;
5236   for (unsigned i = 0; i < NumElems; ++i) {
5237     SDValue Elt = Op.getOperand(i);
5238     if (Elt.getOpcode() == ISD::UNDEF)
5239       continue;
5240     Values.insert(Elt);
5241     if (Elt.getOpcode() != ISD::Constant &&
5242         Elt.getOpcode() != ISD::ConstantFP)
5243       IsAllConstants = false;
5244     if (X86::isZeroNode(Elt))
5245       NumZero++;
5246     else {
5247       NonZeros |= (1 << i);
5248       NumNonZero++;
5249     }
5250   }
5251
5252   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5253   if (NumNonZero == 0)
5254     return DAG.getUNDEF(VT);
5255
5256   // Special case for single non-zero, non-undef, element.
5257   if (NumNonZero == 1) {
5258     unsigned Idx = CountTrailingZeros_32(NonZeros);
5259     SDValue Item = Op.getOperand(Idx);
5260
5261     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5262     // the value are obviously zero, truncate the value to i32 and do the
5263     // insertion that way.  Only do this if the value is non-constant or if the
5264     // value is a constant being inserted into element 0.  It is cheaper to do
5265     // a constant pool load than it is to do a movd + shuffle.
5266     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5267         (!IsAllConstants || Idx == 0)) {
5268       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5269         // Handle SSE only.
5270         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5271         EVT VecVT = MVT::v4i32;
5272         unsigned VecElts = 4;
5273
5274         // Truncate the value (which may itself be a constant) to i32, and
5275         // convert it to a vector with movd (S2V+shuffle to zero extend).
5276         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5277         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5278         Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5279
5280         // Now we have our 32-bit value zero extended in the low element of
5281         // a vector.  If Idx != 0, swizzle it into place.
5282         if (Idx != 0) {
5283           SmallVector<int, 4> Mask;
5284           Mask.push_back(Idx);
5285           for (unsigned i = 1; i != VecElts; ++i)
5286             Mask.push_back(i);
5287           Item = DAG.getVectorShuffle(VecVT, dl, Item, DAG.getUNDEF(VecVT),
5288                                       &Mask[0]);
5289         }
5290         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5291       }
5292     }
5293
5294     // If we have a constant or non-constant insertion into the low element of
5295     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5296     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5297     // depending on what the source datatype is.
5298     if (Idx == 0) {
5299       if (NumZero == 0)
5300         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5301
5302       if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5303           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5304         if (VT.is256BitVector()) {
5305           SDValue ZeroVec = getZeroVector(VT, Subtarget, DAG, dl);
5306           return DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, ZeroVec,
5307                              Item, DAG.getIntPtrConstant(0));
5308         }
5309         assert(VT.is128BitVector() && "Expected an SSE value type!");
5310         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5311         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5312         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5313       }
5314
5315       if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5316         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5317         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32, Item);
5318         if (VT.is256BitVector()) {
5319           SDValue ZeroVec = getZeroVector(MVT::v8i32, Subtarget, DAG, dl);
5320           Item = Insert128BitVector(ZeroVec, Item, 0, DAG, dl);
5321         } else {
5322           assert(VT.is128BitVector() && "Expected an SSE value type!");
5323           Item = getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget, DAG);
5324         }
5325         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5326       }
5327     }
5328
5329     // Is it a vector logical left shift?
5330     if (NumElems == 2 && Idx == 1 &&
5331         X86::isZeroNode(Op.getOperand(0)) &&
5332         !X86::isZeroNode(Op.getOperand(1))) {
5333       unsigned NumBits = VT.getSizeInBits();
5334       return getVShift(true, VT,
5335                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5336                                    VT, Op.getOperand(1)),
5337                        NumBits/2, DAG, *this, dl);
5338     }
5339
5340     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5341       return SDValue();
5342
5343     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5344     // is a non-constant being inserted into an element other than the low one,
5345     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5346     // movd/movss) to move this into the low element, then shuffle it into
5347     // place.
5348     if (EVTBits == 32) {
5349       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5350
5351       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5352       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0, Subtarget, DAG);
5353       SmallVector<int, 8> MaskVec;
5354       for (unsigned i = 0; i != NumElems; ++i)
5355         MaskVec.push_back(i == Idx ? 0 : 1);
5356       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5357     }
5358   }
5359
5360   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5361   if (Values.size() == 1) {
5362     if (EVTBits == 32) {
5363       // Instead of a shuffle like this:
5364       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5365       // Check if it's possible to issue this instead.
5366       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5367       unsigned Idx = CountTrailingZeros_32(NonZeros);
5368       SDValue Item = Op.getOperand(Idx);
5369       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5370         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5371     }
5372     return SDValue();
5373   }
5374
5375   // A vector full of immediates; various special cases are already
5376   // handled, so this is best done with a single constant-pool load.
5377   if (IsAllConstants)
5378     return SDValue();
5379
5380   // For AVX-length vectors, build the individual 128-bit pieces and use
5381   // shuffles to put them in place.
5382   if (VT.is256BitVector()) {
5383     SmallVector<SDValue, 32> V;
5384     for (unsigned i = 0; i != NumElems; ++i)
5385       V.push_back(Op.getOperand(i));
5386
5387     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5388
5389     // Build both the lower and upper subvector.
5390     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5391     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5392                                 NumElems/2);
5393
5394     // Recreate the wider vector with the lower and upper part.
5395     return Concat128BitVectors(Lower, Upper, VT, NumElems, DAG, dl);
5396   }
5397
5398   // Let legalizer expand 2-wide build_vectors.
5399   if (EVTBits == 64) {
5400     if (NumNonZero == 1) {
5401       // One half is zero or undef.
5402       unsigned Idx = CountTrailingZeros_32(NonZeros);
5403       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5404                                  Op.getOperand(Idx));
5405       return getShuffleVectorZeroOrUndef(V2, Idx, true, Subtarget, DAG);
5406     }
5407     return SDValue();
5408   }
5409
5410   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5411   if (EVTBits == 8 && NumElems == 16) {
5412     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5413                                         Subtarget, *this);
5414     if (V.getNode()) return V;
5415   }
5416
5417   if (EVTBits == 16 && NumElems == 8) {
5418     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5419                                       Subtarget, *this);
5420     if (V.getNode()) return V;
5421   }
5422
5423   // If element VT is == 32 bits, turn it into a number of shuffles.
5424   SmallVector<SDValue, 8> V(NumElems);
5425   if (NumElems == 4 && NumZero > 0) {
5426     for (unsigned i = 0; i < 4; ++i) {
5427       bool isZero = !(NonZeros & (1 << i));
5428       if (isZero)
5429         V[i] = getZeroVector(VT, Subtarget, DAG, dl);
5430       else
5431         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5432     }
5433
5434     for (unsigned i = 0; i < 2; ++i) {
5435       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5436         default: break;
5437         case 0:
5438           V[i] = V[i*2];  // Must be a zero vector.
5439           break;
5440         case 1:
5441           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
5442           break;
5443         case 2:
5444           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
5445           break;
5446         case 3:
5447           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
5448           break;
5449       }
5450     }
5451
5452     bool Reverse1 = (NonZeros & 0x3) == 2;
5453     bool Reverse2 = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5454     int MaskVec[] = {
5455       Reverse1 ? 1 : 0,
5456       Reverse1 ? 0 : 1,
5457       static_cast<int>(Reverse2 ? NumElems+1 : NumElems),
5458       static_cast<int>(Reverse2 ? NumElems   : NumElems+1)
5459     };
5460     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
5461   }
5462
5463   if (Values.size() > 1 && VT.is128BitVector()) {
5464     // Check for a build vector of consecutive loads.
5465     for (unsigned i = 0; i < NumElems; ++i)
5466       V[i] = Op.getOperand(i);
5467
5468     // Check for elements which are consecutive loads.
5469     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5470     if (LD.getNode())
5471       return LD;
5472
5473     // For SSE 4.1, use insertps to put the high elements into the low element.
5474     if (getSubtarget()->hasSSE41()) {
5475       SDValue Result;
5476       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5477         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5478       else
5479         Result = DAG.getUNDEF(VT);
5480
5481       for (unsigned i = 1; i < NumElems; ++i) {
5482         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5483         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
5484                              Op.getOperand(i), DAG.getIntPtrConstant(i));
5485       }
5486       return Result;
5487     }
5488
5489     // Otherwise, expand into a number of unpckl*, start by extending each of
5490     // our (non-undef) elements to the full vector width with the element in the
5491     // bottom slot of the vector (which generates no code for SSE).
5492     for (unsigned i = 0; i < NumElems; ++i) {
5493       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5494         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5495       else
5496         V[i] = DAG.getUNDEF(VT);
5497     }
5498
5499     // Next, we iteratively mix elements, e.g. for v4f32:
5500     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5501     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5502     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
5503     unsigned EltStride = NumElems >> 1;
5504     while (EltStride != 0) {
5505       for (unsigned i = 0; i < EltStride; ++i) {
5506         // If V[i+EltStride] is undef and this is the first round of mixing,
5507         // then it is safe to just drop this shuffle: V[i] is already in the
5508         // right place, the one element (since it's the first round) being
5509         // inserted as undef can be dropped.  This isn't safe for successive
5510         // rounds because they will permute elements within both vectors.
5511         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5512             EltStride == NumElems/2)
5513           continue;
5514
5515         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
5516       }
5517       EltStride >>= 1;
5518     }
5519     return V[0];
5520   }
5521   return SDValue();
5522 }
5523
5524 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5525 // to create 256-bit vectors from two other 128-bit ones.
5526 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5527   DebugLoc dl = Op.getDebugLoc();
5528   EVT ResVT = Op.getValueType();
5529
5530   assert(ResVT.is256BitVector() && "Value type must be 256-bit wide");
5531
5532   SDValue V1 = Op.getOperand(0);
5533   SDValue V2 = Op.getOperand(1);
5534   unsigned NumElems = ResVT.getVectorNumElements();
5535
5536   return Concat128BitVectors(V1, V2, ResVT, NumElems, DAG, dl);
5537 }
5538
5539 SDValue
5540 X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
5541   assert(Op.getNumOperands() == 2);
5542
5543   // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5544   // from two other 128-bit ones.
5545   return LowerAVXCONCAT_VECTORS(Op, DAG);
5546 }
5547
5548 // Try to lower a shuffle node into a simple blend instruction.
5549 static SDValue LowerVECTOR_SHUFFLEtoBlend(ShuffleVectorSDNode *SVOp,
5550                                           const X86Subtarget *Subtarget,
5551                                           SelectionDAG &DAG) {
5552   SDValue V1 = SVOp->getOperand(0);
5553   SDValue V2 = SVOp->getOperand(1);
5554   DebugLoc dl = SVOp->getDebugLoc();
5555   MVT VT = SVOp->getValueType(0).getSimpleVT();
5556   unsigned NumElems = VT.getVectorNumElements();
5557
5558   if (!Subtarget->hasSSE41())
5559     return SDValue();
5560
5561   unsigned ISDNo = 0;
5562   MVT OpTy;
5563
5564   switch (VT.SimpleTy) {
5565   default: return SDValue();
5566   case MVT::v8i16:
5567     ISDNo = X86ISD::BLENDPW;
5568     OpTy = MVT::v8i16;
5569     break;
5570   case MVT::v4i32:
5571   case MVT::v4f32:
5572     ISDNo = X86ISD::BLENDPS;
5573     OpTy = MVT::v4f32;
5574     break;
5575   case MVT::v2i64:
5576   case MVT::v2f64:
5577     ISDNo = X86ISD::BLENDPD;
5578     OpTy = MVT::v2f64;
5579     break;
5580   case MVT::v8i32:
5581   case MVT::v8f32:
5582     if (!Subtarget->hasAVX())
5583       return SDValue();
5584     ISDNo = X86ISD::BLENDPS;
5585     OpTy = MVT::v8f32;
5586     break;
5587   case MVT::v4i64:
5588   case MVT::v4f64:
5589     if (!Subtarget->hasAVX())
5590       return SDValue();
5591     ISDNo = X86ISD::BLENDPD;
5592     OpTy = MVT::v4f64;
5593     break;
5594   }
5595   assert(ISDNo && "Invalid Op Number");
5596
5597   unsigned MaskVals = 0;
5598
5599   for (unsigned i = 0; i != NumElems; ++i) {
5600     int EltIdx = SVOp->getMaskElt(i);
5601     if (EltIdx == (int)i || EltIdx < 0)
5602       MaskVals |= (1<<i);
5603     else if (EltIdx == (int)(i + NumElems))
5604       continue; // Bit is set to zero;
5605     else
5606       return SDValue();
5607   }
5608
5609   V1 = DAG.getNode(ISD::BITCAST, dl, OpTy, V1);
5610   V2 = DAG.getNode(ISD::BITCAST, dl, OpTy, V2);
5611   SDValue Ret =  DAG.getNode(ISDNo, dl, OpTy, V1, V2,
5612                              DAG.getConstant(MaskVals, MVT::i32));
5613   return DAG.getNode(ISD::BITCAST, dl, VT, Ret);
5614 }
5615
5616 // v8i16 shuffles - Prefer shuffles in the following order:
5617 // 1. [all]   pshuflw, pshufhw, optional move
5618 // 2. [ssse3] 1 x pshufb
5619 // 3. [ssse3] 2 x pshufb + 1 x por
5620 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
5621 SDValue
5622 X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5623                                             SelectionDAG &DAG) const {
5624   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5625   SDValue V1 = SVOp->getOperand(0);
5626   SDValue V2 = SVOp->getOperand(1);
5627   DebugLoc dl = SVOp->getDebugLoc();
5628   SmallVector<int, 8> MaskVals;
5629
5630   // Determine if more than 1 of the words in each of the low and high quadwords
5631   // of the result come from the same quadword of one of the two inputs.  Undef
5632   // mask values count as coming from any quadword, for better codegen.
5633   unsigned LoQuad[] = { 0, 0, 0, 0 };
5634   unsigned HiQuad[] = { 0, 0, 0, 0 };
5635   std::bitset<4> InputQuads;
5636   for (unsigned i = 0; i < 8; ++i) {
5637     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
5638     int EltIdx = SVOp->getMaskElt(i);
5639     MaskVals.push_back(EltIdx);
5640     if (EltIdx < 0) {
5641       ++Quad[0];
5642       ++Quad[1];
5643       ++Quad[2];
5644       ++Quad[3];
5645       continue;
5646     }
5647     ++Quad[EltIdx / 4];
5648     InputQuads.set(EltIdx / 4);
5649   }
5650
5651   int BestLoQuad = -1;
5652   unsigned MaxQuad = 1;
5653   for (unsigned i = 0; i < 4; ++i) {
5654     if (LoQuad[i] > MaxQuad) {
5655       BestLoQuad = i;
5656       MaxQuad = LoQuad[i];
5657     }
5658   }
5659
5660   int BestHiQuad = -1;
5661   MaxQuad = 1;
5662   for (unsigned i = 0; i < 4; ++i) {
5663     if (HiQuad[i] > MaxQuad) {
5664       BestHiQuad = i;
5665       MaxQuad = HiQuad[i];
5666     }
5667   }
5668
5669   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
5670   // of the two input vectors, shuffle them into one input vector so only a
5671   // single pshufb instruction is necessary. If There are more than 2 input
5672   // quads, disable the next transformation since it does not help SSSE3.
5673   bool V1Used = InputQuads[0] || InputQuads[1];
5674   bool V2Used = InputQuads[2] || InputQuads[3];
5675   if (Subtarget->hasSSSE3()) {
5676     if (InputQuads.count() == 2 && V1Used && V2Used) {
5677       BestLoQuad = InputQuads[0] ? 0 : 1;
5678       BestHiQuad = InputQuads[2] ? 2 : 3;
5679     }
5680     if (InputQuads.count() > 2) {
5681       BestLoQuad = -1;
5682       BestHiQuad = -1;
5683     }
5684   }
5685
5686   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5687   // the shuffle mask.  If a quad is scored as -1, that means that it contains
5688   // words from all 4 input quadwords.
5689   SDValue NewV;
5690   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
5691     int MaskV[] = {
5692       BestLoQuad < 0 ? 0 : BestLoQuad,
5693       BestHiQuad < 0 ? 1 : BestHiQuad
5694     };
5695     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
5696                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5697                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5698     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
5699
5700     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5701     // source words for the shuffle, to aid later transformations.
5702     bool AllWordsInNewV = true;
5703     bool InOrder[2] = { true, true };
5704     for (unsigned i = 0; i != 8; ++i) {
5705       int idx = MaskVals[i];
5706       if (idx != (int)i)
5707         InOrder[i/4] = false;
5708       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
5709         continue;
5710       AllWordsInNewV = false;
5711       break;
5712     }
5713
5714     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5715     if (AllWordsInNewV) {
5716       for (int i = 0; i != 8; ++i) {
5717         int idx = MaskVals[i];
5718         if (idx < 0)
5719           continue;
5720         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
5721         if ((idx != i) && idx < 4)
5722           pshufhw = false;
5723         if ((idx != i) && idx > 3)
5724           pshuflw = false;
5725       }
5726       V1 = NewV;
5727       V2Used = false;
5728       BestLoQuad = 0;
5729       BestHiQuad = 1;
5730     }
5731
5732     // If we've eliminated the use of V2, and the new mask is a pshuflw or
5733     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
5734     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
5735       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5736       unsigned TargetMask = 0;
5737       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
5738                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
5739       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5740       TargetMask = pshufhw ? getShufflePSHUFHWImmediate(SVOp):
5741                              getShufflePSHUFLWImmediate(SVOp);
5742       V1 = NewV.getOperand(0);
5743       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
5744     }
5745   }
5746
5747   // If we have SSSE3, and all words of the result are from 1 input vector,
5748   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
5749   // is present, fall back to case 4.
5750   if (Subtarget->hasSSSE3()) {
5751     SmallVector<SDValue,16> pshufbMask;
5752
5753     // If we have elements from both input vectors, set the high bit of the
5754     // shuffle mask element to zero out elements that come from V2 in the V1
5755     // mask, and elements that come from V1 in the V2 mask, so that the two
5756     // results can be OR'd together.
5757     bool TwoInputs = V1Used && V2Used;
5758     for (unsigned i = 0; i != 8; ++i) {
5759       int EltIdx = MaskVals[i] * 2;
5760       int Idx0 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx;
5761       int Idx1 = (TwoInputs && (EltIdx >= 16)) ? 0x80 : EltIdx+1;
5762       pshufbMask.push_back(DAG.getConstant(Idx0,   MVT::i8));
5763       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
5764     }
5765     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
5766     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5767                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5768                                  MVT::v16i8, &pshufbMask[0], 16));
5769     if (!TwoInputs)
5770       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5771
5772     // Calculate the shuffle mask for the second input, shuffle it, and
5773     // OR it with the first shuffled input.
5774     pshufbMask.clear();
5775     for (unsigned i = 0; i != 8; ++i) {
5776       int EltIdx = MaskVals[i] * 2;
5777       int Idx0 = (EltIdx < 16) ? 0x80 : EltIdx - 16;
5778       int Idx1 = (EltIdx < 16) ? 0x80 : EltIdx - 15;
5779       pshufbMask.push_back(DAG.getConstant(Idx0, MVT::i8));
5780       pshufbMask.push_back(DAG.getConstant(Idx1, MVT::i8));
5781     }
5782     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
5783     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5784                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5785                                  MVT::v16i8, &pshufbMask[0], 16));
5786     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5787     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5788   }
5789
5790   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5791   // and update MaskVals with new element order.
5792   std::bitset<8> InOrder;
5793   if (BestLoQuad >= 0) {
5794     int MaskV[] = { -1, -1, -1, -1, 4, 5, 6, 7 };
5795     for (int i = 0; i != 4; ++i) {
5796       int idx = MaskVals[i];
5797       if (idx < 0) {
5798         InOrder.set(i);
5799       } else if ((idx / 4) == BestLoQuad) {
5800         MaskV[i] = idx & 3;
5801         InOrder.set(i);
5802       }
5803     }
5804     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5805                                 &MaskV[0]);
5806
5807     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5808       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5809       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5810                                   NewV.getOperand(0),
5811                                   getShufflePSHUFLWImmediate(SVOp), DAG);
5812     }
5813   }
5814
5815   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5816   // and update MaskVals with the new element order.
5817   if (BestHiQuad >= 0) {
5818     int MaskV[] = { 0, 1, 2, 3, -1, -1, -1, -1 };
5819     for (unsigned i = 4; i != 8; ++i) {
5820       int idx = MaskVals[i];
5821       if (idx < 0) {
5822         InOrder.set(i);
5823       } else if ((idx / 4) == BestHiQuad) {
5824         MaskV[i] = (idx & 3) + 4;
5825         InOrder.set(i);
5826       }
5827     }
5828     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5829                                 &MaskV[0]);
5830
5831     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3()) {
5832       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(NewV.getNode());
5833       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5834                                   NewV.getOperand(0),
5835                                   getShufflePSHUFHWImmediate(SVOp), DAG);
5836     }
5837   }
5838
5839   // In case BestHi & BestLo were both -1, which means each quadword has a word
5840   // from each of the four input quadwords, calculate the InOrder bitvector now
5841   // before falling through to the insert/extract cleanup.
5842   if (BestLoQuad == -1 && BestHiQuad == -1) {
5843     NewV = V1;
5844     for (int i = 0; i != 8; ++i)
5845       if (MaskVals[i] < 0 || MaskVals[i] == i)
5846         InOrder.set(i);
5847   }
5848
5849   // The other elements are put in the right place using pextrw and pinsrw.
5850   for (unsigned i = 0; i != 8; ++i) {
5851     if (InOrder[i])
5852       continue;
5853     int EltIdx = MaskVals[i];
5854     if (EltIdx < 0)
5855       continue;
5856     SDValue ExtOp = (EltIdx < 8) ?
5857       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
5858                   DAG.getIntPtrConstant(EltIdx)) :
5859       DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
5860                   DAG.getIntPtrConstant(EltIdx - 8));
5861     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
5862                        DAG.getIntPtrConstant(i));
5863   }
5864   return NewV;
5865 }
5866
5867 // v16i8 shuffles - Prefer shuffles in the following order:
5868 // 1. [ssse3] 1 x pshufb
5869 // 2. [ssse3] 2 x pshufb + 1 x por
5870 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
5871 static
5872 SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
5873                                  SelectionDAG &DAG,
5874                                  const X86TargetLowering &TLI) {
5875   SDValue V1 = SVOp->getOperand(0);
5876   SDValue V2 = SVOp->getOperand(1);
5877   DebugLoc dl = SVOp->getDebugLoc();
5878   ArrayRef<int> MaskVals = SVOp->getMask();
5879
5880   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
5881
5882   // If we have SSSE3, case 1 is generated when all result bytes come from
5883   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
5884   // present, fall back to case 3.
5885
5886   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5887   if (TLI.getSubtarget()->hasSSSE3()) {
5888     SmallVector<SDValue,16> pshufbMask;
5889
5890     // If all result elements are from one input vector, then only translate
5891     // undef mask values to 0x80 (zero out result) in the pshufb mask.
5892     //
5893     // Otherwise, we have elements from both input vectors, and must zero out
5894     // elements that come from V2 in the first mask, and V1 in the second mask
5895     // so that we can OR them together.
5896     for (unsigned i = 0; i != 16; ++i) {
5897       int EltIdx = MaskVals[i];
5898       if (EltIdx < 0 || EltIdx >= 16)
5899         EltIdx = 0x80;
5900       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5901     }
5902     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5903                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5904                                  MVT::v16i8, &pshufbMask[0], 16));
5905     if (V2IsUndef)
5906       return V1;
5907
5908     // Calculate the shuffle mask for the second input, shuffle it, and
5909     // OR it with the first shuffled input.
5910     pshufbMask.clear();
5911     for (unsigned i = 0; i != 16; ++i) {
5912       int EltIdx = MaskVals[i];
5913       EltIdx = (EltIdx < 16) ? 0x80 : EltIdx - 16;
5914       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5915     }
5916     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5917                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5918                                  MVT::v16i8, &pshufbMask[0], 16));
5919     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5920   }
5921
5922   // No SSSE3 - Calculate in place words and then fix all out of place words
5923   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
5924   // the 16 different words that comprise the two doublequadword input vectors.
5925   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5926   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
5927   SDValue NewV = V1;
5928   for (int i = 0; i != 8; ++i) {
5929     int Elt0 = MaskVals[i*2];
5930     int Elt1 = MaskVals[i*2+1];
5931
5932     // This word of the result is all undef, skip it.
5933     if (Elt0 < 0 && Elt1 < 0)
5934       continue;
5935
5936     // This word of the result is already in the correct place, skip it.
5937     if ((Elt0 == i*2) && (Elt1 == i*2+1))
5938       continue;
5939
5940     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5941     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5942     SDValue InsElt;
5943
5944     // If Elt0 and Elt1 are defined, are consecutive, and can be load
5945     // using a single extract together, load it and store it.
5946     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
5947       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
5948                            DAG.getIntPtrConstant(Elt1 / 2));
5949       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
5950                         DAG.getIntPtrConstant(i));
5951       continue;
5952     }
5953
5954     // If Elt1 is defined, extract it from the appropriate source.  If the
5955     // source byte is not also odd, shift the extracted word left 8 bits
5956     // otherwise clear the bottom 8 bits if we need to do an or.
5957     if (Elt1 >= 0) {
5958       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
5959                            DAG.getIntPtrConstant(Elt1 / 2));
5960       if ((Elt1 & 1) == 0)
5961         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
5962                              DAG.getConstant(8,
5963                                   TLI.getShiftAmountTy(InsElt.getValueType())));
5964       else if (Elt0 >= 0)
5965         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5966                              DAG.getConstant(0xFF00, MVT::i16));
5967     }
5968     // If Elt0 is defined, extract it from the appropriate source.  If the
5969     // source byte is not also even, shift the extracted word right 8 bits. If
5970     // Elt1 was also defined, OR the extracted values together before
5971     // inserting them in the result.
5972     if (Elt0 >= 0) {
5973       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
5974                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5975       if ((Elt0 & 1) != 0)
5976         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
5977                               DAG.getConstant(8,
5978                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
5979       else if (Elt1 >= 0)
5980         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5981                              DAG.getConstant(0x00FF, MVT::i16));
5982       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
5983                          : InsElt0;
5984     }
5985     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
5986                        DAG.getIntPtrConstant(i));
5987   }
5988   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
5989 }
5990
5991 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
5992 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
5993 /// done when every pair / quad of shuffle mask elements point to elements in
5994 /// the right sequence. e.g.
5995 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
5996 static
5997 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
5998                                  SelectionDAG &DAG, DebugLoc dl) {
5999   MVT VT = SVOp->getValueType(0).getSimpleVT();
6000   unsigned NumElems = VT.getVectorNumElements();
6001   MVT NewVT;
6002   unsigned Scale;
6003   switch (VT.SimpleTy) {
6004   default: llvm_unreachable("Unexpected!");
6005   case MVT::v4f32:  NewVT = MVT::v2f64; Scale = 2; break;
6006   case MVT::v4i32:  NewVT = MVT::v2i64; Scale = 2; break;
6007   case MVT::v8i16:  NewVT = MVT::v4i32; Scale = 2; break;
6008   case MVT::v16i8:  NewVT = MVT::v4i32; Scale = 4; break;
6009   case MVT::v16i16: NewVT = MVT::v8i32; Scale = 2; break;
6010   case MVT::v32i8:  NewVT = MVT::v8i32; Scale = 4; break;
6011   }
6012
6013   SmallVector<int, 8> MaskVec;
6014   for (unsigned i = 0; i != NumElems; i += Scale) {
6015     int StartIdx = -1;
6016     for (unsigned j = 0; j != Scale; ++j) {
6017       int EltIdx = SVOp->getMaskElt(i+j);
6018       if (EltIdx < 0)
6019         continue;
6020       if (StartIdx < 0)
6021         StartIdx = (EltIdx / Scale);
6022       if (EltIdx != (int)(StartIdx*Scale + j))
6023         return SDValue();
6024     }
6025     MaskVec.push_back(StartIdx);
6026   }
6027
6028   SDValue V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(0));
6029   SDValue V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, SVOp->getOperand(1));
6030   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6031 }
6032
6033 /// getVZextMovL - Return a zero-extending vector move low node.
6034 ///
6035 static SDValue getVZextMovL(EVT VT, EVT OpVT,
6036                             SDValue SrcOp, SelectionDAG &DAG,
6037                             const X86Subtarget *Subtarget, DebugLoc dl) {
6038   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6039     LoadSDNode *LD = NULL;
6040     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6041       LD = dyn_cast<LoadSDNode>(SrcOp);
6042     if (!LD) {
6043       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6044       // instead.
6045       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6046       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6047           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6048           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6049           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6050         // PR2108
6051         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6052         return DAG.getNode(ISD::BITCAST, dl, VT,
6053                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6054                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6055                                                    OpVT,
6056                                                    SrcOp.getOperand(0)
6057                                                           .getOperand(0))));
6058       }
6059     }
6060   }
6061
6062   return DAG.getNode(ISD::BITCAST, dl, VT,
6063                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6064                                  DAG.getNode(ISD::BITCAST, dl,
6065                                              OpVT, SrcOp)));
6066 }
6067
6068 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6069 /// which could not be matched by any known target speficic shuffle
6070 static SDValue
6071 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6072
6073   SDValue NewOp = Compact8x32ShuffleNode(SVOp, DAG);
6074   if (NewOp.getNode())
6075     return NewOp;
6076
6077   EVT VT = SVOp->getValueType(0);
6078
6079   unsigned NumElems = VT.getVectorNumElements();
6080   unsigned NumLaneElems = NumElems / 2;
6081
6082   DebugLoc dl = SVOp->getDebugLoc();
6083   MVT EltVT = VT.getVectorElementType().getSimpleVT();
6084   EVT NVT = MVT::getVectorVT(EltVT, NumLaneElems);
6085   SDValue Output[2];
6086
6087   SmallVector<int, 16> Mask;
6088   for (unsigned l = 0; l < 2; ++l) {
6089     // Build a shuffle mask for the output, discovering on the fly which
6090     // input vectors to use as shuffle operands (recorded in InputUsed).
6091     // If building a suitable shuffle vector proves too hard, then bail
6092     // out with UseBuildVector set.
6093     bool UseBuildVector = false;
6094     int InputUsed[2] = { -1, -1 }; // Not yet discovered.
6095     unsigned LaneStart = l * NumLaneElems;
6096     for (unsigned i = 0; i != NumLaneElems; ++i) {
6097       // The mask element.  This indexes into the input.
6098       int Idx = SVOp->getMaskElt(i+LaneStart);
6099       if (Idx < 0) {
6100         // the mask element does not index into any input vector.
6101         Mask.push_back(-1);
6102         continue;
6103       }
6104
6105       // The input vector this mask element indexes into.
6106       int Input = Idx / NumLaneElems;
6107
6108       // Turn the index into an offset from the start of the input vector.
6109       Idx -= Input * NumLaneElems;
6110
6111       // Find or create a shuffle vector operand to hold this input.
6112       unsigned OpNo;
6113       for (OpNo = 0; OpNo < array_lengthof(InputUsed); ++OpNo) {
6114         if (InputUsed[OpNo] == Input)
6115           // This input vector is already an operand.
6116           break;
6117         if (InputUsed[OpNo] < 0) {
6118           // Create a new operand for this input vector.
6119           InputUsed[OpNo] = Input;
6120           break;
6121         }
6122       }
6123
6124       if (OpNo >= array_lengthof(InputUsed)) {
6125         // More than two input vectors used!  Give up on trying to create a
6126         // shuffle vector.  Insert all elements into a BUILD_VECTOR instead.
6127         UseBuildVector = true;
6128         break;
6129       }
6130
6131       // Add the mask index for the new shuffle vector.
6132       Mask.push_back(Idx + OpNo * NumLaneElems);
6133     }
6134
6135     if (UseBuildVector) {
6136       SmallVector<SDValue, 16> SVOps;
6137       for (unsigned i = 0; i != NumLaneElems; ++i) {
6138         // The mask element.  This indexes into the input.
6139         int Idx = SVOp->getMaskElt(i+LaneStart);
6140         if (Idx < 0) {
6141           SVOps.push_back(DAG.getUNDEF(EltVT));
6142           continue;
6143         }
6144
6145         // The input vector this mask element indexes into.
6146         int Input = Idx / NumElems;
6147
6148         // Turn the index into an offset from the start of the input vector.
6149         Idx -= Input * NumElems;
6150
6151         // Extract the vector element by hand.
6152         SVOps.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT,
6153                                     SVOp->getOperand(Input),
6154                                     DAG.getIntPtrConstant(Idx)));
6155       }
6156
6157       // Construct the output using a BUILD_VECTOR.
6158       Output[l] = DAG.getNode(ISD::BUILD_VECTOR, dl, NVT, &SVOps[0],
6159                               SVOps.size());
6160     } else if (InputUsed[0] < 0) {
6161       // No input vectors were used! The result is undefined.
6162       Output[l] = DAG.getUNDEF(NVT);
6163     } else {
6164       SDValue Op0 = Extract128BitVector(SVOp->getOperand(InputUsed[0] / 2),
6165                                         (InputUsed[0] % 2) * NumLaneElems,
6166                                         DAG, dl);
6167       // If only one input was used, use an undefined vector for the other.
6168       SDValue Op1 = (InputUsed[1] < 0) ? DAG.getUNDEF(NVT) :
6169         Extract128BitVector(SVOp->getOperand(InputUsed[1] / 2),
6170                             (InputUsed[1] % 2) * NumLaneElems, DAG, dl);
6171       // At least one input vector was used. Create a new shuffle vector.
6172       Output[l] = DAG.getVectorShuffle(NVT, dl, Op0, Op1, &Mask[0]);
6173     }
6174
6175     Mask.clear();
6176   }
6177
6178   // Concatenate the result back
6179   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, Output[0], Output[1]);
6180 }
6181
6182 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6183 /// 4 elements, and match them with several different shuffle types.
6184 static SDValue
6185 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6186   SDValue V1 = SVOp->getOperand(0);
6187   SDValue V2 = SVOp->getOperand(1);
6188   DebugLoc dl = SVOp->getDebugLoc();
6189   EVT VT = SVOp->getValueType(0);
6190
6191   assert(VT.is128BitVector() && "Unsupported vector size");
6192
6193   std::pair<int, int> Locs[4];
6194   int Mask1[] = { -1, -1, -1, -1 };
6195   SmallVector<int, 8> PermMask(SVOp->getMask().begin(), SVOp->getMask().end());
6196
6197   unsigned NumHi = 0;
6198   unsigned NumLo = 0;
6199   for (unsigned i = 0; i != 4; ++i) {
6200     int Idx = PermMask[i];
6201     if (Idx < 0) {
6202       Locs[i] = std::make_pair(-1, -1);
6203     } else {
6204       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6205       if (Idx < 4) {
6206         Locs[i] = std::make_pair(0, NumLo);
6207         Mask1[NumLo] = Idx;
6208         NumLo++;
6209       } else {
6210         Locs[i] = std::make_pair(1, NumHi);
6211         if (2+NumHi < 4)
6212           Mask1[2+NumHi] = Idx;
6213         NumHi++;
6214       }
6215     }
6216   }
6217
6218   if (NumLo <= 2 && NumHi <= 2) {
6219     // If no more than two elements come from either vector. This can be
6220     // implemented with two shuffles. First shuffle gather the elements.
6221     // The second shuffle, which takes the first shuffle as both of its
6222     // vector operands, put the elements into the right order.
6223     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6224
6225     int Mask2[] = { -1, -1, -1, -1 };
6226
6227     for (unsigned i = 0; i != 4; ++i)
6228       if (Locs[i].first != -1) {
6229         unsigned Idx = (i < 2) ? 0 : 4;
6230         Idx += Locs[i].first * 2 + Locs[i].second;
6231         Mask2[i] = Idx;
6232       }
6233
6234     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6235   }
6236
6237   if (NumLo == 3 || NumHi == 3) {
6238     // Otherwise, we must have three elements from one vector, call it X, and
6239     // one element from the other, call it Y.  First, use a shufps to build an
6240     // intermediate vector with the one element from Y and the element from X
6241     // that will be in the same half in the final destination (the indexes don't
6242     // matter). Then, use a shufps to build the final vector, taking the half
6243     // containing the element from Y from the intermediate, and the other half
6244     // from X.
6245     if (NumHi == 3) {
6246       // Normalize it so the 3 elements come from V1.
6247       CommuteVectorShuffleMask(PermMask, 4);
6248       std::swap(V1, V2);
6249     }
6250
6251     // Find the element from V2.
6252     unsigned HiIndex;
6253     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6254       int Val = PermMask[HiIndex];
6255       if (Val < 0)
6256         continue;
6257       if (Val >= 4)
6258         break;
6259     }
6260
6261     Mask1[0] = PermMask[HiIndex];
6262     Mask1[1] = -1;
6263     Mask1[2] = PermMask[HiIndex^1];
6264     Mask1[3] = -1;
6265     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6266
6267     if (HiIndex >= 2) {
6268       Mask1[0] = PermMask[0];
6269       Mask1[1] = PermMask[1];
6270       Mask1[2] = HiIndex & 1 ? 6 : 4;
6271       Mask1[3] = HiIndex & 1 ? 4 : 6;
6272       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6273     }
6274
6275     Mask1[0] = HiIndex & 1 ? 2 : 0;
6276     Mask1[1] = HiIndex & 1 ? 0 : 2;
6277     Mask1[2] = PermMask[2];
6278     Mask1[3] = PermMask[3];
6279     if (Mask1[2] >= 0)
6280       Mask1[2] += 4;
6281     if (Mask1[3] >= 0)
6282       Mask1[3] += 4;
6283     return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6284   }
6285
6286   // Break it into (shuffle shuffle_hi, shuffle_lo).
6287   int LoMask[] = { -1, -1, -1, -1 };
6288   int HiMask[] = { -1, -1, -1, -1 };
6289
6290   int *MaskPtr = LoMask;
6291   unsigned MaskIdx = 0;
6292   unsigned LoIdx = 0;
6293   unsigned HiIdx = 2;
6294   for (unsigned i = 0; i != 4; ++i) {
6295     if (i == 2) {
6296       MaskPtr = HiMask;
6297       MaskIdx = 1;
6298       LoIdx = 0;
6299       HiIdx = 2;
6300     }
6301     int Idx = PermMask[i];
6302     if (Idx < 0) {
6303       Locs[i] = std::make_pair(-1, -1);
6304     } else if (Idx < 4) {
6305       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6306       MaskPtr[LoIdx] = Idx;
6307       LoIdx++;
6308     } else {
6309       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6310       MaskPtr[HiIdx] = Idx;
6311       HiIdx++;
6312     }
6313   }
6314
6315   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6316   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6317   int MaskOps[] = { -1, -1, -1, -1 };
6318   for (unsigned i = 0; i != 4; ++i)
6319     if (Locs[i].first != -1)
6320       MaskOps[i] = Locs[i].first * 4 + Locs[i].second;
6321   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6322 }
6323
6324 static bool MayFoldVectorLoad(SDValue V) {
6325   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6326     V = V.getOperand(0);
6327   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6328     V = V.getOperand(0);
6329   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6330       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6331     // BUILD_VECTOR (load), undef
6332     V = V.getOperand(0);
6333   if (MayFoldLoad(V))
6334     return true;
6335   return false;
6336 }
6337
6338 // FIXME: the version above should always be used. Since there's
6339 // a bug where several vector shuffles can't be folded because the
6340 // DAG is not updated during lowering and a node claims to have two
6341 // uses while it only has one, use this version, and let isel match
6342 // another instruction if the load really happens to have more than
6343 // one use. Remove this version after this bug get fixed.
6344 // rdar://8434668, PR8156
6345 static bool RelaxedMayFoldVectorLoad(SDValue V) {
6346   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6347     V = V.getOperand(0);
6348   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6349     V = V.getOperand(0);
6350   if (ISD::isNormalLoad(V.getNode()))
6351     return true;
6352   return false;
6353 }
6354
6355 static
6356 SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6357   EVT VT = Op.getValueType();
6358
6359   // Canonizalize to v2f64.
6360   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6361   return DAG.getNode(ISD::BITCAST, dl, VT,
6362                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6363                                           V1, DAG));
6364 }
6365
6366 static
6367 SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6368                         bool HasSSE2) {
6369   SDValue V1 = Op.getOperand(0);
6370   SDValue V2 = Op.getOperand(1);
6371   EVT VT = Op.getValueType();
6372
6373   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6374
6375   if (HasSSE2 && VT == MVT::v2f64)
6376     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6377
6378   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6379   return DAG.getNode(ISD::BITCAST, dl, VT,
6380                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6381                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6382                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
6383 }
6384
6385 static
6386 SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6387   SDValue V1 = Op.getOperand(0);
6388   SDValue V2 = Op.getOperand(1);
6389   EVT VT = Op.getValueType();
6390
6391   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6392          "unsupported shuffle type");
6393
6394   if (V2.getOpcode() == ISD::UNDEF)
6395     V2 = V1;
6396
6397   // v4i32 or v4f32
6398   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6399 }
6400
6401 static
6402 SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
6403   SDValue V1 = Op.getOperand(0);
6404   SDValue V2 = Op.getOperand(1);
6405   EVT VT = Op.getValueType();
6406   unsigned NumElems = VT.getVectorNumElements();
6407
6408   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6409   // operand of these instructions is only memory, so check if there's a
6410   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6411   // same masks.
6412   bool CanFoldLoad = false;
6413
6414   // Trivial case, when V2 comes from a load.
6415   if (MayFoldVectorLoad(V2))
6416     CanFoldLoad = true;
6417
6418   // When V1 is a load, it can be folded later into a store in isel, example:
6419   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6420   //    turns into:
6421   //  (MOVLPSmr addr:$src1, VR128:$src2)
6422   // So, recognize this potential and also use MOVLPS or MOVLPD
6423   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
6424     CanFoldLoad = true;
6425
6426   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6427   if (CanFoldLoad) {
6428     if (HasSSE2 && NumElems == 2)
6429       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6430
6431     if (NumElems == 4)
6432       // If we don't care about the second element, proceed to use movss.
6433       if (SVOp->getMaskElt(1) != -1)
6434         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6435   }
6436
6437   // movl and movlp will both match v2i64, but v2i64 is never matched by
6438   // movl earlier because we make it strict to avoid messing with the movlp load
6439   // folding logic (see the code above getMOVLP call). Match it here then,
6440   // this is horrible, but will stay like this until we move all shuffle
6441   // matching to x86 specific nodes. Note that for the 1st condition all
6442   // types are matched with movsd.
6443   if (HasSSE2) {
6444     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6445     // as to remove this logic from here, as much as possible
6446     if (NumElems == 2 || !isMOVLMask(SVOp->getMask(), VT))
6447       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6448     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6449   }
6450
6451   assert(VT != MVT::v4i32 && "unsupported shuffle type");
6452
6453   // Invert the operand order and use SHUFPS to match it.
6454   return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V2, V1,
6455                               getShuffleSHUFImmediate(SVOp), DAG);
6456 }
6457
6458 SDValue
6459 X86TargetLowering::NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG) const {
6460   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6461   EVT VT = Op.getValueType();
6462   DebugLoc dl = Op.getDebugLoc();
6463   SDValue V1 = Op.getOperand(0);
6464   SDValue V2 = Op.getOperand(1);
6465
6466   if (isZeroShuffle(SVOp))
6467     return getZeroVector(VT, Subtarget, DAG, dl);
6468
6469   // Handle splat operations
6470   if (SVOp->isSplat()) {
6471     unsigned NumElem = VT.getVectorNumElements();
6472     int Size = VT.getSizeInBits();
6473
6474     // Use vbroadcast whenever the splat comes from a foldable load
6475     SDValue Broadcast = LowerVectorBroadcast(Op, DAG);
6476     if (Broadcast.getNode())
6477       return Broadcast;
6478
6479     // Handle splats by matching through known shuffle masks
6480     if ((Size == 128 && NumElem <= 4) ||
6481         (Size == 256 && NumElem < 8))
6482       return SDValue();
6483
6484     // All remaning splats are promoted to target supported vector shuffles.
6485     return PromoteSplat(SVOp, DAG);
6486   }
6487
6488   // If the shuffle can be profitably rewritten as a narrower shuffle, then
6489   // do it!
6490   if (VT == MVT::v8i16  || VT == MVT::v16i8 ||
6491       VT == MVT::v16i16 || VT == MVT::v32i8) {
6492     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6493     if (NewOp.getNode())
6494       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
6495   } else if ((VT == MVT::v4i32 ||
6496              (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
6497     // FIXME: Figure out a cleaner way to do this.
6498     // Try to make use of movq to zero out the top part.
6499     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6500       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6501       if (NewOp.getNode()) {
6502         EVT NewVT = NewOp.getValueType();
6503         if (isCommutedMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(),
6504                                NewVT, true, false))
6505           return getVZextMovL(VT, NewVT, NewOp.getOperand(0),
6506                               DAG, Subtarget, dl);
6507       }
6508     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6509       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6510       if (NewOp.getNode()) {
6511         EVT NewVT = NewOp.getValueType();
6512         if (isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)->getMask(), NewVT))
6513           return getVZextMovL(VT, NewVT, NewOp.getOperand(1),
6514                               DAG, Subtarget, dl);
6515       }
6516     }
6517   }
6518   return SDValue();
6519 }
6520
6521 SDValue
6522 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
6523   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6524   SDValue V1 = Op.getOperand(0);
6525   SDValue V2 = Op.getOperand(1);
6526   EVT VT = Op.getValueType();
6527   DebugLoc dl = Op.getDebugLoc();
6528   unsigned NumElems = VT.getVectorNumElements();
6529   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6530   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6531   bool V1IsSplat = false;
6532   bool V2IsSplat = false;
6533   bool HasSSE2 = Subtarget->hasSSE2();
6534   bool HasAVX    = Subtarget->hasAVX();
6535   bool HasAVX2   = Subtarget->hasAVX2();
6536   MachineFunction &MF = DAG.getMachineFunction();
6537   bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
6538
6539   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
6540
6541   if (V1IsUndef && V2IsUndef)
6542     return DAG.getUNDEF(VT);
6543
6544   assert(!V1IsUndef && "Op 1 of shuffle should not be undef");
6545
6546   // Vector shuffle lowering takes 3 steps:
6547   //
6548   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6549   //    narrowing and commutation of operands should be handled.
6550   // 2) Matching of shuffles with known shuffle masks to x86 target specific
6551   //    shuffle nodes.
6552   // 3) Rewriting of unmatched masks into new generic shuffle operations,
6553   //    so the shuffle can be broken into other shuffles and the legalizer can
6554   //    try the lowering again.
6555   //
6556   // The general idea is that no vector_shuffle operation should be left to
6557   // be matched during isel, all of them must be converted to a target specific
6558   // node here.
6559
6560   // Normalize the input vectors. Here splats, zeroed vectors, profitable
6561   // narrowing and commutation of operands should be handled. The actual code
6562   // doesn't include all of those, work in progress...
6563   SDValue NewOp = NormalizeVectorShuffle(Op, DAG);
6564   if (NewOp.getNode())
6565     return NewOp;
6566
6567   SmallVector<int, 8> M(SVOp->getMask().begin(), SVOp->getMask().end());
6568
6569   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6570   // unpckh_undef). Only use pshufd if speed is more important than size.
6571   if (OptForSize && isUNPCKL_v_undef_Mask(M, VT, HasAVX2))
6572     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6573   if (OptForSize && isUNPCKH_v_undef_Mask(M, VT, HasAVX2))
6574     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6575
6576   if (isMOVDDUPMask(M, VT) && Subtarget->hasSSE3() &&
6577       V2IsUndef && RelaxedMayFoldVectorLoad(V1))
6578     return getMOVDDup(Op, dl, V1, DAG);
6579
6580   if (isMOVHLPS_v_undef_Mask(M, VT))
6581     return getMOVHighToLow(Op, dl, DAG);
6582
6583   // Use to match splats
6584   if (HasSSE2 && isUNPCKHMask(M, VT, HasAVX2) && V2IsUndef &&
6585       (VT == MVT::v2f64 || VT == MVT::v2i64))
6586     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6587
6588   if (isPSHUFDMask(M, VT)) {
6589     // The actual implementation will match the mask in the if above and then
6590     // during isel it can match several different instructions, not only pshufd
6591     // as its name says, sad but true, emulate the behavior for now...
6592     if (isMOVDDUPMask(M, VT) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6593       return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6594
6595     unsigned TargetMask = getShuffleSHUFImmediate(SVOp);
6596
6597     if (HasAVX && (VT == MVT::v4f32 || VT == MVT::v2f64))
6598       return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1, TargetMask, DAG);
6599
6600     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
6601       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6602
6603     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V1,
6604                                 TargetMask, DAG);
6605   }
6606
6607   // Check if this can be converted into a logical shift.
6608   bool isLeft = false;
6609   unsigned ShAmt = 0;
6610   SDValue ShVal;
6611   bool isShift = HasSSE2 && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
6612   if (isShift && ShVal.hasOneUse()) {
6613     // If the shifted value has multiple uses, it may be cheaper to use
6614     // v_set0 + movlhps or movhlps, etc.
6615     EVT EltVT = VT.getVectorElementType();
6616     ShAmt *= EltVT.getSizeInBits();
6617     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6618   }
6619
6620   if (isMOVLMask(M, VT)) {
6621     if (ISD::isBuildVectorAllZeros(V1.getNode()))
6622       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
6623     if (!isMOVLPMask(M, VT)) {
6624       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
6625         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6626
6627       if (VT == MVT::v4i32 || VT == MVT::v4f32)
6628         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6629     }
6630   }
6631
6632   // FIXME: fold these into legal mask.
6633   if (isMOVLHPSMask(M, VT) && !isUNPCKLMask(M, VT, HasAVX2))
6634     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
6635
6636   if (isMOVHLPSMask(M, VT))
6637     return getMOVHighToLow(Op, dl, DAG);
6638
6639   if (V2IsUndef && isMOVSHDUPMask(M, VT, Subtarget))
6640     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
6641
6642   if (V2IsUndef && isMOVSLDUPMask(M, VT, Subtarget))
6643     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
6644
6645   if (isMOVLPMask(M, VT))
6646     return getMOVLP(Op, dl, DAG, HasSSE2);
6647
6648   if (ShouldXformToMOVHLPS(M, VT) ||
6649       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), M, VT))
6650     return CommuteVectorShuffle(SVOp, DAG);
6651
6652   if (isShift) {
6653     // No better options. Use a vshldq / vsrldq.
6654     EVT EltVT = VT.getVectorElementType();
6655     ShAmt *= EltVT.getSizeInBits();
6656     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6657   }
6658
6659   bool Commuted = false;
6660   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
6661   // 1,1,1,1 -> v8i16 though.
6662   V1IsSplat = isSplatVector(V1.getNode());
6663   V2IsSplat = isSplatVector(V2.getNode());
6664
6665   // Canonicalize the splat or undef, if present, to be on the RHS.
6666   if (!V2IsUndef && V1IsSplat && !V2IsSplat) {
6667     CommuteVectorShuffleMask(M, NumElems);
6668     std::swap(V1, V2);
6669     std::swap(V1IsSplat, V2IsSplat);
6670     Commuted = true;
6671   }
6672
6673   if (isCommutedMOVLMask(M, VT, V2IsSplat, V2IsUndef)) {
6674     // Shuffling low element of v1 into undef, just return v1.
6675     if (V2IsUndef)
6676       return V1;
6677     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6678     // the instruction selector will not match, so get a canonical MOVL with
6679     // swapped operands to undo the commute.
6680     return getMOVL(DAG, dl, VT, V2, V1);
6681   }
6682
6683   if (isUNPCKLMask(M, VT, HasAVX2))
6684     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6685
6686   if (isUNPCKHMask(M, VT, HasAVX2))
6687     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6688
6689   if (V2IsSplat) {
6690     // Normalize mask so all entries that point to V2 points to its first
6691     // element then try to match unpck{h|l} again. If match, return a
6692     // new vector_shuffle with the corrected mask.p
6693     SmallVector<int, 8> NewMask(M.begin(), M.end());
6694     NormalizeMask(NewMask, NumElems);
6695     if (isUNPCKLMask(NewMask, VT, HasAVX2, true))
6696       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6697     if (isUNPCKHMask(NewMask, VT, HasAVX2, true))
6698       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6699   }
6700
6701   if (Commuted) {
6702     // Commute is back and try unpck* again.
6703     // FIXME: this seems wrong.
6704     CommuteVectorShuffleMask(M, NumElems);
6705     std::swap(V1, V2);
6706     std::swap(V1IsSplat, V2IsSplat);
6707     Commuted = false;
6708
6709     if (isUNPCKLMask(M, VT, HasAVX2))
6710       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V2, DAG);
6711
6712     if (isUNPCKHMask(M, VT, HasAVX2))
6713       return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V2, DAG);
6714   }
6715
6716   // Normalize the node to match x86 shuffle ops if needed
6717   if (!V2IsUndef && (isSHUFPMask(M, VT, HasAVX, /* Commuted */ true)))
6718     return CommuteVectorShuffle(SVOp, DAG);
6719
6720   // The checks below are all present in isShuffleMaskLegal, but they are
6721   // inlined here right now to enable us to directly emit target specific
6722   // nodes, and remove one by one until they don't return Op anymore.
6723
6724   if (isPALIGNRMask(M, VT, Subtarget))
6725     return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6726                                 getShufflePALIGNRImmediate(SVOp),
6727                                 DAG);
6728
6729   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6730       SVOp->getSplatIndex() == 0 && V2IsUndef) {
6731     if (VT == MVT::v2f64 || VT == MVT::v2i64)
6732       return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6733   }
6734
6735   if (isPSHUFHWMask(M, VT, HasAVX2))
6736     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6737                                 getShufflePSHUFHWImmediate(SVOp),
6738                                 DAG);
6739
6740   if (isPSHUFLWMask(M, VT, HasAVX2))
6741     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6742                                 getShufflePSHUFLWImmediate(SVOp),
6743                                 DAG);
6744
6745   if (isSHUFPMask(M, VT, HasAVX))
6746     return getTargetShuffleNode(X86ISD::SHUFP, dl, VT, V1, V2,
6747                                 getShuffleSHUFImmediate(SVOp), DAG);
6748
6749   if (isUNPCKL_v_undef_Mask(M, VT, HasAVX2))
6750     return getTargetShuffleNode(X86ISD::UNPCKL, dl, VT, V1, V1, DAG);
6751   if (isUNPCKH_v_undef_Mask(M, VT, HasAVX2))
6752     return getTargetShuffleNode(X86ISD::UNPCKH, dl, VT, V1, V1, DAG);
6753
6754   //===--------------------------------------------------------------------===//
6755   // Generate target specific nodes for 128 or 256-bit shuffles only
6756   // supported in the AVX instruction set.
6757   //
6758
6759   // Handle VMOVDDUPY permutations
6760   if (V2IsUndef && isMOVDDUPYMask(M, VT, HasAVX))
6761     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6762
6763   // Handle VPERMILPS/D* permutations
6764   if (isVPERMILPMask(M, VT, HasAVX)) {
6765     if (HasAVX2 && VT == MVT::v8i32)
6766       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1,
6767                                   getShuffleSHUFImmediate(SVOp), DAG);
6768     return getTargetShuffleNode(X86ISD::VPERMILP, dl, VT, V1,
6769                                 getShuffleSHUFImmediate(SVOp), DAG);
6770   }
6771
6772   // Handle VPERM2F128/VPERM2I128 permutations
6773   if (isVPERM2X128Mask(M, VT, HasAVX))
6774     return getTargetShuffleNode(X86ISD::VPERM2X128, dl, VT, V1,
6775                                 V2, getShuffleVPERM2X128Immediate(SVOp), DAG);
6776
6777   SDValue BlendOp = LowerVECTOR_SHUFFLEtoBlend(SVOp, Subtarget, DAG);
6778   if (BlendOp.getNode())
6779     return BlendOp;
6780
6781   if (V2IsUndef && HasAVX2 && (VT == MVT::v8i32 || VT == MVT::v8f32)) {
6782     SmallVector<SDValue, 8> permclMask;
6783     for (unsigned i = 0; i != 8; ++i) {
6784       permclMask.push_back(DAG.getConstant((M[i]>=0) ? M[i] : 0, MVT::i32));
6785     }
6786     SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32,
6787                                &permclMask[0], 8);
6788     // Bitcast is for VPERMPS since mask is v8i32 but node takes v8f32
6789     return DAG.getNode(X86ISD::VPERMV, dl, VT,
6790                        DAG.getNode(ISD::BITCAST, dl, VT, Mask), V1);
6791   }
6792
6793   if (V2IsUndef && HasAVX2 && (VT == MVT::v4i64 || VT == MVT::v4f64))
6794     return getTargetShuffleNode(X86ISD::VPERMI, dl, VT, V1,
6795                                 getShuffleCLImmediate(SVOp), DAG);
6796
6797
6798   //===--------------------------------------------------------------------===//
6799   // Since no target specific shuffle was selected for this generic one,
6800   // lower it into other known shuffles. FIXME: this isn't true yet, but
6801   // this is the plan.
6802   //
6803
6804   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6805   if (VT == MVT::v8i16) {
6806     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6807     if (NewOp.getNode())
6808       return NewOp;
6809   }
6810
6811   if (VT == MVT::v16i8) {
6812     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6813     if (NewOp.getNode())
6814       return NewOp;
6815   }
6816
6817   // Handle all 128-bit wide vectors with 4 elements, and match them with
6818   // several different shuffle types.
6819   if (NumElems == 4 && VT.is128BitVector())
6820     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6821
6822   // Handle general 256-bit shuffles
6823   if (VT.is256BitVector())
6824     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6825
6826   return SDValue();
6827 }
6828
6829 SDValue
6830 X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
6831                                                 SelectionDAG &DAG) const {
6832   EVT VT = Op.getValueType();
6833   DebugLoc dl = Op.getDebugLoc();
6834
6835   if (!Op.getOperand(0).getValueType().is128BitVector())
6836     return SDValue();
6837
6838   if (VT.getSizeInBits() == 8) {
6839     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
6840                                     Op.getOperand(0), Op.getOperand(1));
6841     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
6842                                     DAG.getValueType(VT));
6843     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6844   }
6845
6846   if (VT.getSizeInBits() == 16) {
6847     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6848     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6849     if (Idx == 0)
6850       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6851                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6852                                      DAG.getNode(ISD::BITCAST, dl,
6853                                                  MVT::v4i32,
6854                                                  Op.getOperand(0)),
6855                                      Op.getOperand(1)));
6856     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
6857                                     Op.getOperand(0), Op.getOperand(1));
6858     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
6859                                     DAG.getValueType(VT));
6860     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6861   }
6862
6863   if (VT == MVT::f32) {
6864     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6865     // the result back to FR32 register. It's only worth matching if the
6866     // result has a single use which is a store or a bitcast to i32.  And in
6867     // the case of a store, it's not worth it if the index is a constant 0,
6868     // because a MOVSSmr can be used instead, which is smaller and faster.
6869     if (!Op.hasOneUse())
6870       return SDValue();
6871     SDNode *User = *Op.getNode()->use_begin();
6872     if ((User->getOpcode() != ISD::STORE ||
6873          (isa<ConstantSDNode>(Op.getOperand(1)) &&
6874           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
6875         (User->getOpcode() != ISD::BITCAST ||
6876          User->getValueType(0) != MVT::i32))
6877       return SDValue();
6878     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6879                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
6880                                               Op.getOperand(0)),
6881                                               Op.getOperand(1));
6882     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
6883   }
6884
6885   if (VT == MVT::i32 || VT == MVT::i64) {
6886     // ExtractPS/pextrq works with constant index.
6887     if (isa<ConstantSDNode>(Op.getOperand(1)))
6888       return Op;
6889   }
6890   return SDValue();
6891 }
6892
6893
6894 SDValue
6895 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6896                                            SelectionDAG &DAG) const {
6897   if (!isa<ConstantSDNode>(Op.getOperand(1)))
6898     return SDValue();
6899
6900   SDValue Vec = Op.getOperand(0);
6901   EVT VecVT = Vec.getValueType();
6902
6903   // If this is a 256-bit vector result, first extract the 128-bit vector and
6904   // then extract the element from the 128-bit vector.
6905   if (VecVT.is256BitVector()) {
6906     DebugLoc dl = Op.getNode()->getDebugLoc();
6907     unsigned NumElems = VecVT.getVectorNumElements();
6908     SDValue Idx = Op.getOperand(1);
6909     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6910
6911     // Get the 128-bit vector.
6912     Vec = Extract128BitVector(Vec, IdxVal, DAG, dl);
6913
6914     if (IdxVal >= NumElems/2)
6915       IdxVal -= NumElems/2;
6916     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6917                        DAG.getConstant(IdxVal, MVT::i32));
6918   }
6919
6920   assert(VecVT.is128BitVector() && "Unexpected vector length");
6921
6922   if (Subtarget->hasSSE41()) {
6923     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
6924     if (Res.getNode())
6925       return Res;
6926   }
6927
6928   EVT VT = Op.getValueType();
6929   DebugLoc dl = Op.getDebugLoc();
6930   // TODO: handle v16i8.
6931   if (VT.getSizeInBits() == 16) {
6932     SDValue Vec = Op.getOperand(0);
6933     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6934     if (Idx == 0)
6935       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6936                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6937                                      DAG.getNode(ISD::BITCAST, dl,
6938                                                  MVT::v4i32, Vec),
6939                                      Op.getOperand(1)));
6940     // Transform it so it match pextrw which produces a 32-bit result.
6941     EVT EltVT = MVT::i32;
6942     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
6943                                     Op.getOperand(0), Op.getOperand(1));
6944     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
6945                                     DAG.getValueType(VT));
6946     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6947   }
6948
6949   if (VT.getSizeInBits() == 32) {
6950     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6951     if (Idx == 0)
6952       return Op;
6953
6954     // SHUFPS the element to the lowest double word, then movss.
6955     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
6956     EVT VVT = Op.getOperand(0).getValueType();
6957     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
6958                                        DAG.getUNDEF(VVT), Mask);
6959     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
6960                        DAG.getIntPtrConstant(0));
6961   }
6962
6963   if (VT.getSizeInBits() == 64) {
6964     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6965     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6966     //        to match extract_elt for f64.
6967     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6968     if (Idx == 0)
6969       return Op;
6970
6971     // UNPCKHPD the element to the lowest double word, then movsd.
6972     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6973     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
6974     int Mask[2] = { 1, -1 };
6975     EVT VVT = Op.getOperand(0).getValueType();
6976     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
6977                                        DAG.getUNDEF(VVT), Mask);
6978     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
6979                        DAG.getIntPtrConstant(0));
6980   }
6981
6982   return SDValue();
6983 }
6984
6985 SDValue
6986 X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6987                                                SelectionDAG &DAG) const {
6988   EVT VT = Op.getValueType();
6989   EVT EltVT = VT.getVectorElementType();
6990   DebugLoc dl = Op.getDebugLoc();
6991
6992   SDValue N0 = Op.getOperand(0);
6993   SDValue N1 = Op.getOperand(1);
6994   SDValue N2 = Op.getOperand(2);
6995
6996   if (!VT.is128BitVector())
6997     return SDValue();
6998
6999   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7000       isa<ConstantSDNode>(N2)) {
7001     unsigned Opc;
7002     if (VT == MVT::v8i16)
7003       Opc = X86ISD::PINSRW;
7004     else if (VT == MVT::v16i8)
7005       Opc = X86ISD::PINSRB;
7006     else
7007       Opc = X86ISD::PINSRB;
7008
7009     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7010     // argument.
7011     if (N1.getValueType() != MVT::i32)
7012       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7013     if (N2.getValueType() != MVT::i32)
7014       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7015     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7016   }
7017
7018   if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7019     // Bits [7:6] of the constant are the source select.  This will always be
7020     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7021     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7022     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7023     // Bits [5:4] of the constant are the destination select.  This is the
7024     //  value of the incoming immediate.
7025     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7026     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7027     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7028     // Create this as a scalar to vector..
7029     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7030     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7031   }
7032
7033   if ((EltVT == MVT::i32 || EltVT == MVT::i64) && isa<ConstantSDNode>(N2)) {
7034     // PINSR* works with constant index.
7035     return Op;
7036   }
7037   return SDValue();
7038 }
7039
7040 SDValue
7041 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7042   EVT VT = Op.getValueType();
7043   EVT EltVT = VT.getVectorElementType();
7044
7045   DebugLoc dl = Op.getDebugLoc();
7046   SDValue N0 = Op.getOperand(0);
7047   SDValue N1 = Op.getOperand(1);
7048   SDValue N2 = Op.getOperand(2);
7049
7050   // If this is a 256-bit vector result, first extract the 128-bit vector,
7051   // insert the element into the extracted half and then place it back.
7052   if (VT.is256BitVector()) {
7053     if (!isa<ConstantSDNode>(N2))
7054       return SDValue();
7055
7056     // Get the desired 128-bit vector half.
7057     unsigned NumElems = VT.getVectorNumElements();
7058     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7059     SDValue V = Extract128BitVector(N0, IdxVal, DAG, dl);
7060
7061     // Insert the element into the desired half.
7062     bool Upper = IdxVal >= NumElems/2;
7063     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V, N1,
7064                  DAG.getConstant(Upper ? IdxVal-NumElems/2 : IdxVal, MVT::i32));
7065
7066     // Insert the changed part back to the 256-bit vector
7067     return Insert128BitVector(N0, V, IdxVal, DAG, dl);
7068   }
7069
7070   if (Subtarget->hasSSE41())
7071     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7072
7073   if (EltVT == MVT::i8)
7074     return SDValue();
7075
7076   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7077     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7078     // as its second argument.
7079     if (N1.getValueType() != MVT::i32)
7080       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7081     if (N2.getValueType() != MVT::i32)
7082       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7083     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7084   }
7085   return SDValue();
7086 }
7087
7088 SDValue
7089 X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
7090   LLVMContext *Context = DAG.getContext();
7091   DebugLoc dl = Op.getDebugLoc();
7092   EVT OpVT = Op.getValueType();
7093
7094   // If this is a 256-bit vector result, first insert into a 128-bit
7095   // vector and then insert into the 256-bit vector.
7096   if (!OpVT.is128BitVector()) {
7097     // Insert into a 128-bit vector.
7098     EVT VT128 = EVT::getVectorVT(*Context,
7099                                  OpVT.getVectorElementType(),
7100                                  OpVT.getVectorNumElements() / 2);
7101
7102     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7103
7104     // Insert the 128-bit vector.
7105     return Insert128BitVector(DAG.getUNDEF(OpVT), Op, 0, DAG, dl);
7106   }
7107
7108   if (OpVT == MVT::v1i64 &&
7109       Op.getOperand(0).getValueType() == MVT::i64)
7110     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7111
7112   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7113   assert(OpVT.is128BitVector() && "Expected an SSE type!");
7114   return DAG.getNode(ISD::BITCAST, dl, OpVT,
7115                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7116 }
7117
7118 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7119 // a simple subregister reference or explicit instructions to grab
7120 // upper bits of a vector.
7121 SDValue
7122 X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7123   if (Subtarget->hasAVX()) {
7124     DebugLoc dl = Op.getNode()->getDebugLoc();
7125     SDValue Vec = Op.getNode()->getOperand(0);
7126     SDValue Idx = Op.getNode()->getOperand(1);
7127
7128     if (Op.getNode()->getValueType(0).is128BitVector() &&
7129         Vec.getNode()->getValueType(0).is256BitVector() &&
7130         isa<ConstantSDNode>(Idx)) {
7131       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7132       return Extract128BitVector(Vec, IdxVal, DAG, dl);
7133     }
7134   }
7135   return SDValue();
7136 }
7137
7138 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7139 // simple superregister reference or explicit instructions to insert
7140 // the upper bits of a vector.
7141 SDValue
7142 X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7143   if (Subtarget->hasAVX()) {
7144     DebugLoc dl = Op.getNode()->getDebugLoc();
7145     SDValue Vec = Op.getNode()->getOperand(0);
7146     SDValue SubVec = Op.getNode()->getOperand(1);
7147     SDValue Idx = Op.getNode()->getOperand(2);
7148
7149     if (Op.getNode()->getValueType(0).is256BitVector() &&
7150         SubVec.getNode()->getValueType(0).is128BitVector() &&
7151         isa<ConstantSDNode>(Idx)) {
7152       unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7153       return Insert128BitVector(Vec, SubVec, IdxVal, DAG, dl);
7154     }
7155   }
7156   return SDValue();
7157 }
7158
7159 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7160 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7161 // one of the above mentioned nodes. It has to be wrapped because otherwise
7162 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7163 // be used to form addressing mode. These wrapped nodes will be selected
7164 // into MOV32ri.
7165 SDValue
7166 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7167   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7168
7169   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7170   // global base reg.
7171   unsigned char OpFlag = 0;
7172   unsigned WrapperKind = X86ISD::Wrapper;
7173   CodeModel::Model M = getTargetMachine().getCodeModel();
7174
7175   if (Subtarget->isPICStyleRIPRel() &&
7176       (M == CodeModel::Small || M == CodeModel::Kernel))
7177     WrapperKind = X86ISD::WrapperRIP;
7178   else if (Subtarget->isPICStyleGOT())
7179     OpFlag = X86II::MO_GOTOFF;
7180   else if (Subtarget->isPICStyleStubPIC())
7181     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7182
7183   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7184                                              CP->getAlignment(),
7185                                              CP->getOffset(), OpFlag);
7186   DebugLoc DL = CP->getDebugLoc();
7187   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7188   // With PIC, the address is actually $g + Offset.
7189   if (OpFlag) {
7190     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7191                          DAG.getNode(X86ISD::GlobalBaseReg,
7192                                      DebugLoc(), getPointerTy()),
7193                          Result);
7194   }
7195
7196   return Result;
7197 }
7198
7199 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7200   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7201
7202   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7203   // global base reg.
7204   unsigned char OpFlag = 0;
7205   unsigned WrapperKind = X86ISD::Wrapper;
7206   CodeModel::Model M = getTargetMachine().getCodeModel();
7207
7208   if (Subtarget->isPICStyleRIPRel() &&
7209       (M == CodeModel::Small || M == CodeModel::Kernel))
7210     WrapperKind = X86ISD::WrapperRIP;
7211   else if (Subtarget->isPICStyleGOT())
7212     OpFlag = X86II::MO_GOTOFF;
7213   else if (Subtarget->isPICStyleStubPIC())
7214     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7215
7216   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7217                                           OpFlag);
7218   DebugLoc DL = JT->getDebugLoc();
7219   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7220
7221   // With PIC, the address is actually $g + Offset.
7222   if (OpFlag)
7223     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7224                          DAG.getNode(X86ISD::GlobalBaseReg,
7225                                      DebugLoc(), getPointerTy()),
7226                          Result);
7227
7228   return Result;
7229 }
7230
7231 SDValue
7232 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7233   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7234
7235   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7236   // global base reg.
7237   unsigned char OpFlag = 0;
7238   unsigned WrapperKind = X86ISD::Wrapper;
7239   CodeModel::Model M = getTargetMachine().getCodeModel();
7240
7241   if (Subtarget->isPICStyleRIPRel() &&
7242       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7243     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7244       OpFlag = X86II::MO_GOTPCREL;
7245     WrapperKind = X86ISD::WrapperRIP;
7246   } else if (Subtarget->isPICStyleGOT()) {
7247     OpFlag = X86II::MO_GOT;
7248   } else if (Subtarget->isPICStyleStubPIC()) {
7249     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7250   } else if (Subtarget->isPICStyleStubNoDynamic()) {
7251     OpFlag = X86II::MO_DARWIN_NONLAZY;
7252   }
7253
7254   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
7255
7256   DebugLoc DL = Op.getDebugLoc();
7257   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7258
7259
7260   // With PIC, the address is actually $g + Offset.
7261   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
7262       !Subtarget->is64Bit()) {
7263     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7264                          DAG.getNode(X86ISD::GlobalBaseReg,
7265                                      DebugLoc(), getPointerTy()),
7266                          Result);
7267   }
7268
7269   // For symbols that require a load from a stub to get the address, emit the
7270   // load.
7271   if (isGlobalStubReference(OpFlag))
7272     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7273                          MachinePointerInfo::getGOT(), false, false, false, 0);
7274
7275   return Result;
7276 }
7277
7278 SDValue
7279 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7280   // Create the TargetBlockAddressAddress node.
7281   unsigned char OpFlags =
7282     Subtarget->ClassifyBlockAddressReference();
7283   CodeModel::Model M = getTargetMachine().getCodeModel();
7284   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
7285   DebugLoc dl = Op.getDebugLoc();
7286   SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7287                                        /*isTarget=*/true, OpFlags);
7288
7289   if (Subtarget->isPICStyleRIPRel() &&
7290       (M == CodeModel::Small || M == CodeModel::Kernel))
7291     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7292   else
7293     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7294
7295   // With PIC, the address is actually $g + Offset.
7296   if (isGlobalRelativeToPICBase(OpFlags)) {
7297     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7298                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7299                          Result);
7300   }
7301
7302   return Result;
7303 }
7304
7305 SDValue
7306 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
7307                                       int64_t Offset,
7308                                       SelectionDAG &DAG) const {
7309   // Create the TargetGlobalAddress node, folding in the constant
7310   // offset if it is legal.
7311   unsigned char OpFlags =
7312     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
7313   CodeModel::Model M = getTargetMachine().getCodeModel();
7314   SDValue Result;
7315   if (OpFlags == X86II::MO_NO_FLAG &&
7316       X86::isOffsetSuitableForCodeModel(Offset, M)) {
7317     // A direct static reference to a global.
7318     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
7319     Offset = 0;
7320   } else {
7321     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
7322   }
7323
7324   if (Subtarget->isPICStyleRIPRel() &&
7325       (M == CodeModel::Small || M == CodeModel::Kernel))
7326     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7327   else
7328     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7329
7330   // With PIC, the address is actually $g + Offset.
7331   if (isGlobalRelativeToPICBase(OpFlags)) {
7332     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7333                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7334                          Result);
7335   }
7336
7337   // For globals that require a load from a stub to get the address, emit the
7338   // load.
7339   if (isGlobalStubReference(OpFlags))
7340     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
7341                          MachinePointerInfo::getGOT(), false, false, false, 0);
7342
7343   // If there was a non-zero offset that we didn't fold, create an explicit
7344   // addition for it.
7345   if (Offset != 0)
7346     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
7347                          DAG.getConstant(Offset, getPointerTy()));
7348
7349   return Result;
7350 }
7351
7352 SDValue
7353 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
7354   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
7355   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
7356   return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
7357 }
7358
7359 static SDValue
7360 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
7361            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
7362            unsigned char OperandFlags, bool LocalDynamic = false) {
7363   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7364   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7365   DebugLoc dl = GA->getDebugLoc();
7366   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7367                                            GA->getValueType(0),
7368                                            GA->getOffset(),
7369                                            OperandFlags);
7370
7371   X86ISD::NodeType CallType = LocalDynamic ? X86ISD::TLSBASEADDR
7372                                            : X86ISD::TLSADDR;
7373
7374   if (InFlag) {
7375     SDValue Ops[] = { Chain,  TGA, *InFlag };
7376     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 3);
7377   } else {
7378     SDValue Ops[]  = { Chain, TGA };
7379     Chain = DAG.getNode(CallType, dl, NodeTys, Ops, 2);
7380   }
7381
7382   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
7383   MFI->setAdjustsStack(true);
7384
7385   SDValue Flag = Chain.getValue(1);
7386   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
7387 }
7388
7389 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
7390 static SDValue
7391 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7392                                 const EVT PtrVT) {
7393   SDValue InFlag;
7394   DebugLoc dl = GA->getDebugLoc();  // ? function entry point might be better
7395   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7396                                      DAG.getNode(X86ISD::GlobalBaseReg,
7397                                                  DebugLoc(), PtrVT), InFlag);
7398   InFlag = Chain.getValue(1);
7399
7400   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
7401 }
7402
7403 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
7404 static SDValue
7405 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7406                                 const EVT PtrVT) {
7407   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7408                     X86::RAX, X86II::MO_TLSGD);
7409 }
7410
7411 static SDValue LowerToTLSLocalDynamicModel(GlobalAddressSDNode *GA,
7412                                            SelectionDAG &DAG,
7413                                            const EVT PtrVT,
7414                                            bool is64Bit) {
7415   DebugLoc dl = GA->getDebugLoc();
7416
7417   // Get the start address of the TLS block for this module.
7418   X86MachineFunctionInfo* MFI = DAG.getMachineFunction()
7419       .getInfo<X86MachineFunctionInfo>();
7420   MFI->incNumLocalDynamicTLSAccesses();
7421
7422   SDValue Base;
7423   if (is64Bit) {
7424     Base = GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT, X86::RAX,
7425                       X86II::MO_TLSLD, /*LocalDynamic=*/true);
7426   } else {
7427     SDValue InFlag;
7428     SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7429         DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT), InFlag);
7430     InFlag = Chain.getValue(1);
7431     Base = GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX,
7432                       X86II::MO_TLSLDM, /*LocalDynamic=*/true);
7433   }
7434
7435   // Note: the CleanupLocalDynamicTLSPass will remove redundant computations
7436   // of Base.
7437
7438   // Build x@dtpoff.
7439   unsigned char OperandFlags = X86II::MO_DTPOFF;
7440   unsigned WrapperKind = X86ISD::Wrapper;
7441   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7442                                            GA->getValueType(0),
7443                                            GA->getOffset(), OperandFlags);
7444   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7445
7446   // Add x@dtpoff with the base.
7447   return DAG.getNode(ISD::ADD, dl, PtrVT, Offset, Base);
7448 }
7449
7450 // Lower ISD::GlobalTLSAddress using the "initial exec" or "local exec" model.
7451 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7452                                    const EVT PtrVT, TLSModel::Model model,
7453                                    bool is64Bit, bool isPIC) {
7454   DebugLoc dl = GA->getDebugLoc();
7455
7456   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7457   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7458                                                          is64Bit ? 257 : 256));
7459
7460   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
7461                                       DAG.getIntPtrConstant(0),
7462                                       MachinePointerInfo(Ptr),
7463                                       false, false, false, 0);
7464
7465   unsigned char OperandFlags = 0;
7466   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
7467   // initialexec.
7468   unsigned WrapperKind = X86ISD::Wrapper;
7469   if (model == TLSModel::LocalExec) {
7470     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
7471   } else if (model == TLSModel::InitialExec) {
7472     if (is64Bit) {
7473       OperandFlags = X86II::MO_GOTTPOFF;
7474       WrapperKind = X86ISD::WrapperRIP;
7475     } else {
7476       OperandFlags = isPIC ? X86II::MO_GOTNTPOFF : X86II::MO_INDNTPOFF;
7477     }
7478   } else {
7479     llvm_unreachable("Unexpected model");
7480   }
7481
7482   // emit "addl x@ntpoff,%eax" (local exec)
7483   // or "addl x@indntpoff,%eax" (initial exec)
7484   // or "addl x@gotntpoff(%ebx) ,%eax" (initial exec, 32-bit pic)
7485   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7486                                            GA->getValueType(0),
7487                                            GA->getOffset(), OperandFlags);
7488   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7489
7490   if (model == TLSModel::InitialExec) {
7491     if (isPIC && !is64Bit) {
7492       Offset = DAG.getNode(ISD::ADD, dl, PtrVT,
7493                           DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), PtrVT),
7494                            Offset);
7495     }
7496
7497     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
7498                          MachinePointerInfo::getGOT(), false, false, false,
7499                          0);
7500   }
7501
7502   // The address of the thread local variable is the add of the thread
7503   // pointer with the offset of the variable.
7504   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
7505 }
7506
7507 SDValue
7508 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
7509
7510   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
7511   const GlobalValue *GV = GA->getGlobal();
7512
7513   if (Subtarget->isTargetELF()) {
7514     TLSModel::Model model = getTargetMachine().getTLSModel(GV);
7515
7516     switch (model) {
7517       case TLSModel::GeneralDynamic:
7518         if (Subtarget->is64Bit())
7519           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7520         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
7521       case TLSModel::LocalDynamic:
7522         return LowerToTLSLocalDynamicModel(GA, DAG, getPointerTy(),
7523                                            Subtarget->is64Bit());
7524       case TLSModel::InitialExec:
7525       case TLSModel::LocalExec:
7526         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7527                                    Subtarget->is64Bit(),
7528                          getTargetMachine().getRelocationModel() == Reloc::PIC_);
7529     }
7530     llvm_unreachable("Unknown TLS model.");
7531   }
7532
7533   if (Subtarget->isTargetDarwin()) {
7534     // Darwin only has one model of TLS.  Lower to that.
7535     unsigned char OpFlag = 0;
7536     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7537                            X86ISD::WrapperRIP : X86ISD::Wrapper;
7538
7539     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7540     // global base reg.
7541     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7542                   !Subtarget->is64Bit();
7543     if (PIC32)
7544       OpFlag = X86II::MO_TLVP_PIC_BASE;
7545     else
7546       OpFlag = X86II::MO_TLVP;
7547     DebugLoc DL = Op.getDebugLoc();
7548     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
7549                                                 GA->getValueType(0),
7550                                                 GA->getOffset(), OpFlag);
7551     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7552
7553     // With PIC32, the address is actually $g + Offset.
7554     if (PIC32)
7555       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7556                            DAG.getNode(X86ISD::GlobalBaseReg,
7557                                        DebugLoc(), getPointerTy()),
7558                            Offset);
7559
7560     // Lowering the machine isd will make sure everything is in the right
7561     // location.
7562     SDValue Chain = DAG.getEntryNode();
7563     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7564     SDValue Args[] = { Chain, Offset };
7565     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
7566
7567     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7568     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7569     MFI->setAdjustsStack(true);
7570
7571     // And our return value (tls address) is in the standard call return value
7572     // location.
7573     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7574     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
7575                               Chain.getValue(1));
7576   }
7577
7578   if (Subtarget->isTargetWindows()) {
7579     // Just use the implicit TLS architecture
7580     // Need to generate someting similar to:
7581     //   mov     rdx, qword [gs:abs 58H]; Load pointer to ThreadLocalStorage
7582     //                                  ; from TEB
7583     //   mov     ecx, dword [rel _tls_index]: Load index (from C runtime)
7584     //   mov     rcx, qword [rdx+rcx*8]
7585     //   mov     eax, .tls$:tlsvar
7586     //   [rax+rcx] contains the address
7587     // Windows 64bit: gs:0x58
7588     // Windows 32bit: fs:__tls_array
7589
7590     // If GV is an alias then use the aliasee for determining
7591     // thread-localness.
7592     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7593       GV = GA->resolveAliasedGlobal(false);
7594     DebugLoc dl = GA->getDebugLoc();
7595     SDValue Chain = DAG.getEntryNode();
7596
7597     // Get the Thread Pointer, which is %fs:__tls_array (32-bit) or
7598     // %gs:0x58 (64-bit).
7599     Value *Ptr = Constant::getNullValue(Subtarget->is64Bit()
7600                                         ? Type::getInt8PtrTy(*DAG.getContext(),
7601                                                              256)
7602                                         : Type::getInt32PtrTy(*DAG.getContext(),
7603                                                               257));
7604
7605     SDValue ThreadPointer = DAG.getLoad(getPointerTy(), dl, Chain,
7606                                         Subtarget->is64Bit()
7607                                         ? DAG.getIntPtrConstant(0x58)
7608                                         : DAG.getExternalSymbol("_tls_array",
7609                                                                 getPointerTy()),
7610                                         MachinePointerInfo(Ptr),
7611                                         false, false, false, 0);
7612
7613     // Load the _tls_index variable
7614     SDValue IDX = DAG.getExternalSymbol("_tls_index", getPointerTy());
7615     if (Subtarget->is64Bit())
7616       IDX = DAG.getExtLoad(ISD::ZEXTLOAD, dl, getPointerTy(), Chain,
7617                            IDX, MachinePointerInfo(), MVT::i32,
7618                            false, false, 0);
7619     else
7620       IDX = DAG.getLoad(getPointerTy(), dl, Chain, IDX, MachinePointerInfo(),
7621                         false, false, false, 0);
7622
7623     SDValue Scale = DAG.getConstant(Log2_64_Ceil(TD->getPointerSize()),
7624                                     getPointerTy());
7625     IDX = DAG.getNode(ISD::SHL, dl, getPointerTy(), IDX, Scale);
7626
7627     SDValue res = DAG.getNode(ISD::ADD, dl, getPointerTy(), ThreadPointer, IDX);
7628     res = DAG.getLoad(getPointerTy(), dl, Chain, res, MachinePointerInfo(),
7629                       false, false, false, 0);
7630
7631     // Get the offset of start of .tls section
7632     SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7633                                              GA->getValueType(0),
7634                                              GA->getOffset(), X86II::MO_SECREL);
7635     SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), TGA);
7636
7637     // The address of the thread local variable is the add of the thread
7638     // pointer with the offset of the variable.
7639     return DAG.getNode(ISD::ADD, dl, getPointerTy(), res, Offset);
7640   }
7641
7642   llvm_unreachable("TLS not implemented for this target.");
7643 }
7644
7645
7646 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values
7647 /// and take a 2 x i32 value to shift plus a shift amount.
7648 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const{
7649   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
7650   EVT VT = Op.getValueType();
7651   unsigned VTBits = VT.getSizeInBits();
7652   DebugLoc dl = Op.getDebugLoc();
7653   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
7654   SDValue ShOpLo = Op.getOperand(0);
7655   SDValue ShOpHi = Op.getOperand(1);
7656   SDValue ShAmt  = Op.getOperand(2);
7657   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
7658                                      DAG.getConstant(VTBits - 1, MVT::i8))
7659                        : DAG.getConstant(0, VT);
7660
7661   SDValue Tmp2, Tmp3;
7662   if (Op.getOpcode() == ISD::SHL_PARTS) {
7663     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7664     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
7665   } else {
7666     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7667     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
7668   }
7669
7670   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7671                                 DAG.getConstant(VTBits, MVT::i8));
7672   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
7673                              AndNode, DAG.getConstant(0, MVT::i8));
7674
7675   SDValue Hi, Lo;
7676   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
7677   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7678   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
7679
7680   if (Op.getOpcode() == ISD::SHL_PARTS) {
7681     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7682     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7683   } else {
7684     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7685     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7686   }
7687
7688   SDValue Ops[2] = { Lo, Hi };
7689   return DAG.getMergeValues(Ops, 2, dl);
7690 }
7691
7692 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7693                                            SelectionDAG &DAG) const {
7694   EVT SrcVT = Op.getOperand(0).getValueType();
7695
7696   if (SrcVT.isVector())
7697     return SDValue();
7698
7699   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
7700          "Unknown SINT_TO_FP to lower!");
7701
7702   // These are really Legal; return the operand so the caller accepts it as
7703   // Legal.
7704   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
7705     return Op;
7706   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
7707       Subtarget->is64Bit()) {
7708     return Op;
7709   }
7710
7711   DebugLoc dl = Op.getDebugLoc();
7712   unsigned Size = SrcVT.getSizeInBits()/8;
7713   MachineFunction &MF = DAG.getMachineFunction();
7714   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
7715   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7716   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7717                                StackSlot,
7718                                MachinePointerInfo::getFixedStack(SSFI),
7719                                false, false, 0);
7720   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7721 }
7722
7723 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
7724                                      SDValue StackSlot,
7725                                      SelectionDAG &DAG) const {
7726   // Build the FILD
7727   DebugLoc DL = Op.getDebugLoc();
7728   SDVTList Tys;
7729   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
7730   if (useSSE)
7731     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
7732   else
7733     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
7734
7735   unsigned ByteSize = SrcVT.getSizeInBits()/8;
7736
7737   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7738   MachineMemOperand *MMO;
7739   if (FI) {
7740     int SSFI = FI->getIndex();
7741     MMO =
7742       DAG.getMachineFunction()
7743       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7744                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
7745   } else {
7746     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7747     StackSlot = StackSlot.getOperand(1);
7748   }
7749   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
7750   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7751                                            X86ISD::FILD, DL,
7752                                            Tys, Ops, array_lengthof(Ops),
7753                                            SrcVT, MMO);
7754
7755   if (useSSE) {
7756     Chain = Result.getValue(1);
7757     SDValue InFlag = Result.getValue(2);
7758
7759     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7760     // shouldn't be necessary except that RFP cannot be live across
7761     // multiple blocks. When stackifier is fixed, they can be uncoupled.
7762     MachineFunction &MF = DAG.getMachineFunction();
7763     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7764     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
7765     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7766     Tys = DAG.getVTList(MVT::Other);
7767     SDValue Ops[] = {
7768       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7769     };
7770     MachineMemOperand *MMO =
7771       DAG.getMachineFunction()
7772       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7773                             MachineMemOperand::MOStore, SSFISize, SSFISize);
7774
7775     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7776                                     Ops, array_lengthof(Ops),
7777                                     Op.getValueType(), MMO);
7778     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
7779                          MachinePointerInfo::getFixedStack(SSFI),
7780                          false, false, false, 0);
7781   }
7782
7783   return Result;
7784 }
7785
7786 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
7787 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7788                                                SelectionDAG &DAG) const {
7789   // This algorithm is not obvious. Here it is what we're trying to output:
7790   /*
7791      movq       %rax,  %xmm0
7792      punpckldq  (c0),  %xmm0  // c0: (uint4){ 0x43300000U, 0x45300000U, 0U, 0U }
7793      subpd      (c1),  %xmm0  // c1: (double2){ 0x1.0p52, 0x1.0p52 * 0x1.0p32 }
7794      #ifdef __SSE3__
7795        haddpd   %xmm0, %xmm0
7796      #else
7797        pshufd   $0x4e, %xmm0, %xmm1
7798        addpd    %xmm1, %xmm0
7799      #endif
7800   */
7801
7802   DebugLoc dl = Op.getDebugLoc();
7803   LLVMContext *Context = DAG.getContext();
7804
7805   // Build some magic constants.
7806   const uint32_t CV0[] = { 0x43300000, 0x45300000, 0, 0 };
7807   Constant *C0 = ConstantDataVector::get(*Context, CV0);
7808   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
7809
7810   SmallVector<Constant*,2> CV1;
7811   CV1.push_back(
7812         ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
7813   CV1.push_back(
7814         ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
7815   Constant *C1 = ConstantVector::get(CV1);
7816   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
7817
7818   // Load the 64-bit value into an XMM register.
7819   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
7820                             Op.getOperand(0));
7821   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
7822                               MachinePointerInfo::getConstantPool(),
7823                               false, false, false, 16);
7824   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32,
7825                               DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, XR1),
7826                               CLod0);
7827
7828   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
7829                               MachinePointerInfo::getConstantPool(),
7830                               false, false, false, 16);
7831   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck1);
7832   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
7833   SDValue Result;
7834
7835   if (Subtarget->hasSSE3()) {
7836     // FIXME: The 'haddpd' instruction may be slower than 'movhlps + addsd'.
7837     Result = DAG.getNode(X86ISD::FHADD, dl, MVT::v2f64, Sub, Sub);
7838   } else {
7839     SDValue S2F = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, Sub);
7840     SDValue Shuffle = getTargetShuffleNode(X86ISD::PSHUFD, dl, MVT::v4i32,
7841                                            S2F, 0x4E, DAG);
7842     Result = DAG.getNode(ISD::FADD, dl, MVT::v2f64,
7843                          DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Shuffle),
7844                          Sub);
7845   }
7846
7847   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Result,
7848                      DAG.getIntPtrConstant(0));
7849 }
7850
7851 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
7852 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7853                                                SelectionDAG &DAG) const {
7854   DebugLoc dl = Op.getDebugLoc();
7855   // FP constant to bias correct the final result.
7856   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
7857                                    MVT::f64);
7858
7859   // Load the 32-bit value into an XMM register.
7860   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7861                              Op.getOperand(0));
7862
7863   // Zero out the upper parts of the register.
7864   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget, DAG);
7865
7866   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7867                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
7868                      DAG.getIntPtrConstant(0));
7869
7870   // Or the load with the bias.
7871   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
7872                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7873                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7874                                                    MVT::v2f64, Load)),
7875                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7876                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7877                                                    MVT::v2f64, Bias)));
7878   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7879                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
7880                    DAG.getIntPtrConstant(0));
7881
7882   // Subtract the bias.
7883   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
7884
7885   // Handle final rounding.
7886   EVT DestVT = Op.getValueType();
7887
7888   if (DestVT.bitsLT(MVT::f64))
7889     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
7890                        DAG.getIntPtrConstant(0));
7891   if (DestVT.bitsGT(MVT::f64))
7892     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
7893
7894   // Handle final rounding.
7895   return Sub;
7896 }
7897
7898 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7899                                            SelectionDAG &DAG) const {
7900   SDValue N0 = Op.getOperand(0);
7901   DebugLoc dl = Op.getDebugLoc();
7902
7903   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
7904   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7905   // the optimization here.
7906   if (DAG.SignBitIsZero(N0))
7907     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
7908
7909   EVT SrcVT = N0.getValueType();
7910   EVT DstVT = Op.getValueType();
7911   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
7912     return LowerUINT_TO_FP_i64(Op, DAG);
7913   if (SrcVT == MVT::i32 && X86ScalarSSEf64)
7914     return LowerUINT_TO_FP_i32(Op, DAG);
7915   if (Subtarget->is64Bit() && SrcVT == MVT::i64 && DstVT == MVT::f32)
7916     return SDValue();
7917
7918   // Make a 64-bit buffer, and use it to build an FILD.
7919   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
7920   if (SrcVT == MVT::i32) {
7921     SDValue WordOff = DAG.getConstant(4, getPointerTy());
7922     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7923                                      getPointerTy(), StackSlot, WordOff);
7924     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7925                                   StackSlot, MachinePointerInfo(),
7926                                   false, false, 0);
7927     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
7928                                   OffsetSlot, MachinePointerInfo(),
7929                                   false, false, 0);
7930     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7931     return Fild;
7932   }
7933
7934   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7935   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7936                                StackSlot, MachinePointerInfo(),
7937                                false, false, 0);
7938   // For i64 source, we need to add the appropriate power of 2 if the input
7939   // was negative.  This is the same as the optimization in
7940   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7941   // we must be careful to do the computation in x87 extended precision, not
7942   // in SSE. (The generic code can't know it's OK to do this, or how to.)
7943   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7944   MachineMemOperand *MMO =
7945     DAG.getMachineFunction()
7946     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7947                           MachineMemOperand::MOLoad, 8, 8);
7948
7949   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7950   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
7951   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7952                                          MVT::i64, MMO);
7953
7954   APInt FF(32, 0x5F800000ULL);
7955
7956   // Check whether the sign bit is set.
7957   SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7958                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7959                                  ISD::SETLT);
7960
7961   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7962   SDValue FudgePtr = DAG.getConstantPool(
7963                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7964                                          getPointerTy());
7965
7966   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7967   SDValue Zero = DAG.getIntPtrConstant(0);
7968   SDValue Four = DAG.getIntPtrConstant(4);
7969   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7970                                Zero, Four);
7971   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7972
7973   // Load the value out, extending it from f32 to f80.
7974   // FIXME: Avoid the extend by constructing the right constant pool?
7975   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
7976                                  FudgePtr, MachinePointerInfo::getConstantPool(),
7977                                  MVT::f32, false, false, 4);
7978   // Extend everything to 80 bits to force it to be done on x87.
7979   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7980   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
7981 }
7982
7983 std::pair<SDValue,SDValue> X86TargetLowering::
7984 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned, bool IsReplace) const {
7985   DebugLoc DL = Op.getDebugLoc();
7986
7987   EVT DstTy = Op.getValueType();
7988
7989   if (!IsSigned && !isIntegerTypeFTOL(DstTy)) {
7990     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7991     DstTy = MVT::i64;
7992   }
7993
7994   assert(DstTy.getSimpleVT() <= MVT::i64 &&
7995          DstTy.getSimpleVT() >= MVT::i16 &&
7996          "Unknown FP_TO_INT to lower!");
7997
7998   // These are really Legal.
7999   if (DstTy == MVT::i32 &&
8000       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8001     return std::make_pair(SDValue(), SDValue());
8002   if (Subtarget->is64Bit() &&
8003       DstTy == MVT::i64 &&
8004       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8005     return std::make_pair(SDValue(), SDValue());
8006
8007   // We lower FP->int64 either into FISTP64 followed by a load from a temporary
8008   // stack slot, or into the FTOL runtime function.
8009   MachineFunction &MF = DAG.getMachineFunction();
8010   unsigned MemSize = DstTy.getSizeInBits()/8;
8011   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8012   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8013
8014   unsigned Opc;
8015   if (!IsSigned && isIntegerTypeFTOL(DstTy))
8016     Opc = X86ISD::WIN_FTOL;
8017   else
8018     switch (DstTy.getSimpleVT().SimpleTy) {
8019     default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8020     case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8021     case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8022     case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8023     }
8024
8025   SDValue Chain = DAG.getEntryNode();
8026   SDValue Value = Op.getOperand(0);
8027   EVT TheVT = Op.getOperand(0).getValueType();
8028   // FIXME This causes a redundant load/store if the SSE-class value is already
8029   // in memory, such as if it is on the callstack.
8030   if (isScalarFPTypeInSSEReg(TheVT)) {
8031     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8032     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8033                          MachinePointerInfo::getFixedStack(SSFI),
8034                          false, false, 0);
8035     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8036     SDValue Ops[] = {
8037       Chain, StackSlot, DAG.getValueType(TheVT)
8038     };
8039
8040     MachineMemOperand *MMO =
8041       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8042                               MachineMemOperand::MOLoad, MemSize, MemSize);
8043     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
8044                                     DstTy, MMO);
8045     Chain = Value.getValue(1);
8046     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8047     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8048   }
8049
8050   MachineMemOperand *MMO =
8051     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8052                             MachineMemOperand::MOStore, MemSize, MemSize);
8053
8054   if (Opc != X86ISD::WIN_FTOL) {
8055     // Build the FP_TO_INT*_IN_MEM
8056     SDValue Ops[] = { Chain, Value, StackSlot };
8057     SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8058                                            Ops, 3, DstTy, MMO);
8059     return std::make_pair(FIST, StackSlot);
8060   } else {
8061     SDValue ftol = DAG.getNode(X86ISD::WIN_FTOL, DL,
8062       DAG.getVTList(MVT::Other, MVT::Glue),
8063       Chain, Value);
8064     SDValue eax = DAG.getCopyFromReg(ftol, DL, X86::EAX,
8065       MVT::i32, ftol.getValue(1));
8066     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), DL, X86::EDX,
8067       MVT::i32, eax.getValue(2));
8068     SDValue Ops[] = { eax, edx };
8069     SDValue pair = IsReplace
8070       ? DAG.getNode(ISD::BUILD_PAIR, DL, MVT::i64, Ops, 2)
8071       : DAG.getMergeValues(Ops, 2, DL);
8072     return std::make_pair(pair, SDValue());
8073   }
8074 }
8075
8076 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8077                                            SelectionDAG &DAG) const {
8078   if (Op.getValueType().isVector())
8079     return SDValue();
8080
8081   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8082     /*IsSigned=*/ true, /*IsReplace=*/ false);
8083   SDValue FIST = Vals.first, StackSlot = Vals.second;
8084   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
8085   if (FIST.getNode() == 0) return Op;
8086
8087   if (StackSlot.getNode())
8088     // Load the result.
8089     return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8090                        FIST, StackSlot, MachinePointerInfo(),
8091                        false, false, false, 0);
8092
8093   // The node is the result.
8094   return FIST;
8095 }
8096
8097 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
8098                                            SelectionDAG &DAG) const {
8099   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG,
8100     /*IsSigned=*/ false, /*IsReplace=*/ false);
8101   SDValue FIST = Vals.first, StackSlot = Vals.second;
8102   assert(FIST.getNode() && "Unexpected failure");
8103
8104   if (StackSlot.getNode())
8105     // Load the result.
8106     return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8107                        FIST, StackSlot, MachinePointerInfo(),
8108                        false, false, false, 0);
8109
8110   // The node is the result.
8111   return FIST;
8112 }
8113
8114 SDValue X86TargetLowering::LowerFABS(SDValue Op,
8115                                      SelectionDAG &DAG) const {
8116   LLVMContext *Context = DAG.getContext();
8117   DebugLoc dl = Op.getDebugLoc();
8118   EVT VT = Op.getValueType();
8119   EVT EltVT = VT;
8120   if (VT.isVector())
8121     EltVT = VT.getVectorElementType();
8122   Constant *C;
8123   if (EltVT == MVT::f64) {
8124     C = ConstantVector::getSplat(2,
8125                 ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8126   } else {
8127     C = ConstantVector::getSplat(4,
8128                ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8129   }
8130   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8131   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8132                              MachinePointerInfo::getConstantPool(),
8133                              false, false, false, 16);
8134   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
8135 }
8136
8137 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
8138   LLVMContext *Context = DAG.getContext();
8139   DebugLoc dl = Op.getDebugLoc();
8140   EVT VT = Op.getValueType();
8141   EVT EltVT = VT;
8142   unsigned NumElts = VT == MVT::f64 ? 2 : 4;
8143   if (VT.isVector()) {
8144     EltVT = VT.getVectorElementType();
8145     NumElts = VT.getVectorNumElements();
8146   }
8147   Constant *C;
8148   if (EltVT == MVT::f64)
8149     C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
8150   else
8151     C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
8152   C = ConstantVector::getSplat(NumElts, C);
8153   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8154   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8155                              MachinePointerInfo::getConstantPool(),
8156                              false, false, false, 16);
8157   if (VT.isVector()) {
8158     MVT XORVT = VT.is128BitVector() ? MVT::v2i64 : MVT::v4i64;
8159     return DAG.getNode(ISD::BITCAST, dl, VT,
8160                        DAG.getNode(ISD::XOR, dl, XORVT,
8161                                    DAG.getNode(ISD::BITCAST, dl, XORVT,
8162                                                Op.getOperand(0)),
8163                                    DAG.getNode(ISD::BITCAST, dl, XORVT, Mask)));
8164   }
8165
8166   return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
8167 }
8168
8169 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
8170   LLVMContext *Context = DAG.getContext();
8171   SDValue Op0 = Op.getOperand(0);
8172   SDValue Op1 = Op.getOperand(1);
8173   DebugLoc dl = Op.getDebugLoc();
8174   EVT VT = Op.getValueType();
8175   EVT SrcVT = Op1.getValueType();
8176
8177   // If second operand is smaller, extend it first.
8178   if (SrcVT.bitsLT(VT)) {
8179     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
8180     SrcVT = VT;
8181   }
8182   // And if it is bigger, shrink it first.
8183   if (SrcVT.bitsGT(VT)) {
8184     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
8185     SrcVT = VT;
8186   }
8187
8188   // At this point the operands and the result should have the same
8189   // type, and that won't be f80 since that is not custom lowered.
8190
8191   // First get the sign bit of second operand.
8192   SmallVector<Constant*,4> CV;
8193   if (SrcVT == MVT::f64) {
8194     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8195     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8196   } else {
8197     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8198     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8199     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8200     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8201   }
8202   Constant *C = ConstantVector::get(CV);
8203   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8204   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
8205                               MachinePointerInfo::getConstantPool(),
8206                               false, false, false, 16);
8207   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
8208
8209   // Shift sign bit right or left if the two operands have different types.
8210   if (SrcVT.bitsGT(VT)) {
8211     // Op0 is MVT::f32, Op1 is MVT::f64.
8212     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8213     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8214                           DAG.getConstant(32, MVT::i32));
8215     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
8216     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
8217                           DAG.getIntPtrConstant(0));
8218   }
8219
8220   // Clear first operand sign bit.
8221   CV.clear();
8222   if (VT == MVT::f64) {
8223     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8224     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8225   } else {
8226     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8227     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8228     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8229     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8230   }
8231   C = ConstantVector::get(CV);
8232   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8233   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8234                               MachinePointerInfo::getConstantPool(),
8235                               false, false, false, 16);
8236   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
8237
8238   // Or the value with the sign bit.
8239   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
8240 }
8241
8242 SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8243   SDValue N0 = Op.getOperand(0);
8244   DebugLoc dl = Op.getDebugLoc();
8245   EVT VT = Op.getValueType();
8246
8247   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8248   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8249                                   DAG.getConstant(1, VT));
8250   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8251 }
8252
8253 /// Emit nodes that will be selected as "test Op0,Op0", or something
8254 /// equivalent.
8255 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
8256                                     SelectionDAG &DAG) const {
8257   DebugLoc dl = Op.getDebugLoc();
8258
8259   // CF and OF aren't always set the way we want. Determine which
8260   // of these we need.
8261   bool NeedCF = false;
8262   bool NeedOF = false;
8263   switch (X86CC) {
8264   default: break;
8265   case X86::COND_A: case X86::COND_AE:
8266   case X86::COND_B: case X86::COND_BE:
8267     NeedCF = true;
8268     break;
8269   case X86::COND_G: case X86::COND_GE:
8270   case X86::COND_L: case X86::COND_LE:
8271   case X86::COND_O: case X86::COND_NO:
8272     NeedOF = true;
8273     break;
8274   }
8275
8276   // See if we can use the EFLAGS value from the operand instead of
8277   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8278   // we prove that the arithmetic won't overflow, we can't use OF or CF.
8279   if (Op.getResNo() != 0 || NeedOF || NeedCF)
8280     // Emit a CMP with 0, which is the TEST pattern.
8281     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8282                        DAG.getConstant(0, Op.getValueType()));
8283
8284   unsigned Opcode = 0;
8285   unsigned NumOperands = 0;
8286
8287   // Truncate operations may prevent the merge of the SETCC instruction
8288   // and the arithmetic intruction before it. Attempt to truncate the operands
8289   // of the arithmetic instruction and use a reduced bit-width instruction.
8290   bool NeedTruncation = false;
8291   SDValue ArithOp = Op;
8292   if (Op->getOpcode() == ISD::TRUNCATE && Op->hasOneUse()) {
8293     SDValue Arith = Op->getOperand(0);
8294     // Both the trunc and the arithmetic op need to have one user each.
8295     if (Arith->hasOneUse())
8296       switch (Arith.getOpcode()) {
8297         default: break;
8298         case ISD::ADD:
8299         case ISD::SUB:
8300         case ISD::AND:
8301         case ISD::OR:
8302         case ISD::XOR: {
8303           NeedTruncation = true;
8304           ArithOp = Arith;
8305         }
8306       }
8307   }
8308
8309   // NOTICE: In the code below we use ArithOp to hold the arithmetic operation
8310   // which may be the result of a CAST.  We use the variable 'Op', which is the
8311   // non-casted variable when we check for possible users.
8312   switch (ArithOp.getOpcode()) {
8313   case ISD::ADD:
8314     // Due to an isel shortcoming, be conservative if this add is likely to be
8315     // selected as part of a load-modify-store instruction. When the root node
8316     // in a match is a store, isel doesn't know how to remap non-chain non-flag
8317     // uses of other nodes in the match, such as the ADD in this case. This
8318     // leads to the ADD being left around and reselected, with the result being
8319     // two adds in the output.  Alas, even if none our users are stores, that
8320     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
8321     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
8322     // climbing the DAG back to the root, and it doesn't seem to be worth the
8323     // effort.
8324     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8325          UE = Op.getNode()->use_end(); UI != UE; ++UI)
8326       if (UI->getOpcode() != ISD::CopyToReg &&
8327           UI->getOpcode() != ISD::SETCC &&
8328           UI->getOpcode() != ISD::STORE)
8329         goto default_case;
8330
8331     if (ConstantSDNode *C =
8332         dyn_cast<ConstantSDNode>(ArithOp.getNode()->getOperand(1))) {
8333       // An add of one will be selected as an INC.
8334       if (C->getAPIntValue() == 1) {
8335         Opcode = X86ISD::INC;
8336         NumOperands = 1;
8337         break;
8338       }
8339
8340       // An add of negative one (subtract of one) will be selected as a DEC.
8341       if (C->getAPIntValue().isAllOnesValue()) {
8342         Opcode = X86ISD::DEC;
8343         NumOperands = 1;
8344         break;
8345       }
8346     }
8347
8348     // Otherwise use a regular EFLAGS-setting add.
8349     Opcode = X86ISD::ADD;
8350     NumOperands = 2;
8351     break;
8352   case ISD::AND: {
8353     // If the primary and result isn't used, don't bother using X86ISD::AND,
8354     // because a TEST instruction will be better.
8355     bool NonFlagUse = false;
8356     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8357            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8358       SDNode *User = *UI;
8359       unsigned UOpNo = UI.getOperandNo();
8360       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8361         // Look pass truncate.
8362         UOpNo = User->use_begin().getOperandNo();
8363         User = *User->use_begin();
8364       }
8365
8366       if (User->getOpcode() != ISD::BRCOND &&
8367           User->getOpcode() != ISD::SETCC &&
8368           !(User->getOpcode() == ISD::SELECT && UOpNo == 0)) {
8369         NonFlagUse = true;
8370         break;
8371       }
8372     }
8373
8374     if (!NonFlagUse)
8375       break;
8376   }
8377     // FALL THROUGH
8378   case ISD::SUB:
8379   case ISD::OR:
8380   case ISD::XOR:
8381     // Due to the ISEL shortcoming noted above, be conservative if this op is
8382     // likely to be selected as part of a load-modify-store instruction.
8383     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8384            UE = Op.getNode()->use_end(); UI != UE; ++UI)
8385       if (UI->getOpcode() == ISD::STORE)
8386         goto default_case;
8387
8388     // Otherwise use a regular EFLAGS-setting instruction.
8389     switch (ArithOp.getOpcode()) {
8390     default: llvm_unreachable("unexpected operator!");
8391     case ISD::SUB: Opcode = X86ISD::SUB; break;
8392     case ISD::OR:  Opcode = X86ISD::OR;  break;
8393     case ISD::XOR: Opcode = X86ISD::XOR; break;
8394     case ISD::AND: Opcode = X86ISD::AND; break;
8395     }
8396
8397     NumOperands = 2;
8398     break;
8399   case X86ISD::ADD:
8400   case X86ISD::SUB:
8401   case X86ISD::INC:
8402   case X86ISD::DEC:
8403   case X86ISD::OR:
8404   case X86ISD::XOR:
8405   case X86ISD::AND:
8406     return SDValue(Op.getNode(), 1);
8407   default:
8408   default_case:
8409     break;
8410   }
8411
8412   // If we found that truncation is beneficial, perform the truncation and
8413   // update 'Op'.
8414   if (NeedTruncation) {
8415     EVT VT = Op.getValueType();
8416     SDValue WideVal = Op->getOperand(0);
8417     EVT WideVT = WideVal.getValueType();
8418     unsigned ConvertedOp = 0;
8419     // Use a target machine opcode to prevent further DAGCombine
8420     // optimizations that may separate the arithmetic operations
8421     // from the setcc node.
8422     switch (WideVal.getOpcode()) {
8423       default: break;
8424       case ISD::ADD: ConvertedOp = X86ISD::ADD; break;
8425       case ISD::SUB: ConvertedOp = X86ISD::SUB; break;
8426       case ISD::AND: ConvertedOp = X86ISD::AND; break;
8427       case ISD::OR:  ConvertedOp = X86ISD::OR;  break;
8428       case ISD::XOR: ConvertedOp = X86ISD::XOR; break;
8429     }
8430
8431     if (ConvertedOp) {
8432       const TargetLowering &TLI = DAG.getTargetLoweringInfo();
8433       if (TLI.isOperationLegal(WideVal.getOpcode(), WideVT)) {
8434         SDValue V0 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(0));
8435         SDValue V1 = DAG.getNode(ISD::TRUNCATE, dl, VT, WideVal.getOperand(1));
8436         Op = DAG.getNode(ConvertedOp, dl, VT, V0, V1);
8437       }
8438     }
8439   }
8440
8441   if (Opcode == 0)
8442     // Emit a CMP with 0, which is the TEST pattern.
8443     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8444                        DAG.getConstant(0, Op.getValueType()));
8445
8446   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8447   SmallVector<SDValue, 4> Ops;
8448   for (unsigned i = 0; i != NumOperands; ++i)
8449     Ops.push_back(Op.getOperand(i));
8450
8451   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8452   DAG.ReplaceAllUsesWith(Op, New);
8453   return SDValue(New.getNode(), 1);
8454 }
8455
8456 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
8457 /// equivalent.
8458 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
8459                                    SelectionDAG &DAG) const {
8460   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8461     if (C->getAPIntValue() == 0)
8462       return EmitTest(Op0, X86CC, DAG);
8463
8464   DebugLoc dl = Op0.getDebugLoc();
8465   if ((Op0.getValueType() == MVT::i8 || Op0.getValueType() == MVT::i16 ||
8466        Op0.getValueType() == MVT::i32 || Op0.getValueType() == MVT::i64)) {
8467     // Use SUB instead of CMP to enable CSE between SUB and CMP.
8468     SDVTList VTs = DAG.getVTList(Op0.getValueType(), MVT::i32);
8469     SDValue Sub = DAG.getNode(X86ISD::SUB, dl, VTs,
8470                               Op0, Op1);
8471     return SDValue(Sub.getNode(), 1);
8472   }
8473   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
8474 }
8475
8476 /// Convert a comparison if required by the subtarget.
8477 SDValue X86TargetLowering::ConvertCmpIfNecessary(SDValue Cmp,
8478                                                  SelectionDAG &DAG) const {
8479   // If the subtarget does not support the FUCOMI instruction, floating-point
8480   // comparisons have to be converted.
8481   if (Subtarget->hasCMov() ||
8482       Cmp.getOpcode() != X86ISD::CMP ||
8483       !Cmp.getOperand(0).getValueType().isFloatingPoint() ||
8484       !Cmp.getOperand(1).getValueType().isFloatingPoint())
8485     return Cmp;
8486
8487   // The instruction selector will select an FUCOM instruction instead of
8488   // FUCOMI, which writes the comparison result to FPSW instead of EFLAGS. Hence
8489   // build an SDNode sequence that transfers the result from FPSW into EFLAGS:
8490   // (X86sahf (trunc (srl (X86fp_stsw (trunc (X86cmp ...)), 8))))
8491   DebugLoc dl = Cmp.getDebugLoc();
8492   SDValue TruncFPSW = DAG.getNode(ISD::TRUNCATE, dl, MVT::i16, Cmp);
8493   SDValue FNStSW = DAG.getNode(X86ISD::FNSTSW16r, dl, MVT::i16, TruncFPSW);
8494   SDValue Srl = DAG.getNode(ISD::SRL, dl, MVT::i16, FNStSW,
8495                             DAG.getConstant(8, MVT::i8));
8496   SDValue TruncSrl = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Srl);
8497   return DAG.getNode(X86ISD::SAHF, dl, MVT::i32, TruncSrl);
8498 }
8499
8500 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8501 /// if it's possible.
8502 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8503                                      DebugLoc dl, SelectionDAG &DAG) const {
8504   SDValue Op0 = And.getOperand(0);
8505   SDValue Op1 = And.getOperand(1);
8506   if (Op0.getOpcode() == ISD::TRUNCATE)
8507     Op0 = Op0.getOperand(0);
8508   if (Op1.getOpcode() == ISD::TRUNCATE)
8509     Op1 = Op1.getOperand(0);
8510
8511   SDValue LHS, RHS;
8512   if (Op1.getOpcode() == ISD::SHL)
8513     std::swap(Op0, Op1);
8514   if (Op0.getOpcode() == ISD::SHL) {
8515     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8516       if (And00C->getZExtValue() == 1) {
8517         // If we looked past a truncate, check that it's only truncating away
8518         // known zeros.
8519         unsigned BitWidth = Op0.getValueSizeInBits();
8520         unsigned AndBitWidth = And.getValueSizeInBits();
8521         if (BitWidth > AndBitWidth) {
8522           APInt Zeros, Ones;
8523           DAG.ComputeMaskedBits(Op0, Zeros, Ones);
8524           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8525             return SDValue();
8526         }
8527         LHS = Op1;
8528         RHS = Op0.getOperand(1);
8529       }
8530   } else if (Op1.getOpcode() == ISD::Constant) {
8531     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8532     uint64_t AndRHSVal = AndRHS->getZExtValue();
8533     SDValue AndLHS = Op0;
8534
8535     if (AndRHSVal == 1 && AndLHS.getOpcode() == ISD::SRL) {
8536       LHS = AndLHS.getOperand(0);
8537       RHS = AndLHS.getOperand(1);
8538     }
8539
8540     // Use BT if the immediate can't be encoded in a TEST instruction.
8541     if (!isUInt<32>(AndRHSVal) && isPowerOf2_64(AndRHSVal)) {
8542       LHS = AndLHS;
8543       RHS = DAG.getConstant(Log2_64_Ceil(AndRHSVal), LHS.getValueType());
8544     }
8545   }
8546
8547   if (LHS.getNode()) {
8548     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
8549     // instruction.  Since the shift amount is in-range-or-undefined, we know
8550     // that doing a bittest on the i32 value is ok.  We extend to i32 because
8551     // the encoding for the i16 version is larger than the i32 version.
8552     // Also promote i16 to i32 for performance / code size reason.
8553     if (LHS.getValueType() == MVT::i8 ||
8554         LHS.getValueType() == MVT::i16)
8555       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
8556
8557     // If the operand types disagree, extend the shift amount to match.  Since
8558     // BT ignores high bits (like shifts) we can use anyextend.
8559     if (LHS.getValueType() != RHS.getValueType())
8560       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
8561
8562     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8563     unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8564     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8565                        DAG.getConstant(Cond, MVT::i8), BT);
8566   }
8567
8568   return SDValue();
8569 }
8570
8571 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
8572
8573   if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8574
8575   assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8576   SDValue Op0 = Op.getOperand(0);
8577   SDValue Op1 = Op.getOperand(1);
8578   DebugLoc dl = Op.getDebugLoc();
8579   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8580
8581   // Optimize to BT if possible.
8582   // Lower (X & (1 << N)) == 0 to BT(X, N).
8583   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8584   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
8585   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
8586       Op1.getOpcode() == ISD::Constant &&
8587       cast<ConstantSDNode>(Op1)->isNullValue() &&
8588       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8589     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8590     if (NewSetCC.getNode())
8591       return NewSetCC;
8592   }
8593
8594   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
8595   // these.
8596   if (Op1.getOpcode() == ISD::Constant &&
8597       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
8598        cast<ConstantSDNode>(Op1)->isNullValue()) &&
8599       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8600
8601     // If the input is a setcc, then reuse the input setcc or use a new one with
8602     // the inverted condition.
8603     if (Op0.getOpcode() == X86ISD::SETCC) {
8604       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8605       bool Invert = (CC == ISD::SETNE) ^
8606         cast<ConstantSDNode>(Op1)->isNullValue();
8607       if (!Invert) return Op0;
8608
8609       CCode = X86::GetOppositeBranchCondition(CCode);
8610       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8611                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8612     }
8613   }
8614
8615   bool isFP = Op1.getValueType().isFloatingPoint();
8616   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
8617   if (X86CC == X86::COND_INVALID)
8618     return SDValue();
8619
8620   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
8621   EFLAGS = ConvertCmpIfNecessary(EFLAGS, DAG);
8622   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8623                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
8624 }
8625
8626 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8627 // ones, and then concatenate the result back.
8628 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
8629   EVT VT = Op.getValueType();
8630
8631   assert(VT.is256BitVector() && Op.getOpcode() == ISD::SETCC &&
8632          "Unsupported value type for operation");
8633
8634   unsigned NumElems = VT.getVectorNumElements();
8635   DebugLoc dl = Op.getDebugLoc();
8636   SDValue CC = Op.getOperand(2);
8637
8638   // Extract the LHS vectors
8639   SDValue LHS = Op.getOperand(0);
8640   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
8641   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
8642
8643   // Extract the RHS vectors
8644   SDValue RHS = Op.getOperand(1);
8645   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
8646   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
8647
8648   // Issue the operation on the smaller types and concatenate the result back
8649   MVT EltVT = VT.getVectorElementType().getSimpleVT();
8650   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8651   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8652                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8653                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8654 }
8655
8656
8657 SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
8658   SDValue Cond;
8659   SDValue Op0 = Op.getOperand(0);
8660   SDValue Op1 = Op.getOperand(1);
8661   SDValue CC = Op.getOperand(2);
8662   EVT VT = Op.getValueType();
8663   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8664   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
8665   DebugLoc dl = Op.getDebugLoc();
8666
8667   if (isFP) {
8668 #ifndef NDEBUG
8669     EVT EltVT = Op0.getValueType().getVectorElementType();
8670     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8671 #endif
8672
8673     unsigned SSECC;
8674     bool Swap = false;
8675
8676     // SSE Condition code mapping:
8677     //  0 - EQ
8678     //  1 - LT
8679     //  2 - LE
8680     //  3 - UNORD
8681     //  4 - NEQ
8682     //  5 - NLT
8683     //  6 - NLE
8684     //  7 - ORD
8685     switch (SetCCOpcode) {
8686     default: llvm_unreachable("Unexpected SETCC condition");
8687     case ISD::SETOEQ:
8688     case ISD::SETEQ:  SSECC = 0; break;
8689     case ISD::SETOGT:
8690     case ISD::SETGT: Swap = true; // Fallthrough
8691     case ISD::SETLT:
8692     case ISD::SETOLT: SSECC = 1; break;
8693     case ISD::SETOGE:
8694     case ISD::SETGE: Swap = true; // Fallthrough
8695     case ISD::SETLE:
8696     case ISD::SETOLE: SSECC = 2; break;
8697     case ISD::SETUO:  SSECC = 3; break;
8698     case ISD::SETUNE:
8699     case ISD::SETNE:  SSECC = 4; break;
8700     case ISD::SETULE: Swap = true; // Fallthrough
8701     case ISD::SETUGE: SSECC = 5; break;
8702     case ISD::SETULT: Swap = true; // Fallthrough
8703     case ISD::SETUGT: SSECC = 6; break;
8704     case ISD::SETO:   SSECC = 7; break;
8705     case ISD::SETUEQ:
8706     case ISD::SETONE: SSECC = 8; break;
8707     }
8708     if (Swap)
8709       std::swap(Op0, Op1);
8710
8711     // In the two special cases we can't handle, emit two comparisons.
8712     if (SSECC == 8) {
8713       unsigned CC0, CC1;
8714       unsigned CombineOpc;
8715       if (SetCCOpcode == ISD::SETUEQ) {
8716         CC0 = 3; CC1 = 0; CombineOpc = ISD::OR;
8717       } else {
8718         assert(SetCCOpcode == ISD::SETONE);
8719         CC0 = 7; CC1 = 4; CombineOpc = ISD::AND;
8720       }
8721
8722       SDValue Cmp0 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
8723                                  DAG.getConstant(CC0, MVT::i8));
8724       SDValue Cmp1 = DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
8725                                  DAG.getConstant(CC1, MVT::i8));
8726       return DAG.getNode(CombineOpc, dl, VT, Cmp0, Cmp1);
8727     }
8728     // Handle all other FP comparisons here.
8729     return DAG.getNode(X86ISD::CMPP, dl, VT, Op0, Op1,
8730                        DAG.getConstant(SSECC, MVT::i8));
8731   }
8732
8733   // Break 256-bit integer vector compare into smaller ones.
8734   if (VT.is256BitVector() && !Subtarget->hasAVX2())
8735     return Lower256IntVSETCC(Op, DAG);
8736
8737   // We are handling one of the integer comparisons here.  Since SSE only has
8738   // GT and EQ comparisons for integer, swapping operands and multiple
8739   // operations may be required for some comparisons.
8740   unsigned Opc;
8741   bool Swap = false, Invert = false, FlipSigns = false;
8742
8743   switch (SetCCOpcode) {
8744   default: llvm_unreachable("Unexpected SETCC condition");
8745   case ISD::SETNE:  Invert = true;
8746   case ISD::SETEQ:  Opc = X86ISD::PCMPEQ; break;
8747   case ISD::SETLT:  Swap = true;
8748   case ISD::SETGT:  Opc = X86ISD::PCMPGT; break;
8749   case ISD::SETGE:  Swap = true;
8750   case ISD::SETLE:  Opc = X86ISD::PCMPGT; Invert = true; break;
8751   case ISD::SETULT: Swap = true;
8752   case ISD::SETUGT: Opc = X86ISD::PCMPGT; FlipSigns = true; break;
8753   case ISD::SETUGE: Swap = true;
8754   case ISD::SETULE: Opc = X86ISD::PCMPGT; FlipSigns = true; Invert = true; break;
8755   }
8756   if (Swap)
8757     std::swap(Op0, Op1);
8758
8759   // Check that the operation in question is available (most are plain SSE2,
8760   // but PCMPGTQ and PCMPEQQ have different requirements).
8761   if (VT == MVT::v2i64) {
8762     if (Opc == X86ISD::PCMPGT && !Subtarget->hasSSE42())
8763       return SDValue();
8764     if (Opc == X86ISD::PCMPEQ && !Subtarget->hasSSE41())
8765       return SDValue();
8766   }
8767
8768   // Since SSE has no unsigned integer comparisons, we need to flip  the sign
8769   // bits of the inputs before performing those operations.
8770   if (FlipSigns) {
8771     EVT EltVT = VT.getVectorElementType();
8772     SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8773                                       EltVT);
8774     std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
8775     SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8776                                     SignBits.size());
8777     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8778     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
8779   }
8780
8781   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
8782
8783   // If the logical-not of the result is required, perform that now.
8784   if (Invert)
8785     Result = DAG.getNOT(dl, Result, VT);
8786
8787   return Result;
8788 }
8789
8790 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
8791 static bool isX86LogicalCmp(SDValue Op) {
8792   unsigned Opc = Op.getNode()->getOpcode();
8793   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI ||
8794       Opc == X86ISD::SAHF)
8795     return true;
8796   if (Op.getResNo() == 1 &&
8797       (Opc == X86ISD::ADD ||
8798        Opc == X86ISD::SUB ||
8799        Opc == X86ISD::ADC ||
8800        Opc == X86ISD::SBB ||
8801        Opc == X86ISD::SMUL ||
8802        Opc == X86ISD::UMUL ||
8803        Opc == X86ISD::INC ||
8804        Opc == X86ISD::DEC ||
8805        Opc == X86ISD::OR ||
8806        Opc == X86ISD::XOR ||
8807        Opc == X86ISD::AND))
8808     return true;
8809
8810   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8811     return true;
8812
8813   return false;
8814 }
8815
8816 static bool isZero(SDValue V) {
8817   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8818   return C && C->isNullValue();
8819 }
8820
8821 static bool isAllOnes(SDValue V) {
8822   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8823   return C && C->isAllOnesValue();
8824 }
8825
8826 static bool isTruncWithZeroHighBitsInput(SDValue V, SelectionDAG &DAG) {
8827   if (V.getOpcode() != ISD::TRUNCATE)
8828     return false;
8829
8830   SDValue VOp0 = V.getOperand(0);
8831   unsigned InBits = VOp0.getValueSizeInBits();
8832   unsigned Bits = V.getValueSizeInBits();
8833   return DAG.MaskedValueIsZero(VOp0, APInt::getHighBitsSet(InBits,InBits-Bits));
8834 }
8835
8836 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
8837   bool addTest = true;
8838   SDValue Cond  = Op.getOperand(0);
8839   SDValue Op1 = Op.getOperand(1);
8840   SDValue Op2 = Op.getOperand(2);
8841   DebugLoc DL = Op.getDebugLoc();
8842   SDValue CC;
8843
8844   if (Cond.getOpcode() == ISD::SETCC) {
8845     SDValue NewCond = LowerSETCC(Cond, DAG);
8846     if (NewCond.getNode())
8847       Cond = NewCond;
8848   }
8849
8850   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
8851   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
8852   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
8853   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
8854   if (Cond.getOpcode() == X86ISD::SETCC &&
8855       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8856       isZero(Cond.getOperand(1).getOperand(1))) {
8857     SDValue Cmp = Cond.getOperand(1);
8858
8859     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
8860
8861     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
8862         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8863       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
8864
8865       SDValue CmpOp0 = Cmp.getOperand(0);
8866       // Apply further optimizations for special cases
8867       // (select (x != 0), -1, 0) -> neg & sbb
8868       // (select (x == 0), 0, -1) -> neg & sbb
8869       if (ConstantSDNode *YC = dyn_cast<ConstantSDNode>(Y))
8870         if (YC->isNullValue() &&
8871             (isAllOnes(Op1) == (CondCode == X86::COND_NE))) {
8872           SDVTList VTs = DAG.getVTList(CmpOp0.getValueType(), MVT::i32);
8873           SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs,
8874                                     DAG.getConstant(0, CmpOp0.getValueType()),
8875                                     CmpOp0);
8876           SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8877                                     DAG.getConstant(X86::COND_B, MVT::i8),
8878                                     SDValue(Neg.getNode(), 1));
8879           return Res;
8880         }
8881
8882       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8883                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
8884       Cmp = ConvertCmpIfNecessary(Cmp, DAG);
8885
8886       SDValue Res =   // Res = 0 or -1.
8887         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8888                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
8889
8890       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8891         Res = DAG.getNOT(DL, Res, Res.getValueType());
8892
8893       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
8894       if (N2C == 0 || !N2C->isNullValue())
8895         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8896       return Res;
8897     }
8898   }
8899
8900   // Look past (and (setcc_carry (cmp ...)), 1).
8901   if (Cond.getOpcode() == ISD::AND &&
8902       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8903     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
8904     if (C && C->getAPIntValue() == 1)
8905       Cond = Cond.getOperand(0);
8906   }
8907
8908   // If condition flag is set by a X86ISD::CMP, then use it as the condition
8909   // setting operand in place of the X86ISD::SETCC.
8910   unsigned CondOpcode = Cond.getOpcode();
8911   if (CondOpcode == X86ISD::SETCC ||
8912       CondOpcode == X86ISD::SETCC_CARRY) {
8913     CC = Cond.getOperand(0);
8914
8915     SDValue Cmp = Cond.getOperand(1);
8916     unsigned Opc = Cmp.getOpcode();
8917     EVT VT = Op.getValueType();
8918
8919     bool IllegalFPCMov = false;
8920     if (VT.isFloatingPoint() && !VT.isVector() &&
8921         !isScalarFPTypeInSSEReg(VT))  // FPStack?
8922       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
8923
8924     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8925         Opc == X86ISD::BT) { // FIXME
8926       Cond = Cmp;
8927       addTest = false;
8928     }
8929   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
8930              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
8931              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
8932               Cond.getOperand(0).getValueType() != MVT::i8)) {
8933     SDValue LHS = Cond.getOperand(0);
8934     SDValue RHS = Cond.getOperand(1);
8935     unsigned X86Opcode;
8936     unsigned X86Cond;
8937     SDVTList VTs;
8938     switch (CondOpcode) {
8939     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
8940     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
8941     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
8942     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
8943     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
8944     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
8945     default: llvm_unreachable("unexpected overflowing operator");
8946     }
8947     if (CondOpcode == ISD::UMULO)
8948       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
8949                           MVT::i32);
8950     else
8951       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
8952
8953     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
8954
8955     if (CondOpcode == ISD::UMULO)
8956       Cond = X86Op.getValue(2);
8957     else
8958       Cond = X86Op.getValue(1);
8959
8960     CC = DAG.getConstant(X86Cond, MVT::i8);
8961     addTest = false;
8962   }
8963
8964   if (addTest) {
8965     // Look pass the truncate if the high bits are known zero.
8966     if (isTruncWithZeroHighBitsInput(Cond, DAG))
8967         Cond = Cond.getOperand(0);
8968
8969     // We know the result of AND is compared against zero. Try to match
8970     // it to BT.
8971     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
8972       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
8973       if (NewSetCC.getNode()) {
8974         CC = NewSetCC.getOperand(0);
8975         Cond = NewSetCC.getOperand(1);
8976         addTest = false;
8977       }
8978     }
8979   }
8980
8981   if (addTest) {
8982     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8983     Cond = EmitTest(Cond, X86::COND_NE, DAG);
8984   }
8985
8986   // a <  b ? -1 :  0 -> RES = ~setcc_carry
8987   // a <  b ?  0 : -1 -> RES = setcc_carry
8988   // a >= b ? -1 :  0 -> RES = setcc_carry
8989   // a >= b ?  0 : -1 -> RES = ~setcc_carry
8990   if (Cond.getOpcode() == X86ISD::SUB) {
8991     Cond = ConvertCmpIfNecessary(Cond, DAG);
8992     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8993
8994     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8995         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8996       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8997                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8998       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8999         return DAG.getNOT(DL, Res, Res.getValueType());
9000       return Res;
9001     }
9002   }
9003
9004   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
9005   // condition is true.
9006   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
9007   SDValue Ops[] = { Op2, Op1, CC, Cond };
9008   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
9009 }
9010
9011 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
9012 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
9013 // from the AND / OR.
9014 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
9015   Opc = Op.getOpcode();
9016   if (Opc != ISD::OR && Opc != ISD::AND)
9017     return false;
9018   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9019           Op.getOperand(0).hasOneUse() &&
9020           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
9021           Op.getOperand(1).hasOneUse());
9022 }
9023
9024 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
9025 // 1 and that the SETCC node has a single use.
9026 static bool isXor1OfSetCC(SDValue Op) {
9027   if (Op.getOpcode() != ISD::XOR)
9028     return false;
9029   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9030   if (N1C && N1C->getAPIntValue() == 1) {
9031     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9032       Op.getOperand(0).hasOneUse();
9033   }
9034   return false;
9035 }
9036
9037 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
9038   bool addTest = true;
9039   SDValue Chain = Op.getOperand(0);
9040   SDValue Cond  = Op.getOperand(1);
9041   SDValue Dest  = Op.getOperand(2);
9042   DebugLoc dl = Op.getDebugLoc();
9043   SDValue CC;
9044   bool Inverted = false;
9045
9046   if (Cond.getOpcode() == ISD::SETCC) {
9047     // Check for setcc([su]{add,sub,mul}o == 0).
9048     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
9049         isa<ConstantSDNode>(Cond.getOperand(1)) &&
9050         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
9051         Cond.getOperand(0).getResNo() == 1 &&
9052         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
9053          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
9054          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
9055          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
9056          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
9057          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
9058       Inverted = true;
9059       Cond = Cond.getOperand(0);
9060     } else {
9061       SDValue NewCond = LowerSETCC(Cond, DAG);
9062       if (NewCond.getNode())
9063         Cond = NewCond;
9064     }
9065   }
9066 #if 0
9067   // FIXME: LowerXALUO doesn't handle these!!
9068   else if (Cond.getOpcode() == X86ISD::ADD  ||
9069            Cond.getOpcode() == X86ISD::SUB  ||
9070            Cond.getOpcode() == X86ISD::SMUL ||
9071            Cond.getOpcode() == X86ISD::UMUL)
9072     Cond = LowerXALUO(Cond, DAG);
9073 #endif
9074
9075   // Look pass (and (setcc_carry (cmp ...)), 1).
9076   if (Cond.getOpcode() == ISD::AND &&
9077       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9078     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
9079     if (C && C->getAPIntValue() == 1)
9080       Cond = Cond.getOperand(0);
9081   }
9082
9083   // If condition flag is set by a X86ISD::CMP, then use it as the condition
9084   // setting operand in place of the X86ISD::SETCC.
9085   unsigned CondOpcode = Cond.getOpcode();
9086   if (CondOpcode == X86ISD::SETCC ||
9087       CondOpcode == X86ISD::SETCC_CARRY) {
9088     CC = Cond.getOperand(0);
9089
9090     SDValue Cmp = Cond.getOperand(1);
9091     unsigned Opc = Cmp.getOpcode();
9092     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
9093     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
9094       Cond = Cmp;
9095       addTest = false;
9096     } else {
9097       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
9098       default: break;
9099       case X86::COND_O:
9100       case X86::COND_B:
9101         // These can only come from an arithmetic instruction with overflow,
9102         // e.g. SADDO, UADDO.
9103         Cond = Cond.getNode()->getOperand(1);
9104         addTest = false;
9105         break;
9106       }
9107     }
9108   }
9109   CondOpcode = Cond.getOpcode();
9110   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9111       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9112       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9113        Cond.getOperand(0).getValueType() != MVT::i8)) {
9114     SDValue LHS = Cond.getOperand(0);
9115     SDValue RHS = Cond.getOperand(1);
9116     unsigned X86Opcode;
9117     unsigned X86Cond;
9118     SDVTList VTs;
9119     switch (CondOpcode) {
9120     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9121     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9122     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9123     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9124     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9125     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9126     default: llvm_unreachable("unexpected overflowing operator");
9127     }
9128     if (Inverted)
9129       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
9130     if (CondOpcode == ISD::UMULO)
9131       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9132                           MVT::i32);
9133     else
9134       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9135
9136     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
9137
9138     if (CondOpcode == ISD::UMULO)
9139       Cond = X86Op.getValue(2);
9140     else
9141       Cond = X86Op.getValue(1);
9142
9143     CC = DAG.getConstant(X86Cond, MVT::i8);
9144     addTest = false;
9145   } else {
9146     unsigned CondOpc;
9147     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
9148       SDValue Cmp = Cond.getOperand(0).getOperand(1);
9149       if (CondOpc == ISD::OR) {
9150         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
9151         // two branches instead of an explicit OR instruction with a
9152         // separate test.
9153         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9154             isX86LogicalCmp(Cmp)) {
9155           CC = Cond.getOperand(0).getOperand(0);
9156           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9157                               Chain, Dest, CC, Cmp);
9158           CC = Cond.getOperand(1).getOperand(0);
9159           Cond = Cmp;
9160           addTest = false;
9161         }
9162       } else { // ISD::AND
9163         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
9164         // two branches instead of an explicit AND instruction with a
9165         // separate test. However, we only do this if this block doesn't
9166         // have a fall-through edge, because this requires an explicit
9167         // jmp when the condition is false.
9168         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9169             isX86LogicalCmp(Cmp) &&
9170             Op.getNode()->hasOneUse()) {
9171           X86::CondCode CCode =
9172             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9173           CCode = X86::GetOppositeBranchCondition(CCode);
9174           CC = DAG.getConstant(CCode, MVT::i8);
9175           SDNode *User = *Op.getNode()->use_begin();
9176           // Look for an unconditional branch following this conditional branch.
9177           // We need this because we need to reverse the successors in order
9178           // to implement FCMP_OEQ.
9179           if (User->getOpcode() == ISD::BR) {
9180             SDValue FalseBB = User->getOperand(1);
9181             SDNode *NewBR =
9182               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9183             assert(NewBR == User);
9184             (void)NewBR;
9185             Dest = FalseBB;
9186
9187             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9188                                 Chain, Dest, CC, Cmp);
9189             X86::CondCode CCode =
9190               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
9191             CCode = X86::GetOppositeBranchCondition(CCode);
9192             CC = DAG.getConstant(CCode, MVT::i8);
9193             Cond = Cmp;
9194             addTest = false;
9195           }
9196         }
9197       }
9198     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
9199       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
9200       // It should be transformed during dag combiner except when the condition
9201       // is set by a arithmetics with overflow node.
9202       X86::CondCode CCode =
9203         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9204       CCode = X86::GetOppositeBranchCondition(CCode);
9205       CC = DAG.getConstant(CCode, MVT::i8);
9206       Cond = Cond.getOperand(0).getOperand(1);
9207       addTest = false;
9208     } else if (Cond.getOpcode() == ISD::SETCC &&
9209                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
9210       // For FCMP_OEQ, we can emit
9211       // two branches instead of an explicit AND instruction with a
9212       // separate test. However, we only do this if this block doesn't
9213       // have a fall-through edge, because this requires an explicit
9214       // jmp when the condition is false.
9215       if (Op.getNode()->hasOneUse()) {
9216         SDNode *User = *Op.getNode()->use_begin();
9217         // Look for an unconditional branch following this conditional branch.
9218         // We need this because we need to reverse the successors in order
9219         // to implement FCMP_OEQ.
9220         if (User->getOpcode() == ISD::BR) {
9221           SDValue FalseBB = User->getOperand(1);
9222           SDNode *NewBR =
9223             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9224           assert(NewBR == User);
9225           (void)NewBR;
9226           Dest = FalseBB;
9227
9228           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9229                                     Cond.getOperand(0), Cond.getOperand(1));
9230           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
9231           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9232           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9233                               Chain, Dest, CC, Cmp);
9234           CC = DAG.getConstant(X86::COND_P, MVT::i8);
9235           Cond = Cmp;
9236           addTest = false;
9237         }
9238       }
9239     } else if (Cond.getOpcode() == ISD::SETCC &&
9240                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
9241       // For FCMP_UNE, we can emit
9242       // two branches instead of an explicit AND instruction with a
9243       // separate test. However, we only do this if this block doesn't
9244       // have a fall-through edge, because this requires an explicit
9245       // jmp when the condition is false.
9246       if (Op.getNode()->hasOneUse()) {
9247         SDNode *User = *Op.getNode()->use_begin();
9248         // Look for an unconditional branch following this conditional branch.
9249         // We need this because we need to reverse the successors in order
9250         // to implement FCMP_UNE.
9251         if (User->getOpcode() == ISD::BR) {
9252           SDValue FalseBB = User->getOperand(1);
9253           SDNode *NewBR =
9254             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9255           assert(NewBR == User);
9256           (void)NewBR;
9257
9258           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9259                                     Cond.getOperand(0), Cond.getOperand(1));
9260           Cmp = ConvertCmpIfNecessary(Cmp, DAG);
9261           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9262           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9263                               Chain, Dest, CC, Cmp);
9264           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
9265           Cond = Cmp;
9266           addTest = false;
9267           Dest = FalseBB;
9268         }
9269       }
9270     }
9271   }
9272
9273   if (addTest) {
9274     // Look pass the truncate if the high bits are known zero.
9275     if (isTruncWithZeroHighBitsInput(Cond, DAG))
9276         Cond = Cond.getOperand(0);
9277
9278     // We know the result of AND is compared against zero. Try to match
9279     // it to BT.
9280     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
9281       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
9282       if (NewSetCC.getNode()) {
9283         CC = NewSetCC.getOperand(0);
9284         Cond = NewSetCC.getOperand(1);
9285         addTest = false;
9286       }
9287     }
9288   }
9289
9290   if (addTest) {
9291     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9292     Cond = EmitTest(Cond, X86::COND_NE, DAG);
9293   }
9294   Cond = ConvertCmpIfNecessary(Cond, DAG);
9295   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9296                      Chain, Dest, CC, Cond);
9297 }
9298
9299
9300 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
9301 // Calls to _alloca is needed to probe the stack when allocating more than 4k
9302 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
9303 // that the guard pages used by the OS virtual memory manager are allocated in
9304 // correct sequence.
9305 SDValue
9306 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
9307                                            SelectionDAG &DAG) const {
9308   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
9309           getTargetMachine().Options.EnableSegmentedStacks) &&
9310          "This should be used only on Windows targets or when segmented stacks "
9311          "are being used");
9312   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
9313   DebugLoc dl = Op.getDebugLoc();
9314
9315   // Get the inputs.
9316   SDValue Chain = Op.getOperand(0);
9317   SDValue Size  = Op.getOperand(1);
9318   // FIXME: Ensure alignment here
9319
9320   bool Is64Bit = Subtarget->is64Bit();
9321   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
9322
9323   if (getTargetMachine().Options.EnableSegmentedStacks) {
9324     MachineFunction &MF = DAG.getMachineFunction();
9325     MachineRegisterInfo &MRI = MF.getRegInfo();
9326
9327     if (Is64Bit) {
9328       // The 64 bit implementation of segmented stacks needs to clobber both r10
9329       // r11. This makes it impossible to use it along with nested parameters.
9330       const Function *F = MF.getFunction();
9331
9332       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
9333            I != E; ++I)
9334         if (I->hasNestAttr())
9335           report_fatal_error("Cannot use segmented stacks with functions that "
9336                              "have nested arguments.");
9337     }
9338
9339     const TargetRegisterClass *AddrRegClass =
9340       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
9341     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
9342     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
9343     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
9344                                 DAG.getRegister(Vreg, SPTy));
9345     SDValue Ops1[2] = { Value, Chain };
9346     return DAG.getMergeValues(Ops1, 2, dl);
9347   } else {
9348     SDValue Flag;
9349     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
9350
9351     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
9352     Flag = Chain.getValue(1);
9353     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
9354
9355     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
9356     Flag = Chain.getValue(1);
9357
9358     Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
9359
9360     SDValue Ops1[2] = { Chain.getValue(0), Chain };
9361     return DAG.getMergeValues(Ops1, 2, dl);
9362   }
9363 }
9364
9365 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
9366   MachineFunction &MF = DAG.getMachineFunction();
9367   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
9368
9369   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9370   DebugLoc DL = Op.getDebugLoc();
9371
9372   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
9373     // vastart just stores the address of the VarArgsFrameIndex slot into the
9374     // memory location argument.
9375     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9376                                    getPointerTy());
9377     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
9378                         MachinePointerInfo(SV), false, false, 0);
9379   }
9380
9381   // __va_list_tag:
9382   //   gp_offset         (0 - 6 * 8)
9383   //   fp_offset         (48 - 48 + 8 * 16)
9384   //   overflow_arg_area (point to parameters coming in memory).
9385   //   reg_save_area
9386   SmallVector<SDValue, 8> MemOps;
9387   SDValue FIN = Op.getOperand(1);
9388   // Store gp_offset
9389   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
9390                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
9391                                                MVT::i32),
9392                                FIN, MachinePointerInfo(SV), false, false, 0);
9393   MemOps.push_back(Store);
9394
9395   // Store fp_offset
9396   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9397                     FIN, DAG.getIntPtrConstant(4));
9398   Store = DAG.getStore(Op.getOperand(0), DL,
9399                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
9400                                        MVT::i32),
9401                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
9402   MemOps.push_back(Store);
9403
9404   // Store ptr to overflow_arg_area
9405   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9406                     FIN, DAG.getIntPtrConstant(4));
9407   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9408                                     getPointerTy());
9409   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9410                        MachinePointerInfo(SV, 8),
9411                        false, false, 0);
9412   MemOps.push_back(Store);
9413
9414   // Store ptr to reg_save_area.
9415   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9416                     FIN, DAG.getIntPtrConstant(8));
9417   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9418                                     getPointerTy());
9419   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9420                        MachinePointerInfo(SV, 16), false, false, 0);
9421   MemOps.push_back(Store);
9422   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
9423                      &MemOps[0], MemOps.size());
9424 }
9425
9426 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
9427   assert(Subtarget->is64Bit() &&
9428          "LowerVAARG only handles 64-bit va_arg!");
9429   assert((Subtarget->isTargetLinux() ||
9430           Subtarget->isTargetDarwin()) &&
9431           "Unhandled target in LowerVAARG");
9432   assert(Op.getNode()->getNumOperands() == 4);
9433   SDValue Chain = Op.getOperand(0);
9434   SDValue SrcPtr = Op.getOperand(1);
9435   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9436   unsigned Align = Op.getConstantOperandVal(3);
9437   DebugLoc dl = Op.getDebugLoc();
9438
9439   EVT ArgVT = Op.getNode()->getValueType(0);
9440   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
9441   uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9442   uint8_t ArgMode;
9443
9444   // Decide which area this value should be read from.
9445   // TODO: Implement the AMD64 ABI in its entirety. This simple
9446   // selection mechanism works only for the basic types.
9447   if (ArgVT == MVT::f80) {
9448     llvm_unreachable("va_arg for f80 not yet implemented");
9449   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9450     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
9451   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9452     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
9453   } else {
9454     llvm_unreachable("Unhandled argument type in LowerVAARG");
9455   }
9456
9457   if (ArgMode == 2) {
9458     // Sanity Check: Make sure using fp_offset makes sense.
9459     assert(!getTargetMachine().Options.UseSoftFloat &&
9460            !(DAG.getMachineFunction()
9461                 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
9462            Subtarget->hasSSE1());
9463   }
9464
9465   // Insert VAARG_64 node into the DAG
9466   // VAARG_64 returns two values: Variable Argument Address, Chain
9467   SmallVector<SDValue, 11> InstOps;
9468   InstOps.push_back(Chain);
9469   InstOps.push_back(SrcPtr);
9470   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9471   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9472   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9473   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9474   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9475                                           VTs, &InstOps[0], InstOps.size(),
9476                                           MVT::i64,
9477                                           MachinePointerInfo(SV),
9478                                           /*Align=*/0,
9479                                           /*Volatile=*/false,
9480                                           /*ReadMem=*/true,
9481                                           /*WriteMem=*/true);
9482   Chain = VAARG.getValue(1);
9483
9484   // Load the next argument and return it
9485   return DAG.getLoad(ArgVT, dl,
9486                      Chain,
9487                      VAARG,
9488                      MachinePointerInfo(),
9489                      false, false, false, 0);
9490 }
9491
9492 SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
9493   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
9494   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
9495   SDValue Chain = Op.getOperand(0);
9496   SDValue DstPtr = Op.getOperand(1);
9497   SDValue SrcPtr = Op.getOperand(2);
9498   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9499   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
9500   DebugLoc DL = Op.getDebugLoc();
9501
9502   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
9503                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
9504                        false,
9505                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
9506 }
9507
9508 // getTargetVShiftNOde - Handle vector element shifts where the shift amount
9509 // may or may not be a constant. Takes immediate version of shift as input.
9510 static SDValue getTargetVShiftNode(unsigned Opc, DebugLoc dl, EVT VT,
9511                                    SDValue SrcOp, SDValue ShAmt,
9512                                    SelectionDAG &DAG) {
9513   assert(ShAmt.getValueType() == MVT::i32 && "ShAmt is not i32");
9514
9515   if (isa<ConstantSDNode>(ShAmt)) {
9516     // Constant may be a TargetConstant. Use a regular constant.
9517     uint32_t ShiftAmt = cast<ConstantSDNode>(ShAmt)->getZExtValue();
9518     switch (Opc) {
9519       default: llvm_unreachable("Unknown target vector shift node");
9520       case X86ISD::VSHLI:
9521       case X86ISD::VSRLI:
9522       case X86ISD::VSRAI:
9523         return DAG.getNode(Opc, dl, VT, SrcOp,
9524                            DAG.getConstant(ShiftAmt, MVT::i32));
9525     }
9526   }
9527
9528   // Change opcode to non-immediate version
9529   switch (Opc) {
9530     default: llvm_unreachable("Unknown target vector shift node");
9531     case X86ISD::VSHLI: Opc = X86ISD::VSHL; break;
9532     case X86ISD::VSRLI: Opc = X86ISD::VSRL; break;
9533     case X86ISD::VSRAI: Opc = X86ISD::VSRA; break;
9534   }
9535
9536   // Need to build a vector containing shift amount
9537   // Shift amount is 32-bits, but SSE instructions read 64-bit, so fill with 0
9538   SDValue ShOps[4];
9539   ShOps[0] = ShAmt;
9540   ShOps[1] = DAG.getConstant(0, MVT::i32);
9541   ShOps[2] = ShOps[3] = DAG.getUNDEF(MVT::i32);
9542   ShAmt = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, &ShOps[0], 4);
9543
9544   // The return type has to be a 128-bit type with the same element
9545   // type as the input type.
9546   MVT EltVT = VT.getVectorElementType().getSimpleVT();
9547   EVT ShVT = MVT::getVectorVT(EltVT, 128/EltVT.getSizeInBits());
9548
9549   ShAmt = DAG.getNode(ISD::BITCAST, dl, ShVT, ShAmt);
9550   return DAG.getNode(Opc, dl, VT, SrcOp, ShAmt);
9551 }
9552
9553 SDValue
9554 X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
9555   DebugLoc dl = Op.getDebugLoc();
9556   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9557   switch (IntNo) {
9558   default: return SDValue();    // Don't custom lower most intrinsics.
9559   // Comparison intrinsics.
9560   case Intrinsic::x86_sse_comieq_ss:
9561   case Intrinsic::x86_sse_comilt_ss:
9562   case Intrinsic::x86_sse_comile_ss:
9563   case Intrinsic::x86_sse_comigt_ss:
9564   case Intrinsic::x86_sse_comige_ss:
9565   case Intrinsic::x86_sse_comineq_ss:
9566   case Intrinsic::x86_sse_ucomieq_ss:
9567   case Intrinsic::x86_sse_ucomilt_ss:
9568   case Intrinsic::x86_sse_ucomile_ss:
9569   case Intrinsic::x86_sse_ucomigt_ss:
9570   case Intrinsic::x86_sse_ucomige_ss:
9571   case Intrinsic::x86_sse_ucomineq_ss:
9572   case Intrinsic::x86_sse2_comieq_sd:
9573   case Intrinsic::x86_sse2_comilt_sd:
9574   case Intrinsic::x86_sse2_comile_sd:
9575   case Intrinsic::x86_sse2_comigt_sd:
9576   case Intrinsic::x86_sse2_comige_sd:
9577   case Intrinsic::x86_sse2_comineq_sd:
9578   case Intrinsic::x86_sse2_ucomieq_sd:
9579   case Intrinsic::x86_sse2_ucomilt_sd:
9580   case Intrinsic::x86_sse2_ucomile_sd:
9581   case Intrinsic::x86_sse2_ucomigt_sd:
9582   case Intrinsic::x86_sse2_ucomige_sd:
9583   case Intrinsic::x86_sse2_ucomineq_sd: {
9584     unsigned Opc;
9585     ISD::CondCode CC;
9586     switch (IntNo) {
9587     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9588     case Intrinsic::x86_sse_comieq_ss:
9589     case Intrinsic::x86_sse2_comieq_sd:
9590       Opc = X86ISD::COMI;
9591       CC = ISD::SETEQ;
9592       break;
9593     case Intrinsic::x86_sse_comilt_ss:
9594     case Intrinsic::x86_sse2_comilt_sd:
9595       Opc = X86ISD::COMI;
9596       CC = ISD::SETLT;
9597       break;
9598     case Intrinsic::x86_sse_comile_ss:
9599     case Intrinsic::x86_sse2_comile_sd:
9600       Opc = X86ISD::COMI;
9601       CC = ISD::SETLE;
9602       break;
9603     case Intrinsic::x86_sse_comigt_ss:
9604     case Intrinsic::x86_sse2_comigt_sd:
9605       Opc = X86ISD::COMI;
9606       CC = ISD::SETGT;
9607       break;
9608     case Intrinsic::x86_sse_comige_ss:
9609     case Intrinsic::x86_sse2_comige_sd:
9610       Opc = X86ISD::COMI;
9611       CC = ISD::SETGE;
9612       break;
9613     case Intrinsic::x86_sse_comineq_ss:
9614     case Intrinsic::x86_sse2_comineq_sd:
9615       Opc = X86ISD::COMI;
9616       CC = ISD::SETNE;
9617       break;
9618     case Intrinsic::x86_sse_ucomieq_ss:
9619     case Intrinsic::x86_sse2_ucomieq_sd:
9620       Opc = X86ISD::UCOMI;
9621       CC = ISD::SETEQ;
9622       break;
9623     case Intrinsic::x86_sse_ucomilt_ss:
9624     case Intrinsic::x86_sse2_ucomilt_sd:
9625       Opc = X86ISD::UCOMI;
9626       CC = ISD::SETLT;
9627       break;
9628     case Intrinsic::x86_sse_ucomile_ss:
9629     case Intrinsic::x86_sse2_ucomile_sd:
9630       Opc = X86ISD::UCOMI;
9631       CC = ISD::SETLE;
9632       break;
9633     case Intrinsic::x86_sse_ucomigt_ss:
9634     case Intrinsic::x86_sse2_ucomigt_sd:
9635       Opc = X86ISD::UCOMI;
9636       CC = ISD::SETGT;
9637       break;
9638     case Intrinsic::x86_sse_ucomige_ss:
9639     case Intrinsic::x86_sse2_ucomige_sd:
9640       Opc = X86ISD::UCOMI;
9641       CC = ISD::SETGE;
9642       break;
9643     case Intrinsic::x86_sse_ucomineq_ss:
9644     case Intrinsic::x86_sse2_ucomineq_sd:
9645       Opc = X86ISD::UCOMI;
9646       CC = ISD::SETNE;
9647       break;
9648     }
9649
9650     SDValue LHS = Op.getOperand(1);
9651     SDValue RHS = Op.getOperand(2);
9652     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
9653     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
9654     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9655     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9656                                 DAG.getConstant(X86CC, MVT::i8), Cond);
9657     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
9658   }
9659
9660   // Arithmetic intrinsics.
9661   case Intrinsic::x86_sse2_pmulu_dq:
9662   case Intrinsic::x86_avx2_pmulu_dq:
9663     return DAG.getNode(X86ISD::PMULUDQ, dl, Op.getValueType(),
9664                        Op.getOperand(1), Op.getOperand(2));
9665
9666   // SSE3/AVX horizontal add/sub intrinsics
9667   case Intrinsic::x86_sse3_hadd_ps:
9668   case Intrinsic::x86_sse3_hadd_pd:
9669   case Intrinsic::x86_avx_hadd_ps_256:
9670   case Intrinsic::x86_avx_hadd_pd_256:
9671   case Intrinsic::x86_sse3_hsub_ps:
9672   case Intrinsic::x86_sse3_hsub_pd:
9673   case Intrinsic::x86_avx_hsub_ps_256:
9674   case Intrinsic::x86_avx_hsub_pd_256:
9675   case Intrinsic::x86_ssse3_phadd_w_128:
9676   case Intrinsic::x86_ssse3_phadd_d_128:
9677   case Intrinsic::x86_avx2_phadd_w:
9678   case Intrinsic::x86_avx2_phadd_d:
9679   case Intrinsic::x86_ssse3_phsub_w_128:
9680   case Intrinsic::x86_ssse3_phsub_d_128:
9681   case Intrinsic::x86_avx2_phsub_w:
9682   case Intrinsic::x86_avx2_phsub_d: {
9683     unsigned Opcode;
9684     switch (IntNo) {
9685     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9686     case Intrinsic::x86_sse3_hadd_ps:
9687     case Intrinsic::x86_sse3_hadd_pd:
9688     case Intrinsic::x86_avx_hadd_ps_256:
9689     case Intrinsic::x86_avx_hadd_pd_256:
9690       Opcode = X86ISD::FHADD;
9691       break;
9692     case Intrinsic::x86_sse3_hsub_ps:
9693     case Intrinsic::x86_sse3_hsub_pd:
9694     case Intrinsic::x86_avx_hsub_ps_256:
9695     case Intrinsic::x86_avx_hsub_pd_256:
9696       Opcode = X86ISD::FHSUB;
9697       break;
9698     case Intrinsic::x86_ssse3_phadd_w_128:
9699     case Intrinsic::x86_ssse3_phadd_d_128:
9700     case Intrinsic::x86_avx2_phadd_w:
9701     case Intrinsic::x86_avx2_phadd_d:
9702       Opcode = X86ISD::HADD;
9703       break;
9704     case Intrinsic::x86_ssse3_phsub_w_128:
9705     case Intrinsic::x86_ssse3_phsub_d_128:
9706     case Intrinsic::x86_avx2_phsub_w:
9707     case Intrinsic::x86_avx2_phsub_d:
9708       Opcode = X86ISD::HSUB;
9709       break;
9710     }
9711     return DAG.getNode(Opcode, dl, Op.getValueType(),
9712                        Op.getOperand(1), Op.getOperand(2));
9713   }
9714
9715   // AVX2 variable shift intrinsics
9716   case Intrinsic::x86_avx2_psllv_d:
9717   case Intrinsic::x86_avx2_psllv_q:
9718   case Intrinsic::x86_avx2_psllv_d_256:
9719   case Intrinsic::x86_avx2_psllv_q_256:
9720   case Intrinsic::x86_avx2_psrlv_d:
9721   case Intrinsic::x86_avx2_psrlv_q:
9722   case Intrinsic::x86_avx2_psrlv_d_256:
9723   case Intrinsic::x86_avx2_psrlv_q_256:
9724   case Intrinsic::x86_avx2_psrav_d:
9725   case Intrinsic::x86_avx2_psrav_d_256: {
9726     unsigned Opcode;
9727     switch (IntNo) {
9728     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9729     case Intrinsic::x86_avx2_psllv_d:
9730     case Intrinsic::x86_avx2_psllv_q:
9731     case Intrinsic::x86_avx2_psllv_d_256:
9732     case Intrinsic::x86_avx2_psllv_q_256:
9733       Opcode = ISD::SHL;
9734       break;
9735     case Intrinsic::x86_avx2_psrlv_d:
9736     case Intrinsic::x86_avx2_psrlv_q:
9737     case Intrinsic::x86_avx2_psrlv_d_256:
9738     case Intrinsic::x86_avx2_psrlv_q_256:
9739       Opcode = ISD::SRL;
9740       break;
9741     case Intrinsic::x86_avx2_psrav_d:
9742     case Intrinsic::x86_avx2_psrav_d_256:
9743       Opcode = ISD::SRA;
9744       break;
9745     }
9746     return DAG.getNode(Opcode, dl, Op.getValueType(),
9747                        Op.getOperand(1), Op.getOperand(2));
9748   }
9749
9750   case Intrinsic::x86_ssse3_pshuf_b_128:
9751   case Intrinsic::x86_avx2_pshuf_b:
9752     return DAG.getNode(X86ISD::PSHUFB, dl, Op.getValueType(),
9753                        Op.getOperand(1), Op.getOperand(2));
9754
9755   case Intrinsic::x86_ssse3_psign_b_128:
9756   case Intrinsic::x86_ssse3_psign_w_128:
9757   case Intrinsic::x86_ssse3_psign_d_128:
9758   case Intrinsic::x86_avx2_psign_b:
9759   case Intrinsic::x86_avx2_psign_w:
9760   case Intrinsic::x86_avx2_psign_d:
9761     return DAG.getNode(X86ISD::PSIGN, dl, Op.getValueType(),
9762                        Op.getOperand(1), Op.getOperand(2));
9763
9764   case Intrinsic::x86_sse41_insertps:
9765     return DAG.getNode(X86ISD::INSERTPS, dl, Op.getValueType(),
9766                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
9767
9768   case Intrinsic::x86_avx_vperm2f128_ps_256:
9769   case Intrinsic::x86_avx_vperm2f128_pd_256:
9770   case Intrinsic::x86_avx_vperm2f128_si_256:
9771   case Intrinsic::x86_avx2_vperm2i128:
9772     return DAG.getNode(X86ISD::VPERM2X128, dl, Op.getValueType(),
9773                        Op.getOperand(1), Op.getOperand(2), Op.getOperand(3));
9774
9775   case Intrinsic::x86_avx2_permd:
9776   case Intrinsic::x86_avx2_permps:
9777     // Operands intentionally swapped. Mask is last operand to intrinsic,
9778     // but second operand for node/intruction.
9779     return DAG.getNode(X86ISD::VPERMV, dl, Op.getValueType(),
9780                        Op.getOperand(2), Op.getOperand(1));
9781
9782   // ptest and testp intrinsics. The intrinsic these come from are designed to
9783   // return an integer value, not just an instruction so lower it to the ptest
9784   // or testp pattern and a setcc for the result.
9785   case Intrinsic::x86_sse41_ptestz:
9786   case Intrinsic::x86_sse41_ptestc:
9787   case Intrinsic::x86_sse41_ptestnzc:
9788   case Intrinsic::x86_avx_ptestz_256:
9789   case Intrinsic::x86_avx_ptestc_256:
9790   case Intrinsic::x86_avx_ptestnzc_256:
9791   case Intrinsic::x86_avx_vtestz_ps:
9792   case Intrinsic::x86_avx_vtestc_ps:
9793   case Intrinsic::x86_avx_vtestnzc_ps:
9794   case Intrinsic::x86_avx_vtestz_pd:
9795   case Intrinsic::x86_avx_vtestc_pd:
9796   case Intrinsic::x86_avx_vtestnzc_pd:
9797   case Intrinsic::x86_avx_vtestz_ps_256:
9798   case Intrinsic::x86_avx_vtestc_ps_256:
9799   case Intrinsic::x86_avx_vtestnzc_ps_256:
9800   case Intrinsic::x86_avx_vtestz_pd_256:
9801   case Intrinsic::x86_avx_vtestc_pd_256:
9802   case Intrinsic::x86_avx_vtestnzc_pd_256: {
9803     bool IsTestPacked = false;
9804     unsigned X86CC;
9805     switch (IntNo) {
9806     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
9807     case Intrinsic::x86_avx_vtestz_ps:
9808     case Intrinsic::x86_avx_vtestz_pd:
9809     case Intrinsic::x86_avx_vtestz_ps_256:
9810     case Intrinsic::x86_avx_vtestz_pd_256:
9811       IsTestPacked = true; // Fallthrough
9812     case Intrinsic::x86_sse41_ptestz:
9813     case Intrinsic::x86_avx_ptestz_256:
9814       // ZF = 1
9815       X86CC = X86::COND_E;
9816       break;
9817     case Intrinsic::x86_avx_vtestc_ps:
9818     case Intrinsic::x86_avx_vtestc_pd:
9819     case Intrinsic::x86_avx_vtestc_ps_256:
9820     case Intrinsic::x86_avx_vtestc_pd_256:
9821       IsTestPacked = true; // Fallthrough
9822     case Intrinsic::x86_sse41_ptestc:
9823     case Intrinsic::x86_avx_ptestc_256:
9824       // CF = 1
9825       X86CC = X86::COND_B;
9826       break;
9827     case Intrinsic::x86_avx_vtestnzc_ps:
9828     case Intrinsic::x86_avx_vtestnzc_pd:
9829     case Intrinsic::x86_avx_vtestnzc_ps_256:
9830     case Intrinsic::x86_avx_vtestnzc_pd_256:
9831       IsTestPacked = true; // Fallthrough
9832     case Intrinsic::x86_sse41_ptestnzc:
9833     case Intrinsic::x86_avx_ptestnzc_256:
9834       // ZF and CF = 0
9835       X86CC = X86::COND_A;
9836       break;
9837     }
9838
9839     SDValue LHS = Op.getOperand(1);
9840     SDValue RHS = Op.getOperand(2);
9841     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9842     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
9843     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9844     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9845     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
9846   }
9847
9848   // SSE/AVX shift intrinsics
9849   case Intrinsic::x86_sse2_psll_w:
9850   case Intrinsic::x86_sse2_psll_d:
9851   case Intrinsic::x86_sse2_psll_q:
9852   case Intrinsic::x86_avx2_psll_w:
9853   case Intrinsic::x86_avx2_psll_d:
9854   case Intrinsic::x86_avx2_psll_q:
9855   case Intrinsic::x86_sse2_psrl_w:
9856   case Intrinsic::x86_sse2_psrl_d:
9857   case Intrinsic::x86_sse2_psrl_q:
9858   case Intrinsic::x86_avx2_psrl_w:
9859   case Intrinsic::x86_avx2_psrl_d:
9860   case Intrinsic::x86_avx2_psrl_q:
9861   case Intrinsic::x86_sse2_psra_w:
9862   case Intrinsic::x86_sse2_psra_d:
9863   case Intrinsic::x86_avx2_psra_w:
9864   case Intrinsic::x86_avx2_psra_d: {
9865     unsigned Opcode;
9866     switch (IntNo) {
9867     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9868     case Intrinsic::x86_sse2_psll_w:
9869     case Intrinsic::x86_sse2_psll_d:
9870     case Intrinsic::x86_sse2_psll_q:
9871     case Intrinsic::x86_avx2_psll_w:
9872     case Intrinsic::x86_avx2_psll_d:
9873     case Intrinsic::x86_avx2_psll_q:
9874       Opcode = X86ISD::VSHL;
9875       break;
9876     case Intrinsic::x86_sse2_psrl_w:
9877     case Intrinsic::x86_sse2_psrl_d:
9878     case Intrinsic::x86_sse2_psrl_q:
9879     case Intrinsic::x86_avx2_psrl_w:
9880     case Intrinsic::x86_avx2_psrl_d:
9881     case Intrinsic::x86_avx2_psrl_q:
9882       Opcode = X86ISD::VSRL;
9883       break;
9884     case Intrinsic::x86_sse2_psra_w:
9885     case Intrinsic::x86_sse2_psra_d:
9886     case Intrinsic::x86_avx2_psra_w:
9887     case Intrinsic::x86_avx2_psra_d:
9888       Opcode = X86ISD::VSRA;
9889       break;
9890     }
9891     return DAG.getNode(Opcode, dl, Op.getValueType(),
9892                        Op.getOperand(1), Op.getOperand(2));
9893   }
9894
9895   // SSE/AVX immediate shift intrinsics
9896   case Intrinsic::x86_sse2_pslli_w:
9897   case Intrinsic::x86_sse2_pslli_d:
9898   case Intrinsic::x86_sse2_pslli_q:
9899   case Intrinsic::x86_avx2_pslli_w:
9900   case Intrinsic::x86_avx2_pslli_d:
9901   case Intrinsic::x86_avx2_pslli_q:
9902   case Intrinsic::x86_sse2_psrli_w:
9903   case Intrinsic::x86_sse2_psrli_d:
9904   case Intrinsic::x86_sse2_psrli_q:
9905   case Intrinsic::x86_avx2_psrli_w:
9906   case Intrinsic::x86_avx2_psrli_d:
9907   case Intrinsic::x86_avx2_psrli_q:
9908   case Intrinsic::x86_sse2_psrai_w:
9909   case Intrinsic::x86_sse2_psrai_d:
9910   case Intrinsic::x86_avx2_psrai_w:
9911   case Intrinsic::x86_avx2_psrai_d: {
9912     unsigned Opcode;
9913     switch (IntNo) {
9914     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9915     case Intrinsic::x86_sse2_pslli_w:
9916     case Intrinsic::x86_sse2_pslli_d:
9917     case Intrinsic::x86_sse2_pslli_q:
9918     case Intrinsic::x86_avx2_pslli_w:
9919     case Intrinsic::x86_avx2_pslli_d:
9920     case Intrinsic::x86_avx2_pslli_q:
9921       Opcode = X86ISD::VSHLI;
9922       break;
9923     case Intrinsic::x86_sse2_psrli_w:
9924     case Intrinsic::x86_sse2_psrli_d:
9925     case Intrinsic::x86_sse2_psrli_q:
9926     case Intrinsic::x86_avx2_psrli_w:
9927     case Intrinsic::x86_avx2_psrli_d:
9928     case Intrinsic::x86_avx2_psrli_q:
9929       Opcode = X86ISD::VSRLI;
9930       break;
9931     case Intrinsic::x86_sse2_psrai_w:
9932     case Intrinsic::x86_sse2_psrai_d:
9933     case Intrinsic::x86_avx2_psrai_w:
9934     case Intrinsic::x86_avx2_psrai_d:
9935       Opcode = X86ISD::VSRAI;
9936       break;
9937     }
9938     return getTargetVShiftNode(Opcode, dl, Op.getValueType(),
9939                                Op.getOperand(1), Op.getOperand(2), DAG);
9940   }
9941
9942   // Fix vector shift instructions where the last operand is a non-immediate
9943   // i32 value.
9944   case Intrinsic::x86_mmx_pslli_w:
9945   case Intrinsic::x86_mmx_pslli_d:
9946   case Intrinsic::x86_mmx_pslli_q:
9947   case Intrinsic::x86_mmx_psrli_w:
9948   case Intrinsic::x86_mmx_psrli_d:
9949   case Intrinsic::x86_mmx_psrli_q:
9950   case Intrinsic::x86_mmx_psrai_w:
9951   case Intrinsic::x86_mmx_psrai_d: {
9952     SDValue ShAmt = Op.getOperand(2);
9953     if (isa<ConstantSDNode>(ShAmt))
9954       return SDValue();
9955
9956     unsigned NewIntNo;
9957     switch (IntNo) {
9958     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9959     case Intrinsic::x86_mmx_pslli_w:
9960       NewIntNo = Intrinsic::x86_mmx_psll_w;
9961       break;
9962     case Intrinsic::x86_mmx_pslli_d:
9963       NewIntNo = Intrinsic::x86_mmx_psll_d;
9964       break;
9965     case Intrinsic::x86_mmx_pslli_q:
9966       NewIntNo = Intrinsic::x86_mmx_psll_q;
9967       break;
9968     case Intrinsic::x86_mmx_psrli_w:
9969       NewIntNo = Intrinsic::x86_mmx_psrl_w;
9970       break;
9971     case Intrinsic::x86_mmx_psrli_d:
9972       NewIntNo = Intrinsic::x86_mmx_psrl_d;
9973       break;
9974     case Intrinsic::x86_mmx_psrli_q:
9975       NewIntNo = Intrinsic::x86_mmx_psrl_q;
9976       break;
9977     case Intrinsic::x86_mmx_psrai_w:
9978       NewIntNo = Intrinsic::x86_mmx_psra_w;
9979       break;
9980     case Intrinsic::x86_mmx_psrai_d:
9981       NewIntNo = Intrinsic::x86_mmx_psra_d;
9982       break;
9983     }
9984
9985     // The vector shift intrinsics with scalars uses 32b shift amounts but
9986     // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9987     // to be zero.
9988     ShAmt =  DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, ShAmt,
9989                          DAG.getConstant(0, MVT::i32));
9990 // FIXME this must be lowered to get rid of the invalid type.
9991
9992     EVT VT = Op.getValueType();
9993     ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
9994     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9995                        DAG.getConstant(NewIntNo, MVT::i32),
9996                        Op.getOperand(1), ShAmt);
9997   }
9998   case Intrinsic::x86_sse42_pcmpistria128:
9999   case Intrinsic::x86_sse42_pcmpestria128:
10000   case Intrinsic::x86_sse42_pcmpistric128:
10001   case Intrinsic::x86_sse42_pcmpestric128:
10002   case Intrinsic::x86_sse42_pcmpistrio128:
10003   case Intrinsic::x86_sse42_pcmpestrio128:
10004   case Intrinsic::x86_sse42_pcmpistris128:
10005   case Intrinsic::x86_sse42_pcmpestris128:
10006   case Intrinsic::x86_sse42_pcmpistriz128:
10007   case Intrinsic::x86_sse42_pcmpestriz128: {
10008     unsigned Opcode;
10009     unsigned X86CC;
10010     switch (IntNo) {
10011     default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
10012     case Intrinsic::x86_sse42_pcmpistria128:
10013       Opcode = X86ISD::PCMPISTRI;
10014       X86CC = X86::COND_A;
10015       break;
10016     case Intrinsic::x86_sse42_pcmpestria128:
10017       Opcode = X86ISD::PCMPESTRI;
10018       X86CC = X86::COND_A;
10019       break;
10020     case Intrinsic::x86_sse42_pcmpistric128:
10021       Opcode = X86ISD::PCMPISTRI;
10022       X86CC = X86::COND_B;
10023       break;
10024     case Intrinsic::x86_sse42_pcmpestric128:
10025       Opcode = X86ISD::PCMPESTRI;
10026       X86CC = X86::COND_B;
10027       break;
10028     case Intrinsic::x86_sse42_pcmpistrio128:
10029       Opcode = X86ISD::PCMPISTRI;
10030       X86CC = X86::COND_O;
10031       break;
10032     case Intrinsic::x86_sse42_pcmpestrio128:
10033       Opcode = X86ISD::PCMPESTRI;
10034       X86CC = X86::COND_O;
10035       break;
10036     case Intrinsic::x86_sse42_pcmpistris128:
10037       Opcode = X86ISD::PCMPISTRI;
10038       X86CC = X86::COND_S;
10039       break;
10040     case Intrinsic::x86_sse42_pcmpestris128:
10041       Opcode = X86ISD::PCMPESTRI;
10042       X86CC = X86::COND_S;
10043       break;
10044     case Intrinsic::x86_sse42_pcmpistriz128:
10045       Opcode = X86ISD::PCMPISTRI;
10046       X86CC = X86::COND_E;
10047       break;
10048     case Intrinsic::x86_sse42_pcmpestriz128:
10049       Opcode = X86ISD::PCMPESTRI;
10050       X86CC = X86::COND_E;
10051       break;
10052     }
10053     SmallVector<SDValue, 5> NewOps;
10054     NewOps.append(Op->op_begin()+1, Op->op_end());
10055     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10056     SDValue PCMP = DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10057     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
10058                                 DAG.getConstant(X86CC, MVT::i8),
10059                                 SDValue(PCMP.getNode(), 1));
10060     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
10061   }
10062
10063   case Intrinsic::x86_sse42_pcmpistri128:
10064   case Intrinsic::x86_sse42_pcmpestri128: {
10065     unsigned Opcode;
10066     if (IntNo == Intrinsic::x86_sse42_pcmpistri128)
10067       Opcode = X86ISD::PCMPISTRI;
10068     else
10069       Opcode = X86ISD::PCMPESTRI;
10070
10071     SmallVector<SDValue, 5> NewOps;
10072     NewOps.append(Op->op_begin()+1, Op->op_end());
10073     SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
10074     return DAG.getNode(Opcode, dl, VTs, NewOps.data(), NewOps.size());
10075   }
10076   }
10077 }
10078
10079 SDValue
10080 X86TargetLowering::LowerINTRINSIC_W_CHAIN(SDValue Op, SelectionDAG &DAG) const {
10081   DebugLoc dl = Op.getDebugLoc();
10082   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10083   switch (IntNo) {
10084   default: return SDValue();    // Don't custom lower most intrinsics.
10085
10086   // RDRAND intrinsics.
10087   case Intrinsic::x86_rdrand_16:
10088   case Intrinsic::x86_rdrand_32:
10089   case Intrinsic::x86_rdrand_64: {
10090     // Emit the node with the right value type.
10091     SDVTList VTs = DAG.getVTList(Op->getValueType(0), MVT::Glue, MVT::Other);
10092     SDValue Result = DAG.getNode(X86ISD::RDRAND, dl, VTs, Op.getOperand(0));
10093
10094     // If the value returned by RDRAND was valid (CF=1), return 1. Otherwise
10095     // return the value from Rand, which is always 0, casted to i32.
10096     SDValue Ops[] = { DAG.getZExtOrTrunc(Result, dl, Op->getValueType(1)),
10097                       DAG.getConstant(1, Op->getValueType(1)),
10098                       DAG.getConstant(X86::COND_B, MVT::i32),
10099                       SDValue(Result.getNode(), 1) };
10100     SDValue isValid = DAG.getNode(X86ISD::CMOV, dl,
10101                                   DAG.getVTList(Op->getValueType(1), MVT::Glue),
10102                                   Ops, 4);
10103
10104     // Return { result, isValid, chain }.
10105     return DAG.getNode(ISD::MERGE_VALUES, dl, Op->getVTList(), Result, isValid,
10106                        SDValue(Result.getNode(), 2));
10107   }
10108   }
10109 }
10110
10111 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
10112                                            SelectionDAG &DAG) const {
10113   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10114   MFI->setReturnAddressIsTaken(true);
10115
10116   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10117   DebugLoc dl = Op.getDebugLoc();
10118
10119   if (Depth > 0) {
10120     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
10121     SDValue Offset =
10122       DAG.getConstant(TD->getPointerSize(),
10123                       Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
10124     return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
10125                        DAG.getNode(ISD::ADD, dl, getPointerTy(),
10126                                    FrameAddr, Offset),
10127                        MachinePointerInfo(), false, false, false, 0);
10128   }
10129
10130   // Just load the return address.
10131   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
10132   return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
10133                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
10134 }
10135
10136 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
10137   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
10138   MFI->setFrameAddressIsTaken(true);
10139
10140   EVT VT = Op.getValueType();
10141   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
10142   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
10143   unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
10144   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
10145   while (Depth--)
10146     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
10147                             MachinePointerInfo(),
10148                             false, false, false, 0);
10149   return FrameAddr;
10150 }
10151
10152 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
10153                                                      SelectionDAG &DAG) const {
10154   return DAG.getIntPtrConstant(2*TD->getPointerSize());
10155 }
10156
10157 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
10158   SDValue Chain     = Op.getOperand(0);
10159   SDValue Offset    = Op.getOperand(1);
10160   SDValue Handler   = Op.getOperand(2);
10161   DebugLoc dl       = Op.getDebugLoc();
10162
10163   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
10164                                      Subtarget->is64Bit() ? X86::RBP : X86::EBP,
10165                                      getPointerTy());
10166   unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
10167
10168   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
10169                                   DAG.getIntPtrConstant(TD->getPointerSize()));
10170   StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
10171   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
10172                        false, false, 0);
10173   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
10174
10175   return DAG.getNode(X86ISD::EH_RETURN, dl,
10176                      MVT::Other,
10177                      Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
10178 }
10179
10180 SDValue X86TargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
10181                                                   SelectionDAG &DAG) const {
10182   return Op.getOperand(0);
10183 }
10184
10185 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
10186                                                 SelectionDAG &DAG) const {
10187   SDValue Root = Op.getOperand(0);
10188   SDValue Trmp = Op.getOperand(1); // trampoline
10189   SDValue FPtr = Op.getOperand(2); // nested function
10190   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
10191   DebugLoc dl  = Op.getDebugLoc();
10192
10193   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
10194
10195   if (Subtarget->is64Bit()) {
10196     SDValue OutChains[6];
10197
10198     // Large code-model.
10199     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
10200     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
10201
10202     const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
10203     const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
10204
10205     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
10206
10207     // Load the pointer to the nested function into R11.
10208     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
10209     SDValue Addr = Trmp;
10210     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10211                                 Addr, MachinePointerInfo(TrmpAddr),
10212                                 false, false, 0);
10213
10214     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10215                        DAG.getConstant(2, MVT::i64));
10216     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
10217                                 MachinePointerInfo(TrmpAddr, 2),
10218                                 false, false, 2);
10219
10220     // Load the 'nest' parameter value into R10.
10221     // R10 is specified in X86CallingConv.td
10222     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
10223     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10224                        DAG.getConstant(10, MVT::i64));
10225     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10226                                 Addr, MachinePointerInfo(TrmpAddr, 10),
10227                                 false, false, 0);
10228
10229     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10230                        DAG.getConstant(12, MVT::i64));
10231     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
10232                                 MachinePointerInfo(TrmpAddr, 12),
10233                                 false, false, 2);
10234
10235     // Jump to the nested function.
10236     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
10237     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10238                        DAG.getConstant(20, MVT::i64));
10239     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
10240                                 Addr, MachinePointerInfo(TrmpAddr, 20),
10241                                 false, false, 0);
10242
10243     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
10244     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
10245                        DAG.getConstant(22, MVT::i64));
10246     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
10247                                 MachinePointerInfo(TrmpAddr, 22),
10248                                 false, false, 0);
10249
10250     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
10251   } else {
10252     const Function *Func =
10253       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
10254     CallingConv::ID CC = Func->getCallingConv();
10255     unsigned NestReg;
10256
10257     switch (CC) {
10258     default:
10259       llvm_unreachable("Unsupported calling convention");
10260     case CallingConv::C:
10261     case CallingConv::X86_StdCall: {
10262       // Pass 'nest' parameter in ECX.
10263       // Must be kept in sync with X86CallingConv.td
10264       NestReg = X86::ECX;
10265
10266       // Check that ECX wasn't needed by an 'inreg' parameter.
10267       FunctionType *FTy = Func->getFunctionType();
10268       const AttrListPtr &Attrs = Func->getAttributes();
10269
10270       if (!Attrs.isEmpty() && !Func->isVarArg()) {
10271         unsigned InRegCount = 0;
10272         unsigned Idx = 1;
10273
10274         for (FunctionType::param_iterator I = FTy->param_begin(),
10275              E = FTy->param_end(); I != E; ++I, ++Idx)
10276           if (Attrs.paramHasAttr(Idx, Attribute::InReg))
10277             // FIXME: should only count parameters that are lowered to integers.
10278             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
10279
10280         if (InRegCount > 2) {
10281           report_fatal_error("Nest register in use - reduce number of inreg"
10282                              " parameters!");
10283         }
10284       }
10285       break;
10286     }
10287     case CallingConv::X86_FastCall:
10288     case CallingConv::X86_ThisCall:
10289     case CallingConv::Fast:
10290       // Pass 'nest' parameter in EAX.
10291       // Must be kept in sync with X86CallingConv.td
10292       NestReg = X86::EAX;
10293       break;
10294     }
10295
10296     SDValue OutChains[4];
10297     SDValue Addr, Disp;
10298
10299     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10300                        DAG.getConstant(10, MVT::i32));
10301     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
10302
10303     // This is storing the opcode for MOV32ri.
10304     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
10305     const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
10306     OutChains[0] = DAG.getStore(Root, dl,
10307                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
10308                                 Trmp, MachinePointerInfo(TrmpAddr),
10309                                 false, false, 0);
10310
10311     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10312                        DAG.getConstant(1, MVT::i32));
10313     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
10314                                 MachinePointerInfo(TrmpAddr, 1),
10315                                 false, false, 1);
10316
10317     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
10318     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10319                        DAG.getConstant(5, MVT::i32));
10320     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
10321                                 MachinePointerInfo(TrmpAddr, 5),
10322                                 false, false, 1);
10323
10324     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10325                        DAG.getConstant(6, MVT::i32));
10326     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
10327                                 MachinePointerInfo(TrmpAddr, 6),
10328                                 false, false, 1);
10329
10330     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
10331   }
10332 }
10333
10334 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
10335                                             SelectionDAG &DAG) const {
10336   /*
10337    The rounding mode is in bits 11:10 of FPSR, and has the following
10338    settings:
10339      00 Round to nearest
10340      01 Round to -inf
10341      10 Round to +inf
10342      11 Round to 0
10343
10344   FLT_ROUNDS, on the other hand, expects the following:
10345     -1 Undefined
10346      0 Round to 0
10347      1 Round to nearest
10348      2 Round to +inf
10349      3 Round to -inf
10350
10351   To perform the conversion, we do:
10352     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
10353   */
10354
10355   MachineFunction &MF = DAG.getMachineFunction();
10356   const TargetMachine &TM = MF.getTarget();
10357   const TargetFrameLowering &TFI = *TM.getFrameLowering();
10358   unsigned StackAlignment = TFI.getStackAlignment();
10359   EVT VT = Op.getValueType();
10360   DebugLoc DL = Op.getDebugLoc();
10361
10362   // Save FP Control Word to stack slot
10363   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
10364   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10365
10366
10367   MachineMemOperand *MMO =
10368    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10369                            MachineMemOperand::MOStore, 2, 2);
10370
10371   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
10372   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
10373                                           DAG.getVTList(MVT::Other),
10374                                           Ops, 2, MVT::i16, MMO);
10375
10376   // Load FP Control Word from stack slot
10377   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
10378                             MachinePointerInfo(), false, false, false, 0);
10379
10380   // Transform as necessary
10381   SDValue CWD1 =
10382     DAG.getNode(ISD::SRL, DL, MVT::i16,
10383                 DAG.getNode(ISD::AND, DL, MVT::i16,
10384                             CWD, DAG.getConstant(0x800, MVT::i16)),
10385                 DAG.getConstant(11, MVT::i8));
10386   SDValue CWD2 =
10387     DAG.getNode(ISD::SRL, DL, MVT::i16,
10388                 DAG.getNode(ISD::AND, DL, MVT::i16,
10389                             CWD, DAG.getConstant(0x400, MVT::i16)),
10390                 DAG.getConstant(9, MVT::i8));
10391
10392   SDValue RetVal =
10393     DAG.getNode(ISD::AND, DL, MVT::i16,
10394                 DAG.getNode(ISD::ADD, DL, MVT::i16,
10395                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
10396                             DAG.getConstant(1, MVT::i16)),
10397                 DAG.getConstant(3, MVT::i16));
10398
10399
10400   return DAG.getNode((VT.getSizeInBits() < 16 ?
10401                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
10402 }
10403
10404 SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
10405   EVT VT = Op.getValueType();
10406   EVT OpVT = VT;
10407   unsigned NumBits = VT.getSizeInBits();
10408   DebugLoc dl = Op.getDebugLoc();
10409
10410   Op = Op.getOperand(0);
10411   if (VT == MVT::i8) {
10412     // Zero extend to i32 since there is not an i8 bsr.
10413     OpVT = MVT::i32;
10414     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10415   }
10416
10417   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
10418   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10419   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
10420
10421   // If src is zero (i.e. bsr sets ZF), returns NumBits.
10422   SDValue Ops[] = {
10423     Op,
10424     DAG.getConstant(NumBits+NumBits-1, OpVT),
10425     DAG.getConstant(X86::COND_E, MVT::i8),
10426     Op.getValue(1)
10427   };
10428   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
10429
10430   // Finally xor with NumBits-1.
10431   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
10432
10433   if (VT == MVT::i8)
10434     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10435   return Op;
10436 }
10437
10438 SDValue X86TargetLowering::LowerCTLZ_ZERO_UNDEF(SDValue Op,
10439                                                 SelectionDAG &DAG) const {
10440   EVT VT = Op.getValueType();
10441   EVT OpVT = VT;
10442   unsigned NumBits = VT.getSizeInBits();
10443   DebugLoc dl = Op.getDebugLoc();
10444
10445   Op = Op.getOperand(0);
10446   if (VT == MVT::i8) {
10447     // Zero extend to i32 since there is not an i8 bsr.
10448     OpVT = MVT::i32;
10449     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10450   }
10451
10452   // Issue a bsr (scan bits in reverse).
10453   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10454   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
10455
10456   // And xor with NumBits-1.
10457   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
10458
10459   if (VT == MVT::i8)
10460     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10461   return Op;
10462 }
10463
10464 SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
10465   EVT VT = Op.getValueType();
10466   unsigned NumBits = VT.getSizeInBits();
10467   DebugLoc dl = Op.getDebugLoc();
10468   Op = Op.getOperand(0);
10469
10470   // Issue a bsf (scan bits forward) which also sets EFLAGS.
10471   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
10472   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
10473
10474   // If src is zero (i.e. bsf sets ZF), returns NumBits.
10475   SDValue Ops[] = {
10476     Op,
10477     DAG.getConstant(NumBits, VT),
10478     DAG.getConstant(X86::COND_E, MVT::i8),
10479     Op.getValue(1)
10480   };
10481   return DAG.getNode(X86ISD::CMOV, dl, VT, Ops, array_lengthof(Ops));
10482 }
10483
10484 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
10485 // ones, and then concatenate the result back.
10486 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
10487   EVT VT = Op.getValueType();
10488
10489   assert(VT.is256BitVector() && VT.isInteger() &&
10490          "Unsupported value type for operation");
10491
10492   unsigned NumElems = VT.getVectorNumElements();
10493   DebugLoc dl = Op.getDebugLoc();
10494
10495   // Extract the LHS vectors
10496   SDValue LHS = Op.getOperand(0);
10497   SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
10498   SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
10499
10500   // Extract the RHS vectors
10501   SDValue RHS = Op.getOperand(1);
10502   SDValue RHS1 = Extract128BitVector(RHS, 0, DAG, dl);
10503   SDValue RHS2 = Extract128BitVector(RHS, NumElems/2, DAG, dl);
10504
10505   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10506   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10507
10508   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10509                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
10510                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
10511 }
10512
10513 SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
10514   assert(Op.getValueType().is256BitVector() &&
10515          Op.getValueType().isInteger() &&
10516          "Only handle AVX 256-bit vector integer operation");
10517   return Lower256IntArith(Op, DAG);
10518 }
10519
10520 SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
10521   assert(Op.getValueType().is256BitVector() &&
10522          Op.getValueType().isInteger() &&
10523          "Only handle AVX 256-bit vector integer operation");
10524   return Lower256IntArith(Op, DAG);
10525 }
10526
10527 SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
10528   EVT VT = Op.getValueType();
10529
10530   // Decompose 256-bit ops into smaller 128-bit ops.
10531   if (VT.is256BitVector() && !Subtarget->hasAVX2())
10532     return Lower256IntArith(Op, DAG);
10533
10534   assert((VT == MVT::v2i64 || VT == MVT::v4i64) &&
10535          "Only know how to lower V2I64/V4I64 multiply");
10536
10537   DebugLoc dl = Op.getDebugLoc();
10538
10539   //  Ahi = psrlqi(a, 32);
10540   //  Bhi = psrlqi(b, 32);
10541   //
10542   //  AloBlo = pmuludq(a, b);
10543   //  AloBhi = pmuludq(a, Bhi);
10544   //  AhiBlo = pmuludq(Ahi, b);
10545
10546   //  AloBhi = psllqi(AloBhi, 32);
10547   //  AhiBlo = psllqi(AhiBlo, 32);
10548   //  return AloBlo + AloBhi + AhiBlo;
10549
10550   SDValue A = Op.getOperand(0);
10551   SDValue B = Op.getOperand(1);
10552
10553   SDValue ShAmt = DAG.getConstant(32, MVT::i32);
10554
10555   SDValue Ahi = DAG.getNode(X86ISD::VSRLI, dl, VT, A, ShAmt);
10556   SDValue Bhi = DAG.getNode(X86ISD::VSRLI, dl, VT, B, ShAmt);
10557
10558   // Bit cast to 32-bit vectors for MULUDQ
10559   EVT MulVT = (VT == MVT::v2i64) ? MVT::v4i32 : MVT::v8i32;
10560   A = DAG.getNode(ISD::BITCAST, dl, MulVT, A);
10561   B = DAG.getNode(ISD::BITCAST, dl, MulVT, B);
10562   Ahi = DAG.getNode(ISD::BITCAST, dl, MulVT, Ahi);
10563   Bhi = DAG.getNode(ISD::BITCAST, dl, MulVT, Bhi);
10564
10565   SDValue AloBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, B);
10566   SDValue AloBhi = DAG.getNode(X86ISD::PMULUDQ, dl, VT, A, Bhi);
10567   SDValue AhiBlo = DAG.getNode(X86ISD::PMULUDQ, dl, VT, Ahi, B);
10568
10569   AloBhi = DAG.getNode(X86ISD::VSHLI, dl, VT, AloBhi, ShAmt);
10570   AhiBlo = DAG.getNode(X86ISD::VSHLI, dl, VT, AhiBlo, ShAmt);
10571
10572   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
10573   return DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
10574 }
10575
10576 SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
10577
10578   EVT VT = Op.getValueType();
10579   DebugLoc dl = Op.getDebugLoc();
10580   SDValue R = Op.getOperand(0);
10581   SDValue Amt = Op.getOperand(1);
10582   LLVMContext *Context = DAG.getContext();
10583
10584   if (!Subtarget->hasSSE2())
10585     return SDValue();
10586
10587   // Optimize shl/srl/sra with constant shift amount.
10588   if (isSplatVector(Amt.getNode())) {
10589     SDValue SclrAmt = Amt->getOperand(0);
10590     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
10591       uint64_t ShiftAmt = C->getZExtValue();
10592
10593       if (VT == MVT::v2i64 || VT == MVT::v4i32 || VT == MVT::v8i16 ||
10594           (Subtarget->hasAVX2() &&
10595            (VT == MVT::v4i64 || VT == MVT::v8i32 || VT == MVT::v16i16))) {
10596         if (Op.getOpcode() == ISD::SHL)
10597           return DAG.getNode(X86ISD::VSHLI, dl, VT, R,
10598                              DAG.getConstant(ShiftAmt, MVT::i32));
10599         if (Op.getOpcode() == ISD::SRL)
10600           return DAG.getNode(X86ISD::VSRLI, dl, VT, R,
10601                              DAG.getConstant(ShiftAmt, MVT::i32));
10602         if (Op.getOpcode() == ISD::SRA && VT != MVT::v2i64 && VT != MVT::v4i64)
10603           return DAG.getNode(X86ISD::VSRAI, dl, VT, R,
10604                              DAG.getConstant(ShiftAmt, MVT::i32));
10605       }
10606
10607       if (VT == MVT::v16i8) {
10608         if (Op.getOpcode() == ISD::SHL) {
10609           // Make a large shift.
10610           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, R,
10611                                     DAG.getConstant(ShiftAmt, MVT::i32));
10612           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
10613           // Zero out the rightmost bits.
10614           SmallVector<SDValue, 16> V(16,
10615                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
10616                                                      MVT::i8));
10617           return DAG.getNode(ISD::AND, dl, VT, SHL,
10618                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10619         }
10620         if (Op.getOpcode() == ISD::SRL) {
10621           // Make a large shift.
10622           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v8i16, R,
10623                                     DAG.getConstant(ShiftAmt, MVT::i32));
10624           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
10625           // Zero out the leftmost bits.
10626           SmallVector<SDValue, 16> V(16,
10627                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10628                                                      MVT::i8));
10629           return DAG.getNode(ISD::AND, dl, VT, SRL,
10630                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10631         }
10632         if (Op.getOpcode() == ISD::SRA) {
10633           if (ShiftAmt == 7) {
10634             // R s>> 7  ===  R s< 0
10635             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
10636             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
10637           }
10638
10639           // R s>> a === ((R u>> a) ^ m) - m
10640           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10641           SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
10642                                                          MVT::i8));
10643           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
10644           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10645           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10646           return Res;
10647         }
10648         llvm_unreachable("Unknown shift opcode.");
10649       }
10650
10651       if (Subtarget->hasAVX2() && VT == MVT::v32i8) {
10652         if (Op.getOpcode() == ISD::SHL) {
10653           // Make a large shift.
10654           SDValue SHL = DAG.getNode(X86ISD::VSHLI, dl, MVT::v16i16, R,
10655                                     DAG.getConstant(ShiftAmt, MVT::i32));
10656           SHL = DAG.getNode(ISD::BITCAST, dl, VT, SHL);
10657           // Zero out the rightmost bits.
10658           SmallVector<SDValue, 32> V(32,
10659                                      DAG.getConstant(uint8_t(-1U << ShiftAmt),
10660                                                      MVT::i8));
10661           return DAG.getNode(ISD::AND, dl, VT, SHL,
10662                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
10663         }
10664         if (Op.getOpcode() == ISD::SRL) {
10665           // Make a large shift.
10666           SDValue SRL = DAG.getNode(X86ISD::VSRLI, dl, MVT::v16i16, R,
10667                                     DAG.getConstant(ShiftAmt, MVT::i32));
10668           SRL = DAG.getNode(ISD::BITCAST, dl, VT, SRL);
10669           // Zero out the leftmost bits.
10670           SmallVector<SDValue, 32> V(32,
10671                                      DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10672                                                      MVT::i8));
10673           return DAG.getNode(ISD::AND, dl, VT, SRL,
10674                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
10675         }
10676         if (Op.getOpcode() == ISD::SRA) {
10677           if (ShiftAmt == 7) {
10678             // R s>> 7  ===  R s< 0
10679             SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
10680             return DAG.getNode(X86ISD::PCMPGT, dl, VT, Zeros, R);
10681           }
10682
10683           // R s>> a === ((R u>> a) ^ m) - m
10684           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10685           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
10686                                                          MVT::i8));
10687           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
10688           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10689           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10690           return Res;
10691         }
10692         llvm_unreachable("Unknown shift opcode.");
10693       }
10694     }
10695   }
10696
10697   // Lower SHL with variable shift amount.
10698   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
10699     Op = DAG.getNode(X86ISD::VSHLI, dl, VT, Op.getOperand(1),
10700                      DAG.getConstant(23, MVT::i32));
10701
10702     const uint32_t CV[] = { 0x3f800000U, 0x3f800000U, 0x3f800000U, 0x3f800000U};
10703     Constant *C = ConstantDataVector::get(*Context, CV);
10704     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
10705     SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
10706                                  MachinePointerInfo::getConstantPool(),
10707                                  false, false, false, 16);
10708
10709     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
10710     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
10711     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
10712     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
10713   }
10714   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
10715     assert(Subtarget->hasSSE2() && "Need SSE2 for pslli/pcmpeq.");
10716
10717     // a = a << 5;
10718     Op = DAG.getNode(X86ISD::VSHLI, dl, MVT::v8i16, Op.getOperand(1),
10719                      DAG.getConstant(5, MVT::i32));
10720     Op = DAG.getNode(ISD::BITCAST, dl, VT, Op);
10721
10722     // Turn 'a' into a mask suitable for VSELECT
10723     SDValue VSelM = DAG.getConstant(0x80, VT);
10724     SDValue OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10725     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
10726
10727     SDValue CM1 = DAG.getConstant(0x0f, VT);
10728     SDValue CM2 = DAG.getConstant(0x3f, VT);
10729
10730     // r = VSELECT(r, psllw(r & (char16)15, 4), a);
10731     SDValue M = DAG.getNode(ISD::AND, dl, VT, R, CM1);
10732     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
10733                             DAG.getConstant(4, MVT::i32), DAG);
10734     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
10735     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
10736
10737     // a += a
10738     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
10739     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10740     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
10741
10742     // r = VSELECT(r, psllw(r & (char16)63, 2), a);
10743     M = DAG.getNode(ISD::AND, dl, VT, R, CM2);
10744     M = getTargetVShiftNode(X86ISD::VSHLI, dl, MVT::v8i16, M,
10745                             DAG.getConstant(2, MVT::i32), DAG);
10746     M = DAG.getNode(ISD::BITCAST, dl, VT, M);
10747     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel, M, R);
10748
10749     // a += a
10750     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
10751     OpVSel = DAG.getNode(ISD::AND, dl, VT, VSelM, Op);
10752     OpVSel = DAG.getNode(X86ISD::PCMPEQ, dl, VT, OpVSel, VSelM);
10753
10754     // return VSELECT(r, r+r, a);
10755     R = DAG.getNode(ISD::VSELECT, dl, VT, OpVSel,
10756                     DAG.getNode(ISD::ADD, dl, VT, R, R), R);
10757     return R;
10758   }
10759
10760   // Decompose 256-bit shifts into smaller 128-bit shifts.
10761   if (VT.is256BitVector()) {
10762     unsigned NumElems = VT.getVectorNumElements();
10763     MVT EltVT = VT.getVectorElementType().getSimpleVT();
10764     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10765
10766     // Extract the two vectors
10767     SDValue V1 = Extract128BitVector(R, 0, DAG, dl);
10768     SDValue V2 = Extract128BitVector(R, NumElems/2, DAG, dl);
10769
10770     // Recreate the shift amount vectors
10771     SDValue Amt1, Amt2;
10772     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
10773       // Constant shift amount
10774       SmallVector<SDValue, 4> Amt1Csts;
10775       SmallVector<SDValue, 4> Amt2Csts;
10776       for (unsigned i = 0; i != NumElems/2; ++i)
10777         Amt1Csts.push_back(Amt->getOperand(i));
10778       for (unsigned i = NumElems/2; i != NumElems; ++i)
10779         Amt2Csts.push_back(Amt->getOperand(i));
10780
10781       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10782                                  &Amt1Csts[0], NumElems/2);
10783       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10784                                  &Amt2Csts[0], NumElems/2);
10785     } else {
10786       // Variable shift amount
10787       Amt1 = Extract128BitVector(Amt, 0, DAG, dl);
10788       Amt2 = Extract128BitVector(Amt, NumElems/2, DAG, dl);
10789     }
10790
10791     // Issue new vector shifts for the smaller types
10792     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
10793     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
10794
10795     // Concatenate the result back
10796     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
10797   }
10798
10799   return SDValue();
10800 }
10801
10802 SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
10803   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
10804   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
10805   // looks for this combo and may remove the "setcc" instruction if the "setcc"
10806   // has only one use.
10807   SDNode *N = Op.getNode();
10808   SDValue LHS = N->getOperand(0);
10809   SDValue RHS = N->getOperand(1);
10810   unsigned BaseOp = 0;
10811   unsigned Cond = 0;
10812   DebugLoc DL = Op.getDebugLoc();
10813   switch (Op.getOpcode()) {
10814   default: llvm_unreachable("Unknown ovf instruction!");
10815   case ISD::SADDO:
10816     // A subtract of one will be selected as a INC. Note that INC doesn't
10817     // set CF, so we can't do this for UADDO.
10818     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10819       if (C->isOne()) {
10820         BaseOp = X86ISD::INC;
10821         Cond = X86::COND_O;
10822         break;
10823       }
10824     BaseOp = X86ISD::ADD;
10825     Cond = X86::COND_O;
10826     break;
10827   case ISD::UADDO:
10828     BaseOp = X86ISD::ADD;
10829     Cond = X86::COND_B;
10830     break;
10831   case ISD::SSUBO:
10832     // A subtract of one will be selected as a DEC. Note that DEC doesn't
10833     // set CF, so we can't do this for USUBO.
10834     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10835       if (C->isOne()) {
10836         BaseOp = X86ISD::DEC;
10837         Cond = X86::COND_O;
10838         break;
10839       }
10840     BaseOp = X86ISD::SUB;
10841     Cond = X86::COND_O;
10842     break;
10843   case ISD::USUBO:
10844     BaseOp = X86ISD::SUB;
10845     Cond = X86::COND_B;
10846     break;
10847   case ISD::SMULO:
10848     BaseOp = X86ISD::SMUL;
10849     Cond = X86::COND_O;
10850     break;
10851   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
10852     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
10853                                  MVT::i32);
10854     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
10855
10856     SDValue SetCC =
10857       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10858                   DAG.getConstant(X86::COND_O, MVT::i32),
10859                   SDValue(Sum.getNode(), 2));
10860
10861     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
10862   }
10863   }
10864
10865   // Also sets EFLAGS.
10866   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
10867   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
10868
10869   SDValue SetCC =
10870     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
10871                 DAG.getConstant(Cond, MVT::i32),
10872                 SDValue(Sum.getNode(), 1));
10873
10874   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
10875 }
10876
10877 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op,
10878                                                   SelectionDAG &DAG) const {
10879   DebugLoc dl = Op.getDebugLoc();
10880   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
10881   EVT VT = Op.getValueType();
10882
10883   if (!Subtarget->hasSSE2() || !VT.isVector())
10884     return SDValue();
10885
10886   unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
10887                       ExtraVT.getScalarType().getSizeInBits();
10888   SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
10889
10890   switch (VT.getSimpleVT().SimpleTy) {
10891     default: return SDValue();
10892     case MVT::v8i32:
10893     case MVT::v16i16:
10894       if (!Subtarget->hasAVX())
10895         return SDValue();
10896       if (!Subtarget->hasAVX2()) {
10897         // needs to be split
10898         unsigned NumElems = VT.getVectorNumElements();
10899
10900         // Extract the LHS vectors
10901         SDValue LHS = Op.getOperand(0);
10902         SDValue LHS1 = Extract128BitVector(LHS, 0, DAG, dl);
10903         SDValue LHS2 = Extract128BitVector(LHS, NumElems/2, DAG, dl);
10904
10905         MVT EltVT = VT.getVectorElementType().getSimpleVT();
10906         EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10907
10908         EVT ExtraEltVT = ExtraVT.getVectorElementType();
10909         unsigned ExtraNumElems = ExtraVT.getVectorNumElements();
10910         ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
10911                                    ExtraNumElems/2);
10912         SDValue Extra = DAG.getValueType(ExtraVT);
10913
10914         LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
10915         LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
10916
10917         return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);;
10918       }
10919       // fall through
10920     case MVT::v4i32:
10921     case MVT::v8i16: {
10922       SDValue Tmp1 = getTargetVShiftNode(X86ISD::VSHLI, dl, VT,
10923                                          Op.getOperand(0), ShAmt, DAG);
10924       return getTargetVShiftNode(X86ISD::VSRAI, dl, VT, Tmp1, ShAmt, DAG);
10925     }
10926   }
10927 }
10928
10929
10930 SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10931   DebugLoc dl = Op.getDebugLoc();
10932
10933   // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10934   // There isn't any reason to disable it if the target processor supports it.
10935   if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
10936     SDValue Chain = Op.getOperand(0);
10937     SDValue Zero = DAG.getConstant(0, MVT::i32);
10938     SDValue Ops[] = {
10939       DAG.getRegister(X86::ESP, MVT::i32), // Base
10940       DAG.getTargetConstant(1, MVT::i8),   // Scale
10941       DAG.getRegister(0, MVT::i32),        // Index
10942       DAG.getTargetConstant(0, MVT::i32),  // Disp
10943       DAG.getRegister(0, MVT::i32),        // Segment.
10944       Zero,
10945       Chain
10946     };
10947     SDNode *Res =
10948       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10949                           array_lengthof(Ops));
10950     return SDValue(Res, 0);
10951   }
10952
10953   unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
10954   if (!isDev)
10955     return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10956
10957   unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10958   unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10959   unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10960   unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
10961
10962   // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10963   if (!Op1 && !Op2 && !Op3 && Op4)
10964     return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
10965
10966   // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10967   if (Op1 && !Op2 && !Op3 && !Op4)
10968     return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
10969
10970   // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
10971   //           (MFENCE)>;
10972   return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10973 }
10974
10975 SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10976                                              SelectionDAG &DAG) const {
10977   DebugLoc dl = Op.getDebugLoc();
10978   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10979     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10980   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10981     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10982
10983   // The only fence that needs an instruction is a sequentially-consistent
10984   // cross-thread fence.
10985   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10986     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10987     // no-sse2). There isn't any reason to disable it if the target processor
10988     // supports it.
10989     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
10990       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10991
10992     SDValue Chain = Op.getOperand(0);
10993     SDValue Zero = DAG.getConstant(0, MVT::i32);
10994     SDValue Ops[] = {
10995       DAG.getRegister(X86::ESP, MVT::i32), // Base
10996       DAG.getTargetConstant(1, MVT::i8),   // Scale
10997       DAG.getRegister(0, MVT::i32),        // Index
10998       DAG.getTargetConstant(0, MVT::i32),  // Disp
10999       DAG.getRegister(0, MVT::i32),        // Segment.
11000       Zero,
11001       Chain
11002     };
11003     SDNode *Res =
11004       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
11005                          array_lengthof(Ops));
11006     return SDValue(Res, 0);
11007   }
11008
11009   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
11010   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
11011 }
11012
11013
11014 SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
11015   EVT T = Op.getValueType();
11016   DebugLoc DL = Op.getDebugLoc();
11017   unsigned Reg = 0;
11018   unsigned size = 0;
11019   switch(T.getSimpleVT().SimpleTy) {
11020   default: llvm_unreachable("Invalid value type!");
11021   case MVT::i8:  Reg = X86::AL;  size = 1; break;
11022   case MVT::i16: Reg = X86::AX;  size = 2; break;
11023   case MVT::i32: Reg = X86::EAX; size = 4; break;
11024   case MVT::i64:
11025     assert(Subtarget->is64Bit() && "Node not type legal!");
11026     Reg = X86::RAX; size = 8;
11027     break;
11028   }
11029   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
11030                                     Op.getOperand(2), SDValue());
11031   SDValue Ops[] = { cpIn.getValue(0),
11032                     Op.getOperand(1),
11033                     Op.getOperand(3),
11034                     DAG.getTargetConstant(size, MVT::i8),
11035                     cpIn.getValue(1) };
11036   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11037   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
11038   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
11039                                            Ops, 5, T, MMO);
11040   SDValue cpOut =
11041     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
11042   return cpOut;
11043 }
11044
11045 SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
11046                                                  SelectionDAG &DAG) const {
11047   assert(Subtarget->is64Bit() && "Result not type legalized?");
11048   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11049   SDValue TheChain = Op.getOperand(0);
11050   DebugLoc dl = Op.getDebugLoc();
11051   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
11052   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
11053   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
11054                                    rax.getValue(2));
11055   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
11056                             DAG.getConstant(32, MVT::i8));
11057   SDValue Ops[] = {
11058     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
11059     rdx.getValue(1)
11060   };
11061   return DAG.getMergeValues(Ops, 2, dl);
11062 }
11063
11064 SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
11065                                             SelectionDAG &DAG) const {
11066   EVT SrcVT = Op.getOperand(0).getValueType();
11067   EVT DstVT = Op.getValueType();
11068   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
11069          Subtarget->hasMMX() && "Unexpected custom BITCAST");
11070   assert((DstVT == MVT::i64 ||
11071           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
11072          "Unexpected custom BITCAST");
11073   // i64 <=> MMX conversions are Legal.
11074   if (SrcVT==MVT::i64 && DstVT.isVector())
11075     return Op;
11076   if (DstVT==MVT::i64 && SrcVT.isVector())
11077     return Op;
11078   // MMX <=> MMX conversions are Legal.
11079   if (SrcVT.isVector() && DstVT.isVector())
11080     return Op;
11081   // All other conversions need to be expanded.
11082   return SDValue();
11083 }
11084
11085 SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
11086   SDNode *Node = Op.getNode();
11087   DebugLoc dl = Node->getDebugLoc();
11088   EVT T = Node->getValueType(0);
11089   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
11090                               DAG.getConstant(0, T), Node->getOperand(2));
11091   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
11092                        cast<AtomicSDNode>(Node)->getMemoryVT(),
11093                        Node->getOperand(0),
11094                        Node->getOperand(1), negOp,
11095                        cast<AtomicSDNode>(Node)->getSrcValue(),
11096                        cast<AtomicSDNode>(Node)->getAlignment(),
11097                        cast<AtomicSDNode>(Node)->getOrdering(),
11098                        cast<AtomicSDNode>(Node)->getSynchScope());
11099 }
11100
11101 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
11102   SDNode *Node = Op.getNode();
11103   DebugLoc dl = Node->getDebugLoc();
11104   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
11105
11106   // Convert seq_cst store -> xchg
11107   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
11108   // FIXME: On 32-bit, store -> fist or movq would be more efficient
11109   //        (The only way to get a 16-byte store is cmpxchg16b)
11110   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
11111   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
11112       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
11113     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
11114                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
11115                                  Node->getOperand(0),
11116                                  Node->getOperand(1), Node->getOperand(2),
11117                                  cast<AtomicSDNode>(Node)->getMemOperand(),
11118                                  cast<AtomicSDNode>(Node)->getOrdering(),
11119                                  cast<AtomicSDNode>(Node)->getSynchScope());
11120     return Swap.getValue(1);
11121   }
11122   // Other atomic stores have a simple pattern.
11123   return Op;
11124 }
11125
11126 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
11127   EVT VT = Op.getNode()->getValueType(0);
11128
11129   // Let legalize expand this if it isn't a legal type yet.
11130   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
11131     return SDValue();
11132
11133   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
11134
11135   unsigned Opc;
11136   bool ExtraOp = false;
11137   switch (Op.getOpcode()) {
11138   default: llvm_unreachable("Invalid code");
11139   case ISD::ADDC: Opc = X86ISD::ADD; break;
11140   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
11141   case ISD::SUBC: Opc = X86ISD::SUB; break;
11142   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
11143   }
11144
11145   if (!ExtraOp)
11146     return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11147                        Op.getOperand(1));
11148   return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
11149                      Op.getOperand(1), Op.getOperand(2));
11150 }
11151
11152 /// LowerOperation - Provide custom lowering hooks for some operations.
11153 ///
11154 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
11155   switch (Op.getOpcode()) {
11156   default: llvm_unreachable("Should not custom lower this!");
11157   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
11158   case ISD::MEMBARRIER:         return LowerMEMBARRIER(Op,DAG);
11159   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op,DAG);
11160   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op,DAG);
11161   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
11162   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
11163   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
11164   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
11165   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
11166   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
11167   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
11168   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op, DAG);
11169   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, DAG);
11170   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
11171   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
11172   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
11173   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
11174   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
11175   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
11176   case ISD::SHL_PARTS:
11177   case ISD::SRA_PARTS:
11178   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
11179   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
11180   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
11181   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
11182   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
11183   case ISD::FABS:               return LowerFABS(Op, DAG);
11184   case ISD::FNEG:               return LowerFNEG(Op, DAG);
11185   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
11186   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
11187   case ISD::SETCC:              return LowerSETCC(Op, DAG);
11188   case ISD::SELECT:             return LowerSELECT(Op, DAG);
11189   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
11190   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
11191   case ISD::VASTART:            return LowerVASTART(Op, DAG);
11192   case ISD::VAARG:              return LowerVAARG(Op, DAG);
11193   case ISD::VACOPY:             return LowerVACOPY(Op, DAG);
11194   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
11195   case ISD::INTRINSIC_W_CHAIN:  return LowerINTRINSIC_W_CHAIN(Op, DAG);
11196   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
11197   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
11198   case ISD::FRAME_TO_ARGS_OFFSET:
11199                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
11200   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
11201   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
11202   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
11203   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
11204   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
11205   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
11206   case ISD::CTLZ_ZERO_UNDEF:    return LowerCTLZ_ZERO_UNDEF(Op, DAG);
11207   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
11208   case ISD::MUL:                return LowerMUL(Op, DAG);
11209   case ISD::SRA:
11210   case ISD::SRL:
11211   case ISD::SHL:                return LowerShift(Op, DAG);
11212   case ISD::SADDO:
11213   case ISD::UADDO:
11214   case ISD::SSUBO:
11215   case ISD::USUBO:
11216   case ISD::SMULO:
11217   case ISD::UMULO:              return LowerXALUO(Op, DAG);
11218   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, DAG);
11219   case ISD::BITCAST:            return LowerBITCAST(Op, DAG);
11220   case ISD::ADDC:
11221   case ISD::ADDE:
11222   case ISD::SUBC:
11223   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
11224   case ISD::ADD:                return LowerADD(Op, DAG);
11225   case ISD::SUB:                return LowerSUB(Op, DAG);
11226   }
11227 }
11228
11229 static void ReplaceATOMIC_LOAD(SDNode *Node,
11230                                   SmallVectorImpl<SDValue> &Results,
11231                                   SelectionDAG &DAG) {
11232   DebugLoc dl = Node->getDebugLoc();
11233   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
11234
11235   // Convert wide load -> cmpxchg8b/cmpxchg16b
11236   // FIXME: On 32-bit, load -> fild or movq would be more efficient
11237   //        (The only way to get a 16-byte load is cmpxchg16b)
11238   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
11239   SDValue Zero = DAG.getConstant(0, VT);
11240   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
11241                                Node->getOperand(0),
11242                                Node->getOperand(1), Zero, Zero,
11243                                cast<AtomicSDNode>(Node)->getMemOperand(),
11244                                cast<AtomicSDNode>(Node)->getOrdering(),
11245                                cast<AtomicSDNode>(Node)->getSynchScope());
11246   Results.push_back(Swap.getValue(0));
11247   Results.push_back(Swap.getValue(1));
11248 }
11249
11250 static void
11251 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
11252                         SelectionDAG &DAG, unsigned NewOp) {
11253   DebugLoc dl = Node->getDebugLoc();
11254   assert (Node->getValueType(0) == MVT::i64 &&
11255           "Only know how to expand i64 atomics");
11256
11257   SDValue Chain = Node->getOperand(0);
11258   SDValue In1 = Node->getOperand(1);
11259   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11260                              Node->getOperand(2), DAG.getIntPtrConstant(0));
11261   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11262                              Node->getOperand(2), DAG.getIntPtrConstant(1));
11263   SDValue Ops[] = { Chain, In1, In2L, In2H };
11264   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
11265   SDValue Result =
11266     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
11267                             cast<MemSDNode>(Node)->getMemOperand());
11268   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
11269   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
11270   Results.push_back(Result.getValue(2));
11271 }
11272
11273 /// ReplaceNodeResults - Replace a node with an illegal result type
11274 /// with a new node built out of custom code.
11275 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
11276                                            SmallVectorImpl<SDValue>&Results,
11277                                            SelectionDAG &DAG) const {
11278   DebugLoc dl = N->getDebugLoc();
11279   switch (N->getOpcode()) {
11280   default:
11281     llvm_unreachable("Do not know how to custom type legalize this operation!");
11282   case ISD::SIGN_EXTEND_INREG:
11283   case ISD::ADDC:
11284   case ISD::ADDE:
11285   case ISD::SUBC:
11286   case ISD::SUBE:
11287     // We don't want to expand or promote these.
11288     return;
11289   case ISD::FP_TO_SINT:
11290   case ISD::FP_TO_UINT: {
11291     bool IsSigned = N->getOpcode() == ISD::FP_TO_SINT;
11292
11293     if (!IsSigned && !isIntegerTypeFTOL(SDValue(N, 0).getValueType()))
11294       return;
11295
11296     std::pair<SDValue,SDValue> Vals =
11297         FP_TO_INTHelper(SDValue(N, 0), DAG, IsSigned, /*IsReplace=*/ true);
11298     SDValue FIST = Vals.first, StackSlot = Vals.second;
11299     if (FIST.getNode() != 0) {
11300       EVT VT = N->getValueType(0);
11301       // Return a load from the stack slot.
11302       if (StackSlot.getNode() != 0)
11303         Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
11304                                       MachinePointerInfo(),
11305                                       false, false, false, 0));
11306       else
11307         Results.push_back(FIST);
11308     }
11309     return;
11310   }
11311   case ISD::READCYCLECOUNTER: {
11312     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11313     SDValue TheChain = N->getOperand(0);
11314     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
11315     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
11316                                      rd.getValue(1));
11317     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
11318                                      eax.getValue(2));
11319     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
11320     SDValue Ops[] = { eax, edx };
11321     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
11322     Results.push_back(edx.getValue(1));
11323     return;
11324   }
11325   case ISD::ATOMIC_CMP_SWAP: {
11326     EVT T = N->getValueType(0);
11327     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
11328     bool Regs64bit = T == MVT::i128;
11329     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
11330     SDValue cpInL, cpInH;
11331     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11332                         DAG.getConstant(0, HalfT));
11333     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11334                         DAG.getConstant(1, HalfT));
11335     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
11336                              Regs64bit ? X86::RAX : X86::EAX,
11337                              cpInL, SDValue());
11338     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
11339                              Regs64bit ? X86::RDX : X86::EDX,
11340                              cpInH, cpInL.getValue(1));
11341     SDValue swapInL, swapInH;
11342     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11343                           DAG.getConstant(0, HalfT));
11344     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11345                           DAG.getConstant(1, HalfT));
11346     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
11347                                Regs64bit ? X86::RBX : X86::EBX,
11348                                swapInL, cpInH.getValue(1));
11349     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
11350                                Regs64bit ? X86::RCX : X86::ECX,
11351                                swapInH, swapInL.getValue(1));
11352     SDValue Ops[] = { swapInH.getValue(0),
11353                       N->getOperand(1),
11354                       swapInH.getValue(1) };
11355     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11356     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
11357     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
11358                                   X86ISD::LCMPXCHG8_DAG;
11359     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
11360                                              Ops, 3, T, MMO);
11361     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
11362                                         Regs64bit ? X86::RAX : X86::EAX,
11363                                         HalfT, Result.getValue(1));
11364     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
11365                                         Regs64bit ? X86::RDX : X86::EDX,
11366                                         HalfT, cpOutL.getValue(2));
11367     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
11368     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
11369     Results.push_back(cpOutH.getValue(1));
11370     return;
11371   }
11372   case ISD::ATOMIC_LOAD_ADD:
11373   case ISD::ATOMIC_LOAD_AND:
11374   case ISD::ATOMIC_LOAD_NAND:
11375   case ISD::ATOMIC_LOAD_OR:
11376   case ISD::ATOMIC_LOAD_SUB:
11377   case ISD::ATOMIC_LOAD_XOR:
11378   case ISD::ATOMIC_SWAP: {
11379     unsigned Opc;
11380     switch (N->getOpcode()) {
11381     default: llvm_unreachable("Unexpected opcode");
11382     case ISD::ATOMIC_LOAD_ADD:
11383       Opc = X86ISD::ATOMADD64_DAG;
11384       break;
11385     case ISD::ATOMIC_LOAD_AND:
11386       Opc = X86ISD::ATOMAND64_DAG;
11387       break;
11388     case ISD::ATOMIC_LOAD_NAND:
11389       Opc = X86ISD::ATOMNAND64_DAG;
11390       break;
11391     case ISD::ATOMIC_LOAD_OR:
11392       Opc = X86ISD::ATOMOR64_DAG;
11393       break;
11394     case ISD::ATOMIC_LOAD_SUB:
11395       Opc = X86ISD::ATOMSUB64_DAG;
11396       break;
11397     case ISD::ATOMIC_LOAD_XOR:
11398       Opc = X86ISD::ATOMXOR64_DAG;
11399       break;
11400     case ISD::ATOMIC_SWAP:
11401       Opc = X86ISD::ATOMSWAP64_DAG;
11402       break;
11403     }
11404     ReplaceATOMIC_BINARY_64(N, Results, DAG, Opc);
11405     return;
11406   }
11407   case ISD::ATOMIC_LOAD:
11408     ReplaceATOMIC_LOAD(N, Results, DAG);
11409   }
11410 }
11411
11412 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
11413   switch (Opcode) {
11414   default: return NULL;
11415   case X86ISD::BSF:                return "X86ISD::BSF";
11416   case X86ISD::BSR:                return "X86ISD::BSR";
11417   case X86ISD::SHLD:               return "X86ISD::SHLD";
11418   case X86ISD::SHRD:               return "X86ISD::SHRD";
11419   case X86ISD::FAND:               return "X86ISD::FAND";
11420   case X86ISD::FOR:                return "X86ISD::FOR";
11421   case X86ISD::FXOR:               return "X86ISD::FXOR";
11422   case X86ISD::FSRL:               return "X86ISD::FSRL";
11423   case X86ISD::FILD:               return "X86ISD::FILD";
11424   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
11425   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
11426   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
11427   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
11428   case X86ISD::FLD:                return "X86ISD::FLD";
11429   case X86ISD::FST:                return "X86ISD::FST";
11430   case X86ISD::CALL:               return "X86ISD::CALL";
11431   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
11432   case X86ISD::BT:                 return "X86ISD::BT";
11433   case X86ISD::CMP:                return "X86ISD::CMP";
11434   case X86ISD::COMI:               return "X86ISD::COMI";
11435   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
11436   case X86ISD::SETCC:              return "X86ISD::SETCC";
11437   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
11438   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
11439   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
11440   case X86ISD::CMOV:               return "X86ISD::CMOV";
11441   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
11442   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
11443   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
11444   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
11445   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
11446   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
11447   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
11448   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
11449   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
11450   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
11451   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
11452   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
11453   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
11454   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
11455   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
11456   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
11457   case X86ISD::BLENDPW:            return "X86ISD::BLENDPW";
11458   case X86ISD::BLENDPS:            return "X86ISD::BLENDPS";
11459   case X86ISD::BLENDPD:            return "X86ISD::BLENDPD";
11460   case X86ISD::HADD:               return "X86ISD::HADD";
11461   case X86ISD::HSUB:               return "X86ISD::HSUB";
11462   case X86ISD::FHADD:              return "X86ISD::FHADD";
11463   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
11464   case X86ISD::FMAX:               return "X86ISD::FMAX";
11465   case X86ISD::FMIN:               return "X86ISD::FMIN";
11466   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
11467   case X86ISD::FRCP:               return "X86ISD::FRCP";
11468   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
11469   case X86ISD::TLSBASEADDR:        return "X86ISD::TLSBASEADDR";
11470   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
11471   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
11472   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
11473   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
11474   case X86ISD::FNSTSW16r:          return "X86ISD::FNSTSW16r";
11475   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
11476   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
11477   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
11478   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
11479   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
11480   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
11481   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
11482   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
11483   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
11484   case X86ISD::VSEXT_MOVL:         return "X86ISD::VSEXT_MOVL";
11485   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
11486   case X86ISD::VFPEXT:             return "X86ISD::VFPEXT";
11487   case X86ISD::VSHLDQ:             return "X86ISD::VSHLDQ";
11488   case X86ISD::VSRLDQ:             return "X86ISD::VSRLDQ";
11489   case X86ISD::VSHL:               return "X86ISD::VSHL";
11490   case X86ISD::VSRL:               return "X86ISD::VSRL";
11491   case X86ISD::VSRA:               return "X86ISD::VSRA";
11492   case X86ISD::VSHLI:              return "X86ISD::VSHLI";
11493   case X86ISD::VSRLI:              return "X86ISD::VSRLI";
11494   case X86ISD::VSRAI:              return "X86ISD::VSRAI";
11495   case X86ISD::CMPP:               return "X86ISD::CMPP";
11496   case X86ISD::PCMPEQ:             return "X86ISD::PCMPEQ";
11497   case X86ISD::PCMPGT:             return "X86ISD::PCMPGT";
11498   case X86ISD::ADD:                return "X86ISD::ADD";
11499   case X86ISD::SUB:                return "X86ISD::SUB";
11500   case X86ISD::ADC:                return "X86ISD::ADC";
11501   case X86ISD::SBB:                return "X86ISD::SBB";
11502   case X86ISD::SMUL:               return "X86ISD::SMUL";
11503   case X86ISD::UMUL:               return "X86ISD::UMUL";
11504   case X86ISD::INC:                return "X86ISD::INC";
11505   case X86ISD::DEC:                return "X86ISD::DEC";
11506   case X86ISD::OR:                 return "X86ISD::OR";
11507   case X86ISD::XOR:                return "X86ISD::XOR";
11508   case X86ISD::AND:                return "X86ISD::AND";
11509   case X86ISD::ANDN:               return "X86ISD::ANDN";
11510   case X86ISD::BLSI:               return "X86ISD::BLSI";
11511   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
11512   case X86ISD::BLSR:               return "X86ISD::BLSR";
11513   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
11514   case X86ISD::PTEST:              return "X86ISD::PTEST";
11515   case X86ISD::TESTP:              return "X86ISD::TESTP";
11516   case X86ISD::PALIGN:             return "X86ISD::PALIGN";
11517   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
11518   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
11519   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
11520   case X86ISD::SHUFP:              return "X86ISD::SHUFP";
11521   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
11522   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
11523   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
11524   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
11525   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
11526   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
11527   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
11528   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
11529   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
11530   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
11531   case X86ISD::UNPCKL:             return "X86ISD::UNPCKL";
11532   case X86ISD::UNPCKH:             return "X86ISD::UNPCKH";
11533   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
11534   case X86ISD::VPERMILP:           return "X86ISD::VPERMILP";
11535   case X86ISD::VPERM2X128:         return "X86ISD::VPERM2X128";
11536   case X86ISD::VPERMV:             return "X86ISD::VPERMV";
11537   case X86ISD::VPERMI:             return "X86ISD::VPERMI";
11538   case X86ISD::PMULUDQ:            return "X86ISD::PMULUDQ";
11539   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
11540   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
11541   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
11542   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
11543   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
11544   case X86ISD::WIN_FTOL:           return "X86ISD::WIN_FTOL";
11545   case X86ISD::SAHF:               return "X86ISD::SAHF";
11546   case X86ISD::RDRAND:             return "X86ISD::RDRAND";
11547   case X86ISD::FMADD:              return "X86ISD::FMADD";
11548   case X86ISD::FMSUB:              return "X86ISD::FMSUB";
11549   case X86ISD::FNMADD:             return "X86ISD::FNMADD";
11550   case X86ISD::FNMSUB:             return "X86ISD::FNMSUB";
11551   case X86ISD::FMADDSUB:           return "X86ISD::FMADDSUB";
11552   case X86ISD::FMSUBADD:           return "X86ISD::FMSUBADD";
11553   }
11554 }
11555
11556 // isLegalAddressingMode - Return true if the addressing mode represented
11557 // by AM is legal for this target, for a load/store of the specified type.
11558 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
11559                                               Type *Ty) const {
11560   // X86 supports extremely general addressing modes.
11561   CodeModel::Model M = getTargetMachine().getCodeModel();
11562   Reloc::Model R = getTargetMachine().getRelocationModel();
11563
11564   // X86 allows a sign-extended 32-bit immediate field as a displacement.
11565   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
11566     return false;
11567
11568   if (AM.BaseGV) {
11569     unsigned GVFlags =
11570       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
11571
11572     // If a reference to this global requires an extra load, we can't fold it.
11573     if (isGlobalStubReference(GVFlags))
11574       return false;
11575
11576     // If BaseGV requires a register for the PIC base, we cannot also have a
11577     // BaseReg specified.
11578     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
11579       return false;
11580
11581     // If lower 4G is not available, then we must use rip-relative addressing.
11582     if ((M != CodeModel::Small || R != Reloc::Static) &&
11583         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
11584       return false;
11585   }
11586
11587   switch (AM.Scale) {
11588   case 0:
11589   case 1:
11590   case 2:
11591   case 4:
11592   case 8:
11593     // These scales always work.
11594     break;
11595   case 3:
11596   case 5:
11597   case 9:
11598     // These scales are formed with basereg+scalereg.  Only accept if there is
11599     // no basereg yet.
11600     if (AM.HasBaseReg)
11601       return false;
11602     break;
11603   default:  // Other stuff never works.
11604     return false;
11605   }
11606
11607   return true;
11608 }
11609
11610
11611 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
11612   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
11613     return false;
11614   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11615   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
11616   if (NumBits1 <= NumBits2)
11617     return false;
11618   return true;
11619 }
11620
11621 bool X86TargetLowering::isLegalICmpImmediate(int64_t Imm) const {
11622   return Imm == (int32_t)Imm;
11623 }
11624
11625 bool X86TargetLowering::isLegalAddImmediate(int64_t Imm) const {
11626   // Can also use sub to handle negated immediates.
11627   return Imm == (int32_t)Imm;
11628 }
11629
11630 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
11631   if (!VT1.isInteger() || !VT2.isInteger())
11632     return false;
11633   unsigned NumBits1 = VT1.getSizeInBits();
11634   unsigned NumBits2 = VT2.getSizeInBits();
11635   if (NumBits1 <= NumBits2)
11636     return false;
11637   return true;
11638 }
11639
11640 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
11641   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
11642   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
11643 }
11644
11645 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
11646   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
11647   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
11648 }
11649
11650 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
11651   // i16 instructions are longer (0x66 prefix) and potentially slower.
11652   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
11653 }
11654
11655 /// isShuffleMaskLegal - Targets can use this to indicate that they only
11656 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
11657 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
11658 /// are assumed to be legal.
11659 bool
11660 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
11661                                       EVT VT) const {
11662   // Very little shuffling can be done for 64-bit vectors right now.
11663   if (VT.getSizeInBits() == 64)
11664     return false;
11665
11666   // FIXME: pshufb, blends, shifts.
11667   return (VT.getVectorNumElements() == 2 ||
11668           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
11669           isMOVLMask(M, VT) ||
11670           isSHUFPMask(M, VT, Subtarget->hasAVX()) ||
11671           isPSHUFDMask(M, VT) ||
11672           isPSHUFHWMask(M, VT, Subtarget->hasAVX2()) ||
11673           isPSHUFLWMask(M, VT, Subtarget->hasAVX2()) ||
11674           isPALIGNRMask(M, VT, Subtarget) ||
11675           isUNPCKLMask(M, VT, Subtarget->hasAVX2()) ||
11676           isUNPCKHMask(M, VT, Subtarget->hasAVX2()) ||
11677           isUNPCKL_v_undef_Mask(M, VT, Subtarget->hasAVX2()) ||
11678           isUNPCKH_v_undef_Mask(M, VT, Subtarget->hasAVX2()));
11679 }
11680
11681 bool
11682 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
11683                                           EVT VT) const {
11684   unsigned NumElts = VT.getVectorNumElements();
11685   // FIXME: This collection of masks seems suspect.
11686   if (NumElts == 2)
11687     return true;
11688   if (NumElts == 4 && VT.is128BitVector()) {
11689     return (isMOVLMask(Mask, VT)  ||
11690             isCommutedMOVLMask(Mask, VT, true) ||
11691             isSHUFPMask(Mask, VT, Subtarget->hasAVX()) ||
11692             isSHUFPMask(Mask, VT, Subtarget->hasAVX(), /* Commuted */ true));
11693   }
11694   return false;
11695 }
11696
11697 //===----------------------------------------------------------------------===//
11698 //                           X86 Scheduler Hooks
11699 //===----------------------------------------------------------------------===//
11700
11701 // private utility function
11702 MachineBasicBlock *
11703 X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
11704                                                        MachineBasicBlock *MBB,
11705                                                        unsigned regOpc,
11706                                                        unsigned immOpc,
11707                                                        unsigned LoadOpc,
11708                                                        unsigned CXchgOpc,
11709                                                        unsigned notOpc,
11710                                                        unsigned EAXreg,
11711                                                  const TargetRegisterClass *RC,
11712                                                        bool Invert) const {
11713   // For the atomic bitwise operator, we generate
11714   //   thisMBB:
11715   //   newMBB:
11716   //     ld  t1 = [bitinstr.addr]
11717   //     op  t2 = t1, [bitinstr.val]
11718   //     not t3 = t2  (if Invert)
11719   //     mov EAX = t1
11720   //     lcs dest = [bitinstr.addr], t3  [EAX is implicit]
11721   //     bz  newMBB
11722   //     fallthrough -->nextMBB
11723   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11724   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11725   MachineFunction::iterator MBBIter = MBB;
11726   ++MBBIter;
11727
11728   /// First build the CFG
11729   MachineFunction *F = MBB->getParent();
11730   MachineBasicBlock *thisMBB = MBB;
11731   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11732   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11733   F->insert(MBBIter, newMBB);
11734   F->insert(MBBIter, nextMBB);
11735
11736   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11737   nextMBB->splice(nextMBB->begin(), thisMBB,
11738                   llvm::next(MachineBasicBlock::iterator(bInstr)),
11739                   thisMBB->end());
11740   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11741
11742   // Update thisMBB to fall through to newMBB
11743   thisMBB->addSuccessor(newMBB);
11744
11745   // newMBB jumps to itself and fall through to nextMBB
11746   newMBB->addSuccessor(nextMBB);
11747   newMBB->addSuccessor(newMBB);
11748
11749   // Insert instructions into newMBB based on incoming instruction
11750   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
11751          "unexpected number of operands");
11752   DebugLoc dl = bInstr->getDebugLoc();
11753   MachineOperand& destOper = bInstr->getOperand(0);
11754   MachineOperand* argOpers[2 + X86::AddrNumOperands];
11755   int numArgs = bInstr->getNumOperands() - 1;
11756   for (int i=0; i < numArgs; ++i)
11757     argOpers[i] = &bInstr->getOperand(i+1);
11758
11759   // x86 address has 4 operands: base, index, scale, and displacement
11760   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
11761   int valArgIndx = lastAddrIndx + 1;
11762
11763   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
11764   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
11765   for (int i=0; i <= lastAddrIndx; ++i)
11766     (*MIB).addOperand(*argOpers[i]);
11767
11768   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
11769   assert((argOpers[valArgIndx]->isReg() ||
11770           argOpers[valArgIndx]->isImm()) &&
11771          "invalid operand");
11772   if (argOpers[valArgIndx]->isReg())
11773     MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
11774   else
11775     MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
11776   MIB.addReg(t1);
11777   (*MIB).addOperand(*argOpers[valArgIndx]);
11778
11779   unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11780   if (Invert) {
11781     MIB = BuildMI(newMBB, dl, TII->get(notOpc), t3).addReg(t2);
11782   }
11783   else
11784     t3 = t2;
11785
11786   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
11787   MIB.addReg(t1);
11788
11789   MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
11790   for (int i=0; i <= lastAddrIndx; ++i)
11791     (*MIB).addOperand(*argOpers[i]);
11792   MIB.addReg(t3);
11793   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
11794   (*MIB).setMemRefs(bInstr->memoperands_begin(),
11795                     bInstr->memoperands_end());
11796
11797   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
11798   MIB.addReg(EAXreg);
11799
11800   // insert branch
11801   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
11802
11803   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
11804   return nextMBB;
11805 }
11806
11807 // private utility function:  64 bit atomics on 32 bit host.
11808 MachineBasicBlock *
11809 X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
11810                                                        MachineBasicBlock *MBB,
11811                                                        unsigned regOpcL,
11812                                                        unsigned regOpcH,
11813                                                        unsigned immOpcL,
11814                                                        unsigned immOpcH,
11815                                                        bool Invert) const {
11816   // For the atomic bitwise operator, we generate
11817   //   thisMBB (instructions are in pairs, except cmpxchg8b)
11818   //     ld t1,t2 = [bitinstr.addr]
11819   //   newMBB:
11820   //     out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
11821   //     op  t5, t6 <- out1, out2, [bitinstr.val]
11822   //      (for SWAP, substitute:  mov t5, t6 <- [bitinstr.val])
11823   //     neg t7, t8 < t5, t6  (if Invert)
11824   //     mov ECX, EBX <- t5, t6
11825   //     mov EAX, EDX <- t1, t2
11826   //     cmpxchg8b [bitinstr.addr]  [EAX, EDX, EBX, ECX implicit]
11827   //     mov t3, t4 <- EAX, EDX
11828   //     bz  newMBB
11829   //     result in out1, out2
11830   //     fallthrough -->nextMBB
11831
11832   const TargetRegisterClass *RC = &X86::GR32RegClass;
11833   const unsigned LoadOpc = X86::MOV32rm;
11834   const unsigned NotOpc = X86::NOT32r;
11835   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11836   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11837   MachineFunction::iterator MBBIter = MBB;
11838   ++MBBIter;
11839
11840   /// First build the CFG
11841   MachineFunction *F = MBB->getParent();
11842   MachineBasicBlock *thisMBB = MBB;
11843   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11844   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11845   F->insert(MBBIter, newMBB);
11846   F->insert(MBBIter, nextMBB);
11847
11848   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11849   nextMBB->splice(nextMBB->begin(), thisMBB,
11850                   llvm::next(MachineBasicBlock::iterator(bInstr)),
11851                   thisMBB->end());
11852   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11853
11854   // Update thisMBB to fall through to newMBB
11855   thisMBB->addSuccessor(newMBB);
11856
11857   // newMBB jumps to itself and fall through to nextMBB
11858   newMBB->addSuccessor(nextMBB);
11859   newMBB->addSuccessor(newMBB);
11860
11861   DebugLoc dl = bInstr->getDebugLoc();
11862   // Insert instructions into newMBB based on incoming instruction
11863   // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
11864   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
11865          "unexpected number of operands");
11866   MachineOperand& dest1Oper = bInstr->getOperand(0);
11867   MachineOperand& dest2Oper = bInstr->getOperand(1);
11868   MachineOperand* argOpers[2 + X86::AddrNumOperands];
11869   for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
11870     argOpers[i] = &bInstr->getOperand(i+2);
11871
11872     // We use some of the operands multiple times, so conservatively just
11873     // clear any kill flags that might be present.
11874     if (argOpers[i]->isReg() && argOpers[i]->isUse())
11875       argOpers[i]->setIsKill(false);
11876   }
11877
11878   // x86 address has 5 operands: base, index, scale, displacement, and segment.
11879   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
11880
11881   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
11882   MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
11883   for (int i=0; i <= lastAddrIndx; ++i)
11884     (*MIB).addOperand(*argOpers[i]);
11885   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
11886   MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
11887   // add 4 to displacement.
11888   for (int i=0; i <= lastAddrIndx-2; ++i)
11889     (*MIB).addOperand(*argOpers[i]);
11890   MachineOperand newOp3 = *(argOpers[3]);
11891   if (newOp3.isImm())
11892     newOp3.setImm(newOp3.getImm()+4);
11893   else
11894     newOp3.setOffset(newOp3.getOffset()+4);
11895   (*MIB).addOperand(newOp3);
11896   (*MIB).addOperand(*argOpers[lastAddrIndx]);
11897
11898   // t3/4 are defined later, at the bottom of the loop
11899   unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11900   unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
11901   BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
11902     .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
11903   BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
11904     .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11905
11906   // The subsequent operations should be using the destination registers of
11907   // the PHI instructions.
11908   t1 = dest1Oper.getReg();
11909   t2 = dest2Oper.getReg();
11910
11911   int valArgIndx = lastAddrIndx + 1;
11912   assert((argOpers[valArgIndx]->isReg() ||
11913           argOpers[valArgIndx]->isImm()) &&
11914          "invalid operand");
11915   unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
11916   unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
11917   if (argOpers[valArgIndx]->isReg())
11918     MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
11919   else
11920     MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
11921   if (regOpcL != X86::MOV32rr)
11922     MIB.addReg(t1);
11923   (*MIB).addOperand(*argOpers[valArgIndx]);
11924   assert(argOpers[valArgIndx + 1]->isReg() ==
11925          argOpers[valArgIndx]->isReg());
11926   assert(argOpers[valArgIndx + 1]->isImm() ==
11927          argOpers[valArgIndx]->isImm());
11928   if (argOpers[valArgIndx + 1]->isReg())
11929     MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
11930   else
11931     MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
11932   if (regOpcH != X86::MOV32rr)
11933     MIB.addReg(t2);
11934   (*MIB).addOperand(*argOpers[valArgIndx + 1]);
11935
11936   unsigned t7, t8;
11937   if (Invert) {
11938     t7 = F->getRegInfo().createVirtualRegister(RC);
11939     t8 = F->getRegInfo().createVirtualRegister(RC);
11940     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t7).addReg(t5);
11941     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t8).addReg(t6);
11942   } else {
11943     t7 = t5;
11944     t8 = t6;
11945   }
11946
11947   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
11948   MIB.addReg(t1);
11949   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
11950   MIB.addReg(t2);
11951
11952   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
11953   MIB.addReg(t7);
11954   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
11955   MIB.addReg(t8);
11956
11957   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
11958   for (int i=0; i <= lastAddrIndx; ++i)
11959     (*MIB).addOperand(*argOpers[i]);
11960
11961   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
11962   (*MIB).setMemRefs(bInstr->memoperands_begin(),
11963                     bInstr->memoperands_end());
11964
11965   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
11966   MIB.addReg(X86::EAX);
11967   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
11968   MIB.addReg(X86::EDX);
11969
11970   // insert branch
11971   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
11972
11973   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
11974   return nextMBB;
11975 }
11976
11977 // private utility function
11978 MachineBasicBlock *
11979 X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11980                                                       MachineBasicBlock *MBB,
11981                                                       unsigned cmovOpc) const {
11982   // For the atomic min/max operator, we generate
11983   //   thisMBB:
11984   //   newMBB:
11985   //     ld t1 = [min/max.addr]
11986   //     mov t2 = [min/max.val]
11987   //     cmp  t1, t2
11988   //     cmov[cond] t2 = t1
11989   //     mov EAX = t1
11990   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
11991   //     bz   newMBB
11992   //     fallthrough -->nextMBB
11993   //
11994   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11995   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11996   MachineFunction::iterator MBBIter = MBB;
11997   ++MBBIter;
11998
11999   /// First build the CFG
12000   MachineFunction *F = MBB->getParent();
12001   MachineBasicBlock *thisMBB = MBB;
12002   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
12003   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
12004   F->insert(MBBIter, newMBB);
12005   F->insert(MBBIter, nextMBB);
12006
12007   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
12008   nextMBB->splice(nextMBB->begin(), thisMBB,
12009                   llvm::next(MachineBasicBlock::iterator(mInstr)),
12010                   thisMBB->end());
12011   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
12012
12013   // Update thisMBB to fall through to newMBB
12014   thisMBB->addSuccessor(newMBB);
12015
12016   // newMBB jumps to newMBB and fall through to nextMBB
12017   newMBB->addSuccessor(nextMBB);
12018   newMBB->addSuccessor(newMBB);
12019
12020   DebugLoc dl = mInstr->getDebugLoc();
12021   // Insert instructions into newMBB based on incoming instruction
12022   assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
12023          "unexpected number of operands");
12024   MachineOperand& destOper = mInstr->getOperand(0);
12025   MachineOperand* argOpers[2 + X86::AddrNumOperands];
12026   int numArgs = mInstr->getNumOperands() - 1;
12027   for (int i=0; i < numArgs; ++i)
12028     argOpers[i] = &mInstr->getOperand(i+1);
12029
12030   // x86 address has 4 operands: base, index, scale, and displacement
12031   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
12032   int valArgIndx = lastAddrIndx + 1;
12033
12034   unsigned t1 = F->getRegInfo().createVirtualRegister(&X86::GR32RegClass);
12035   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
12036   for (int i=0; i <= lastAddrIndx; ++i)
12037     (*MIB).addOperand(*argOpers[i]);
12038
12039   // We only support register and immediate values
12040   assert((argOpers[valArgIndx]->isReg() ||
12041           argOpers[valArgIndx]->isImm()) &&
12042          "invalid operand");
12043
12044   unsigned t2 = F->getRegInfo().createVirtualRegister(&X86::GR32RegClass);
12045   if (argOpers[valArgIndx]->isReg())
12046     MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
12047   else
12048     MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
12049   (*MIB).addOperand(*argOpers[valArgIndx]);
12050
12051   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
12052   MIB.addReg(t1);
12053
12054   MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
12055   MIB.addReg(t1);
12056   MIB.addReg(t2);
12057
12058   // Generate movc
12059   unsigned t3 = F->getRegInfo().createVirtualRegister(&X86::GR32RegClass);
12060   MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
12061   MIB.addReg(t2);
12062   MIB.addReg(t1);
12063
12064   // Cmp and exchange if none has modified the memory location
12065   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
12066   for (int i=0; i <= lastAddrIndx; ++i)
12067     (*MIB).addOperand(*argOpers[i]);
12068   MIB.addReg(t3);
12069   assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
12070   (*MIB).setMemRefs(mInstr->memoperands_begin(),
12071                     mInstr->memoperands_end());
12072
12073   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
12074   MIB.addReg(X86::EAX);
12075
12076   // insert branch
12077   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
12078
12079   mInstr->eraseFromParent();   // The pseudo instruction is gone now.
12080   return nextMBB;
12081 }
12082
12083 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
12084 // or XMM0_V32I8 in AVX all of this code can be replaced with that
12085 // in the .td file.
12086 MachineBasicBlock *
12087 X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
12088                             unsigned numArgs, bool memArg) const {
12089   assert(Subtarget->hasSSE42() &&
12090          "Target must have SSE4.2 or AVX features enabled");
12091
12092   DebugLoc dl = MI->getDebugLoc();
12093   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12094   unsigned Opc;
12095   if (!Subtarget->hasAVX()) {
12096     if (memArg)
12097       Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
12098     else
12099       Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
12100   } else {
12101     if (memArg)
12102       Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
12103     else
12104       Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
12105   }
12106
12107   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
12108   for (unsigned i = 0; i < numArgs; ++i) {
12109     MachineOperand &Op = MI->getOperand(i+1);
12110     if (!(Op.isReg() && Op.isImplicit()))
12111       MIB.addOperand(Op);
12112   }
12113   BuildMI(*BB, MI, dl,
12114     TII->get(TargetOpcode::COPY), MI->getOperand(0).getReg())
12115     .addReg(X86::XMM0);
12116
12117   MI->eraseFromParent();
12118   return BB;
12119 }
12120
12121 MachineBasicBlock *
12122 X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
12123   DebugLoc dl = MI->getDebugLoc();
12124   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12125
12126   // Address into RAX/EAX, other two args into ECX, EDX.
12127   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
12128   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
12129   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
12130   for (int i = 0; i < X86::AddrNumOperands; ++i)
12131     MIB.addOperand(MI->getOperand(i));
12132
12133   unsigned ValOps = X86::AddrNumOperands;
12134   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
12135     .addReg(MI->getOperand(ValOps).getReg());
12136   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
12137     .addReg(MI->getOperand(ValOps+1).getReg());
12138
12139   // The instruction doesn't actually take any operands though.
12140   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
12141
12142   MI->eraseFromParent(); // The pseudo is gone now.
12143   return BB;
12144 }
12145
12146 MachineBasicBlock *
12147 X86TargetLowering::EmitVAARG64WithCustomInserter(
12148                    MachineInstr *MI,
12149                    MachineBasicBlock *MBB) const {
12150   // Emit va_arg instruction on X86-64.
12151
12152   // Operands to this pseudo-instruction:
12153   // 0  ) Output        : destination address (reg)
12154   // 1-5) Input         : va_list address (addr, i64mem)
12155   // 6  ) ArgSize       : Size (in bytes) of vararg type
12156   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
12157   // 8  ) Align         : Alignment of type
12158   // 9  ) EFLAGS (implicit-def)
12159
12160   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
12161   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
12162
12163   unsigned DestReg = MI->getOperand(0).getReg();
12164   MachineOperand &Base = MI->getOperand(1);
12165   MachineOperand &Scale = MI->getOperand(2);
12166   MachineOperand &Index = MI->getOperand(3);
12167   MachineOperand &Disp = MI->getOperand(4);
12168   MachineOperand &Segment = MI->getOperand(5);
12169   unsigned ArgSize = MI->getOperand(6).getImm();
12170   unsigned ArgMode = MI->getOperand(7).getImm();
12171   unsigned Align = MI->getOperand(8).getImm();
12172
12173   // Memory Reference
12174   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
12175   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
12176   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
12177
12178   // Machine Information
12179   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12180   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
12181   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
12182   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
12183   DebugLoc DL = MI->getDebugLoc();
12184
12185   // struct va_list {
12186   //   i32   gp_offset
12187   //   i32   fp_offset
12188   //   i64   overflow_area (address)
12189   //   i64   reg_save_area (address)
12190   // }
12191   // sizeof(va_list) = 24
12192   // alignment(va_list) = 8
12193
12194   unsigned TotalNumIntRegs = 6;
12195   unsigned TotalNumXMMRegs = 8;
12196   bool UseGPOffset = (ArgMode == 1);
12197   bool UseFPOffset = (ArgMode == 2);
12198   unsigned MaxOffset = TotalNumIntRegs * 8 +
12199                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
12200
12201   /* Align ArgSize to a multiple of 8 */
12202   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
12203   bool NeedsAlign = (Align > 8);
12204
12205   MachineBasicBlock *thisMBB = MBB;
12206   MachineBasicBlock *overflowMBB;
12207   MachineBasicBlock *offsetMBB;
12208   MachineBasicBlock *endMBB;
12209
12210   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
12211   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
12212   unsigned OffsetReg = 0;
12213
12214   if (!UseGPOffset && !UseFPOffset) {
12215     // If we only pull from the overflow region, we don't create a branch.
12216     // We don't need to alter control flow.
12217     OffsetDestReg = 0; // unused
12218     OverflowDestReg = DestReg;
12219
12220     offsetMBB = NULL;
12221     overflowMBB = thisMBB;
12222     endMBB = thisMBB;
12223   } else {
12224     // First emit code to check if gp_offset (or fp_offset) is below the bound.
12225     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
12226     // If not, pull from overflow_area. (branch to overflowMBB)
12227     //
12228     //       thisMBB
12229     //         |     .
12230     //         |        .
12231     //     offsetMBB   overflowMBB
12232     //         |        .
12233     //         |     .
12234     //        endMBB
12235
12236     // Registers for the PHI in endMBB
12237     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
12238     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
12239
12240     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
12241     MachineFunction *MF = MBB->getParent();
12242     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12243     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12244     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12245
12246     MachineFunction::iterator MBBIter = MBB;
12247     ++MBBIter;
12248
12249     // Insert the new basic blocks
12250     MF->insert(MBBIter, offsetMBB);
12251     MF->insert(MBBIter, overflowMBB);
12252     MF->insert(MBBIter, endMBB);
12253
12254     // Transfer the remainder of MBB and its successor edges to endMBB.
12255     endMBB->splice(endMBB->begin(), thisMBB,
12256                     llvm::next(MachineBasicBlock::iterator(MI)),
12257                     thisMBB->end());
12258     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
12259
12260     // Make offsetMBB and overflowMBB successors of thisMBB
12261     thisMBB->addSuccessor(offsetMBB);
12262     thisMBB->addSuccessor(overflowMBB);
12263
12264     // endMBB is a successor of both offsetMBB and overflowMBB
12265     offsetMBB->addSuccessor(endMBB);
12266     overflowMBB->addSuccessor(endMBB);
12267
12268     // Load the offset value into a register
12269     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
12270     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
12271       .addOperand(Base)
12272       .addOperand(Scale)
12273       .addOperand(Index)
12274       .addDisp(Disp, UseFPOffset ? 4 : 0)
12275       .addOperand(Segment)
12276       .setMemRefs(MMOBegin, MMOEnd);
12277
12278     // Check if there is enough room left to pull this argument.
12279     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
12280       .addReg(OffsetReg)
12281       .addImm(MaxOffset + 8 - ArgSizeA8);
12282
12283     // Branch to "overflowMBB" if offset >= max
12284     // Fall through to "offsetMBB" otherwise
12285     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
12286       .addMBB(overflowMBB);
12287   }
12288
12289   // In offsetMBB, emit code to use the reg_save_area.
12290   if (offsetMBB) {
12291     assert(OffsetReg != 0);
12292
12293     // Read the reg_save_area address.
12294     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
12295     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
12296       .addOperand(Base)
12297       .addOperand(Scale)
12298       .addOperand(Index)
12299       .addDisp(Disp, 16)
12300       .addOperand(Segment)
12301       .setMemRefs(MMOBegin, MMOEnd);
12302
12303     // Zero-extend the offset
12304     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
12305       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
12306         .addImm(0)
12307         .addReg(OffsetReg)
12308         .addImm(X86::sub_32bit);
12309
12310     // Add the offset to the reg_save_area to get the final address.
12311     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
12312       .addReg(OffsetReg64)
12313       .addReg(RegSaveReg);
12314
12315     // Compute the offset for the next argument
12316     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
12317     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
12318       .addReg(OffsetReg)
12319       .addImm(UseFPOffset ? 16 : 8);
12320
12321     // Store it back into the va_list.
12322     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
12323       .addOperand(Base)
12324       .addOperand(Scale)
12325       .addOperand(Index)
12326       .addDisp(Disp, UseFPOffset ? 4 : 0)
12327       .addOperand(Segment)
12328       .addReg(NextOffsetReg)
12329       .setMemRefs(MMOBegin, MMOEnd);
12330
12331     // Jump to endMBB
12332     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
12333       .addMBB(endMBB);
12334   }
12335
12336   //
12337   // Emit code to use overflow area
12338   //
12339
12340   // Load the overflow_area address into a register.
12341   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
12342   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
12343     .addOperand(Base)
12344     .addOperand(Scale)
12345     .addOperand(Index)
12346     .addDisp(Disp, 8)
12347     .addOperand(Segment)
12348     .setMemRefs(MMOBegin, MMOEnd);
12349
12350   // If we need to align it, do so. Otherwise, just copy the address
12351   // to OverflowDestReg.
12352   if (NeedsAlign) {
12353     // Align the overflow address
12354     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
12355     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
12356
12357     // aligned_addr = (addr + (align-1)) & ~(align-1)
12358     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
12359       .addReg(OverflowAddrReg)
12360       .addImm(Align-1);
12361
12362     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
12363       .addReg(TmpReg)
12364       .addImm(~(uint64_t)(Align-1));
12365   } else {
12366     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
12367       .addReg(OverflowAddrReg);
12368   }
12369
12370   // Compute the next overflow address after this argument.
12371   // (the overflow address should be kept 8-byte aligned)
12372   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
12373   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
12374     .addReg(OverflowDestReg)
12375     .addImm(ArgSizeA8);
12376
12377   // Store the new overflow address.
12378   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
12379     .addOperand(Base)
12380     .addOperand(Scale)
12381     .addOperand(Index)
12382     .addDisp(Disp, 8)
12383     .addOperand(Segment)
12384     .addReg(NextAddrReg)
12385     .setMemRefs(MMOBegin, MMOEnd);
12386
12387   // If we branched, emit the PHI to the front of endMBB.
12388   if (offsetMBB) {
12389     BuildMI(*endMBB, endMBB->begin(), DL,
12390             TII->get(X86::PHI), DestReg)
12391       .addReg(OffsetDestReg).addMBB(offsetMBB)
12392       .addReg(OverflowDestReg).addMBB(overflowMBB);
12393   }
12394
12395   // Erase the pseudo instruction
12396   MI->eraseFromParent();
12397
12398   return endMBB;
12399 }
12400
12401 MachineBasicBlock *
12402 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
12403                                                  MachineInstr *MI,
12404                                                  MachineBasicBlock *MBB) const {
12405   // Emit code to save XMM registers to the stack. The ABI says that the
12406   // number of registers to save is given in %al, so it's theoretically
12407   // possible to do an indirect jump trick to avoid saving all of them,
12408   // however this code takes a simpler approach and just executes all
12409   // of the stores if %al is non-zero. It's less code, and it's probably
12410   // easier on the hardware branch predictor, and stores aren't all that
12411   // expensive anyway.
12412
12413   // Create the new basic blocks. One block contains all the XMM stores,
12414   // and one block is the final destination regardless of whether any
12415   // stores were performed.
12416   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
12417   MachineFunction *F = MBB->getParent();
12418   MachineFunction::iterator MBBIter = MBB;
12419   ++MBBIter;
12420   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
12421   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
12422   F->insert(MBBIter, XMMSaveMBB);
12423   F->insert(MBBIter, EndMBB);
12424
12425   // Transfer the remainder of MBB and its successor edges to EndMBB.
12426   EndMBB->splice(EndMBB->begin(), MBB,
12427                  llvm::next(MachineBasicBlock::iterator(MI)),
12428                  MBB->end());
12429   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
12430
12431   // The original block will now fall through to the XMM save block.
12432   MBB->addSuccessor(XMMSaveMBB);
12433   // The XMMSaveMBB will fall through to the end block.
12434   XMMSaveMBB->addSuccessor(EndMBB);
12435
12436   // Now add the instructions.
12437   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12438   DebugLoc DL = MI->getDebugLoc();
12439
12440   unsigned CountReg = MI->getOperand(0).getReg();
12441   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
12442   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
12443
12444   if (!Subtarget->isTargetWin64()) {
12445     // If %al is 0, branch around the XMM save block.
12446     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
12447     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
12448     MBB->addSuccessor(EndMBB);
12449   }
12450
12451   unsigned MOVOpc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
12452   // In the XMM save block, save all the XMM argument registers.
12453   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
12454     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
12455     MachineMemOperand *MMO =
12456       F->getMachineMemOperand(
12457           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
12458         MachineMemOperand::MOStore,
12459         /*Size=*/16, /*Align=*/16);
12460     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
12461       .addFrameIndex(RegSaveFrameIndex)
12462       .addImm(/*Scale=*/1)
12463       .addReg(/*IndexReg=*/0)
12464       .addImm(/*Disp=*/Offset)
12465       .addReg(/*Segment=*/0)
12466       .addReg(MI->getOperand(i).getReg())
12467       .addMemOperand(MMO);
12468   }
12469
12470   MI->eraseFromParent();   // The pseudo instruction is gone now.
12471
12472   return EndMBB;
12473 }
12474
12475 // The EFLAGS operand of SelectItr might be missing a kill marker
12476 // because there were multiple uses of EFLAGS, and ISel didn't know
12477 // which to mark. Figure out whether SelectItr should have had a
12478 // kill marker, and set it if it should. Returns the correct kill
12479 // marker value.
12480 static bool checkAndUpdateEFLAGSKill(MachineBasicBlock::iterator SelectItr,
12481                                      MachineBasicBlock* BB,
12482                                      const TargetRegisterInfo* TRI) {
12483   // Scan forward through BB for a use/def of EFLAGS.
12484   MachineBasicBlock::iterator miI(llvm::next(SelectItr));
12485   for (MachineBasicBlock::iterator miE = BB->end(); miI != miE; ++miI) {
12486     const MachineInstr& mi = *miI;
12487     if (mi.readsRegister(X86::EFLAGS))
12488       return false;
12489     if (mi.definesRegister(X86::EFLAGS))
12490       break; // Should have kill-flag - update below.
12491   }
12492
12493   // If we hit the end of the block, check whether EFLAGS is live into a
12494   // successor.
12495   if (miI == BB->end()) {
12496     for (MachineBasicBlock::succ_iterator sItr = BB->succ_begin(),
12497                                           sEnd = BB->succ_end();
12498          sItr != sEnd; ++sItr) {
12499       MachineBasicBlock* succ = *sItr;
12500       if (succ->isLiveIn(X86::EFLAGS))
12501         return false;
12502     }
12503   }
12504
12505   // We found a def, or hit the end of the basic block and EFLAGS wasn't live
12506   // out. SelectMI should have a kill flag on EFLAGS.
12507   SelectItr->addRegisterKilled(X86::EFLAGS, TRI);
12508   return true;
12509 }
12510
12511 MachineBasicBlock *
12512 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
12513                                      MachineBasicBlock *BB) const {
12514   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12515   DebugLoc DL = MI->getDebugLoc();
12516
12517   // To "insert" a SELECT_CC instruction, we actually have to insert the
12518   // diamond control-flow pattern.  The incoming instruction knows the
12519   // destination vreg to set, the condition code register to branch on, the
12520   // true/false values to select between, and a branch opcode to use.
12521   const BasicBlock *LLVM_BB = BB->getBasicBlock();
12522   MachineFunction::iterator It = BB;
12523   ++It;
12524
12525   //  thisMBB:
12526   //  ...
12527   //   TrueVal = ...
12528   //   cmpTY ccX, r1, r2
12529   //   bCC copy1MBB
12530   //   fallthrough --> copy0MBB
12531   MachineBasicBlock *thisMBB = BB;
12532   MachineFunction *F = BB->getParent();
12533   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
12534   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
12535   F->insert(It, copy0MBB);
12536   F->insert(It, sinkMBB);
12537
12538   // If the EFLAGS register isn't dead in the terminator, then claim that it's
12539   // live into the sink and copy blocks.
12540   const TargetRegisterInfo* TRI = getTargetMachine().getRegisterInfo();
12541   if (!MI->killsRegister(X86::EFLAGS) &&
12542       !checkAndUpdateEFLAGSKill(MI, BB, TRI)) {
12543     copy0MBB->addLiveIn(X86::EFLAGS);
12544     sinkMBB->addLiveIn(X86::EFLAGS);
12545   }
12546
12547   // Transfer the remainder of BB and its successor edges to sinkMBB.
12548   sinkMBB->splice(sinkMBB->begin(), BB,
12549                   llvm::next(MachineBasicBlock::iterator(MI)),
12550                   BB->end());
12551   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
12552
12553   // Add the true and fallthrough blocks as its successors.
12554   BB->addSuccessor(copy0MBB);
12555   BB->addSuccessor(sinkMBB);
12556
12557   // Create the conditional branch instruction.
12558   unsigned Opc =
12559     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
12560   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
12561
12562   //  copy0MBB:
12563   //   %FalseValue = ...
12564   //   # fallthrough to sinkMBB
12565   copy0MBB->addSuccessor(sinkMBB);
12566
12567   //  sinkMBB:
12568   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
12569   //  ...
12570   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12571           TII->get(X86::PHI), MI->getOperand(0).getReg())
12572     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
12573     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
12574
12575   MI->eraseFromParent();   // The pseudo instruction is gone now.
12576   return sinkMBB;
12577 }
12578
12579 MachineBasicBlock *
12580 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
12581                                         bool Is64Bit) const {
12582   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12583   DebugLoc DL = MI->getDebugLoc();
12584   MachineFunction *MF = BB->getParent();
12585   const BasicBlock *LLVM_BB = BB->getBasicBlock();
12586
12587   assert(getTargetMachine().Options.EnableSegmentedStacks);
12588
12589   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
12590   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
12591
12592   // BB:
12593   //  ... [Till the alloca]
12594   // If stacklet is not large enough, jump to mallocMBB
12595   //
12596   // bumpMBB:
12597   //  Allocate by subtracting from RSP
12598   //  Jump to continueMBB
12599   //
12600   // mallocMBB:
12601   //  Allocate by call to runtime
12602   //
12603   // continueMBB:
12604   //  ...
12605   //  [rest of original BB]
12606   //
12607
12608   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12609   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12610   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12611
12612   MachineRegisterInfo &MRI = MF->getRegInfo();
12613   const TargetRegisterClass *AddrRegClass =
12614     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
12615
12616   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12617     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12618     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
12619     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
12620     sizeVReg = MI->getOperand(1).getReg(),
12621     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
12622
12623   MachineFunction::iterator MBBIter = BB;
12624   ++MBBIter;
12625
12626   MF->insert(MBBIter, bumpMBB);
12627   MF->insert(MBBIter, mallocMBB);
12628   MF->insert(MBBIter, continueMBB);
12629
12630   continueMBB->splice(continueMBB->begin(), BB, llvm::next
12631                       (MachineBasicBlock::iterator(MI)), BB->end());
12632   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
12633
12634   // Add code to the main basic block to check if the stack limit has been hit,
12635   // and if so, jump to mallocMBB otherwise to bumpMBB.
12636   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
12637   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
12638     .addReg(tmpSPVReg).addReg(sizeVReg);
12639   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
12640     .addReg(0).addImm(1).addReg(0).addImm(TlsOffset).addReg(TlsReg)
12641     .addReg(SPLimitVReg);
12642   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
12643
12644   // bumpMBB simply decreases the stack pointer, since we know the current
12645   // stacklet has enough space.
12646   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
12647     .addReg(SPLimitVReg);
12648   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
12649     .addReg(SPLimitVReg);
12650   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12651
12652   // Calls into a routine in libgcc to allocate more space from the heap.
12653   const uint32_t *RegMask =
12654     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
12655   if (Is64Bit) {
12656     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
12657       .addReg(sizeVReg);
12658     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
12659       .addExternalSymbol("__morestack_allocate_stack_space")
12660       .addRegMask(RegMask)
12661       .addReg(X86::RDI, RegState::Implicit)
12662       .addReg(X86::RAX, RegState::ImplicitDefine);
12663   } else {
12664     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
12665       .addImm(12);
12666     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
12667     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
12668       .addExternalSymbol("__morestack_allocate_stack_space")
12669       .addRegMask(RegMask)
12670       .addReg(X86::EAX, RegState::ImplicitDefine);
12671   }
12672
12673   if (!Is64Bit)
12674     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
12675       .addImm(16);
12676
12677   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
12678     .addReg(Is64Bit ? X86::RAX : X86::EAX);
12679   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12680
12681   // Set up the CFG correctly.
12682   BB->addSuccessor(bumpMBB);
12683   BB->addSuccessor(mallocMBB);
12684   mallocMBB->addSuccessor(continueMBB);
12685   bumpMBB->addSuccessor(continueMBB);
12686
12687   // Take care of the PHI nodes.
12688   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
12689           MI->getOperand(0).getReg())
12690     .addReg(mallocPtrVReg).addMBB(mallocMBB)
12691     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
12692
12693   // Delete the original pseudo instruction.
12694   MI->eraseFromParent();
12695
12696   // And we're done.
12697   return continueMBB;
12698 }
12699
12700 MachineBasicBlock *
12701 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
12702                                           MachineBasicBlock *BB) const {
12703   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12704   DebugLoc DL = MI->getDebugLoc();
12705
12706   assert(!Subtarget->isTargetEnvMacho());
12707
12708   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
12709   // non-trivial part is impdef of ESP.
12710
12711   if (Subtarget->isTargetWin64()) {
12712     if (Subtarget->isTargetCygMing()) {
12713       // ___chkstk(Mingw64):
12714       // Clobbers R10, R11, RAX and EFLAGS.
12715       // Updates RSP.
12716       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12717         .addExternalSymbol("___chkstk")
12718         .addReg(X86::RAX, RegState::Implicit)
12719         .addReg(X86::RSP, RegState::Implicit)
12720         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
12721         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
12722         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12723     } else {
12724       // __chkstk(MSVCRT): does not update stack pointer.
12725       // Clobbers R10, R11 and EFLAGS.
12726       // FIXME: RAX(allocated size) might be reused and not killed.
12727       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12728         .addExternalSymbol("__chkstk")
12729         .addReg(X86::RAX, RegState::Implicit)
12730         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12731       // RAX has the offset to subtracted from RSP.
12732       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
12733         .addReg(X86::RSP)
12734         .addReg(X86::RAX);
12735     }
12736   } else {
12737     const char *StackProbeSymbol =
12738       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
12739
12740     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
12741       .addExternalSymbol(StackProbeSymbol)
12742       .addReg(X86::EAX, RegState::Implicit)
12743       .addReg(X86::ESP, RegState::Implicit)
12744       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
12745       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
12746       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12747   }
12748
12749   MI->eraseFromParent();   // The pseudo instruction is gone now.
12750   return BB;
12751 }
12752
12753 MachineBasicBlock *
12754 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
12755                                       MachineBasicBlock *BB) const {
12756   // This is pretty easy.  We're taking the value that we received from
12757   // our load from the relocation, sticking it in either RDI (x86-64)
12758   // or EAX and doing an indirect call.  The return value will then
12759   // be in the normal return register.
12760   const X86InstrInfo *TII
12761     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
12762   DebugLoc DL = MI->getDebugLoc();
12763   MachineFunction *F = BB->getParent();
12764
12765   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
12766   assert(MI->getOperand(3).isGlobal() && "This should be a global");
12767
12768   // Get a register mask for the lowered call.
12769   // FIXME: The 32-bit calls have non-standard calling conventions. Use a
12770   // proper register mask.
12771   const uint32_t *RegMask =
12772     getTargetMachine().getRegisterInfo()->getCallPreservedMask(CallingConv::C);
12773   if (Subtarget->is64Bit()) {
12774     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12775                                       TII->get(X86::MOV64rm), X86::RDI)
12776     .addReg(X86::RIP)
12777     .addImm(0).addReg(0)
12778     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12779                       MI->getOperand(3).getTargetFlags())
12780     .addReg(0);
12781     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
12782     addDirectMem(MIB, X86::RDI);
12783     MIB.addReg(X86::RAX, RegState::ImplicitDefine).addRegMask(RegMask);
12784   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
12785     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12786                                       TII->get(X86::MOV32rm), X86::EAX)
12787     .addReg(0)
12788     .addImm(0).addReg(0)
12789     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12790                       MI->getOperand(3).getTargetFlags())
12791     .addReg(0);
12792     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
12793     addDirectMem(MIB, X86::EAX);
12794     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
12795   } else {
12796     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12797                                       TII->get(X86::MOV32rm), X86::EAX)
12798     .addReg(TII->getGlobalBaseReg(F))
12799     .addImm(0).addReg(0)
12800     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12801                       MI->getOperand(3).getTargetFlags())
12802     .addReg(0);
12803     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
12804     addDirectMem(MIB, X86::EAX);
12805     MIB.addReg(X86::EAX, RegState::ImplicitDefine).addRegMask(RegMask);
12806   }
12807
12808   MI->eraseFromParent(); // The pseudo instruction is gone now.
12809   return BB;
12810 }
12811
12812 MachineBasicBlock *
12813 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
12814                                                MachineBasicBlock *BB) const {
12815   switch (MI->getOpcode()) {
12816   default: llvm_unreachable("Unexpected instr type to insert");
12817   case X86::TAILJMPd64:
12818   case X86::TAILJMPr64:
12819   case X86::TAILJMPm64:
12820     llvm_unreachable("TAILJMP64 would not be touched here.");
12821   case X86::TCRETURNdi64:
12822   case X86::TCRETURNri64:
12823   case X86::TCRETURNmi64:
12824     return BB;
12825   case X86::WIN_ALLOCA:
12826     return EmitLoweredWinAlloca(MI, BB);
12827   case X86::SEG_ALLOCA_32:
12828     return EmitLoweredSegAlloca(MI, BB, false);
12829   case X86::SEG_ALLOCA_64:
12830     return EmitLoweredSegAlloca(MI, BB, true);
12831   case X86::TLSCall_32:
12832   case X86::TLSCall_64:
12833     return EmitLoweredTLSCall(MI, BB);
12834   case X86::CMOV_GR8:
12835   case X86::CMOV_FR32:
12836   case X86::CMOV_FR64:
12837   case X86::CMOV_V4F32:
12838   case X86::CMOV_V2F64:
12839   case X86::CMOV_V2I64:
12840   case X86::CMOV_V8F32:
12841   case X86::CMOV_V4F64:
12842   case X86::CMOV_V4I64:
12843   case X86::CMOV_GR16:
12844   case X86::CMOV_GR32:
12845   case X86::CMOV_RFP32:
12846   case X86::CMOV_RFP64:
12847   case X86::CMOV_RFP80:
12848     return EmitLoweredSelect(MI, BB);
12849
12850   case X86::FP32_TO_INT16_IN_MEM:
12851   case X86::FP32_TO_INT32_IN_MEM:
12852   case X86::FP32_TO_INT64_IN_MEM:
12853   case X86::FP64_TO_INT16_IN_MEM:
12854   case X86::FP64_TO_INT32_IN_MEM:
12855   case X86::FP64_TO_INT64_IN_MEM:
12856   case X86::FP80_TO_INT16_IN_MEM:
12857   case X86::FP80_TO_INT32_IN_MEM:
12858   case X86::FP80_TO_INT64_IN_MEM: {
12859     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12860     DebugLoc DL = MI->getDebugLoc();
12861
12862     // Change the floating point control register to use "round towards zero"
12863     // mode when truncating to an integer value.
12864     MachineFunction *F = BB->getParent();
12865     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
12866     addFrameReference(BuildMI(*BB, MI, DL,
12867                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
12868
12869     // Load the old value of the high byte of the control word...
12870     unsigned OldCW =
12871       F->getRegInfo().createVirtualRegister(&X86::GR16RegClass);
12872     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
12873                       CWFrameIdx);
12874
12875     // Set the high part to be round to zero...
12876     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
12877       .addImm(0xC7F);
12878
12879     // Reload the modified control word now...
12880     addFrameReference(BuildMI(*BB, MI, DL,
12881                               TII->get(X86::FLDCW16m)), CWFrameIdx);
12882
12883     // Restore the memory image of control word to original value
12884     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
12885       .addReg(OldCW);
12886
12887     // Get the X86 opcode to use.
12888     unsigned Opc;
12889     switch (MI->getOpcode()) {
12890     default: llvm_unreachable("illegal opcode!");
12891     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
12892     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
12893     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
12894     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
12895     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
12896     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
12897     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
12898     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
12899     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
12900     }
12901
12902     X86AddressMode AM;
12903     MachineOperand &Op = MI->getOperand(0);
12904     if (Op.isReg()) {
12905       AM.BaseType = X86AddressMode::RegBase;
12906       AM.Base.Reg = Op.getReg();
12907     } else {
12908       AM.BaseType = X86AddressMode::FrameIndexBase;
12909       AM.Base.FrameIndex = Op.getIndex();
12910     }
12911     Op = MI->getOperand(1);
12912     if (Op.isImm())
12913       AM.Scale = Op.getImm();
12914     Op = MI->getOperand(2);
12915     if (Op.isImm())
12916       AM.IndexReg = Op.getImm();
12917     Op = MI->getOperand(3);
12918     if (Op.isGlobal()) {
12919       AM.GV = Op.getGlobal();
12920     } else {
12921       AM.Disp = Op.getImm();
12922     }
12923     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
12924                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
12925
12926     // Reload the original control word now.
12927     addFrameReference(BuildMI(*BB, MI, DL,
12928                               TII->get(X86::FLDCW16m)), CWFrameIdx);
12929
12930     MI->eraseFromParent();   // The pseudo instruction is gone now.
12931     return BB;
12932   }
12933     // String/text processing lowering.
12934   case X86::PCMPISTRM128REG:
12935   case X86::VPCMPISTRM128REG:
12936   case X86::PCMPISTRM128MEM:
12937   case X86::VPCMPISTRM128MEM:
12938   case X86::PCMPESTRM128REG:
12939   case X86::VPCMPESTRM128REG:
12940   case X86::PCMPESTRM128MEM:
12941   case X86::VPCMPESTRM128MEM: {
12942     unsigned NumArgs;
12943     bool MemArg;
12944     switch (MI->getOpcode()) {
12945     default: llvm_unreachable("illegal opcode!");
12946     case X86::PCMPISTRM128REG:
12947     case X86::VPCMPISTRM128REG:
12948       NumArgs = 3; MemArg = false; break;
12949     case X86::PCMPISTRM128MEM:
12950     case X86::VPCMPISTRM128MEM:
12951       NumArgs = 3; MemArg = true; break;
12952     case X86::PCMPESTRM128REG:
12953     case X86::VPCMPESTRM128REG:
12954       NumArgs = 5; MemArg = false; break;
12955     case X86::PCMPESTRM128MEM:
12956     case X86::VPCMPESTRM128MEM:
12957       NumArgs = 5; MemArg = true; break;
12958     }
12959     return EmitPCMP(MI, BB, NumArgs, MemArg);
12960   }
12961
12962     // Thread synchronization.
12963   case X86::MONITOR:
12964     return EmitMonitor(MI, BB);
12965
12966     // Atomic Lowering.
12967   case X86::ATOMMIN32:
12968   case X86::ATOMMAX32:
12969   case X86::ATOMUMIN32:
12970   case X86::ATOMUMAX32:
12971   case X86::ATOMMIN16:
12972   case X86::ATOMMAX16:
12973   case X86::ATOMUMIN16:
12974   case X86::ATOMUMAX16:
12975   case X86::ATOMMIN64:
12976   case X86::ATOMMAX64:
12977   case X86::ATOMUMIN64:
12978   case X86::ATOMUMAX64: {
12979     unsigned Opc;
12980     switch (MI->getOpcode()) {
12981     default: llvm_unreachable("illegal opcode!");
12982     case X86::ATOMMIN32:  Opc = X86::CMOVL32rr; break;
12983     case X86::ATOMMAX32:  Opc = X86::CMOVG32rr; break;
12984     case X86::ATOMUMIN32: Opc = X86::CMOVB32rr; break;
12985     case X86::ATOMUMAX32: Opc = X86::CMOVA32rr; break;
12986     case X86::ATOMMIN16:  Opc = X86::CMOVL16rr; break;
12987     case X86::ATOMMAX16:  Opc = X86::CMOVG16rr; break;
12988     case X86::ATOMUMIN16: Opc = X86::CMOVB16rr; break;
12989     case X86::ATOMUMAX16: Opc = X86::CMOVA16rr; break;
12990     case X86::ATOMMIN64:  Opc = X86::CMOVL64rr; break;
12991     case X86::ATOMMAX64:  Opc = X86::CMOVG64rr; break;
12992     case X86::ATOMUMIN64: Opc = X86::CMOVB64rr; break;
12993     case X86::ATOMUMAX64: Opc = X86::CMOVA64rr; break;
12994     // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
12995     }
12996     return EmitAtomicMinMaxWithCustomInserter(MI, BB, Opc);
12997   }
12998
12999   case X86::ATOMAND32:
13000   case X86::ATOMOR32:
13001   case X86::ATOMXOR32:
13002   case X86::ATOMNAND32: {
13003     bool Invert = false;
13004     unsigned RegOpc, ImmOpc;
13005     switch (MI->getOpcode()) {
13006     default: llvm_unreachable("illegal opcode!");
13007     case X86::ATOMAND32:
13008       RegOpc = X86::AND32rr; ImmOpc = X86::AND32ri; break;
13009     case X86::ATOMOR32:
13010       RegOpc = X86::OR32rr;  ImmOpc = X86::OR32ri; break;
13011     case X86::ATOMXOR32:
13012       RegOpc = X86::XOR32rr; ImmOpc = X86::XOR32ri; break;
13013     case X86::ATOMNAND32:
13014       RegOpc = X86::AND32rr; ImmOpc = X86::AND32ri; Invert = true; break;
13015     }
13016     return EmitAtomicBitwiseWithCustomInserter(MI, BB, RegOpc, ImmOpc,
13017                                                X86::MOV32rm, X86::LCMPXCHG32,
13018                                                X86::NOT32r, X86::EAX,
13019                                                &X86::GR32RegClass, Invert);
13020   }
13021
13022   case X86::ATOMAND16:
13023   case X86::ATOMOR16:
13024   case X86::ATOMXOR16:
13025   case X86::ATOMNAND16: {
13026     bool Invert = false;
13027     unsigned RegOpc, ImmOpc;
13028     switch (MI->getOpcode()) {
13029     default: llvm_unreachable("illegal opcode!");
13030     case X86::ATOMAND16:
13031       RegOpc = X86::AND16rr; ImmOpc = X86::AND16ri; break;
13032     case X86::ATOMOR16:
13033       RegOpc = X86::OR16rr;  ImmOpc = X86::OR16ri; break;
13034     case X86::ATOMXOR16:
13035       RegOpc = X86::XOR16rr; ImmOpc = X86::XOR16ri; break;
13036     case X86::ATOMNAND16:
13037       RegOpc = X86::AND16rr; ImmOpc = X86::AND16ri; Invert = true; break;
13038     }
13039     return EmitAtomicBitwiseWithCustomInserter(MI, BB, RegOpc, ImmOpc,
13040                                                X86::MOV16rm, X86::LCMPXCHG16,
13041                                                X86::NOT16r, X86::AX,
13042                                                &X86::GR16RegClass, Invert);
13043   }
13044
13045   case X86::ATOMAND8:
13046   case X86::ATOMOR8:
13047   case X86::ATOMXOR8:
13048   case X86::ATOMNAND8: {
13049     bool Invert = false;
13050     unsigned RegOpc, ImmOpc;
13051     switch (MI->getOpcode()) {
13052     default: llvm_unreachable("illegal opcode!");
13053     case X86::ATOMAND8:
13054       RegOpc = X86::AND8rr; ImmOpc = X86::AND8ri; break;
13055     case X86::ATOMOR8:
13056       RegOpc = X86::OR8rr;  ImmOpc = X86::OR8ri; break;
13057     case X86::ATOMXOR8:
13058       RegOpc = X86::XOR8rr; ImmOpc = X86::XOR8ri; break;
13059     case X86::ATOMNAND8:
13060       RegOpc = X86::AND8rr; ImmOpc = X86::AND8ri; Invert = true; break;
13061     }
13062     return EmitAtomicBitwiseWithCustomInserter(MI, BB, RegOpc, ImmOpc,
13063                                                X86::MOV8rm, X86::LCMPXCHG8,
13064                                                X86::NOT8r, X86::AL,
13065                                                &X86::GR8RegClass, Invert);
13066   }
13067
13068   // This group is for 64-bit host.
13069   case X86::ATOMAND64:
13070   case X86::ATOMOR64:
13071   case X86::ATOMXOR64:
13072   case X86::ATOMNAND64: {
13073     bool Invert = false;
13074     unsigned RegOpc, ImmOpc;
13075     switch (MI->getOpcode()) {
13076     default: llvm_unreachable("illegal opcode!");
13077     case X86::ATOMAND64:
13078       RegOpc = X86::AND64rr; ImmOpc = X86::AND64ri32; break;
13079     case X86::ATOMOR64:
13080       RegOpc = X86::OR64rr;  ImmOpc = X86::OR64ri32; break;
13081     case X86::ATOMXOR64:
13082       RegOpc = X86::XOR64rr; ImmOpc = X86::XOR64ri32; break;
13083     case X86::ATOMNAND64:
13084       RegOpc = X86::AND64rr; ImmOpc = X86::AND64ri32; Invert = true; break;
13085     }
13086     return EmitAtomicBitwiseWithCustomInserter(MI, BB, RegOpc, ImmOpc,
13087                                                X86::MOV64rm, X86::LCMPXCHG64,
13088                                                X86::NOT64r, X86::RAX,
13089                                                &X86::GR64RegClass, Invert);
13090   }
13091
13092   // This group does 64-bit operations on a 32-bit host.
13093   case X86::ATOMAND6432:
13094   case X86::ATOMOR6432:
13095   case X86::ATOMXOR6432:
13096   case X86::ATOMNAND6432:
13097   case X86::ATOMADD6432:
13098   case X86::ATOMSUB6432:
13099   case X86::ATOMSWAP6432: {
13100     bool Invert = false;
13101     unsigned RegOpcL, RegOpcH, ImmOpcL, ImmOpcH;
13102     switch (MI->getOpcode()) {
13103     default: llvm_unreachable("illegal opcode!");
13104     case X86::ATOMAND6432:
13105       RegOpcL = RegOpcH = X86::AND32rr;
13106       ImmOpcL = ImmOpcH = X86::AND32ri;
13107       break;
13108     case X86::ATOMOR6432:
13109       RegOpcL = RegOpcH = X86::OR32rr;
13110       ImmOpcL = ImmOpcH = X86::OR32ri;
13111       break;
13112     case X86::ATOMXOR6432:
13113       RegOpcL = RegOpcH = X86::XOR32rr;
13114       ImmOpcL = ImmOpcH = X86::XOR32ri;
13115       break;
13116     case X86::ATOMNAND6432:
13117       RegOpcL = RegOpcH = X86::AND32rr;
13118       ImmOpcL = ImmOpcH = X86::AND32ri;
13119       Invert = true;
13120       break;
13121     case X86::ATOMADD6432:
13122       RegOpcL = X86::ADD32rr; RegOpcH = X86::ADC32rr;
13123       ImmOpcL = X86::ADD32ri; ImmOpcH = X86::ADC32ri;
13124       break;
13125     case X86::ATOMSUB6432:
13126       RegOpcL = X86::SUB32rr; RegOpcH = X86::SBB32rr;
13127       ImmOpcL = X86::SUB32ri; ImmOpcH = X86::SBB32ri;
13128       break;
13129     case X86::ATOMSWAP6432:
13130       RegOpcL = RegOpcH = X86::MOV32rr;
13131       ImmOpcL = ImmOpcH = X86::MOV32ri;
13132       break;
13133     }
13134     return EmitAtomicBit6432WithCustomInserter(MI, BB, RegOpcL, RegOpcH,
13135                                                ImmOpcL, ImmOpcH, Invert);
13136   }
13137
13138   case X86::VASTART_SAVE_XMM_REGS:
13139     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
13140
13141   case X86::VAARG_64:
13142     return EmitVAARG64WithCustomInserter(MI, BB);
13143   }
13144 }
13145
13146 //===----------------------------------------------------------------------===//
13147 //                           X86 Optimization Hooks
13148 //===----------------------------------------------------------------------===//
13149
13150 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
13151                                                        APInt &KnownZero,
13152                                                        APInt &KnownOne,
13153                                                        const SelectionDAG &DAG,
13154                                                        unsigned Depth) const {
13155   unsigned BitWidth = KnownZero.getBitWidth();
13156   unsigned Opc = Op.getOpcode();
13157   assert((Opc >= ISD::BUILTIN_OP_END ||
13158           Opc == ISD::INTRINSIC_WO_CHAIN ||
13159           Opc == ISD::INTRINSIC_W_CHAIN ||
13160           Opc == ISD::INTRINSIC_VOID) &&
13161          "Should use MaskedValueIsZero if you don't know whether Op"
13162          " is a target node!");
13163
13164   KnownZero = KnownOne = APInt(BitWidth, 0);   // Don't know anything.
13165   switch (Opc) {
13166   default: break;
13167   case X86ISD::ADD:
13168   case X86ISD::SUB:
13169   case X86ISD::ADC:
13170   case X86ISD::SBB:
13171   case X86ISD::SMUL:
13172   case X86ISD::UMUL:
13173   case X86ISD::INC:
13174   case X86ISD::DEC:
13175   case X86ISD::OR:
13176   case X86ISD::XOR:
13177   case X86ISD::AND:
13178     // These nodes' second result is a boolean.
13179     if (Op.getResNo() == 0)
13180       break;
13181     // Fallthrough
13182   case X86ISD::SETCC:
13183     KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1);
13184     break;
13185   case ISD::INTRINSIC_WO_CHAIN: {
13186     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
13187     unsigned NumLoBits = 0;
13188     switch (IntId) {
13189     default: break;
13190     case Intrinsic::x86_sse_movmsk_ps:
13191     case Intrinsic::x86_avx_movmsk_ps_256:
13192     case Intrinsic::x86_sse2_movmsk_pd:
13193     case Intrinsic::x86_avx_movmsk_pd_256:
13194     case Intrinsic::x86_mmx_pmovmskb:
13195     case Intrinsic::x86_sse2_pmovmskb_128:
13196     case Intrinsic::x86_avx2_pmovmskb: {
13197       // High bits of movmskp{s|d}, pmovmskb are known zero.
13198       switch (IntId) {
13199         default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
13200         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
13201         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
13202         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
13203         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
13204         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
13205         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
13206         case Intrinsic::x86_avx2_pmovmskb:      NumLoBits = 32; break;
13207       }
13208       KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - NumLoBits);
13209       break;
13210     }
13211     }
13212     break;
13213   }
13214   }
13215 }
13216
13217 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
13218                                                          unsigned Depth) const {
13219   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
13220   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
13221     return Op.getValueType().getScalarType().getSizeInBits();
13222
13223   // Fallback case.
13224   return 1;
13225 }
13226
13227 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
13228 /// node is a GlobalAddress + offset.
13229 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
13230                                        const GlobalValue* &GA,
13231                                        int64_t &Offset) const {
13232   if (N->getOpcode() == X86ISD::Wrapper) {
13233     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
13234       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
13235       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
13236       return true;
13237     }
13238   }
13239   return TargetLowering::isGAPlusOffset(N, GA, Offset);
13240 }
13241
13242 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
13243 /// same as extracting the high 128-bit part of 256-bit vector and then
13244 /// inserting the result into the low part of a new 256-bit vector
13245 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
13246   EVT VT = SVOp->getValueType(0);
13247   unsigned NumElems = VT.getVectorNumElements();
13248
13249   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
13250   for (unsigned i = 0, j = NumElems/2; i != NumElems/2; ++i, ++j)
13251     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
13252         SVOp->getMaskElt(j) >= 0)
13253       return false;
13254
13255   return true;
13256 }
13257
13258 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
13259 /// same as extracting the low 128-bit part of 256-bit vector and then
13260 /// inserting the result into the high part of a new 256-bit vector
13261 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
13262   EVT VT = SVOp->getValueType(0);
13263   unsigned NumElems = VT.getVectorNumElements();
13264
13265   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
13266   for (unsigned i = NumElems/2, j = 0; i != NumElems; ++i, ++j)
13267     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
13268         SVOp->getMaskElt(j) >= 0)
13269       return false;
13270
13271   return true;
13272 }
13273
13274 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
13275 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
13276                                         TargetLowering::DAGCombinerInfo &DCI,
13277                                         const X86Subtarget* Subtarget) {
13278   DebugLoc dl = N->getDebugLoc();
13279   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
13280   SDValue V1 = SVOp->getOperand(0);
13281   SDValue V2 = SVOp->getOperand(1);
13282   EVT VT = SVOp->getValueType(0);
13283   unsigned NumElems = VT.getVectorNumElements();
13284
13285   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
13286       V2.getOpcode() == ISD::CONCAT_VECTORS) {
13287     //
13288     //                   0,0,0,...
13289     //                      |
13290     //    V      UNDEF    BUILD_VECTOR    UNDEF
13291     //     \      /           \           /
13292     //  CONCAT_VECTOR         CONCAT_VECTOR
13293     //         \                  /
13294     //          \                /
13295     //          RESULT: V + zero extended
13296     //
13297     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
13298         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
13299         V1.getOperand(1).getOpcode() != ISD::UNDEF)
13300       return SDValue();
13301
13302     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
13303       return SDValue();
13304
13305     // To match the shuffle mask, the first half of the mask should
13306     // be exactly the first vector, and all the rest a splat with the
13307     // first element of the second one.
13308     for (unsigned i = 0; i != NumElems/2; ++i)
13309       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
13310           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
13311         return SDValue();
13312
13313     // If V1 is coming from a vector load then just fold to a VZEXT_LOAD.
13314     if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(V1.getOperand(0))) {
13315       if (Ld->hasNUsesOfValue(1, 0)) {
13316         SDVTList Tys = DAG.getVTList(MVT::v4i64, MVT::Other);
13317         SDValue Ops[] = { Ld->getChain(), Ld->getBasePtr() };
13318         SDValue ResNode =
13319           DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2,
13320                                   Ld->getMemoryVT(),
13321                                   Ld->getPointerInfo(),
13322                                   Ld->getAlignment(),
13323                                   false/*isVolatile*/, true/*ReadMem*/,
13324                                   false/*WriteMem*/);
13325         return DAG.getNode(ISD::BITCAST, dl, VT, ResNode);
13326       }
13327     }
13328
13329     // Emit a zeroed vector and insert the desired subvector on its
13330     // first half.
13331     SDValue Zeros = getZeroVector(VT, Subtarget, DAG, dl);
13332     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0), 0, DAG, dl);
13333     return DCI.CombineTo(N, InsV);
13334   }
13335
13336   //===--------------------------------------------------------------------===//
13337   // Combine some shuffles into subvector extracts and inserts:
13338   //
13339
13340   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
13341   if (isShuffleHigh128VectorInsertLow(SVOp)) {
13342     SDValue V = Extract128BitVector(V1, NumElems/2, DAG, dl);
13343     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, 0, DAG, dl);
13344     return DCI.CombineTo(N, InsV);
13345   }
13346
13347   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
13348   if (isShuffleLow128VectorInsertHigh(SVOp)) {
13349     SDValue V = Extract128BitVector(V1, 0, DAG, dl);
13350     SDValue InsV = Insert128BitVector(DAG.getUNDEF(VT), V, NumElems/2, DAG, dl);
13351     return DCI.CombineTo(N, InsV);
13352   }
13353
13354   return SDValue();
13355 }
13356
13357 /// PerformShuffleCombine - Performs several different shuffle combines.
13358 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
13359                                      TargetLowering::DAGCombinerInfo &DCI,
13360                                      const X86Subtarget *Subtarget) {
13361   DebugLoc dl = N->getDebugLoc();
13362   EVT VT = N->getValueType(0);
13363
13364   // Don't create instructions with illegal types after legalize types has run.
13365   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13366   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
13367     return SDValue();
13368
13369   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
13370   if (Subtarget->hasAVX() && VT.is256BitVector() &&
13371       N->getOpcode() == ISD::VECTOR_SHUFFLE)
13372     return PerformShuffleCombine256(N, DAG, DCI, Subtarget);
13373
13374   // Only handle 128 wide vector from here on.
13375   if (!VT.is128BitVector())
13376     return SDValue();
13377
13378   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
13379   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
13380   // consecutive, non-overlapping, and in the right order.
13381   SmallVector<SDValue, 16> Elts;
13382   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
13383     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
13384
13385   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
13386 }
13387
13388
13389 /// DCI, PerformTruncateCombine - Converts truncate operation to
13390 /// a sequence of vector shuffle operations.
13391 /// It is possible when we truncate 256-bit vector to 128-bit vector
13392
13393 SDValue X86TargetLowering::PerformTruncateCombine(SDNode *N, SelectionDAG &DAG,
13394                                                   DAGCombinerInfo &DCI) const {
13395   if (!DCI.isBeforeLegalizeOps())
13396     return SDValue();
13397
13398   if (!Subtarget->hasAVX())
13399     return SDValue();
13400
13401   EVT VT = N->getValueType(0);
13402   SDValue Op = N->getOperand(0);
13403   EVT OpVT = Op.getValueType();
13404   DebugLoc dl = N->getDebugLoc();
13405
13406   if ((VT == MVT::v4i32) && (OpVT == MVT::v4i64)) {
13407
13408     if (Subtarget->hasAVX2()) {
13409       // AVX2: v4i64 -> v4i32
13410
13411       // VPERMD
13412       static const int ShufMask[] = {0, 2, 4, 6, -1, -1, -1, -1};
13413
13414       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v8i32, Op);
13415       Op = DAG.getVectorShuffle(MVT::v8i32, dl, Op, DAG.getUNDEF(MVT::v8i32),
13416                                 ShufMask);
13417
13418       return DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, VT, Op,
13419                          DAG.getIntPtrConstant(0));
13420     }
13421
13422     // AVX: v4i64 -> v4i32
13423     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
13424                                DAG.getIntPtrConstant(0));
13425
13426     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
13427                                DAG.getIntPtrConstant(2));
13428
13429     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpLo);
13430     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpHi);
13431
13432     // PSHUFD
13433     static const int ShufMask1[] = {0, 2, 0, 0};
13434
13435     SDValue Undef = DAG.getUNDEF(VT);
13436     OpLo = DAG.getVectorShuffle(VT, dl, OpLo, Undef, ShufMask1);
13437     OpHi = DAG.getVectorShuffle(VT, dl, OpHi, Undef, ShufMask1);
13438
13439     // MOVLHPS
13440     static const int ShufMask2[] = {0, 1, 4, 5};
13441
13442     return DAG.getVectorShuffle(VT, dl, OpLo, OpHi, ShufMask2);
13443   }
13444
13445   if ((VT == MVT::v8i16) && (OpVT == MVT::v8i32)) {
13446
13447     if (Subtarget->hasAVX2()) {
13448       // AVX2: v8i32 -> v8i16
13449
13450       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v32i8, Op);
13451
13452       // PSHUFB
13453       SmallVector<SDValue,32> pshufbMask;
13454       for (unsigned i = 0; i < 2; ++i) {
13455         pshufbMask.push_back(DAG.getConstant(0x0, MVT::i8));
13456         pshufbMask.push_back(DAG.getConstant(0x1, MVT::i8));
13457         pshufbMask.push_back(DAG.getConstant(0x4, MVT::i8));
13458         pshufbMask.push_back(DAG.getConstant(0x5, MVT::i8));
13459         pshufbMask.push_back(DAG.getConstant(0x8, MVT::i8));
13460         pshufbMask.push_back(DAG.getConstant(0x9, MVT::i8));
13461         pshufbMask.push_back(DAG.getConstant(0xc, MVT::i8));
13462         pshufbMask.push_back(DAG.getConstant(0xd, MVT::i8));
13463         for (unsigned j = 0; j < 8; ++j)
13464           pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
13465       }
13466       SDValue BV = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v32i8,
13467                                &pshufbMask[0], 32);
13468       Op = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v32i8, Op, BV);
13469
13470       Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4i64, Op);
13471
13472       static const int ShufMask[] = {0,  2,  -1,  -1};
13473       Op = DAG.getVectorShuffle(MVT::v4i64, dl,  Op, DAG.getUNDEF(MVT::v4i64),
13474                                 &ShufMask[0]);
13475
13476       Op = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v2i64, Op,
13477                        DAG.getIntPtrConstant(0));
13478
13479       return DAG.getNode(ISD::BITCAST, dl, VT, Op);
13480     }
13481
13482     SDValue OpLo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i32, Op,
13483                                DAG.getIntPtrConstant(0));
13484
13485     SDValue OpHi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, MVT::v4i32, Op,
13486                                DAG.getIntPtrConstant(4));
13487
13488     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpLo);
13489     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, OpHi);
13490
13491     // PSHUFB
13492     static const int ShufMask1[] = {0,  1,  4,  5,  8,  9, 12, 13,
13493                                    -1, -1, -1, -1, -1, -1, -1, -1};
13494
13495     SDValue Undef = DAG.getUNDEF(MVT::v16i8);
13496     OpLo = DAG.getVectorShuffle(MVT::v16i8, dl, OpLo, Undef, ShufMask1);
13497     OpHi = DAG.getVectorShuffle(MVT::v16i8, dl, OpHi, Undef, ShufMask1);
13498
13499     OpLo = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpLo);
13500     OpHi = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, OpHi);
13501
13502     // MOVLHPS
13503     static const int ShufMask2[] = {0, 1, 4, 5};
13504
13505     SDValue res = DAG.getVectorShuffle(MVT::v4i32, dl, OpLo, OpHi, ShufMask2);
13506     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, res);
13507   }
13508
13509   return SDValue();
13510 }
13511
13512 /// XFormVExtractWithShuffleIntoLoad - Check if a vector extract from a target
13513 /// specific shuffle of a load can be folded into a single element load.
13514 /// Similar handling for VECTOR_SHUFFLE is performed by DAGCombiner, but
13515 /// shuffles have been customed lowered so we need to handle those here.
13516 static SDValue XFormVExtractWithShuffleIntoLoad(SDNode *N, SelectionDAG &DAG,
13517                                          TargetLowering::DAGCombinerInfo &DCI) {
13518   if (DCI.isBeforeLegalizeOps())
13519     return SDValue();
13520
13521   SDValue InVec = N->getOperand(0);
13522   SDValue EltNo = N->getOperand(1);
13523
13524   if (!isa<ConstantSDNode>(EltNo))
13525     return SDValue();
13526
13527   EVT VT = InVec.getValueType();
13528
13529   bool HasShuffleIntoBitcast = false;
13530   if (InVec.getOpcode() == ISD::BITCAST) {
13531     // Don't duplicate a load with other uses.
13532     if (!InVec.hasOneUse())
13533       return SDValue();
13534     EVT BCVT = InVec.getOperand(0).getValueType();
13535     if (BCVT.getVectorNumElements() != VT.getVectorNumElements())
13536       return SDValue();
13537     InVec = InVec.getOperand(0);
13538     HasShuffleIntoBitcast = true;
13539   }
13540
13541   if (!isTargetShuffle(InVec.getOpcode()))
13542     return SDValue();
13543
13544   // Don't duplicate a load with other uses.
13545   if (!InVec.hasOneUse())
13546     return SDValue();
13547
13548   SmallVector<int, 16> ShuffleMask;
13549   bool UnaryShuffle;
13550   if (!getTargetShuffleMask(InVec.getNode(), VT.getSimpleVT(), ShuffleMask,
13551                             UnaryShuffle))
13552     return SDValue();
13553
13554   // Select the input vector, guarding against out of range extract vector.
13555   unsigned NumElems = VT.getVectorNumElements();
13556   int Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
13557   int Idx = (Elt > (int)NumElems) ? -1 : ShuffleMask[Elt];
13558   SDValue LdNode = (Idx < (int)NumElems) ? InVec.getOperand(0)
13559                                          : InVec.getOperand(1);
13560
13561   // If inputs to shuffle are the same for both ops, then allow 2 uses
13562   unsigned AllowedUses = InVec.getOperand(0) == InVec.getOperand(1) ? 2 : 1;
13563
13564   if (LdNode.getOpcode() == ISD::BITCAST) {
13565     // Don't duplicate a load with other uses.
13566     if (!LdNode.getNode()->hasNUsesOfValue(AllowedUses, 0))
13567       return SDValue();
13568
13569     AllowedUses = 1; // only allow 1 load use if we have a bitcast
13570     LdNode = LdNode.getOperand(0);
13571   }
13572
13573   if (!ISD::isNormalLoad(LdNode.getNode()))
13574     return SDValue();
13575
13576   LoadSDNode *LN0 = cast<LoadSDNode>(LdNode);
13577
13578   if (!LN0 ||!LN0->hasNUsesOfValue(AllowedUses, 0) || LN0->isVolatile())
13579     return SDValue();
13580
13581   if (HasShuffleIntoBitcast) {
13582     // If there's a bitcast before the shuffle, check if the load type and
13583     // alignment is valid.
13584     unsigned Align = LN0->getAlignment();
13585     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13586     unsigned NewAlign = TLI.getTargetData()->
13587       getABITypeAlignment(VT.getTypeForEVT(*DAG.getContext()));
13588
13589     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
13590       return SDValue();
13591   }
13592
13593   // All checks match so transform back to vector_shuffle so that DAG combiner
13594   // can finish the job
13595   DebugLoc dl = N->getDebugLoc();
13596
13597   // Create shuffle node taking into account the case that its a unary shuffle
13598   SDValue Shuffle = (UnaryShuffle) ? DAG.getUNDEF(VT) : InVec.getOperand(1);
13599   Shuffle = DAG.getVectorShuffle(InVec.getValueType(), dl,
13600                                  InVec.getOperand(0), Shuffle,
13601                                  &ShuffleMask[0]);
13602   Shuffle = DAG.getNode(ISD::BITCAST, dl, VT, Shuffle);
13603   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, N->getValueType(0), Shuffle,
13604                      EltNo);
13605 }
13606
13607 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
13608 /// generation and convert it from being a bunch of shuffles and extracts
13609 /// to a simple store and scalar loads to extract the elements.
13610 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
13611                                          TargetLowering::DAGCombinerInfo &DCI) {
13612   SDValue NewOp = XFormVExtractWithShuffleIntoLoad(N, DAG, DCI);
13613   if (NewOp.getNode())
13614     return NewOp;
13615
13616   SDValue InputVector = N->getOperand(0);
13617
13618   // Only operate on vectors of 4 elements, where the alternative shuffling
13619   // gets to be more expensive.
13620   if (InputVector.getValueType() != MVT::v4i32)
13621     return SDValue();
13622
13623   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
13624   // single use which is a sign-extend or zero-extend, and all elements are
13625   // used.
13626   SmallVector<SDNode *, 4> Uses;
13627   unsigned ExtractedElements = 0;
13628   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
13629        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
13630     if (UI.getUse().getResNo() != InputVector.getResNo())
13631       return SDValue();
13632
13633     SDNode *Extract = *UI;
13634     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
13635       return SDValue();
13636
13637     if (Extract->getValueType(0) != MVT::i32)
13638       return SDValue();
13639     if (!Extract->hasOneUse())
13640       return SDValue();
13641     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
13642         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
13643       return SDValue();
13644     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
13645       return SDValue();
13646
13647     // Record which element was extracted.
13648     ExtractedElements |=
13649       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
13650
13651     Uses.push_back(Extract);
13652   }
13653
13654   // If not all the elements were used, this may not be worthwhile.
13655   if (ExtractedElements != 15)
13656     return SDValue();
13657
13658   // Ok, we've now decided to do the transformation.
13659   DebugLoc dl = InputVector.getDebugLoc();
13660
13661   // Store the value to a temporary stack slot.
13662   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
13663   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
13664                             MachinePointerInfo(), false, false, 0);
13665
13666   // Replace each use (extract) with a load of the appropriate element.
13667   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
13668        UE = Uses.end(); UI != UE; ++UI) {
13669     SDNode *Extract = *UI;
13670
13671     // cOMpute the element's address.
13672     SDValue Idx = Extract->getOperand(1);
13673     unsigned EltSize =
13674         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
13675     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
13676     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13677     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
13678
13679     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
13680                                      StackPtr, OffsetVal);
13681
13682     // Load the scalar.
13683     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
13684                                      ScalarAddr, MachinePointerInfo(),
13685                                      false, false, false, 0);
13686
13687     // Replace the exact with the load.
13688     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
13689   }
13690
13691   // The replacement was made in place; don't return anything.
13692   return SDValue();
13693 }
13694
13695 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
13696 /// nodes.
13697 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
13698                                     TargetLowering::DAGCombinerInfo &DCI,
13699                                     const X86Subtarget *Subtarget) {
13700   DebugLoc DL = N->getDebugLoc();
13701   SDValue Cond = N->getOperand(0);
13702   // Get the LHS/RHS of the select.
13703   SDValue LHS = N->getOperand(1);
13704   SDValue RHS = N->getOperand(2);
13705   EVT VT = LHS.getValueType();
13706
13707   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
13708   // instructions match the semantics of the common C idiom x<y?x:y but not
13709   // x<=y?x:y, because of how they handle negative zero (which can be
13710   // ignored in unsafe-math mode).
13711   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
13712       VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
13713       (Subtarget->hasSSE2() ||
13714        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
13715     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
13716
13717     unsigned Opcode = 0;
13718     // Check for x CC y ? x : y.
13719     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
13720         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
13721       switch (CC) {
13722       default: break;
13723       case ISD::SETULT:
13724         // Converting this to a min would handle NaNs incorrectly, and swapping
13725         // the operands would cause it to handle comparisons between positive
13726         // and negative zero incorrectly.
13727         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
13728           if (!DAG.getTarget().Options.UnsafeFPMath &&
13729               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
13730             break;
13731           std::swap(LHS, RHS);
13732         }
13733         Opcode = X86ISD::FMIN;
13734         break;
13735       case ISD::SETOLE:
13736         // Converting this to a min would handle comparisons between positive
13737         // and negative zero incorrectly.
13738         if (!DAG.getTarget().Options.UnsafeFPMath &&
13739             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
13740           break;
13741         Opcode = X86ISD::FMIN;
13742         break;
13743       case ISD::SETULE:
13744         // Converting this to a min would handle both negative zeros and NaNs
13745         // incorrectly, but we can swap the operands to fix both.
13746         std::swap(LHS, RHS);
13747       case ISD::SETOLT:
13748       case ISD::SETLT:
13749       case ISD::SETLE:
13750         Opcode = X86ISD::FMIN;
13751         break;
13752
13753       case ISD::SETOGE:
13754         // Converting this to a max would handle comparisons between positive
13755         // and negative zero incorrectly.
13756         if (!DAG.getTarget().Options.UnsafeFPMath &&
13757             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
13758           break;
13759         Opcode = X86ISD::FMAX;
13760         break;
13761       case ISD::SETUGT:
13762         // Converting this to a max would handle NaNs incorrectly, and swapping
13763         // the operands would cause it to handle comparisons between positive
13764         // and negative zero incorrectly.
13765         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
13766           if (!DAG.getTarget().Options.UnsafeFPMath &&
13767               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
13768             break;
13769           std::swap(LHS, RHS);
13770         }
13771         Opcode = X86ISD::FMAX;
13772         break;
13773       case ISD::SETUGE:
13774         // Converting this to a max would handle both negative zeros and NaNs
13775         // incorrectly, but we can swap the operands to fix both.
13776         std::swap(LHS, RHS);
13777       case ISD::SETOGT:
13778       case ISD::SETGT:
13779       case ISD::SETGE:
13780         Opcode = X86ISD::FMAX;
13781         break;
13782       }
13783     // Check for x CC y ? y : x -- a min/max with reversed arms.
13784     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
13785                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
13786       switch (CC) {
13787       default: break;
13788       case ISD::SETOGE:
13789         // Converting this to a min would handle comparisons between positive
13790         // and negative zero incorrectly, and swapping the operands would
13791         // cause it to handle NaNs incorrectly.
13792         if (!DAG.getTarget().Options.UnsafeFPMath &&
13793             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
13794           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13795             break;
13796           std::swap(LHS, RHS);
13797         }
13798         Opcode = X86ISD::FMIN;
13799         break;
13800       case ISD::SETUGT:
13801         // Converting this to a min would handle NaNs incorrectly.
13802         if (!DAG.getTarget().Options.UnsafeFPMath &&
13803             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
13804           break;
13805         Opcode = X86ISD::FMIN;
13806         break;
13807       case ISD::SETUGE:
13808         // Converting this to a min would handle both negative zeros and NaNs
13809         // incorrectly, but we can swap the operands to fix both.
13810         std::swap(LHS, RHS);
13811       case ISD::SETOGT:
13812       case ISD::SETGT:
13813       case ISD::SETGE:
13814         Opcode = X86ISD::FMIN;
13815         break;
13816
13817       case ISD::SETULT:
13818         // Converting this to a max would handle NaNs incorrectly.
13819         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13820           break;
13821         Opcode = X86ISD::FMAX;
13822         break;
13823       case ISD::SETOLE:
13824         // Converting this to a max would handle comparisons between positive
13825         // and negative zero incorrectly, and swapping the operands would
13826         // cause it to handle NaNs incorrectly.
13827         if (!DAG.getTarget().Options.UnsafeFPMath &&
13828             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
13829           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13830             break;
13831           std::swap(LHS, RHS);
13832         }
13833         Opcode = X86ISD::FMAX;
13834         break;
13835       case ISD::SETULE:
13836         // Converting this to a max would handle both negative zeros and NaNs
13837         // incorrectly, but we can swap the operands to fix both.
13838         std::swap(LHS, RHS);
13839       case ISD::SETOLT:
13840       case ISD::SETLT:
13841       case ISD::SETLE:
13842         Opcode = X86ISD::FMAX;
13843         break;
13844       }
13845     }
13846
13847     if (Opcode)
13848       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
13849   }
13850
13851   // If this is a select between two integer constants, try to do some
13852   // optimizations.
13853   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
13854     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
13855       // Don't do this for crazy integer types.
13856       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
13857         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
13858         // so that TrueC (the true value) is larger than FalseC.
13859         bool NeedsCondInvert = false;
13860
13861         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
13862             // Efficiently invertible.
13863             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
13864              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
13865               isa<ConstantSDNode>(Cond.getOperand(1))))) {
13866           NeedsCondInvert = true;
13867           std::swap(TrueC, FalseC);
13868         }
13869
13870         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
13871         if (FalseC->getAPIntValue() == 0 &&
13872             TrueC->getAPIntValue().isPowerOf2()) {
13873           if (NeedsCondInvert) // Invert the condition if needed.
13874             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13875                                DAG.getConstant(1, Cond.getValueType()));
13876
13877           // Zero extend the condition if needed.
13878           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
13879
13880           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
13881           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
13882                              DAG.getConstant(ShAmt, MVT::i8));
13883         }
13884
13885         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
13886         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
13887           if (NeedsCondInvert) // Invert the condition if needed.
13888             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13889                                DAG.getConstant(1, Cond.getValueType()));
13890
13891           // Zero extend the condition if needed.
13892           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
13893                              FalseC->getValueType(0), Cond);
13894           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13895                              SDValue(FalseC, 0));
13896         }
13897
13898         // Optimize cases that will turn into an LEA instruction.  This requires
13899         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
13900         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
13901           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
13902           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
13903
13904           bool isFastMultiplier = false;
13905           if (Diff < 10) {
13906             switch ((unsigned char)Diff) {
13907               default: break;
13908               case 1:  // result = add base, cond
13909               case 2:  // result = lea base(    , cond*2)
13910               case 3:  // result = lea base(cond, cond*2)
13911               case 4:  // result = lea base(    , cond*4)
13912               case 5:  // result = lea base(cond, cond*4)
13913               case 8:  // result = lea base(    , cond*8)
13914               case 9:  // result = lea base(cond, cond*8)
13915                 isFastMultiplier = true;
13916                 break;
13917             }
13918           }
13919
13920           if (isFastMultiplier) {
13921             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
13922             if (NeedsCondInvert) // Invert the condition if needed.
13923               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13924                                  DAG.getConstant(1, Cond.getValueType()));
13925
13926             // Zero extend the condition if needed.
13927             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
13928                                Cond);
13929             // Scale the condition by the difference.
13930             if (Diff != 1)
13931               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
13932                                  DAG.getConstant(Diff, Cond.getValueType()));
13933
13934             // Add the base if non-zero.
13935             if (FalseC->getAPIntValue() != 0)
13936               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13937                                  SDValue(FalseC, 0));
13938             return Cond;
13939           }
13940         }
13941       }
13942   }
13943
13944   // Canonicalize max and min:
13945   // (x > y) ? x : y -> (x >= y) ? x : y
13946   // (x < y) ? x : y -> (x <= y) ? x : y
13947   // This allows use of COND_S / COND_NS (see TranslateX86CC) which eliminates
13948   // the need for an extra compare
13949   // against zero. e.g.
13950   // (x - y) > 0 : (x - y) ? 0 -> (x - y) >= 0 : (x - y) ? 0
13951   // subl   %esi, %edi
13952   // testl  %edi, %edi
13953   // movl   $0, %eax
13954   // cmovgl %edi, %eax
13955   // =>
13956   // xorl   %eax, %eax
13957   // subl   %esi, $edi
13958   // cmovsl %eax, %edi
13959   if (N->getOpcode() == ISD::SELECT && Cond.getOpcode() == ISD::SETCC &&
13960       DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
13961       DAG.isEqualTo(RHS, Cond.getOperand(1))) {
13962     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
13963     switch (CC) {
13964     default: break;
13965     case ISD::SETLT:
13966     case ISD::SETGT: {
13967       ISD::CondCode NewCC = (CC == ISD::SETLT) ? ISD::SETLE : ISD::SETGE;
13968       Cond = DAG.getSetCC(Cond.getDebugLoc(), Cond.getValueType(),
13969                           Cond.getOperand(0), Cond.getOperand(1), NewCC);
13970       return DAG.getNode(ISD::SELECT, DL, VT, Cond, LHS, RHS);
13971     }
13972     }
13973   }
13974
13975   // If we know that this node is legal then we know that it is going to be
13976   // matched by one of the SSE/AVX BLEND instructions. These instructions only
13977   // depend on the highest bit in each word. Try to use SimplifyDemandedBits
13978   // to simplify previous instructions.
13979   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13980   if (N->getOpcode() == ISD::VSELECT && DCI.isBeforeLegalizeOps() &&
13981       !DCI.isBeforeLegalize() && TLI.isOperationLegal(ISD::VSELECT, VT)) {
13982     unsigned BitWidth = Cond.getValueType().getScalarType().getSizeInBits();
13983
13984     // Don't optimize vector selects that map to mask-registers.
13985     if (BitWidth == 1)
13986       return SDValue();
13987
13988     assert(BitWidth >= 8 && BitWidth <= 64 && "Invalid mask size");
13989     APInt DemandedMask = APInt::getHighBitsSet(BitWidth, 1);
13990
13991     APInt KnownZero, KnownOne;
13992     TargetLowering::TargetLoweringOpt TLO(DAG, DCI.isBeforeLegalize(),
13993                                           DCI.isBeforeLegalizeOps());
13994     if (TLO.ShrinkDemandedConstant(Cond, DemandedMask) ||
13995         TLI.SimplifyDemandedBits(Cond, DemandedMask, KnownZero, KnownOne, TLO))
13996       DCI.CommitTargetLoweringOpt(TLO);
13997   }
13998
13999   return SDValue();
14000 }
14001
14002 // Check whether a boolean test is testing a boolean value generated by
14003 // X86ISD::SETCC. If so, return the operand of that SETCC and proper condition
14004 // code.
14005 //
14006 // Simplify the following patterns:
14007 // (Op (CMP (SETCC Cond EFLAGS) 1) EQ) or
14008 // (Op (CMP (SETCC Cond EFLAGS) 0) NEQ)
14009 // to (Op EFLAGS Cond)
14010 //
14011 // (Op (CMP (SETCC Cond EFLAGS) 0) EQ) or
14012 // (Op (CMP (SETCC Cond EFLAGS) 1) NEQ)
14013 // to (Op EFLAGS !Cond)
14014 //
14015 // where Op could be BRCOND or CMOV.
14016 //
14017 static SDValue BoolTestSetCCCombine(SDValue Cmp, X86::CondCode &CC) {
14018   // Quit if not CMP and SUB with its value result used.
14019   if (Cmp.getOpcode() != X86ISD::CMP &&
14020       (Cmp.getOpcode() != X86ISD::SUB || Cmp.getNode()->hasAnyUseOfValue(0)))
14021       return SDValue();
14022
14023   // Quit if not used as a boolean value.
14024   if (CC != X86::COND_E && CC != X86::COND_NE)
14025     return SDValue();
14026
14027   // Check CMP operands. One of them should be 0 or 1 and the other should be
14028   // an SetCC or extended from it.
14029   SDValue Op1 = Cmp.getOperand(0);
14030   SDValue Op2 = Cmp.getOperand(1);
14031
14032   SDValue SetCC;
14033   const ConstantSDNode* C = 0;
14034   bool needOppositeCond = (CC == X86::COND_E);
14035
14036   if ((C = dyn_cast<ConstantSDNode>(Op1)))
14037     SetCC = Op2;
14038   else if ((C = dyn_cast<ConstantSDNode>(Op2)))
14039     SetCC = Op1;
14040   else // Quit if all operands are not constants.
14041     return SDValue();
14042
14043   if (C->getZExtValue() == 1)
14044     needOppositeCond = !needOppositeCond;
14045   else if (C->getZExtValue() != 0)
14046     // Quit if the constant is neither 0 or 1.
14047     return SDValue();
14048
14049   // Skip 'zext' node.
14050   if (SetCC.getOpcode() == ISD::ZERO_EXTEND)
14051     SetCC = SetCC.getOperand(0);
14052
14053   // Quit if not SETCC.
14054   // FIXME: So far we only handle the boolean value generated from SETCC. If
14055   // there is other ways to generate boolean values, we need handle them here
14056   // as well.
14057   if (SetCC.getOpcode() != X86ISD::SETCC)
14058     return SDValue();
14059
14060   // Set the condition code or opposite one if necessary.
14061   CC = X86::CondCode(SetCC.getConstantOperandVal(0));
14062   if (needOppositeCond)
14063     CC = X86::GetOppositeBranchCondition(CC);
14064
14065   return SetCC.getOperand(1);
14066 }
14067
14068 static bool IsValidFCMOVCondition(X86::CondCode CC) {
14069   switch (CC) {
14070   default:
14071     return false;
14072   case X86::COND_B:
14073   case X86::COND_BE:
14074   case X86::COND_E:
14075   case X86::COND_P:
14076   case X86::COND_AE:
14077   case X86::COND_A:
14078   case X86::COND_NE:
14079   case X86::COND_NP:
14080     return true;
14081   }
14082 }
14083
14084 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
14085 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
14086                                   TargetLowering::DAGCombinerInfo &DCI) {
14087   DebugLoc DL = N->getDebugLoc();
14088
14089   // If the flag operand isn't dead, don't touch this CMOV.
14090   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
14091     return SDValue();
14092
14093   SDValue FalseOp = N->getOperand(0);
14094   SDValue TrueOp = N->getOperand(1);
14095   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
14096   SDValue Cond = N->getOperand(3);
14097
14098   if (CC == X86::COND_E || CC == X86::COND_NE) {
14099     switch (Cond.getOpcode()) {
14100     default: break;
14101     case X86ISD::BSR:
14102     case X86ISD::BSF:
14103       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
14104       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
14105         return (CC == X86::COND_E) ? FalseOp : TrueOp;
14106     }
14107   }
14108
14109   SDValue Flags;
14110
14111   Flags = BoolTestSetCCCombine(Cond, CC);
14112   if (Flags.getNode() &&
14113       // Extra check as FCMOV only supports a subset of X86 cond.
14114       (FalseOp.getValueType() != MVT::f80 || IsValidFCMOVCondition(CC))) {
14115     SDValue Ops[] = { FalseOp, TrueOp,
14116                       DAG.getConstant(CC, MVT::i8), Flags };
14117     return DAG.getNode(X86ISD::CMOV, DL, N->getVTList(),
14118                        Ops, array_lengthof(Ops));
14119   }
14120
14121   // If this is a select between two integer constants, try to do some
14122   // optimizations.  Note that the operands are ordered the opposite of SELECT
14123   // operands.
14124   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
14125     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
14126       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
14127       // larger than FalseC (the false value).
14128       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
14129         CC = X86::GetOppositeBranchCondition(CC);
14130         std::swap(TrueC, FalseC);
14131       }
14132
14133       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
14134       // This is efficient for any integer data type (including i8/i16) and
14135       // shift amount.
14136       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
14137         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
14138                            DAG.getConstant(CC, MVT::i8), Cond);
14139
14140         // Zero extend the condition if needed.
14141         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
14142
14143         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
14144         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
14145                            DAG.getConstant(ShAmt, MVT::i8));
14146         if (N->getNumValues() == 2)  // Dead flag value?
14147           return DCI.CombineTo(N, Cond, SDValue());
14148         return Cond;
14149       }
14150
14151       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
14152       // for any integer data type, including i8/i16.
14153       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
14154         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
14155                            DAG.getConstant(CC, MVT::i8), Cond);
14156
14157         // Zero extend the condition if needed.
14158         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
14159                            FalseC->getValueType(0), Cond);
14160         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
14161                            SDValue(FalseC, 0));
14162
14163         if (N->getNumValues() == 2)  // Dead flag value?
14164           return DCI.CombineTo(N, Cond, SDValue());
14165         return Cond;
14166       }
14167
14168       // Optimize cases that will turn into an LEA instruction.  This requires
14169       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
14170       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
14171         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
14172         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
14173
14174         bool isFastMultiplier = false;
14175         if (Diff < 10) {
14176           switch ((unsigned char)Diff) {
14177           default: break;
14178           case 1:  // result = add base, cond
14179           case 2:  // result = lea base(    , cond*2)
14180           case 3:  // result = lea base(cond, cond*2)
14181           case 4:  // result = lea base(    , cond*4)
14182           case 5:  // result = lea base(cond, cond*4)
14183           case 8:  // result = lea base(    , cond*8)
14184           case 9:  // result = lea base(cond, cond*8)
14185             isFastMultiplier = true;
14186             break;
14187           }
14188         }
14189
14190         if (isFastMultiplier) {
14191           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
14192           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
14193                              DAG.getConstant(CC, MVT::i8), Cond);
14194           // Zero extend the condition if needed.
14195           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
14196                              Cond);
14197           // Scale the condition by the difference.
14198           if (Diff != 1)
14199             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
14200                                DAG.getConstant(Diff, Cond.getValueType()));
14201
14202           // Add the base if non-zero.
14203           if (FalseC->getAPIntValue() != 0)
14204             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
14205                                SDValue(FalseC, 0));
14206           if (N->getNumValues() == 2)  // Dead flag value?
14207             return DCI.CombineTo(N, Cond, SDValue());
14208           return Cond;
14209         }
14210       }
14211     }
14212   }
14213   return SDValue();
14214 }
14215
14216
14217 /// PerformMulCombine - Optimize a single multiply with constant into two
14218 /// in order to implement it with two cheaper instructions, e.g.
14219 /// LEA + SHL, LEA + LEA.
14220 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
14221                                  TargetLowering::DAGCombinerInfo &DCI) {
14222   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
14223     return SDValue();
14224
14225   EVT VT = N->getValueType(0);
14226   if (VT != MVT::i64)
14227     return SDValue();
14228
14229   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
14230   if (!C)
14231     return SDValue();
14232   uint64_t MulAmt = C->getZExtValue();
14233   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
14234     return SDValue();
14235
14236   uint64_t MulAmt1 = 0;
14237   uint64_t MulAmt2 = 0;
14238   if ((MulAmt % 9) == 0) {
14239     MulAmt1 = 9;
14240     MulAmt2 = MulAmt / 9;
14241   } else if ((MulAmt % 5) == 0) {
14242     MulAmt1 = 5;
14243     MulAmt2 = MulAmt / 5;
14244   } else if ((MulAmt % 3) == 0) {
14245     MulAmt1 = 3;
14246     MulAmt2 = MulAmt / 3;
14247   }
14248   if (MulAmt2 &&
14249       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
14250     DebugLoc DL = N->getDebugLoc();
14251
14252     if (isPowerOf2_64(MulAmt2) &&
14253         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
14254       // If second multiplifer is pow2, issue it first. We want the multiply by
14255       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
14256       // is an add.
14257       std::swap(MulAmt1, MulAmt2);
14258
14259     SDValue NewMul;
14260     if (isPowerOf2_64(MulAmt1))
14261       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
14262                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
14263     else
14264       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
14265                            DAG.getConstant(MulAmt1, VT));
14266
14267     if (isPowerOf2_64(MulAmt2))
14268       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
14269                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
14270     else
14271       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
14272                            DAG.getConstant(MulAmt2, VT));
14273
14274     // Do not add new nodes to DAG combiner worklist.
14275     DCI.CombineTo(N, NewMul, false);
14276   }
14277   return SDValue();
14278 }
14279
14280 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
14281   SDValue N0 = N->getOperand(0);
14282   SDValue N1 = N->getOperand(1);
14283   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
14284   EVT VT = N0.getValueType();
14285
14286   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
14287   // since the result of setcc_c is all zero's or all ones.
14288   if (VT.isInteger() && !VT.isVector() &&
14289       N1C && N0.getOpcode() == ISD::AND &&
14290       N0.getOperand(1).getOpcode() == ISD::Constant) {
14291     SDValue N00 = N0.getOperand(0);
14292     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
14293         ((N00.getOpcode() == ISD::ANY_EXTEND ||
14294           N00.getOpcode() == ISD::ZERO_EXTEND) &&
14295          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
14296       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
14297       APInt ShAmt = N1C->getAPIntValue();
14298       Mask = Mask.shl(ShAmt);
14299       if (Mask != 0)
14300         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
14301                            N00, DAG.getConstant(Mask, VT));
14302     }
14303   }
14304
14305
14306   // Hardware support for vector shifts is sparse which makes us scalarize the
14307   // vector operations in many cases. Also, on sandybridge ADD is faster than
14308   // shl.
14309   // (shl V, 1) -> add V,V
14310   if (isSplatVector(N1.getNode())) {
14311     assert(N0.getValueType().isVector() && "Invalid vector shift type");
14312     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
14313     // We shift all of the values by one. In many cases we do not have
14314     // hardware support for this operation. This is better expressed as an ADD
14315     // of two values.
14316     if (N1C && (1 == N1C->getZExtValue())) {
14317       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N0);
14318     }
14319   }
14320
14321   return SDValue();
14322 }
14323
14324 /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
14325 ///                       when possible.
14326 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
14327                                    TargetLowering::DAGCombinerInfo &DCI,
14328                                    const X86Subtarget *Subtarget) {
14329   EVT VT = N->getValueType(0);
14330   if (N->getOpcode() == ISD::SHL) {
14331     SDValue V = PerformSHLCombine(N, DAG);
14332     if (V.getNode()) return V;
14333   }
14334
14335   // On X86 with SSE2 support, we can transform this to a vector shift if
14336   // all elements are shifted by the same amount.  We can't do this in legalize
14337   // because the a constant vector is typically transformed to a constant pool
14338   // so we have no knowledge of the shift amount.
14339   if (!Subtarget->hasSSE2())
14340     return SDValue();
14341
14342   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
14343       (!Subtarget->hasAVX2() ||
14344        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
14345     return SDValue();
14346
14347   SDValue ShAmtOp = N->getOperand(1);
14348   EVT EltVT = VT.getVectorElementType();
14349   DebugLoc DL = N->getDebugLoc();
14350   SDValue BaseShAmt = SDValue();
14351   if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
14352     unsigned NumElts = VT.getVectorNumElements();
14353     unsigned i = 0;
14354     for (; i != NumElts; ++i) {
14355       SDValue Arg = ShAmtOp.getOperand(i);
14356       if (Arg.getOpcode() == ISD::UNDEF) continue;
14357       BaseShAmt = Arg;
14358       break;
14359     }
14360     // Handle the case where the build_vector is all undef
14361     // FIXME: Should DAG allow this?
14362     if (i == NumElts)
14363       return SDValue();
14364
14365     for (; i != NumElts; ++i) {
14366       SDValue Arg = ShAmtOp.getOperand(i);
14367       if (Arg.getOpcode() == ISD::UNDEF) continue;
14368       if (Arg != BaseShAmt) {
14369         return SDValue();
14370       }
14371     }
14372   } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
14373              cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
14374     SDValue InVec = ShAmtOp.getOperand(0);
14375     if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
14376       unsigned NumElts = InVec.getValueType().getVectorNumElements();
14377       unsigned i = 0;
14378       for (; i != NumElts; ++i) {
14379         SDValue Arg = InVec.getOperand(i);
14380         if (Arg.getOpcode() == ISD::UNDEF) continue;
14381         BaseShAmt = Arg;
14382         break;
14383       }
14384     } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
14385        if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
14386          unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
14387          if (C->getZExtValue() == SplatIdx)
14388            BaseShAmt = InVec.getOperand(1);
14389        }
14390     }
14391     if (BaseShAmt.getNode() == 0) {
14392       // Don't create instructions with illegal types after legalize
14393       // types has run.
14394       if (!DAG.getTargetLoweringInfo().isTypeLegal(EltVT) &&
14395           !DCI.isBeforeLegalize())
14396         return SDValue();
14397
14398       BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
14399                               DAG.getIntPtrConstant(0));
14400     }
14401   } else
14402     return SDValue();
14403
14404   // The shift amount is an i32.
14405   if (EltVT.bitsGT(MVT::i32))
14406     BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
14407   else if (EltVT.bitsLT(MVT::i32))
14408     BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
14409
14410   // The shift amount is identical so we can do a vector shift.
14411   SDValue  ValOp = N->getOperand(0);
14412   switch (N->getOpcode()) {
14413   default:
14414     llvm_unreachable("Unknown shift opcode!");
14415   case ISD::SHL:
14416     switch (VT.getSimpleVT().SimpleTy) {
14417     default: return SDValue();
14418     case MVT::v2i64:
14419     case MVT::v4i32:
14420     case MVT::v8i16:
14421     case MVT::v4i64:
14422     case MVT::v8i32:
14423     case MVT::v16i16:
14424       return getTargetVShiftNode(X86ISD::VSHLI, DL, VT, ValOp, BaseShAmt, DAG);
14425     }
14426   case ISD::SRA:
14427     switch (VT.getSimpleVT().SimpleTy) {
14428     default: return SDValue();
14429     case MVT::v4i32:
14430     case MVT::v8i16:
14431     case MVT::v8i32:
14432     case MVT::v16i16:
14433       return getTargetVShiftNode(X86ISD::VSRAI, DL, VT, ValOp, BaseShAmt, DAG);
14434     }
14435   case ISD::SRL:
14436     switch (VT.getSimpleVT().SimpleTy) {
14437     default: return SDValue();
14438     case MVT::v2i64:
14439     case MVT::v4i32:
14440     case MVT::v8i16:
14441     case MVT::v4i64:
14442     case MVT::v8i32:
14443     case MVT::v16i16:
14444       return getTargetVShiftNode(X86ISD::VSRLI, DL, VT, ValOp, BaseShAmt, DAG);
14445     }
14446   }
14447 }
14448
14449
14450 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
14451 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
14452 // and friends.  Likewise for OR -> CMPNEQSS.
14453 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
14454                             TargetLowering::DAGCombinerInfo &DCI,
14455                             const X86Subtarget *Subtarget) {
14456   unsigned opcode;
14457
14458   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
14459   // we're requiring SSE2 for both.
14460   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
14461     SDValue N0 = N->getOperand(0);
14462     SDValue N1 = N->getOperand(1);
14463     SDValue CMP0 = N0->getOperand(1);
14464     SDValue CMP1 = N1->getOperand(1);
14465     DebugLoc DL = N->getDebugLoc();
14466
14467     // The SETCCs should both refer to the same CMP.
14468     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
14469       return SDValue();
14470
14471     SDValue CMP00 = CMP0->getOperand(0);
14472     SDValue CMP01 = CMP0->getOperand(1);
14473     EVT     VT    = CMP00.getValueType();
14474
14475     if (VT == MVT::f32 || VT == MVT::f64) {
14476       bool ExpectingFlags = false;
14477       // Check for any users that want flags:
14478       for (SDNode::use_iterator UI = N->use_begin(),
14479              UE = N->use_end();
14480            !ExpectingFlags && UI != UE; ++UI)
14481         switch (UI->getOpcode()) {
14482         default:
14483         case ISD::BR_CC:
14484         case ISD::BRCOND:
14485         case ISD::SELECT:
14486           ExpectingFlags = true;
14487           break;
14488         case ISD::CopyToReg:
14489         case ISD::SIGN_EXTEND:
14490         case ISD::ZERO_EXTEND:
14491         case ISD::ANY_EXTEND:
14492           break;
14493         }
14494
14495       if (!ExpectingFlags) {
14496         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
14497         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
14498
14499         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
14500           X86::CondCode tmp = cc0;
14501           cc0 = cc1;
14502           cc1 = tmp;
14503         }
14504
14505         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
14506             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
14507           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
14508           X86ISD::NodeType NTOperator = is64BitFP ?
14509             X86ISD::FSETCCsd : X86ISD::FSETCCss;
14510           // FIXME: need symbolic constants for these magic numbers.
14511           // See X86ATTInstPrinter.cpp:printSSECC().
14512           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
14513           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
14514                                               DAG.getConstant(x86cc, MVT::i8));
14515           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
14516                                               OnesOrZeroesF);
14517           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
14518                                       DAG.getConstant(1, MVT::i32));
14519           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
14520           return OneBitOfTruth;
14521         }
14522       }
14523     }
14524   }
14525   return SDValue();
14526 }
14527
14528 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
14529 /// so it can be folded inside ANDNP.
14530 static bool CanFoldXORWithAllOnes(const SDNode *N) {
14531   EVT VT = N->getValueType(0);
14532
14533   // Match direct AllOnes for 128 and 256-bit vectors
14534   if (ISD::isBuildVectorAllOnes(N))
14535     return true;
14536
14537   // Look through a bit convert.
14538   if (N->getOpcode() == ISD::BITCAST)
14539     N = N->getOperand(0).getNode();
14540
14541   // Sometimes the operand may come from a insert_subvector building a 256-bit
14542   // allones vector
14543   if (VT.is256BitVector() &&
14544       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
14545     SDValue V1 = N->getOperand(0);
14546     SDValue V2 = N->getOperand(1);
14547
14548     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
14549         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
14550         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
14551         ISD::isBuildVectorAllOnes(V2.getNode()))
14552       return true;
14553   }
14554
14555   return false;
14556 }
14557
14558 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
14559                                  TargetLowering::DAGCombinerInfo &DCI,
14560                                  const X86Subtarget *Subtarget) {
14561   if (DCI.isBeforeLegalizeOps())
14562     return SDValue();
14563
14564   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
14565   if (R.getNode())
14566     return R;
14567
14568   EVT VT = N->getValueType(0);
14569
14570   // Create ANDN, BLSI, and BLSR instructions
14571   // BLSI is X & (-X)
14572   // BLSR is X & (X-1)
14573   if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
14574     SDValue N0 = N->getOperand(0);
14575     SDValue N1 = N->getOperand(1);
14576     DebugLoc DL = N->getDebugLoc();
14577
14578     // Check LHS for not
14579     if (N0.getOpcode() == ISD::XOR && isAllOnes(N0.getOperand(1)))
14580       return DAG.getNode(X86ISD::ANDN, DL, VT, N0.getOperand(0), N1);
14581     // Check RHS for not
14582     if (N1.getOpcode() == ISD::XOR && isAllOnes(N1.getOperand(1)))
14583       return DAG.getNode(X86ISD::ANDN, DL, VT, N1.getOperand(0), N0);
14584
14585     // Check LHS for neg
14586     if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
14587         isZero(N0.getOperand(0)))
14588       return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
14589
14590     // Check RHS for neg
14591     if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
14592         isZero(N1.getOperand(0)))
14593       return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
14594
14595     // Check LHS for X-1
14596     if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
14597         isAllOnes(N0.getOperand(1)))
14598       return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
14599
14600     // Check RHS for X-1
14601     if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
14602         isAllOnes(N1.getOperand(1)))
14603       return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
14604
14605     return SDValue();
14606   }
14607
14608   // Want to form ANDNP nodes:
14609   // 1) In the hopes of then easily combining them with OR and AND nodes
14610   //    to form PBLEND/PSIGN.
14611   // 2) To match ANDN packed intrinsics
14612   if (VT != MVT::v2i64 && VT != MVT::v4i64)
14613     return SDValue();
14614
14615   SDValue N0 = N->getOperand(0);
14616   SDValue N1 = N->getOperand(1);
14617   DebugLoc DL = N->getDebugLoc();
14618
14619   // Check LHS for vnot
14620   if (N0.getOpcode() == ISD::XOR &&
14621       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
14622       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
14623     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
14624
14625   // Check RHS for vnot
14626   if (N1.getOpcode() == ISD::XOR &&
14627       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
14628       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
14629     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
14630
14631   return SDValue();
14632 }
14633
14634 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
14635                                 TargetLowering::DAGCombinerInfo &DCI,
14636                                 const X86Subtarget *Subtarget) {
14637   if (DCI.isBeforeLegalizeOps())
14638     return SDValue();
14639
14640   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
14641   if (R.getNode())
14642     return R;
14643
14644   EVT VT = N->getValueType(0);
14645
14646   SDValue N0 = N->getOperand(0);
14647   SDValue N1 = N->getOperand(1);
14648
14649   // look for psign/blend
14650   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
14651     if (!Subtarget->hasSSSE3() ||
14652         (VT == MVT::v4i64 && !Subtarget->hasAVX2()))
14653       return SDValue();
14654
14655     // Canonicalize pandn to RHS
14656     if (N0.getOpcode() == X86ISD::ANDNP)
14657       std::swap(N0, N1);
14658     // or (and (m, y), (pandn m, x))
14659     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
14660       SDValue Mask = N1.getOperand(0);
14661       SDValue X    = N1.getOperand(1);
14662       SDValue Y;
14663       if (N0.getOperand(0) == Mask)
14664         Y = N0.getOperand(1);
14665       if (N0.getOperand(1) == Mask)
14666         Y = N0.getOperand(0);
14667
14668       // Check to see if the mask appeared in both the AND and ANDNP and
14669       if (!Y.getNode())
14670         return SDValue();
14671
14672       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
14673       // Look through mask bitcast.
14674       if (Mask.getOpcode() == ISD::BITCAST)
14675         Mask = Mask.getOperand(0);
14676       if (X.getOpcode() == ISD::BITCAST)
14677         X = X.getOperand(0);
14678       if (Y.getOpcode() == ISD::BITCAST)
14679         Y = Y.getOperand(0);
14680
14681       EVT MaskVT = Mask.getValueType();
14682
14683       // Validate that the Mask operand is a vector sra node.
14684       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
14685       // there is no psrai.b
14686       if (Mask.getOpcode() != X86ISD::VSRAI)
14687         return SDValue();
14688
14689       // Check that the SRA is all signbits.
14690       SDValue SraC = Mask.getOperand(1);
14691       unsigned SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
14692       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
14693       if ((SraAmt + 1) != EltBits)
14694         return SDValue();
14695
14696       DebugLoc DL = N->getDebugLoc();
14697
14698       // Now we know we at least have a plendvb with the mask val.  See if
14699       // we can form a psignb/w/d.
14700       // psign = x.type == y.type == mask.type && y = sub(0, x);
14701       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
14702           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
14703           X.getValueType() == MaskVT && Y.getValueType() == MaskVT) {
14704         assert((EltBits == 8 || EltBits == 16 || EltBits == 32) &&
14705                "Unsupported VT for PSIGN");
14706         Mask = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X, Mask.getOperand(0));
14707         return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
14708       }
14709       // PBLENDVB only available on SSE 4.1
14710       if (!Subtarget->hasSSE41())
14711         return SDValue();
14712
14713       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
14714
14715       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
14716       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
14717       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
14718       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, Y, X);
14719       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
14720     }
14721   }
14722
14723   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
14724     return SDValue();
14725
14726   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
14727   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
14728     std::swap(N0, N1);
14729   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
14730     return SDValue();
14731   if (!N0.hasOneUse() || !N1.hasOneUse())
14732     return SDValue();
14733
14734   SDValue ShAmt0 = N0.getOperand(1);
14735   if (ShAmt0.getValueType() != MVT::i8)
14736     return SDValue();
14737   SDValue ShAmt1 = N1.getOperand(1);
14738   if (ShAmt1.getValueType() != MVT::i8)
14739     return SDValue();
14740   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
14741     ShAmt0 = ShAmt0.getOperand(0);
14742   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
14743     ShAmt1 = ShAmt1.getOperand(0);
14744
14745   DebugLoc DL = N->getDebugLoc();
14746   unsigned Opc = X86ISD::SHLD;
14747   SDValue Op0 = N0.getOperand(0);
14748   SDValue Op1 = N1.getOperand(0);
14749   if (ShAmt0.getOpcode() == ISD::SUB) {
14750     Opc = X86ISD::SHRD;
14751     std::swap(Op0, Op1);
14752     std::swap(ShAmt0, ShAmt1);
14753   }
14754
14755   unsigned Bits = VT.getSizeInBits();
14756   if (ShAmt1.getOpcode() == ISD::SUB) {
14757     SDValue Sum = ShAmt1.getOperand(0);
14758     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
14759       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
14760       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
14761         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
14762       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
14763         return DAG.getNode(Opc, DL, VT,
14764                            Op0, Op1,
14765                            DAG.getNode(ISD::TRUNCATE, DL,
14766                                        MVT::i8, ShAmt0));
14767     }
14768   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
14769     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
14770     if (ShAmt0C &&
14771         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
14772       return DAG.getNode(Opc, DL, VT,
14773                          N0.getOperand(0), N1.getOperand(0),
14774                          DAG.getNode(ISD::TRUNCATE, DL,
14775                                        MVT::i8, ShAmt0));
14776   }
14777
14778   return SDValue();
14779 }
14780
14781 // Generate NEG and CMOV for integer abs.
14782 static SDValue performIntegerAbsCombine(SDNode *N, SelectionDAG &DAG) {
14783   EVT VT = N->getValueType(0);
14784
14785   // Since X86 does not have CMOV for 8-bit integer, we don't convert
14786   // 8-bit integer abs to NEG and CMOV.
14787   if (VT.isInteger() && VT.getSizeInBits() == 8)
14788     return SDValue();
14789
14790   SDValue N0 = N->getOperand(0);
14791   SDValue N1 = N->getOperand(1);
14792   DebugLoc DL = N->getDebugLoc();
14793
14794   // Check pattern of XOR(ADD(X,Y), Y) where Y is SRA(X, size(X)-1)
14795   // and change it to SUB and CMOV.
14796   if (VT.isInteger() && N->getOpcode() == ISD::XOR &&
14797       N0.getOpcode() == ISD::ADD &&
14798       N0.getOperand(1) == N1 &&
14799       N1.getOpcode() == ISD::SRA &&
14800       N1.getOperand(0) == N0.getOperand(0))
14801     if (ConstantSDNode *Y1C = dyn_cast<ConstantSDNode>(N1.getOperand(1)))
14802       if (Y1C->getAPIntValue() == VT.getSizeInBits()-1) {
14803         // Generate SUB & CMOV.
14804         SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32),
14805                                   DAG.getConstant(0, VT), N0.getOperand(0));
14806
14807         SDValue Ops[] = { N0.getOperand(0), Neg,
14808                           DAG.getConstant(X86::COND_GE, MVT::i8),
14809                           SDValue(Neg.getNode(), 1) };
14810         return DAG.getNode(X86ISD::CMOV, DL, DAG.getVTList(VT, MVT::Glue),
14811                            Ops, array_lengthof(Ops));
14812       }
14813   return SDValue();
14814 }
14815
14816 // PerformXorCombine - Attempts to turn XOR nodes into BLSMSK nodes
14817 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
14818                                  TargetLowering::DAGCombinerInfo &DCI,
14819                                  const X86Subtarget *Subtarget) {
14820   if (DCI.isBeforeLegalizeOps())
14821     return SDValue();
14822
14823   if (Subtarget->hasCMov()) {
14824     SDValue RV = performIntegerAbsCombine(N, DAG);
14825     if (RV.getNode())
14826       return RV;
14827   }
14828
14829   // Try forming BMI if it is available.
14830   if (!Subtarget->hasBMI())
14831     return SDValue();
14832
14833   EVT VT = N->getValueType(0);
14834
14835   if (VT != MVT::i32 && VT != MVT::i64)
14836     return SDValue();
14837
14838   assert(Subtarget->hasBMI() && "Creating BLSMSK requires BMI instructions");
14839
14840   // Create BLSMSK instructions by finding X ^ (X-1)
14841   SDValue N0 = N->getOperand(0);
14842   SDValue N1 = N->getOperand(1);
14843   DebugLoc DL = N->getDebugLoc();
14844
14845   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
14846       isAllOnes(N0.getOperand(1)))
14847     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
14848
14849   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
14850       isAllOnes(N1.getOperand(1)))
14851     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
14852
14853   return SDValue();
14854 }
14855
14856 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
14857 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
14858                                   TargetLowering::DAGCombinerInfo &DCI,
14859                                   const X86Subtarget *Subtarget) {
14860   LoadSDNode *Ld = cast<LoadSDNode>(N);
14861   EVT RegVT = Ld->getValueType(0);
14862   EVT MemVT = Ld->getMemoryVT();
14863   DebugLoc dl = Ld->getDebugLoc();
14864   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14865
14866   ISD::LoadExtType Ext = Ld->getExtensionType();
14867
14868   // If this is a vector EXT Load then attempt to optimize it using a
14869   // shuffle. We need SSE4 for the shuffles.
14870   // TODO: It is possible to support ZExt by zeroing the undef values
14871   // during the shuffle phase or after the shuffle.
14872   if (RegVT.isVector() && RegVT.isInteger() &&
14873       Ext == ISD::EXTLOAD && Subtarget->hasSSE41()) {
14874     assert(MemVT != RegVT && "Cannot extend to the same type");
14875     assert(MemVT.isVector() && "Must load a vector from memory");
14876
14877     unsigned NumElems = RegVT.getVectorNumElements();
14878     unsigned RegSz = RegVT.getSizeInBits();
14879     unsigned MemSz = MemVT.getSizeInBits();
14880     assert(RegSz > MemSz && "Register size must be greater than the mem size");
14881
14882     // All sizes must be a power of two.
14883     if (!isPowerOf2_32(RegSz * MemSz * NumElems))
14884       return SDValue();
14885
14886     // Attempt to load the original value using scalar loads.
14887     // Find the largest scalar type that divides the total loaded size.
14888     MVT SclrLoadTy = MVT::i8;
14889     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
14890          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
14891       MVT Tp = (MVT::SimpleValueType)tp;
14892       if (TLI.isTypeLegal(Tp) && ((MemSz % Tp.getSizeInBits()) == 0)) {
14893         SclrLoadTy = Tp;
14894       }
14895     }
14896
14897     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
14898     if (TLI.isTypeLegal(MVT::f64) && SclrLoadTy.getSizeInBits() < 64 &&
14899         (64 <= MemSz))
14900       SclrLoadTy = MVT::f64;
14901
14902     // Calculate the number of scalar loads that we need to perform
14903     // in order to load our vector from memory.
14904     unsigned NumLoads = MemSz / SclrLoadTy.getSizeInBits();
14905
14906     // Represent our vector as a sequence of elements which are the
14907     // largest scalar that we can load.
14908     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
14909       RegSz/SclrLoadTy.getSizeInBits());
14910
14911     // Represent the data using the same element type that is stored in
14912     // memory. In practice, we ''widen'' MemVT.
14913     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
14914                                   RegSz/MemVT.getScalarType().getSizeInBits());
14915
14916     assert(WideVecVT.getSizeInBits() == LoadUnitVecVT.getSizeInBits() &&
14917       "Invalid vector type");
14918
14919     // We can't shuffle using an illegal type.
14920     if (!TLI.isTypeLegal(WideVecVT))
14921       return SDValue();
14922
14923     SmallVector<SDValue, 8> Chains;
14924     SDValue Ptr = Ld->getBasePtr();
14925     SDValue Increment = DAG.getConstant(SclrLoadTy.getSizeInBits()/8,
14926                                         TLI.getPointerTy());
14927     SDValue Res = DAG.getUNDEF(LoadUnitVecVT);
14928
14929     for (unsigned i = 0; i < NumLoads; ++i) {
14930       // Perform a single load.
14931       SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
14932                                        Ptr, Ld->getPointerInfo(),
14933                                        Ld->isVolatile(), Ld->isNonTemporal(),
14934                                        Ld->isInvariant(), Ld->getAlignment());
14935       Chains.push_back(ScalarLoad.getValue(1));
14936       // Create the first element type using SCALAR_TO_VECTOR in order to avoid
14937       // another round of DAGCombining.
14938       if (i == 0)
14939         Res = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, LoadUnitVecVT, ScalarLoad);
14940       else
14941         Res = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, LoadUnitVecVT, Res,
14942                           ScalarLoad, DAG.getIntPtrConstant(i));
14943
14944       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
14945     }
14946
14947     SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
14948                                Chains.size());
14949
14950     // Bitcast the loaded value to a vector of the original element type, in
14951     // the size of the target vector type.
14952     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, Res);
14953     unsigned SizeRatio = RegSz/MemSz;
14954
14955     // Redistribute the loaded elements into the different locations.
14956     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
14957     for (unsigned i = 0; i != NumElems; ++i)
14958       ShuffleVec[i*SizeRatio] = i;
14959
14960     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
14961                                          DAG.getUNDEF(WideVecVT),
14962                                          &ShuffleVec[0]);
14963
14964     // Bitcast to the requested type.
14965     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
14966     // Replace the original load with the new sequence
14967     // and return the new chain.
14968     return DCI.CombineTo(N, Shuff, TF, true);
14969   }
14970
14971   return SDValue();
14972 }
14973
14974 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
14975 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
14976                                    const X86Subtarget *Subtarget) {
14977   StoreSDNode *St = cast<StoreSDNode>(N);
14978   EVT VT = St->getValue().getValueType();
14979   EVT StVT = St->getMemoryVT();
14980   DebugLoc dl = St->getDebugLoc();
14981   SDValue StoredVal = St->getOperand(1);
14982   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14983
14984   // If we are saving a concatenation of two XMM registers, perform two stores.
14985   // On Sandy Bridge, 256-bit memory operations are executed by two
14986   // 128-bit ports. However, on Haswell it is better to issue a single 256-bit
14987   // memory  operation.
14988   if (VT.is256BitVector() && !Subtarget->hasAVX2() &&
14989       StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
14990       StoredVal.getNumOperands() == 2) {
14991     SDValue Value0 = StoredVal.getOperand(0);
14992     SDValue Value1 = StoredVal.getOperand(1);
14993
14994     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
14995     SDValue Ptr0 = St->getBasePtr();
14996     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
14997
14998     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
14999                                 St->getPointerInfo(), St->isVolatile(),
15000                                 St->isNonTemporal(), St->getAlignment());
15001     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
15002                                 St->getPointerInfo(), St->isVolatile(),
15003                                 St->isNonTemporal(), St->getAlignment());
15004     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
15005   }
15006
15007   // Optimize trunc store (of multiple scalars) to shuffle and store.
15008   // First, pack all of the elements in one place. Next, store to memory
15009   // in fewer chunks.
15010   if (St->isTruncatingStore() && VT.isVector()) {
15011     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15012     unsigned NumElems = VT.getVectorNumElements();
15013     assert(StVT != VT && "Cannot truncate to the same type");
15014     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
15015     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
15016
15017     // From, To sizes and ElemCount must be pow of two
15018     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
15019     // We are going to use the original vector elt for storing.
15020     // Accumulated smaller vector elements must be a multiple of the store size.
15021     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
15022
15023     unsigned SizeRatio  = FromSz / ToSz;
15024
15025     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
15026
15027     // Create a type on which we perform the shuffle
15028     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
15029             StVT.getScalarType(), NumElems*SizeRatio);
15030
15031     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
15032
15033     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
15034     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
15035     for (unsigned i = 0; i != NumElems; ++i)
15036       ShuffleVec[i] = i * SizeRatio;
15037
15038     // Can't shuffle using an illegal type.
15039     if (!TLI.isTypeLegal(WideVecVT))
15040       return SDValue();
15041
15042     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
15043                                          DAG.getUNDEF(WideVecVT),
15044                                          &ShuffleVec[0]);
15045     // At this point all of the data is stored at the bottom of the
15046     // register. We now need to save it to mem.
15047
15048     // Find the largest store unit
15049     MVT StoreType = MVT::i8;
15050     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
15051          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
15052       MVT Tp = (MVT::SimpleValueType)tp;
15053       if (TLI.isTypeLegal(Tp) && Tp.getSizeInBits() <= NumElems * ToSz)
15054         StoreType = Tp;
15055     }
15056
15057     // On 32bit systems, we can't save 64bit integers. Try bitcasting to F64.
15058     if (TLI.isTypeLegal(MVT::f64) && StoreType.getSizeInBits() < 64 &&
15059         (64 <= NumElems * ToSz))
15060       StoreType = MVT::f64;
15061
15062     // Bitcast the original vector into a vector of store-size units
15063     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
15064             StoreType, VT.getSizeInBits()/StoreType.getSizeInBits());
15065     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
15066     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
15067     SmallVector<SDValue, 8> Chains;
15068     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
15069                                         TLI.getPointerTy());
15070     SDValue Ptr = St->getBasePtr();
15071
15072     // Perform one or more big stores into memory.
15073     for (unsigned i=0, e=(ToSz*NumElems)/StoreType.getSizeInBits(); i!=e; ++i) {
15074       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
15075                                    StoreType, ShuffWide,
15076                                    DAG.getIntPtrConstant(i));
15077       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
15078                                 St->getPointerInfo(), St->isVolatile(),
15079                                 St->isNonTemporal(), St->getAlignment());
15080       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
15081       Chains.push_back(Ch);
15082     }
15083
15084     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
15085                                Chains.size());
15086   }
15087
15088
15089   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
15090   // the FP state in cases where an emms may be missing.
15091   // A preferable solution to the general problem is to figure out the right
15092   // places to insert EMMS.  This qualifies as a quick hack.
15093
15094   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
15095   if (VT.getSizeInBits() != 64)
15096     return SDValue();
15097
15098   const Function *F = DAG.getMachineFunction().getFunction();
15099   bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
15100   bool F64IsLegal = !DAG.getTarget().Options.UseSoftFloat && !NoImplicitFloatOps
15101                      && Subtarget->hasSSE2();
15102   if ((VT.isVector() ||
15103        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
15104       isa<LoadSDNode>(St->getValue()) &&
15105       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
15106       St->getChain().hasOneUse() && !St->isVolatile()) {
15107     SDNode* LdVal = St->getValue().getNode();
15108     LoadSDNode *Ld = 0;
15109     int TokenFactorIndex = -1;
15110     SmallVector<SDValue, 8> Ops;
15111     SDNode* ChainVal = St->getChain().getNode();
15112     // Must be a store of a load.  We currently handle two cases:  the load
15113     // is a direct child, and it's under an intervening TokenFactor.  It is
15114     // possible to dig deeper under nested TokenFactors.
15115     if (ChainVal == LdVal)
15116       Ld = cast<LoadSDNode>(St->getChain());
15117     else if (St->getValue().hasOneUse() &&
15118              ChainVal->getOpcode() == ISD::TokenFactor) {
15119       for (unsigned i = 0, e = ChainVal->getNumOperands(); i != e; ++i) {
15120         if (ChainVal->getOperand(i).getNode() == LdVal) {
15121           TokenFactorIndex = i;
15122           Ld = cast<LoadSDNode>(St->getValue());
15123         } else
15124           Ops.push_back(ChainVal->getOperand(i));
15125       }
15126     }
15127
15128     if (!Ld || !ISD::isNormalLoad(Ld))
15129       return SDValue();
15130
15131     // If this is not the MMX case, i.e. we are just turning i64 load/store
15132     // into f64 load/store, avoid the transformation if there are multiple
15133     // uses of the loaded value.
15134     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
15135       return SDValue();
15136
15137     DebugLoc LdDL = Ld->getDebugLoc();
15138     DebugLoc StDL = N->getDebugLoc();
15139     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
15140     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
15141     // pair instead.
15142     if (Subtarget->is64Bit() || F64IsLegal) {
15143       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
15144       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
15145                                   Ld->getPointerInfo(), Ld->isVolatile(),
15146                                   Ld->isNonTemporal(), Ld->isInvariant(),
15147                                   Ld->getAlignment());
15148       SDValue NewChain = NewLd.getValue(1);
15149       if (TokenFactorIndex != -1) {
15150         Ops.push_back(NewChain);
15151         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
15152                                Ops.size());
15153       }
15154       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
15155                           St->getPointerInfo(),
15156                           St->isVolatile(), St->isNonTemporal(),
15157                           St->getAlignment());
15158     }
15159
15160     // Otherwise, lower to two pairs of 32-bit loads / stores.
15161     SDValue LoAddr = Ld->getBasePtr();
15162     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
15163                                  DAG.getConstant(4, MVT::i32));
15164
15165     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
15166                                Ld->getPointerInfo(),
15167                                Ld->isVolatile(), Ld->isNonTemporal(),
15168                                Ld->isInvariant(), Ld->getAlignment());
15169     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
15170                                Ld->getPointerInfo().getWithOffset(4),
15171                                Ld->isVolatile(), Ld->isNonTemporal(),
15172                                Ld->isInvariant(),
15173                                MinAlign(Ld->getAlignment(), 4));
15174
15175     SDValue NewChain = LoLd.getValue(1);
15176     if (TokenFactorIndex != -1) {
15177       Ops.push_back(LoLd);
15178       Ops.push_back(HiLd);
15179       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
15180                              Ops.size());
15181     }
15182
15183     LoAddr = St->getBasePtr();
15184     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
15185                          DAG.getConstant(4, MVT::i32));
15186
15187     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
15188                                 St->getPointerInfo(),
15189                                 St->isVolatile(), St->isNonTemporal(),
15190                                 St->getAlignment());
15191     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
15192                                 St->getPointerInfo().getWithOffset(4),
15193                                 St->isVolatile(),
15194                                 St->isNonTemporal(),
15195                                 MinAlign(St->getAlignment(), 4));
15196     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
15197   }
15198   return SDValue();
15199 }
15200
15201 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
15202 /// and return the operands for the horizontal operation in LHS and RHS.  A
15203 /// horizontal operation performs the binary operation on successive elements
15204 /// of its first operand, then on successive elements of its second operand,
15205 /// returning the resulting values in a vector.  For example, if
15206 ///   A = < float a0, float a1, float a2, float a3 >
15207 /// and
15208 ///   B = < float b0, float b1, float b2, float b3 >
15209 /// then the result of doing a horizontal operation on A and B is
15210 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
15211 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
15212 /// A horizontal-op B, for some already available A and B, and if so then LHS is
15213 /// set to A, RHS to B, and the routine returns 'true'.
15214 /// Note that the binary operation should have the property that if one of the
15215 /// operands is UNDEF then the result is UNDEF.
15216 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool IsCommutative) {
15217   // Look for the following pattern: if
15218   //   A = < float a0, float a1, float a2, float a3 >
15219   //   B = < float b0, float b1, float b2, float b3 >
15220   // and
15221   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
15222   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
15223   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
15224   // which is A horizontal-op B.
15225
15226   // At least one of the operands should be a vector shuffle.
15227   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
15228       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
15229     return false;
15230
15231   EVT VT = LHS.getValueType();
15232
15233   assert((VT.is128BitVector() || VT.is256BitVector()) &&
15234          "Unsupported vector type for horizontal add/sub");
15235
15236   // Handle 128 and 256-bit vector lengths. AVX defines horizontal add/sub to
15237   // operate independently on 128-bit lanes.
15238   unsigned NumElts = VT.getVectorNumElements();
15239   unsigned NumLanes = VT.getSizeInBits()/128;
15240   unsigned NumLaneElts = NumElts / NumLanes;
15241   assert((NumLaneElts % 2 == 0) &&
15242          "Vector type should have an even number of elements in each lane");
15243   unsigned HalfLaneElts = NumLaneElts/2;
15244
15245   // View LHS in the form
15246   //   LHS = VECTOR_SHUFFLE A, B, LMask
15247   // If LHS is not a shuffle then pretend it is the shuffle
15248   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
15249   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
15250   // type VT.
15251   SDValue A, B;
15252   SmallVector<int, 16> LMask(NumElts);
15253   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
15254     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
15255       A = LHS.getOperand(0);
15256     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
15257       B = LHS.getOperand(1);
15258     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(LHS.getNode())->getMask();
15259     std::copy(Mask.begin(), Mask.end(), LMask.begin());
15260   } else {
15261     if (LHS.getOpcode() != ISD::UNDEF)
15262       A = LHS;
15263     for (unsigned i = 0; i != NumElts; ++i)
15264       LMask[i] = i;
15265   }
15266
15267   // Likewise, view RHS in the form
15268   //   RHS = VECTOR_SHUFFLE C, D, RMask
15269   SDValue C, D;
15270   SmallVector<int, 16> RMask(NumElts);
15271   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
15272     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
15273       C = RHS.getOperand(0);
15274     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
15275       D = RHS.getOperand(1);
15276     ArrayRef<int> Mask = cast<ShuffleVectorSDNode>(RHS.getNode())->getMask();
15277     std::copy(Mask.begin(), Mask.end(), RMask.begin());
15278   } else {
15279     if (RHS.getOpcode() != ISD::UNDEF)
15280       C = RHS;
15281     for (unsigned i = 0; i != NumElts; ++i)
15282       RMask[i] = i;
15283   }
15284
15285   // Check that the shuffles are both shuffling the same vectors.
15286   if (!(A == C && B == D) && !(A == D && B == C))
15287     return false;
15288
15289   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
15290   if (!A.getNode() && !B.getNode())
15291     return false;
15292
15293   // If A and B occur in reverse order in RHS, then "swap" them (which means
15294   // rewriting the mask).
15295   if (A != C)
15296     CommuteVectorShuffleMask(RMask, NumElts);
15297
15298   // At this point LHS and RHS are equivalent to
15299   //   LHS = VECTOR_SHUFFLE A, B, LMask
15300   //   RHS = VECTOR_SHUFFLE A, B, RMask
15301   // Check that the masks correspond to performing a horizontal operation.
15302   for (unsigned i = 0; i != NumElts; ++i) {
15303     int LIdx = LMask[i], RIdx = RMask[i];
15304
15305     // Ignore any UNDEF components.
15306     if (LIdx < 0 || RIdx < 0 ||
15307         (!A.getNode() && (LIdx < (int)NumElts || RIdx < (int)NumElts)) ||
15308         (!B.getNode() && (LIdx >= (int)NumElts || RIdx >= (int)NumElts)))
15309       continue;
15310
15311     // Check that successive elements are being operated on.  If not, this is
15312     // not a horizontal operation.
15313     unsigned Src = (i/HalfLaneElts) % 2; // each lane is split between srcs
15314     unsigned LaneStart = (i/NumLaneElts) * NumLaneElts;
15315     int Index = 2*(i%HalfLaneElts) + NumElts*Src + LaneStart;
15316     if (!(LIdx == Index && RIdx == Index + 1) &&
15317         !(IsCommutative && LIdx == Index + 1 && RIdx == Index))
15318       return false;
15319   }
15320
15321   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
15322   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
15323   return true;
15324 }
15325
15326 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
15327 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
15328                                   const X86Subtarget *Subtarget) {
15329   EVT VT = N->getValueType(0);
15330   SDValue LHS = N->getOperand(0);
15331   SDValue RHS = N->getOperand(1);
15332
15333   // Try to synthesize horizontal adds from adds of shuffles.
15334   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
15335        (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
15336       isHorizontalBinOp(LHS, RHS, true))
15337     return DAG.getNode(X86ISD::FHADD, N->getDebugLoc(), VT, LHS, RHS);
15338   return SDValue();
15339 }
15340
15341 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
15342 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
15343                                   const X86Subtarget *Subtarget) {
15344   EVT VT = N->getValueType(0);
15345   SDValue LHS = N->getOperand(0);
15346   SDValue RHS = N->getOperand(1);
15347
15348   // Try to synthesize horizontal subs from subs of shuffles.
15349   if (((Subtarget->hasSSE3() && (VT == MVT::v4f32 || VT == MVT::v2f64)) ||
15350        (Subtarget->hasAVX() && (VT == MVT::v8f32 || VT == MVT::v4f64))) &&
15351       isHorizontalBinOp(LHS, RHS, false))
15352     return DAG.getNode(X86ISD::FHSUB, N->getDebugLoc(), VT, LHS, RHS);
15353   return SDValue();
15354 }
15355
15356 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
15357 /// X86ISD::FXOR nodes.
15358 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
15359   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
15360   // F[X]OR(0.0, x) -> x
15361   // F[X]OR(x, 0.0) -> x
15362   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
15363     if (C->getValueAPF().isPosZero())
15364       return N->getOperand(1);
15365   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
15366     if (C->getValueAPF().isPosZero())
15367       return N->getOperand(0);
15368   return SDValue();
15369 }
15370
15371 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
15372 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
15373   // FAND(0.0, x) -> 0.0
15374   // FAND(x, 0.0) -> 0.0
15375   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
15376     if (C->getValueAPF().isPosZero())
15377       return N->getOperand(0);
15378   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
15379     if (C->getValueAPF().isPosZero())
15380       return N->getOperand(1);
15381   return SDValue();
15382 }
15383
15384 static SDValue PerformBTCombine(SDNode *N,
15385                                 SelectionDAG &DAG,
15386                                 TargetLowering::DAGCombinerInfo &DCI) {
15387   // BT ignores high bits in the bit index operand.
15388   SDValue Op1 = N->getOperand(1);
15389   if (Op1.hasOneUse()) {
15390     unsigned BitWidth = Op1.getValueSizeInBits();
15391     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
15392     APInt KnownZero, KnownOne;
15393     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
15394                                           !DCI.isBeforeLegalizeOps());
15395     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
15396     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
15397         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
15398       DCI.CommitTargetLoweringOpt(TLO);
15399   }
15400   return SDValue();
15401 }
15402
15403 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
15404   SDValue Op = N->getOperand(0);
15405   if (Op.getOpcode() == ISD::BITCAST)
15406     Op = Op.getOperand(0);
15407   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
15408   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
15409       VT.getVectorElementType().getSizeInBits() ==
15410       OpVT.getVectorElementType().getSizeInBits()) {
15411     return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
15412   }
15413   return SDValue();
15414 }
15415
15416 static SDValue PerformSExtCombine(SDNode *N, SelectionDAG &DAG,
15417                                   TargetLowering::DAGCombinerInfo &DCI,
15418                                   const X86Subtarget *Subtarget) {
15419   if (!DCI.isBeforeLegalizeOps())
15420     return SDValue();
15421
15422   if (!Subtarget->hasAVX())
15423     return SDValue();
15424
15425   EVT VT = N->getValueType(0);
15426   SDValue Op = N->getOperand(0);
15427   EVT OpVT = Op.getValueType();
15428   DebugLoc dl = N->getDebugLoc();
15429
15430   if ((VT == MVT::v4i64 && OpVT == MVT::v4i32) ||
15431       (VT == MVT::v8i32 && OpVT == MVT::v8i16)) {
15432
15433     if (Subtarget->hasAVX2())
15434       return DAG.getNode(X86ISD::VSEXT_MOVL, dl, VT, Op);
15435
15436     // Optimize vectors in AVX mode
15437     // Sign extend  v8i16 to v8i32 and
15438     //              v4i32 to v4i64
15439     //
15440     // Divide input vector into two parts
15441     // for v4i32 the shuffle mask will be { 0, 1, -1, -1} {2, 3, -1, -1}
15442     // use vpmovsx instruction to extend v4i32 -> v2i64; v8i16 -> v4i32
15443     // concat the vectors to original VT
15444
15445     unsigned NumElems = OpVT.getVectorNumElements();
15446     SDValue Undef = DAG.getUNDEF(OpVT);
15447
15448     SmallVector<int,8> ShufMask1(NumElems, -1);
15449     for (unsigned i = 0; i != NumElems/2; ++i)
15450       ShufMask1[i] = i;
15451
15452     SDValue OpLo = DAG.getVectorShuffle(OpVT, dl, Op, Undef, &ShufMask1[0]);
15453
15454     SmallVector<int,8> ShufMask2(NumElems, -1);
15455     for (unsigned i = 0; i != NumElems/2; ++i)
15456       ShufMask2[i] = i + NumElems/2;
15457
15458     SDValue OpHi = DAG.getVectorShuffle(OpVT, dl, Op, Undef, &ShufMask2[0]);
15459
15460     EVT HalfVT = EVT::getVectorVT(*DAG.getContext(), VT.getScalarType(),
15461                                   VT.getVectorNumElements()/2);
15462
15463     OpLo = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpLo);
15464     OpHi = DAG.getNode(X86ISD::VSEXT_MOVL, dl, HalfVT, OpHi);
15465
15466     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
15467   }
15468   return SDValue();
15469 }
15470
15471 static SDValue PerformFMACombine(SDNode *N, SelectionDAG &DAG,
15472                                  const X86Subtarget* Subtarget) {
15473   DebugLoc dl = N->getDebugLoc();
15474   EVT VT = N->getValueType(0);
15475
15476   EVT ScalarVT = VT.getScalarType();
15477   if ((ScalarVT != MVT::f32 && ScalarVT != MVT::f64) || !Subtarget->hasFMA())
15478     return SDValue();
15479
15480   SDValue A = N->getOperand(0);
15481   SDValue B = N->getOperand(1);
15482   SDValue C = N->getOperand(2);
15483
15484   bool NegA = (A.getOpcode() == ISD::FNEG);
15485   bool NegB = (B.getOpcode() == ISD::FNEG);
15486   bool NegC = (C.getOpcode() == ISD::FNEG);
15487
15488   // Negative multiplication when NegA xor NegB
15489   bool NegMul = (NegA != NegB);
15490   if (NegA)
15491     A = A.getOperand(0);
15492   if (NegB)
15493     B = B.getOperand(0);
15494   if (NegC)
15495     C = C.getOperand(0);
15496
15497   unsigned Opcode;
15498   if (!NegMul)
15499     Opcode = (!NegC)? X86ISD::FMADD : X86ISD::FMSUB;
15500   else
15501     Opcode = (!NegC)? X86ISD::FNMADD : X86ISD::FNMSUB;
15502   return DAG.getNode(Opcode, dl, VT, A, B, C);
15503 }
15504
15505 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG,
15506                                   TargetLowering::DAGCombinerInfo &DCI,
15507                                   const X86Subtarget *Subtarget) {
15508   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
15509   //           (and (i32 x86isd::setcc_carry), 1)
15510   // This eliminates the zext. This transformation is necessary because
15511   // ISD::SETCC is always legalized to i8.
15512   DebugLoc dl = N->getDebugLoc();
15513   SDValue N0 = N->getOperand(0);
15514   EVT VT = N->getValueType(0);
15515   EVT OpVT = N0.getValueType();
15516
15517   if (N0.getOpcode() == ISD::AND &&
15518       N0.hasOneUse() &&
15519       N0.getOperand(0).hasOneUse()) {
15520     SDValue N00 = N0.getOperand(0);
15521     if (N00.getOpcode() != X86ISD::SETCC_CARRY)
15522       return SDValue();
15523     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
15524     if (!C || C->getZExtValue() != 1)
15525       return SDValue();
15526     return DAG.getNode(ISD::AND, dl, VT,
15527                        DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
15528                                    N00.getOperand(0), N00.getOperand(1)),
15529                        DAG.getConstant(1, VT));
15530   }
15531
15532   // Optimize vectors in AVX mode:
15533   //
15534   //   v8i16 -> v8i32
15535   //   Use vpunpcklwd for 4 lower elements  v8i16 -> v4i32.
15536   //   Use vpunpckhwd for 4 upper elements  v8i16 -> v4i32.
15537   //   Concat upper and lower parts.
15538   //
15539   //   v4i32 -> v4i64
15540   //   Use vpunpckldq for 4 lower elements  v4i32 -> v2i64.
15541   //   Use vpunpckhdq for 4 upper elements  v4i32 -> v2i64.
15542   //   Concat upper and lower parts.
15543   //
15544   if (!DCI.isBeforeLegalizeOps())
15545     return SDValue();
15546
15547   if (!Subtarget->hasAVX())
15548     return SDValue();
15549
15550   if (((VT == MVT::v8i32) && (OpVT == MVT::v8i16)) ||
15551       ((VT == MVT::v4i64) && (OpVT == MVT::v4i32)))  {
15552
15553     if (Subtarget->hasAVX2())
15554       return DAG.getNode(X86ISD::VZEXT_MOVL, dl, VT, N0);
15555
15556     SDValue ZeroVec = getZeroVector(OpVT, Subtarget, DAG, dl);
15557     SDValue OpLo = getUnpackl(DAG, dl, OpVT, N0, ZeroVec);
15558     SDValue OpHi = getUnpackh(DAG, dl, OpVT, N0, ZeroVec);
15559
15560     EVT HVT = EVT::getVectorVT(*DAG.getContext(), VT.getVectorElementType(),
15561                                VT.getVectorNumElements()/2);
15562
15563     OpLo = DAG.getNode(ISD::BITCAST, dl, HVT, OpLo);
15564     OpHi = DAG.getNode(ISD::BITCAST, dl, HVT, OpHi);
15565
15566     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, OpLo, OpHi);
15567   }
15568
15569   return SDValue();
15570 }
15571
15572 // Optimize x == -y --> x+y == 0
15573 //          x != -y --> x+y != 0
15574 static SDValue PerformISDSETCCCombine(SDNode *N, SelectionDAG &DAG) {
15575   ISD::CondCode CC = cast<CondCodeSDNode>(N->getOperand(2))->get();
15576   SDValue LHS = N->getOperand(0);
15577   SDValue RHS = N->getOperand(1);
15578
15579   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && LHS.getOpcode() == ISD::SUB)
15580     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(LHS.getOperand(0)))
15581       if (C->getAPIntValue() == 0 && LHS.hasOneUse()) {
15582         SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
15583                                    LHS.getValueType(), RHS, LHS.getOperand(1));
15584         return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
15585                             addV, DAG.getConstant(0, addV.getValueType()), CC);
15586       }
15587   if ((CC == ISD::SETNE || CC == ISD::SETEQ) && RHS.getOpcode() == ISD::SUB)
15588     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS.getOperand(0)))
15589       if (C->getAPIntValue() == 0 && RHS.hasOneUse()) {
15590         SDValue addV = DAG.getNode(ISD::ADD, N->getDebugLoc(),
15591                                    RHS.getValueType(), LHS, RHS.getOperand(1));
15592         return DAG.getSetCC(N->getDebugLoc(), N->getValueType(0),
15593                             addV, DAG.getConstant(0, addV.getValueType()), CC);
15594       }
15595   return SDValue();
15596 }
15597
15598 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
15599 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
15600   DebugLoc DL = N->getDebugLoc();
15601   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(0));
15602   SDValue EFLAGS = N->getOperand(1);
15603
15604   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
15605   // a zext and produces an all-ones bit which is more useful than 0/1 in some
15606   // cases.
15607   if (CC == X86::COND_B)
15608     return DAG.getNode(ISD::AND, DL, MVT::i8,
15609                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
15610                                    DAG.getConstant(CC, MVT::i8), EFLAGS),
15611                        DAG.getConstant(1, MVT::i8));
15612
15613   SDValue Flags;
15614
15615   Flags = BoolTestSetCCCombine(EFLAGS, CC);
15616   if (Flags.getNode()) {
15617     SDValue Cond = DAG.getConstant(CC, MVT::i8);
15618     return DAG.getNode(X86ISD::SETCC, DL, N->getVTList(), Cond, Flags);
15619   }
15620
15621   return SDValue();
15622 }
15623
15624 // Optimize branch condition evaluation.
15625 //
15626 static SDValue PerformBrCondCombine(SDNode *N, SelectionDAG &DAG,
15627                                     TargetLowering::DAGCombinerInfo &DCI,
15628                                     const X86Subtarget *Subtarget) {
15629   DebugLoc DL = N->getDebugLoc();
15630   SDValue Chain = N->getOperand(0);
15631   SDValue Dest = N->getOperand(1);
15632   SDValue EFLAGS = N->getOperand(3);
15633   X86::CondCode CC = X86::CondCode(N->getConstantOperandVal(2));
15634
15635   SDValue Flags;
15636
15637   Flags = BoolTestSetCCCombine(EFLAGS, CC);
15638   if (Flags.getNode()) {
15639     SDValue Cond = DAG.getConstant(CC, MVT::i8);
15640     return DAG.getNode(X86ISD::BRCOND, DL, N->getVTList(), Chain, Dest, Cond,
15641                        Flags);
15642   }
15643
15644   return SDValue();
15645 }
15646
15647 static SDValue PerformUINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG) {
15648   SDValue Op0 = N->getOperand(0);
15649   EVT InVT = Op0->getValueType(0);
15650
15651   // UINT_TO_FP(v4i8) -> SINT_TO_FP(ZEXT(v4i8 to v4i32))
15652   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
15653     DebugLoc dl = N->getDebugLoc();
15654     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
15655     SDValue P = DAG.getNode(ISD::ZERO_EXTEND, dl, DstVT, Op0);
15656     // Notice that we use SINT_TO_FP because we know that the high bits
15657     // are zero and SINT_TO_FP is better supported by the hardware.
15658     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
15659   }
15660
15661   return SDValue();
15662 }
15663
15664 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
15665                                         const X86TargetLowering *XTLI) {
15666   SDValue Op0 = N->getOperand(0);
15667   EVT InVT = Op0->getValueType(0);
15668
15669   // SINT_TO_FP(v4i8) -> SINT_TO_FP(SEXT(v4i8 to v4i32))
15670   if (InVT == MVT::v8i8 || InVT == MVT::v4i8) {
15671     DebugLoc dl = N->getDebugLoc();
15672     MVT DstVT = InVT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
15673     SDValue P = DAG.getNode(ISD::SIGN_EXTEND, dl, DstVT, Op0);
15674     return DAG.getNode(ISD::SINT_TO_FP, dl, N->getValueType(0), P);
15675   }
15676
15677   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
15678   // a 32-bit target where SSE doesn't support i64->FP operations.
15679   if (Op0.getOpcode() == ISD::LOAD) {
15680     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
15681     EVT VT = Ld->getValueType(0);
15682     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
15683         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
15684         !XTLI->getSubtarget()->is64Bit() &&
15685         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
15686       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
15687                                           Ld->getChain(), Op0, DAG);
15688       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
15689       return FILDChain;
15690     }
15691   }
15692   return SDValue();
15693 }
15694
15695 static SDValue PerformFP_TO_SINTCombine(SDNode *N, SelectionDAG &DAG) {
15696   EVT VT = N->getValueType(0);
15697
15698   // v4i8 = FP_TO_SINT() -> v4i8 = TRUNCATE (V4i32 = FP_TO_SINT()
15699   if (VT == MVT::v8i8 || VT == MVT::v4i8) {
15700     DebugLoc dl = N->getDebugLoc();
15701     MVT DstVT = VT == MVT::v4i8 ? MVT::v4i32 : MVT::v8i32;
15702     SDValue I = DAG.getNode(ISD::FP_TO_SINT, dl, DstVT, N->getOperand(0));
15703     return DAG.getNode(ISD::TRUNCATE, dl, VT, I);
15704   }
15705
15706   return SDValue();
15707 }
15708
15709 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
15710 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
15711                                  X86TargetLowering::DAGCombinerInfo &DCI) {
15712   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
15713   // the result is either zero or one (depending on the input carry bit).
15714   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
15715   if (X86::isZeroNode(N->getOperand(0)) &&
15716       X86::isZeroNode(N->getOperand(1)) &&
15717       // We don't have a good way to replace an EFLAGS use, so only do this when
15718       // dead right now.
15719       SDValue(N, 1).use_empty()) {
15720     DebugLoc DL = N->getDebugLoc();
15721     EVT VT = N->getValueType(0);
15722     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
15723     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
15724                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
15725                                            DAG.getConstant(X86::COND_B,MVT::i8),
15726                                            N->getOperand(2)),
15727                                DAG.getConstant(1, VT));
15728     return DCI.CombineTo(N, Res1, CarryOut);
15729   }
15730
15731   return SDValue();
15732 }
15733
15734 // fold (add Y, (sete  X, 0)) -> adc  0, Y
15735 //      (add Y, (setne X, 0)) -> sbb -1, Y
15736 //      (sub (sete  X, 0), Y) -> sbb  0, Y
15737 //      (sub (setne X, 0), Y) -> adc -1, Y
15738 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
15739   DebugLoc DL = N->getDebugLoc();
15740
15741   // Look through ZExts.
15742   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
15743   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
15744     return SDValue();
15745
15746   SDValue SetCC = Ext.getOperand(0);
15747   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
15748     return SDValue();
15749
15750   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
15751   if (CC != X86::COND_E && CC != X86::COND_NE)
15752     return SDValue();
15753
15754   SDValue Cmp = SetCC.getOperand(1);
15755   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
15756       !X86::isZeroNode(Cmp.getOperand(1)) ||
15757       !Cmp.getOperand(0).getValueType().isInteger())
15758     return SDValue();
15759
15760   SDValue CmpOp0 = Cmp.getOperand(0);
15761   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
15762                                DAG.getConstant(1, CmpOp0.getValueType()));
15763
15764   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
15765   if (CC == X86::COND_NE)
15766     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
15767                        DL, OtherVal.getValueType(), OtherVal,
15768                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
15769   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
15770                      DL, OtherVal.getValueType(), OtherVal,
15771                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
15772 }
15773
15774 /// PerformADDCombine - Do target-specific dag combines on integer adds.
15775 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
15776                                  const X86Subtarget *Subtarget) {
15777   EVT VT = N->getValueType(0);
15778   SDValue Op0 = N->getOperand(0);
15779   SDValue Op1 = N->getOperand(1);
15780
15781   // Try to synthesize horizontal adds from adds of shuffles.
15782   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
15783        (Subtarget->hasAVX2() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
15784       isHorizontalBinOp(Op0, Op1, true))
15785     return DAG.getNode(X86ISD::HADD, N->getDebugLoc(), VT, Op0, Op1);
15786
15787   return OptimizeConditionalInDecrement(N, DAG);
15788 }
15789
15790 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
15791                                  const X86Subtarget *Subtarget) {
15792   SDValue Op0 = N->getOperand(0);
15793   SDValue Op1 = N->getOperand(1);
15794
15795   // X86 can't encode an immediate LHS of a sub. See if we can push the
15796   // negation into a preceding instruction.
15797   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
15798     // If the RHS of the sub is a XOR with one use and a constant, invert the
15799     // immediate. Then add one to the LHS of the sub so we can turn
15800     // X-Y -> X+~Y+1, saving one register.
15801     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
15802         isa<ConstantSDNode>(Op1.getOperand(1))) {
15803       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
15804       EVT VT = Op0.getValueType();
15805       SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
15806                                    Op1.getOperand(0),
15807                                    DAG.getConstant(~XorC, VT));
15808       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
15809                          DAG.getConstant(C->getAPIntValue()+1, VT));
15810     }
15811   }
15812
15813   // Try to synthesize horizontal adds from adds of shuffles.
15814   EVT VT = N->getValueType(0);
15815   if (((Subtarget->hasSSSE3() && (VT == MVT::v8i16 || VT == MVT::v4i32)) ||
15816        (Subtarget->hasAVX2() && (VT == MVT::v16i16 || VT == MVT::v8i32))) &&
15817       isHorizontalBinOp(Op0, Op1, true))
15818     return DAG.getNode(X86ISD::HSUB, N->getDebugLoc(), VT, Op0, Op1);
15819
15820   return OptimizeConditionalInDecrement(N, DAG);
15821 }
15822
15823 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
15824                                              DAGCombinerInfo &DCI) const {
15825   SelectionDAG &DAG = DCI.DAG;
15826   switch (N->getOpcode()) {
15827   default: break;
15828   case ISD::EXTRACT_VECTOR_ELT:
15829     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, DCI);
15830   case ISD::VSELECT:
15831   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, DCI, Subtarget);
15832   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI);
15833   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
15834   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
15835   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
15836   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
15837   case ISD::SHL:
15838   case ISD::SRA:
15839   case ISD::SRL:            return PerformShiftCombine(N, DAG, DCI, Subtarget);
15840   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
15841   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
15842   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
15843   case ISD::LOAD:           return PerformLOADCombine(N, DAG, DCI, Subtarget);
15844   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
15845   case ISD::UINT_TO_FP:     return PerformUINT_TO_FPCombine(N, DAG);
15846   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
15847   case ISD::FP_TO_SINT:     return PerformFP_TO_SINTCombine(N, DAG);
15848   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
15849   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
15850   case X86ISD::FXOR:
15851   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
15852   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
15853   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
15854   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
15855   case ISD::ANY_EXTEND:
15856   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG, DCI, Subtarget);
15857   case ISD::SIGN_EXTEND:    return PerformSExtCombine(N, DAG, DCI, Subtarget);
15858   case ISD::TRUNCATE:       return PerformTruncateCombine(N, DAG, DCI);
15859   case ISD::SETCC:          return PerformISDSETCCCombine(N, DAG);
15860   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG);
15861   case X86ISD::BRCOND:      return PerformBrCondCombine(N, DAG, DCI, Subtarget);
15862   case X86ISD::SHUFP:       // Handle all target specific shuffles
15863   case X86ISD::PALIGN:
15864   case X86ISD::UNPCKH:
15865   case X86ISD::UNPCKL:
15866   case X86ISD::MOVHLPS:
15867   case X86ISD::MOVLHPS:
15868   case X86ISD::PSHUFD:
15869   case X86ISD::PSHUFHW:
15870   case X86ISD::PSHUFLW:
15871   case X86ISD::MOVSS:
15872   case X86ISD::MOVSD:
15873   case X86ISD::VPERMILP:
15874   case X86ISD::VPERM2X128:
15875   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
15876   case ISD::FMA:            return PerformFMACombine(N, DAG, Subtarget);
15877   }
15878
15879   return SDValue();
15880 }
15881
15882 /// isTypeDesirableForOp - Return true if the target has native support for
15883 /// the specified value type and it is 'desirable' to use the type for the
15884 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
15885 /// instruction encodings are longer and some i16 instructions are slow.
15886 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
15887   if (!isTypeLegal(VT))
15888     return false;
15889   if (VT != MVT::i16)
15890     return true;
15891
15892   switch (Opc) {
15893   default:
15894     return true;
15895   case ISD::LOAD:
15896   case ISD::SIGN_EXTEND:
15897   case ISD::ZERO_EXTEND:
15898   case ISD::ANY_EXTEND:
15899   case ISD::SHL:
15900   case ISD::SRL:
15901   case ISD::SUB:
15902   case ISD::ADD:
15903   case ISD::MUL:
15904   case ISD::AND:
15905   case ISD::OR:
15906   case ISD::XOR:
15907     return false;
15908   }
15909 }
15910
15911 /// IsDesirableToPromoteOp - This method query the target whether it is
15912 /// beneficial for dag combiner to promote the specified node. If true, it
15913 /// should return the desired promotion type by reference.
15914 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
15915   EVT VT = Op.getValueType();
15916   if (VT != MVT::i16)
15917     return false;
15918
15919   bool Promote = false;
15920   bool Commute = false;
15921   switch (Op.getOpcode()) {
15922   default: break;
15923   case ISD::LOAD: {
15924     LoadSDNode *LD = cast<LoadSDNode>(Op);
15925     // If the non-extending load has a single use and it's not live out, then it
15926     // might be folded.
15927     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
15928                                                      Op.hasOneUse()*/) {
15929       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
15930              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
15931         // The only case where we'd want to promote LOAD (rather then it being
15932         // promoted as an operand is when it's only use is liveout.
15933         if (UI->getOpcode() != ISD::CopyToReg)
15934           return false;
15935       }
15936     }
15937     Promote = true;
15938     break;
15939   }
15940   case ISD::SIGN_EXTEND:
15941   case ISD::ZERO_EXTEND:
15942   case ISD::ANY_EXTEND:
15943     Promote = true;
15944     break;
15945   case ISD::SHL:
15946   case ISD::SRL: {
15947     SDValue N0 = Op.getOperand(0);
15948     // Look out for (store (shl (load), x)).
15949     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
15950       return false;
15951     Promote = true;
15952     break;
15953   }
15954   case ISD::ADD:
15955   case ISD::MUL:
15956   case ISD::AND:
15957   case ISD::OR:
15958   case ISD::XOR:
15959     Commute = true;
15960     // fallthrough
15961   case ISD::SUB: {
15962     SDValue N0 = Op.getOperand(0);
15963     SDValue N1 = Op.getOperand(1);
15964     if (!Commute && MayFoldLoad(N1))
15965       return false;
15966     // Avoid disabling potential load folding opportunities.
15967     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
15968       return false;
15969     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
15970       return false;
15971     Promote = true;
15972   }
15973   }
15974
15975   PVT = MVT::i32;
15976   return Promote;
15977 }
15978
15979 //===----------------------------------------------------------------------===//
15980 //                           X86 Inline Assembly Support
15981 //===----------------------------------------------------------------------===//
15982
15983 namespace {
15984   // Helper to match a string separated by whitespace.
15985   bool matchAsmImpl(StringRef s, ArrayRef<const StringRef *> args) {
15986     s = s.substr(s.find_first_not_of(" \t")); // Skip leading whitespace.
15987
15988     for (unsigned i = 0, e = args.size(); i != e; ++i) {
15989       StringRef piece(*args[i]);
15990       if (!s.startswith(piece)) // Check if the piece matches.
15991         return false;
15992
15993       s = s.substr(piece.size());
15994       StringRef::size_type pos = s.find_first_not_of(" \t");
15995       if (pos == 0) // We matched a prefix.
15996         return false;
15997
15998       s = s.substr(pos);
15999     }
16000
16001     return s.empty();
16002   }
16003   const VariadicFunction1<bool, StringRef, StringRef, matchAsmImpl> matchAsm={};
16004 }
16005
16006 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
16007   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
16008
16009   std::string AsmStr = IA->getAsmString();
16010
16011   IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
16012   if (!Ty || Ty->getBitWidth() % 16 != 0)
16013     return false;
16014
16015   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
16016   SmallVector<StringRef, 4> AsmPieces;
16017   SplitString(AsmStr, AsmPieces, ";\n");
16018
16019   switch (AsmPieces.size()) {
16020   default: return false;
16021   case 1:
16022     // FIXME: this should verify that we are targeting a 486 or better.  If not,
16023     // we will turn this bswap into something that will be lowered to logical
16024     // ops instead of emitting the bswap asm.  For now, we don't support 486 or
16025     // lower so don't worry about this.
16026     // bswap $0
16027     if (matchAsm(AsmPieces[0], "bswap", "$0") ||
16028         matchAsm(AsmPieces[0], "bswapl", "$0") ||
16029         matchAsm(AsmPieces[0], "bswapq", "$0") ||
16030         matchAsm(AsmPieces[0], "bswap", "${0:q}") ||
16031         matchAsm(AsmPieces[0], "bswapl", "${0:q}") ||
16032         matchAsm(AsmPieces[0], "bswapq", "${0:q}")) {
16033       // No need to check constraints, nothing other than the equivalent of
16034       // "=r,0" would be valid here.
16035       return IntrinsicLowering::LowerToByteSwap(CI);
16036     }
16037
16038     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
16039     if (CI->getType()->isIntegerTy(16) &&
16040         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
16041         (matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") ||
16042          matchAsm(AsmPieces[0], "rolw", "$$8,", "${0:w}"))) {
16043       AsmPieces.clear();
16044       const std::string &ConstraintsStr = IA->getConstraintString();
16045       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
16046       std::sort(AsmPieces.begin(), AsmPieces.end());
16047       if (AsmPieces.size() == 4 &&
16048           AsmPieces[0] == "~{cc}" &&
16049           AsmPieces[1] == "~{dirflag}" &&
16050           AsmPieces[2] == "~{flags}" &&
16051           AsmPieces[3] == "~{fpsr}")
16052       return IntrinsicLowering::LowerToByteSwap(CI);
16053     }
16054     break;
16055   case 3:
16056     if (CI->getType()->isIntegerTy(32) &&
16057         IA->getConstraintString().compare(0, 5, "=r,0,") == 0 &&
16058         matchAsm(AsmPieces[0], "rorw", "$$8,", "${0:w}") &&
16059         matchAsm(AsmPieces[1], "rorl", "$$16,", "$0") &&
16060         matchAsm(AsmPieces[2], "rorw", "$$8,", "${0:w}")) {
16061       AsmPieces.clear();
16062       const std::string &ConstraintsStr = IA->getConstraintString();
16063       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
16064       std::sort(AsmPieces.begin(), AsmPieces.end());
16065       if (AsmPieces.size() == 4 &&
16066           AsmPieces[0] == "~{cc}" &&
16067           AsmPieces[1] == "~{dirflag}" &&
16068           AsmPieces[2] == "~{flags}" &&
16069           AsmPieces[3] == "~{fpsr}")
16070         return IntrinsicLowering::LowerToByteSwap(CI);
16071     }
16072
16073     if (CI->getType()->isIntegerTy(64)) {
16074       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
16075       if (Constraints.size() >= 2 &&
16076           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
16077           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
16078         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
16079         if (matchAsm(AsmPieces[0], "bswap", "%eax") &&
16080             matchAsm(AsmPieces[1], "bswap", "%edx") &&
16081             matchAsm(AsmPieces[2], "xchgl", "%eax,", "%edx"))
16082           return IntrinsicLowering::LowerToByteSwap(CI);
16083       }
16084     }
16085     break;
16086   }
16087   return false;
16088 }
16089
16090
16091
16092 /// getConstraintType - Given a constraint letter, return the type of
16093 /// constraint it is for this target.
16094 X86TargetLowering::ConstraintType
16095 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
16096   if (Constraint.size() == 1) {
16097     switch (Constraint[0]) {
16098     case 'R':
16099     case 'q':
16100     case 'Q':
16101     case 'f':
16102     case 't':
16103     case 'u':
16104     case 'y':
16105     case 'x':
16106     case 'Y':
16107     case 'l':
16108       return C_RegisterClass;
16109     case 'a':
16110     case 'b':
16111     case 'c':
16112     case 'd':
16113     case 'S':
16114     case 'D':
16115     case 'A':
16116       return C_Register;
16117     case 'I':
16118     case 'J':
16119     case 'K':
16120     case 'L':
16121     case 'M':
16122     case 'N':
16123     case 'G':
16124     case 'C':
16125     case 'e':
16126     case 'Z':
16127       return C_Other;
16128     default:
16129       break;
16130     }
16131   }
16132   return TargetLowering::getConstraintType(Constraint);
16133 }
16134
16135 /// Examine constraint type and operand type and determine a weight value.
16136 /// This object must already have been set up with the operand type
16137 /// and the current alternative constraint selected.
16138 TargetLowering::ConstraintWeight
16139   X86TargetLowering::getSingleConstraintMatchWeight(
16140     AsmOperandInfo &info, const char *constraint) const {
16141   ConstraintWeight weight = CW_Invalid;
16142   Value *CallOperandVal = info.CallOperandVal;
16143     // If we don't have a value, we can't do a match,
16144     // but allow it at the lowest weight.
16145   if (CallOperandVal == NULL)
16146     return CW_Default;
16147   Type *type = CallOperandVal->getType();
16148   // Look at the constraint type.
16149   switch (*constraint) {
16150   default:
16151     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
16152   case 'R':
16153   case 'q':
16154   case 'Q':
16155   case 'a':
16156   case 'b':
16157   case 'c':
16158   case 'd':
16159   case 'S':
16160   case 'D':
16161   case 'A':
16162     if (CallOperandVal->getType()->isIntegerTy())
16163       weight = CW_SpecificReg;
16164     break;
16165   case 'f':
16166   case 't':
16167   case 'u':
16168       if (type->isFloatingPointTy())
16169         weight = CW_SpecificReg;
16170       break;
16171   case 'y':
16172       if (type->isX86_MMXTy() && Subtarget->hasMMX())
16173         weight = CW_SpecificReg;
16174       break;
16175   case 'x':
16176   case 'Y':
16177     if (((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasSSE1()) ||
16178         ((type->getPrimitiveSizeInBits() == 256) && Subtarget->hasAVX()))
16179       weight = CW_Register;
16180     break;
16181   case 'I':
16182     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
16183       if (C->getZExtValue() <= 31)
16184         weight = CW_Constant;
16185     }
16186     break;
16187   case 'J':
16188     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16189       if (C->getZExtValue() <= 63)
16190         weight = CW_Constant;
16191     }
16192     break;
16193   case 'K':
16194     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16195       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
16196         weight = CW_Constant;
16197     }
16198     break;
16199   case 'L':
16200     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16201       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
16202         weight = CW_Constant;
16203     }
16204     break;
16205   case 'M':
16206     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16207       if (C->getZExtValue() <= 3)
16208         weight = CW_Constant;
16209     }
16210     break;
16211   case 'N':
16212     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16213       if (C->getZExtValue() <= 0xff)
16214         weight = CW_Constant;
16215     }
16216     break;
16217   case 'G':
16218   case 'C':
16219     if (dyn_cast<ConstantFP>(CallOperandVal)) {
16220       weight = CW_Constant;
16221     }
16222     break;
16223   case 'e':
16224     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16225       if ((C->getSExtValue() >= -0x80000000LL) &&
16226           (C->getSExtValue() <= 0x7fffffffLL))
16227         weight = CW_Constant;
16228     }
16229     break;
16230   case 'Z':
16231     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
16232       if (C->getZExtValue() <= 0xffffffff)
16233         weight = CW_Constant;
16234     }
16235     break;
16236   }
16237   return weight;
16238 }
16239
16240 /// LowerXConstraint - try to replace an X constraint, which matches anything,
16241 /// with another that has more specific requirements based on the type of the
16242 /// corresponding operand.
16243 const char *X86TargetLowering::
16244 LowerXConstraint(EVT ConstraintVT) const {
16245   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
16246   // 'f' like normal targets.
16247   if (ConstraintVT.isFloatingPoint()) {
16248     if (Subtarget->hasSSE2())
16249       return "Y";
16250     if (Subtarget->hasSSE1())
16251       return "x";
16252   }
16253
16254   return TargetLowering::LowerXConstraint(ConstraintVT);
16255 }
16256
16257 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
16258 /// vector.  If it is invalid, don't add anything to Ops.
16259 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
16260                                                      std::string &Constraint,
16261                                                      std::vector<SDValue>&Ops,
16262                                                      SelectionDAG &DAG) const {
16263   SDValue Result(0, 0);
16264
16265   // Only support length 1 constraints for now.
16266   if (Constraint.length() > 1) return;
16267
16268   char ConstraintLetter = Constraint[0];
16269   switch (ConstraintLetter) {
16270   default: break;
16271   case 'I':
16272     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16273       if (C->getZExtValue() <= 31) {
16274         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
16275         break;
16276       }
16277     }
16278     return;
16279   case 'J':
16280     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16281       if (C->getZExtValue() <= 63) {
16282         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
16283         break;
16284       }
16285     }
16286     return;
16287   case 'K':
16288     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16289       if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
16290         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
16291         break;
16292       }
16293     }
16294     return;
16295   case 'N':
16296     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16297       if (C->getZExtValue() <= 255) {
16298         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
16299         break;
16300       }
16301     }
16302     return;
16303   case 'e': {
16304     // 32-bit signed value
16305     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16306       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
16307                                            C->getSExtValue())) {
16308         // Widen to 64 bits here to get it sign extended.
16309         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
16310         break;
16311       }
16312     // FIXME gcc accepts some relocatable values here too, but only in certain
16313     // memory models; it's complicated.
16314     }
16315     return;
16316   }
16317   case 'Z': {
16318     // 32-bit unsigned value
16319     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
16320       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
16321                                            C->getZExtValue())) {
16322         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
16323         break;
16324       }
16325     }
16326     // FIXME gcc accepts some relocatable values here too, but only in certain
16327     // memory models; it's complicated.
16328     return;
16329   }
16330   case 'i': {
16331     // Literal immediates are always ok.
16332     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
16333       // Widen to 64 bits here to get it sign extended.
16334       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
16335       break;
16336     }
16337
16338     // In any sort of PIC mode addresses need to be computed at runtime by
16339     // adding in a register or some sort of table lookup.  These can't
16340     // be used as immediates.
16341     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
16342       return;
16343
16344     // If we are in non-pic codegen mode, we allow the address of a global (with
16345     // an optional displacement) to be used with 'i'.
16346     GlobalAddressSDNode *GA = 0;
16347     int64_t Offset = 0;
16348
16349     // Match either (GA), (GA+C), (GA+C1+C2), etc.
16350     while (1) {
16351       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
16352         Offset += GA->getOffset();
16353         break;
16354       } else if (Op.getOpcode() == ISD::ADD) {
16355         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
16356           Offset += C->getZExtValue();
16357           Op = Op.getOperand(0);
16358           continue;
16359         }
16360       } else if (Op.getOpcode() == ISD::SUB) {
16361         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
16362           Offset += -C->getZExtValue();
16363           Op = Op.getOperand(0);
16364           continue;
16365         }
16366       }
16367
16368       // Otherwise, this isn't something we can handle, reject it.
16369       return;
16370     }
16371
16372     const GlobalValue *GV = GA->getGlobal();
16373     // If we require an extra load to get this address, as in PIC mode, we
16374     // can't accept it.
16375     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
16376                                                         getTargetMachine())))
16377       return;
16378
16379     Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
16380                                         GA->getValueType(0), Offset);
16381     break;
16382   }
16383   }
16384
16385   if (Result.getNode()) {
16386     Ops.push_back(Result);
16387     return;
16388   }
16389   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
16390 }
16391
16392 std::pair<unsigned, const TargetRegisterClass*>
16393 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
16394                                                 EVT VT) const {
16395   // First, see if this is a constraint that directly corresponds to an LLVM
16396   // register class.
16397   if (Constraint.size() == 1) {
16398     // GCC Constraint Letters
16399     switch (Constraint[0]) {
16400     default: break;
16401       // TODO: Slight differences here in allocation order and leaving
16402       // RIP in the class. Do they matter any more here than they do
16403       // in the normal allocation?
16404     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
16405       if (Subtarget->is64Bit()) {
16406         if (VT == MVT::i32 || VT == MVT::f32)
16407           return std::make_pair(0U, &X86::GR32RegClass);
16408         if (VT == MVT::i16)
16409           return std::make_pair(0U, &X86::GR16RegClass);
16410         if (VT == MVT::i8 || VT == MVT::i1)
16411           return std::make_pair(0U, &X86::GR8RegClass);
16412         if (VT == MVT::i64 || VT == MVT::f64)
16413           return std::make_pair(0U, &X86::GR64RegClass);
16414         break;
16415       }
16416       // 32-bit fallthrough
16417     case 'Q':   // Q_REGS
16418       if (VT == MVT::i32 || VT == MVT::f32)
16419         return std::make_pair(0U, &X86::GR32_ABCDRegClass);
16420       if (VT == MVT::i16)
16421         return std::make_pair(0U, &X86::GR16_ABCDRegClass);
16422       if (VT == MVT::i8 || VT == MVT::i1)
16423         return std::make_pair(0U, &X86::GR8_ABCD_LRegClass);
16424       if (VT == MVT::i64)
16425         return std::make_pair(0U, &X86::GR64_ABCDRegClass);
16426       break;
16427     case 'r':   // GENERAL_REGS
16428     case 'l':   // INDEX_REGS
16429       if (VT == MVT::i8 || VT == MVT::i1)
16430         return std::make_pair(0U, &X86::GR8RegClass);
16431       if (VT == MVT::i16)
16432         return std::make_pair(0U, &X86::GR16RegClass);
16433       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
16434         return std::make_pair(0U, &X86::GR32RegClass);
16435       return std::make_pair(0U, &X86::GR64RegClass);
16436     case 'R':   // LEGACY_REGS
16437       if (VT == MVT::i8 || VT == MVT::i1)
16438         return std::make_pair(0U, &X86::GR8_NOREXRegClass);
16439       if (VT == MVT::i16)
16440         return std::make_pair(0U, &X86::GR16_NOREXRegClass);
16441       if (VT == MVT::i32 || !Subtarget->is64Bit())
16442         return std::make_pair(0U, &X86::GR32_NOREXRegClass);
16443       return std::make_pair(0U, &X86::GR64_NOREXRegClass);
16444     case 'f':  // FP Stack registers.
16445       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
16446       // value to the correct fpstack register class.
16447       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
16448         return std::make_pair(0U, &X86::RFP32RegClass);
16449       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
16450         return std::make_pair(0U, &X86::RFP64RegClass);
16451       return std::make_pair(0U, &X86::RFP80RegClass);
16452     case 'y':   // MMX_REGS if MMX allowed.
16453       if (!Subtarget->hasMMX()) break;
16454       return std::make_pair(0U, &X86::VR64RegClass);
16455     case 'Y':   // SSE_REGS if SSE2 allowed
16456       if (!Subtarget->hasSSE2()) break;
16457       // FALL THROUGH.
16458     case 'x':   // SSE_REGS if SSE1 allowed or AVX_REGS if AVX allowed
16459       if (!Subtarget->hasSSE1()) break;
16460
16461       switch (VT.getSimpleVT().SimpleTy) {
16462       default: break;
16463       // Scalar SSE types.
16464       case MVT::f32:
16465       case MVT::i32:
16466         return std::make_pair(0U, &X86::FR32RegClass);
16467       case MVT::f64:
16468       case MVT::i64:
16469         return std::make_pair(0U, &X86::FR64RegClass);
16470       // Vector types.
16471       case MVT::v16i8:
16472       case MVT::v8i16:
16473       case MVT::v4i32:
16474       case MVT::v2i64:
16475       case MVT::v4f32:
16476       case MVT::v2f64:
16477         return std::make_pair(0U, &X86::VR128RegClass);
16478       // AVX types.
16479       case MVT::v32i8:
16480       case MVT::v16i16:
16481       case MVT::v8i32:
16482       case MVT::v4i64:
16483       case MVT::v8f32:
16484       case MVT::v4f64:
16485         return std::make_pair(0U, &X86::VR256RegClass);
16486       }
16487       break;
16488     }
16489   }
16490
16491   // Use the default implementation in TargetLowering to convert the register
16492   // constraint into a member of a register class.
16493   std::pair<unsigned, const TargetRegisterClass*> Res;
16494   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
16495
16496   // Not found as a standard register?
16497   if (Res.second == 0) {
16498     // Map st(0) -> st(7) -> ST0
16499     if (Constraint.size() == 7 && Constraint[0] == '{' &&
16500         tolower(Constraint[1]) == 's' &&
16501         tolower(Constraint[2]) == 't' &&
16502         Constraint[3] == '(' &&
16503         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
16504         Constraint[5] == ')' &&
16505         Constraint[6] == '}') {
16506
16507       Res.first = X86::ST0+Constraint[4]-'0';
16508       Res.second = &X86::RFP80RegClass;
16509       return Res;
16510     }
16511
16512     // GCC allows "st(0)" to be called just plain "st".
16513     if (StringRef("{st}").equals_lower(Constraint)) {
16514       Res.first = X86::ST0;
16515       Res.second = &X86::RFP80RegClass;
16516       return Res;
16517     }
16518
16519     // flags -> EFLAGS
16520     if (StringRef("{flags}").equals_lower(Constraint)) {
16521       Res.first = X86::EFLAGS;
16522       Res.second = &X86::CCRRegClass;
16523       return Res;
16524     }
16525
16526     // 'A' means EAX + EDX.
16527     if (Constraint == "A") {
16528       Res.first = X86::EAX;
16529       Res.second = &X86::GR32_ADRegClass;
16530       return Res;
16531     }
16532     return Res;
16533   }
16534
16535   // Otherwise, check to see if this is a register class of the wrong value
16536   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
16537   // turn into {ax},{dx}.
16538   if (Res.second->hasType(VT))
16539     return Res;   // Correct type already, nothing to do.
16540
16541   // All of the single-register GCC register classes map their values onto
16542   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
16543   // really want an 8-bit or 32-bit register, map to the appropriate register
16544   // class and return the appropriate register.
16545   if (Res.second == &X86::GR16RegClass) {
16546     if (VT == MVT::i8) {
16547       unsigned DestReg = 0;
16548       switch (Res.first) {
16549       default: break;
16550       case X86::AX: DestReg = X86::AL; break;
16551       case X86::DX: DestReg = X86::DL; break;
16552       case X86::CX: DestReg = X86::CL; break;
16553       case X86::BX: DestReg = X86::BL; break;
16554       }
16555       if (DestReg) {
16556         Res.first = DestReg;
16557         Res.second = &X86::GR8RegClass;
16558       }
16559     } else if (VT == MVT::i32) {
16560       unsigned DestReg = 0;
16561       switch (Res.first) {
16562       default: break;
16563       case X86::AX: DestReg = X86::EAX; break;
16564       case X86::DX: DestReg = X86::EDX; break;
16565       case X86::CX: DestReg = X86::ECX; break;
16566       case X86::BX: DestReg = X86::EBX; break;
16567       case X86::SI: DestReg = X86::ESI; break;
16568       case X86::DI: DestReg = X86::EDI; break;
16569       case X86::BP: DestReg = X86::EBP; break;
16570       case X86::SP: DestReg = X86::ESP; break;
16571       }
16572       if (DestReg) {
16573         Res.first = DestReg;
16574         Res.second = &X86::GR32RegClass;
16575       }
16576     } else if (VT == MVT::i64) {
16577       unsigned DestReg = 0;
16578       switch (Res.first) {
16579       default: break;
16580       case X86::AX: DestReg = X86::RAX; break;
16581       case X86::DX: DestReg = X86::RDX; break;
16582       case X86::CX: DestReg = X86::RCX; break;
16583       case X86::BX: DestReg = X86::RBX; break;
16584       case X86::SI: DestReg = X86::RSI; break;
16585       case X86::DI: DestReg = X86::RDI; break;
16586       case X86::BP: DestReg = X86::RBP; break;
16587       case X86::SP: DestReg = X86::RSP; break;
16588       }
16589       if (DestReg) {
16590         Res.first = DestReg;
16591         Res.second = &X86::GR64RegClass;
16592       }
16593     }
16594   } else if (Res.second == &X86::FR32RegClass ||
16595              Res.second == &X86::FR64RegClass ||
16596              Res.second == &X86::VR128RegClass) {
16597     // Handle references to XMM physical registers that got mapped into the
16598     // wrong class.  This can happen with constraints like {xmm0} where the
16599     // target independent register mapper will just pick the first match it can
16600     // find, ignoring the required type.
16601
16602     if (VT == MVT::f32 || VT == MVT::i32)
16603       Res.second = &X86::FR32RegClass;
16604     else if (VT == MVT::f64 || VT == MVT::i64)
16605       Res.second = &X86::FR64RegClass;
16606     else if (X86::VR128RegClass.hasType(VT))
16607       Res.second = &X86::VR128RegClass;
16608     else if (X86::VR256RegClass.hasType(VT))
16609       Res.second = &X86::VR256RegClass;
16610   }
16611
16612   return Res;
16613 }