I added several lines in X86 code generator that allow to choose
[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 "X86.h"
17 #include "X86InstrBuilder.h"
18 #include "X86ISelLowering.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/BitVector.h"
43 #include "llvm/ADT/SmallSet.h"
44 #include "llvm/ADT/Statistic.h"
45 #include "llvm/ADT/StringExtras.h"
46 #include "llvm/ADT/VectorExtras.h"
47 #include "llvm/Support/CallSite.h"
48 #include "llvm/Support/Debug.h"
49 #include "llvm/Support/Dwarf.h"
50 #include "llvm/Support/ErrorHandling.h"
51 #include "llvm/Support/MathExtras.h"
52 #include "llvm/Support/raw_ostream.h"
53 #include "llvm/Target/TargetOptions.h"
54 using namespace llvm;
55 using namespace dwarf;
56
57 STATISTIC(NumTailCalls, "Number of tail calls");
58
59 // Forward declarations.
60 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
61                        SDValue V2);
62
63 static SDValue Insert128BitVector(SDValue Result,
64                                   SDValue Vec,
65                                   SDValue Idx,
66                                   SelectionDAG &DAG,
67                                   DebugLoc dl);
68
69 static SDValue Extract128BitVector(SDValue Vec,
70                                    SDValue Idx,
71                                    SelectionDAG &DAG,
72                                    DebugLoc dl);
73
74 /// Generate a DAG to grab 128-bits from a vector > 128 bits.  This
75 /// sets things up to match to an AVX VEXTRACTF128 instruction or a
76 /// simple subregister reference.  Idx is an index in the 128 bits we
77 /// want.  It need not be aligned to a 128-bit bounday.  That makes
78 /// lowering EXTRACT_VECTOR_ELT operations easier.
79 static SDValue Extract128BitVector(SDValue Vec,
80                                    SDValue Idx,
81                                    SelectionDAG &DAG,
82                                    DebugLoc dl) {
83   EVT VT = Vec.getValueType();
84   assert(VT.getSizeInBits() == 256 && "Unexpected vector size!");
85   EVT ElVT = VT.getVectorElementType();
86   int Factor = VT.getSizeInBits()/128;
87   EVT ResultVT = EVT::getVectorVT(*DAG.getContext(), ElVT,
88                                   VT.getVectorNumElements()/Factor);
89
90   // Extract from UNDEF is UNDEF.
91   if (Vec.getOpcode() == ISD::UNDEF)
92     return DAG.getNode(ISD::UNDEF, dl, ResultVT);
93
94   if (isa<ConstantSDNode>(Idx)) {
95     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
96
97     // Extract the relevant 128 bits.  Generate an EXTRACT_SUBVECTOR
98     // we can match to VEXTRACTF128.
99     unsigned ElemsPerChunk = 128 / ElVT.getSizeInBits();
100
101     // This is the index of the first element of the 128-bit chunk
102     // we want.
103     unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits()) / 128)
104                                  * ElemsPerChunk);
105
106     SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
107     SDValue Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, ResultVT, Vec,
108                                  VecIdx);
109
110     return Result;
111   }
112
113   return SDValue();
114 }
115
116 /// Generate a DAG to put 128-bits into a vector > 128 bits.  This
117 /// sets things up to match to an AVX VINSERTF128 instruction or a
118 /// simple superregister reference.  Idx is an index in the 128 bits
119 /// we want.  It need not be aligned to a 128-bit bounday.  That makes
120 /// lowering INSERT_VECTOR_ELT operations easier.
121 static SDValue Insert128BitVector(SDValue Result,
122                                   SDValue Vec,
123                                   SDValue Idx,
124                                   SelectionDAG &DAG,
125                                   DebugLoc dl) {
126   if (isa<ConstantSDNode>(Idx)) {
127     EVT VT = Vec.getValueType();
128     assert(VT.getSizeInBits() == 128 && "Unexpected vector size!");
129
130     EVT ElVT = VT.getVectorElementType();
131     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
132     EVT ResultVT = Result.getValueType();
133
134     // Insert the relevant 128 bits.
135     unsigned ElemsPerChunk = 128/ElVT.getSizeInBits();
136
137     // This is the index of the first element of the 128-bit chunk
138     // we want.
139     unsigned NormalizedIdxVal = (((IdxVal * ElVT.getSizeInBits())/128)
140                                  * ElemsPerChunk);
141
142     SDValue VecIdx = DAG.getConstant(NormalizedIdxVal, MVT::i32);
143     Result = DAG.getNode(ISD::INSERT_SUBVECTOR, dl, ResultVT, Result, Vec,
144                          VecIdx);
145     return Result;
146   }
147
148   return SDValue();
149 }
150
151 static TargetLoweringObjectFile *createTLOF(X86TargetMachine &TM) {
152   const X86Subtarget *Subtarget = &TM.getSubtarget<X86Subtarget>();
153   bool is64Bit = Subtarget->is64Bit();
154
155   if (Subtarget->isTargetEnvMacho()) {
156     if (is64Bit)
157       return new X8664_MachoTargetObjectFile();
158     return new TargetLoweringObjectFileMachO();
159   }
160
161   if (Subtarget->isTargetELF())
162     return new TargetLoweringObjectFileELF();
163   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
164     return new TargetLoweringObjectFileCOFF();
165   llvm_unreachable("unknown subtarget type");
166 }
167
168 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
169   : TargetLowering(TM, createTLOF(TM)) {
170   Subtarget = &TM.getSubtarget<X86Subtarget>();
171   X86ScalarSSEf64 = Subtarget->hasXMMInt();
172   X86ScalarSSEf32 = Subtarget->hasXMM();
173   X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
174
175   RegInfo = TM.getRegisterInfo();
176   TD = getTargetData();
177
178   // Set up the TargetLowering object.
179   static MVT IntVTs[] = { MVT::i8, MVT::i16, MVT::i32, MVT::i64 };
180
181   // X86 is weird, it always uses i8 for shift amounts and setcc results.
182   setBooleanContents(ZeroOrOneBooleanContent);
183   // X86-SSE is even stranger. It uses -1 or 0 for vector masks.
184   setBooleanVectorContents(ZeroOrNegativeOneBooleanContent);
185
186   // For 64-bit since we have so many registers use the ILP scheduler, for
187   // 32-bit code use the register pressure specific scheduling.
188   if (Subtarget->is64Bit())
189     setSchedulingPreference(Sched::ILP);
190   else
191     setSchedulingPreference(Sched::RegPressure);
192   setStackPointerRegisterToSaveRestore(X86StackPtr);
193
194   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
195     // Setup Windows compiler runtime calls.
196     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
197     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
198     setLibcallName(RTLIB::SREM_I64, "_allrem");
199     setLibcallName(RTLIB::UREM_I64, "_aullrem");
200     setLibcallName(RTLIB::MUL_I64, "_allmul");
201     setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
202     setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
203     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
204     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
205     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
206     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
207     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
208     setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
209     setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
210   }
211
212   if (Subtarget->isTargetDarwin()) {
213     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
214     setUseUnderscoreSetJmp(false);
215     setUseUnderscoreLongJmp(false);
216   } else if (Subtarget->isTargetMingw()) {
217     // MS runtime is weird: it exports _setjmp, but longjmp!
218     setUseUnderscoreSetJmp(true);
219     setUseUnderscoreLongJmp(false);
220   } else {
221     setUseUnderscoreSetJmp(true);
222     setUseUnderscoreLongJmp(true);
223   }
224
225   // Set up the register classes.
226   addRegisterClass(MVT::i8, X86::GR8RegisterClass);
227   addRegisterClass(MVT::i16, X86::GR16RegisterClass);
228   addRegisterClass(MVT::i32, X86::GR32RegisterClass);
229   if (Subtarget->is64Bit())
230     addRegisterClass(MVT::i64, X86::GR64RegisterClass);
231
232   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
233
234   // We don't accept any truncstore of integer registers.
235   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
236   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
237   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
238   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
239   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
240   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
241
242   // SETOEQ and SETUNE require checking two conditions.
243   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
244   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
245   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
246   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
247   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
248   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
249
250   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
251   // operation.
252   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
253   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
254   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
255
256   if (Subtarget->is64Bit()) {
257     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
258     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Expand);
259   } else if (!UseSoftFloat) {
260     // We have an algorithm for SSE2->double, and we turn this into a
261     // 64-bit FILD followed by conditional FADD for other targets.
262     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
263     // We have an algorithm for SSE2, and we turn this into a 64-bit
264     // FILD for other targets.
265     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
266   }
267
268   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
269   // this operation.
270   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
271   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
272
273   if (!UseSoftFloat) {
274     // SSE has no i16 to fp conversion, only i32
275     if (X86ScalarSSEf32) {
276       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
277       // f32 and f64 cases are Legal, f80 case is not
278       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
279     } else {
280       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
281       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
282     }
283   } else {
284     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
285     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
286   }
287
288   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
289   // are Legal, f80 is custom lowered.
290   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
291   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
292
293   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
294   // this operation.
295   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
296   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
297
298   if (X86ScalarSSEf32) {
299     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
300     // f32 and f64 cases are Legal, f80 case is not
301     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
302   } else {
303     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
304     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
305   }
306
307   // Handle FP_TO_UINT by promoting the destination to a larger signed
308   // conversion.
309   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
310   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
311   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
312
313   if (Subtarget->is64Bit()) {
314     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
315     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
316   } else if (!UseSoftFloat) {
317     // Since AVX is a superset of SSE3, only check for SSE here.
318     if (Subtarget->hasSSE1() && !Subtarget->hasSSE3())
319       // Expand FP_TO_UINT into a select.
320       // FIXME: We would like to use a Custom expander here eventually to do
321       // the optimal thing for SSE vs. the default expansion in the legalizer.
322       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
323     else
324       // With SSE3 we can use fisttpll to convert to a signed i64; without
325       // SSE, we're stuck with a fistpll.
326       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , 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, e = 4; i != e; ++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   if (Subtarget->hasBMI()) {
382     setOperationAction(ISD::CTTZ           , MVT::i8   , Promote);
383   } else {
384     setOperationAction(ISD::CTTZ           , MVT::i8   , Custom);
385     setOperationAction(ISD::CTTZ           , MVT::i16  , Custom);
386     setOperationAction(ISD::CTTZ           , MVT::i32  , Custom);
387     if (Subtarget->is64Bit())
388       setOperationAction(ISD::CTTZ         , MVT::i64  , Custom);
389   }
390
391   if (Subtarget->hasLZCNT()) {
392     setOperationAction(ISD::CTLZ           , MVT::i8   , Promote);
393   } else {
394     setOperationAction(ISD::CTLZ           , MVT::i8   , Custom);
395     setOperationAction(ISD::CTLZ           , MVT::i16  , Custom);
396     setOperationAction(ISD::CTLZ           , MVT::i32  , Custom);
397     if (Subtarget->is64Bit())
398       setOperationAction(ISD::CTLZ         , MVT::i64  , Custom);
399   }
400
401   if (Subtarget->hasPOPCNT()) {
402     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
403   } else {
404     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
405     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
406     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
407     if (Subtarget->is64Bit())
408       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
409   }
410
411   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
412   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
413
414   // These should be promoted to a larger select which is supported.
415   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
416   // X86 wants to expand cmov itself.
417   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
418   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
419   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
420   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
421   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
422   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
423   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
424   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
425   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
426   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
427   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
428   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
429   if (Subtarget->is64Bit()) {
430     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
431     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
432   }
433   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
434
435   // Darwin ABI issue.
436   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
437   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
438   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
439   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
440   if (Subtarget->is64Bit())
441     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
442   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
443   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
444   if (Subtarget->is64Bit()) {
445     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
446     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
447     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
448     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
449     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
450   }
451   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
452   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
453   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
454   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
455   if (Subtarget->is64Bit()) {
456     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
457     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
458     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
459   }
460
461   if (Subtarget->hasXMM())
462     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
463
464   setOperationAction(ISD::MEMBARRIER    , MVT::Other, Custom);
465   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
466
467   // On X86 and X86-64, atomic operations are lowered to locked instructions.
468   // Locked instructions, in turn, have implicit fence semantics (all memory
469   // operations are flushed before issuing the locked instruction, and they
470   // are not buffered), so we can fold away the common pattern of
471   // fence-atomic-fence.
472   setShouldFoldAtomicFences(true);
473
474   // Expand certain atomics
475   for (unsigned i = 0, e = 4; i != e; ++i) {
476     MVT VT = IntVTs[i];
477     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
478     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
479     setOperationAction(ISD::ATOMIC_STORE, VT, Custom);
480   }
481
482   if (!Subtarget->is64Bit()) {
483     setOperationAction(ISD::ATOMIC_LOAD, MVT::i64, Custom);
484     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
485     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
486     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
487     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
488     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
489     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
490     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
491   }
492
493   if (Subtarget->hasCmpxchg16b()) {
494     setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i128, Custom);
495   }
496
497   // FIXME - use subtarget debug flags
498   if (!Subtarget->isTargetDarwin() &&
499       !Subtarget->isTargetELF() &&
500       !Subtarget->isTargetCygMing()) {
501     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
502   }
503
504   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
505   setOperationAction(ISD::EHSELECTION,   MVT::i64, Expand);
506   setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
507   setOperationAction(ISD::EHSELECTION,   MVT::i32, Expand);
508   if (Subtarget->is64Bit()) {
509     setExceptionPointerRegister(X86::RAX);
510     setExceptionSelectorRegister(X86::RDX);
511   } else {
512     setExceptionPointerRegister(X86::EAX);
513     setExceptionSelectorRegister(X86::EDX);
514   }
515   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
516   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
517
518   setOperationAction(ISD::INIT_TRAMPOLINE, MVT::Other, Custom);
519   setOperationAction(ISD::ADJUST_TRAMPOLINE, MVT::Other, Custom);
520
521   setOperationAction(ISD::TRAP, MVT::Other, Legal);
522
523   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
524   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
525   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
526   if (Subtarget->is64Bit()) {
527     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
528     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
529   } else {
530     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
531     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
532   }
533
534   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
535   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
536
537   if (Subtarget->isTargetCOFF() && !Subtarget->isTargetEnvMacho())
538     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
539                        MVT::i64 : MVT::i32, Custom);
540   else if (EnableSegmentedStacks)
541     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
542                        MVT::i64 : MVT::i32, Custom);
543   else
544     setOperationAction(ISD::DYNAMIC_STACKALLOC, Subtarget->is64Bit() ?
545                        MVT::i64 : MVT::i32, Expand);
546
547   if (!UseSoftFloat && X86ScalarSSEf64) {
548     // f32 and f64 use SSE.
549     // Set up the FP register classes.
550     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
551     addRegisterClass(MVT::f64, X86::FR64RegisterClass);
552
553     // Use ANDPD to simulate FABS.
554     setOperationAction(ISD::FABS , MVT::f64, Custom);
555     setOperationAction(ISD::FABS , MVT::f32, Custom);
556
557     // Use XORP to simulate FNEG.
558     setOperationAction(ISD::FNEG , MVT::f64, Custom);
559     setOperationAction(ISD::FNEG , MVT::f32, Custom);
560
561     // Use ANDPD and ORPD to simulate FCOPYSIGN.
562     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
563     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
564
565     // Lower this to FGETSIGNx86 plus an AND.
566     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
567     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
568
569     // We don't support sin/cos/fmod
570     setOperationAction(ISD::FSIN , MVT::f64, Expand);
571     setOperationAction(ISD::FCOS , MVT::f64, Expand);
572     setOperationAction(ISD::FSIN , MVT::f32, Expand);
573     setOperationAction(ISD::FCOS , MVT::f32, Expand);
574
575     // Expand FP immediates into loads from the stack, except for the special
576     // cases we handle.
577     addLegalFPImmediate(APFloat(+0.0)); // xorpd
578     addLegalFPImmediate(APFloat(+0.0f)); // xorps
579   } else if (!UseSoftFloat && X86ScalarSSEf32) {
580     // Use SSE for f32, x87 for f64.
581     // Set up the FP register classes.
582     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
583     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
584
585     // Use ANDPS to simulate FABS.
586     setOperationAction(ISD::FABS , MVT::f32, Custom);
587
588     // Use XORP to simulate FNEG.
589     setOperationAction(ISD::FNEG , MVT::f32, Custom);
590
591     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
592
593     // Use ANDPS and ORPS to simulate FCOPYSIGN.
594     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
595     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
596
597     // We don't support sin/cos/fmod
598     setOperationAction(ISD::FSIN , MVT::f32, Expand);
599     setOperationAction(ISD::FCOS , MVT::f32, Expand);
600
601     // Special cases we handle for FP constants.
602     addLegalFPImmediate(APFloat(+0.0f)); // xorps
603     addLegalFPImmediate(APFloat(+0.0)); // FLD0
604     addLegalFPImmediate(APFloat(+1.0)); // FLD1
605     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
606     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
607
608     if (!UnsafeFPMath) {
609       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
610       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
611     }
612   } else if (!UseSoftFloat) {
613     // f32 and f64 in x87.
614     // Set up the FP register classes.
615     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
616     addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
617
618     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
619     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
620     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
621     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
622
623     if (!UnsafeFPMath) {
624       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
625       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
626     }
627     addLegalFPImmediate(APFloat(+0.0)); // FLD0
628     addLegalFPImmediate(APFloat(+1.0)); // FLD1
629     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
630     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
631     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
632     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
633     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
634     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
635   }
636
637   // We don't support FMA.
638   setOperationAction(ISD::FMA, MVT::f64, Expand);
639   setOperationAction(ISD::FMA, MVT::f32, Expand);
640
641   // Long double always uses X87.
642   if (!UseSoftFloat) {
643     addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
644     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
645     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
646     {
647       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
648       addLegalFPImmediate(TmpFlt);  // FLD0
649       TmpFlt.changeSign();
650       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
651
652       bool ignored;
653       APFloat TmpFlt2(+1.0);
654       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
655                       &ignored);
656       addLegalFPImmediate(TmpFlt2);  // FLD1
657       TmpFlt2.changeSign();
658       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
659     }
660
661     if (!UnsafeFPMath) {
662       setOperationAction(ISD::FSIN           , MVT::f80  , Expand);
663       setOperationAction(ISD::FCOS           , MVT::f80  , Expand);
664     }
665
666     setOperationAction(ISD::FMA, MVT::f80, Expand);
667   }
668
669   // Always use a library call for pow.
670   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
671   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
672   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
673
674   setOperationAction(ISD::FLOG, MVT::f80, Expand);
675   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
676   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
677   setOperationAction(ISD::FEXP, MVT::f80, Expand);
678   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
679
680   // First set operation action for all vector types to either promote
681   // (for widening) or expand (for scalarization). Then we will selectively
682   // turn on ones that can be effectively codegen'd.
683   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
684        VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
685     setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
686     setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
687     setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
688     setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
689     setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
690     setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
691     setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
692     setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
693     setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
694     setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
695     setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
696     setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
697     setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
698     setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
699     setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
700     setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
701     setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
702     setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
703     setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
704     setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
705     setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
706     setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
707     setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
708     setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
709     setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
710     setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
711     setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
712     setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
713     setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
714     setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
715     setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
716     setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
717     setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
718     setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
719     setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
720     setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
721     setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
722     setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
723     setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
724     setOperationAction(ISD::SETCC, (MVT::SimpleValueType)VT, Expand);
725     setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
726     setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
727     setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
728     setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
729     setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
730     setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
731     setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
732     setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
733     setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
734     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
735     setOperationAction(ISD::TRUNCATE,  (MVT::SimpleValueType)VT, Expand);
736     setOperationAction(ISD::SIGN_EXTEND,  (MVT::SimpleValueType)VT, Expand);
737     setOperationAction(ISD::ZERO_EXTEND,  (MVT::SimpleValueType)VT, Expand);
738     setOperationAction(ISD::ANY_EXTEND,  (MVT::SimpleValueType)VT, Expand);
739     setOperationAction(ISD::VSELECT,  (MVT::SimpleValueType)VT, Expand);
740     for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
741          InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
742       setTruncStoreAction((MVT::SimpleValueType)VT,
743                           (MVT::SimpleValueType)InnerVT, Expand);
744     setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
745     setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
746     setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
747   }
748
749   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
750   // with -msoft-float, disable use of MMX as well.
751   if (!UseSoftFloat && Subtarget->hasMMX()) {
752     addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
753     // No operations on x86mmx supported, everything uses intrinsics.
754   }
755
756   // MMX-sized vectors (other than x86mmx) are expected to be expanded
757   // into smaller operations.
758   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
759   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
760   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
761   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
762   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
763   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
764   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
765   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
766   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
767   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
768   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
769   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
770   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
771   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
772   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
773   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
774   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
775   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
776   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
777   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
778   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
779   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
780   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
781   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
782   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
783   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
784   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
785   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
786   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
787
788   if (!UseSoftFloat && Subtarget->hasXMM()) {
789     addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
790
791     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
792     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
793     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
794     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
795     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
796     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
797     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
798     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
799     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
800     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
801     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
802     setOperationAction(ISD::SETCC,              MVT::v4f32, Custom);
803   }
804
805   if (!UseSoftFloat && Subtarget->hasXMMInt()) {
806     addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
807
808     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
809     // registers cannot be used even for integer operations.
810     addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
811     addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
812     addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
813     addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
814
815     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
816     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
817     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
818     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
819     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
820     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
821     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
822     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
823     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
824     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
825     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
826     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
827     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
828     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
829     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
830     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
831
832     setOperationAction(ISD::SETCC,              MVT::v2i64, Custom);
833     setOperationAction(ISD::SETCC,              MVT::v16i8, Custom);
834     setOperationAction(ISD::SETCC,              MVT::v8i16, Custom);
835     setOperationAction(ISD::SETCC,              MVT::v4i32, Custom);
836
837     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
838     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
839     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
840     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
841     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
842
843     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v2f64, Custom);
844     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v2i64, Custom);
845     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i8, Custom);
846     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i16, Custom);
847     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i32, Custom);
848
849     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
850     for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
851       EVT VT = (MVT::SimpleValueType)i;
852       // Do not attempt to custom lower non-power-of-2 vectors
853       if (!isPowerOf2_32(VT.getVectorNumElements()))
854         continue;
855       // Do not attempt to custom lower non-128-bit vectors
856       if (!VT.is128BitVector())
857         continue;
858       setOperationAction(ISD::BUILD_VECTOR,
859                          VT.getSimpleVT().SimpleTy, Custom);
860       setOperationAction(ISD::VECTOR_SHUFFLE,
861                          VT.getSimpleVT().SimpleTy, Custom);
862       setOperationAction(ISD::EXTRACT_VECTOR_ELT,
863                          VT.getSimpleVT().SimpleTy, Custom);
864     }
865
866     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
867     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
868     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
869     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
870     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
871     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
872
873     if (Subtarget->is64Bit()) {
874       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
875       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
876     }
877
878     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
879     for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
880       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
881       EVT VT = SVT;
882
883       // Do not attempt to promote non-128-bit vectors
884       if (!VT.is128BitVector())
885         continue;
886
887       setOperationAction(ISD::AND,    SVT, Promote);
888       AddPromotedToType (ISD::AND,    SVT, MVT::v2i64);
889       setOperationAction(ISD::OR,     SVT, Promote);
890       AddPromotedToType (ISD::OR,     SVT, MVT::v2i64);
891       setOperationAction(ISD::XOR,    SVT, Promote);
892       AddPromotedToType (ISD::XOR,    SVT, MVT::v2i64);
893       setOperationAction(ISD::LOAD,   SVT, Promote);
894       AddPromotedToType (ISD::LOAD,   SVT, MVT::v2i64);
895       setOperationAction(ISD::SELECT, SVT, Promote);
896       AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
897     }
898
899     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
900
901     // Custom lower v2i64 and v2f64 selects.
902     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
903     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
904     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
905     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
906
907     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
908     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
909   }
910
911   if (Subtarget->hasSSE41orAVX()) {
912     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
913     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
914     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
915     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
916     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
917     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
918     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
919     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
920     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
921     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
922
923     // FIXME: Do we need to handle scalar-to-vector here?
924     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
925
926     setOperationAction(ISD::VSELECT,            MVT::v2f64, Legal);
927     setOperationAction(ISD::VSELECT,            MVT::v2i64, Legal);
928     setOperationAction(ISD::VSELECT,            MVT::v16i8, Legal);
929     setOperationAction(ISD::VSELECT,            MVT::v4i32, Legal);
930     setOperationAction(ISD::VSELECT,            MVT::v4f32, Legal);
931
932     // i8 and i16 vectors are custom , because the source register and source
933     // source memory operand types are not the same width.  f32 vectors are
934     // custom since the immediate controlling the insert encodes additional
935     // information.
936     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
937     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
938     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
939     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
940
941     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
942     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
943     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
944     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
945
946     // FIXME: these should be Legal but thats only for the case where
947     // the index is constant.  For now custom expand to deal with that
948     if (Subtarget->is64Bit()) {
949       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
950       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
951     }
952   }
953
954   if (Subtarget->hasXMMInt()) {
955     setOperationAction(ISD::SRL,               MVT::v8i16, Custom);
956     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
957
958     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
959     setOperationAction(ISD::SHL,               MVT::v16i8, Custom);
960
961     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
962     setOperationAction(ISD::SRA,               MVT::v16i8, Custom);
963
964     if (Subtarget->hasAVX2()) {
965       setOperationAction(ISD::SRL,             MVT::v2i64, Legal);
966       setOperationAction(ISD::SRL,             MVT::v4i32, Legal);
967
968       setOperationAction(ISD::SHL,             MVT::v2i64, Legal);
969       setOperationAction(ISD::SHL,             MVT::v4i32, Legal);
970
971       setOperationAction(ISD::SRA,             MVT::v4i32, Legal);
972     } else {
973       setOperationAction(ISD::SRL,             MVT::v2i64, Custom);
974       setOperationAction(ISD::SRL,             MVT::v4i32, Custom);
975
976       setOperationAction(ISD::SHL,             MVT::v2i64, Custom);
977       setOperationAction(ISD::SHL,             MVT::v4i32, Custom);
978
979       setOperationAction(ISD::SRA,             MVT::v4i32, Custom);
980     }
981   }
982
983   if (Subtarget->hasSSE42orAVX())
984     setOperationAction(ISD::SETCC,             MVT::v2i64, Custom);
985
986   if (!UseSoftFloat && Subtarget->hasAVX()) {
987     addRegisterClass(MVT::v32i8,  X86::VR256RegisterClass);
988     addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
989     addRegisterClass(MVT::v8i32,  X86::VR256RegisterClass);
990     addRegisterClass(MVT::v8f32,  X86::VR256RegisterClass);
991     addRegisterClass(MVT::v4i64,  X86::VR256RegisterClass);
992     addRegisterClass(MVT::v4f64,  X86::VR256RegisterClass);
993
994     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
995     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
996     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
997
998     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
999     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
1000     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
1001     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
1002     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
1003     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
1004
1005     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
1006     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
1007     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
1008     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
1009     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
1010     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
1011
1012     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
1013     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
1014     setOperationAction(ISD::FP_ROUND,           MVT::v4f32, Legal);
1015
1016     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4f64,  Custom);
1017     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i64,  Custom);
1018     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8f32,  Custom);
1019     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i32,  Custom);
1020     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v32i8,  Custom);
1021     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i16, Custom);
1022
1023     setOperationAction(ISD::SRL,               MVT::v16i16, Custom);
1024     setOperationAction(ISD::SRL,               MVT::v32i8, Custom);
1025
1026     setOperationAction(ISD::SHL,               MVT::v16i16, Custom);
1027     setOperationAction(ISD::SHL,               MVT::v32i8, Custom);
1028
1029     setOperationAction(ISD::SRA,               MVT::v16i16, Custom);
1030     setOperationAction(ISD::SRA,               MVT::v32i8, Custom);
1031
1032     setOperationAction(ISD::SETCC,             MVT::v32i8, Custom);
1033     setOperationAction(ISD::SETCC,             MVT::v16i16, Custom);
1034     setOperationAction(ISD::SETCC,             MVT::v8i32, Custom);
1035     setOperationAction(ISD::SETCC,             MVT::v4i64, Custom);
1036
1037     setOperationAction(ISD::SELECT,            MVT::v4f64, Custom);
1038     setOperationAction(ISD::SELECT,            MVT::v4i64, Custom);
1039     setOperationAction(ISD::SELECT,            MVT::v8f32, Custom);
1040
1041     setOperationAction(ISD::VSELECT,           MVT::v4f64, Legal);
1042     setOperationAction(ISD::VSELECT,           MVT::v4i64, Legal);
1043     setOperationAction(ISD::VSELECT,           MVT::v8i32, Legal);
1044     setOperationAction(ISD::VSELECT,           MVT::v8f32, Legal);
1045
1046     if (Subtarget->hasAVX2()) {
1047       setOperationAction(ISD::ADD,             MVT::v4i64, Legal);
1048       setOperationAction(ISD::ADD,             MVT::v8i32, Legal);
1049       setOperationAction(ISD::ADD,             MVT::v16i16, Legal);
1050       setOperationAction(ISD::ADD,             MVT::v32i8, Legal);
1051
1052       setOperationAction(ISD::SUB,             MVT::v4i64, Legal);
1053       setOperationAction(ISD::SUB,             MVT::v8i32, Legal);
1054       setOperationAction(ISD::SUB,             MVT::v16i16, Legal);
1055       setOperationAction(ISD::SUB,             MVT::v32i8, Legal);
1056
1057       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1058       setOperationAction(ISD::MUL,             MVT::v8i32, Legal);
1059       setOperationAction(ISD::MUL,             MVT::v16i16, Legal);
1060       // Don't lower v32i8 because there is no 128-bit byte mul
1061
1062       setOperationAction(ISD::VSELECT,         MVT::v32i8, Legal);
1063
1064       setOperationAction(ISD::SRL,             MVT::v4i64, Legal);
1065       setOperationAction(ISD::SRL,             MVT::v8i32, Legal);
1066
1067       setOperationAction(ISD::SHL,             MVT::v4i64, Legal);
1068       setOperationAction(ISD::SHL,             MVT::v8i32, Legal);
1069
1070       setOperationAction(ISD::SRA,             MVT::v8i32, Legal);
1071     } else {
1072       setOperationAction(ISD::ADD,             MVT::v4i64, Custom);
1073       setOperationAction(ISD::ADD,             MVT::v8i32, Custom);
1074       setOperationAction(ISD::ADD,             MVT::v16i16, Custom);
1075       setOperationAction(ISD::ADD,             MVT::v32i8, Custom);
1076
1077       setOperationAction(ISD::SUB,             MVT::v4i64, Custom);
1078       setOperationAction(ISD::SUB,             MVT::v8i32, Custom);
1079       setOperationAction(ISD::SUB,             MVT::v16i16, Custom);
1080       setOperationAction(ISD::SUB,             MVT::v32i8, Custom);
1081
1082       setOperationAction(ISD::MUL,             MVT::v4i64, Custom);
1083       setOperationAction(ISD::MUL,             MVT::v8i32, Custom);
1084       setOperationAction(ISD::MUL,             MVT::v16i16, Custom);
1085       // Don't lower v32i8 because there is no 128-bit byte mul
1086
1087       setOperationAction(ISD::SRL,             MVT::v4i64, Custom);
1088       setOperationAction(ISD::SRL,             MVT::v8i32, Custom);
1089
1090       setOperationAction(ISD::SHL,             MVT::v4i64, Custom);
1091       setOperationAction(ISD::SHL,             MVT::v8i32, Custom);
1092
1093       setOperationAction(ISD::SRA,             MVT::v8i32, Custom);
1094     }
1095
1096     // Custom lower several nodes for 256-bit types.
1097     for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1098                   i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
1099       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1100       EVT VT = SVT;
1101
1102       // Extract subvector is special because the value type
1103       // (result) is 128-bit but the source is 256-bit wide.
1104       if (VT.is128BitVector())
1105         setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
1106
1107       // Do not attempt to custom lower other non-256-bit vectors
1108       if (!VT.is256BitVector())
1109         continue;
1110
1111       setOperationAction(ISD::BUILD_VECTOR,       SVT, Custom);
1112       setOperationAction(ISD::VECTOR_SHUFFLE,     SVT, Custom);
1113       setOperationAction(ISD::INSERT_VECTOR_ELT,  SVT, Custom);
1114       setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
1115       setOperationAction(ISD::SCALAR_TO_VECTOR,   SVT, Custom);
1116       setOperationAction(ISD::INSERT_SUBVECTOR,   SVT, Custom);
1117     }
1118
1119     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
1120     for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
1121       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
1122       EVT VT = SVT;
1123
1124       // Do not attempt to promote non-256-bit vectors
1125       if (!VT.is256BitVector())
1126         continue;
1127
1128       setOperationAction(ISD::AND,    SVT, Promote);
1129       AddPromotedToType (ISD::AND,    SVT, MVT::v4i64);
1130       setOperationAction(ISD::OR,     SVT, Promote);
1131       AddPromotedToType (ISD::OR,     SVT, MVT::v4i64);
1132       setOperationAction(ISD::XOR,    SVT, Promote);
1133       AddPromotedToType (ISD::XOR,    SVT, MVT::v4i64);
1134       setOperationAction(ISD::LOAD,   SVT, Promote);
1135       AddPromotedToType (ISD::LOAD,   SVT, MVT::v4i64);
1136       setOperationAction(ISD::SELECT, SVT, Promote);
1137       AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
1138     }
1139   }
1140
1141   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1142   // of this type with custom code.
1143   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1144          VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1145     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1146   }
1147
1148   // We want to custom lower some of our intrinsics.
1149   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1150
1151
1152   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1153   // handle type legalization for these operations here.
1154   //
1155   // FIXME: We really should do custom legalization for addition and
1156   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1157   // than generic legalization for 64-bit multiplication-with-overflow, though.
1158   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1159     // Add/Sub/Mul with overflow operations are custom lowered.
1160     MVT VT = IntVTs[i];
1161     setOperationAction(ISD::SADDO, VT, Custom);
1162     setOperationAction(ISD::UADDO, VT, Custom);
1163     setOperationAction(ISD::SSUBO, VT, Custom);
1164     setOperationAction(ISD::USUBO, VT, Custom);
1165     setOperationAction(ISD::SMULO, VT, Custom);
1166     setOperationAction(ISD::UMULO, VT, Custom);
1167   }
1168
1169   // There are no 8-bit 3-address imul/mul instructions
1170   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1171   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1172
1173   if (!Subtarget->is64Bit()) {
1174     // These libcalls are not available in 32-bit.
1175     setLibcallName(RTLIB::SHL_I128, 0);
1176     setLibcallName(RTLIB::SRL_I128, 0);
1177     setLibcallName(RTLIB::SRA_I128, 0);
1178   }
1179
1180   // We have target-specific dag combine patterns for the following nodes:
1181   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1182   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1183   setTargetDAGCombine(ISD::BUILD_VECTOR);
1184   setTargetDAGCombine(ISD::VSELECT);
1185   setTargetDAGCombine(ISD::SELECT);
1186   setTargetDAGCombine(ISD::SHL);
1187   setTargetDAGCombine(ISD::SRA);
1188   setTargetDAGCombine(ISD::SRL);
1189   setTargetDAGCombine(ISD::OR);
1190   setTargetDAGCombine(ISD::AND);
1191   setTargetDAGCombine(ISD::ADD);
1192   setTargetDAGCombine(ISD::FADD);
1193   setTargetDAGCombine(ISD::FSUB);
1194   setTargetDAGCombine(ISD::SUB);
1195   setTargetDAGCombine(ISD::LOAD);
1196   setTargetDAGCombine(ISD::STORE);
1197   setTargetDAGCombine(ISD::ZERO_EXTEND);
1198   setTargetDAGCombine(ISD::SINT_TO_FP);
1199   if (Subtarget->is64Bit())
1200     setTargetDAGCombine(ISD::MUL);
1201   if (Subtarget->hasBMI())
1202     setTargetDAGCombine(ISD::XOR);
1203
1204   computeRegisterProperties();
1205
1206   // On Darwin, -Os means optimize for size without hurting performance,
1207   // do not reduce the limit.
1208   maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1209   maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1210   maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1211   maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1212   maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1213   maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1214   setPrefLoopAlignment(16);
1215   benefitFromCodePlacementOpt = true;
1216
1217   setPrefFunctionAlignment(4);
1218 }
1219
1220
1221 EVT X86TargetLowering::getSetCCResultType(EVT VT) const {
1222   if (!VT.isVector()) return MVT::i8;
1223   return VT.changeVectorElementTypeToInteger();
1224 }
1225
1226
1227 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1228 /// the desired ByVal argument alignment.
1229 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1230   if (MaxAlign == 16)
1231     return;
1232   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1233     if (VTy->getBitWidth() == 128)
1234       MaxAlign = 16;
1235   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1236     unsigned EltAlign = 0;
1237     getMaxByValAlign(ATy->getElementType(), EltAlign);
1238     if (EltAlign > MaxAlign)
1239       MaxAlign = EltAlign;
1240   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1241     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1242       unsigned EltAlign = 0;
1243       getMaxByValAlign(STy->getElementType(i), EltAlign);
1244       if (EltAlign > MaxAlign)
1245         MaxAlign = EltAlign;
1246       if (MaxAlign == 16)
1247         break;
1248     }
1249   }
1250   return;
1251 }
1252
1253 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1254 /// function arguments in the caller parameter area. For X86, aggregates
1255 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1256 /// are at 4-byte boundaries.
1257 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1258   if (Subtarget->is64Bit()) {
1259     // Max of 8 and alignment of type.
1260     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1261     if (TyAlign > 8)
1262       return TyAlign;
1263     return 8;
1264   }
1265
1266   unsigned Align = 4;
1267   if (Subtarget->hasXMM())
1268     getMaxByValAlign(Ty, Align);
1269   return Align;
1270 }
1271
1272 /// getOptimalMemOpType - Returns the target specific optimal type for load
1273 /// and store operations as a result of memset, memcpy, and memmove
1274 /// lowering. If DstAlign is zero that means it's safe to destination
1275 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1276 /// means there isn't a need to check it against alignment requirement,
1277 /// probably because the source does not need to be loaded. If
1278 /// 'IsZeroVal' is true, that means it's safe to return a
1279 /// non-scalar-integer type, e.g. empty string source, constant, or loaded
1280 /// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1281 /// constant so it does not need to be loaded.
1282 /// It returns EVT::Other if the type should be determined using generic
1283 /// target-independent logic.
1284 EVT
1285 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1286                                        unsigned DstAlign, unsigned SrcAlign,
1287                                        bool IsZeroVal,
1288                                        bool MemcpyStrSrc,
1289                                        MachineFunction &MF) const {
1290   // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1291   // linux.  This is because the stack realignment code can't handle certain
1292   // cases like PR2962.  This should be removed when PR2962 is fixed.
1293   const Function *F = MF.getFunction();
1294   if (IsZeroVal &&
1295       !F->hasFnAttr(Attribute::NoImplicitFloat)) {
1296     if (Size >= 16 &&
1297         (Subtarget->isUnalignedMemAccessFast() ||
1298          ((DstAlign == 0 || DstAlign >= 16) &&
1299           (SrcAlign == 0 || SrcAlign >= 16))) &&
1300         Subtarget->getStackAlignment() >= 16) {
1301       if (Subtarget->hasAVX() &&
1302           Subtarget->getStackAlignment() >= 32)
1303         return MVT::v8f32;
1304       if (Subtarget->hasXMMInt())
1305         return MVT::v4i32;
1306       if (Subtarget->hasXMM())
1307         return MVT::v4f32;
1308     } else if (!MemcpyStrSrc && Size >= 8 &&
1309                !Subtarget->is64Bit() &&
1310                Subtarget->getStackAlignment() >= 8 &&
1311                Subtarget->hasXMMInt()) {
1312       // Do not use f64 to lower memcpy if source is string constant. It's
1313       // better to use i32 to avoid the loads.
1314       return MVT::f64;
1315     }
1316   }
1317   if (Subtarget->is64Bit() && Size >= 8)
1318     return MVT::i64;
1319   return MVT::i32;
1320 }
1321
1322 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1323 /// current function.  The returned value is a member of the
1324 /// MachineJumpTableInfo::JTEntryKind enum.
1325 unsigned X86TargetLowering::getJumpTableEncoding() const {
1326   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1327   // symbol.
1328   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1329       Subtarget->isPICStyleGOT())
1330     return MachineJumpTableInfo::EK_Custom32;
1331
1332   // Otherwise, use the normal jump table encoding heuristics.
1333   return TargetLowering::getJumpTableEncoding();
1334 }
1335
1336 const MCExpr *
1337 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1338                                              const MachineBasicBlock *MBB,
1339                                              unsigned uid,MCContext &Ctx) const{
1340   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1341          Subtarget->isPICStyleGOT());
1342   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1343   // entries.
1344   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1345                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1346 }
1347
1348 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1349 /// jumptable.
1350 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1351                                                     SelectionDAG &DAG) const {
1352   if (!Subtarget->is64Bit())
1353     // This doesn't have DebugLoc associated with it, but is not really the
1354     // same as a Register.
1355     return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
1356   return Table;
1357 }
1358
1359 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1360 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1361 /// MCExpr.
1362 const MCExpr *X86TargetLowering::
1363 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1364                              MCContext &Ctx) const {
1365   // X86-64 uses RIP relative addressing based on the jump table label.
1366   if (Subtarget->isPICStyleRIPRel())
1367     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1368
1369   // Otherwise, the reference is relative to the PIC base.
1370   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1371 }
1372
1373 // FIXME: Why this routine is here? Move to RegInfo!
1374 std::pair<const TargetRegisterClass*, uint8_t>
1375 X86TargetLowering::findRepresentativeClass(EVT VT) const{
1376   const TargetRegisterClass *RRC = 0;
1377   uint8_t Cost = 1;
1378   switch (VT.getSimpleVT().SimpleTy) {
1379   default:
1380     return TargetLowering::findRepresentativeClass(VT);
1381   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1382     RRC = (Subtarget->is64Bit()
1383            ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1384     break;
1385   case MVT::x86mmx:
1386     RRC = X86::VR64RegisterClass;
1387     break;
1388   case MVT::f32: case MVT::f64:
1389   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1390   case MVT::v4f32: case MVT::v2f64:
1391   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1392   case MVT::v4f64:
1393     RRC = X86::VR128RegisterClass;
1394     break;
1395   }
1396   return std::make_pair(RRC, Cost);
1397 }
1398
1399 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1400                                                unsigned &Offset) const {
1401   if (!Subtarget->isTargetLinux())
1402     return false;
1403
1404   if (Subtarget->is64Bit()) {
1405     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1406     Offset = 0x28;
1407     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1408       AddressSpace = 256;
1409     else
1410       AddressSpace = 257;
1411   } else {
1412     // %gs:0x14 on i386
1413     Offset = 0x14;
1414     AddressSpace = 256;
1415   }
1416   return true;
1417 }
1418
1419
1420 //===----------------------------------------------------------------------===//
1421 //               Return Value Calling Convention Implementation
1422 //===----------------------------------------------------------------------===//
1423
1424 #include "X86GenCallingConv.inc"
1425
1426 bool
1427 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1428                                   MachineFunction &MF, bool isVarArg,
1429                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1430                         LLVMContext &Context) const {
1431   SmallVector<CCValAssign, 16> RVLocs;
1432   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1433                  RVLocs, Context);
1434   return CCInfo.CheckReturn(Outs, RetCC_X86);
1435 }
1436
1437 SDValue
1438 X86TargetLowering::LowerReturn(SDValue Chain,
1439                                CallingConv::ID CallConv, bool isVarArg,
1440                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1441                                const SmallVectorImpl<SDValue> &OutVals,
1442                                DebugLoc dl, SelectionDAG &DAG) const {
1443   MachineFunction &MF = DAG.getMachineFunction();
1444   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1445
1446   SmallVector<CCValAssign, 16> RVLocs;
1447   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1448                  RVLocs, *DAG.getContext());
1449   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1450
1451   // Add the regs to the liveout set for the function.
1452   MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1453   for (unsigned i = 0; i != RVLocs.size(); ++i)
1454     if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1455       MRI.addLiveOut(RVLocs[i].getLocReg());
1456
1457   SDValue Flag;
1458
1459   SmallVector<SDValue, 6> RetOps;
1460   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1461   // Operand #1 = Bytes To Pop
1462   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1463                    MVT::i16));
1464
1465   // Copy the result values into the output registers.
1466   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1467     CCValAssign &VA = RVLocs[i];
1468     assert(VA.isRegLoc() && "Can only return in registers!");
1469     SDValue ValToCopy = OutVals[i];
1470     EVT ValVT = ValToCopy.getValueType();
1471
1472     // If this is x86-64, and we disabled SSE, we can't return FP values,
1473     // or SSE or MMX vectors.
1474     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1475          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1476           (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
1477       report_fatal_error("SSE register return with SSE disabled");
1478     }
1479     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1480     // llvm-gcc has never done it right and no one has noticed, so this
1481     // should be OK for now.
1482     if (ValVT == MVT::f64 &&
1483         (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
1484       report_fatal_error("SSE2 register return with SSE2 disabled");
1485
1486     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1487     // the RET instruction and handled by the FP Stackifier.
1488     if (VA.getLocReg() == X86::ST0 ||
1489         VA.getLocReg() == X86::ST1) {
1490       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1491       // change the value to the FP stack register class.
1492       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1493         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1494       RetOps.push_back(ValToCopy);
1495       // Don't emit a copytoreg.
1496       continue;
1497     }
1498
1499     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1500     // which is returned in RAX / RDX.
1501     if (Subtarget->is64Bit()) {
1502       if (ValVT == MVT::x86mmx) {
1503         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1504           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1505           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1506                                   ValToCopy);
1507           // If we don't have SSE2 available, convert to v4f32 so the generated
1508           // register is legal.
1509           if (!Subtarget->hasXMMInt())
1510             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1511         }
1512       }
1513     }
1514
1515     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1516     Flag = Chain.getValue(1);
1517   }
1518
1519   // The x86-64 ABI for returning structs by value requires that we copy
1520   // the sret argument into %rax for the return. We saved the argument into
1521   // a virtual register in the entry block, so now we copy the value out
1522   // and into %rax.
1523   if (Subtarget->is64Bit() &&
1524       DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1525     MachineFunction &MF = DAG.getMachineFunction();
1526     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1527     unsigned Reg = FuncInfo->getSRetReturnReg();
1528     assert(Reg &&
1529            "SRetReturnReg should have been set in LowerFormalArguments().");
1530     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1531
1532     Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
1533     Flag = Chain.getValue(1);
1534
1535     // RAX now acts like a return value.
1536     MRI.addLiveOut(X86::RAX);
1537   }
1538
1539   RetOps[0] = Chain;  // Update chain.
1540
1541   // Add the flag if we have it.
1542   if (Flag.getNode())
1543     RetOps.push_back(Flag);
1544
1545   return DAG.getNode(X86ISD::RET_FLAG, dl,
1546                      MVT::Other, &RetOps[0], RetOps.size());
1547 }
1548
1549 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1550   if (N->getNumValues() != 1)
1551     return false;
1552   if (!N->hasNUsesOfValue(1, 0))
1553     return false;
1554
1555   SDNode *Copy = *N->use_begin();
1556   if (Copy->getOpcode() != ISD::CopyToReg &&
1557       Copy->getOpcode() != ISD::FP_EXTEND)
1558     return false;
1559
1560   bool HasRet = false;
1561   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1562        UI != UE; ++UI) {
1563     if (UI->getOpcode() != X86ISD::RET_FLAG)
1564       return false;
1565     HasRet = true;
1566   }
1567
1568   return HasRet;
1569 }
1570
1571 EVT
1572 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
1573                                             ISD::NodeType ExtendKind) const {
1574   MVT ReturnMVT;
1575   // TODO: Is this also valid on 32-bit?
1576   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1577     ReturnMVT = MVT::i8;
1578   else
1579     ReturnMVT = MVT::i32;
1580
1581   EVT MinVT = getRegisterType(Context, ReturnMVT);
1582   return VT.bitsLT(MinVT) ? MinVT : VT;
1583 }
1584
1585 /// LowerCallResult - Lower the result values of a call into the
1586 /// appropriate copies out of appropriate physical registers.
1587 ///
1588 SDValue
1589 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1590                                    CallingConv::ID CallConv, bool isVarArg,
1591                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1592                                    DebugLoc dl, SelectionDAG &DAG,
1593                                    SmallVectorImpl<SDValue> &InVals) const {
1594
1595   // Assign locations to each value returned by this call.
1596   SmallVector<CCValAssign, 16> RVLocs;
1597   bool Is64Bit = Subtarget->is64Bit();
1598   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1599                  getTargetMachine(), RVLocs, *DAG.getContext());
1600   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1601
1602   // Copy all of the result registers out of their specified physreg.
1603   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1604     CCValAssign &VA = RVLocs[i];
1605     EVT CopyVT = VA.getValVT();
1606
1607     // If this is x86-64, and we disabled SSE, we can't return FP values
1608     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1609         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
1610       report_fatal_error("SSE register return with SSE disabled");
1611     }
1612
1613     SDValue Val;
1614
1615     // If this is a call to a function that returns an fp value on the floating
1616     // point stack, we must guarantee the the value is popped from the stack, so
1617     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1618     // if the return value is not used. We use the FpPOP_RETVAL instruction
1619     // instead.
1620     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1621       // If we prefer to use the value in xmm registers, copy it out as f80 and
1622       // use a truncate to move it from fp stack reg to xmm reg.
1623       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1624       SDValue Ops[] = { Chain, InFlag };
1625       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1626                                          MVT::Other, MVT::Glue, Ops, 2), 1);
1627       Val = Chain.getValue(0);
1628
1629       // Round the f80 to the right size, which also moves it to the appropriate
1630       // xmm register.
1631       if (CopyVT != VA.getValVT())
1632         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1633                           // This truncation won't change the value.
1634                           DAG.getIntPtrConstant(1));
1635     } else {
1636       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1637                                  CopyVT, InFlag).getValue(1);
1638       Val = Chain.getValue(0);
1639     }
1640     InFlag = Chain.getValue(2);
1641     InVals.push_back(Val);
1642   }
1643
1644   return Chain;
1645 }
1646
1647
1648 //===----------------------------------------------------------------------===//
1649 //                C & StdCall & Fast Calling Convention implementation
1650 //===----------------------------------------------------------------------===//
1651 //  StdCall calling convention seems to be standard for many Windows' API
1652 //  routines and around. It differs from C calling convention just a little:
1653 //  callee should clean up the stack, not caller. Symbols should be also
1654 //  decorated in some fancy way :) It doesn't support any vector arguments.
1655 //  For info on fast calling convention see Fast Calling Convention (tail call)
1656 //  implementation LowerX86_32FastCCCallTo.
1657
1658 /// CallIsStructReturn - Determines whether a call uses struct return
1659 /// semantics.
1660 static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1661   if (Outs.empty())
1662     return false;
1663
1664   return Outs[0].Flags.isSRet();
1665 }
1666
1667 /// ArgsAreStructReturn - Determines whether a function uses struct
1668 /// return semantics.
1669 static bool
1670 ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1671   if (Ins.empty())
1672     return false;
1673
1674   return Ins[0].Flags.isSRet();
1675 }
1676
1677 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1678 /// by "Src" to address "Dst" with size and alignment information specified by
1679 /// the specific parameter attribute. The copy will be passed as a byval
1680 /// function parameter.
1681 static SDValue
1682 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1683                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1684                           DebugLoc dl) {
1685   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
1686
1687   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
1688                        /*isVolatile*/false, /*AlwaysInline=*/true,
1689                        MachinePointerInfo(), MachinePointerInfo());
1690 }
1691
1692 /// IsTailCallConvention - Return true if the calling convention is one that
1693 /// supports tail call optimization.
1694 static bool IsTailCallConvention(CallingConv::ID CC) {
1695   return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1696 }
1697
1698 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1699   if (!CI->isTailCall())
1700     return false;
1701
1702   CallSite CS(CI);
1703   CallingConv::ID CalleeCC = CS.getCallingConv();
1704   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1705     return false;
1706
1707   return true;
1708 }
1709
1710 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
1711 /// a tailcall target by changing its ABI.
1712 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
1713   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
1714 }
1715
1716 SDValue
1717 X86TargetLowering::LowerMemArgument(SDValue Chain,
1718                                     CallingConv::ID CallConv,
1719                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1720                                     DebugLoc dl, SelectionDAG &DAG,
1721                                     const CCValAssign &VA,
1722                                     MachineFrameInfo *MFI,
1723                                     unsigned i) const {
1724   // Create the nodes corresponding to a load from this parameter slot.
1725   ISD::ArgFlagsTy Flags = Ins[i].Flags;
1726   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
1727   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
1728   EVT ValVT;
1729
1730   // If value is passed by pointer we have address passed instead of the value
1731   // itself.
1732   if (VA.getLocInfo() == CCValAssign::Indirect)
1733     ValVT = VA.getLocVT();
1734   else
1735     ValVT = VA.getValVT();
1736
1737   // FIXME: For now, all byval parameter objects are marked mutable. This can be
1738   // changed with more analysis.
1739   // In case of tail call optimization mark all arguments mutable. Since they
1740   // could be overwritten by lowering of arguments in case of a tail call.
1741   if (Flags.isByVal()) {
1742     unsigned Bytes = Flags.getByValSize();
1743     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1744     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
1745     return DAG.getFrameIndex(FI, getPointerTy());
1746   } else {
1747     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
1748                                     VA.getLocMemOffset(), isImmutable);
1749     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1750     return DAG.getLoad(ValVT, dl, Chain, FIN,
1751                        MachinePointerInfo::getFixedStack(FI),
1752                        false, false, false, 0);
1753   }
1754 }
1755
1756 SDValue
1757 X86TargetLowering::LowerFormalArguments(SDValue Chain,
1758                                         CallingConv::ID CallConv,
1759                                         bool isVarArg,
1760                                       const SmallVectorImpl<ISD::InputArg> &Ins,
1761                                         DebugLoc dl,
1762                                         SelectionDAG &DAG,
1763                                         SmallVectorImpl<SDValue> &InVals)
1764                                           const {
1765   MachineFunction &MF = DAG.getMachineFunction();
1766   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1767
1768   const Function* Fn = MF.getFunction();
1769   if (Fn->hasExternalLinkage() &&
1770       Subtarget->isTargetCygMing() &&
1771       Fn->getName() == "main")
1772     FuncInfo->setForceFramePointer(true);
1773
1774   MachineFrameInfo *MFI = MF.getFrameInfo();
1775   bool Is64Bit = Subtarget->is64Bit();
1776   bool IsWin64 = Subtarget->isTargetWin64();
1777
1778   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1779          "Var args not supported with calling convention fastcc or ghc");
1780
1781   // Assign locations to all of the incoming arguments.
1782   SmallVector<CCValAssign, 16> ArgLocs;
1783   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1784                  ArgLocs, *DAG.getContext());
1785
1786   // Allocate shadow area for Win64
1787   if (IsWin64) {
1788     CCInfo.AllocateStack(32, 8);
1789   }
1790
1791   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
1792
1793   unsigned LastVal = ~0U;
1794   SDValue ArgValue;
1795   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1796     CCValAssign &VA = ArgLocs[i];
1797     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1798     // places.
1799     assert(VA.getValNo() != LastVal &&
1800            "Don't support value assigned to multiple locs yet");
1801     (void)LastVal;
1802     LastVal = VA.getValNo();
1803
1804     if (VA.isRegLoc()) {
1805       EVT RegVT = VA.getLocVT();
1806       TargetRegisterClass *RC = NULL;
1807       if (RegVT == MVT::i32)
1808         RC = X86::GR32RegisterClass;
1809       else if (Is64Bit && RegVT == MVT::i64)
1810         RC = X86::GR64RegisterClass;
1811       else if (RegVT == MVT::f32)
1812         RC = X86::FR32RegisterClass;
1813       else if (RegVT == MVT::f64)
1814         RC = X86::FR64RegisterClass;
1815       else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1816         RC = X86::VR256RegisterClass;
1817       else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
1818         RC = X86::VR128RegisterClass;
1819       else if (RegVT == MVT::x86mmx)
1820         RC = X86::VR64RegisterClass;
1821       else
1822         llvm_unreachable("Unknown argument type!");
1823
1824       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1825       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1826
1827       // If this is an 8 or 16-bit value, it is really passed promoted to 32
1828       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
1829       // right size.
1830       if (VA.getLocInfo() == CCValAssign::SExt)
1831         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1832                                DAG.getValueType(VA.getValVT()));
1833       else if (VA.getLocInfo() == CCValAssign::ZExt)
1834         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1835                                DAG.getValueType(VA.getValVT()));
1836       else if (VA.getLocInfo() == CCValAssign::BCvt)
1837         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
1838
1839       if (VA.isExtInLoc()) {
1840         // Handle MMX values passed in XMM regs.
1841         if (RegVT.isVector()) {
1842           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1843                                  ArgValue);
1844         } else
1845           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1846       }
1847     } else {
1848       assert(VA.isMemLoc());
1849       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
1850     }
1851
1852     // If value is passed via pointer - do a load.
1853     if (VA.getLocInfo() == CCValAssign::Indirect)
1854       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1855                              MachinePointerInfo(), false, false, false, 0);
1856
1857     InVals.push_back(ArgValue);
1858   }
1859
1860   // The x86-64 ABI for returning structs by value requires that we copy
1861   // the sret argument into %rax for the return. Save the argument into
1862   // a virtual register so that we can access it from the return points.
1863   if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
1864     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1865     unsigned Reg = FuncInfo->getSRetReturnReg();
1866     if (!Reg) {
1867       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1868       FuncInfo->setSRetReturnReg(Reg);
1869     }
1870     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
1871     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
1872   }
1873
1874   unsigned StackSize = CCInfo.getNextStackOffset();
1875   // Align stack specially for tail calls.
1876   if (FuncIsMadeTailCallSafe(CallConv))
1877     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
1878
1879   // If the function takes variable number of arguments, make a frame index for
1880   // the start of the first vararg value... for expansion of llvm.va_start.
1881   if (isVarArg) {
1882     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1883                     CallConv != CallingConv::X86_ThisCall)) {
1884       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
1885     }
1886     if (Is64Bit) {
1887       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1888
1889       // FIXME: We should really autogenerate these arrays
1890       static const unsigned GPR64ArgRegsWin64[] = {
1891         X86::RCX, X86::RDX, X86::R8,  X86::R9
1892       };
1893       static const unsigned GPR64ArgRegs64Bit[] = {
1894         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1895       };
1896       static const unsigned XMMArgRegs64Bit[] = {
1897         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1898         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1899       };
1900       const unsigned *GPR64ArgRegs;
1901       unsigned NumXMMRegs = 0;
1902
1903       if (IsWin64) {
1904         // The XMM registers which might contain var arg parameters are shadowed
1905         // in their paired GPR.  So we only need to save the GPR to their home
1906         // slots.
1907         TotalNumIntRegs = 4;
1908         GPR64ArgRegs = GPR64ArgRegsWin64;
1909       } else {
1910         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1911         GPR64ArgRegs = GPR64ArgRegs64Bit;
1912
1913         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
1914       }
1915       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1916                                                        TotalNumIntRegs);
1917
1918       bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
1919       assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
1920              "SSE register cannot be used when SSE is disabled!");
1921       assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
1922              "SSE register cannot be used when SSE is disabled!");
1923       if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
1924         // Kernel mode asks for SSE to be disabled, so don't push them
1925         // on the stack.
1926         TotalNumXMMRegs = 0;
1927
1928       if (IsWin64) {
1929         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
1930         // Get to the caller-allocated home save location.  Add 8 to account
1931         // for the return address.
1932         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
1933         FuncInfo->setRegSaveFrameIndex(
1934           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
1935         // Fixup to set vararg frame on shadow area (4 x i64).
1936         if (NumIntRegs < 4)
1937           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1938       } else {
1939         // For X86-64, if there are vararg parameters that are passed via
1940         // registers, then we must store them to their spots on the stack so they
1941         // may be loaded by deferencing the result of va_next.
1942         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1943         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1944         FuncInfo->setRegSaveFrameIndex(
1945           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
1946                                false));
1947       }
1948
1949       // Store the integer parameter registers.
1950       SmallVector<SDValue, 8> MemOps;
1951       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1952                                         getPointerTy());
1953       unsigned Offset = FuncInfo->getVarArgsGPOffset();
1954       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
1955         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1956                                   DAG.getIntPtrConstant(Offset));
1957         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1958                                      X86::GR64RegisterClass);
1959         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
1960         SDValue Store =
1961           DAG.getStore(Val.getValue(1), dl, Val, FIN,
1962                        MachinePointerInfo::getFixedStack(
1963                          FuncInfo->getRegSaveFrameIndex(), Offset),
1964                        false, false, 0);
1965         MemOps.push_back(Store);
1966         Offset += 8;
1967       }
1968
1969       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1970         // Now store the XMM (fp + vector) parameter registers.
1971         SmallVector<SDValue, 11> SaveXMMOps;
1972         SaveXMMOps.push_back(Chain);
1973
1974         unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1975         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1976         SaveXMMOps.push_back(ALVal);
1977
1978         SaveXMMOps.push_back(DAG.getIntPtrConstant(
1979                                FuncInfo->getRegSaveFrameIndex()));
1980         SaveXMMOps.push_back(DAG.getIntPtrConstant(
1981                                FuncInfo->getVarArgsFPOffset()));
1982
1983         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
1984           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
1985                                        X86::VR128RegisterClass);
1986           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1987           SaveXMMOps.push_back(Val);
1988         }
1989         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1990                                      MVT::Other,
1991                                      &SaveXMMOps[0], SaveXMMOps.size()));
1992       }
1993
1994       if (!MemOps.empty())
1995         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1996                             &MemOps[0], MemOps.size());
1997     }
1998   }
1999
2000   // Some CCs need callee pop.
2001   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
2002     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
2003   } else {
2004     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
2005     // If this is an sret function, the return should pop the hidden pointer.
2006     if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
2007       FuncInfo->setBytesToPopOnReturn(4);
2008   }
2009
2010   if (!Is64Bit) {
2011     // RegSaveFrameIndex is X86-64 only.
2012     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
2013     if (CallConv == CallingConv::X86_FastCall ||
2014         CallConv == CallingConv::X86_ThisCall)
2015       // fastcc functions can't have varargs.
2016       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
2017   }
2018
2019   FuncInfo->setArgumentStackSize(StackSize);
2020
2021   return Chain;
2022 }
2023
2024 SDValue
2025 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
2026                                     SDValue StackPtr, SDValue Arg,
2027                                     DebugLoc dl, SelectionDAG &DAG,
2028                                     const CCValAssign &VA,
2029                                     ISD::ArgFlagsTy Flags) const {
2030   unsigned LocMemOffset = VA.getLocMemOffset();
2031   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
2032   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
2033   if (Flags.isByVal())
2034     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
2035
2036   return DAG.getStore(Chain, dl, Arg, PtrOff,
2037                       MachinePointerInfo::getStack(LocMemOffset),
2038                       false, false, 0);
2039 }
2040
2041 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
2042 /// optimization is performed and it is required.
2043 SDValue
2044 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
2045                                            SDValue &OutRetAddr, SDValue Chain,
2046                                            bool IsTailCall, bool Is64Bit,
2047                                            int FPDiff, DebugLoc dl) const {
2048   // Adjust the Return address stack slot.
2049   EVT VT = getPointerTy();
2050   OutRetAddr = getReturnAddressFrameIndex(DAG);
2051
2052   // Load the "old" Return address.
2053   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
2054                            false, false, false, 0);
2055   return SDValue(OutRetAddr.getNode(), 1);
2056 }
2057
2058 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
2059 /// optimization is performed and it is required (FPDiff!=0).
2060 static SDValue
2061 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
2062                          SDValue Chain, SDValue RetAddrFrIdx,
2063                          bool Is64Bit, int FPDiff, DebugLoc dl) {
2064   // Store the return address to the appropriate stack slot.
2065   if (!FPDiff) return Chain;
2066   // Calculate the new stack slot for the return address.
2067   int SlotSize = Is64Bit ? 8 : 4;
2068   int NewReturnAddrFI =
2069     MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
2070   EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
2071   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
2072   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
2073                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
2074                        false, false, 0);
2075   return Chain;
2076 }
2077
2078 SDValue
2079 X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
2080                              CallingConv::ID CallConv, bool isVarArg,
2081                              bool &isTailCall,
2082                              const SmallVectorImpl<ISD::OutputArg> &Outs,
2083                              const SmallVectorImpl<SDValue> &OutVals,
2084                              const SmallVectorImpl<ISD::InputArg> &Ins,
2085                              DebugLoc dl, SelectionDAG &DAG,
2086                              SmallVectorImpl<SDValue> &InVals) const {
2087   MachineFunction &MF = DAG.getMachineFunction();
2088   bool Is64Bit        = Subtarget->is64Bit();
2089   bool IsWin64        = Subtarget->isTargetWin64();
2090   bool IsStructRet    = CallIsStructReturn(Outs);
2091   bool IsSibcall      = false;
2092
2093   if (isTailCall) {
2094     // Check if it's really possible to do a tail call.
2095     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
2096                     isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
2097                                                    Outs, OutVals, Ins, DAG);
2098
2099     // Sibcalls are automatically detected tailcalls which do not require
2100     // ABI changes.
2101     if (!GuaranteedTailCallOpt && isTailCall)
2102       IsSibcall = true;
2103
2104     if (isTailCall)
2105       ++NumTailCalls;
2106   }
2107
2108   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
2109          "Var args not supported with calling convention fastcc or ghc");
2110
2111   // Analyze operands of the call, assigning locations to each operand.
2112   SmallVector<CCValAssign, 16> ArgLocs;
2113   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
2114                  ArgLocs, *DAG.getContext());
2115
2116   // Allocate shadow area for Win64
2117   if (IsWin64) {
2118     CCInfo.AllocateStack(32, 8);
2119   }
2120
2121   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2122
2123   // Get a count of how many bytes are to be pushed on the stack.
2124   unsigned NumBytes = CCInfo.getNextStackOffset();
2125   if (IsSibcall)
2126     // This is a sibcall. The memory operands are available in caller's
2127     // own caller's stack.
2128     NumBytes = 0;
2129   else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
2130     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
2131
2132   int FPDiff = 0;
2133   if (isTailCall && !IsSibcall) {
2134     // Lower arguments at fp - stackoffset + fpdiff.
2135     unsigned NumBytesCallerPushed =
2136       MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
2137     FPDiff = NumBytesCallerPushed - NumBytes;
2138
2139     // Set the delta of movement of the returnaddr stackslot.
2140     // But only set if delta is greater than previous delta.
2141     if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2142       MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2143   }
2144
2145   if (!IsSibcall)
2146     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2147
2148   SDValue RetAddrFrIdx;
2149   // Load return address for tail calls.
2150   if (isTailCall && FPDiff)
2151     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2152                                     Is64Bit, FPDiff, dl);
2153
2154   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2155   SmallVector<SDValue, 8> MemOpChains;
2156   SDValue StackPtr;
2157
2158   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2159   // of tail call optimization arguments are handle later.
2160   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2161     CCValAssign &VA = ArgLocs[i];
2162     EVT RegVT = VA.getLocVT();
2163     SDValue Arg = OutVals[i];
2164     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2165     bool isByVal = Flags.isByVal();
2166
2167     // Promote the value if needed.
2168     switch (VA.getLocInfo()) {
2169     default: llvm_unreachable("Unknown loc info!");
2170     case CCValAssign::Full: break;
2171     case CCValAssign::SExt:
2172       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2173       break;
2174     case CCValAssign::ZExt:
2175       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2176       break;
2177     case CCValAssign::AExt:
2178       if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2179         // Special case: passing MMX values in XMM registers.
2180         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2181         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2182         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2183       } else
2184         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2185       break;
2186     case CCValAssign::BCvt:
2187       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2188       break;
2189     case CCValAssign::Indirect: {
2190       // Store the argument.
2191       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2192       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2193       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2194                            MachinePointerInfo::getFixedStack(FI),
2195                            false, false, 0);
2196       Arg = SpillSlot;
2197       break;
2198     }
2199     }
2200
2201     if (VA.isRegLoc()) {
2202       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2203       if (isVarArg && IsWin64) {
2204         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2205         // shadow reg if callee is a varargs function.
2206         unsigned ShadowReg = 0;
2207         switch (VA.getLocReg()) {
2208         case X86::XMM0: ShadowReg = X86::RCX; break;
2209         case X86::XMM1: ShadowReg = X86::RDX; break;
2210         case X86::XMM2: ShadowReg = X86::R8; break;
2211         case X86::XMM3: ShadowReg = X86::R9; break;
2212         }
2213         if (ShadowReg)
2214           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2215       }
2216     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2217       assert(VA.isMemLoc());
2218       if (StackPtr.getNode() == 0)
2219         StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2220       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2221                                              dl, DAG, VA, Flags));
2222     }
2223   }
2224
2225   if (!MemOpChains.empty())
2226     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2227                         &MemOpChains[0], MemOpChains.size());
2228
2229   // Build a sequence of copy-to-reg nodes chained together with token chain
2230   // and flag operands which copy the outgoing args into registers.
2231   SDValue InFlag;
2232   // Tail call byval lowering might overwrite argument registers so in case of
2233   // tail call optimization the copies to registers are lowered later.
2234   if (!isTailCall)
2235     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2236       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2237                                RegsToPass[i].second, InFlag);
2238       InFlag = Chain.getValue(1);
2239     }
2240
2241   if (Subtarget->isPICStyleGOT()) {
2242     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2243     // GOT pointer.
2244     if (!isTailCall) {
2245       Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2246                                DAG.getNode(X86ISD::GlobalBaseReg,
2247                                            DebugLoc(), getPointerTy()),
2248                                InFlag);
2249       InFlag = Chain.getValue(1);
2250     } else {
2251       // If we are tail calling and generating PIC/GOT style code load the
2252       // address of the callee into ECX. The value in ecx is used as target of
2253       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2254       // for tail calls on PIC/GOT architectures. Normally we would just put the
2255       // address of GOT into ebx and then call target@PLT. But for tail calls
2256       // ebx would be restored (since ebx is callee saved) before jumping to the
2257       // target@PLT.
2258
2259       // Note: The actual moving to ECX is done further down.
2260       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2261       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2262           !G->getGlobal()->hasProtectedVisibility())
2263         Callee = LowerGlobalAddress(Callee, DAG);
2264       else if (isa<ExternalSymbolSDNode>(Callee))
2265         Callee = LowerExternalSymbol(Callee, DAG);
2266     }
2267   }
2268
2269   if (Is64Bit && isVarArg && !IsWin64) {
2270     // From AMD64 ABI document:
2271     // For calls that may call functions that use varargs or stdargs
2272     // (prototype-less calls or calls to functions containing ellipsis (...) in
2273     // the declaration) %al is used as hidden argument to specify the number
2274     // of SSE registers used. The contents of %al do not need to match exactly
2275     // the number of registers, but must be an ubound on the number of SSE
2276     // registers used and is in the range 0 - 8 inclusive.
2277
2278     // Count the number of XMM registers allocated.
2279     static const unsigned XMMArgRegs[] = {
2280       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2281       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2282     };
2283     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2284     assert((Subtarget->hasXMM() || !NumXMMRegs)
2285            && "SSE registers cannot be used when SSE is disabled");
2286
2287     Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
2288                              DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
2289     InFlag = Chain.getValue(1);
2290   }
2291
2292
2293   // For tail calls lower the arguments to the 'real' stack slot.
2294   if (isTailCall) {
2295     // Force all the incoming stack arguments to be loaded from the stack
2296     // before any new outgoing arguments are stored to the stack, because the
2297     // outgoing stack slots may alias the incoming argument stack slots, and
2298     // the alias isn't otherwise explicit. This is slightly more conservative
2299     // than necessary, because it means that each store effectively depends
2300     // on every argument instead of just those arguments it would clobber.
2301     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2302
2303     SmallVector<SDValue, 8> MemOpChains2;
2304     SDValue FIN;
2305     int FI = 0;
2306     // Do not flag preceding copytoreg stuff together with the following stuff.
2307     InFlag = SDValue();
2308     if (GuaranteedTailCallOpt) {
2309       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2310         CCValAssign &VA = ArgLocs[i];
2311         if (VA.isRegLoc())
2312           continue;
2313         assert(VA.isMemLoc());
2314         SDValue Arg = OutVals[i];
2315         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2316         // Create frame index.
2317         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2318         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2319         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2320         FIN = DAG.getFrameIndex(FI, getPointerTy());
2321
2322         if (Flags.isByVal()) {
2323           // Copy relative to framepointer.
2324           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2325           if (StackPtr.getNode() == 0)
2326             StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
2327                                           getPointerTy());
2328           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2329
2330           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2331                                                            ArgChain,
2332                                                            Flags, DAG, dl));
2333         } else {
2334           // Store relative to framepointer.
2335           MemOpChains2.push_back(
2336             DAG.getStore(ArgChain, dl, Arg, FIN,
2337                          MachinePointerInfo::getFixedStack(FI),
2338                          false, false, 0));
2339         }
2340       }
2341     }
2342
2343     if (!MemOpChains2.empty())
2344       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2345                           &MemOpChains2[0], MemOpChains2.size());
2346
2347     // Copy arguments to their registers.
2348     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2349       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2350                                RegsToPass[i].second, InFlag);
2351       InFlag = Chain.getValue(1);
2352     }
2353     InFlag =SDValue();
2354
2355     // Store the return address to the appropriate stack slot.
2356     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
2357                                      FPDiff, dl);
2358   }
2359
2360   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2361     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2362     // In the 64-bit large code model, we have to make all calls
2363     // through a register, since the call instruction's 32-bit
2364     // pc-relative offset may not be large enough to hold the whole
2365     // address.
2366   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2367     // If the callee is a GlobalAddress node (quite common, every direct call
2368     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2369     // it.
2370
2371     // We should use extra load for direct calls to dllimported functions in
2372     // non-JIT mode.
2373     const GlobalValue *GV = G->getGlobal();
2374     if (!GV->hasDLLImportLinkage()) {
2375       unsigned char OpFlags = 0;
2376       bool ExtraLoad = false;
2377       unsigned WrapperKind = ISD::DELETED_NODE;
2378
2379       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2380       // external symbols most go through the PLT in PIC mode.  If the symbol
2381       // has hidden or protected visibility, or if it is static or local, then
2382       // we don't need to use the PLT - we can directly call it.
2383       if (Subtarget->isTargetELF() &&
2384           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2385           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2386         OpFlags = X86II::MO_PLT;
2387       } else if (Subtarget->isPICStyleStubAny() &&
2388                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2389                  (!Subtarget->getTargetTriple().isMacOSX() ||
2390                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2391         // PC-relative references to external symbols should go through $stub,
2392         // unless we're building with the leopard linker or later, which
2393         // automatically synthesizes these stubs.
2394         OpFlags = X86II::MO_DARWIN_STUB;
2395       } else if (Subtarget->isPICStyleRIPRel() &&
2396                  isa<Function>(GV) &&
2397                  cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2398         // If the function is marked as non-lazy, generate an indirect call
2399         // which loads from the GOT directly. This avoids runtime overhead
2400         // at the cost of eager binding (and one extra byte of encoding).
2401         OpFlags = X86II::MO_GOTPCREL;
2402         WrapperKind = X86ISD::WrapperRIP;
2403         ExtraLoad = true;
2404       }
2405
2406       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2407                                           G->getOffset(), OpFlags);
2408
2409       // Add a wrapper if needed.
2410       if (WrapperKind != ISD::DELETED_NODE)
2411         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2412       // Add extra indirection if needed.
2413       if (ExtraLoad)
2414         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2415                              MachinePointerInfo::getGOT(),
2416                              false, false, false, 0);
2417     }
2418   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2419     unsigned char OpFlags = 0;
2420
2421     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2422     // external symbols should go through the PLT.
2423     if (Subtarget->isTargetELF() &&
2424         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2425       OpFlags = X86II::MO_PLT;
2426     } else if (Subtarget->isPICStyleStubAny() &&
2427                (!Subtarget->getTargetTriple().isMacOSX() ||
2428                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2429       // PC-relative references to external symbols should go through $stub,
2430       // unless we're building with the leopard linker or later, which
2431       // automatically synthesizes these stubs.
2432       OpFlags = X86II::MO_DARWIN_STUB;
2433     }
2434
2435     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2436                                          OpFlags);
2437   }
2438
2439   // Returns a chain & a flag for retval copy to use.
2440   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2441   SmallVector<SDValue, 8> Ops;
2442
2443   if (!IsSibcall && isTailCall) {
2444     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2445                            DAG.getIntPtrConstant(0, true), InFlag);
2446     InFlag = Chain.getValue(1);
2447   }
2448
2449   Ops.push_back(Chain);
2450   Ops.push_back(Callee);
2451
2452   if (isTailCall)
2453     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2454
2455   // Add argument registers to the end of the list so that they are known live
2456   // into the call.
2457   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2458     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2459                                   RegsToPass[i].second.getValueType()));
2460
2461   // Add an implicit use GOT pointer in EBX.
2462   if (!isTailCall && Subtarget->isPICStyleGOT())
2463     Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2464
2465   // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2466   if (Is64Bit && isVarArg && !IsWin64)
2467     Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
2468
2469   if (InFlag.getNode())
2470     Ops.push_back(InFlag);
2471
2472   if (isTailCall) {
2473     // We used to do:
2474     //// If this is the first return lowered for this function, add the regs
2475     //// to the liveout set for the function.
2476     // This isn't right, although it's probably harmless on x86; liveouts
2477     // should be computed from returns not tail calls.  Consider a void
2478     // function making a tail call to a function returning int.
2479     return DAG.getNode(X86ISD::TC_RETURN, dl,
2480                        NodeTys, &Ops[0], Ops.size());
2481   }
2482
2483   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2484   InFlag = Chain.getValue(1);
2485
2486   // Create the CALLSEQ_END node.
2487   unsigned NumBytesForCalleeToPush;
2488   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
2489     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2490   else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
2491     // If this is a call to a struct-return function, the callee
2492     // pops the hidden struct pointer, so we have to push it back.
2493     // This is common for Darwin/X86, Linux & Mingw32 targets.
2494     NumBytesForCalleeToPush = 4;
2495   else
2496     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2497
2498   // Returns a flag for retval copy to use.
2499   if (!IsSibcall) {
2500     Chain = DAG.getCALLSEQ_END(Chain,
2501                                DAG.getIntPtrConstant(NumBytes, true),
2502                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2503                                                      true),
2504                                InFlag);
2505     InFlag = Chain.getValue(1);
2506   }
2507
2508   // Handle result values, copying them out of physregs into vregs that we
2509   // return.
2510   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2511                          Ins, dl, DAG, InVals);
2512 }
2513
2514
2515 //===----------------------------------------------------------------------===//
2516 //                Fast Calling Convention (tail call) implementation
2517 //===----------------------------------------------------------------------===//
2518
2519 //  Like std call, callee cleans arguments, convention except that ECX is
2520 //  reserved for storing the tail called function address. Only 2 registers are
2521 //  free for argument passing (inreg). Tail call optimization is performed
2522 //  provided:
2523 //                * tailcallopt is enabled
2524 //                * caller/callee are fastcc
2525 //  On X86_64 architecture with GOT-style position independent code only local
2526 //  (within module) calls are supported at the moment.
2527 //  To keep the stack aligned according to platform abi the function
2528 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2529 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2530 //  If a tail called function callee has more arguments than the caller the
2531 //  caller needs to make sure that there is room to move the RETADDR to. This is
2532 //  achieved by reserving an area the size of the argument delta right after the
2533 //  original REtADDR, but before the saved framepointer or the spilled registers
2534 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2535 //  stack layout:
2536 //    arg1
2537 //    arg2
2538 //    RETADDR
2539 //    [ new RETADDR
2540 //      move area ]
2541 //    (possible EBP)
2542 //    ESI
2543 //    EDI
2544 //    local1 ..
2545
2546 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2547 /// for a 16 byte align requirement.
2548 unsigned
2549 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2550                                                SelectionDAG& DAG) const {
2551   MachineFunction &MF = DAG.getMachineFunction();
2552   const TargetMachine &TM = MF.getTarget();
2553   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2554   unsigned StackAlignment = TFI.getStackAlignment();
2555   uint64_t AlignMask = StackAlignment - 1;
2556   int64_t Offset = StackSize;
2557   uint64_t SlotSize = TD->getPointerSize();
2558   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2559     // Number smaller than 12 so just add the difference.
2560     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2561   } else {
2562     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2563     Offset = ((~AlignMask) & Offset) + StackAlignment +
2564       (StackAlignment-SlotSize);
2565   }
2566   return Offset;
2567 }
2568
2569 /// MatchingStackOffset - Return true if the given stack call argument is
2570 /// already available in the same position (relatively) of the caller's
2571 /// incoming argument stack.
2572 static
2573 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2574                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2575                          const X86InstrInfo *TII) {
2576   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2577   int FI = INT_MAX;
2578   if (Arg.getOpcode() == ISD::CopyFromReg) {
2579     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2580     if (!TargetRegisterInfo::isVirtualRegister(VR))
2581       return false;
2582     MachineInstr *Def = MRI->getVRegDef(VR);
2583     if (!Def)
2584       return false;
2585     if (!Flags.isByVal()) {
2586       if (!TII->isLoadFromStackSlot(Def, FI))
2587         return false;
2588     } else {
2589       unsigned Opcode = Def->getOpcode();
2590       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2591           Def->getOperand(1).isFI()) {
2592         FI = Def->getOperand(1).getIndex();
2593         Bytes = Flags.getByValSize();
2594       } else
2595         return false;
2596     }
2597   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2598     if (Flags.isByVal())
2599       // ByVal argument is passed in as a pointer but it's now being
2600       // dereferenced. e.g.
2601       // define @foo(%struct.X* %A) {
2602       //   tail call @bar(%struct.X* byval %A)
2603       // }
2604       return false;
2605     SDValue Ptr = Ld->getBasePtr();
2606     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2607     if (!FINode)
2608       return false;
2609     FI = FINode->getIndex();
2610   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2611     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2612     FI = FINode->getIndex();
2613     Bytes = Flags.getByValSize();
2614   } else
2615     return false;
2616
2617   assert(FI != INT_MAX);
2618   if (!MFI->isFixedObjectIndex(FI))
2619     return false;
2620   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2621 }
2622
2623 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
2624 /// for tail call optimization. Targets which want to do tail call
2625 /// optimization should implement this function.
2626 bool
2627 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2628                                                      CallingConv::ID CalleeCC,
2629                                                      bool isVarArg,
2630                                                      bool isCalleeStructRet,
2631                                                      bool isCallerStructRet,
2632                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
2633                                     const SmallVectorImpl<SDValue> &OutVals,
2634                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2635                                                      SelectionDAG& DAG) const {
2636   if (!IsTailCallConvention(CalleeCC) &&
2637       CalleeCC != CallingConv::C)
2638     return false;
2639
2640   // If -tailcallopt is specified, make fastcc functions tail-callable.
2641   const MachineFunction &MF = DAG.getMachineFunction();
2642   const Function *CallerF = DAG.getMachineFunction().getFunction();
2643   CallingConv::ID CallerCC = CallerF->getCallingConv();
2644   bool CCMatch = CallerCC == CalleeCC;
2645
2646   if (GuaranteedTailCallOpt) {
2647     if (IsTailCallConvention(CalleeCC) && CCMatch)
2648       return true;
2649     return false;
2650   }
2651
2652   // Look for obvious safe cases to perform tail call optimization that do not
2653   // require ABI changes. This is what gcc calls sibcall.
2654
2655   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2656   // emit a special epilogue.
2657   if (RegInfo->needsStackRealignment(MF))
2658     return false;
2659
2660   // Also avoid sibcall optimization if either caller or callee uses struct
2661   // return semantics.
2662   if (isCalleeStructRet || isCallerStructRet)
2663     return false;
2664
2665   // An stdcall caller is expected to clean up its arguments; the callee
2666   // isn't going to do that.
2667   if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2668     return false;
2669
2670   // Do not sibcall optimize vararg calls unless all arguments are passed via
2671   // registers.
2672   if (isVarArg && !Outs.empty()) {
2673
2674     // Optimizing for varargs on Win64 is unlikely to be safe without
2675     // additional testing.
2676     if (Subtarget->isTargetWin64())
2677       return false;
2678
2679     SmallVector<CCValAssign, 16> ArgLocs;
2680     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2681                    getTargetMachine(), ArgLocs, *DAG.getContext());
2682
2683     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2684     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2685       if (!ArgLocs[i].isRegLoc())
2686         return false;
2687   }
2688
2689   // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2690   // Therefore if it's not used by the call it is not safe to optimize this into
2691   // a sibcall.
2692   bool Unused = false;
2693   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2694     if (!Ins[i].Used) {
2695       Unused = true;
2696       break;
2697     }
2698   }
2699   if (Unused) {
2700     SmallVector<CCValAssign, 16> RVLocs;
2701     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2702                    getTargetMachine(), RVLocs, *DAG.getContext());
2703     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2704     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2705       CCValAssign &VA = RVLocs[i];
2706       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2707         return false;
2708     }
2709   }
2710
2711   // If the calling conventions do not match, then we'd better make sure the
2712   // results are returned in the same way as what the caller expects.
2713   if (!CCMatch) {
2714     SmallVector<CCValAssign, 16> RVLocs1;
2715     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2716                     getTargetMachine(), RVLocs1, *DAG.getContext());
2717     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2718
2719     SmallVector<CCValAssign, 16> RVLocs2;
2720     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2721                     getTargetMachine(), RVLocs2, *DAG.getContext());
2722     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2723
2724     if (RVLocs1.size() != RVLocs2.size())
2725       return false;
2726     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2727       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2728         return false;
2729       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2730         return false;
2731       if (RVLocs1[i].isRegLoc()) {
2732         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2733           return false;
2734       } else {
2735         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2736           return false;
2737       }
2738     }
2739   }
2740
2741   // If the callee takes no arguments then go on to check the results of the
2742   // call.
2743   if (!Outs.empty()) {
2744     // Check if stack adjustment is needed. For now, do not do this if any
2745     // argument is passed on the stack.
2746     SmallVector<CCValAssign, 16> ArgLocs;
2747     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2748                    getTargetMachine(), ArgLocs, *DAG.getContext());
2749
2750     // Allocate shadow area for Win64
2751     if (Subtarget->isTargetWin64()) {
2752       CCInfo.AllocateStack(32, 8);
2753     }
2754
2755     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2756     if (CCInfo.getNextStackOffset()) {
2757       MachineFunction &MF = DAG.getMachineFunction();
2758       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2759         return false;
2760
2761       // Check if the arguments are already laid out in the right way as
2762       // the caller's fixed stack objects.
2763       MachineFrameInfo *MFI = MF.getFrameInfo();
2764       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2765       const X86InstrInfo *TII =
2766         ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
2767       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2768         CCValAssign &VA = ArgLocs[i];
2769         SDValue Arg = OutVals[i];
2770         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2771         if (VA.getLocInfo() == CCValAssign::Indirect)
2772           return false;
2773         if (!VA.isRegLoc()) {
2774           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2775                                    MFI, MRI, TII))
2776             return false;
2777         }
2778       }
2779     }
2780
2781     // If the tailcall address may be in a register, then make sure it's
2782     // possible to register allocate for it. In 32-bit, the call address can
2783     // only target EAX, EDX, or ECX since the tail call must be scheduled after
2784     // callee-saved registers are restored. These happen to be the same
2785     // registers used to pass 'inreg' arguments so watch out for those.
2786     if (!Subtarget->is64Bit() &&
2787         !isa<GlobalAddressSDNode>(Callee) &&
2788         !isa<ExternalSymbolSDNode>(Callee)) {
2789       unsigned NumInRegs = 0;
2790       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2791         CCValAssign &VA = ArgLocs[i];
2792         if (!VA.isRegLoc())
2793           continue;
2794         unsigned Reg = VA.getLocReg();
2795         switch (Reg) {
2796         default: break;
2797         case X86::EAX: case X86::EDX: case X86::ECX:
2798           if (++NumInRegs == 3)
2799             return false;
2800           break;
2801         }
2802       }
2803     }
2804   }
2805
2806   return true;
2807 }
2808
2809 FastISel *
2810 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2811   return X86::createFastISel(funcInfo);
2812 }
2813
2814
2815 //===----------------------------------------------------------------------===//
2816 //                           Other Lowering Hooks
2817 //===----------------------------------------------------------------------===//
2818
2819 static bool MayFoldLoad(SDValue Op) {
2820   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2821 }
2822
2823 static bool MayFoldIntoStore(SDValue Op) {
2824   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2825 }
2826
2827 static bool isTargetShuffle(unsigned Opcode) {
2828   switch(Opcode) {
2829   default: return false;
2830   case X86ISD::PSHUFD:
2831   case X86ISD::PSHUFHW:
2832   case X86ISD::PSHUFLW:
2833   case X86ISD::SHUFPD:
2834   case X86ISD::PALIGN:
2835   case X86ISD::SHUFPS:
2836   case X86ISD::MOVLHPS:
2837   case X86ISD::MOVLHPD:
2838   case X86ISD::MOVHLPS:
2839   case X86ISD::MOVLPS:
2840   case X86ISD::MOVLPD:
2841   case X86ISD::MOVSHDUP:
2842   case X86ISD::MOVSLDUP:
2843   case X86ISD::MOVDDUP:
2844   case X86ISD::MOVSS:
2845   case X86ISD::MOVSD:
2846   case X86ISD::UNPCKLPS:
2847   case X86ISD::UNPCKLPD:
2848   case X86ISD::VUNPCKLPSY:
2849   case X86ISD::VUNPCKLPDY:
2850   case X86ISD::PUNPCKLWD:
2851   case X86ISD::PUNPCKLBW:
2852   case X86ISD::PUNPCKLDQ:
2853   case X86ISD::PUNPCKLQDQ:
2854   case X86ISD::VPUNPCKLWDY:
2855   case X86ISD::VPUNPCKLBWY:
2856   case X86ISD::VPUNPCKLDQY:
2857   case X86ISD::VPUNPCKLQDQY:
2858   case X86ISD::UNPCKHPS:
2859   case X86ISD::UNPCKHPD:
2860   case X86ISD::VUNPCKHPSY:
2861   case X86ISD::VUNPCKHPDY:
2862   case X86ISD::PUNPCKHWD:
2863   case X86ISD::PUNPCKHBW:
2864   case X86ISD::PUNPCKHDQ:
2865   case X86ISD::PUNPCKHQDQ:
2866   case X86ISD::VPUNPCKHWDY:
2867   case X86ISD::VPUNPCKHBWY:
2868   case X86ISD::VPUNPCKHDQY:
2869   case X86ISD::VPUNPCKHQDQY:
2870   case X86ISD::VPERMILPS:
2871   case X86ISD::VPERMILPSY:
2872   case X86ISD::VPERMILPD:
2873   case X86ISD::VPERMILPDY:
2874   case X86ISD::VPERM2F128:
2875     return true;
2876   }
2877   return false;
2878 }
2879
2880 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2881                                                SDValue V1, SelectionDAG &DAG) {
2882   switch(Opc) {
2883   default: llvm_unreachable("Unknown x86 shuffle node");
2884   case X86ISD::MOVSHDUP:
2885   case X86ISD::MOVSLDUP:
2886   case X86ISD::MOVDDUP:
2887     return DAG.getNode(Opc, dl, VT, V1);
2888   }
2889
2890   return SDValue();
2891 }
2892
2893 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2894                           SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
2895   switch(Opc) {
2896   default: llvm_unreachable("Unknown x86 shuffle node");
2897   case X86ISD::PSHUFD:
2898   case X86ISD::PSHUFHW:
2899   case X86ISD::PSHUFLW:
2900   case X86ISD::VPERMILPS:
2901   case X86ISD::VPERMILPSY:
2902   case X86ISD::VPERMILPD:
2903   case X86ISD::VPERMILPDY:
2904     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2905   }
2906
2907   return SDValue();
2908 }
2909
2910 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2911                SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2912   switch(Opc) {
2913   default: llvm_unreachable("Unknown x86 shuffle node");
2914   case X86ISD::PALIGN:
2915   case X86ISD::SHUFPD:
2916   case X86ISD::SHUFPS:
2917   case X86ISD::VPERM2F128:
2918     return DAG.getNode(Opc, dl, VT, V1, V2,
2919                        DAG.getConstant(TargetMask, MVT::i8));
2920   }
2921   return SDValue();
2922 }
2923
2924 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2925                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
2926   switch(Opc) {
2927   default: llvm_unreachable("Unknown x86 shuffle node");
2928   case X86ISD::MOVLHPS:
2929   case X86ISD::MOVLHPD:
2930   case X86ISD::MOVHLPS:
2931   case X86ISD::MOVLPS:
2932   case X86ISD::MOVLPD:
2933   case X86ISD::MOVSS:
2934   case X86ISD::MOVSD:
2935   case X86ISD::UNPCKLPS:
2936   case X86ISD::UNPCKLPD:
2937   case X86ISD::VUNPCKLPSY:
2938   case X86ISD::VUNPCKLPDY:
2939   case X86ISD::PUNPCKLWD:
2940   case X86ISD::PUNPCKLBW:
2941   case X86ISD::PUNPCKLDQ:
2942   case X86ISD::PUNPCKLQDQ:
2943   case X86ISD::VPUNPCKLWDY:
2944   case X86ISD::VPUNPCKLBWY:
2945   case X86ISD::VPUNPCKLDQY:
2946   case X86ISD::VPUNPCKLQDQY:
2947   case X86ISD::UNPCKHPS:
2948   case X86ISD::UNPCKHPD:
2949   case X86ISD::VUNPCKHPSY:
2950   case X86ISD::VUNPCKHPDY:
2951   case X86ISD::PUNPCKHWD:
2952   case X86ISD::PUNPCKHBW:
2953   case X86ISD::PUNPCKHDQ:
2954   case X86ISD::PUNPCKHQDQ:
2955   case X86ISD::VPUNPCKHWDY:
2956   case X86ISD::VPUNPCKHBWY:
2957   case X86ISD::VPUNPCKHDQY:
2958   case X86ISD::VPUNPCKHQDQY:
2959     return DAG.getNode(Opc, dl, VT, V1, V2);
2960   }
2961   return SDValue();
2962 }
2963
2964 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
2965   MachineFunction &MF = DAG.getMachineFunction();
2966   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2967   int ReturnAddrIndex = FuncInfo->getRAIndex();
2968
2969   if (ReturnAddrIndex == 0) {
2970     // Set up a frame object for the return address.
2971     uint64_t SlotSize = TD->getPointerSize();
2972     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
2973                                                            false);
2974     FuncInfo->setRAIndex(ReturnAddrIndex);
2975   }
2976
2977   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2978 }
2979
2980
2981 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2982                                        bool hasSymbolicDisplacement) {
2983   // Offset should fit into 32 bit immediate field.
2984   if (!isInt<32>(Offset))
2985     return false;
2986
2987   // If we don't have a symbolic displacement - we don't have any extra
2988   // restrictions.
2989   if (!hasSymbolicDisplacement)
2990     return true;
2991
2992   // FIXME: Some tweaks might be needed for medium code model.
2993   if (M != CodeModel::Small && M != CodeModel::Kernel)
2994     return false;
2995
2996   // For small code model we assume that latest object is 16MB before end of 31
2997   // bits boundary. We may also accept pretty large negative constants knowing
2998   // that all objects are in the positive half of address space.
2999   if (M == CodeModel::Small && Offset < 16*1024*1024)
3000     return true;
3001
3002   // For kernel code model we know that all object resist in the negative half
3003   // of 32bits address space. We may not accept negative offsets, since they may
3004   // be just off and we may accept pretty large positive ones.
3005   if (M == CodeModel::Kernel && Offset > 0)
3006     return true;
3007
3008   return false;
3009 }
3010
3011 /// isCalleePop - Determines whether the callee is required to pop its
3012 /// own arguments. Callee pop is necessary to support tail calls.
3013 bool X86::isCalleePop(CallingConv::ID CallingConv,
3014                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
3015   if (IsVarArg)
3016     return false;
3017
3018   switch (CallingConv) {
3019   default:
3020     return false;
3021   case CallingConv::X86_StdCall:
3022     return !is64Bit;
3023   case CallingConv::X86_FastCall:
3024     return !is64Bit;
3025   case CallingConv::X86_ThisCall:
3026     return !is64Bit;
3027   case CallingConv::Fast:
3028     return TailCallOpt;
3029   case CallingConv::GHC:
3030     return TailCallOpt;
3031   }
3032 }
3033
3034 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
3035 /// specific condition code, returning the condition code and the LHS/RHS of the
3036 /// comparison to make.
3037 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
3038                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
3039   if (!isFP) {
3040     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
3041       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
3042         // X > -1   -> X == 0, jump !sign.
3043         RHS = DAG.getConstant(0, RHS.getValueType());
3044         return X86::COND_NS;
3045       } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
3046         // X < 0   -> X == 0, jump on sign.
3047         return X86::COND_S;
3048       } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
3049         // X < 1   -> X <= 0
3050         RHS = DAG.getConstant(0, RHS.getValueType());
3051         return X86::COND_LE;
3052       }
3053     }
3054
3055     switch (SetCCOpcode) {
3056     default: llvm_unreachable("Invalid integer condition!");
3057     case ISD::SETEQ:  return X86::COND_E;
3058     case ISD::SETGT:  return X86::COND_G;
3059     case ISD::SETGE:  return X86::COND_GE;
3060     case ISD::SETLT:  return X86::COND_L;
3061     case ISD::SETLE:  return X86::COND_LE;
3062     case ISD::SETNE:  return X86::COND_NE;
3063     case ISD::SETULT: return X86::COND_B;
3064     case ISD::SETUGT: return X86::COND_A;
3065     case ISD::SETULE: return X86::COND_BE;
3066     case ISD::SETUGE: return X86::COND_AE;
3067     }
3068   }
3069
3070   // First determine if it is required or is profitable to flip the operands.
3071
3072   // If LHS is a foldable load, but RHS is not, flip the condition.
3073   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
3074       !ISD::isNON_EXTLoad(RHS.getNode())) {
3075     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
3076     std::swap(LHS, RHS);
3077   }
3078
3079   switch (SetCCOpcode) {
3080   default: break;
3081   case ISD::SETOLT:
3082   case ISD::SETOLE:
3083   case ISD::SETUGT:
3084   case ISD::SETUGE:
3085     std::swap(LHS, RHS);
3086     break;
3087   }
3088
3089   // On a floating point condition, the flags are set as follows:
3090   // ZF  PF  CF   op
3091   //  0 | 0 | 0 | X > Y
3092   //  0 | 0 | 1 | X < Y
3093   //  1 | 0 | 0 | X == Y
3094   //  1 | 1 | 1 | unordered
3095   switch (SetCCOpcode) {
3096   default: llvm_unreachable("Condcode should be pre-legalized away");
3097   case ISD::SETUEQ:
3098   case ISD::SETEQ:   return X86::COND_E;
3099   case ISD::SETOLT:              // flipped
3100   case ISD::SETOGT:
3101   case ISD::SETGT:   return X86::COND_A;
3102   case ISD::SETOLE:              // flipped
3103   case ISD::SETOGE:
3104   case ISD::SETGE:   return X86::COND_AE;
3105   case ISD::SETUGT:              // flipped
3106   case ISD::SETULT:
3107   case ISD::SETLT:   return X86::COND_B;
3108   case ISD::SETUGE:              // flipped
3109   case ISD::SETULE:
3110   case ISD::SETLE:   return X86::COND_BE;
3111   case ISD::SETONE:
3112   case ISD::SETNE:   return X86::COND_NE;
3113   case ISD::SETUO:   return X86::COND_P;
3114   case ISD::SETO:    return X86::COND_NP;
3115   case ISD::SETOEQ:
3116   case ISD::SETUNE:  return X86::COND_INVALID;
3117   }
3118 }
3119
3120 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
3121 /// code. Current x86 isa includes the following FP cmov instructions:
3122 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
3123 static bool hasFPCMov(unsigned X86CC) {
3124   switch (X86CC) {
3125   default:
3126     return false;
3127   case X86::COND_B:
3128   case X86::COND_BE:
3129   case X86::COND_E:
3130   case X86::COND_P:
3131   case X86::COND_A:
3132   case X86::COND_AE:
3133   case X86::COND_NE:
3134   case X86::COND_NP:
3135     return true;
3136   }
3137 }
3138
3139 /// isFPImmLegal - Returns true if the target can instruction select the
3140 /// specified FP immediate natively. If false, the legalizer will
3141 /// materialize the FP immediate as a load from a constant pool.
3142 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
3143   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
3144     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
3145       return true;
3146   }
3147   return false;
3148 }
3149
3150 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
3151 /// the specified range (L, H].
3152 static bool isUndefOrInRange(int Val, int Low, int Hi) {
3153   return (Val < 0) || (Val >= Low && Val < Hi);
3154 }
3155
3156 /// isUndefOrInRange - Return true if every element in Mask, begining
3157 /// from position Pos and ending in Pos+Size, falls within the specified
3158 /// range (L, L+Pos]. or is undef.
3159 static bool isUndefOrInRange(const SmallVectorImpl<int> &Mask,
3160                              int Pos, int Size, int Low, int Hi) {
3161   for (int i = Pos, e = Pos+Size; i != e; ++i)
3162     if (!isUndefOrInRange(Mask[i], Low, Hi))
3163       return false;
3164   return true;
3165 }
3166
3167 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3168 /// specified value.
3169 static bool isUndefOrEqual(int Val, int CmpVal) {
3170   if (Val < 0 || Val == CmpVal)
3171     return true;
3172   return false;
3173 }
3174
3175 /// isSequentialOrUndefInRange - Return true if every element in Mask, begining
3176 /// from position Pos and ending in Pos+Size, falls within the specified
3177 /// sequential range (L, L+Pos]. or is undef.
3178 static bool isSequentialOrUndefInRange(const SmallVectorImpl<int> &Mask,
3179                                        int Pos, int Size, int Low) {
3180   for (int i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3181     if (!isUndefOrEqual(Mask[i], Low))
3182       return false;
3183   return true;
3184 }
3185
3186 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3187 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3188 /// the second operand.
3189 static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3190   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3191     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3192   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3193     return (Mask[0] < 2 && Mask[1] < 2);
3194   return false;
3195 }
3196
3197 bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
3198   SmallVector<int, 8> M;
3199   N->getMask(M);
3200   return ::isPSHUFDMask(M, N->getValueType(0));
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(const SmallVectorImpl<int> &Mask, EVT VT) {
3206   if (VT != MVT::v8i16)
3207     return false;
3208
3209   // Lower quadword copied in order or undef.
3210   for (int i = 0; i != 4; ++i)
3211     if (Mask[i] >= 0 && Mask[i] != i)
3212       return false;
3213
3214   // Upper quadword shuffled.
3215   for (int i = 4; i != 8; ++i)
3216     if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
3217       return false;
3218
3219   return true;
3220 }
3221
3222 bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
3223   SmallVector<int, 8> M;
3224   N->getMask(M);
3225   return ::isPSHUFHWMask(M, N->getValueType(0));
3226 }
3227
3228 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3229 /// is suitable for input to PSHUFLW.
3230 static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3231   if (VT != MVT::v8i16)
3232     return false;
3233
3234   // Upper quadword copied in order.
3235   for (int i = 4; i != 8; ++i)
3236     if (Mask[i] >= 0 && Mask[i] != i)
3237       return false;
3238
3239   // Lower quadword shuffled.
3240   for (int i = 0; i != 4; ++i)
3241     if (Mask[i] >= 4)
3242       return false;
3243
3244   return true;
3245 }
3246
3247 bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
3248   SmallVector<int, 8> M;
3249   N->getMask(M);
3250   return ::isPSHUFLWMask(M, N->getValueType(0));
3251 }
3252
3253 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3254 /// is suitable for input to PALIGNR.
3255 static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3256                           bool hasSSSE3OrAVX) {
3257   int i, e = VT.getVectorNumElements();
3258   if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3259     return false;
3260
3261   // Do not handle v2i64 / v2f64 shuffles with palignr.
3262   if (e < 4 || !hasSSSE3OrAVX)
3263     return false;
3264
3265   for (i = 0; i != e; ++i)
3266     if (Mask[i] >= 0)
3267       break;
3268
3269   // All undef, not a palignr.
3270   if (i == e)
3271     return false;
3272
3273   // Make sure we're shifting in the right direction.
3274   if (Mask[i] <= i)
3275     return false;
3276
3277   int s = Mask[i] - i;
3278
3279   // Check the rest of the elements to see if they are consecutive.
3280   for (++i; i != e; ++i) {
3281     int m = Mask[i];
3282     if (m >= 0 && m != s+i)
3283       return false;
3284   }
3285   return true;
3286 }
3287
3288 /// isVSHUFPSYMask - Return true if the specified VECTOR_SHUFFLE operand
3289 /// specifies a shuffle of elements that is suitable for input to 256-bit
3290 /// VSHUFPSY.
3291 static bool isVSHUFPSYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3292                           const X86Subtarget *Subtarget) {
3293   int NumElems = VT.getVectorNumElements();
3294
3295   if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3296     return false;
3297
3298   if (NumElems != 8)
3299     return false;
3300
3301   // VSHUFPSY divides the resulting vector into 4 chunks.
3302   // The sources are also splitted into 4 chunks, and each destination
3303   // chunk must come from a different source chunk.
3304   //
3305   //  SRC1 =>   X7    X6    X5    X4    X3    X2    X1    X0
3306   //  SRC2 =>   Y7    Y6    Y5    Y4    Y3    Y2    Y1    Y9
3307   //
3308   //  DST  =>  Y7..Y4,   Y7..Y4,   X7..X4,   X7..X4,
3309   //           Y3..Y0,   Y3..Y0,   X3..X0,   X3..X0
3310   //
3311   int QuarterSize = NumElems/4;
3312   int HalfSize = QuarterSize*2;
3313   for (int i = 0; i < QuarterSize; ++i)
3314     if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3315       return false;
3316   for (int i = QuarterSize; i < QuarterSize*2; ++i)
3317     if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3318       return false;
3319
3320   // The mask of the second half must be the same as the first but with
3321   // the appropriate offsets. This works in the same way as VPERMILPS
3322   // works with masks.
3323   for (int i = QuarterSize*2; i < QuarterSize*3; ++i) {
3324     if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3325       return false;
3326     int FstHalfIdx = i-HalfSize;
3327     if (Mask[FstHalfIdx] < 0)
3328       continue;
3329     if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3330       return false;
3331   }
3332   for (int i = QuarterSize*3; i < NumElems; ++i) {
3333     if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3334       return false;
3335     int FstHalfIdx = i-HalfSize;
3336     if (Mask[FstHalfIdx] < 0)
3337       continue;
3338     if (!isUndefOrEqual(Mask[i], Mask[FstHalfIdx]+HalfSize))
3339       return false;
3340
3341   }
3342
3343   return true;
3344 }
3345
3346 /// getShuffleVSHUFPSYImmediate - Return the appropriate immediate to shuffle
3347 /// the specified VECTOR_MASK mask with VSHUFPSY instruction.
3348 static unsigned getShuffleVSHUFPSYImmediate(SDNode *N) {
3349   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3350   EVT VT = SVOp->getValueType(0);
3351   int NumElems = VT.getVectorNumElements();
3352
3353   assert(NumElems == 8 && VT.getSizeInBits() == 256 &&
3354          "Only supports v8i32 and v8f32 types");
3355
3356   int HalfSize = NumElems/2;
3357   unsigned Mask = 0;
3358   for (int i = 0; i != NumElems ; ++i) {
3359     if (SVOp->getMaskElt(i) < 0)
3360       continue;
3361     // The mask of the first half must be equal to the second one.
3362     unsigned Shamt = (i%HalfSize)*2;
3363     unsigned Elt = SVOp->getMaskElt(i) % HalfSize;
3364     Mask |= Elt << Shamt;
3365   }
3366
3367   return Mask;
3368 }
3369
3370 /// isVSHUFPDYMask - Return true if the specified VECTOR_SHUFFLE operand
3371 /// specifies a shuffle of elements that is suitable for input to 256-bit
3372 /// VSHUFPDY. This shuffle doesn't have the same restriction as the PS
3373 /// version and the mask of the second half isn't binded with the first
3374 /// one.
3375 static bool isVSHUFPDYMask(const SmallVectorImpl<int> &Mask, EVT VT,
3376                            const X86Subtarget *Subtarget) {
3377   int NumElems = VT.getVectorNumElements();
3378
3379   if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3380     return false;
3381
3382   if (NumElems != 4)
3383     return false;
3384
3385   // VSHUFPSY divides the resulting vector into 4 chunks.
3386   // The sources are also splitted into 4 chunks, and each destination
3387   // chunk must come from a different source chunk.
3388   //
3389   //  SRC1 =>      X3       X2       X1       X0
3390   //  SRC2 =>      Y3       Y2       Y1       Y0
3391   //
3392   //  DST  =>  Y2..Y3,  X2..X3,  Y1..Y0,  X1..X0
3393   //
3394   int QuarterSize = NumElems/4;
3395   int HalfSize = QuarterSize*2;
3396   for (int i = 0; i < QuarterSize; ++i)
3397     if (!isUndefOrInRange(Mask[i], 0, HalfSize))
3398       return false;
3399   for (int i = QuarterSize; i < QuarterSize*2; ++i)
3400     if (!isUndefOrInRange(Mask[i], NumElems, NumElems+HalfSize))
3401       return false;
3402   for (int i = QuarterSize*2; i < QuarterSize*3; ++i)
3403     if (!isUndefOrInRange(Mask[i], HalfSize, NumElems))
3404       return false;
3405   for (int i = QuarterSize*3; i < NumElems; ++i)
3406     if (!isUndefOrInRange(Mask[i], NumElems+HalfSize, NumElems*2))
3407       return false;
3408
3409   return true;
3410 }
3411
3412 /// getShuffleVSHUFPDYImmediate - Return the appropriate immediate to shuffle
3413 /// the specified VECTOR_MASK mask with VSHUFPDY instruction.
3414 static unsigned getShuffleVSHUFPDYImmediate(SDNode *N) {
3415   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3416   EVT VT = SVOp->getValueType(0);
3417   int NumElems = VT.getVectorNumElements();
3418
3419   assert(NumElems == 4 && VT.getSizeInBits() == 256 &&
3420          "Only supports v4i64 and v4f64 types");
3421
3422   int HalfSize = NumElems/2;
3423   unsigned Mask = 0;
3424   for (int i = 0; i != NumElems ; ++i) {
3425     if (SVOp->getMaskElt(i) < 0)
3426       continue;
3427     int Elt = SVOp->getMaskElt(i) % HalfSize;
3428     Mask |= Elt << i;
3429   }
3430
3431   return Mask;
3432 }
3433
3434 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3435 /// the two vector operands have swapped position.
3436 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
3437   unsigned NumElems = VT.getVectorNumElements();
3438   for (unsigned i = 0; i != NumElems; ++i) {
3439     int idx = Mask[i];
3440     if (idx < 0)
3441       continue;
3442     else if (idx < (int)NumElems)
3443       Mask[i] = idx + NumElems;
3444     else
3445       Mask[i] = idx - NumElems;
3446   }
3447 }
3448
3449 /// isCommutedVSHUFP() - Return true if swapping operands will 
3450 ///  allow to use the "vshufpd" or "vshufps" instruction 
3451 ///  for 256-bit vectors
3452 static bool isCommutedVSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT,
3453                                const X86Subtarget *Subtarget) {
3454
3455   unsigned NumElems = VT.getVectorNumElements();
3456   if ((VT.getSizeInBits() != 256) || ((NumElems != 4) && (NumElems != 8)))
3457     return false;
3458
3459   SmallVector<int, 8> CommutedMask;
3460   for (unsigned i = 0; i < NumElems; ++i)
3461     CommutedMask.push_back(Mask[i]);
3462
3463   CommuteVectorShuffleMask(CommutedMask, VT);
3464   return (NumElems == 4) ? isVSHUFPDYMask(CommutedMask, VT, Subtarget):
3465       isVSHUFPSYMask(CommutedMask, VT, Subtarget);
3466 }
3467
3468
3469 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3470 /// specifies a shuffle of elements that is suitable for input to 128-bit
3471 /// SHUFPS and SHUFPD.
3472 static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3473   int NumElems = VT.getVectorNumElements();
3474
3475   if (VT.getSizeInBits() != 128)
3476     return false;
3477
3478   if (NumElems != 2 && NumElems != 4)
3479     return false;
3480
3481   int Half = NumElems / 2;
3482   for (int i = 0; i < Half; ++i)
3483     if (!isUndefOrInRange(Mask[i], 0, NumElems))
3484       return false;
3485   for (int i = Half; i < NumElems; ++i)
3486     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
3487       return false;
3488
3489   return true;
3490 }
3491
3492 bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3493   SmallVector<int, 8> M;
3494   N->getMask(M);
3495   return ::isSHUFPMask(M, N->getValueType(0));
3496 }
3497
3498 /// isCommutedSHUFP - Returns true if the shuffle mask is exactly
3499 /// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3500 /// half elements to come from vector 1 (which would equal the dest.) and
3501 /// the upper half to come from vector 2.
3502 static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3503   int NumElems = VT.getVectorNumElements();
3504
3505   if (NumElems != 2 && NumElems != 4)
3506     return false;
3507
3508   int Half = NumElems / 2;
3509   for (int i = 0; i < Half; ++i)
3510     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
3511       return false;
3512   for (int i = Half; i < NumElems; ++i)
3513     if (!isUndefOrInRange(Mask[i], 0, NumElems))
3514       return false;
3515   return true;
3516 }
3517
3518 static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3519   SmallVector<int, 8> M;
3520   N->getMask(M);
3521   return isCommutedSHUFPMask(M, N->getValueType(0));
3522 }
3523
3524 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3525 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3526 bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3527   EVT VT = N->getValueType(0);
3528   unsigned NumElems = VT.getVectorNumElements();
3529
3530   if (VT.getSizeInBits() != 128)
3531     return false;
3532
3533   if (NumElems != 4)
3534     return false;
3535
3536   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3537   return isUndefOrEqual(N->getMaskElt(0), 6) &&
3538          isUndefOrEqual(N->getMaskElt(1), 7) &&
3539          isUndefOrEqual(N->getMaskElt(2), 2) &&
3540          isUndefOrEqual(N->getMaskElt(3), 3);
3541 }
3542
3543 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3544 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3545 /// <2, 3, 2, 3>
3546 bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3547   EVT VT = N->getValueType(0);
3548   unsigned NumElems = VT.getVectorNumElements();
3549
3550   if (VT.getSizeInBits() != 128)
3551     return false;
3552
3553   if (NumElems != 4)
3554     return false;
3555
3556   return isUndefOrEqual(N->getMaskElt(0), 2) &&
3557          isUndefOrEqual(N->getMaskElt(1), 3) &&
3558          isUndefOrEqual(N->getMaskElt(2), 2) &&
3559          isUndefOrEqual(N->getMaskElt(3), 3);
3560 }
3561
3562 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3563 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3564 bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3565   unsigned NumElems = N->getValueType(0).getVectorNumElements();
3566
3567   if (NumElems != 2 && NumElems != 4)
3568     return false;
3569
3570   for (unsigned i = 0; i < NumElems/2; ++i)
3571     if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
3572       return false;
3573
3574   for (unsigned i = NumElems/2; i < NumElems; ++i)
3575     if (!isUndefOrEqual(N->getMaskElt(i), i))
3576       return false;
3577
3578   return true;
3579 }
3580
3581 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3582 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3583 bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
3584   unsigned NumElems = N->getValueType(0).getVectorNumElements();
3585
3586   if ((NumElems != 2 && NumElems != 4)
3587       || N->getValueType(0).getSizeInBits() > 128)
3588     return false;
3589
3590   for (unsigned i = 0; i < NumElems/2; ++i)
3591     if (!isUndefOrEqual(N->getMaskElt(i), i))
3592       return false;
3593
3594   for (unsigned i = 0; i < NumElems/2; ++i)
3595     if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
3596       return false;
3597
3598   return true;
3599 }
3600
3601 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3602 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3603 static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
3604                          bool HasAVX2, bool V2IsSplat = false) {
3605   int NumElts = VT.getVectorNumElements();
3606
3607   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3608          "Unsupported vector type for unpckh");
3609
3610   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3611       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3612     return false;
3613
3614   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3615   // independently on 128-bit lanes.
3616   unsigned NumLanes = VT.getSizeInBits()/128;
3617   unsigned NumLaneElts = NumElts/NumLanes;
3618
3619   unsigned Start = 0;
3620   unsigned End = NumLaneElts;
3621   for (unsigned s = 0; s < NumLanes; ++s) {
3622     for (unsigned i = Start, j = s * NumLaneElts;
3623          i != End;
3624          i += 2, ++j) {
3625       int BitI  = Mask[i];
3626       int BitI1 = Mask[i+1];
3627       if (!isUndefOrEqual(BitI, j))
3628         return false;
3629       if (V2IsSplat) {
3630         if (!isUndefOrEqual(BitI1, NumElts))
3631           return false;
3632       } else {
3633         if (!isUndefOrEqual(BitI1, j + NumElts))
3634           return false;
3635       }
3636     }
3637     // Process the next 128 bits.
3638     Start += NumLaneElts;
3639     End += NumLaneElts;
3640   }
3641
3642   return true;
3643 }
3644
3645 bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool HasAVX2, bool V2IsSplat) {
3646   SmallVector<int, 8> M;
3647   N->getMask(M);
3648   return ::isUNPCKLMask(M, N->getValueType(0), HasAVX2, V2IsSplat);
3649 }
3650
3651 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3652 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3653 static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
3654                          bool HasAVX2, bool V2IsSplat = false) {
3655   int NumElts = VT.getVectorNumElements();
3656
3657   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3658          "Unsupported vector type for unpckh");
3659
3660   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8 &&
3661       (!HasAVX2 || (NumElts != 16 && NumElts != 32)))
3662     return false;
3663
3664   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3665   // independently on 128-bit lanes.
3666   unsigned NumLanes = VT.getSizeInBits()/128;
3667   unsigned NumLaneElts = NumElts/NumLanes;
3668
3669   unsigned Start = 0;
3670   unsigned End = NumLaneElts;
3671   for (unsigned l = 0; l != NumLanes; ++l) {
3672     for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3673                              i != End; i += 2, ++j) {
3674       int BitI  = Mask[i];
3675       int BitI1 = Mask[i+1];
3676       if (!isUndefOrEqual(BitI, j))
3677         return false;
3678       if (V2IsSplat) {
3679         if (isUndefOrEqual(BitI1, NumElts))
3680           return false;
3681       } else {
3682         if (!isUndefOrEqual(BitI1, j+NumElts))
3683           return false;
3684       }
3685     }
3686     // Process the next 128 bits.
3687     Start += NumLaneElts;
3688     End += NumLaneElts;
3689   }
3690   return true;
3691 }
3692
3693 bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool HasAVX2, bool V2IsSplat) {
3694   SmallVector<int, 8> M;
3695   N->getMask(M);
3696   return ::isUNPCKHMask(M, N->getValueType(0), HasAVX2, V2IsSplat);
3697 }
3698
3699 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3700 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3701 /// <0, 0, 1, 1>
3702 static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
3703   int NumElems = VT.getVectorNumElements();
3704   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3705     return false;
3706
3707   // For 256-bit i64/f64, use MOVDDUPY instead, so reject the matching pattern
3708   // FIXME: Need a better way to get rid of this, there's no latency difference
3709   // between UNPCKLPD and MOVDDUP, the later should always be checked first and
3710   // the former later. We should also remove the "_undef" special mask.
3711   if (NumElems == 4 && VT.getSizeInBits() == 256)
3712     return false;
3713
3714   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3715   // independently on 128-bit lanes.
3716   unsigned NumLanes = VT.getSizeInBits() / 128;
3717   unsigned NumLaneElts = NumElems / NumLanes;
3718
3719   for (unsigned s = 0; s < NumLanes; ++s) {
3720     for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3721          i != NumLaneElts * (s + 1);
3722          i += 2, ++j) {
3723       int BitI  = Mask[i];
3724       int BitI1 = Mask[i+1];
3725
3726       if (!isUndefOrEqual(BitI, j))
3727         return false;
3728       if (!isUndefOrEqual(BitI1, j))
3729         return false;
3730     }
3731   }
3732
3733   return true;
3734 }
3735
3736 bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3737   SmallVector<int, 8> M;
3738   N->getMask(M);
3739   return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3740 }
3741
3742 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3743 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3744 /// <2, 2, 3, 3>
3745 static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
3746   int NumElems = VT.getVectorNumElements();
3747   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3748     return false;
3749
3750   for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3751     int BitI  = Mask[i];
3752     int BitI1 = Mask[i+1];
3753     if (!isUndefOrEqual(BitI, j))
3754       return false;
3755     if (!isUndefOrEqual(BitI1, j))
3756       return false;
3757   }
3758   return true;
3759 }
3760
3761 bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3762   SmallVector<int, 8> M;
3763   N->getMask(M);
3764   return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3765 }
3766
3767 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3768 /// specifies a shuffle of elements that is suitable for input to MOVSS,
3769 /// MOVSD, and MOVD, i.e. setting the lowest element.
3770 static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3771   if (VT.getVectorElementType().getSizeInBits() < 32)
3772     return false;
3773
3774   int NumElts = VT.getVectorNumElements();
3775
3776   if (!isUndefOrEqual(Mask[0], NumElts))
3777     return false;
3778
3779   for (int i = 1; i < NumElts; ++i)
3780     if (!isUndefOrEqual(Mask[i], i))
3781       return false;
3782
3783   return true;
3784 }
3785
3786 bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3787   SmallVector<int, 8> M;
3788   N->getMask(M);
3789   return ::isMOVLMask(M, N->getValueType(0));
3790 }
3791
3792 /// isVPERM2F128Mask - Match 256-bit shuffles where the elements are considered
3793 /// as permutations between 128-bit chunks or halves. As an example: this
3794 /// shuffle bellow:
3795 ///   vector_shuffle <4, 5, 6, 7, 12, 13, 14, 15>
3796 /// The first half comes from the second half of V1 and the second half from the
3797 /// the second half of V2.
3798 static bool isVPERM2F128Mask(const SmallVectorImpl<int> &Mask, EVT VT,
3799                              const X86Subtarget *Subtarget) {
3800   if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256)
3801     return false;
3802
3803   // The shuffle result is divided into half A and half B. In total the two
3804   // sources have 4 halves, namely: C, D, E, F. The final values of A and
3805   // B must come from C, D, E or F.
3806   int HalfSize = VT.getVectorNumElements()/2;
3807   bool MatchA = false, MatchB = false;
3808
3809   // Check if A comes from one of C, D, E, F.
3810   for (int Half = 0; Half < 4; ++Half) {
3811     if (isSequentialOrUndefInRange(Mask, 0, HalfSize, Half*HalfSize)) {
3812       MatchA = true;
3813       break;
3814     }
3815   }
3816
3817   // Check if B comes from one of C, D, E, F.
3818   for (int Half = 0; Half < 4; ++Half) {
3819     if (isSequentialOrUndefInRange(Mask, HalfSize, HalfSize, Half*HalfSize)) {
3820       MatchB = true;
3821       break;
3822     }
3823   }
3824
3825   return MatchA && MatchB;
3826 }
3827
3828 /// getShuffleVPERM2F128Immediate - Return the appropriate immediate to shuffle
3829 /// the specified VECTOR_MASK mask with VPERM2F128 instructions.
3830 static unsigned getShuffleVPERM2F128Immediate(SDNode *N) {
3831   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3832   EVT VT = SVOp->getValueType(0);
3833
3834   int HalfSize = VT.getVectorNumElements()/2;
3835
3836   int FstHalf = 0, SndHalf = 0;
3837   for (int i = 0; i < HalfSize; ++i) {
3838     if (SVOp->getMaskElt(i) > 0) {
3839       FstHalf = SVOp->getMaskElt(i)/HalfSize;
3840       break;
3841     }
3842   }
3843   for (int i = HalfSize; i < HalfSize*2; ++i) {
3844     if (SVOp->getMaskElt(i) > 0) {
3845       SndHalf = SVOp->getMaskElt(i)/HalfSize;
3846       break;
3847     }
3848   }
3849
3850   return (FstHalf | (SndHalf << 4));
3851 }
3852
3853 /// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3854 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3855 /// Note that VPERMIL mask matching is different depending whether theunderlying
3856 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3857 /// to the same elements of the low, but to the higher half of the source.
3858 /// In VPERMILPD the two lanes could be shuffled independently of each other
3859 /// with the same restriction that lanes can't be crossed.
3860 static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3861                             const X86Subtarget *Subtarget) {
3862   int NumElts = VT.getVectorNumElements();
3863   int NumLanes = VT.getSizeInBits()/128;
3864
3865   if (!Subtarget->hasAVX())
3866     return false;
3867
3868   // Only match 256-bit with 64-bit types
3869   if (VT.getSizeInBits() != 256 || NumElts != 4)
3870     return false;
3871
3872   // The mask on the high lane is independent of the low. Both can match
3873   // any element in inside its own lane, but can't cross.
3874   int LaneSize = NumElts/NumLanes;
3875   for (int l = 0; l < NumLanes; ++l)
3876     for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3877       int LaneStart = l*LaneSize;
3878       if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3879         return false;
3880     }
3881
3882   return true;
3883 }
3884
3885 /// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3886 /// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3887 /// Note that VPERMIL mask matching is different depending whether theunderlying
3888 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3889 /// to the same elements of the low, but to the higher half of the source.
3890 /// In VPERMILPD the two lanes could be shuffled independently of each other
3891 /// with the same restriction that lanes can't be crossed.
3892 static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3893                             const X86Subtarget *Subtarget) {
3894   unsigned NumElts = VT.getVectorNumElements();
3895   unsigned NumLanes = VT.getSizeInBits()/128;
3896
3897   if (!Subtarget->hasAVX())
3898     return false;
3899
3900   // Only match 256-bit with 32-bit types
3901   if (VT.getSizeInBits() != 256 || NumElts != 8)
3902     return false;
3903
3904   // The mask on the high lane should be the same as the low. Actually,
3905   // they can differ if any of the corresponding index in a lane is undef
3906   // and the other stays in range.
3907   int LaneSize = NumElts/NumLanes;
3908   for (int i = 0; i < LaneSize; ++i) {
3909     int HighElt = i+LaneSize;
3910     bool HighValid = isUndefOrInRange(Mask[HighElt], LaneSize, NumElts);
3911     bool LowValid = isUndefOrInRange(Mask[i], 0, LaneSize);
3912
3913     if (!HighValid || !LowValid)
3914       return false;
3915     if (Mask[i] < 0 || Mask[HighElt] < 0)
3916       continue;
3917     if (Mask[HighElt]-Mask[i] != LaneSize)
3918       return false;
3919   }
3920
3921   return true;
3922 }
3923
3924 /// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3925 /// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3926 static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
3927   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3928   EVT VT = SVOp->getValueType(0);
3929
3930   int NumElts = VT.getVectorNumElements();
3931   int NumLanes = VT.getSizeInBits()/128;
3932   int LaneSize = NumElts/NumLanes;
3933
3934   // Although the mask is equal for both lanes do it twice to get the cases
3935   // where a mask will match because the same mask element is undef on the
3936   // first half but valid on the second. This would get pathological cases
3937   // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
3938   unsigned Mask = 0;
3939   for (int l = 0; l < NumLanes; ++l) {
3940     for (int i = 0; i < LaneSize; ++i) {
3941       int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3942       if (MaskElt < 0)
3943         continue;
3944       if (MaskElt >= LaneSize)
3945         MaskElt -= LaneSize;
3946       Mask |= MaskElt << (i*2);
3947     }
3948   }
3949
3950   return Mask;
3951 }
3952
3953 /// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3954 /// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3955 static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3956   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3957   EVT VT = SVOp->getValueType(0);
3958
3959   int NumElts = VT.getVectorNumElements();
3960   int NumLanes = VT.getSizeInBits()/128;
3961
3962   unsigned Mask = 0;
3963   int LaneSize = NumElts/NumLanes;
3964   for (int l = 0; l < NumLanes; ++l)
3965     for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3966       int MaskElt = SVOp->getMaskElt(i);
3967       if (MaskElt < 0)
3968         continue;
3969       Mask |= (MaskElt-l*LaneSize) << i;
3970     }
3971
3972   return Mask;
3973 }
3974
3975 /// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3976 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
3977 /// element of vector 2 and the other elements to come from vector 1 in order.
3978 static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
3979                                bool V2IsSplat = false, bool V2IsUndef = false) {
3980   int NumOps = VT.getVectorNumElements();
3981   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
3982     return false;
3983
3984   if (!isUndefOrEqual(Mask[0], 0))
3985     return false;
3986
3987   for (int i = 1; i < NumOps; ++i)
3988     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3989           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3990           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
3991       return false;
3992
3993   return true;
3994 }
3995
3996 static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
3997                            bool V2IsUndef = false) {
3998   SmallVector<int, 8> M;
3999   N->getMask(M);
4000   return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
4001 }
4002
4003 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4004 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
4005 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
4006 bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
4007                          const X86Subtarget *Subtarget) {
4008   if (!Subtarget->hasSSE3orAVX())
4009     return false;
4010
4011   // The second vector must be undef
4012   if (N->getOperand(1).getOpcode() != ISD::UNDEF)
4013     return false;
4014
4015   EVT VT = N->getValueType(0);
4016   unsigned NumElems = VT.getVectorNumElements();
4017
4018   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
4019       (VT.getSizeInBits() == 256 && NumElems != 8))
4020     return false;
4021
4022   // "i+1" is the value the indexed mask element must have
4023   for (unsigned i = 0; i < NumElems; i += 2)
4024     if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
4025         !isUndefOrEqual(N->getMaskElt(i+1), i+1))
4026       return false;
4027
4028   return true;
4029 }
4030
4031 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4032 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
4033 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
4034 bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
4035                          const X86Subtarget *Subtarget) {
4036   if (!Subtarget->hasSSE3orAVX())
4037     return false;
4038
4039   // The second vector must be undef
4040   if (N->getOperand(1).getOpcode() != ISD::UNDEF)
4041     return false;
4042
4043   EVT VT = N->getValueType(0);
4044   unsigned NumElems = VT.getVectorNumElements();
4045
4046   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
4047       (VT.getSizeInBits() == 256 && NumElems != 8))
4048     return false;
4049
4050   // "i" is the value the indexed mask element must have
4051   for (unsigned i = 0; i < NumElems; i += 2)
4052     if (!isUndefOrEqual(N->getMaskElt(i), i) ||
4053         !isUndefOrEqual(N->getMaskElt(i+1), i))
4054       return false;
4055
4056   return true;
4057 }
4058
4059 /// isMOVDDUPYMask - Return true if the specified VECTOR_SHUFFLE operand
4060 /// specifies a shuffle of elements that is suitable for input to 256-bit
4061 /// version of MOVDDUP.
4062 static bool isMOVDDUPYMask(ShuffleVectorSDNode *N,
4063                            const X86Subtarget *Subtarget) {
4064   EVT VT = N->getValueType(0);
4065   int NumElts = VT.getVectorNumElements();
4066   bool V2IsUndef = N->getOperand(1).getOpcode() == ISD::UNDEF;
4067
4068   if (!Subtarget->hasAVX() || VT.getSizeInBits() != 256 ||
4069       !V2IsUndef || NumElts != 4)
4070     return false;
4071
4072   for (int i = 0; i != NumElts/2; ++i)
4073     if (!isUndefOrEqual(N->getMaskElt(i), 0))
4074       return false;
4075   for (int i = NumElts/2; i != NumElts; ++i)
4076     if (!isUndefOrEqual(N->getMaskElt(i), NumElts/2))
4077       return false;
4078   return true;
4079 }
4080
4081 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
4082 /// specifies a shuffle of elements that is suitable for input to 128-bit
4083 /// version of MOVDDUP.
4084 bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
4085   EVT VT = N->getValueType(0);
4086
4087   if (VT.getSizeInBits() != 128)
4088     return false;
4089
4090   int e = VT.getVectorNumElements() / 2;
4091   for (int i = 0; i < e; ++i)
4092     if (!isUndefOrEqual(N->getMaskElt(i), i))
4093       return false;
4094   for (int i = 0; i < e; ++i)
4095     if (!isUndefOrEqual(N->getMaskElt(e+i), i))
4096       return false;
4097   return true;
4098 }
4099
4100 /// isVEXTRACTF128Index - Return true if the specified
4101 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
4102 /// suitable for input to VEXTRACTF128.
4103 bool X86::isVEXTRACTF128Index(SDNode *N) {
4104   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4105     return false;
4106
4107   // The index should be aligned on a 128-bit boundary.
4108   uint64_t Index =
4109     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4110
4111   unsigned VL = N->getValueType(0).getVectorNumElements();
4112   unsigned VBits = N->getValueType(0).getSizeInBits();
4113   unsigned ElSize = VBits / VL;
4114   bool Result = (Index * ElSize) % 128 == 0;
4115
4116   return Result;
4117 }
4118
4119 /// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
4120 /// operand specifies a subvector insert that is suitable for input to
4121 /// VINSERTF128.
4122 bool X86::isVINSERTF128Index(SDNode *N) {
4123   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4124     return false;
4125
4126   // The index should be aligned on a 128-bit boundary.
4127   uint64_t Index =
4128     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4129
4130   unsigned VL = N->getValueType(0).getVectorNumElements();
4131   unsigned VBits = N->getValueType(0).getSizeInBits();
4132   unsigned ElSize = VBits / VL;
4133   bool Result = (Index * ElSize) % 128 == 0;
4134
4135   return Result;
4136 }
4137
4138 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
4139 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
4140 unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
4141   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4142   int NumOperands = SVOp->getValueType(0).getVectorNumElements();
4143
4144   unsigned Shift = (NumOperands == 4) ? 2 : 1;
4145   unsigned Mask = 0;
4146   for (int i = 0; i < NumOperands; ++i) {
4147     int Val = SVOp->getMaskElt(NumOperands-i-1);
4148     if (Val < 0) Val = 0;
4149     if (Val >= NumOperands) Val -= NumOperands;
4150     Mask |= Val;
4151     if (i != NumOperands - 1)
4152       Mask <<= Shift;
4153   }
4154   return Mask;
4155 }
4156
4157 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
4158 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
4159 unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
4160   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4161   unsigned Mask = 0;
4162   // 8 nodes, but we only care about the last 4.
4163   for (unsigned i = 7; i >= 4; --i) {
4164     int Val = SVOp->getMaskElt(i);
4165     if (Val >= 0)
4166       Mask |= (Val - 4);
4167     if (i != 4)
4168       Mask <<= 2;
4169   }
4170   return Mask;
4171 }
4172
4173 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
4174 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
4175 unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
4176   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4177   unsigned Mask = 0;
4178   // 8 nodes, but we only care about the first 4.
4179   for (int i = 3; i >= 0; --i) {
4180     int Val = SVOp->getMaskElt(i);
4181     if (Val >= 0)
4182       Mask |= Val;
4183     if (i != 0)
4184       Mask <<= 2;
4185   }
4186   return Mask;
4187 }
4188
4189 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
4190 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
4191 unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
4192   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
4193   EVT VVT = N->getValueType(0);
4194   unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
4195   int Val = 0;
4196
4197   unsigned i, e;
4198   for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
4199     Val = SVOp->getMaskElt(i);
4200     if (Val >= 0)
4201       break;
4202   }
4203   assert(Val - i > 0 && "PALIGNR imm should be positive");
4204   return (Val - i) * EltSize;
4205 }
4206
4207 /// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
4208 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
4209 /// instructions.
4210 unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
4211   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
4212     llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
4213
4214   uint64_t Index =
4215     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
4216
4217   EVT VecVT = N->getOperand(0).getValueType();
4218   EVT ElVT = VecVT.getVectorElementType();
4219
4220   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4221   return Index / NumElemsPerChunk;
4222 }
4223
4224 /// getInsertVINSERTF128Immediate - Return the appropriate immediate
4225 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
4226 /// instructions.
4227 unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
4228   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
4229     llvm_unreachable("Illegal insert subvector for VINSERTF128");
4230
4231   uint64_t Index =
4232     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
4233
4234   EVT VecVT = N->getValueType(0);
4235   EVT ElVT = VecVT.getVectorElementType();
4236
4237   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
4238   return Index / NumElemsPerChunk;
4239 }
4240
4241 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
4242 /// constant +0.0.
4243 bool X86::isZeroNode(SDValue Elt) {
4244   return ((isa<ConstantSDNode>(Elt) &&
4245            cast<ConstantSDNode>(Elt)->isNullValue()) ||
4246           (isa<ConstantFPSDNode>(Elt) &&
4247            cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
4248 }
4249
4250 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
4251 /// their permute mask.
4252 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
4253                                     SelectionDAG &DAG) {
4254   EVT VT = SVOp->getValueType(0);
4255   unsigned NumElems = VT.getVectorNumElements();
4256   SmallVector<int, 8> MaskVec;
4257
4258   for (unsigned i = 0; i != NumElems; ++i) {
4259     int idx = SVOp->getMaskElt(i);
4260     if (idx < 0)
4261       MaskVec.push_back(idx);
4262     else if (idx < (int)NumElems)
4263       MaskVec.push_back(idx + NumElems);
4264     else
4265       MaskVec.push_back(idx - NumElems);
4266   }
4267   return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
4268                               SVOp->getOperand(0), &MaskVec[0]);
4269 }
4270
4271 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
4272 /// match movhlps. The lower half elements should come from upper half of
4273 /// V1 (and in order), and the upper half elements should come from the upper
4274 /// half of V2 (and in order).
4275 static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
4276   EVT VT = Op->getValueType(0);
4277   if (VT.getSizeInBits() != 128)
4278     return false;
4279   if (VT.getVectorNumElements() != 4)
4280     return false;
4281   for (unsigned i = 0, e = 2; i != e; ++i)
4282     if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
4283       return false;
4284   for (unsigned i = 2; i != 4; ++i)
4285     if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
4286       return false;
4287   return true;
4288 }
4289
4290 /// isScalarLoadToVector - Returns true if the node is a scalar load that
4291 /// is promoted to a vector. It also returns the LoadSDNode by reference if
4292 /// required.
4293 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
4294   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
4295     return false;
4296   N = N->getOperand(0).getNode();
4297   if (!ISD::isNON_EXTLoad(N))
4298     return false;
4299   if (LD)
4300     *LD = cast<LoadSDNode>(N);
4301   return true;
4302 }
4303
4304 // Test whether the given value is a vector value which will be legalized
4305 // into a load.
4306 static bool WillBeConstantPoolLoad(SDNode *N) {
4307   if (N->getOpcode() != ISD::BUILD_VECTOR)
4308     return false;
4309
4310   // Check for any non-constant elements.
4311   for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
4312     switch (N->getOperand(i).getNode()->getOpcode()) {
4313     case ISD::UNDEF:
4314     case ISD::ConstantFP:
4315     case ISD::Constant:
4316       break;
4317     default:
4318       return false;
4319     }
4320
4321   // Vectors of all-zeros and all-ones are materialized with special
4322   // instructions rather than being loaded.
4323   return !ISD::isBuildVectorAllZeros(N) &&
4324          !ISD::isBuildVectorAllOnes(N);
4325 }
4326
4327 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
4328 /// match movlp{s|d}. The lower half elements should come from lower half of
4329 /// V1 (and in order), and the upper half elements should come from the upper
4330 /// half of V2 (and in order). And since V1 will become the source of the
4331 /// MOVLP, it must be either a vector load or a scalar load to vector.
4332 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
4333                                ShuffleVectorSDNode *Op) {
4334   EVT VT = Op->getValueType(0);
4335   if (VT.getSizeInBits() != 128)
4336     return false;
4337
4338   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
4339     return false;
4340   // Is V2 is a vector load, don't do this transformation. We will try to use
4341   // load folding shufps op.
4342   if (ISD::isNON_EXTLoad(V2) || WillBeConstantPoolLoad(V2))
4343     return false;
4344
4345   unsigned NumElems = VT.getVectorNumElements();
4346
4347   if (NumElems != 2 && NumElems != 4)
4348     return false;
4349   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
4350     if (!isUndefOrEqual(Op->getMaskElt(i), i))
4351       return false;
4352   for (unsigned i = NumElems/2; i != NumElems; ++i)
4353     if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
4354       return false;
4355   return true;
4356 }
4357
4358 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
4359 /// all the same.
4360 static bool isSplatVector(SDNode *N) {
4361   if (N->getOpcode() != ISD::BUILD_VECTOR)
4362     return false;
4363
4364   SDValue SplatValue = N->getOperand(0);
4365   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
4366     if (N->getOperand(i) != SplatValue)
4367       return false;
4368   return true;
4369 }
4370
4371 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
4372 /// to an zero vector.
4373 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
4374 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
4375   SDValue V1 = N->getOperand(0);
4376   SDValue V2 = N->getOperand(1);
4377   unsigned NumElems = N->getValueType(0).getVectorNumElements();
4378   for (unsigned i = 0; i != NumElems; ++i) {
4379     int Idx = N->getMaskElt(i);
4380     if (Idx >= (int)NumElems) {
4381       unsigned Opc = V2.getOpcode();
4382       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
4383         continue;
4384       if (Opc != ISD::BUILD_VECTOR ||
4385           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
4386         return false;
4387     } else if (Idx >= 0) {
4388       unsigned Opc = V1.getOpcode();
4389       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
4390         continue;
4391       if (Opc != ISD::BUILD_VECTOR ||
4392           !X86::isZeroNode(V1.getOperand(Idx)))
4393         return false;
4394     }
4395   }
4396   return true;
4397 }
4398
4399 /// getZeroVector - Returns a vector of specified type with all zero elements.
4400 ///
4401 static SDValue getZeroVector(EVT VT, bool HasXMMInt, SelectionDAG &DAG,
4402                              DebugLoc dl) {
4403   assert(VT.isVector() && "Expected a vector type");
4404
4405   // Always build SSE zero vectors as <4 x i32> bitcasted
4406   // to their dest type. This ensures they get CSE'd.
4407   SDValue Vec;
4408   if (VT.getSizeInBits() == 128) {  // SSE
4409     if (HasXMMInt) {  // SSE2
4410       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
4411       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4412     } else { // SSE1
4413       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4414       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
4415     }
4416   } else if (VT.getSizeInBits() == 256) { // AVX
4417     // 256-bit logic and arithmetic instructions in AVX are
4418     // all floating-point, no support for integer ops. Default
4419     // to emitting fp zeroed vectors then.
4420     SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
4421     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4422     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
4423   }
4424   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4425 }
4426
4427 /// getOnesVector - Returns a vector of specified type with all bits set.
4428 /// Always build ones vectors as <4 x i32> or <8 x i32>. For 256-bit types with
4429 /// no AVX2 supprt, use two <4 x i32> inserted in a <8 x i32> appropriately.
4430 /// Then bitcast to their original type, ensuring they get CSE'd.
4431 static SDValue getOnesVector(EVT VT, bool HasAVX2, SelectionDAG &DAG,
4432                              DebugLoc dl) {
4433   assert(VT.isVector() && "Expected a vector type");
4434   assert((VT.is128BitVector() || VT.is256BitVector())
4435          && "Expected a 128-bit or 256-bit vector type");
4436
4437   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
4438   SDValue Vec;
4439   if (VT.getSizeInBits() == 256) {
4440     if (HasAVX2) { // AVX2
4441       SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
4442       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8i32, Ops, 8);
4443     } else { // AVX
4444       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4445       SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
4446                                 Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
4447       Vec = Insert128BitVector(InsV, Vec,
4448                     DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
4449     }
4450   } else {
4451     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
4452   }
4453
4454   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
4455 }
4456
4457 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
4458 /// that point to V2 points to its first element.
4459 static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
4460   EVT VT = SVOp->getValueType(0);
4461   unsigned NumElems = VT.getVectorNumElements();
4462
4463   bool Changed = false;
4464   SmallVector<int, 8> MaskVec;
4465   SVOp->getMask(MaskVec);
4466
4467   for (unsigned i = 0; i != NumElems; ++i) {
4468     if (MaskVec[i] > (int)NumElems) {
4469       MaskVec[i] = NumElems;
4470       Changed = true;
4471     }
4472   }
4473   if (Changed)
4474     return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
4475                                 SVOp->getOperand(1), &MaskVec[0]);
4476   return SDValue(SVOp, 0);
4477 }
4478
4479 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4480 /// operation of specified width.
4481 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4482                        SDValue V2) {
4483   unsigned NumElems = VT.getVectorNumElements();
4484   SmallVector<int, 8> Mask;
4485   Mask.push_back(NumElems);
4486   for (unsigned i = 1; i != NumElems; ++i)
4487     Mask.push_back(i);
4488   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4489 }
4490
4491 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4492 static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4493                           SDValue V2) {
4494   unsigned NumElems = VT.getVectorNumElements();
4495   SmallVector<int, 8> Mask;
4496   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4497     Mask.push_back(i);
4498     Mask.push_back(i + NumElems);
4499   }
4500   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4501 }
4502
4503 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4504 static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4505                           SDValue V2) {
4506   unsigned NumElems = VT.getVectorNumElements();
4507   unsigned Half = NumElems/2;
4508   SmallVector<int, 8> Mask;
4509   for (unsigned i = 0; i != Half; ++i) {
4510     Mask.push_back(i + Half);
4511     Mask.push_back(i + NumElems + Half);
4512   }
4513   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4514 }
4515
4516 // PromoteSplati8i16 - All i16 and i8 vector types can't be used directly by
4517 // a generic shuffle instruction because the target has no such instructions.
4518 // Generate shuffles which repeat i16 and i8 several times until they can be
4519 // represented by v4f32 and then be manipulated by target suported shuffles.
4520 static SDValue PromoteSplati8i16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4521   EVT VT = V.getValueType();
4522   int NumElems = VT.getVectorNumElements();
4523   DebugLoc dl = V.getDebugLoc();
4524
4525   while (NumElems > 4) {
4526     if (EltNo < NumElems/2) {
4527       V = getUnpackl(DAG, dl, VT, V, V);
4528     } else {
4529       V = getUnpackh(DAG, dl, VT, V, V);
4530       EltNo -= NumElems/2;
4531     }
4532     NumElems >>= 1;
4533   }
4534   return V;
4535 }
4536
4537 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4538 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4539   EVT VT = V.getValueType();
4540   DebugLoc dl = V.getDebugLoc();
4541   assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4542          && "Vector size not supported");
4543
4544   if (VT.getSizeInBits() == 128) {
4545     V = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V);
4546     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4547     V = DAG.getVectorShuffle(MVT::v4f32, dl, V, DAG.getUNDEF(MVT::v4f32),
4548                              &SplatMask[0]);
4549   } else {
4550     // To use VPERMILPS to splat scalars, the second half of indicies must
4551     // refer to the higher part, which is a duplication of the lower one,
4552     // because VPERMILPS can only handle in-lane permutations.
4553     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4554                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4555
4556     V = DAG.getNode(ISD::BITCAST, dl, MVT::v8f32, V);
4557     V = DAG.getVectorShuffle(MVT::v8f32, dl, V, DAG.getUNDEF(MVT::v8f32),
4558                              &SplatMask[0]);
4559   }
4560
4561   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4562 }
4563
4564 /// PromoteSplat - Splat is promoted to target supported vector shuffles.
4565 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4566   EVT SrcVT = SV->getValueType(0);
4567   SDValue V1 = SV->getOperand(0);
4568   DebugLoc dl = SV->getDebugLoc();
4569
4570   int EltNo = SV->getSplatIndex();
4571   int NumElems = SrcVT.getVectorNumElements();
4572   unsigned Size = SrcVT.getSizeInBits();
4573
4574   assert(((Size == 128 && NumElems > 4) || Size == 256) &&
4575           "Unknown how to promote splat for type");
4576
4577   // Extract the 128-bit part containing the splat element and update
4578   // the splat element index when it refers to the higher register.
4579   if (Size == 256) {
4580     unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4581     V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4582     if (Idx > 0)
4583       EltNo -= NumElems/2;
4584   }
4585
4586   // All i16 and i8 vector types can't be used directly by a generic shuffle
4587   // instruction because the target has no such instruction. Generate shuffles
4588   // which repeat i16 and i8 several times until they fit in i32, and then can
4589   // be manipulated by target suported shuffles.
4590   EVT EltVT = SrcVT.getVectorElementType();
4591   if (EltVT == MVT::i8 || EltVT == MVT::i16)
4592     V1 = PromoteSplati8i16(V1, DAG, EltNo);
4593
4594   // Recreate the 256-bit vector and place the same 128-bit vector
4595   // into the low and high part. This is necessary because we want
4596   // to use VPERM* to shuffle the vectors
4597   if (Size == 256) {
4598     SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4599                          DAG.getConstant(0, MVT::i32), DAG, dl);
4600     V1 = Insert128BitVector(InsV, V1,
4601                DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4602   }
4603
4604   return getLegalSplat(DAG, V1, EltNo);
4605 }
4606
4607 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4608 /// vector of zero or undef vector.  This produces a shuffle where the low
4609 /// element of V2 is swizzled into the zero/undef vector, landing at element
4610 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4611 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4612                                            bool isZero, bool HasXMMInt,
4613                                            SelectionDAG &DAG) {
4614   EVT VT = V2.getValueType();
4615   SDValue V1 = isZero
4616     ? getZeroVector(VT, HasXMMInt, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4617   unsigned NumElems = VT.getVectorNumElements();
4618   SmallVector<int, 16> MaskVec;
4619   for (unsigned i = 0; i != NumElems; ++i)
4620     // If this is the insertion idx, put the low elt of V2 here.
4621     MaskVec.push_back(i == Idx ? NumElems : i);
4622   return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
4623 }
4624
4625 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4626 /// element of the result of the vector shuffle.
4627 static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4628                                    unsigned Depth) {
4629   if (Depth == 6)
4630     return SDValue();  // Limit search depth.
4631
4632   SDValue V = SDValue(N, 0);
4633   EVT VT = V.getValueType();
4634   unsigned Opcode = V.getOpcode();
4635
4636   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4637   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4638     Index = SV->getMaskElt(Index);
4639
4640     if (Index < 0)
4641       return DAG.getUNDEF(VT.getVectorElementType());
4642
4643     int NumElems = VT.getVectorNumElements();
4644     SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
4645     return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
4646   }
4647
4648   // Recurse into target specific vector shuffles to find scalars.
4649   if (isTargetShuffle(Opcode)) {
4650     int NumElems = VT.getVectorNumElements();
4651     SmallVector<unsigned, 16> ShuffleMask;
4652     SDValue ImmN;
4653
4654     switch(Opcode) {
4655     case X86ISD::SHUFPS:
4656     case X86ISD::SHUFPD:
4657       ImmN = N->getOperand(N->getNumOperands()-1);
4658       DecodeSHUFPSMask(NumElems,
4659                        cast<ConstantSDNode>(ImmN)->getZExtValue(),
4660                        ShuffleMask);
4661       break;
4662     case X86ISD::PUNPCKHBW:
4663     case X86ISD::PUNPCKHWD:
4664     case X86ISD::PUNPCKHDQ:
4665     case X86ISD::PUNPCKHQDQ:
4666     case X86ISD::VPUNPCKHBWY:
4667     case X86ISD::VPUNPCKHWDY:
4668     case X86ISD::VPUNPCKHDQY:
4669     case X86ISD::VPUNPCKHQDQY:
4670       DecodePUNPCKHMask(NumElems, ShuffleMask);
4671       break;
4672     case X86ISD::UNPCKHPS:
4673     case X86ISD::UNPCKHPD:
4674     case X86ISD::VUNPCKHPSY:
4675     case X86ISD::VUNPCKHPDY:
4676       DecodeUNPCKHPMask(VT, ShuffleMask);
4677       break;
4678     case X86ISD::PUNPCKLBW:
4679     case X86ISD::PUNPCKLWD:
4680     case X86ISD::PUNPCKLDQ:
4681     case X86ISD::PUNPCKLQDQ:
4682     case X86ISD::VPUNPCKLBWY:
4683     case X86ISD::VPUNPCKLWDY:
4684     case X86ISD::VPUNPCKLDQY:
4685     case X86ISD::VPUNPCKLQDQY:
4686       DecodePUNPCKLMask(VT, ShuffleMask);
4687       break;
4688     case X86ISD::UNPCKLPS:
4689     case X86ISD::UNPCKLPD:
4690     case X86ISD::VUNPCKLPSY:
4691     case X86ISD::VUNPCKLPDY:
4692       DecodeUNPCKLPMask(VT, ShuffleMask);
4693       break;
4694     case X86ISD::MOVHLPS:
4695       DecodeMOVHLPSMask(NumElems, ShuffleMask);
4696       break;
4697     case X86ISD::MOVLHPS:
4698       DecodeMOVLHPSMask(NumElems, ShuffleMask);
4699       break;
4700     case X86ISD::PSHUFD:
4701       ImmN = N->getOperand(N->getNumOperands()-1);
4702       DecodePSHUFMask(NumElems,
4703                       cast<ConstantSDNode>(ImmN)->getZExtValue(),
4704                       ShuffleMask);
4705       break;
4706     case X86ISD::PSHUFHW:
4707       ImmN = N->getOperand(N->getNumOperands()-1);
4708       DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4709                         ShuffleMask);
4710       break;
4711     case X86ISD::PSHUFLW:
4712       ImmN = N->getOperand(N->getNumOperands()-1);
4713       DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4714                         ShuffleMask);
4715       break;
4716     case X86ISD::MOVSS:
4717     case X86ISD::MOVSD: {
4718       // The index 0 always comes from the first element of the second source,
4719       // this is why MOVSS and MOVSD are used in the first place. The other
4720       // elements come from the other positions of the first source vector.
4721       unsigned OpNum = (Index == 0) ? 1 : 0;
4722       return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4723                                  Depth+1);
4724     }
4725     case X86ISD::VPERMILPS:
4726       ImmN = N->getOperand(N->getNumOperands()-1);
4727       DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4728                         ShuffleMask);
4729       break;
4730     case X86ISD::VPERMILPSY:
4731       ImmN = N->getOperand(N->getNumOperands()-1);
4732       DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4733                         ShuffleMask);
4734       break;
4735     case X86ISD::VPERMILPD:
4736       ImmN = N->getOperand(N->getNumOperands()-1);
4737       DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4738                         ShuffleMask);
4739       break;
4740     case X86ISD::VPERMILPDY:
4741       ImmN = N->getOperand(N->getNumOperands()-1);
4742       DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4743                         ShuffleMask);
4744       break;
4745     case X86ISD::VPERM2F128:
4746       ImmN = N->getOperand(N->getNumOperands()-1);
4747       DecodeVPERM2F128Mask(VT, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4748                            ShuffleMask);
4749       break;
4750     case X86ISD::MOVDDUP:
4751     case X86ISD::MOVLHPD:
4752     case X86ISD::MOVLPD:
4753     case X86ISD::MOVLPS:
4754     case X86ISD::MOVSHDUP:
4755     case X86ISD::MOVSLDUP:
4756     case X86ISD::PALIGN:
4757       return SDValue(); // Not yet implemented.
4758     default:
4759       assert(0 && "unknown target shuffle node");
4760       return SDValue();
4761     }
4762
4763     Index = ShuffleMask[Index];
4764     if (Index < 0)
4765       return DAG.getUNDEF(VT.getVectorElementType());
4766
4767     SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4768     return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4769                                Depth+1);
4770   }
4771
4772   // Actual nodes that may contain scalar elements
4773   if (Opcode == ISD::BITCAST) {
4774     V = V.getOperand(0);
4775     EVT SrcVT = V.getValueType();
4776     unsigned NumElems = VT.getVectorNumElements();
4777
4778     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4779       return SDValue();
4780   }
4781
4782   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4783     return (Index == 0) ? V.getOperand(0)
4784                           : DAG.getUNDEF(VT.getVectorElementType());
4785
4786   if (V.getOpcode() == ISD::BUILD_VECTOR)
4787     return V.getOperand(Index);
4788
4789   return SDValue();
4790 }
4791
4792 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
4793 /// shuffle operation which come from a consecutively from a zero. The
4794 /// search can start in two different directions, from left or right.
4795 static
4796 unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4797                                   bool ZerosFromLeft, SelectionDAG &DAG) {
4798   int i = 0;
4799
4800   while (i < NumElems) {
4801     unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
4802     SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
4803     if (!(Elt.getNode() &&
4804          (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4805       break;
4806     ++i;
4807   }
4808
4809   return i;
4810 }
4811
4812 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4813 /// MaskE correspond consecutively to elements from one of the vector operands,
4814 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
4815 static
4816 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4817                               int OpIdx, int NumElems, unsigned &OpNum) {
4818   bool SeenV1 = false;
4819   bool SeenV2 = false;
4820
4821   for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4822     int Idx = SVOp->getMaskElt(i);
4823     // Ignore undef indicies
4824     if (Idx < 0)
4825       continue;
4826
4827     if (Idx < NumElems)
4828       SeenV1 = true;
4829     else
4830       SeenV2 = true;
4831
4832     // Only accept consecutive elements from the same vector
4833     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4834       return false;
4835   }
4836
4837   OpNum = SeenV1 ? 0 : 1;
4838   return true;
4839 }
4840
4841 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4842 /// logical left shift of a vector.
4843 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4844                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4845   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4846   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4847               false /* check zeros from right */, DAG);
4848   unsigned OpSrc;
4849
4850   if (!NumZeros)
4851     return false;
4852
4853   // Considering the elements in the mask that are not consecutive zeros,
4854   // check if they consecutively come from only one of the source vectors.
4855   //
4856   //               V1 = {X, A, B, C}     0
4857   //                         \  \  \    /
4858   //   vector_shuffle V1, V2 <1, 2, 3, X>
4859   //
4860   if (!isShuffleMaskConsecutive(SVOp,
4861             0,                   // Mask Start Index
4862             NumElems-NumZeros-1, // Mask End Index
4863             NumZeros,            // Where to start looking in the src vector
4864             NumElems,            // Number of elements in vector
4865             OpSrc))              // Which source operand ?
4866     return false;
4867
4868   isLeft = false;
4869   ShAmt = NumZeros;
4870   ShVal = SVOp->getOperand(OpSrc);
4871   return true;
4872 }
4873
4874 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4875 /// logical left shift of a vector.
4876 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4877                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4878   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4879   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4880               true /* check zeros from left */, DAG);
4881   unsigned OpSrc;
4882
4883   if (!NumZeros)
4884     return false;
4885
4886   // Considering the elements in the mask that are not consecutive zeros,
4887   // check if they consecutively come from only one of the source vectors.
4888   //
4889   //                           0    { A, B, X, X } = V2
4890   //                          / \    /  /
4891   //   vector_shuffle V1, V2 <X, X, 4, 5>
4892   //
4893   if (!isShuffleMaskConsecutive(SVOp,
4894             NumZeros,     // Mask Start Index
4895             NumElems-1,   // Mask End Index
4896             0,            // Where to start looking in the src vector
4897             NumElems,     // Number of elements in vector
4898             OpSrc))       // Which source operand ?
4899     return false;
4900
4901   isLeft = true;
4902   ShAmt = NumZeros;
4903   ShVal = SVOp->getOperand(OpSrc);
4904   return true;
4905 }
4906
4907 /// isVectorShift - Returns true if the shuffle can be implemented as a
4908 /// logical left or right shift of a vector.
4909 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4910                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4911   // Although the logic below support any bitwidth size, there are no
4912   // shift instructions which handle more than 128-bit vectors.
4913   if (SVOp->getValueType(0).getSizeInBits() > 128)
4914     return false;
4915
4916   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4917       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4918     return true;
4919
4920   return false;
4921 }
4922
4923 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4924 ///
4925 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4926                                        unsigned NumNonZero, unsigned NumZero,
4927                                        SelectionDAG &DAG,
4928                                        const TargetLowering &TLI) {
4929   if (NumNonZero > 8)
4930     return SDValue();
4931
4932   DebugLoc dl = Op.getDebugLoc();
4933   SDValue V(0, 0);
4934   bool First = true;
4935   for (unsigned i = 0; i < 16; ++i) {
4936     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4937     if (ThisIsNonZero && First) {
4938       if (NumZero)
4939         V = getZeroVector(MVT::v8i16, true, DAG, dl);
4940       else
4941         V = DAG.getUNDEF(MVT::v8i16);
4942       First = false;
4943     }
4944
4945     if ((i & 1) != 0) {
4946       SDValue ThisElt(0, 0), LastElt(0, 0);
4947       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4948       if (LastIsNonZero) {
4949         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4950                               MVT::i16, Op.getOperand(i-1));
4951       }
4952       if (ThisIsNonZero) {
4953         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4954         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4955                               ThisElt, DAG.getConstant(8, MVT::i8));
4956         if (LastIsNonZero)
4957           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4958       } else
4959         ThisElt = LastElt;
4960
4961       if (ThisElt.getNode())
4962         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4963                         DAG.getIntPtrConstant(i/2));
4964     }
4965   }
4966
4967   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
4968 }
4969
4970 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
4971 ///
4972 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4973                                      unsigned NumNonZero, unsigned NumZero,
4974                                      SelectionDAG &DAG,
4975                                      const TargetLowering &TLI) {
4976   if (NumNonZero > 4)
4977     return SDValue();
4978
4979   DebugLoc dl = Op.getDebugLoc();
4980   SDValue V(0, 0);
4981   bool First = true;
4982   for (unsigned i = 0; i < 8; ++i) {
4983     bool isNonZero = (NonZeros & (1 << i)) != 0;
4984     if (isNonZero) {
4985       if (First) {
4986         if (NumZero)
4987           V = getZeroVector(MVT::v8i16, true, DAG, dl);
4988         else
4989           V = DAG.getUNDEF(MVT::v8i16);
4990         First = false;
4991       }
4992       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4993                       MVT::v8i16, V, Op.getOperand(i),
4994                       DAG.getIntPtrConstant(i));
4995     }
4996   }
4997
4998   return V;
4999 }
5000
5001 /// getVShift - Return a vector logical shift node.
5002 ///
5003 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
5004                          unsigned NumBits, SelectionDAG &DAG,
5005                          const TargetLowering &TLI, DebugLoc dl) {
5006   assert(VT.getSizeInBits() == 128 && "Unknown type for VShift");
5007   EVT ShVT = MVT::v2i64;
5008   unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
5009   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
5010   return DAG.getNode(ISD::BITCAST, dl, VT,
5011                      DAG.getNode(Opc, dl, ShVT, SrcOp,
5012                              DAG.getConstant(NumBits,
5013                                   TLI.getShiftAmountTy(SrcOp.getValueType()))));
5014 }
5015
5016 SDValue
5017 X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
5018                                           SelectionDAG &DAG) const {
5019
5020   // Check if the scalar load can be widened into a vector load. And if
5021   // the address is "base + cst" see if the cst can be "absorbed" into
5022   // the shuffle mask.
5023   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
5024     SDValue Ptr = LD->getBasePtr();
5025     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
5026       return SDValue();
5027     EVT PVT = LD->getValueType(0);
5028     if (PVT != MVT::i32 && PVT != MVT::f32)
5029       return SDValue();
5030
5031     int FI = -1;
5032     int64_t Offset = 0;
5033     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
5034       FI = FINode->getIndex();
5035       Offset = 0;
5036     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
5037                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
5038       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
5039       Offset = Ptr.getConstantOperandVal(1);
5040       Ptr = Ptr.getOperand(0);
5041     } else {
5042       return SDValue();
5043     }
5044
5045     // FIXME: 256-bit vector instructions don't require a strict alignment,
5046     // improve this code to support it better.
5047     unsigned RequiredAlign = VT.getSizeInBits()/8;
5048     SDValue Chain = LD->getChain();
5049     // Make sure the stack object alignment is at least 16 or 32.
5050     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
5051     if (DAG.InferPtrAlignment(Ptr) < RequiredAlign) {
5052       if (MFI->isFixedObjectIndex(FI)) {
5053         // Can't change the alignment. FIXME: It's possible to compute
5054         // the exact stack offset and reference FI + adjust offset instead.
5055         // If someone *really* cares about this. That's the way to implement it.
5056         return SDValue();
5057       } else {
5058         MFI->setObjectAlignment(FI, RequiredAlign);
5059       }
5060     }
5061
5062     // (Offset % 16 or 32) must be multiple of 4. Then address is then
5063     // Ptr + (Offset & ~15).
5064     if (Offset < 0)
5065       return SDValue();
5066     if ((Offset % RequiredAlign) & 3)
5067       return SDValue();
5068     int64_t StartOffset = Offset & ~(RequiredAlign-1);
5069     if (StartOffset)
5070       Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
5071                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
5072
5073     int EltNo = (Offset - StartOffset) >> 2;
5074     int NumElems = VT.getVectorNumElements();
5075
5076     EVT CanonVT = VT.getSizeInBits() == 128 ? MVT::v4i32 : MVT::v8i32;
5077     EVT NVT = EVT::getVectorVT(*DAG.getContext(), PVT, NumElems);
5078     SDValue V1 = DAG.getLoad(NVT, dl, Chain, Ptr,
5079                              LD->getPointerInfo().getWithOffset(StartOffset),
5080                              false, false, false, 0);
5081
5082     // Canonicalize it to a v4i32 or v8i32 shuffle.
5083     SmallVector<int, 8> Mask;
5084     for (int i = 0; i < NumElems; ++i)
5085       Mask.push_back(EltNo);
5086
5087     V1 = DAG.getNode(ISD::BITCAST, dl, CanonVT, V1);
5088     return DAG.getNode(ISD::BITCAST, dl, NVT,
5089                        DAG.getVectorShuffle(CanonVT, dl, V1,
5090                                             DAG.getUNDEF(CanonVT),&Mask[0]));
5091   }
5092
5093   return SDValue();
5094 }
5095
5096 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
5097 /// vector of type 'VT', see if the elements can be replaced by a single large
5098 /// load which has the same value as a build_vector whose operands are 'elts'.
5099 ///
5100 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
5101 ///
5102 /// FIXME: we'd also like to handle the case where the last elements are zero
5103 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
5104 /// There's even a handy isZeroNode for that purpose.
5105 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
5106                                         DebugLoc &DL, SelectionDAG &DAG) {
5107   EVT EltVT = VT.getVectorElementType();
5108   unsigned NumElems = Elts.size();
5109
5110   LoadSDNode *LDBase = NULL;
5111   unsigned LastLoadedElt = -1U;
5112
5113   // For each element in the initializer, see if we've found a load or an undef.
5114   // If we don't find an initial load element, or later load elements are
5115   // non-consecutive, bail out.
5116   for (unsigned i = 0; i < NumElems; ++i) {
5117     SDValue Elt = Elts[i];
5118
5119     if (!Elt.getNode() ||
5120         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
5121       return SDValue();
5122     if (!LDBase) {
5123       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
5124         return SDValue();
5125       LDBase = cast<LoadSDNode>(Elt.getNode());
5126       LastLoadedElt = i;
5127       continue;
5128     }
5129     if (Elt.getOpcode() == ISD::UNDEF)
5130       continue;
5131
5132     LoadSDNode *LD = cast<LoadSDNode>(Elt);
5133     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
5134       return SDValue();
5135     LastLoadedElt = i;
5136   }
5137
5138   // If we have found an entire vector of loads and undefs, then return a large
5139   // load of the entire vector width starting at the base pointer.  If we found
5140   // consecutive loads for the low half, generate a vzext_load node.
5141   if (LastLoadedElt == NumElems - 1) {
5142     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
5143       return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5144                          LDBase->getPointerInfo(),
5145                          LDBase->isVolatile(), LDBase->isNonTemporal(),
5146                          LDBase->isInvariant(), 0);
5147     return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
5148                        LDBase->getPointerInfo(),
5149                        LDBase->isVolatile(), LDBase->isNonTemporal(),
5150                        LDBase->isInvariant(), LDBase->getAlignment());
5151   } else if (NumElems == 4 && LastLoadedElt == 1 &&
5152              DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
5153     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
5154     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
5155     SDValue ResNode =
5156         DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys, Ops, 2, MVT::i64,
5157                                 LDBase->getPointerInfo(),
5158                                 LDBase->getAlignment(),
5159                                 false/*isVolatile*/, true/*ReadMem*/,
5160                                 false/*WriteMem*/);
5161     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
5162   }
5163   return SDValue();
5164 }
5165
5166 /// isVectorBroadcast - Check if the node chain is suitable to be xformed to
5167 /// a vbroadcast node. We support two patterns:
5168 /// 1. A splat BUILD_VECTOR which uses a single scalar load.
5169 /// 2. A splat shuffle which uses a scalar_to_vector node which comes from
5170 /// a scalar load.
5171 /// The scalar load node is returned when a pattern is found,
5172 /// or SDValue() otherwise.
5173 static SDValue isVectorBroadcast(SDValue &Op, bool hasAVX2) {
5174   EVT VT = Op.getValueType();
5175   SDValue V = Op;
5176
5177   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
5178     V = V.getOperand(0);
5179
5180   //A suspected load to be broadcasted.
5181   SDValue Ld;
5182
5183   switch (V.getOpcode()) {
5184     default:
5185       // Unknown pattern found.
5186       return SDValue();
5187
5188     case ISD::BUILD_VECTOR: {
5189       // The BUILD_VECTOR node must be a splat.
5190       if (!isSplatVector(V.getNode()))
5191         return SDValue();
5192
5193       Ld = V.getOperand(0);
5194
5195       // The suspected load node has several users. Make sure that all
5196       // of its users are from the BUILD_VECTOR node.
5197       if (!Ld->hasNUsesOfValue(VT.getVectorNumElements(), 0))
5198         return SDValue();
5199       break;
5200     }
5201
5202     case ISD::VECTOR_SHUFFLE: {
5203       ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5204
5205       // Shuffles must have a splat mask where the first element is
5206       // broadcasted.
5207       if ((!SVOp->isSplat()) || SVOp->getMaskElt(0) != 0)
5208         return SDValue();
5209
5210       SDValue Sc = Op.getOperand(0);
5211       if (Sc.getOpcode() != ISD::SCALAR_TO_VECTOR)
5212         return SDValue();
5213
5214       Ld = Sc.getOperand(0);
5215
5216       // The scalar_to_vector node and the suspected
5217       // load node must have exactly one user.
5218       if (!Sc.hasOneUse() || !Ld.hasOneUse())
5219         return SDValue();
5220       break;
5221     }
5222   }
5223
5224   // The scalar source must be a normal load.
5225   if (!ISD::isNormalLoad(Ld.getNode()))
5226     return SDValue();
5227
5228   bool Is256 = VT.getSizeInBits() == 256;
5229   bool Is128 = VT.getSizeInBits() == 128;
5230   unsigned ScalarSize = Ld.getValueType().getSizeInBits();
5231
5232   if (hasAVX2) {
5233     // VBroadcast to YMM
5234     if (Is256 && (ScalarSize == 8  || ScalarSize == 16 ||
5235                   ScalarSize == 32 || ScalarSize == 64 ))
5236       return Ld;
5237
5238     // VBroadcast to XMM
5239     if (Is128 && (ScalarSize ==  8 || ScalarSize == 32 ||
5240                   ScalarSize == 16 || ScalarSize == 64 ))
5241       return Ld;
5242   }
5243
5244   // VBroadcast to YMM
5245   if (Is256 && (ScalarSize == 32 || ScalarSize == 64))
5246     return Ld;
5247
5248   // VBroadcast to XMM
5249   if (Is128 && (ScalarSize == 32))
5250     return Ld;
5251
5252
5253   // Unsupported broadcast.
5254   return SDValue();
5255 }
5256
5257 SDValue
5258 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
5259   DebugLoc dl = Op.getDebugLoc();
5260
5261   EVT VT = Op.getValueType();
5262   EVT ExtVT = VT.getVectorElementType();
5263   unsigned NumElems = Op.getNumOperands();
5264
5265   // Vectors containing all zeros can be matched by pxor and xorps later
5266   if (ISD::isBuildVectorAllZeros(Op.getNode())) {
5267     // Canonicalize this to <4 x i32> to 1) ensure the zero vectors are CSE'd
5268     // and 2) ensure that i64 scalars are eliminated on x86-32 hosts.
5269     if (Op.getValueType() == MVT::v4i32 ||
5270         Op.getValueType() == MVT::v8i32)
5271       return Op;
5272
5273     return getZeroVector(Op.getValueType(), Subtarget->hasXMMInt(), DAG, dl);
5274   }
5275
5276   // Vectors containing all ones can be matched by pcmpeqd on 128-bit width
5277   // vectors or broken into v4i32 operations on 256-bit vectors. AVX2 can use
5278   // vpcmpeqd on 256-bit vectors.
5279   if (ISD::isBuildVectorAllOnes(Op.getNode())) {
5280     if (Op.getValueType() == MVT::v4i32 ||
5281         (Op.getValueType() == MVT::v8i32 && Subtarget->hasAVX2()))
5282       return Op;
5283
5284     return getOnesVector(Op.getValueType(), Subtarget->hasAVX2(), DAG, dl);
5285   }
5286
5287   SDValue LD = isVectorBroadcast(Op, Subtarget->hasAVX2());
5288   if (Subtarget->hasAVX() && LD.getNode())
5289       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, LD);
5290
5291   unsigned EVTBits = ExtVT.getSizeInBits();
5292
5293   unsigned NumZero  = 0;
5294   unsigned NumNonZero = 0;
5295   unsigned NonZeros = 0;
5296   bool IsAllConstants = true;
5297   SmallSet<SDValue, 8> Values;
5298   for (unsigned i = 0; i < NumElems; ++i) {
5299     SDValue Elt = Op.getOperand(i);
5300     if (Elt.getOpcode() == ISD::UNDEF)
5301       continue;
5302     Values.insert(Elt);
5303     if (Elt.getOpcode() != ISD::Constant &&
5304         Elt.getOpcode() != ISD::ConstantFP)
5305       IsAllConstants = false;
5306     if (X86::isZeroNode(Elt))
5307       NumZero++;
5308     else {
5309       NonZeros |= (1 << i);
5310       NumNonZero++;
5311     }
5312   }
5313
5314   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
5315   if (NumNonZero == 0)
5316     return DAG.getUNDEF(VT);
5317
5318   // Special case for single non-zero, non-undef, element.
5319   if (NumNonZero == 1) {
5320     unsigned Idx = CountTrailingZeros_32(NonZeros);
5321     SDValue Item = Op.getOperand(Idx);
5322
5323     // If this is an insertion of an i64 value on x86-32, and if the top bits of
5324     // the value are obviously zero, truncate the value to i32 and do the
5325     // insertion that way.  Only do this if the value is non-constant or if the
5326     // value is a constant being inserted into element 0.  It is cheaper to do
5327     // a constant pool load than it is to do a movd + shuffle.
5328     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
5329         (!IsAllConstants || Idx == 0)) {
5330       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
5331         // Handle SSE only.
5332         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
5333         EVT VecVT = MVT::v4i32;
5334         unsigned VecElts = 4;
5335
5336         // Truncate the value (which may itself be a constant) to i32, and
5337         // convert it to a vector with movd (S2V+shuffle to zero extend).
5338         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
5339         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
5340         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5341                                            Subtarget->hasXMMInt(), DAG);
5342
5343         // Now we have our 32-bit value zero extended in the low element of
5344         // a vector.  If Idx != 0, swizzle it into place.
5345         if (Idx != 0) {
5346           SmallVector<int, 4> Mask;
5347           Mask.push_back(Idx);
5348           for (unsigned i = 1; i != VecElts; ++i)
5349             Mask.push_back(i);
5350           Item = DAG.getVectorShuffle(VecVT, dl, Item,
5351                                       DAG.getUNDEF(Item.getValueType()),
5352                                       &Mask[0]);
5353         }
5354         return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
5355       }
5356     }
5357
5358     // If we have a constant or non-constant insertion into the low element of
5359     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
5360     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
5361     // depending on what the source datatype is.
5362     if (Idx == 0) {
5363       if (NumZero == 0) {
5364         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5365       } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
5366           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
5367         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5368         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
5369         return getShuffleVectorZeroOrUndef(Item, 0, true,Subtarget->hasXMMInt(),
5370                                            DAG);
5371       } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
5372         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
5373         assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
5374         EVT MiddleVT = MVT::v4i32;
5375         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
5376         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
5377                                            Subtarget->hasXMMInt(), DAG);
5378         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
5379       }
5380     }
5381
5382     // Is it a vector logical left shift?
5383     if (NumElems == 2 && Idx == 1 &&
5384         X86::isZeroNode(Op.getOperand(0)) &&
5385         !X86::isZeroNode(Op.getOperand(1))) {
5386       unsigned NumBits = VT.getSizeInBits();
5387       return getVShift(true, VT,
5388                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5389                                    VT, Op.getOperand(1)),
5390                        NumBits/2, DAG, *this, dl);
5391     }
5392
5393     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
5394       return SDValue();
5395
5396     // Otherwise, if this is a vector with i32 or f32 elements, and the element
5397     // is a non-constant being inserted into an element other than the low one,
5398     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
5399     // movd/movss) to move this into the low element, then shuffle it into
5400     // place.
5401     if (EVTBits == 32) {
5402       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
5403
5404       // Turn it into a shuffle of zero and zero-extended scalar to vector.
5405       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
5406                                          Subtarget->hasXMMInt(), DAG);
5407       SmallVector<int, 8> MaskVec;
5408       for (unsigned i = 0; i < NumElems; i++)
5409         MaskVec.push_back(i == Idx ? 0 : 1);
5410       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
5411     }
5412   }
5413
5414   // Splat is obviously ok. Let legalizer expand it to a shuffle.
5415   if (Values.size() == 1) {
5416     if (EVTBits == 32) {
5417       // Instead of a shuffle like this:
5418       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
5419       // Check if it's possible to issue this instead.
5420       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
5421       unsigned Idx = CountTrailingZeros_32(NonZeros);
5422       SDValue Item = Op.getOperand(Idx);
5423       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
5424         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
5425     }
5426     return SDValue();
5427   }
5428
5429   // A vector full of immediates; various special cases are already
5430   // handled, so this is best done with a single constant-pool load.
5431   if (IsAllConstants)
5432     return SDValue();
5433
5434   // For AVX-length vectors, build the individual 128-bit pieces and use
5435   // shuffles to put them in place.
5436   if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
5437     SmallVector<SDValue, 32> V;
5438     for (unsigned i = 0; i < NumElems; ++i)
5439       V.push_back(Op.getOperand(i));
5440
5441     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
5442
5443     // Build both the lower and upper subvector.
5444     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
5445     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
5446                                 NumElems/2);
5447
5448     // Recreate the wider vector with the lower and upper part.
5449     SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
5450                                 DAG.getConstant(0, MVT::i32), DAG, dl);
5451     return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
5452                               DAG, dl);
5453   }
5454
5455   // Let legalizer expand 2-wide build_vectors.
5456   if (EVTBits == 64) {
5457     if (NumNonZero == 1) {
5458       // One half is zero or undef.
5459       unsigned Idx = CountTrailingZeros_32(NonZeros);
5460       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
5461                                  Op.getOperand(Idx));
5462       return getShuffleVectorZeroOrUndef(V2, Idx, true,
5463                                          Subtarget->hasXMMInt(), DAG);
5464     }
5465     return SDValue();
5466   }
5467
5468   // If element VT is < 32 bits, convert it to inserts into a zero vector.
5469   if (EVTBits == 8 && NumElems == 16) {
5470     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
5471                                         *this);
5472     if (V.getNode()) return V;
5473   }
5474
5475   if (EVTBits == 16 && NumElems == 8) {
5476     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
5477                                       *this);
5478     if (V.getNode()) return V;
5479   }
5480
5481   // If element VT is == 32 bits, turn it into a number of shuffles.
5482   SmallVector<SDValue, 8> V;
5483   V.resize(NumElems);
5484   if (NumElems == 4 && NumZero > 0) {
5485     for (unsigned i = 0; i < 4; ++i) {
5486       bool isZero = !(NonZeros & (1 << i));
5487       if (isZero)
5488         V[i] = getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
5489       else
5490         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5491     }
5492
5493     for (unsigned i = 0; i < 2; ++i) {
5494       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
5495         default: break;
5496         case 0:
5497           V[i] = V[i*2];  // Must be a zero vector.
5498           break;
5499         case 1:
5500           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
5501           break;
5502         case 2:
5503           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
5504           break;
5505         case 3:
5506           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
5507           break;
5508       }
5509     }
5510
5511     SmallVector<int, 8> MaskVec;
5512     bool Reverse = (NonZeros & 0x3) == 2;
5513     for (unsigned i = 0; i < 2; ++i)
5514       MaskVec.push_back(Reverse ? 1-i : i);
5515     Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
5516     for (unsigned i = 0; i < 2; ++i)
5517       MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
5518     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
5519   }
5520
5521   if (Values.size() > 1 && VT.getSizeInBits() == 128) {
5522     // Check for a build vector of consecutive loads.
5523     for (unsigned i = 0; i < NumElems; ++i)
5524       V[i] = Op.getOperand(i);
5525
5526     // Check for elements which are consecutive loads.
5527     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
5528     if (LD.getNode())
5529       return LD;
5530
5531     // For SSE 4.1, use insertps to put the high elements into the low element.
5532     if (getSubtarget()->hasSSE41orAVX()) {
5533       SDValue Result;
5534       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
5535         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
5536       else
5537         Result = DAG.getUNDEF(VT);
5538
5539       for (unsigned i = 1; i < NumElems; ++i) {
5540         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
5541         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
5542                              Op.getOperand(i), DAG.getIntPtrConstant(i));
5543       }
5544       return Result;
5545     }
5546
5547     // Otherwise, expand into a number of unpckl*, start by extending each of
5548     // our (non-undef) elements to the full vector width with the element in the
5549     // bottom slot of the vector (which generates no code for SSE).
5550     for (unsigned i = 0; i < NumElems; ++i) {
5551       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
5552         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
5553       else
5554         V[i] = DAG.getUNDEF(VT);
5555     }
5556
5557     // Next, we iteratively mix elements, e.g. for v4f32:
5558     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
5559     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
5560     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
5561     unsigned EltStride = NumElems >> 1;
5562     while (EltStride != 0) {
5563       for (unsigned i = 0; i < EltStride; ++i) {
5564         // If V[i+EltStride] is undef and this is the first round of mixing,
5565         // then it is safe to just drop this shuffle: V[i] is already in the
5566         // right place, the one element (since it's the first round) being
5567         // inserted as undef can be dropped.  This isn't safe for successive
5568         // rounds because they will permute elements within both vectors.
5569         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
5570             EltStride == NumElems/2)
5571           continue;
5572
5573         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
5574       }
5575       EltStride >>= 1;
5576     }
5577     return V[0];
5578   }
5579   return SDValue();
5580 }
5581
5582 // LowerMMXCONCAT_VECTORS - We support concatenate two MMX registers and place
5583 // them in a MMX register.  This is better than doing a stack convert.
5584 static SDValue LowerMMXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5585   DebugLoc dl = Op.getDebugLoc();
5586   EVT ResVT = Op.getValueType();
5587
5588   assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
5589          ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
5590   int Mask[2];
5591   SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
5592   SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5593   InVec = Op.getOperand(1);
5594   if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
5595     unsigned NumElts = ResVT.getVectorNumElements();
5596     VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
5597     VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5598                        InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5599   } else {
5600     InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
5601     SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5602     Mask[0] = 0; Mask[1] = 2;
5603     VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5604   }
5605   return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
5606 }
5607
5608 // LowerAVXCONCAT_VECTORS - 256-bit AVX can use the vinsertf128 instruction
5609 // to create 256-bit vectors from two other 128-bit ones.
5610 static SDValue LowerAVXCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) {
5611   DebugLoc dl = Op.getDebugLoc();
5612   EVT ResVT = Op.getValueType();
5613
5614   assert(ResVT.getSizeInBits() == 256 && "Value type must be 256-bit wide");
5615
5616   SDValue V1 = Op.getOperand(0);
5617   SDValue V2 = Op.getOperand(1);
5618   unsigned NumElems = ResVT.getVectorNumElements();
5619
5620   SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, ResVT), V1,
5621                                  DAG.getConstant(0, MVT::i32), DAG, dl);
5622   return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
5623                             DAG, dl);
5624 }
5625
5626 SDValue
5627 X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
5628   EVT ResVT = Op.getValueType();
5629
5630   assert(Op.getNumOperands() == 2);
5631   assert((ResVT.getSizeInBits() == 128 || ResVT.getSizeInBits() == 256) &&
5632          "Unsupported CONCAT_VECTORS for value type");
5633
5634   // We support concatenate two MMX registers and place them in a MMX register.
5635   // This is better than doing a stack convert.
5636   if (ResVT.is128BitVector())
5637     return LowerMMXCONCAT_VECTORS(Op, DAG);
5638
5639   // 256-bit AVX can use the vinsertf128 instruction to create 256-bit vectors
5640   // from two other 128-bit ones.
5641   return LowerAVXCONCAT_VECTORS(Op, DAG);
5642 }
5643
5644 // v8i16 shuffles - Prefer shuffles in the following order:
5645 // 1. [all]   pshuflw, pshufhw, optional move
5646 // 2. [ssse3] 1 x pshufb
5647 // 3. [ssse3] 2 x pshufb + 1 x por
5648 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
5649 SDValue
5650 X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5651                                             SelectionDAG &DAG) const {
5652   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5653   SDValue V1 = SVOp->getOperand(0);
5654   SDValue V2 = SVOp->getOperand(1);
5655   DebugLoc dl = SVOp->getDebugLoc();
5656   SmallVector<int, 8> MaskVals;
5657
5658   // Determine if more than 1 of the words in each of the low and high quadwords
5659   // of the result come from the same quadword of one of the two inputs.  Undef
5660   // mask values count as coming from any quadword, for better codegen.
5661   unsigned LoQuad[] = { 0, 0, 0, 0 };
5662   unsigned HiQuad[] = { 0, 0, 0, 0 };
5663   BitVector InputQuads(4);
5664   for (unsigned i = 0; i < 8; ++i) {
5665     unsigned *Quad = i < 4 ? LoQuad : HiQuad;
5666     int EltIdx = SVOp->getMaskElt(i);
5667     MaskVals.push_back(EltIdx);
5668     if (EltIdx < 0) {
5669       ++Quad[0];
5670       ++Quad[1];
5671       ++Quad[2];
5672       ++Quad[3];
5673       continue;
5674     }
5675     ++Quad[EltIdx / 4];
5676     InputQuads.set(EltIdx / 4);
5677   }
5678
5679   int BestLoQuad = -1;
5680   unsigned MaxQuad = 1;
5681   for (unsigned i = 0; i < 4; ++i) {
5682     if (LoQuad[i] > MaxQuad) {
5683       BestLoQuad = i;
5684       MaxQuad = LoQuad[i];
5685     }
5686   }
5687
5688   int BestHiQuad = -1;
5689   MaxQuad = 1;
5690   for (unsigned i = 0; i < 4; ++i) {
5691     if (HiQuad[i] > MaxQuad) {
5692       BestHiQuad = i;
5693       MaxQuad = HiQuad[i];
5694     }
5695   }
5696
5697   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
5698   // of the two input vectors, shuffle them into one input vector so only a
5699   // single pshufb instruction is necessary. If There are more than 2 input
5700   // quads, disable the next transformation since it does not help SSSE3.
5701   bool V1Used = InputQuads[0] || InputQuads[1];
5702   bool V2Used = InputQuads[2] || InputQuads[3];
5703   if (Subtarget->hasSSSE3orAVX()) {
5704     if (InputQuads.count() == 2 && V1Used && V2Used) {
5705       BestLoQuad = InputQuads.find_first();
5706       BestHiQuad = InputQuads.find_next(BestLoQuad);
5707     }
5708     if (InputQuads.count() > 2) {
5709       BestLoQuad = -1;
5710       BestHiQuad = -1;
5711     }
5712   }
5713
5714   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5715   // the shuffle mask.  If a quad is scored as -1, that means that it contains
5716   // words from all 4 input quadwords.
5717   SDValue NewV;
5718   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
5719     SmallVector<int, 8> MaskV;
5720     MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5721     MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
5722     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
5723                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5724                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5725     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
5726
5727     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5728     // source words for the shuffle, to aid later transformations.
5729     bool AllWordsInNewV = true;
5730     bool InOrder[2] = { true, true };
5731     for (unsigned i = 0; i != 8; ++i) {
5732       int idx = MaskVals[i];
5733       if (idx != (int)i)
5734         InOrder[i/4] = false;
5735       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
5736         continue;
5737       AllWordsInNewV = false;
5738       break;
5739     }
5740
5741     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5742     if (AllWordsInNewV) {
5743       for (int i = 0; i != 8; ++i) {
5744         int idx = MaskVals[i];
5745         if (idx < 0)
5746           continue;
5747         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
5748         if ((idx != i) && idx < 4)
5749           pshufhw = false;
5750         if ((idx != i) && idx > 3)
5751           pshuflw = false;
5752       }
5753       V1 = NewV;
5754       V2Used = false;
5755       BestLoQuad = 0;
5756       BestHiQuad = 1;
5757     }
5758
5759     // If we've eliminated the use of V2, and the new mask is a pshuflw or
5760     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
5761     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
5762       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5763       unsigned TargetMask = 0;
5764       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
5765                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
5766       TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5767                              X86::getShufflePSHUFLWImmediate(NewV.getNode());
5768       V1 = NewV.getOperand(0);
5769       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
5770     }
5771   }
5772
5773   // If we have SSSE3, and all words of the result are from 1 input vector,
5774   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
5775   // is present, fall back to case 4.
5776   if (Subtarget->hasSSSE3orAVX()) {
5777     SmallVector<SDValue,16> pshufbMask;
5778
5779     // If we have elements from both input vectors, set the high bit of the
5780     // shuffle mask element to zero out elements that come from V2 in the V1
5781     // mask, and elements that come from V1 in the V2 mask, so that the two
5782     // results can be OR'd together.
5783     bool TwoInputs = V1Used && V2Used;
5784     for (unsigned i = 0; i != 8; ++i) {
5785       int EltIdx = MaskVals[i] * 2;
5786       if (TwoInputs && (EltIdx >= 16)) {
5787         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5788         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5789         continue;
5790       }
5791       pshufbMask.push_back(DAG.getConstant(EltIdx,   MVT::i8));
5792       pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
5793     }
5794     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
5795     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5796                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5797                                  MVT::v16i8, &pshufbMask[0], 16));
5798     if (!TwoInputs)
5799       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5800
5801     // Calculate the shuffle mask for the second input, shuffle it, and
5802     // OR it with the first shuffled input.
5803     pshufbMask.clear();
5804     for (unsigned i = 0; i != 8; ++i) {
5805       int EltIdx = MaskVals[i] * 2;
5806       if (EltIdx < 16) {
5807         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5808         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5809         continue;
5810       }
5811       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5812       pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
5813     }
5814     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
5815     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5816                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5817                                  MVT::v16i8, &pshufbMask[0], 16));
5818     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5819     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5820   }
5821
5822   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5823   // and update MaskVals with new element order.
5824   BitVector InOrder(8);
5825   if (BestLoQuad >= 0) {
5826     SmallVector<int, 8> MaskV;
5827     for (int i = 0; i != 4; ++i) {
5828       int idx = MaskVals[i];
5829       if (idx < 0) {
5830         MaskV.push_back(-1);
5831         InOrder.set(i);
5832       } else if ((idx / 4) == BestLoQuad) {
5833         MaskV.push_back(idx & 3);
5834         InOrder.set(i);
5835       } else {
5836         MaskV.push_back(-1);
5837       }
5838     }
5839     for (unsigned i = 4; i != 8; ++i)
5840       MaskV.push_back(i);
5841     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5842                                 &MaskV[0]);
5843
5844     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3orAVX())
5845       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5846                                NewV.getOperand(0),
5847                                X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5848                                DAG);
5849   }
5850
5851   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5852   // and update MaskVals with the new element order.
5853   if (BestHiQuad >= 0) {
5854     SmallVector<int, 8> MaskV;
5855     for (unsigned i = 0; i != 4; ++i)
5856       MaskV.push_back(i);
5857     for (unsigned i = 4; i != 8; ++i) {
5858       int idx = MaskVals[i];
5859       if (idx < 0) {
5860         MaskV.push_back(-1);
5861         InOrder.set(i);
5862       } else if ((idx / 4) == BestHiQuad) {
5863         MaskV.push_back((idx & 3) + 4);
5864         InOrder.set(i);
5865       } else {
5866         MaskV.push_back(-1);
5867       }
5868     }
5869     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5870                                 &MaskV[0]);
5871
5872     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3orAVX())
5873       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5874                               NewV.getOperand(0),
5875                               X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5876                               DAG);
5877   }
5878
5879   // In case BestHi & BestLo were both -1, which means each quadword has a word
5880   // from each of the four input quadwords, calculate the InOrder bitvector now
5881   // before falling through to the insert/extract cleanup.
5882   if (BestLoQuad == -1 && BestHiQuad == -1) {
5883     NewV = V1;
5884     for (int i = 0; i != 8; ++i)
5885       if (MaskVals[i] < 0 || MaskVals[i] == i)
5886         InOrder.set(i);
5887   }
5888
5889   // The other elements are put in the right place using pextrw and pinsrw.
5890   for (unsigned i = 0; i != 8; ++i) {
5891     if (InOrder[i])
5892       continue;
5893     int EltIdx = MaskVals[i];
5894     if (EltIdx < 0)
5895       continue;
5896     SDValue ExtOp = (EltIdx < 8)
5897     ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
5898                   DAG.getIntPtrConstant(EltIdx))
5899     : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
5900                   DAG.getIntPtrConstant(EltIdx - 8));
5901     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
5902                        DAG.getIntPtrConstant(i));
5903   }
5904   return NewV;
5905 }
5906
5907 // v16i8 shuffles - Prefer shuffles in the following order:
5908 // 1. [ssse3] 1 x pshufb
5909 // 2. [ssse3] 2 x pshufb + 1 x por
5910 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
5911 static
5912 SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
5913                                  SelectionDAG &DAG,
5914                                  const X86TargetLowering &TLI) {
5915   SDValue V1 = SVOp->getOperand(0);
5916   SDValue V2 = SVOp->getOperand(1);
5917   DebugLoc dl = SVOp->getDebugLoc();
5918   SmallVector<int, 16> MaskVals;
5919   SVOp->getMask(MaskVals);
5920
5921   // If we have SSSE3, case 1 is generated when all result bytes come from
5922   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
5923   // present, fall back to case 3.
5924   // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5925   bool V1Only = true;
5926   bool V2Only = true;
5927   for (unsigned i = 0; i < 16; ++i) {
5928     int EltIdx = MaskVals[i];
5929     if (EltIdx < 0)
5930       continue;
5931     if (EltIdx < 16)
5932       V2Only = false;
5933     else
5934       V1Only = false;
5935   }
5936
5937   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5938   if (TLI.getSubtarget()->hasSSSE3orAVX()) {
5939     SmallVector<SDValue,16> pshufbMask;
5940
5941     // If all result elements are from one input vector, then only translate
5942     // undef mask values to 0x80 (zero out result) in the pshufb mask.
5943     //
5944     // Otherwise, we have elements from both input vectors, and must zero out
5945     // elements that come from V2 in the first mask, and V1 in the second mask
5946     // so that we can OR them together.
5947     bool TwoInputs = !(V1Only || V2Only);
5948     for (unsigned i = 0; i != 16; ++i) {
5949       int EltIdx = MaskVals[i];
5950       if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
5951         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5952         continue;
5953       }
5954       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5955     }
5956     // If all the elements are from V2, assign it to V1 and return after
5957     // building the first pshufb.
5958     if (V2Only)
5959       V1 = V2;
5960     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5961                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5962                                  MVT::v16i8, &pshufbMask[0], 16));
5963     if (!TwoInputs)
5964       return V1;
5965
5966     // Calculate the shuffle mask for the second input, shuffle it, and
5967     // OR it with the first shuffled input.
5968     pshufbMask.clear();
5969     for (unsigned i = 0; i != 16; ++i) {
5970       int EltIdx = MaskVals[i];
5971       if (EltIdx < 16) {
5972         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5973         continue;
5974       }
5975       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5976     }
5977     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5978                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5979                                  MVT::v16i8, &pshufbMask[0], 16));
5980     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5981   }
5982
5983   // No SSSE3 - Calculate in place words and then fix all out of place words
5984   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
5985   // the 16 different words that comprise the two doublequadword input vectors.
5986   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5987   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
5988   SDValue NewV = V2Only ? V2 : V1;
5989   for (int i = 0; i != 8; ++i) {
5990     int Elt0 = MaskVals[i*2];
5991     int Elt1 = MaskVals[i*2+1];
5992
5993     // This word of the result is all undef, skip it.
5994     if (Elt0 < 0 && Elt1 < 0)
5995       continue;
5996
5997     // This word of the result is already in the correct place, skip it.
5998     if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5999       continue;
6000     if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
6001       continue;
6002
6003     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
6004     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
6005     SDValue InsElt;
6006
6007     // If Elt0 and Elt1 are defined, are consecutive, and can be load
6008     // using a single extract together, load it and store it.
6009     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
6010       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6011                            DAG.getIntPtrConstant(Elt1 / 2));
6012       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6013                         DAG.getIntPtrConstant(i));
6014       continue;
6015     }
6016
6017     // If Elt1 is defined, extract it from the appropriate source.  If the
6018     // source byte is not also odd, shift the extracted word left 8 bits
6019     // otherwise clear the bottom 8 bits if we need to do an or.
6020     if (Elt1 >= 0) {
6021       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
6022                            DAG.getIntPtrConstant(Elt1 / 2));
6023       if ((Elt1 & 1) == 0)
6024         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
6025                              DAG.getConstant(8,
6026                                   TLI.getShiftAmountTy(InsElt.getValueType())));
6027       else if (Elt0 >= 0)
6028         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
6029                              DAG.getConstant(0xFF00, MVT::i16));
6030     }
6031     // If Elt0 is defined, extract it from the appropriate source.  If the
6032     // source byte is not also even, shift the extracted word right 8 bits. If
6033     // Elt1 was also defined, OR the extracted values together before
6034     // inserting them in the result.
6035     if (Elt0 >= 0) {
6036       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
6037                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
6038       if ((Elt0 & 1) != 0)
6039         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
6040                               DAG.getConstant(8,
6041                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
6042       else if (Elt1 >= 0)
6043         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
6044                              DAG.getConstant(0x00FF, MVT::i16));
6045       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
6046                          : InsElt0;
6047     }
6048     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
6049                        DAG.getIntPtrConstant(i));
6050   }
6051   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
6052 }
6053
6054 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
6055 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
6056 /// done when every pair / quad of shuffle mask elements point to elements in
6057 /// the right sequence. e.g.
6058 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
6059 static
6060 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
6061                                  SelectionDAG &DAG, DebugLoc dl) {
6062   EVT VT = SVOp->getValueType(0);
6063   SDValue V1 = SVOp->getOperand(0);
6064   SDValue V2 = SVOp->getOperand(1);
6065   unsigned NumElems = VT.getVectorNumElements();
6066   unsigned NewWidth = (NumElems == 4) ? 2 : 4;
6067   EVT NewVT;
6068   switch (VT.getSimpleVT().SimpleTy) {
6069   default: assert(false && "Unexpected!");
6070   case MVT::v4f32: NewVT = MVT::v2f64; break;
6071   case MVT::v4i32: NewVT = MVT::v2i64; break;
6072   case MVT::v8i16: NewVT = MVT::v4i32; break;
6073   case MVT::v16i8: NewVT = MVT::v4i32; break;
6074   }
6075
6076   int Scale = NumElems / NewWidth;
6077   SmallVector<int, 8> MaskVec;
6078   for (unsigned i = 0; i < NumElems; i += Scale) {
6079     int StartIdx = -1;
6080     for (int j = 0; j < Scale; ++j) {
6081       int EltIdx = SVOp->getMaskElt(i+j);
6082       if (EltIdx < 0)
6083         continue;
6084       if (StartIdx == -1)
6085         StartIdx = EltIdx - (EltIdx % Scale);
6086       if (EltIdx != StartIdx + j)
6087         return SDValue();
6088     }
6089     if (StartIdx == -1)
6090       MaskVec.push_back(-1);
6091     else
6092       MaskVec.push_back(StartIdx / Scale);
6093   }
6094
6095   V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
6096   V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
6097   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
6098 }
6099
6100 /// getVZextMovL - Return a zero-extending vector move low node.
6101 ///
6102 static SDValue getVZextMovL(EVT VT, EVT OpVT,
6103                             SDValue SrcOp, SelectionDAG &DAG,
6104                             const X86Subtarget *Subtarget, DebugLoc dl) {
6105   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
6106     LoadSDNode *LD = NULL;
6107     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
6108       LD = dyn_cast<LoadSDNode>(SrcOp);
6109     if (!LD) {
6110       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
6111       // instead.
6112       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
6113       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
6114           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
6115           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
6116           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
6117         // PR2108
6118         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
6119         return DAG.getNode(ISD::BITCAST, dl, VT,
6120                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6121                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
6122                                                    OpVT,
6123                                                    SrcOp.getOperand(0)
6124                                                           .getOperand(0))));
6125       }
6126     }
6127   }
6128
6129   return DAG.getNode(ISD::BITCAST, dl, VT,
6130                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
6131                                  DAG.getNode(ISD::BITCAST, dl,
6132                                              OpVT, SrcOp)));
6133 }
6134
6135 /// areShuffleHalvesWithinDisjointLanes - Check whether each half of a vector
6136 /// shuffle node referes to only one lane in the sources.
6137 static bool areShuffleHalvesWithinDisjointLanes(ShuffleVectorSDNode *SVOp) {
6138   EVT VT = SVOp->getValueType(0);
6139   int NumElems = VT.getVectorNumElements();
6140   int HalfSize = NumElems/2;
6141   SmallVector<int, 16> M;
6142   SVOp->getMask(M);
6143   bool MatchA = false, MatchB = false;
6144
6145   for (int l = 0; l < NumElems*2; l += HalfSize) {
6146     if (isUndefOrInRange(M, 0, HalfSize, l, l+HalfSize)) {
6147       MatchA = true;
6148       break;
6149     }
6150   }
6151
6152   for (int l = 0; l < NumElems*2; l += HalfSize) {
6153     if (isUndefOrInRange(M, HalfSize, HalfSize, l, l+HalfSize)) {
6154       MatchB = true;
6155       break;
6156     }
6157   }
6158
6159   return MatchA && MatchB;
6160 }
6161
6162 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
6163 /// which could not be matched by any known target speficic shuffle
6164 static SDValue
6165 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6166   if (areShuffleHalvesWithinDisjointLanes(SVOp)) {
6167     // If each half of a vector shuffle node referes to only one lane in the
6168     // source vectors, extract each used 128-bit lane and shuffle them using
6169     // 128-bit shuffles. Then, concatenate the results. Otherwise leave
6170     // the work to the legalizer.
6171     DebugLoc dl = SVOp->getDebugLoc();
6172     EVT VT = SVOp->getValueType(0);
6173     int NumElems = VT.getVectorNumElements();
6174     int HalfSize = NumElems/2;
6175
6176     // Extract the reference for each half
6177     int FstVecExtractIdx = 0, SndVecExtractIdx = 0;
6178     int FstVecOpNum = 0, SndVecOpNum = 0;
6179     for (int i = 0; i < HalfSize; ++i) {
6180       int Elt = SVOp->getMaskElt(i);
6181       if (SVOp->getMaskElt(i) < 0)
6182         continue;
6183       FstVecOpNum = Elt/NumElems;
6184       FstVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
6185       break;
6186     }
6187     for (int i = HalfSize; i < NumElems; ++i) {
6188       int Elt = SVOp->getMaskElt(i);
6189       if (SVOp->getMaskElt(i) < 0)
6190         continue;
6191       SndVecOpNum = Elt/NumElems;
6192       SndVecExtractIdx = Elt % NumElems < HalfSize ? 0 : HalfSize;
6193       break;
6194     }
6195
6196     // Extract the subvectors
6197     SDValue V1 = Extract128BitVector(SVOp->getOperand(FstVecOpNum),
6198                       DAG.getConstant(FstVecExtractIdx, MVT::i32), DAG, dl);
6199     SDValue V2 = Extract128BitVector(SVOp->getOperand(SndVecOpNum),
6200                       DAG.getConstant(SndVecExtractIdx, MVT::i32), DAG, dl);
6201
6202     // Generate 128-bit shuffles
6203     SmallVector<int, 16> MaskV1, MaskV2;
6204     for (int i = 0; i < HalfSize; ++i) {
6205       int Elt = SVOp->getMaskElt(i);
6206       MaskV1.push_back(Elt < 0 ? Elt : Elt % HalfSize);
6207     }
6208     for (int i = HalfSize; i < NumElems; ++i) {
6209       int Elt = SVOp->getMaskElt(i);
6210       MaskV2.push_back(Elt < 0 ? Elt : Elt % HalfSize);
6211     }
6212
6213     EVT NVT = V1.getValueType();
6214     V1 = DAG.getVectorShuffle(NVT, dl, V1, DAG.getUNDEF(NVT), &MaskV1[0]);
6215     V2 = DAG.getVectorShuffle(NVT, dl, V2, DAG.getUNDEF(NVT), &MaskV2[0]);
6216
6217     // Concatenate the result back
6218     SDValue V = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), V1,
6219                                    DAG.getConstant(0, MVT::i32), DAG, dl);
6220     return Insert128BitVector(V, V2, DAG.getConstant(NumElems/2, MVT::i32),
6221                               DAG, dl);
6222   }
6223
6224   return SDValue();
6225 }
6226
6227 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
6228 /// 4 elements, and match them with several different shuffle types.
6229 static SDValue
6230 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
6231   SDValue V1 = SVOp->getOperand(0);
6232   SDValue V2 = SVOp->getOperand(1);
6233   DebugLoc dl = SVOp->getDebugLoc();
6234   EVT VT = SVOp->getValueType(0);
6235
6236   assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
6237
6238   SmallVector<std::pair<int, int>, 8> Locs;
6239   Locs.resize(4);
6240   SmallVector<int, 8> Mask1(4U, -1);
6241   SmallVector<int, 8> PermMask;
6242   SVOp->getMask(PermMask);
6243
6244   unsigned NumHi = 0;
6245   unsigned NumLo = 0;
6246   for (unsigned i = 0; i != 4; ++i) {
6247     int Idx = PermMask[i];
6248     if (Idx < 0) {
6249       Locs[i] = std::make_pair(-1, -1);
6250     } else {
6251       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
6252       if (Idx < 4) {
6253         Locs[i] = std::make_pair(0, NumLo);
6254         Mask1[NumLo] = Idx;
6255         NumLo++;
6256       } else {
6257         Locs[i] = std::make_pair(1, NumHi);
6258         if (2+NumHi < 4)
6259           Mask1[2+NumHi] = Idx;
6260         NumHi++;
6261       }
6262     }
6263   }
6264
6265   if (NumLo <= 2 && NumHi <= 2) {
6266     // If no more than two elements come from either vector. This can be
6267     // implemented with two shuffles. First shuffle gather the elements.
6268     // The second shuffle, which takes the first shuffle as both of its
6269     // vector operands, put the elements into the right order.
6270     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6271
6272     SmallVector<int, 8> Mask2(4U, -1);
6273
6274     for (unsigned i = 0; i != 4; ++i) {
6275       if (Locs[i].first == -1)
6276         continue;
6277       else {
6278         unsigned Idx = (i < 2) ? 0 : 4;
6279         Idx += Locs[i].first * 2 + Locs[i].second;
6280         Mask2[i] = Idx;
6281       }
6282     }
6283
6284     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
6285   } else if (NumLo == 3 || NumHi == 3) {
6286     // Otherwise, we must have three elements from one vector, call it X, and
6287     // one element from the other, call it Y.  First, use a shufps to build an
6288     // intermediate vector with the one element from Y and the element from X
6289     // that will be in the same half in the final destination (the indexes don't
6290     // matter). Then, use a shufps to build the final vector, taking the half
6291     // containing the element from Y from the intermediate, and the other half
6292     // from X.
6293     if (NumHi == 3) {
6294       // Normalize it so the 3 elements come from V1.
6295       CommuteVectorShuffleMask(PermMask, VT);
6296       std::swap(V1, V2);
6297     }
6298
6299     // Find the element from V2.
6300     unsigned HiIndex;
6301     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
6302       int Val = PermMask[HiIndex];
6303       if (Val < 0)
6304         continue;
6305       if (Val >= 4)
6306         break;
6307     }
6308
6309     Mask1[0] = PermMask[HiIndex];
6310     Mask1[1] = -1;
6311     Mask1[2] = PermMask[HiIndex^1];
6312     Mask1[3] = -1;
6313     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6314
6315     if (HiIndex >= 2) {
6316       Mask1[0] = PermMask[0];
6317       Mask1[1] = PermMask[1];
6318       Mask1[2] = HiIndex & 1 ? 6 : 4;
6319       Mask1[3] = HiIndex & 1 ? 4 : 6;
6320       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
6321     } else {
6322       Mask1[0] = HiIndex & 1 ? 2 : 0;
6323       Mask1[1] = HiIndex & 1 ? 0 : 2;
6324       Mask1[2] = PermMask[2];
6325       Mask1[3] = PermMask[3];
6326       if (Mask1[2] >= 0)
6327         Mask1[2] += 4;
6328       if (Mask1[3] >= 0)
6329         Mask1[3] += 4;
6330       return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
6331     }
6332   }
6333
6334   // Break it into (shuffle shuffle_hi, shuffle_lo).
6335   Locs.clear();
6336   Locs.resize(4);
6337   SmallVector<int,8> LoMask(4U, -1);
6338   SmallVector<int,8> HiMask(4U, -1);
6339
6340   SmallVector<int,8> *MaskPtr = &LoMask;
6341   unsigned MaskIdx = 0;
6342   unsigned LoIdx = 0;
6343   unsigned HiIdx = 2;
6344   for (unsigned i = 0; i != 4; ++i) {
6345     if (i == 2) {
6346       MaskPtr = &HiMask;
6347       MaskIdx = 1;
6348       LoIdx = 0;
6349       HiIdx = 2;
6350     }
6351     int Idx = PermMask[i];
6352     if (Idx < 0) {
6353       Locs[i] = std::make_pair(-1, -1);
6354     } else if (Idx < 4) {
6355       Locs[i] = std::make_pair(MaskIdx, LoIdx);
6356       (*MaskPtr)[LoIdx] = Idx;
6357       LoIdx++;
6358     } else {
6359       Locs[i] = std::make_pair(MaskIdx, HiIdx);
6360       (*MaskPtr)[HiIdx] = Idx;
6361       HiIdx++;
6362     }
6363   }
6364
6365   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
6366   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
6367   SmallVector<int, 8> MaskOps;
6368   for (unsigned i = 0; i != 4; ++i) {
6369     if (Locs[i].first == -1) {
6370       MaskOps.push_back(-1);
6371     } else {
6372       unsigned Idx = Locs[i].first * 4 + Locs[i].second;
6373       MaskOps.push_back(Idx);
6374     }
6375   }
6376   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
6377 }
6378
6379 static bool MayFoldVectorLoad(SDValue V) {
6380   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6381     V = V.getOperand(0);
6382   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6383     V = V.getOperand(0);
6384   if (V.hasOneUse() && V.getOpcode() == ISD::BUILD_VECTOR &&
6385       V.getNumOperands() == 2 && V.getOperand(1).getOpcode() == ISD::UNDEF)
6386     // BUILD_VECTOR (load), undef
6387     V = V.getOperand(0);
6388   if (MayFoldLoad(V))
6389     return true;
6390   return false;
6391 }
6392
6393 // FIXME: the version above should always be used. Since there's
6394 // a bug where several vector shuffles can't be folded because the
6395 // DAG is not updated during lowering and a node claims to have two
6396 // uses while it only has one, use this version, and let isel match
6397 // another instruction if the load really happens to have more than
6398 // one use. Remove this version after this bug get fixed.
6399 // rdar://8434668, PR8156
6400 static bool RelaxedMayFoldVectorLoad(SDValue V) {
6401   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
6402     V = V.getOperand(0);
6403   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
6404     V = V.getOperand(0);
6405   if (ISD::isNormalLoad(V.getNode()))
6406     return true;
6407   return false;
6408 }
6409
6410 /// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
6411 /// a vector extract, and if both can be later optimized into a single load.
6412 /// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
6413 /// here because otherwise a target specific shuffle node is going to be
6414 /// emitted for this shuffle, and the optimization not done.
6415 /// FIXME: This is probably not the best approach, but fix the problem
6416 /// until the right path is decided.
6417 static
6418 bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
6419                                          const TargetLowering &TLI) {
6420   EVT VT = V.getValueType();
6421   ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
6422
6423   // Be sure that the vector shuffle is present in a pattern like this:
6424   // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
6425   if (!V.hasOneUse())
6426     return false;
6427
6428   SDNode *N = *V.getNode()->use_begin();
6429   if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
6430     return false;
6431
6432   SDValue EltNo = N->getOperand(1);
6433   if (!isa<ConstantSDNode>(EltNo))
6434     return false;
6435
6436   // If the bit convert changed the number of elements, it is unsafe
6437   // to examine the mask.
6438   bool HasShuffleIntoBitcast = false;
6439   if (V.getOpcode() == ISD::BITCAST) {
6440     EVT SrcVT = V.getOperand(0).getValueType();
6441     if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
6442       return false;
6443     V = V.getOperand(0);
6444     HasShuffleIntoBitcast = true;
6445   }
6446
6447   // Select the input vector, guarding against out of range extract vector.
6448   unsigned NumElems = VT.getVectorNumElements();
6449   unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
6450   int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
6451   V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
6452
6453   // Skip one more bit_convert if necessary
6454   if (V.getOpcode() == ISD::BITCAST)
6455     V = V.getOperand(0);
6456
6457   if (ISD::isNormalLoad(V.getNode())) {
6458     // Is the original load suitable?
6459     LoadSDNode *LN0 = cast<LoadSDNode>(V);
6460
6461     // FIXME: avoid the multi-use bug that is preventing lots of
6462     // of foldings to be detected, this is still wrong of course, but
6463     // give the temporary desired behavior, and if it happens that
6464     // the load has real more uses, during isel it will not fold, and
6465     // will generate poor code.
6466     if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
6467       return false;
6468
6469     if (!HasShuffleIntoBitcast)
6470       return true;
6471
6472     // If there's a bitcast before the shuffle, check if the load type and
6473     // alignment is valid.
6474     unsigned Align = LN0->getAlignment();
6475     unsigned NewAlign =
6476       TLI.getTargetData()->getABITypeAlignment(
6477                                     VT.getTypeForEVT(*DAG.getContext()));
6478
6479     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
6480       return false;
6481   }
6482
6483   return true;
6484 }
6485
6486 static
6487 SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
6488   EVT VT = Op.getValueType();
6489
6490   // Canonizalize to v2f64.
6491   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
6492   return DAG.getNode(ISD::BITCAST, dl, VT,
6493                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
6494                                           V1, DAG));
6495 }
6496
6497 static
6498 SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
6499                         bool HasXMMInt) {
6500   SDValue V1 = Op.getOperand(0);
6501   SDValue V2 = Op.getOperand(1);
6502   EVT VT = Op.getValueType();
6503
6504   assert(VT != MVT::v2i64 && "unsupported shuffle type");
6505
6506   if (HasXMMInt && VT == MVT::v2f64)
6507     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
6508
6509   // v4f32 or v4i32: canonizalized to v4f32 (which is legal for SSE1)
6510   return DAG.getNode(ISD::BITCAST, dl, VT,
6511                      getTargetShuffleNode(X86ISD::MOVLHPS, dl, MVT::v4f32,
6512                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V1),
6513                            DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, V2), DAG));
6514 }
6515
6516 static
6517 SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
6518   SDValue V1 = Op.getOperand(0);
6519   SDValue V2 = Op.getOperand(1);
6520   EVT VT = Op.getValueType();
6521
6522   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
6523          "unsupported shuffle type");
6524
6525   if (V2.getOpcode() == ISD::UNDEF)
6526     V2 = V1;
6527
6528   // v4i32 or v4f32
6529   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
6530 }
6531
6532 static inline unsigned getSHUFPOpcode(EVT VT) {
6533   switch(VT.getSimpleVT().SimpleTy) {
6534   case MVT::v8i32: // Use fp unit for int unpack.
6535   case MVT::v8f32:
6536   case MVT::v4i32: // Use fp unit for int unpack.
6537   case MVT::v4f32: return X86ISD::SHUFPS;
6538   case MVT::v4i64: // Use fp unit for int unpack.
6539   case MVT::v4f64:
6540   case MVT::v2i64: // Use fp unit for int unpack.
6541   case MVT::v2f64: return X86ISD::SHUFPD;
6542   default:
6543     llvm_unreachable("Unknown type for shufp*");
6544   }
6545   return 0;
6546 }
6547
6548 static
6549 SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasXMMInt) {
6550   SDValue V1 = Op.getOperand(0);
6551   SDValue V2 = Op.getOperand(1);
6552   EVT VT = Op.getValueType();
6553   unsigned NumElems = VT.getVectorNumElements();
6554
6555   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
6556   // operand of these instructions is only memory, so check if there's a
6557   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
6558   // same masks.
6559   bool CanFoldLoad = false;
6560
6561   // Trivial case, when V2 comes from a load.
6562   if (MayFoldVectorLoad(V2))
6563     CanFoldLoad = true;
6564
6565   // When V1 is a load, it can be folded later into a store in isel, example:
6566   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
6567   //    turns into:
6568   //  (MOVLPSmr addr:$src1, VR128:$src2)
6569   // So, recognize this potential and also use MOVLPS or MOVLPD
6570   else if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
6571     CanFoldLoad = true;
6572
6573   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6574   if (CanFoldLoad) {
6575     if (HasXMMInt && NumElems == 2)
6576       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
6577
6578     if (NumElems == 4)
6579       // If we don't care about the second element, procede to use movss.
6580       if (SVOp->getMaskElt(1) != -1)
6581         return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
6582   }
6583
6584   // movl and movlp will both match v2i64, but v2i64 is never matched by
6585   // movl earlier because we make it strict to avoid messing with the movlp load
6586   // folding logic (see the code above getMOVLP call). Match it here then,
6587   // this is horrible, but will stay like this until we move all shuffle
6588   // matching to x86 specific nodes. Note that for the 1st condition all
6589   // types are matched with movsd.
6590   if (HasXMMInt) {
6591     // FIXME: isMOVLMask should be checked and matched before getMOVLP,
6592     // as to remove this logic from here, as much as possible
6593     if (NumElems == 2 || !X86::isMOVLMask(SVOp))
6594       return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6595     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6596   }
6597
6598   assert(VT != MVT::v4i32 && "unsupported shuffle type");
6599
6600   // Invert the operand order and use SHUFPS to match it.
6601   return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V2, V1,
6602                               X86::getShuffleSHUFImmediate(SVOp), DAG);
6603 }
6604
6605 static inline unsigned getUNPCKLOpcode(EVT VT, bool HasAVX2) {
6606   switch(VT.getSimpleVT().SimpleTy) {
6607   case MVT::v4i32: return X86ISD::PUNPCKLDQ;
6608   case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
6609   case MVT::v4f32: return X86ISD::UNPCKLPS;
6610   case MVT::v2f64: return X86ISD::UNPCKLPD;
6611   case MVT::v8i32:
6612     if (HasAVX2)   return X86ISD::VPUNPCKLDQY;
6613     // else use fp unit for int unpack.
6614   case MVT::v8f32: return X86ISD::VUNPCKLPSY;
6615   case MVT::v4i64:
6616     if (HasAVX2)   return X86ISD::VPUNPCKLQDQY;
6617     // else use fp unit for int unpack.
6618   case MVT::v4f64: return X86ISD::VUNPCKLPDY;
6619   case MVT::v16i8: return X86ISD::PUNPCKLBW;
6620   case MVT::v8i16: return X86ISD::PUNPCKLWD;
6621   case MVT::v16i16: return X86ISD::VPUNPCKLWDY;
6622   case MVT::v32i8: return X86ISD::VPUNPCKLBWY;
6623   default:
6624     llvm_unreachable("Unknown type for unpckl");
6625   }
6626   return 0;
6627 }
6628
6629 static inline unsigned getUNPCKHOpcode(EVT VT, bool HasAVX2) {
6630   switch(VT.getSimpleVT().SimpleTy) {
6631   case MVT::v4i32: return X86ISD::PUNPCKHDQ;
6632   case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
6633   case MVT::v4f32: return X86ISD::UNPCKHPS;
6634   case MVT::v2f64: return X86ISD::UNPCKHPD;
6635   case MVT::v8i32:
6636     if (HasAVX2)   return X86ISD::VPUNPCKHDQY;
6637     // else use fp unit for int unpack.
6638   case MVT::v8f32: return X86ISD::VUNPCKHPSY;
6639   case MVT::v4i64:
6640     if (HasAVX2)   return X86ISD::VPUNPCKHQDQY;
6641     // else use fp unit for int unpack.
6642   case MVT::v4f64: return X86ISD::VUNPCKHPDY;
6643   case MVT::v16i8: return X86ISD::PUNPCKHBW;
6644   case MVT::v8i16: return X86ISD::PUNPCKHWD;
6645   case MVT::v16i16: return X86ISD::VPUNPCKHWDY;
6646   case MVT::v32i8: return X86ISD::VPUNPCKHBWY;
6647   default:
6648     llvm_unreachable("Unknown type for unpckh");
6649   }
6650   return 0;
6651 }
6652
6653 static inline unsigned getVPERMILOpcode(EVT VT) {
6654   switch(VT.getSimpleVT().SimpleTy) {
6655   case MVT::v4i32:
6656   case MVT::v4f32: return X86ISD::VPERMILPS;
6657   case MVT::v2i64:
6658   case MVT::v2f64: return X86ISD::VPERMILPD;
6659   case MVT::v8i32:
6660   case MVT::v8f32: return X86ISD::VPERMILPSY;
6661   case MVT::v4i64:
6662   case MVT::v4f64: return X86ISD::VPERMILPDY;
6663   default:
6664     llvm_unreachable("Unknown type for vpermil");
6665   }
6666   return 0;
6667 }
6668
6669 static
6670 SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
6671                                const TargetLowering &TLI,
6672                                const X86Subtarget *Subtarget) {
6673   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6674   EVT VT = Op.getValueType();
6675   DebugLoc dl = Op.getDebugLoc();
6676   SDValue V1 = Op.getOperand(0);
6677   SDValue V2 = Op.getOperand(1);
6678
6679   if (isZeroShuffle(SVOp))
6680     return getZeroVector(VT, Subtarget->hasXMMInt(), DAG, dl);
6681
6682   // Handle splat operations
6683   if (SVOp->isSplat()) {
6684     unsigned NumElem = VT.getVectorNumElements();
6685     int Size = VT.getSizeInBits();
6686     // Special case, this is the only place now where it's allowed to return
6687     // a vector_shuffle operation without using a target specific node, because
6688     // *hopefully* it will be optimized away by the dag combiner. FIXME: should
6689     // this be moved to DAGCombine instead?
6690     if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
6691       return Op;
6692
6693     // Use vbroadcast whenever the splat comes from a foldable load
6694     SDValue LD = isVectorBroadcast(Op, Subtarget->hasAVX2());
6695     if (Subtarget->hasAVX() && LD.getNode())
6696       return DAG.getNode(X86ISD::VBROADCAST, dl, VT, LD);
6697
6698     // Handle splats by matching through known shuffle masks
6699     if ((Size == 128 && NumElem <= 4) ||
6700         (Size == 256 && NumElem < 8))
6701       return SDValue();
6702
6703     // All remaning splats are promoted to target supported vector shuffles.
6704     return PromoteSplat(SVOp, DAG);
6705   }
6706
6707   // If the shuffle can be profitably rewritten as a narrower shuffle, then
6708   // do it!
6709   if (VT == MVT::v8i16 || VT == MVT::v16i8) {
6710     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6711     if (NewOp.getNode())
6712       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
6713   } else if ((VT == MVT::v4i32 ||
6714              (VT == MVT::v4f32 && Subtarget->hasXMMInt()))) {
6715     // FIXME: Figure out a cleaner way to do this.
6716     // Try to make use of movq to zero out the top part.
6717     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
6718       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6719       if (NewOp.getNode()) {
6720         if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
6721           return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
6722                               DAG, Subtarget, dl);
6723       }
6724     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
6725       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
6726       if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
6727         return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
6728                             DAG, Subtarget, dl);
6729     }
6730   }
6731   return SDValue();
6732 }
6733
6734 SDValue
6735 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
6736   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
6737   SDValue V1 = Op.getOperand(0);
6738   SDValue V2 = Op.getOperand(1);
6739   EVT VT = Op.getValueType();
6740   DebugLoc dl = Op.getDebugLoc();
6741   unsigned NumElems = VT.getVectorNumElements();
6742   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
6743   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
6744   bool V1IsSplat = false;
6745   bool V2IsSplat = false;
6746   bool HasXMMInt = Subtarget->hasXMMInt();
6747   bool HasAVX2   = Subtarget->hasAVX2();
6748   MachineFunction &MF = DAG.getMachineFunction();
6749   bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
6750
6751   assert(VT.getSizeInBits() != 64 && "Can't lower MMX shuffles");
6752
6753   // Vector shuffle lowering takes 3 steps:
6754   //
6755   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6756   //    narrowing and commutation of operands should be handled.
6757   // 2) Matching of shuffles with known shuffle masks to x86 target specific
6758   //    shuffle nodes.
6759   // 3) Rewriting of unmatched masks into new generic shuffle operations,
6760   //    so the shuffle can be broken into other shuffles and the legalizer can
6761   //    try the lowering again.
6762   //
6763   // The general idea is that no vector_shuffle operation should be left to
6764   // be matched during isel, all of them must be converted to a target specific
6765   // node here.
6766
6767   // Normalize the input vectors. Here splats, zeroed vectors, profitable
6768   // narrowing and commutation of operands should be handled. The actual code
6769   // doesn't include all of those, work in progress...
6770   SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
6771   if (NewOp.getNode())
6772     return NewOp;
6773
6774   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6775   // unpckh_undef). Only use pshufd if speed is more important than size.
6776   if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
6777     return getTargetShuffleNode(getUNPCKLOpcode(VT, HasAVX2), dl, VT, V1, V1,
6778                                 DAG);
6779   if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
6780     return getTargetShuffleNode(getUNPCKHOpcode(VT, HasAVX2), dl, VT, V1, V1,
6781                                 DAG);
6782
6783   if (X86::isMOVDDUPMask(SVOp) && Subtarget->hasSSE3orAVX() &&
6784       V2IsUndef && RelaxedMayFoldVectorLoad(V1))
6785     return getMOVDDup(Op, dl, V1, DAG);
6786
6787   if (X86::isMOVHLPS_v_undef_Mask(SVOp))
6788     return getMOVHighToLow(Op, dl, DAG);
6789
6790   // Use to match splats
6791   if (HasXMMInt && X86::isUNPCKHMask(SVOp, HasAVX2) && V2IsUndef &&
6792       (VT == MVT::v2f64 || VT == MVT::v2i64))
6793     return getTargetShuffleNode(getUNPCKHOpcode(VT, HasAVX2), dl, VT, V1, V1,
6794                                 DAG);
6795
6796   if (X86::isPSHUFDMask(SVOp)) {
6797     // The actual implementation will match the mask in the if above and then
6798     // during isel it can match several different instructions, not only pshufd
6799     // as its name says, sad but true, emulate the behavior for now...
6800     if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6801         return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6802
6803     unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6804
6805     if (HasXMMInt && (VT == MVT::v4f32 || VT == MVT::v4i32))
6806       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6807
6808     return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V1,
6809                                 TargetMask, DAG);
6810   }
6811
6812   // Check if this can be converted into a logical shift.
6813   bool isLeft = false;
6814   unsigned ShAmt = 0;
6815   SDValue ShVal;
6816   bool isShift = HasXMMInt && isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
6817   if (isShift && ShVal.hasOneUse()) {
6818     // If the shifted value has multiple uses, it may be cheaper to use
6819     // v_set0 + movlhps or movhlps, etc.
6820     EVT EltVT = VT.getVectorElementType();
6821     ShAmt *= EltVT.getSizeInBits();
6822     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6823   }
6824
6825   if (X86::isMOVLMask(SVOp)) {
6826     if (V1IsUndef)
6827       return V2;
6828     if (ISD::isBuildVectorAllZeros(V1.getNode()))
6829       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
6830     if (!X86::isMOVLPMask(SVOp)) {
6831       if (HasXMMInt && (VT == MVT::v2i64 || VT == MVT::v2f64))
6832         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6833
6834       if (VT == MVT::v4i32 || VT == MVT::v4f32)
6835         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6836     }
6837   }
6838
6839   // FIXME: fold these into legal mask.
6840   if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp, HasAVX2))
6841     return getMOVLowToHigh(Op, dl, DAG, HasXMMInt);
6842
6843   if (X86::isMOVHLPSMask(SVOp))
6844     return getMOVHighToLow(Op, dl, DAG);
6845
6846   if (X86::isMOVSHDUPMask(SVOp, Subtarget))
6847     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
6848
6849   if (X86::isMOVSLDUPMask(SVOp, Subtarget))
6850     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
6851
6852   if (X86::isMOVLPMask(SVOp))
6853     return getMOVLP(Op, dl, DAG, HasXMMInt);
6854
6855   if (ShouldXformToMOVHLPS(SVOp) ||
6856       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6857     return CommuteVectorShuffle(SVOp, DAG);
6858
6859   if (isShift) {
6860     // No better options. Use a vshl / vsrl.
6861     EVT EltVT = VT.getVectorElementType();
6862     ShAmt *= EltVT.getSizeInBits();
6863     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6864   }
6865
6866   bool Commuted = false;
6867   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
6868   // 1,1,1,1 -> v8i16 though.
6869   V1IsSplat = isSplatVector(V1.getNode());
6870   V2IsSplat = isSplatVector(V2.getNode());
6871
6872   // Canonicalize the splat or undef, if present, to be on the RHS.
6873   if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
6874     Op = CommuteVectorShuffle(SVOp, DAG);
6875     SVOp = cast<ShuffleVectorSDNode>(Op);
6876     V1 = SVOp->getOperand(0);
6877     V2 = SVOp->getOperand(1);
6878     std::swap(V1IsSplat, V2IsSplat);
6879     std::swap(V1IsUndef, V2IsUndef);
6880     Commuted = true;
6881   }
6882
6883   if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6884     // Shuffling low element of v1 into undef, just return v1.
6885     if (V2IsUndef)
6886       return V1;
6887     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6888     // the instruction selector will not match, so get a canonical MOVL with
6889     // swapped operands to undo the commute.
6890     return getMOVL(DAG, dl, VT, V2, V1);
6891   }
6892
6893   if (X86::isUNPCKLMask(SVOp, HasAVX2))
6894     return getTargetShuffleNode(getUNPCKLOpcode(VT, HasAVX2), dl, VT, V1, V2,
6895                                 DAG);
6896
6897   if (X86::isUNPCKHMask(SVOp, HasAVX2))
6898     return getTargetShuffleNode(getUNPCKHOpcode(VT, HasAVX2), dl, VT, V1, V2,
6899                                 DAG);
6900
6901   if (V2IsSplat) {
6902     // Normalize mask so all entries that point to V2 points to its first
6903     // element then try to match unpck{h|l} again. If match, return a
6904     // new vector_shuffle with the corrected mask.
6905     SDValue NewMask = NormalizeMask(SVOp, DAG);
6906     ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6907     if (NSVOp != SVOp) {
6908       if (X86::isUNPCKLMask(NSVOp, HasAVX2, true)) {
6909         return NewMask;
6910       } else if (X86::isUNPCKHMask(NSVOp, HasAVX2, true)) {
6911         return NewMask;
6912       }
6913     }
6914   }
6915
6916   if (Commuted) {
6917     // Commute is back and try unpck* again.
6918     // FIXME: this seems wrong.
6919     SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6920     ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
6921
6922     if (X86::isUNPCKLMask(NewSVOp, HasAVX2))
6923       return getTargetShuffleNode(getUNPCKLOpcode(VT, HasAVX2), dl, VT, V2, V1,
6924                                   DAG);
6925
6926     if (X86::isUNPCKHMask(NewSVOp, HasAVX2))
6927       return getTargetShuffleNode(getUNPCKHOpcode(VT, HasAVX2), dl, VT, V2, V1,
6928                                   DAG);
6929   }
6930
6931   // Normalize the node to match x86 shuffle ops if needed
6932   if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
6933     return CommuteVectorShuffle(SVOp, DAG);
6934
6935   // The checks below are all present in isShuffleMaskLegal, but they are
6936   // inlined here right now to enable us to directly emit target specific
6937   // nodes, and remove one by one until they don't return Op anymore.
6938   SmallVector<int, 16> M;
6939   SVOp->getMask(M);
6940
6941   if (isPALIGNRMask(M, VT, Subtarget->hasSSSE3orAVX()))
6942     return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6943                                 X86::getShufflePALIGNRImmediate(SVOp),
6944                                 DAG);
6945
6946   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6947       SVOp->getSplatIndex() == 0 && V2IsUndef) {
6948     if (VT == MVT::v2f64)
6949       return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
6950     if (VT == MVT::v2i64)
6951       return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6952   }
6953
6954   if (isPSHUFHWMask(M, VT))
6955     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6956                                 X86::getShufflePSHUFHWImmediate(SVOp),
6957                                 DAG);
6958
6959   if (isPSHUFLWMask(M, VT))
6960     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6961                                 X86::getShufflePSHUFLWImmediate(SVOp),
6962                                 DAG);
6963
6964   if (isSHUFPMask(M, VT))
6965     return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
6966                                 X86::getShuffleSHUFImmediate(SVOp), DAG);
6967
6968   if (X86::isUNPCKL_v_undef_Mask(SVOp))
6969     return getTargetShuffleNode(getUNPCKLOpcode(VT, HasAVX2), dl, VT, V1, V1,
6970                                 DAG);
6971   if (X86::isUNPCKH_v_undef_Mask(SVOp))
6972     return getTargetShuffleNode(getUNPCKHOpcode(VT, HasAVX2), dl, VT, V1, V1,
6973                                 DAG);
6974
6975   //===--------------------------------------------------------------------===//
6976   // Generate target specific nodes for 128 or 256-bit shuffles only
6977   // supported in the AVX instruction set.
6978   //
6979
6980   // Handle VMOVDDUPY permutations
6981   if (isMOVDDUPYMask(SVOp, Subtarget))
6982     return getTargetShuffleNode(X86ISD::MOVDDUP, dl, VT, V1, DAG);
6983
6984   // Handle VPERMILPS* permutations
6985   if (isVPERMILPSMask(M, VT, Subtarget))
6986     return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6987                                 getShuffleVPERMILPSImmediate(SVOp), DAG);
6988
6989   // Handle VPERMILPD* permutations
6990   if (isVPERMILPDMask(M, VT, Subtarget))
6991     return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6992                                 getShuffleVPERMILPDImmediate(SVOp), DAG);
6993
6994   // Handle VPERM2F128 permutations
6995   if (isVPERM2F128Mask(M, VT, Subtarget))
6996     return getTargetShuffleNode(X86ISD::VPERM2F128, dl, VT, V1, V2,
6997                                 getShuffleVPERM2F128Immediate(SVOp), DAG);
6998
6999   // Handle VSHUFPSY permutations
7000   if (isVSHUFPSYMask(M, VT, Subtarget))
7001     return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
7002                                 getShuffleVSHUFPSYImmediate(SVOp), DAG);
7003
7004   // Handle VSHUFPDY permutations
7005   if (isVSHUFPDYMask(M, VT, Subtarget))
7006     return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2,
7007                                 getShuffleVSHUFPDYImmediate(SVOp), DAG);
7008
7009   // Try to swap operands in the node to match x86 shuffle ops
7010   if (isCommutedVSHUFPMask(M, VT, Subtarget)) {
7011     // Now we need to commute operands.
7012     SVOp = cast<ShuffleVectorSDNode>(CommuteVectorShuffle(SVOp, DAG));
7013     V1 = SVOp->getOperand(0);
7014     V2 = SVOp->getOperand(1);
7015     unsigned Immediate = (NumElems == 4) ? getShuffleVSHUFPDYImmediate(SVOp):
7016         getShuffleVSHUFPSYImmediate(SVOp);
7017     return getTargetShuffleNode(getSHUFPOpcode(VT), dl, VT, V1, V2, Immediate, DAG);
7018   }
7019
7020   //===--------------------------------------------------------------------===//
7021   // Since no target specific shuffle was selected for this generic one,
7022   // lower it into other known shuffles. FIXME: this isn't true yet, but
7023   // this is the plan.
7024   //
7025
7026   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
7027   if (VT == MVT::v8i16) {
7028     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
7029     if (NewOp.getNode())
7030       return NewOp;
7031   }
7032
7033   if (VT == MVT::v16i8) {
7034     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
7035     if (NewOp.getNode())
7036       return NewOp;
7037   }
7038
7039   // Handle all 128-bit wide vectors with 4 elements, and match them with
7040   // several different shuffle types.
7041   if (NumElems == 4 && VT.getSizeInBits() == 128)
7042     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
7043
7044   // Handle general 256-bit shuffles
7045   if (VT.is256BitVector())
7046     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
7047
7048   return SDValue();
7049 }
7050
7051 SDValue
7052 X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
7053                                                 SelectionDAG &DAG) const {
7054   EVT VT = Op.getValueType();
7055   DebugLoc dl = Op.getDebugLoc();
7056
7057   if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
7058     return SDValue();
7059
7060   if (VT.getSizeInBits() == 8) {
7061     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
7062                                     Op.getOperand(0), Op.getOperand(1));
7063     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7064                                     DAG.getValueType(VT));
7065     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7066   } else if (VT.getSizeInBits() == 16) {
7067     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7068     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
7069     if (Idx == 0)
7070       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7071                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7072                                      DAG.getNode(ISD::BITCAST, dl,
7073                                                  MVT::v4i32,
7074                                                  Op.getOperand(0)),
7075                                      Op.getOperand(1)));
7076     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
7077                                     Op.getOperand(0), Op.getOperand(1));
7078     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
7079                                     DAG.getValueType(VT));
7080     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7081   } else if (VT == MVT::f32) {
7082     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
7083     // the result back to FR32 register. It's only worth matching if the
7084     // result has a single use which is a store or a bitcast to i32.  And in
7085     // the case of a store, it's not worth it if the index is a constant 0,
7086     // because a MOVSSmr can be used instead, which is smaller and faster.
7087     if (!Op.hasOneUse())
7088       return SDValue();
7089     SDNode *User = *Op.getNode()->use_begin();
7090     if ((User->getOpcode() != ISD::STORE ||
7091          (isa<ConstantSDNode>(Op.getOperand(1)) &&
7092           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
7093         (User->getOpcode() != ISD::BITCAST ||
7094          User->getValueType(0) != MVT::i32))
7095       return SDValue();
7096     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7097                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
7098                                               Op.getOperand(0)),
7099                                               Op.getOperand(1));
7100     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
7101   } else if (VT == MVT::i32 || VT == MVT::i64) {
7102     // ExtractPS/pextrq works with constant index.
7103     if (isa<ConstantSDNode>(Op.getOperand(1)))
7104       return Op;
7105   }
7106   return SDValue();
7107 }
7108
7109
7110 SDValue
7111 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
7112                                            SelectionDAG &DAG) const {
7113   if (!isa<ConstantSDNode>(Op.getOperand(1)))
7114     return SDValue();
7115
7116   SDValue Vec = Op.getOperand(0);
7117   EVT VecVT = Vec.getValueType();
7118
7119   // If this is a 256-bit vector result, first extract the 128-bit vector and
7120   // then extract the element from the 128-bit vector.
7121   if (VecVT.getSizeInBits() == 256) {
7122     DebugLoc dl = Op.getNode()->getDebugLoc();
7123     unsigned NumElems = VecVT.getVectorNumElements();
7124     SDValue Idx = Op.getOperand(1);
7125     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
7126
7127     // Get the 128-bit vector.
7128     bool Upper = IdxVal >= NumElems/2;
7129     Vec = Extract128BitVector(Vec,
7130                     DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
7131
7132     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
7133                     Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
7134   }
7135
7136   assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
7137
7138   if (Subtarget->hasSSE41orAVX()) {
7139     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
7140     if (Res.getNode())
7141       return Res;
7142   }
7143
7144   EVT VT = Op.getValueType();
7145   DebugLoc dl = Op.getDebugLoc();
7146   // TODO: handle v16i8.
7147   if (VT.getSizeInBits() == 16) {
7148     SDValue Vec = Op.getOperand(0);
7149     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7150     if (Idx == 0)
7151       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
7152                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
7153                                      DAG.getNode(ISD::BITCAST, dl,
7154                                                  MVT::v4i32, Vec),
7155                                      Op.getOperand(1)));
7156     // Transform it so it match pextrw which produces a 32-bit result.
7157     EVT EltVT = MVT::i32;
7158     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
7159                                     Op.getOperand(0), Op.getOperand(1));
7160     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
7161                                     DAG.getValueType(VT));
7162     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
7163   } else if (VT.getSizeInBits() == 32) {
7164     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7165     if (Idx == 0)
7166       return Op;
7167
7168     // SHUFPS the element to the lowest double word, then movss.
7169     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
7170     EVT VVT = Op.getOperand(0).getValueType();
7171     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7172                                        DAG.getUNDEF(VVT), Mask);
7173     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7174                        DAG.getIntPtrConstant(0));
7175   } else if (VT.getSizeInBits() == 64) {
7176     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
7177     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
7178     //        to match extract_elt for f64.
7179     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
7180     if (Idx == 0)
7181       return Op;
7182
7183     // UNPCKHPD the element to the lowest double word, then movsd.
7184     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
7185     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
7186     int Mask[2] = { 1, -1 };
7187     EVT VVT = Op.getOperand(0).getValueType();
7188     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
7189                                        DAG.getUNDEF(VVT), Mask);
7190     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
7191                        DAG.getIntPtrConstant(0));
7192   }
7193
7194   return SDValue();
7195 }
7196
7197 SDValue
7198 X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
7199                                                SelectionDAG &DAG) const {
7200   EVT VT = Op.getValueType();
7201   EVT EltVT = VT.getVectorElementType();
7202   DebugLoc dl = Op.getDebugLoc();
7203
7204   SDValue N0 = Op.getOperand(0);
7205   SDValue N1 = Op.getOperand(1);
7206   SDValue N2 = Op.getOperand(2);
7207
7208   if (VT.getSizeInBits() == 256)
7209     return SDValue();
7210
7211   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
7212       isa<ConstantSDNode>(N2)) {
7213     unsigned Opc;
7214     if (VT == MVT::v8i16)
7215       Opc = X86ISD::PINSRW;
7216     else if (VT == MVT::v16i8)
7217       Opc = X86ISD::PINSRB;
7218     else
7219       Opc = X86ISD::PINSRB;
7220
7221     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
7222     // argument.
7223     if (N1.getValueType() != MVT::i32)
7224       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7225     if (N2.getValueType() != MVT::i32)
7226       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7227     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
7228   } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
7229     // Bits [7:6] of the constant are the source select.  This will always be
7230     //  zero here.  The DAG Combiner may combine an extract_elt index into these
7231     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
7232     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
7233     // Bits [5:4] of the constant are the destination select.  This is the
7234     //  value of the incoming immediate.
7235     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
7236     //   combine either bitwise AND or insert of float 0.0 to set these bits.
7237     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
7238     // Create this as a scalar to vector..
7239     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
7240     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
7241   } else if ((EltVT == MVT::i32 || EltVT == MVT::i64) && 
7242              isa<ConstantSDNode>(N2)) {
7243     // PINSR* works with constant index.
7244     return Op;
7245   }
7246   return SDValue();
7247 }
7248
7249 SDValue
7250 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
7251   EVT VT = Op.getValueType();
7252   EVT EltVT = VT.getVectorElementType();
7253
7254   DebugLoc dl = Op.getDebugLoc();
7255   SDValue N0 = Op.getOperand(0);
7256   SDValue N1 = Op.getOperand(1);
7257   SDValue N2 = Op.getOperand(2);
7258
7259   // If this is a 256-bit vector result, first extract the 128-bit vector,
7260   // insert the element into the extracted half and then place it back.
7261   if (VT.getSizeInBits() == 256) {
7262     if (!isa<ConstantSDNode>(N2))
7263       return SDValue();
7264
7265     // Get the desired 128-bit vector half.
7266     unsigned NumElems = VT.getVectorNumElements();
7267     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
7268     bool Upper = IdxVal >= NumElems/2;
7269     SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
7270     SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
7271
7272     // Insert the element into the desired half.
7273     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
7274                  N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
7275
7276     // Insert the changed part back to the 256-bit vector
7277     return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
7278   }
7279
7280   if (Subtarget->hasSSE41orAVX())
7281     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
7282
7283   if (EltVT == MVT::i8)
7284     return SDValue();
7285
7286   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
7287     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
7288     // as its second argument.
7289     if (N1.getValueType() != MVT::i32)
7290       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
7291     if (N2.getValueType() != MVT::i32)
7292       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
7293     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
7294   }
7295   return SDValue();
7296 }
7297
7298 SDValue
7299 X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
7300   LLVMContext *Context = DAG.getContext();
7301   DebugLoc dl = Op.getDebugLoc();
7302   EVT OpVT = Op.getValueType();
7303
7304   // If this is a 256-bit vector result, first insert into a 128-bit
7305   // vector and then insert into the 256-bit vector.
7306   if (OpVT.getSizeInBits() > 128) {
7307     // Insert into a 128-bit vector.
7308     EVT VT128 = EVT::getVectorVT(*Context,
7309                                  OpVT.getVectorElementType(),
7310                                  OpVT.getVectorNumElements() / 2);
7311
7312     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
7313
7314     // Insert the 128-bit vector.
7315     return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
7316                               DAG.getConstant(0, MVT::i32),
7317                               DAG, dl);
7318   }
7319
7320   if (Op.getValueType() == MVT::v1i64 &&
7321       Op.getOperand(0).getValueType() == MVT::i64)
7322     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
7323
7324   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
7325   assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
7326          "Expected an SSE type!");
7327   return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
7328                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
7329 }
7330
7331 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
7332 // a simple subregister reference or explicit instructions to grab
7333 // upper bits of a vector.
7334 SDValue
7335 X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7336   if (Subtarget->hasAVX()) {
7337     DebugLoc dl = Op.getNode()->getDebugLoc();
7338     SDValue Vec = Op.getNode()->getOperand(0);
7339     SDValue Idx = Op.getNode()->getOperand(1);
7340
7341     if (Op.getNode()->getValueType(0).getSizeInBits() == 128
7342         && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
7343         return Extract128BitVector(Vec, Idx, DAG, dl);
7344     }
7345   }
7346   return SDValue();
7347 }
7348
7349 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
7350 // simple superregister reference or explicit instructions to insert
7351 // the upper bits of a vector.
7352 SDValue
7353 X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
7354   if (Subtarget->hasAVX()) {
7355     DebugLoc dl = Op.getNode()->getDebugLoc();
7356     SDValue Vec = Op.getNode()->getOperand(0);
7357     SDValue SubVec = Op.getNode()->getOperand(1);
7358     SDValue Idx = Op.getNode()->getOperand(2);
7359
7360     if (Op.getNode()->getValueType(0).getSizeInBits() == 256
7361         && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
7362       return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
7363     }
7364   }
7365   return SDValue();
7366 }
7367
7368 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
7369 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
7370 // one of the above mentioned nodes. It has to be wrapped because otherwise
7371 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
7372 // be used to form addressing mode. These wrapped nodes will be selected
7373 // into MOV32ri.
7374 SDValue
7375 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
7376   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
7377
7378   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7379   // global base reg.
7380   unsigned char OpFlag = 0;
7381   unsigned WrapperKind = X86ISD::Wrapper;
7382   CodeModel::Model M = getTargetMachine().getCodeModel();
7383
7384   if (Subtarget->isPICStyleRIPRel() &&
7385       (M == CodeModel::Small || M == CodeModel::Kernel))
7386     WrapperKind = X86ISD::WrapperRIP;
7387   else if (Subtarget->isPICStyleGOT())
7388     OpFlag = X86II::MO_GOTOFF;
7389   else if (Subtarget->isPICStyleStubPIC())
7390     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7391
7392   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
7393                                              CP->getAlignment(),
7394                                              CP->getOffset(), OpFlag);
7395   DebugLoc DL = CP->getDebugLoc();
7396   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7397   // With PIC, the address is actually $g + Offset.
7398   if (OpFlag) {
7399     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7400                          DAG.getNode(X86ISD::GlobalBaseReg,
7401                                      DebugLoc(), getPointerTy()),
7402                          Result);
7403   }
7404
7405   return Result;
7406 }
7407
7408 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
7409   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
7410
7411   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7412   // global base reg.
7413   unsigned char OpFlag = 0;
7414   unsigned WrapperKind = X86ISD::Wrapper;
7415   CodeModel::Model M = getTargetMachine().getCodeModel();
7416
7417   if (Subtarget->isPICStyleRIPRel() &&
7418       (M == CodeModel::Small || M == CodeModel::Kernel))
7419     WrapperKind = X86ISD::WrapperRIP;
7420   else if (Subtarget->isPICStyleGOT())
7421     OpFlag = X86II::MO_GOTOFF;
7422   else if (Subtarget->isPICStyleStubPIC())
7423     OpFlag = X86II::MO_PIC_BASE_OFFSET;
7424
7425   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
7426                                           OpFlag);
7427   DebugLoc DL = JT->getDebugLoc();
7428   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7429
7430   // With PIC, the address is actually $g + Offset.
7431   if (OpFlag)
7432     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7433                          DAG.getNode(X86ISD::GlobalBaseReg,
7434                                      DebugLoc(), getPointerTy()),
7435                          Result);
7436
7437   return Result;
7438 }
7439
7440 SDValue
7441 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
7442   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
7443
7444   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7445   // global base reg.
7446   unsigned char OpFlag = 0;
7447   unsigned WrapperKind = X86ISD::Wrapper;
7448   CodeModel::Model M = getTargetMachine().getCodeModel();
7449
7450   if (Subtarget->isPICStyleRIPRel() &&
7451       (M == CodeModel::Small || M == CodeModel::Kernel)) {
7452     if (Subtarget->isTargetDarwin() || Subtarget->isTargetELF())
7453       OpFlag = X86II::MO_GOTPCREL;
7454     WrapperKind = X86ISD::WrapperRIP;
7455   } else if (Subtarget->isPICStyleGOT()) {
7456     OpFlag = X86II::MO_GOT;
7457   } else if (Subtarget->isPICStyleStubPIC()) {
7458     OpFlag = X86II::MO_DARWIN_NONLAZY_PIC_BASE;
7459   } else if (Subtarget->isPICStyleStubNoDynamic()) {
7460     OpFlag = X86II::MO_DARWIN_NONLAZY;
7461   }
7462
7463   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
7464
7465   DebugLoc DL = Op.getDebugLoc();
7466   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7467
7468
7469   // With PIC, the address is actually $g + Offset.
7470   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
7471       !Subtarget->is64Bit()) {
7472     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7473                          DAG.getNode(X86ISD::GlobalBaseReg,
7474                                      DebugLoc(), getPointerTy()),
7475                          Result);
7476   }
7477
7478   // For symbols that require a load from a stub to get the address, emit the
7479   // load.
7480   if (isGlobalStubReference(OpFlag))
7481     Result = DAG.getLoad(getPointerTy(), DL, DAG.getEntryNode(), Result,
7482                          MachinePointerInfo::getGOT(), false, false, false, 0);
7483
7484   return Result;
7485 }
7486
7487 SDValue
7488 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
7489   // Create the TargetBlockAddressAddress node.
7490   unsigned char OpFlags =
7491     Subtarget->ClassifyBlockAddressReference();
7492   CodeModel::Model M = getTargetMachine().getCodeModel();
7493   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
7494   DebugLoc dl = Op.getDebugLoc();
7495   SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
7496                                        /*isTarget=*/true, OpFlags);
7497
7498   if (Subtarget->isPICStyleRIPRel() &&
7499       (M == CodeModel::Small || M == CodeModel::Kernel))
7500     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7501   else
7502     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7503
7504   // With PIC, the address is actually $g + Offset.
7505   if (isGlobalRelativeToPICBase(OpFlags)) {
7506     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7507                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7508                          Result);
7509   }
7510
7511   return Result;
7512 }
7513
7514 SDValue
7515 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
7516                                       int64_t Offset,
7517                                       SelectionDAG &DAG) const {
7518   // Create the TargetGlobalAddress node, folding in the constant
7519   // offset if it is legal.
7520   unsigned char OpFlags =
7521     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
7522   CodeModel::Model M = getTargetMachine().getCodeModel();
7523   SDValue Result;
7524   if (OpFlags == X86II::MO_NO_FLAG &&
7525       X86::isOffsetSuitableForCodeModel(Offset, M)) {
7526     // A direct static reference to a global.
7527     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
7528     Offset = 0;
7529   } else {
7530     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
7531   }
7532
7533   if (Subtarget->isPICStyleRIPRel() &&
7534       (M == CodeModel::Small || M == CodeModel::Kernel))
7535     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
7536   else
7537     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
7538
7539   // With PIC, the address is actually $g + Offset.
7540   if (isGlobalRelativeToPICBase(OpFlags)) {
7541     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
7542                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
7543                          Result);
7544   }
7545
7546   // For globals that require a load from a stub to get the address, emit the
7547   // load.
7548   if (isGlobalStubReference(OpFlags))
7549     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
7550                          MachinePointerInfo::getGOT(), false, false, false, 0);
7551
7552   // If there was a non-zero offset that we didn't fold, create an explicit
7553   // addition for it.
7554   if (Offset != 0)
7555     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
7556                          DAG.getConstant(Offset, getPointerTy()));
7557
7558   return Result;
7559 }
7560
7561 SDValue
7562 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
7563   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
7564   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
7565   return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
7566 }
7567
7568 static SDValue
7569 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
7570            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
7571            unsigned char OperandFlags) {
7572   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7573   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7574   DebugLoc dl = GA->getDebugLoc();
7575   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7576                                            GA->getValueType(0),
7577                                            GA->getOffset(),
7578                                            OperandFlags);
7579   if (InFlag) {
7580     SDValue Ops[] = { Chain,  TGA, *InFlag };
7581     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
7582   } else {
7583     SDValue Ops[]  = { Chain, TGA };
7584     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
7585   }
7586
7587   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
7588   MFI->setAdjustsStack(true);
7589
7590   SDValue Flag = Chain.getValue(1);
7591   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
7592 }
7593
7594 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
7595 static SDValue
7596 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7597                                 const EVT PtrVT) {
7598   SDValue InFlag;
7599   DebugLoc dl = GA->getDebugLoc();  // ? function entry point might be better
7600   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
7601                                      DAG.getNode(X86ISD::GlobalBaseReg,
7602                                                  DebugLoc(), PtrVT), InFlag);
7603   InFlag = Chain.getValue(1);
7604
7605   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
7606 }
7607
7608 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
7609 static SDValue
7610 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7611                                 const EVT PtrVT) {
7612   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
7613                     X86::RAX, X86II::MO_TLSGD);
7614 }
7615
7616 // Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
7617 // "local exec" model.
7618 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
7619                                    const EVT PtrVT, TLSModel::Model model,
7620                                    bool is64Bit) {
7621   DebugLoc dl = GA->getDebugLoc();
7622
7623   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
7624   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
7625                                                          is64Bit ? 257 : 256));
7626
7627   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
7628                                       DAG.getIntPtrConstant(0),
7629                                       MachinePointerInfo(Ptr),
7630                                       false, false, false, 0);
7631
7632   unsigned char OperandFlags = 0;
7633   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
7634   // initialexec.
7635   unsigned WrapperKind = X86ISD::Wrapper;
7636   if (model == TLSModel::LocalExec) {
7637     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
7638   } else if (is64Bit) {
7639     assert(model == TLSModel::InitialExec);
7640     OperandFlags = X86II::MO_GOTTPOFF;
7641     WrapperKind = X86ISD::WrapperRIP;
7642   } else {
7643     assert(model == TLSModel::InitialExec);
7644     OperandFlags = X86II::MO_INDNTPOFF;
7645   }
7646
7647   // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
7648   // exec)
7649   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
7650                                            GA->getValueType(0),
7651                                            GA->getOffset(), OperandFlags);
7652   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
7653
7654   if (model == TLSModel::InitialExec)
7655     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
7656                          MachinePointerInfo::getGOT(), false, false, false, 0);
7657
7658   // The address of the thread local variable is the add of the thread
7659   // pointer with the offset of the variable.
7660   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
7661 }
7662
7663 SDValue
7664 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
7665
7666   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
7667   const GlobalValue *GV = GA->getGlobal();
7668
7669   if (Subtarget->isTargetELF()) {
7670     // TODO: implement the "local dynamic" model
7671     // TODO: implement the "initial exec"model for pic executables
7672
7673     // If GV is an alias then use the aliasee for determining
7674     // thread-localness.
7675     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
7676       GV = GA->resolveAliasedGlobal(false);
7677
7678     TLSModel::Model model
7679       = getTLSModel(GV, getTargetMachine().getRelocationModel());
7680
7681     switch (model) {
7682       case TLSModel::GeneralDynamic:
7683       case TLSModel::LocalDynamic: // not implemented
7684         if (Subtarget->is64Bit())
7685           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
7686         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
7687
7688       case TLSModel::InitialExec:
7689       case TLSModel::LocalExec:
7690         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
7691                                    Subtarget->is64Bit());
7692     }
7693   } else if (Subtarget->isTargetDarwin()) {
7694     // Darwin only has one model of TLS.  Lower to that.
7695     unsigned char OpFlag = 0;
7696     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
7697                            X86ISD::WrapperRIP : X86ISD::Wrapper;
7698
7699     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
7700     // global base reg.
7701     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
7702                   !Subtarget->is64Bit();
7703     if (PIC32)
7704       OpFlag = X86II::MO_TLVP_PIC_BASE;
7705     else
7706       OpFlag = X86II::MO_TLVP;
7707     DebugLoc DL = Op.getDebugLoc();
7708     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
7709                                                 GA->getValueType(0),
7710                                                 GA->getOffset(), OpFlag);
7711     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
7712
7713     // With PIC32, the address is actually $g + Offset.
7714     if (PIC32)
7715       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
7716                            DAG.getNode(X86ISD::GlobalBaseReg,
7717                                        DebugLoc(), getPointerTy()),
7718                            Offset);
7719
7720     // Lowering the machine isd will make sure everything is in the right
7721     // location.
7722     SDValue Chain = DAG.getEntryNode();
7723     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
7724     SDValue Args[] = { Chain, Offset };
7725     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
7726
7727     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
7728     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7729     MFI->setAdjustsStack(true);
7730
7731     // And our return value (tls address) is in the standard call return value
7732     // location.
7733     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
7734     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy(),
7735                               Chain.getValue(1));
7736   }
7737
7738   assert(false &&
7739          "TLS not implemented for this target.");
7740
7741   llvm_unreachable("Unreachable");
7742   return SDValue();
7743 }
7744
7745
7746 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
7747 /// take a 2 x i32 value to shift plus a shift amount.
7748 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
7749   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
7750   EVT VT = Op.getValueType();
7751   unsigned VTBits = VT.getSizeInBits();
7752   DebugLoc dl = Op.getDebugLoc();
7753   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
7754   SDValue ShOpLo = Op.getOperand(0);
7755   SDValue ShOpHi = Op.getOperand(1);
7756   SDValue ShAmt  = Op.getOperand(2);
7757   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
7758                                      DAG.getConstant(VTBits - 1, MVT::i8))
7759                        : DAG.getConstant(0, VT);
7760
7761   SDValue Tmp2, Tmp3;
7762   if (Op.getOpcode() == ISD::SHL_PARTS) {
7763     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
7764     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
7765   } else {
7766     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
7767     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
7768   }
7769
7770   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
7771                                 DAG.getConstant(VTBits, MVT::i8));
7772   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
7773                              AndNode, DAG.getConstant(0, MVT::i8));
7774
7775   SDValue Hi, Lo;
7776   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
7777   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
7778   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
7779
7780   if (Op.getOpcode() == ISD::SHL_PARTS) {
7781     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7782     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7783   } else {
7784     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
7785     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7786   }
7787
7788   SDValue Ops[2] = { Lo, Hi };
7789   return DAG.getMergeValues(Ops, 2, dl);
7790 }
7791
7792 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7793                                            SelectionDAG &DAG) const {
7794   EVT SrcVT = Op.getOperand(0).getValueType();
7795
7796   if (SrcVT.isVector())
7797     return SDValue();
7798
7799   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
7800          "Unknown SINT_TO_FP to lower!");
7801
7802   // These are really Legal; return the operand so the caller accepts it as
7803   // Legal.
7804   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
7805     return Op;
7806   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
7807       Subtarget->is64Bit()) {
7808     return Op;
7809   }
7810
7811   DebugLoc dl = Op.getDebugLoc();
7812   unsigned Size = SrcVT.getSizeInBits()/8;
7813   MachineFunction &MF = DAG.getMachineFunction();
7814   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
7815   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7816   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7817                                StackSlot,
7818                                MachinePointerInfo::getFixedStack(SSFI),
7819                                false, false, 0);
7820   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7821 }
7822
7823 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
7824                                      SDValue StackSlot,
7825                                      SelectionDAG &DAG) const {
7826   // Build the FILD
7827   DebugLoc DL = Op.getDebugLoc();
7828   SDVTList Tys;
7829   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
7830   if (useSSE)
7831     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
7832   else
7833     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
7834
7835   unsigned ByteSize = SrcVT.getSizeInBits()/8;
7836
7837   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7838   MachineMemOperand *MMO;
7839   if (FI) {
7840     int SSFI = FI->getIndex();
7841     MMO =
7842       DAG.getMachineFunction()
7843       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7844                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
7845   } else {
7846     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7847     StackSlot = StackSlot.getOperand(1);
7848   }
7849   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
7850   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7851                                            X86ISD::FILD, DL,
7852                                            Tys, Ops, array_lengthof(Ops),
7853                                            SrcVT, MMO);
7854
7855   if (useSSE) {
7856     Chain = Result.getValue(1);
7857     SDValue InFlag = Result.getValue(2);
7858
7859     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7860     // shouldn't be necessary except that RFP cannot be live across
7861     // multiple blocks. When stackifier is fixed, they can be uncoupled.
7862     MachineFunction &MF = DAG.getMachineFunction();
7863     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7864     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
7865     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7866     Tys = DAG.getVTList(MVT::Other);
7867     SDValue Ops[] = {
7868       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7869     };
7870     MachineMemOperand *MMO =
7871       DAG.getMachineFunction()
7872       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7873                             MachineMemOperand::MOStore, SSFISize, SSFISize);
7874
7875     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7876                                     Ops, array_lengthof(Ops),
7877                                     Op.getValueType(), MMO);
7878     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
7879                          MachinePointerInfo::getFixedStack(SSFI),
7880                          false, false, false, 0);
7881   }
7882
7883   return Result;
7884 }
7885
7886 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
7887 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7888                                                SelectionDAG &DAG) const {
7889   // This algorithm is not obvious. Here it is in C code, more or less:
7890   /*
7891     double uint64_to_double( uint32_t hi, uint32_t lo ) {
7892       static const __m128i exp = { 0x4330000045300000ULL, 0 };
7893       static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
7894
7895       // Copy ints to xmm registers.
7896       __m128i xh = _mm_cvtsi32_si128( hi );
7897       __m128i xl = _mm_cvtsi32_si128( lo );
7898
7899       // Combine into low half of a single xmm register.
7900       __m128i x = _mm_unpacklo_epi32( xh, xl );
7901       __m128d d;
7902       double sd;
7903
7904       // Merge in appropriate exponents to give the integer bits the right
7905       // magnitude.
7906       x = _mm_unpacklo_epi32( x, exp );
7907
7908       // Subtract away the biases to deal with the IEEE-754 double precision
7909       // implicit 1.
7910       d = _mm_sub_pd( (__m128d) x, bias );
7911
7912       // All conversions up to here are exact. The correctly rounded result is
7913       // calculated using the current rounding mode using the following
7914       // horizontal add.
7915       d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7916       _mm_store_sd( &sd, d );   // Because we are returning doubles in XMM, this
7917                                 // store doesn't really need to be here (except
7918                                 // maybe to zero the other double)
7919       return sd;
7920     }
7921   */
7922
7923   DebugLoc dl = Op.getDebugLoc();
7924   LLVMContext *Context = DAG.getContext();
7925
7926   // Build some magic constants.
7927   std::vector<Constant*> CV0;
7928   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7929   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7930   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7931   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7932   Constant *C0 = ConstantVector::get(CV0);
7933   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
7934
7935   std::vector<Constant*> CV1;
7936   CV1.push_back(
7937     ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
7938   CV1.push_back(
7939     ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
7940   Constant *C1 = ConstantVector::get(CV1);
7941   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
7942
7943   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7944                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
7945                                         Op.getOperand(0),
7946                                         DAG.getIntPtrConstant(1)));
7947   SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7948                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
7949                                         Op.getOperand(0),
7950                                         DAG.getIntPtrConstant(0)));
7951   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7952   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
7953                               MachinePointerInfo::getConstantPool(),
7954                               false, false, false, 16);
7955   SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
7956   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
7957   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
7958                               MachinePointerInfo::getConstantPool(),
7959                               false, false, false, 16);
7960   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
7961
7962   // Add the halves; easiest way is to swap them into another reg first.
7963   int ShufMask[2] = { 1, -1 };
7964   SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7965                                       DAG.getUNDEF(MVT::v2f64), ShufMask);
7966   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7967   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
7968                      DAG.getIntPtrConstant(0));
7969 }
7970
7971 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
7972 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7973                                                SelectionDAG &DAG) const {
7974   DebugLoc dl = Op.getDebugLoc();
7975   // FP constant to bias correct the final result.
7976   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
7977                                    MVT::f64);
7978
7979   // Load the 32-bit value into an XMM register.
7980   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7981                              Op.getOperand(0));
7982
7983   // Zero out the upper parts of the register.
7984   Load = getShuffleVectorZeroOrUndef(Load, 0, true, Subtarget->hasXMMInt(),
7985                                      DAG);
7986
7987   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7988                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
7989                      DAG.getIntPtrConstant(0));
7990
7991   // Or the load with the bias.
7992   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
7993                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7994                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7995                                                    MVT::v2f64, Load)),
7996                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7997                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7998                                                    MVT::v2f64, Bias)));
7999   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
8000                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
8001                    DAG.getIntPtrConstant(0));
8002
8003   // Subtract the bias.
8004   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
8005
8006   // Handle final rounding.
8007   EVT DestVT = Op.getValueType();
8008
8009   if (DestVT.bitsLT(MVT::f64)) {
8010     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
8011                        DAG.getIntPtrConstant(0));
8012   } else if (DestVT.bitsGT(MVT::f64)) {
8013     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
8014   }
8015
8016   // Handle final rounding.
8017   return Sub;
8018 }
8019
8020 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
8021                                            SelectionDAG &DAG) const {
8022   SDValue N0 = Op.getOperand(0);
8023   DebugLoc dl = Op.getDebugLoc();
8024
8025   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
8026   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
8027   // the optimization here.
8028   if (DAG.SignBitIsZero(N0))
8029     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
8030
8031   EVT SrcVT = N0.getValueType();
8032   EVT DstVT = Op.getValueType();
8033   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
8034     return LowerUINT_TO_FP_i64(Op, DAG);
8035   else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
8036     return LowerUINT_TO_FP_i32(Op, DAG);
8037
8038   // Make a 64-bit buffer, and use it to build an FILD.
8039   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
8040   if (SrcVT == MVT::i32) {
8041     SDValue WordOff = DAG.getConstant(4, getPointerTy());
8042     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
8043                                      getPointerTy(), StackSlot, WordOff);
8044     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8045                                   StackSlot, MachinePointerInfo(),
8046                                   false, false, 0);
8047     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
8048                                   OffsetSlot, MachinePointerInfo(),
8049                                   false, false, 0);
8050     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
8051     return Fild;
8052   }
8053
8054   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
8055   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
8056                                 StackSlot, MachinePointerInfo(),
8057                                false, false, 0);
8058   // For i64 source, we need to add the appropriate power of 2 if the input
8059   // was negative.  This is the same as the optimization in
8060   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
8061   // we must be careful to do the computation in x87 extended precision, not
8062   // in SSE. (The generic code can't know it's OK to do this, or how to.)
8063   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
8064   MachineMemOperand *MMO =
8065     DAG.getMachineFunction()
8066     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8067                           MachineMemOperand::MOLoad, 8, 8);
8068
8069   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
8070   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
8071   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
8072                                          MVT::i64, MMO);
8073
8074   APInt FF(32, 0x5F800000ULL);
8075
8076   // Check whether the sign bit is set.
8077   SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
8078                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
8079                                  ISD::SETLT);
8080
8081   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
8082   SDValue FudgePtr = DAG.getConstantPool(
8083                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
8084                                          getPointerTy());
8085
8086   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
8087   SDValue Zero = DAG.getIntPtrConstant(0);
8088   SDValue Four = DAG.getIntPtrConstant(4);
8089   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
8090                                Zero, Four);
8091   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
8092
8093   // Load the value out, extending it from f32 to f80.
8094   // FIXME: Avoid the extend by constructing the right constant pool?
8095   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
8096                                  FudgePtr, MachinePointerInfo::getConstantPool(),
8097                                  MVT::f32, false, false, 4);
8098   // Extend everything to 80 bits to force it to be done on x87.
8099   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
8100   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
8101 }
8102
8103 std::pair<SDValue,SDValue> X86TargetLowering::
8104 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
8105   DebugLoc DL = Op.getDebugLoc();
8106
8107   EVT DstTy = Op.getValueType();
8108
8109   if (!IsSigned) {
8110     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
8111     DstTy = MVT::i64;
8112   }
8113
8114   assert(DstTy.getSimpleVT() <= MVT::i64 &&
8115          DstTy.getSimpleVT() >= MVT::i16 &&
8116          "Unknown FP_TO_SINT to lower!");
8117
8118   // These are really Legal.
8119   if (DstTy == MVT::i32 &&
8120       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8121     return std::make_pair(SDValue(), SDValue());
8122   if (Subtarget->is64Bit() &&
8123       DstTy == MVT::i64 &&
8124       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
8125     return std::make_pair(SDValue(), SDValue());
8126
8127   // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
8128   // stack slot.
8129   MachineFunction &MF = DAG.getMachineFunction();
8130   unsigned MemSize = DstTy.getSizeInBits()/8;
8131   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8132   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8133
8134
8135
8136   unsigned Opc;
8137   switch (DstTy.getSimpleVT().SimpleTy) {
8138   default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
8139   case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
8140   case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
8141   case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
8142   }
8143
8144   SDValue Chain = DAG.getEntryNode();
8145   SDValue Value = Op.getOperand(0);
8146   EVT TheVT = Op.getOperand(0).getValueType();
8147   if (isScalarFPTypeInSSEReg(TheVT)) {
8148     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
8149     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
8150                          MachinePointerInfo::getFixedStack(SSFI),
8151                          false, false, 0);
8152     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
8153     SDValue Ops[] = {
8154       Chain, StackSlot, DAG.getValueType(TheVT)
8155     };
8156
8157     MachineMemOperand *MMO =
8158       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8159                               MachineMemOperand::MOLoad, MemSize, MemSize);
8160     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
8161                                     DstTy, MMO);
8162     Chain = Value.getValue(1);
8163     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
8164     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8165   }
8166
8167   MachineMemOperand *MMO =
8168     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8169                             MachineMemOperand::MOStore, MemSize, MemSize);
8170
8171   // Build the FP_TO_INT*_IN_MEM
8172   SDValue Ops[] = { Chain, Value, StackSlot };
8173   SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
8174                                          Ops, 3, DstTy, MMO);
8175
8176   return std::make_pair(FIST, StackSlot);
8177 }
8178
8179 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
8180                                            SelectionDAG &DAG) const {
8181   if (Op.getValueType().isVector())
8182     return SDValue();
8183
8184   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
8185   SDValue FIST = Vals.first, StackSlot = Vals.second;
8186   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
8187   if (FIST.getNode() == 0) return Op;
8188
8189   // Load the result.
8190   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8191                      FIST, StackSlot, MachinePointerInfo(),
8192                      false, false, false, 0);
8193 }
8194
8195 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
8196                                            SelectionDAG &DAG) const {
8197   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
8198   SDValue FIST = Vals.first, StackSlot = Vals.second;
8199   assert(FIST.getNode() && "Unexpected failure");
8200
8201   // Load the result.
8202   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
8203                      FIST, StackSlot, MachinePointerInfo(),
8204                      false, false, false, 0);
8205 }
8206
8207 SDValue X86TargetLowering::LowerFABS(SDValue Op,
8208                                      SelectionDAG &DAG) const {
8209   LLVMContext *Context = DAG.getContext();
8210   DebugLoc dl = Op.getDebugLoc();
8211   EVT VT = Op.getValueType();
8212   EVT EltVT = VT;
8213   if (VT.isVector())
8214     EltVT = VT.getVectorElementType();
8215   std::vector<Constant*> CV;
8216   if (EltVT == MVT::f64) {
8217     Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
8218     CV.push_back(C);
8219     CV.push_back(C);
8220   } else {
8221     Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
8222     CV.push_back(C);
8223     CV.push_back(C);
8224     CV.push_back(C);
8225     CV.push_back(C);
8226   }
8227   Constant *C = ConstantVector::get(CV);
8228   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8229   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8230                              MachinePointerInfo::getConstantPool(),
8231                              false, false, false, 16);
8232   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
8233 }
8234
8235 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
8236   LLVMContext *Context = DAG.getContext();
8237   DebugLoc dl = Op.getDebugLoc();
8238   EVT VT = Op.getValueType();
8239   EVT EltVT = VT;
8240   if (VT.isVector())
8241     EltVT = VT.getVectorElementType();
8242   std::vector<Constant*> CV;
8243   if (EltVT == MVT::f64) {
8244     Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
8245     CV.push_back(C);
8246     CV.push_back(C);
8247   } else {
8248     Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
8249     CV.push_back(C);
8250     CV.push_back(C);
8251     CV.push_back(C);
8252     CV.push_back(C);
8253   }
8254   Constant *C = ConstantVector::get(CV);
8255   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8256   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8257                              MachinePointerInfo::getConstantPool(),
8258                              false, false, false, 16);
8259   if (VT.isVector()) {
8260     return DAG.getNode(ISD::BITCAST, dl, VT,
8261                        DAG.getNode(ISD::XOR, dl, MVT::v2i64,
8262                     DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
8263                                 Op.getOperand(0)),
8264                     DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
8265   } else {
8266     return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
8267   }
8268 }
8269
8270 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
8271   LLVMContext *Context = DAG.getContext();
8272   SDValue Op0 = Op.getOperand(0);
8273   SDValue Op1 = Op.getOperand(1);
8274   DebugLoc dl = Op.getDebugLoc();
8275   EVT VT = Op.getValueType();
8276   EVT SrcVT = Op1.getValueType();
8277
8278   // If second operand is smaller, extend it first.
8279   if (SrcVT.bitsLT(VT)) {
8280     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
8281     SrcVT = VT;
8282   }
8283   // And if it is bigger, shrink it first.
8284   if (SrcVT.bitsGT(VT)) {
8285     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
8286     SrcVT = VT;
8287   }
8288
8289   // At this point the operands and the result should have the same
8290   // type, and that won't be f80 since that is not custom lowered.
8291
8292   // First get the sign bit of second operand.
8293   std::vector<Constant*> CV;
8294   if (SrcVT == MVT::f64) {
8295     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
8296     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8297   } else {
8298     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
8299     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8300     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8301     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8302   }
8303   Constant *C = ConstantVector::get(CV);
8304   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8305   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
8306                               MachinePointerInfo::getConstantPool(),
8307                               false, false, false, 16);
8308   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
8309
8310   // Shift sign bit right or left if the two operands have different types.
8311   if (SrcVT.bitsGT(VT)) {
8312     // Op0 is MVT::f32, Op1 is MVT::f64.
8313     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
8314     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
8315                           DAG.getConstant(32, MVT::i32));
8316     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
8317     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
8318                           DAG.getIntPtrConstant(0));
8319   }
8320
8321   // Clear first operand sign bit.
8322   CV.clear();
8323   if (VT == MVT::f64) {
8324     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
8325     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
8326   } else {
8327     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
8328     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8329     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8330     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
8331   }
8332   C = ConstantVector::get(CV);
8333   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
8334   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
8335                               MachinePointerInfo::getConstantPool(),
8336                               false, false, false, 16);
8337   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
8338
8339   // Or the value with the sign bit.
8340   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
8341 }
8342
8343 SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
8344   SDValue N0 = Op.getOperand(0);
8345   DebugLoc dl = Op.getDebugLoc();
8346   EVT VT = Op.getValueType();
8347
8348   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
8349   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
8350                                   DAG.getConstant(1, VT));
8351   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
8352 }
8353
8354 /// Emit nodes that will be selected as "test Op0,Op0", or something
8355 /// equivalent.
8356 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
8357                                     SelectionDAG &DAG) const {
8358   DebugLoc dl = Op.getDebugLoc();
8359
8360   // CF and OF aren't always set the way we want. Determine which
8361   // of these we need.
8362   bool NeedCF = false;
8363   bool NeedOF = false;
8364   switch (X86CC) {
8365   default: break;
8366   case X86::COND_A: case X86::COND_AE:
8367   case X86::COND_B: case X86::COND_BE:
8368     NeedCF = true;
8369     break;
8370   case X86::COND_G: case X86::COND_GE:
8371   case X86::COND_L: case X86::COND_LE:
8372   case X86::COND_O: case X86::COND_NO:
8373     NeedOF = true;
8374     break;
8375   }
8376
8377   // See if we can use the EFLAGS value from the operand instead of
8378   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
8379   // we prove that the arithmetic won't overflow, we can't use OF or CF.
8380   if (Op.getResNo() != 0 || NeedOF || NeedCF)
8381     // Emit a CMP with 0, which is the TEST pattern.
8382     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8383                        DAG.getConstant(0, Op.getValueType()));
8384
8385   unsigned Opcode = 0;
8386   unsigned NumOperands = 0;
8387   switch (Op.getNode()->getOpcode()) {
8388   case ISD::ADD:
8389     // Due to an isel shortcoming, be conservative if this add is likely to be
8390     // selected as part of a load-modify-store instruction. When the root node
8391     // in a match is a store, isel doesn't know how to remap non-chain non-flag
8392     // uses of other nodes in the match, such as the ADD in this case. This
8393     // leads to the ADD being left around and reselected, with the result being
8394     // two adds in the output.  Alas, even if none our users are stores, that
8395     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
8396     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
8397     // climbing the DAG back to the root, and it doesn't seem to be worth the
8398     // effort.
8399     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8400          UE = Op.getNode()->use_end(); UI != UE; ++UI)
8401       if (UI->getOpcode() != ISD::CopyToReg &&
8402           UI->getOpcode() != ISD::SETCC &&
8403           UI->getOpcode() != ISD::STORE)
8404         goto default_case;
8405
8406     if (ConstantSDNode *C =
8407         dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
8408       // An add of one will be selected as an INC.
8409       if (C->getAPIntValue() == 1) {
8410         Opcode = X86ISD::INC;
8411         NumOperands = 1;
8412         break;
8413       }
8414
8415       // An add of negative one (subtract of one) will be selected as a DEC.
8416       if (C->getAPIntValue().isAllOnesValue()) {
8417         Opcode = X86ISD::DEC;
8418         NumOperands = 1;
8419         break;
8420       }
8421     }
8422
8423     // Otherwise use a regular EFLAGS-setting add.
8424     Opcode = X86ISD::ADD;
8425     NumOperands = 2;
8426     break;
8427   case ISD::AND: {
8428     // If the primary and result isn't used, don't bother using X86ISD::AND,
8429     // because a TEST instruction will be better.
8430     bool NonFlagUse = false;
8431     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8432            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
8433       SDNode *User = *UI;
8434       unsigned UOpNo = UI.getOperandNo();
8435       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
8436         // Look pass truncate.
8437         UOpNo = User->use_begin().getOperandNo();
8438         User = *User->use_begin();
8439       }
8440
8441       if (User->getOpcode() != ISD::BRCOND &&
8442           User->getOpcode() != ISD::SETCC &&
8443           (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
8444         NonFlagUse = true;
8445         break;
8446       }
8447     }
8448
8449     if (!NonFlagUse)
8450       break;
8451   }
8452     // FALL THROUGH
8453   case ISD::SUB:
8454   case ISD::OR:
8455   case ISD::XOR:
8456     // Due to the ISEL shortcoming noted above, be conservative if this op is
8457     // likely to be selected as part of a load-modify-store instruction.
8458     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
8459            UE = Op.getNode()->use_end(); UI != UE; ++UI)
8460       if (UI->getOpcode() == ISD::STORE)
8461         goto default_case;
8462
8463     // Otherwise use a regular EFLAGS-setting instruction.
8464     switch (Op.getNode()->getOpcode()) {
8465     default: llvm_unreachable("unexpected operator!");
8466     case ISD::SUB: Opcode = X86ISD::SUB; break;
8467     case ISD::OR:  Opcode = X86ISD::OR;  break;
8468     case ISD::XOR: Opcode = X86ISD::XOR; break;
8469     case ISD::AND: Opcode = X86ISD::AND; break;
8470     }
8471
8472     NumOperands = 2;
8473     break;
8474   case X86ISD::ADD:
8475   case X86ISD::SUB:
8476   case X86ISD::INC:
8477   case X86ISD::DEC:
8478   case X86ISD::OR:
8479   case X86ISD::XOR:
8480   case X86ISD::AND:
8481     return SDValue(Op.getNode(), 1);
8482   default:
8483   default_case:
8484     break;
8485   }
8486
8487   if (Opcode == 0)
8488     // Emit a CMP with 0, which is the TEST pattern.
8489     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
8490                        DAG.getConstant(0, Op.getValueType()));
8491
8492   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
8493   SmallVector<SDValue, 4> Ops;
8494   for (unsigned i = 0; i != NumOperands; ++i)
8495     Ops.push_back(Op.getOperand(i));
8496
8497   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
8498   DAG.ReplaceAllUsesWith(Op, New);
8499   return SDValue(New.getNode(), 1);
8500 }
8501
8502 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
8503 /// equivalent.
8504 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
8505                                    SelectionDAG &DAG) const {
8506   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
8507     if (C->getAPIntValue() == 0)
8508       return EmitTest(Op0, X86CC, DAG);
8509
8510   DebugLoc dl = Op0.getDebugLoc();
8511   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
8512 }
8513
8514 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
8515 /// if it's possible.
8516 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
8517                                      DebugLoc dl, SelectionDAG &DAG) const {
8518   SDValue Op0 = And.getOperand(0);
8519   SDValue Op1 = And.getOperand(1);
8520   if (Op0.getOpcode() == ISD::TRUNCATE)
8521     Op0 = Op0.getOperand(0);
8522   if (Op1.getOpcode() == ISD::TRUNCATE)
8523     Op1 = Op1.getOperand(0);
8524
8525   SDValue LHS, RHS;
8526   if (Op1.getOpcode() == ISD::SHL)
8527     std::swap(Op0, Op1);
8528   if (Op0.getOpcode() == ISD::SHL) {
8529     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
8530       if (And00C->getZExtValue() == 1) {
8531         // If we looked past a truncate, check that it's only truncating away
8532         // known zeros.
8533         unsigned BitWidth = Op0.getValueSizeInBits();
8534         unsigned AndBitWidth = And.getValueSizeInBits();
8535         if (BitWidth > AndBitWidth) {
8536           APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
8537           DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
8538           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
8539             return SDValue();
8540         }
8541         LHS = Op1;
8542         RHS = Op0.getOperand(1);
8543       }
8544   } else if (Op1.getOpcode() == ISD::Constant) {
8545     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
8546     SDValue AndLHS = Op0;
8547     if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
8548       LHS = AndLHS.getOperand(0);
8549       RHS = AndLHS.getOperand(1);
8550     }
8551   }
8552
8553   if (LHS.getNode()) {
8554     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
8555     // instruction.  Since the shift amount is in-range-or-undefined, we know
8556     // that doing a bittest on the i32 value is ok.  We extend to i32 because
8557     // the encoding for the i16 version is larger than the i32 version.
8558     // Also promote i16 to i32 for performance / code size reason.
8559     if (LHS.getValueType() == MVT::i8 ||
8560         LHS.getValueType() == MVT::i16)
8561       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
8562
8563     // If the operand types disagree, extend the shift amount to match.  Since
8564     // BT ignores high bits (like shifts) we can use anyextend.
8565     if (LHS.getValueType() != RHS.getValueType())
8566       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
8567
8568     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
8569     unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
8570     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8571                        DAG.getConstant(Cond, MVT::i8), BT);
8572   }
8573
8574   return SDValue();
8575 }
8576
8577 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
8578
8579   if (Op.getValueType().isVector()) return LowerVSETCC(Op, DAG);
8580
8581   assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
8582   SDValue Op0 = Op.getOperand(0);
8583   SDValue Op1 = Op.getOperand(1);
8584   DebugLoc dl = Op.getDebugLoc();
8585   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
8586
8587   // Optimize to BT if possible.
8588   // Lower (X & (1 << N)) == 0 to BT(X, N).
8589   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
8590   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
8591   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
8592       Op1.getOpcode() == ISD::Constant &&
8593       cast<ConstantSDNode>(Op1)->isNullValue() &&
8594       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8595     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
8596     if (NewSetCC.getNode())
8597       return NewSetCC;
8598   }
8599
8600   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
8601   // these.
8602   if (Op1.getOpcode() == ISD::Constant &&
8603       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
8604        cast<ConstantSDNode>(Op1)->isNullValue()) &&
8605       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
8606
8607     // If the input is a setcc, then reuse the input setcc or use a new one with
8608     // the inverted condition.
8609     if (Op0.getOpcode() == X86ISD::SETCC) {
8610       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
8611       bool Invert = (CC == ISD::SETNE) ^
8612         cast<ConstantSDNode>(Op1)->isNullValue();
8613       if (!Invert) return Op0;
8614
8615       CCode = X86::GetOppositeBranchCondition(CCode);
8616       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8617                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
8618     }
8619   }
8620
8621   bool isFP = Op1.getValueType().isFloatingPoint();
8622   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
8623   if (X86CC == X86::COND_INVALID)
8624     return SDValue();
8625
8626   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
8627   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8628                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
8629 }
8630
8631 // Lower256IntVSETCC - Break a VSETCC 256-bit integer VSETCC into two new 128
8632 // ones, and then concatenate the result back.
8633 static SDValue Lower256IntVSETCC(SDValue Op, SelectionDAG &DAG) {
8634   EVT VT = Op.getValueType();
8635
8636   assert(VT.getSizeInBits() == 256 && Op.getOpcode() == ISD::SETCC &&
8637          "Unsupported value type for operation");
8638
8639   int NumElems = VT.getVectorNumElements();
8640   DebugLoc dl = Op.getDebugLoc();
8641   SDValue CC = Op.getOperand(2);
8642   SDValue Idx0 = DAG.getConstant(0, MVT::i32);
8643   SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
8644
8645   // Extract the LHS vectors
8646   SDValue LHS = Op.getOperand(0);
8647   SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
8648   SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
8649
8650   // Extract the RHS vectors
8651   SDValue RHS = Op.getOperand(1);
8652   SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
8653   SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
8654
8655   // Issue the operation on the smaller types and concatenate the result back
8656   MVT EltVT = VT.getVectorElementType().getSimpleVT();
8657   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
8658   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
8659                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1, CC),
8660                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2, CC));
8661 }
8662
8663
8664 SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
8665   SDValue Cond;
8666   SDValue Op0 = Op.getOperand(0);
8667   SDValue Op1 = Op.getOperand(1);
8668   SDValue CC = Op.getOperand(2);
8669   EVT VT = Op.getValueType();
8670   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
8671   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
8672   DebugLoc dl = Op.getDebugLoc();
8673
8674   if (isFP) {
8675     unsigned SSECC = 8;
8676     EVT EltVT = Op0.getValueType().getVectorElementType();
8677     assert(EltVT == MVT::f32 || EltVT == MVT::f64);
8678
8679     unsigned Opc = EltVT == MVT::f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
8680     bool Swap = false;
8681
8682     // SSE Condition code mapping:
8683     //  0 - EQ
8684     //  1 - LT
8685     //  2 - LE
8686     //  3 - UNORD
8687     //  4 - NEQ
8688     //  5 - NLT
8689     //  6 - NLE
8690     //  7 - ORD
8691     switch (SetCCOpcode) {
8692     default: break;
8693     case ISD::SETOEQ:
8694     case ISD::SETEQ:  SSECC = 0; break;
8695     case ISD::SETOGT:
8696     case ISD::SETGT: Swap = true; // Fallthrough
8697     case ISD::SETLT:
8698     case ISD::SETOLT: SSECC = 1; break;
8699     case ISD::SETOGE:
8700     case ISD::SETGE: Swap = true; // Fallthrough
8701     case ISD::SETLE:
8702     case ISD::SETOLE: SSECC = 2; break;
8703     case ISD::SETUO:  SSECC = 3; break;
8704     case ISD::SETUNE:
8705     case ISD::SETNE:  SSECC = 4; break;
8706     case ISD::SETULE: Swap = true;
8707     case ISD::SETUGE: SSECC = 5; break;
8708     case ISD::SETULT: Swap = true;
8709     case ISD::SETUGT: SSECC = 6; break;
8710     case ISD::SETO:   SSECC = 7; break;
8711     }
8712     if (Swap)
8713       std::swap(Op0, Op1);
8714
8715     // In the two special cases we can't handle, emit two comparisons.
8716     if (SSECC == 8) {
8717       if (SetCCOpcode == ISD::SETUEQ) {
8718         SDValue UNORD, EQ;
8719         UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
8720         EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
8721         return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
8722       } else if (SetCCOpcode == ISD::SETONE) {
8723         SDValue ORD, NEQ;
8724         ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
8725         NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
8726         return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
8727       }
8728       llvm_unreachable("Illegal FP comparison");
8729     }
8730     // Handle all other FP comparisons here.
8731     return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
8732   }
8733
8734   // Break 256-bit integer vector compare into smaller ones.
8735   if (VT.getSizeInBits() == 256 && !Subtarget->hasAVX2())
8736     return Lower256IntVSETCC(Op, DAG);
8737
8738   // We are handling one of the integer comparisons here.  Since SSE only has
8739   // GT and EQ comparisons for integer, swapping operands and multiple
8740   // operations may be required for some comparisons.
8741   unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
8742   bool Swap = false, Invert = false, FlipSigns = false;
8743
8744   switch (VT.getVectorElementType().getSimpleVT().SimpleTy) {
8745   default: break;
8746   case MVT::i8:   EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
8747   case MVT::i16:  EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
8748   case MVT::i32:  EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
8749   case MVT::i64:  EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
8750   }
8751
8752   switch (SetCCOpcode) {
8753   default: break;
8754   case ISD::SETNE:  Invert = true;
8755   case ISD::SETEQ:  Opc = EQOpc; break;
8756   case ISD::SETLT:  Swap = true;
8757   case ISD::SETGT:  Opc = GTOpc; break;
8758   case ISD::SETGE:  Swap = true;
8759   case ISD::SETLE:  Opc = GTOpc; Invert = true; break;
8760   case ISD::SETULT: Swap = true;
8761   case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
8762   case ISD::SETUGE: Swap = true;
8763   case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
8764   }
8765   if (Swap)
8766     std::swap(Op0, Op1);
8767
8768   // Check that the operation in question is available (most are plain SSE2,
8769   // but PCMPGTQ and PCMPEQQ have different requirements).
8770   if (Opc == X86ISD::PCMPGTQ && !Subtarget->hasSSE42orAVX())
8771     return SDValue();
8772   if (Opc == X86ISD::PCMPEQQ && !Subtarget->hasSSE41orAVX())
8773     return SDValue();
8774
8775   // Since SSE has no unsigned integer comparisons, we need to flip  the sign
8776   // bits of the inputs before performing those operations.
8777   if (FlipSigns) {
8778     EVT EltVT = VT.getVectorElementType();
8779     SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
8780                                       EltVT);
8781     std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
8782     SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
8783                                     SignBits.size());
8784     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
8785     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
8786   }
8787
8788   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
8789
8790   // If the logical-not of the result is required, perform that now.
8791   if (Invert)
8792     Result = DAG.getNOT(dl, Result, VT);
8793
8794   return Result;
8795 }
8796
8797 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
8798 static bool isX86LogicalCmp(SDValue Op) {
8799   unsigned Opc = Op.getNode()->getOpcode();
8800   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
8801     return true;
8802   if (Op.getResNo() == 1 &&
8803       (Opc == X86ISD::ADD ||
8804        Opc == X86ISD::SUB ||
8805        Opc == X86ISD::ADC ||
8806        Opc == X86ISD::SBB ||
8807        Opc == X86ISD::SMUL ||
8808        Opc == X86ISD::UMUL ||
8809        Opc == X86ISD::INC ||
8810        Opc == X86ISD::DEC ||
8811        Opc == X86ISD::OR ||
8812        Opc == X86ISD::XOR ||
8813        Opc == X86ISD::AND))
8814     return true;
8815
8816   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
8817     return true;
8818
8819   return false;
8820 }
8821
8822 static bool isZero(SDValue V) {
8823   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8824   return C && C->isNullValue();
8825 }
8826
8827 static bool isAllOnes(SDValue V) {
8828   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
8829   return C && C->isAllOnesValue();
8830 }
8831
8832 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
8833   bool addTest = true;
8834   SDValue Cond  = Op.getOperand(0);
8835   SDValue Op1 = Op.getOperand(1);
8836   SDValue Op2 = Op.getOperand(2);
8837   DebugLoc DL = Op.getDebugLoc();
8838   SDValue CC;
8839
8840   if (Cond.getOpcode() == ISD::SETCC) {
8841     SDValue NewCond = LowerSETCC(Cond, DAG);
8842     if (NewCond.getNode())
8843       Cond = NewCond;
8844   }
8845
8846   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
8847   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
8848   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
8849   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
8850   if (Cond.getOpcode() == X86ISD::SETCC &&
8851       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8852       isZero(Cond.getOperand(1).getOperand(1))) {
8853     SDValue Cmp = Cond.getOperand(1);
8854
8855     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
8856
8857     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
8858         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8859       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
8860
8861       SDValue CmpOp0 = Cmp.getOperand(0);
8862       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8863                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
8864
8865       SDValue Res =   // Res = 0 or -1.
8866         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8867                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
8868
8869       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8870         Res = DAG.getNOT(DL, Res, Res.getValueType());
8871
8872       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
8873       if (N2C == 0 || !N2C->isNullValue())
8874         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8875       return Res;
8876     }
8877   }
8878
8879   // Look past (and (setcc_carry (cmp ...)), 1).
8880   if (Cond.getOpcode() == ISD::AND &&
8881       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8882     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
8883     if (C && C->getAPIntValue() == 1)
8884       Cond = Cond.getOperand(0);
8885   }
8886
8887   // If condition flag is set by a X86ISD::CMP, then use it as the condition
8888   // setting operand in place of the X86ISD::SETCC.
8889   unsigned CondOpcode = Cond.getOpcode();
8890   if (CondOpcode == X86ISD::SETCC ||
8891       CondOpcode == X86ISD::SETCC_CARRY) {
8892     CC = Cond.getOperand(0);
8893
8894     SDValue Cmp = Cond.getOperand(1);
8895     unsigned Opc = Cmp.getOpcode();
8896     EVT VT = Op.getValueType();
8897
8898     bool IllegalFPCMov = false;
8899     if (VT.isFloatingPoint() && !VT.isVector() &&
8900         !isScalarFPTypeInSSEReg(VT))  // FPStack?
8901       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
8902
8903     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8904         Opc == X86ISD::BT) { // FIXME
8905       Cond = Cmp;
8906       addTest = false;
8907     }
8908   } else if (CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
8909              CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
8910              ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
8911               Cond.getOperand(0).getValueType() != MVT::i8)) {
8912     SDValue LHS = Cond.getOperand(0);
8913     SDValue RHS = Cond.getOperand(1);
8914     unsigned X86Opcode;
8915     unsigned X86Cond;
8916     SDVTList VTs;
8917     switch (CondOpcode) {
8918     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
8919     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
8920     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
8921     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
8922     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
8923     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
8924     default: llvm_unreachable("unexpected overflowing operator");
8925     }
8926     if (CondOpcode == ISD::UMULO)
8927       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
8928                           MVT::i32);
8929     else
8930       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
8931
8932     SDValue X86Op = DAG.getNode(X86Opcode, DL, VTs, LHS, RHS);
8933
8934     if (CondOpcode == ISD::UMULO)
8935       Cond = X86Op.getValue(2);
8936     else
8937       Cond = X86Op.getValue(1);
8938
8939     CC = DAG.getConstant(X86Cond, MVT::i8);
8940     addTest = false;
8941   }
8942
8943   if (addTest) {
8944     // Look pass the truncate.
8945     if (Cond.getOpcode() == ISD::TRUNCATE)
8946       Cond = Cond.getOperand(0);
8947
8948     // We know the result of AND is compared against zero. Try to match
8949     // it to BT.
8950     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
8951       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
8952       if (NewSetCC.getNode()) {
8953         CC = NewSetCC.getOperand(0);
8954         Cond = NewSetCC.getOperand(1);
8955         addTest = false;
8956       }
8957     }
8958   }
8959
8960   if (addTest) {
8961     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8962     Cond = EmitTest(Cond, X86::COND_NE, DAG);
8963   }
8964
8965   // a <  b ? -1 :  0 -> RES = ~setcc_carry
8966   // a <  b ?  0 : -1 -> RES = setcc_carry
8967   // a >= b ? -1 :  0 -> RES = setcc_carry
8968   // a >= b ?  0 : -1 -> RES = ~setcc_carry
8969   if (Cond.getOpcode() == X86ISD::CMP) {
8970     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8971
8972     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8973         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8974       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8975                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8976       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8977         return DAG.getNOT(DL, Res, Res.getValueType());
8978       return Res;
8979     }
8980   }
8981
8982   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8983   // condition is true.
8984   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
8985   SDValue Ops[] = { Op2, Op1, CC, Cond };
8986   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
8987 }
8988
8989 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8990 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8991 // from the AND / OR.
8992 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8993   Opc = Op.getOpcode();
8994   if (Opc != ISD::OR && Opc != ISD::AND)
8995     return false;
8996   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8997           Op.getOperand(0).hasOneUse() &&
8998           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8999           Op.getOperand(1).hasOneUse());
9000 }
9001
9002 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
9003 // 1 and that the SETCC node has a single use.
9004 static bool isXor1OfSetCC(SDValue Op) {
9005   if (Op.getOpcode() != ISD::XOR)
9006     return false;
9007   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
9008   if (N1C && N1C->getAPIntValue() == 1) {
9009     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
9010       Op.getOperand(0).hasOneUse();
9011   }
9012   return false;
9013 }
9014
9015 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
9016   bool addTest = true;
9017   SDValue Chain = Op.getOperand(0);
9018   SDValue Cond  = Op.getOperand(1);
9019   SDValue Dest  = Op.getOperand(2);
9020   DebugLoc dl = Op.getDebugLoc();
9021   SDValue CC;
9022   bool Inverted = false;
9023
9024   if (Cond.getOpcode() == ISD::SETCC) {
9025     // Check for setcc([su]{add,sub,mul}o == 0).
9026     if (cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETEQ &&
9027         isa<ConstantSDNode>(Cond.getOperand(1)) &&
9028         cast<ConstantSDNode>(Cond.getOperand(1))->isNullValue() &&
9029         Cond.getOperand(0).getResNo() == 1 &&
9030         (Cond.getOperand(0).getOpcode() == ISD::SADDO ||
9031          Cond.getOperand(0).getOpcode() == ISD::UADDO ||
9032          Cond.getOperand(0).getOpcode() == ISD::SSUBO ||
9033          Cond.getOperand(0).getOpcode() == ISD::USUBO ||
9034          Cond.getOperand(0).getOpcode() == ISD::SMULO ||
9035          Cond.getOperand(0).getOpcode() == ISD::UMULO)) {
9036       Inverted = true;
9037       Cond = Cond.getOperand(0);
9038     } else {
9039       SDValue NewCond = LowerSETCC(Cond, DAG);
9040       if (NewCond.getNode())
9041         Cond = NewCond;
9042     }
9043   }
9044 #if 0
9045   // FIXME: LowerXALUO doesn't handle these!!
9046   else if (Cond.getOpcode() == X86ISD::ADD  ||
9047            Cond.getOpcode() == X86ISD::SUB  ||
9048            Cond.getOpcode() == X86ISD::SMUL ||
9049            Cond.getOpcode() == X86ISD::UMUL)
9050     Cond = LowerXALUO(Cond, DAG);
9051 #endif
9052
9053   // Look pass (and (setcc_carry (cmp ...)), 1).
9054   if (Cond.getOpcode() == ISD::AND &&
9055       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
9056     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
9057     if (C && C->getAPIntValue() == 1)
9058       Cond = Cond.getOperand(0);
9059   }
9060
9061   // If condition flag is set by a X86ISD::CMP, then use it as the condition
9062   // setting operand in place of the X86ISD::SETCC.
9063   unsigned CondOpcode = Cond.getOpcode();
9064   if (CondOpcode == X86ISD::SETCC ||
9065       CondOpcode == X86ISD::SETCC_CARRY) {
9066     CC = Cond.getOperand(0);
9067
9068     SDValue Cmp = Cond.getOperand(1);
9069     unsigned Opc = Cmp.getOpcode();
9070     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
9071     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
9072       Cond = Cmp;
9073       addTest = false;
9074     } else {
9075       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
9076       default: break;
9077       case X86::COND_O:
9078       case X86::COND_B:
9079         // These can only come from an arithmetic instruction with overflow,
9080         // e.g. SADDO, UADDO.
9081         Cond = Cond.getNode()->getOperand(1);
9082         addTest = false;
9083         break;
9084       }
9085     }
9086   }
9087   CondOpcode = Cond.getOpcode();
9088   if (CondOpcode == ISD::UADDO || CondOpcode == ISD::SADDO ||
9089       CondOpcode == ISD::USUBO || CondOpcode == ISD::SSUBO ||
9090       ((CondOpcode == ISD::UMULO || CondOpcode == ISD::SMULO) &&
9091        Cond.getOperand(0).getValueType() != MVT::i8)) {
9092     SDValue LHS = Cond.getOperand(0);
9093     SDValue RHS = Cond.getOperand(1);
9094     unsigned X86Opcode;
9095     unsigned X86Cond;
9096     SDVTList VTs;
9097     switch (CondOpcode) {
9098     case ISD::UADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_B; break;
9099     case ISD::SADDO: X86Opcode = X86ISD::ADD; X86Cond = X86::COND_O; break;
9100     case ISD::USUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_B; break;
9101     case ISD::SSUBO: X86Opcode = X86ISD::SUB; X86Cond = X86::COND_O; break;
9102     case ISD::UMULO: X86Opcode = X86ISD::UMUL; X86Cond = X86::COND_O; break;
9103     case ISD::SMULO: X86Opcode = X86ISD::SMUL; X86Cond = X86::COND_O; break;
9104     default: llvm_unreachable("unexpected overflowing operator");
9105     }
9106     if (Inverted)
9107       X86Cond = X86::GetOppositeBranchCondition((X86::CondCode)X86Cond);
9108     if (CondOpcode == ISD::UMULO)
9109       VTs = DAG.getVTList(LHS.getValueType(), LHS.getValueType(),
9110                           MVT::i32);
9111     else
9112       VTs = DAG.getVTList(LHS.getValueType(), MVT::i32);
9113
9114     SDValue X86Op = DAG.getNode(X86Opcode, dl, VTs, LHS, RHS);
9115
9116     if (CondOpcode == ISD::UMULO)
9117       Cond = X86Op.getValue(2);
9118     else
9119       Cond = X86Op.getValue(1);
9120
9121     CC = DAG.getConstant(X86Cond, MVT::i8);
9122     addTest = false;
9123   } else {
9124     unsigned CondOpc;
9125     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
9126       SDValue Cmp = Cond.getOperand(0).getOperand(1);
9127       if (CondOpc == ISD::OR) {
9128         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
9129         // two branches instead of an explicit OR instruction with a
9130         // separate test.
9131         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9132             isX86LogicalCmp(Cmp)) {
9133           CC = Cond.getOperand(0).getOperand(0);
9134           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9135                               Chain, Dest, CC, Cmp);
9136           CC = Cond.getOperand(1).getOperand(0);
9137           Cond = Cmp;
9138           addTest = false;
9139         }
9140       } else { // ISD::AND
9141         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
9142         // two branches instead of an explicit AND instruction with a
9143         // separate test. However, we only do this if this block doesn't
9144         // have a fall-through edge, because this requires an explicit
9145         // jmp when the condition is false.
9146         if (Cmp == Cond.getOperand(1).getOperand(1) &&
9147             isX86LogicalCmp(Cmp) &&
9148             Op.getNode()->hasOneUse()) {
9149           X86::CondCode CCode =
9150             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9151           CCode = X86::GetOppositeBranchCondition(CCode);
9152           CC = DAG.getConstant(CCode, MVT::i8);
9153           SDNode *User = *Op.getNode()->use_begin();
9154           // Look for an unconditional branch following this conditional branch.
9155           // We need this because we need to reverse the successors in order
9156           // to implement FCMP_OEQ.
9157           if (User->getOpcode() == ISD::BR) {
9158             SDValue FalseBB = User->getOperand(1);
9159             SDNode *NewBR =
9160               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9161             assert(NewBR == User);
9162             (void)NewBR;
9163             Dest = FalseBB;
9164
9165             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9166                                 Chain, Dest, CC, Cmp);
9167             X86::CondCode CCode =
9168               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
9169             CCode = X86::GetOppositeBranchCondition(CCode);
9170             CC = DAG.getConstant(CCode, MVT::i8);
9171             Cond = Cmp;
9172             addTest = false;
9173           }
9174         }
9175       }
9176     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
9177       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
9178       // It should be transformed during dag combiner except when the condition
9179       // is set by a arithmetics with overflow node.
9180       X86::CondCode CCode =
9181         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
9182       CCode = X86::GetOppositeBranchCondition(CCode);
9183       CC = DAG.getConstant(CCode, MVT::i8);
9184       Cond = Cond.getOperand(0).getOperand(1);
9185       addTest = false;
9186     } else if (Cond.getOpcode() == ISD::SETCC &&
9187                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETOEQ) {
9188       // For FCMP_OEQ, we can emit
9189       // two branches instead of an explicit AND instruction with a
9190       // separate test. However, we only do this if this block doesn't
9191       // have a fall-through edge, because this requires an explicit
9192       // jmp when the condition is false.
9193       if (Op.getNode()->hasOneUse()) {
9194         SDNode *User = *Op.getNode()->use_begin();
9195         // Look for an unconditional branch following this conditional branch.
9196         // We need this because we need to reverse the successors in order
9197         // to implement FCMP_OEQ.
9198         if (User->getOpcode() == ISD::BR) {
9199           SDValue FalseBB = User->getOperand(1);
9200           SDNode *NewBR =
9201             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9202           assert(NewBR == User);
9203           (void)NewBR;
9204           Dest = FalseBB;
9205
9206           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9207                                     Cond.getOperand(0), Cond.getOperand(1));
9208           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9209           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9210                               Chain, Dest, CC, Cmp);
9211           CC = DAG.getConstant(X86::COND_P, MVT::i8);
9212           Cond = Cmp;
9213           addTest = false;
9214         }
9215       }
9216     } else if (Cond.getOpcode() == ISD::SETCC &&
9217                cast<CondCodeSDNode>(Cond.getOperand(2))->get() == ISD::SETUNE) {
9218       // For FCMP_UNE, we can emit
9219       // two branches instead of an explicit AND instruction with a
9220       // separate test. However, we only do this if this block doesn't
9221       // have a fall-through edge, because this requires an explicit
9222       // jmp when the condition is false.
9223       if (Op.getNode()->hasOneUse()) {
9224         SDNode *User = *Op.getNode()->use_begin();
9225         // Look for an unconditional branch following this conditional branch.
9226         // We need this because we need to reverse the successors in order
9227         // to implement FCMP_UNE.
9228         if (User->getOpcode() == ISD::BR) {
9229           SDValue FalseBB = User->getOperand(1);
9230           SDNode *NewBR =
9231             DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
9232           assert(NewBR == User);
9233           (void)NewBR;
9234
9235           SDValue Cmp = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
9236                                     Cond.getOperand(0), Cond.getOperand(1));
9237           CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9238           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9239                               Chain, Dest, CC, Cmp);
9240           CC = DAG.getConstant(X86::COND_NP, MVT::i8);
9241           Cond = Cmp;
9242           addTest = false;
9243           Dest = FalseBB;
9244         }
9245       }
9246     }
9247   }
9248
9249   if (addTest) {
9250     // Look pass the truncate.
9251     if (Cond.getOpcode() == ISD::TRUNCATE)
9252       Cond = Cond.getOperand(0);
9253
9254     // We know the result of AND is compared against zero. Try to match
9255     // it to BT.
9256     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
9257       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
9258       if (NewSetCC.getNode()) {
9259         CC = NewSetCC.getOperand(0);
9260         Cond = NewSetCC.getOperand(1);
9261         addTest = false;
9262       }
9263     }
9264   }
9265
9266   if (addTest) {
9267     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
9268     Cond = EmitTest(Cond, X86::COND_NE, DAG);
9269   }
9270   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
9271                      Chain, Dest, CC, Cond);
9272 }
9273
9274
9275 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
9276 // Calls to _alloca is needed to probe the stack when allocating more than 4k
9277 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
9278 // that the guard pages used by the OS virtual memory manager are allocated in
9279 // correct sequence.
9280 SDValue
9281 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
9282                                            SelectionDAG &DAG) const {
9283   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows() ||
9284           EnableSegmentedStacks) &&
9285          "This should be used only on Windows targets or when segmented stacks "
9286          "are being used");
9287   assert(!Subtarget->isTargetEnvMacho() && "Not implemented");
9288   DebugLoc dl = Op.getDebugLoc();
9289
9290   // Get the inputs.
9291   SDValue Chain = Op.getOperand(0);
9292   SDValue Size  = Op.getOperand(1);
9293   // FIXME: Ensure alignment here
9294
9295   bool Is64Bit = Subtarget->is64Bit();
9296   EVT SPTy = Is64Bit ? MVT::i64 : MVT::i32;
9297
9298   if (EnableSegmentedStacks) {
9299     MachineFunction &MF = DAG.getMachineFunction();
9300     MachineRegisterInfo &MRI = MF.getRegInfo();
9301
9302     if (Is64Bit) {
9303       // The 64 bit implementation of segmented stacks needs to clobber both r10
9304       // r11. This makes it impossible to use it along with nested parameters.
9305       const Function *F = MF.getFunction();
9306
9307       for (Function::const_arg_iterator I = F->arg_begin(), E = F->arg_end();
9308            I != E; I++)
9309         if (I->hasNestAttr())
9310           report_fatal_error("Cannot use segmented stacks with functions that "
9311                              "have nested arguments.");
9312     }
9313
9314     const TargetRegisterClass *AddrRegClass =
9315       getRegClassFor(Subtarget->is64Bit() ? MVT::i64:MVT::i32);
9316     unsigned Vreg = MRI.createVirtualRegister(AddrRegClass);
9317     Chain = DAG.getCopyToReg(Chain, dl, Vreg, Size);
9318     SDValue Value = DAG.getNode(X86ISD::SEG_ALLOCA, dl, SPTy, Chain,
9319                                 DAG.getRegister(Vreg, SPTy));
9320     SDValue Ops1[2] = { Value, Chain };
9321     return DAG.getMergeValues(Ops1, 2, dl);
9322   } else {
9323     SDValue Flag;
9324     unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
9325
9326     Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
9327     Flag = Chain.getValue(1);
9328     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
9329
9330     Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
9331     Flag = Chain.getValue(1);
9332
9333     Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
9334
9335     SDValue Ops1[2] = { Chain.getValue(0), Chain };
9336     return DAG.getMergeValues(Ops1, 2, dl);
9337   }
9338 }
9339
9340 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
9341   MachineFunction &MF = DAG.getMachineFunction();
9342   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
9343
9344   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9345   DebugLoc DL = Op.getDebugLoc();
9346
9347   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
9348     // vastart just stores the address of the VarArgsFrameIndex slot into the
9349     // memory location argument.
9350     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9351                                    getPointerTy());
9352     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
9353                         MachinePointerInfo(SV), false, false, 0);
9354   }
9355
9356   // __va_list_tag:
9357   //   gp_offset         (0 - 6 * 8)
9358   //   fp_offset         (48 - 48 + 8 * 16)
9359   //   overflow_arg_area (point to parameters coming in memory).
9360   //   reg_save_area
9361   SmallVector<SDValue, 8> MemOps;
9362   SDValue FIN = Op.getOperand(1);
9363   // Store gp_offset
9364   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
9365                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
9366                                                MVT::i32),
9367                                FIN, MachinePointerInfo(SV), false, false, 0);
9368   MemOps.push_back(Store);
9369
9370   // Store fp_offset
9371   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9372                     FIN, DAG.getIntPtrConstant(4));
9373   Store = DAG.getStore(Op.getOperand(0), DL,
9374                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
9375                                        MVT::i32),
9376                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
9377   MemOps.push_back(Store);
9378
9379   // Store ptr to overflow_arg_area
9380   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9381                     FIN, DAG.getIntPtrConstant(4));
9382   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
9383                                     getPointerTy());
9384   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
9385                        MachinePointerInfo(SV, 8),
9386                        false, false, 0);
9387   MemOps.push_back(Store);
9388
9389   // Store ptr to reg_save_area.
9390   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
9391                     FIN, DAG.getIntPtrConstant(8));
9392   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
9393                                     getPointerTy());
9394   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
9395                        MachinePointerInfo(SV, 16), false, false, 0);
9396   MemOps.push_back(Store);
9397   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
9398                      &MemOps[0], MemOps.size());
9399 }
9400
9401 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
9402   assert(Subtarget->is64Bit() &&
9403          "LowerVAARG only handles 64-bit va_arg!");
9404   assert((Subtarget->isTargetLinux() ||
9405           Subtarget->isTargetDarwin()) &&
9406           "Unhandled target in LowerVAARG");
9407   assert(Op.getNode()->getNumOperands() == 4);
9408   SDValue Chain = Op.getOperand(0);
9409   SDValue SrcPtr = Op.getOperand(1);
9410   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
9411   unsigned Align = Op.getConstantOperandVal(3);
9412   DebugLoc dl = Op.getDebugLoc();
9413
9414   EVT ArgVT = Op.getNode()->getValueType(0);
9415   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
9416   uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
9417   uint8_t ArgMode;
9418
9419   // Decide which area this value should be read from.
9420   // TODO: Implement the AMD64 ABI in its entirety. This simple
9421   // selection mechanism works only for the basic types.
9422   if (ArgVT == MVT::f80) {
9423     llvm_unreachable("va_arg for f80 not yet implemented");
9424   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
9425     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
9426   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
9427     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
9428   } else {
9429     llvm_unreachable("Unhandled argument type in LowerVAARG");
9430   }
9431
9432   if (ArgMode == 2) {
9433     // Sanity Check: Make sure using fp_offset makes sense.
9434     assert(!UseSoftFloat &&
9435            !(DAG.getMachineFunction()
9436                 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
9437            Subtarget->hasXMM());
9438   }
9439
9440   // Insert VAARG_64 node into the DAG
9441   // VAARG_64 returns two values: Variable Argument Address, Chain
9442   SmallVector<SDValue, 11> InstOps;
9443   InstOps.push_back(Chain);
9444   InstOps.push_back(SrcPtr);
9445   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
9446   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
9447   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
9448   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
9449   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
9450                                           VTs, &InstOps[0], InstOps.size(),
9451                                           MVT::i64,
9452                                           MachinePointerInfo(SV),
9453                                           /*Align=*/0,
9454                                           /*Volatile=*/false,
9455                                           /*ReadMem=*/true,
9456                                           /*WriteMem=*/true);
9457   Chain = VAARG.getValue(1);
9458
9459   // Load the next argument and return it
9460   return DAG.getLoad(ArgVT, dl,
9461                      Chain,
9462                      VAARG,
9463                      MachinePointerInfo(),
9464                      false, false, false, 0);
9465 }
9466
9467 SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
9468   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
9469   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
9470   SDValue Chain = Op.getOperand(0);
9471   SDValue DstPtr = Op.getOperand(1);
9472   SDValue SrcPtr = Op.getOperand(2);
9473   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
9474   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
9475   DebugLoc DL = Op.getDebugLoc();
9476
9477   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
9478                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
9479                        false,
9480                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
9481 }
9482
9483 SDValue
9484 X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
9485   DebugLoc dl = Op.getDebugLoc();
9486   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9487   switch (IntNo) {
9488   default: return SDValue();    // Don't custom lower most intrinsics.
9489   // Comparison intrinsics.
9490   case Intrinsic::x86_sse_comieq_ss:
9491   case Intrinsic::x86_sse_comilt_ss:
9492   case Intrinsic::x86_sse_comile_ss:
9493   case Intrinsic::x86_sse_comigt_ss:
9494   case Intrinsic::x86_sse_comige_ss:
9495   case Intrinsic::x86_sse_comineq_ss:
9496   case Intrinsic::x86_sse_ucomieq_ss:
9497   case Intrinsic::x86_sse_ucomilt_ss:
9498   case Intrinsic::x86_sse_ucomile_ss:
9499   case Intrinsic::x86_sse_ucomigt_ss:
9500   case Intrinsic::x86_sse_ucomige_ss:
9501   case Intrinsic::x86_sse_ucomineq_ss:
9502   case Intrinsic::x86_sse2_comieq_sd:
9503   case Intrinsic::x86_sse2_comilt_sd:
9504   case Intrinsic::x86_sse2_comile_sd:
9505   case Intrinsic::x86_sse2_comigt_sd:
9506   case Intrinsic::x86_sse2_comige_sd:
9507   case Intrinsic::x86_sse2_comineq_sd:
9508   case Intrinsic::x86_sse2_ucomieq_sd:
9509   case Intrinsic::x86_sse2_ucomilt_sd:
9510   case Intrinsic::x86_sse2_ucomile_sd:
9511   case Intrinsic::x86_sse2_ucomigt_sd:
9512   case Intrinsic::x86_sse2_ucomige_sd:
9513   case Intrinsic::x86_sse2_ucomineq_sd: {
9514     unsigned Opc = 0;
9515     ISD::CondCode CC = ISD::SETCC_INVALID;
9516     switch (IntNo) {
9517     default: break;
9518     case Intrinsic::x86_sse_comieq_ss:
9519     case Intrinsic::x86_sse2_comieq_sd:
9520       Opc = X86ISD::COMI;
9521       CC = ISD::SETEQ;
9522       break;
9523     case Intrinsic::x86_sse_comilt_ss:
9524     case Intrinsic::x86_sse2_comilt_sd:
9525       Opc = X86ISD::COMI;
9526       CC = ISD::SETLT;
9527       break;
9528     case Intrinsic::x86_sse_comile_ss:
9529     case Intrinsic::x86_sse2_comile_sd:
9530       Opc = X86ISD::COMI;
9531       CC = ISD::SETLE;
9532       break;
9533     case Intrinsic::x86_sse_comigt_ss:
9534     case Intrinsic::x86_sse2_comigt_sd:
9535       Opc = X86ISD::COMI;
9536       CC = ISD::SETGT;
9537       break;
9538     case Intrinsic::x86_sse_comige_ss:
9539     case Intrinsic::x86_sse2_comige_sd:
9540       Opc = X86ISD::COMI;
9541       CC = ISD::SETGE;
9542       break;
9543     case Intrinsic::x86_sse_comineq_ss:
9544     case Intrinsic::x86_sse2_comineq_sd:
9545       Opc = X86ISD::COMI;
9546       CC = ISD::SETNE;
9547       break;
9548     case Intrinsic::x86_sse_ucomieq_ss:
9549     case Intrinsic::x86_sse2_ucomieq_sd:
9550       Opc = X86ISD::UCOMI;
9551       CC = ISD::SETEQ;
9552       break;
9553     case Intrinsic::x86_sse_ucomilt_ss:
9554     case Intrinsic::x86_sse2_ucomilt_sd:
9555       Opc = X86ISD::UCOMI;
9556       CC = ISD::SETLT;
9557       break;
9558     case Intrinsic::x86_sse_ucomile_ss:
9559     case Intrinsic::x86_sse2_ucomile_sd:
9560       Opc = X86ISD::UCOMI;
9561       CC = ISD::SETLE;
9562       break;
9563     case Intrinsic::x86_sse_ucomigt_ss:
9564     case Intrinsic::x86_sse2_ucomigt_sd:
9565       Opc = X86ISD::UCOMI;
9566       CC = ISD::SETGT;
9567       break;
9568     case Intrinsic::x86_sse_ucomige_ss:
9569     case Intrinsic::x86_sse2_ucomige_sd:
9570       Opc = X86ISD::UCOMI;
9571       CC = ISD::SETGE;
9572       break;
9573     case Intrinsic::x86_sse_ucomineq_ss:
9574     case Intrinsic::x86_sse2_ucomineq_sd:
9575       Opc = X86ISD::UCOMI;
9576       CC = ISD::SETNE;
9577       break;
9578     }
9579
9580     SDValue LHS = Op.getOperand(1);
9581     SDValue RHS = Op.getOperand(2);
9582     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
9583     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
9584     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
9585     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
9586                                 DAG.getConstant(X86CC, MVT::i8), Cond);
9587     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
9588   }
9589   // Arithmetic intrinsics.
9590   case Intrinsic::x86_sse3_hadd_ps:
9591   case Intrinsic::x86_sse3_hadd_pd:
9592   case Intrinsic::x86_avx_hadd_ps_256:
9593   case Intrinsic::x86_avx_hadd_pd_256:
9594     return DAG.getNode(X86ISD::FHADD, dl, Op.getValueType(),
9595                        Op.getOperand(1), Op.getOperand(2));
9596   case Intrinsic::x86_sse3_hsub_ps:
9597   case Intrinsic::x86_sse3_hsub_pd:
9598   case Intrinsic::x86_avx_hsub_ps_256:
9599   case Intrinsic::x86_avx_hsub_pd_256:
9600     return DAG.getNode(X86ISD::FHSUB, dl, Op.getValueType(),
9601                        Op.getOperand(1), Op.getOperand(2));
9602   case Intrinsic::x86_avx2_psllv_d:
9603   case Intrinsic::x86_avx2_psllv_q:
9604   case Intrinsic::x86_avx2_psllv_d_256:
9605   case Intrinsic::x86_avx2_psllv_q_256:
9606     return DAG.getNode(ISD::SHL, dl, Op.getValueType(),
9607                       Op.getOperand(1), Op.getOperand(2));
9608   case Intrinsic::x86_avx2_psrlv_d:
9609   case Intrinsic::x86_avx2_psrlv_q:
9610   case Intrinsic::x86_avx2_psrlv_d_256:
9611   case Intrinsic::x86_avx2_psrlv_q_256:
9612     return DAG.getNode(ISD::SRL, dl, Op.getValueType(),
9613                       Op.getOperand(1), Op.getOperand(2));
9614   case Intrinsic::x86_avx2_psrav_d:
9615   case Intrinsic::x86_avx2_psrav_d_256:
9616     return DAG.getNode(ISD::SRA, dl, Op.getValueType(),
9617                       Op.getOperand(1), Op.getOperand(2));
9618
9619   // ptest and testp intrinsics. The intrinsic these come from are designed to
9620   // return an integer value, not just an instruction so lower it to the ptest
9621   // or testp pattern and a setcc for the result.
9622   case Intrinsic::x86_sse41_ptestz:
9623   case Intrinsic::x86_sse41_ptestc:
9624   case Intrinsic::x86_sse41_ptestnzc:
9625   case Intrinsic::x86_avx_ptestz_256:
9626   case Intrinsic::x86_avx_ptestc_256:
9627   case Intrinsic::x86_avx_ptestnzc_256:
9628   case Intrinsic::x86_avx_vtestz_ps:
9629   case Intrinsic::x86_avx_vtestc_ps:
9630   case Intrinsic::x86_avx_vtestnzc_ps:
9631   case Intrinsic::x86_avx_vtestz_pd:
9632   case Intrinsic::x86_avx_vtestc_pd:
9633   case Intrinsic::x86_avx_vtestnzc_pd:
9634   case Intrinsic::x86_avx_vtestz_ps_256:
9635   case Intrinsic::x86_avx_vtestc_ps_256:
9636   case Intrinsic::x86_avx_vtestnzc_ps_256:
9637   case Intrinsic::x86_avx_vtestz_pd_256:
9638   case Intrinsic::x86_avx_vtestc_pd_256:
9639   case Intrinsic::x86_avx_vtestnzc_pd_256: {
9640     bool IsTestPacked = false;
9641     unsigned X86CC = 0;
9642     switch (IntNo) {
9643     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
9644     case Intrinsic::x86_avx_vtestz_ps:
9645     case Intrinsic::x86_avx_vtestz_pd:
9646     case Intrinsic::x86_avx_vtestz_ps_256:
9647     case Intrinsic::x86_avx_vtestz_pd_256:
9648       IsTestPacked = true; // Fallthrough
9649     case Intrinsic::x86_sse41_ptestz:
9650     case Intrinsic::x86_avx_ptestz_256:
9651       // ZF = 1
9652       X86CC = X86::COND_E;
9653       break;
9654     case Intrinsic::x86_avx_vtestc_ps:
9655     case Intrinsic::x86_avx_vtestc_pd:
9656     case Intrinsic::x86_avx_vtestc_ps_256:
9657     case Intrinsic::x86_avx_vtestc_pd_256:
9658       IsTestPacked = true; // Fallthrough
9659     case Intrinsic::x86_sse41_ptestc:
9660     case Intrinsic::x86_avx_ptestc_256:
9661       // CF = 1
9662       X86CC = X86::COND_B;
9663       break;
9664     case Intrinsic::x86_avx_vtestnzc_ps:
9665     case Intrinsic::x86_avx_vtestnzc_pd:
9666     case Intrinsic::x86_avx_vtestnzc_ps_256:
9667     case Intrinsic::x86_avx_vtestnzc_pd_256:
9668       IsTestPacked = true; // Fallthrough
9669     case Intrinsic::x86_sse41_ptestnzc:
9670     case Intrinsic::x86_avx_ptestnzc_256:
9671       // ZF and CF = 0
9672       X86CC = X86::COND_A;
9673       break;
9674     }
9675
9676     SDValue LHS = Op.getOperand(1);
9677     SDValue RHS = Op.getOperand(2);
9678     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
9679     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
9680     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
9681     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
9682     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
9683   }
9684
9685   // Fix vector shift instructions where the last operand is a non-immediate
9686   // i32 value.
9687   case Intrinsic::x86_avx2_pslli_w:
9688   case Intrinsic::x86_avx2_pslli_d:
9689   case Intrinsic::x86_avx2_pslli_q:
9690   case Intrinsic::x86_avx2_psrli_w:
9691   case Intrinsic::x86_avx2_psrli_d:
9692   case Intrinsic::x86_avx2_psrli_q:
9693   case Intrinsic::x86_avx2_psrai_w:
9694   case Intrinsic::x86_avx2_psrai_d:
9695   case Intrinsic::x86_sse2_pslli_w:
9696   case Intrinsic::x86_sse2_pslli_d:
9697   case Intrinsic::x86_sse2_pslli_q:
9698   case Intrinsic::x86_sse2_psrli_w:
9699   case Intrinsic::x86_sse2_psrli_d:
9700   case Intrinsic::x86_sse2_psrli_q:
9701   case Intrinsic::x86_sse2_psrai_w:
9702   case Intrinsic::x86_sse2_psrai_d:
9703   case Intrinsic::x86_mmx_pslli_w:
9704   case Intrinsic::x86_mmx_pslli_d:
9705   case Intrinsic::x86_mmx_pslli_q:
9706   case Intrinsic::x86_mmx_psrli_w:
9707   case Intrinsic::x86_mmx_psrli_d:
9708   case Intrinsic::x86_mmx_psrli_q:
9709   case Intrinsic::x86_mmx_psrai_w:
9710   case Intrinsic::x86_mmx_psrai_d: {
9711     SDValue ShAmt = Op.getOperand(2);
9712     if (isa<ConstantSDNode>(ShAmt))
9713       return SDValue();
9714
9715     unsigned NewIntNo = 0;
9716     EVT ShAmtVT = MVT::v4i32;
9717     switch (IntNo) {
9718     case Intrinsic::x86_sse2_pslli_w:
9719       NewIntNo = Intrinsic::x86_sse2_psll_w;
9720       break;
9721     case Intrinsic::x86_sse2_pslli_d:
9722       NewIntNo = Intrinsic::x86_sse2_psll_d;
9723       break;
9724     case Intrinsic::x86_sse2_pslli_q:
9725       NewIntNo = Intrinsic::x86_sse2_psll_q;
9726       break;
9727     case Intrinsic::x86_sse2_psrli_w:
9728       NewIntNo = Intrinsic::x86_sse2_psrl_w;
9729       break;
9730     case Intrinsic::x86_sse2_psrli_d:
9731       NewIntNo = Intrinsic::x86_sse2_psrl_d;
9732       break;
9733     case Intrinsic::x86_sse2_psrli_q:
9734       NewIntNo = Intrinsic::x86_sse2_psrl_q;
9735       break;
9736     case Intrinsic::x86_sse2_psrai_w:
9737       NewIntNo = Intrinsic::x86_sse2_psra_w;
9738       break;
9739     case Intrinsic::x86_sse2_psrai_d:
9740       NewIntNo = Intrinsic::x86_sse2_psra_d;
9741       break;
9742     case Intrinsic::x86_avx2_pslli_w:
9743       NewIntNo = Intrinsic::x86_avx2_psll_w;
9744       break;
9745     case Intrinsic::x86_avx2_pslli_d:
9746       NewIntNo = Intrinsic::x86_avx2_psll_d;
9747       break;
9748     case Intrinsic::x86_avx2_pslli_q:
9749       NewIntNo = Intrinsic::x86_avx2_psll_q;
9750       break;
9751     case Intrinsic::x86_avx2_psrli_w:
9752       NewIntNo = Intrinsic::x86_avx2_psrl_w;
9753       break;
9754     case Intrinsic::x86_avx2_psrli_d:
9755       NewIntNo = Intrinsic::x86_avx2_psrl_d;
9756       break;
9757     case Intrinsic::x86_avx2_psrli_q:
9758       NewIntNo = Intrinsic::x86_avx2_psrl_q;
9759       break;
9760     case Intrinsic::x86_avx2_psrai_w:
9761       NewIntNo = Intrinsic::x86_avx2_psra_w;
9762       break;
9763     case Intrinsic::x86_avx2_psrai_d:
9764       NewIntNo = Intrinsic::x86_avx2_psra_d;
9765       break;
9766     default: {
9767       ShAmtVT = MVT::v2i32;
9768       switch (IntNo) {
9769       case Intrinsic::x86_mmx_pslli_w:
9770         NewIntNo = Intrinsic::x86_mmx_psll_w;
9771         break;
9772       case Intrinsic::x86_mmx_pslli_d:
9773         NewIntNo = Intrinsic::x86_mmx_psll_d;
9774         break;
9775       case Intrinsic::x86_mmx_pslli_q:
9776         NewIntNo = Intrinsic::x86_mmx_psll_q;
9777         break;
9778       case Intrinsic::x86_mmx_psrli_w:
9779         NewIntNo = Intrinsic::x86_mmx_psrl_w;
9780         break;
9781       case Intrinsic::x86_mmx_psrli_d:
9782         NewIntNo = Intrinsic::x86_mmx_psrl_d;
9783         break;
9784       case Intrinsic::x86_mmx_psrli_q:
9785         NewIntNo = Intrinsic::x86_mmx_psrl_q;
9786         break;
9787       case Intrinsic::x86_mmx_psrai_w:
9788         NewIntNo = Intrinsic::x86_mmx_psra_w;
9789         break;
9790       case Intrinsic::x86_mmx_psrai_d:
9791         NewIntNo = Intrinsic::x86_mmx_psra_d;
9792         break;
9793       default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
9794       }
9795       break;
9796     }
9797     }
9798
9799     // The vector shift intrinsics with scalars uses 32b shift amounts but
9800     // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
9801     // to be zero.
9802     SDValue ShOps[4];
9803     ShOps[0] = ShAmt;
9804     ShOps[1] = DAG.getConstant(0, MVT::i32);
9805     if (ShAmtVT == MVT::v4i32) {
9806       ShOps[2] = DAG.getUNDEF(MVT::i32);
9807       ShOps[3] = DAG.getUNDEF(MVT::i32);
9808       ShAmt =  DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
9809     } else {
9810       ShAmt =  DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
9811 // FIXME this must be lowered to get rid of the invalid type.
9812     }
9813
9814     EVT VT = Op.getValueType();
9815     ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
9816     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9817                        DAG.getConstant(NewIntNo, MVT::i32),
9818                        Op.getOperand(1), ShAmt);
9819   }
9820   }
9821 }
9822
9823 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
9824                                            SelectionDAG &DAG) const {
9825   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9826   MFI->setReturnAddressIsTaken(true);
9827
9828   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9829   DebugLoc dl = Op.getDebugLoc();
9830
9831   if (Depth > 0) {
9832     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
9833     SDValue Offset =
9834       DAG.getConstant(TD->getPointerSize(),
9835                       Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
9836     return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9837                        DAG.getNode(ISD::ADD, dl, getPointerTy(),
9838                                    FrameAddr, Offset),
9839                        MachinePointerInfo(), false, false, false, 0);
9840   }
9841
9842   // Just load the return address.
9843   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
9844   return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
9845                      RetAddrFI, MachinePointerInfo(), false, false, false, 0);
9846 }
9847
9848 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
9849   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
9850   MFI->setFrameAddressIsTaken(true);
9851
9852   EVT VT = Op.getValueType();
9853   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
9854   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
9855   unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
9856   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
9857   while (Depth--)
9858     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
9859                             MachinePointerInfo(),
9860                             false, false, false, 0);
9861   return FrameAddr;
9862 }
9863
9864 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
9865                                                      SelectionDAG &DAG) const {
9866   return DAG.getIntPtrConstant(2*TD->getPointerSize());
9867 }
9868
9869 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
9870   MachineFunction &MF = DAG.getMachineFunction();
9871   SDValue Chain     = Op.getOperand(0);
9872   SDValue Offset    = Op.getOperand(1);
9873   SDValue Handler   = Op.getOperand(2);
9874   DebugLoc dl       = Op.getDebugLoc();
9875
9876   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
9877                                      Subtarget->is64Bit() ? X86::RBP : X86::EBP,
9878                                      getPointerTy());
9879   unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
9880
9881   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
9882                                   DAG.getIntPtrConstant(TD->getPointerSize()));
9883   StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
9884   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
9885                        false, false, 0);
9886   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
9887   MF.getRegInfo().addLiveOut(StoreAddrReg);
9888
9889   return DAG.getNode(X86ISD::EH_RETURN, dl,
9890                      MVT::Other,
9891                      Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
9892 }
9893
9894 SDValue X86TargetLowering::LowerADJUST_TRAMPOLINE(SDValue Op,
9895                                                   SelectionDAG &DAG) const {
9896   return Op.getOperand(0);
9897 }
9898
9899 SDValue X86TargetLowering::LowerINIT_TRAMPOLINE(SDValue Op,
9900                                                 SelectionDAG &DAG) const {
9901   SDValue Root = Op.getOperand(0);
9902   SDValue Trmp = Op.getOperand(1); // trampoline
9903   SDValue FPtr = Op.getOperand(2); // nested function
9904   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
9905   DebugLoc dl  = Op.getDebugLoc();
9906
9907   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
9908
9909   if (Subtarget->is64Bit()) {
9910     SDValue OutChains[6];
9911
9912     // Large code-model.
9913     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
9914     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
9915
9916     const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
9917     const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
9918
9919     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
9920
9921     // Load the pointer to the nested function into R11.
9922     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
9923     SDValue Addr = Trmp;
9924     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9925                                 Addr, MachinePointerInfo(TrmpAddr),
9926                                 false, false, 0);
9927
9928     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9929                        DAG.getConstant(2, MVT::i64));
9930     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
9931                                 MachinePointerInfo(TrmpAddr, 2),
9932                                 false, false, 2);
9933
9934     // Load the 'nest' parameter value into R10.
9935     // R10 is specified in X86CallingConv.td
9936     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
9937     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9938                        DAG.getConstant(10, MVT::i64));
9939     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9940                                 Addr, MachinePointerInfo(TrmpAddr, 10),
9941                                 false, false, 0);
9942
9943     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9944                        DAG.getConstant(12, MVT::i64));
9945     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
9946                                 MachinePointerInfo(TrmpAddr, 12),
9947                                 false, false, 2);
9948
9949     // Jump to the nested function.
9950     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
9951     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9952                        DAG.getConstant(20, MVT::i64));
9953     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
9954                                 Addr, MachinePointerInfo(TrmpAddr, 20),
9955                                 false, false, 0);
9956
9957     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
9958     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
9959                        DAG.getConstant(22, MVT::i64));
9960     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
9961                                 MachinePointerInfo(TrmpAddr, 22),
9962                                 false, false, 0);
9963
9964     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6);
9965   } else {
9966     const Function *Func =
9967       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
9968     CallingConv::ID CC = Func->getCallingConv();
9969     unsigned NestReg;
9970
9971     switch (CC) {
9972     default:
9973       llvm_unreachable("Unsupported calling convention");
9974     case CallingConv::C:
9975     case CallingConv::X86_StdCall: {
9976       // Pass 'nest' parameter in ECX.
9977       // Must be kept in sync with X86CallingConv.td
9978       NestReg = X86::ECX;
9979
9980       // Check that ECX wasn't needed by an 'inreg' parameter.
9981       FunctionType *FTy = Func->getFunctionType();
9982       const AttrListPtr &Attrs = Func->getAttributes();
9983
9984       if (!Attrs.isEmpty() && !Func->isVarArg()) {
9985         unsigned InRegCount = 0;
9986         unsigned Idx = 1;
9987
9988         for (FunctionType::param_iterator I = FTy->param_begin(),
9989              E = FTy->param_end(); I != E; ++I, ++Idx)
9990           if (Attrs.paramHasAttr(Idx, Attribute::InReg))
9991             // FIXME: should only count parameters that are lowered to integers.
9992             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
9993
9994         if (InRegCount > 2) {
9995           report_fatal_error("Nest register in use - reduce number of inreg"
9996                              " parameters!");
9997         }
9998       }
9999       break;
10000     }
10001     case CallingConv::X86_FastCall:
10002     case CallingConv::X86_ThisCall:
10003     case CallingConv::Fast:
10004       // Pass 'nest' parameter in EAX.
10005       // Must be kept in sync with X86CallingConv.td
10006       NestReg = X86::EAX;
10007       break;
10008     }
10009
10010     SDValue OutChains[4];
10011     SDValue Addr, Disp;
10012
10013     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10014                        DAG.getConstant(10, MVT::i32));
10015     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
10016
10017     // This is storing the opcode for MOV32ri.
10018     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
10019     const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
10020     OutChains[0] = DAG.getStore(Root, dl,
10021                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
10022                                 Trmp, MachinePointerInfo(TrmpAddr),
10023                                 false, false, 0);
10024
10025     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10026                        DAG.getConstant(1, MVT::i32));
10027     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
10028                                 MachinePointerInfo(TrmpAddr, 1),
10029                                 false, false, 1);
10030
10031     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
10032     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10033                        DAG.getConstant(5, MVT::i32));
10034     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
10035                                 MachinePointerInfo(TrmpAddr, 5),
10036                                 false, false, 1);
10037
10038     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
10039                        DAG.getConstant(6, MVT::i32));
10040     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
10041                                 MachinePointerInfo(TrmpAddr, 6),
10042                                 false, false, 1);
10043
10044     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4);
10045   }
10046 }
10047
10048 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
10049                                             SelectionDAG &DAG) const {
10050   /*
10051    The rounding mode is in bits 11:10 of FPSR, and has the following
10052    settings:
10053      00 Round to nearest
10054      01 Round to -inf
10055      10 Round to +inf
10056      11 Round to 0
10057
10058   FLT_ROUNDS, on the other hand, expects the following:
10059     -1 Undefined
10060      0 Round to 0
10061      1 Round to nearest
10062      2 Round to +inf
10063      3 Round to -inf
10064
10065   To perform the conversion, we do:
10066     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
10067   */
10068
10069   MachineFunction &MF = DAG.getMachineFunction();
10070   const TargetMachine &TM = MF.getTarget();
10071   const TargetFrameLowering &TFI = *TM.getFrameLowering();
10072   unsigned StackAlignment = TFI.getStackAlignment();
10073   EVT VT = Op.getValueType();
10074   DebugLoc DL = Op.getDebugLoc();
10075
10076   // Save FP Control Word to stack slot
10077   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
10078   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
10079
10080
10081   MachineMemOperand *MMO =
10082    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
10083                            MachineMemOperand::MOStore, 2, 2);
10084
10085   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
10086   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
10087                                           DAG.getVTList(MVT::Other),
10088                                           Ops, 2, MVT::i16, MMO);
10089
10090   // Load FP Control Word from stack slot
10091   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
10092                             MachinePointerInfo(), false, false, false, 0);
10093
10094   // Transform as necessary
10095   SDValue CWD1 =
10096     DAG.getNode(ISD::SRL, DL, MVT::i16,
10097                 DAG.getNode(ISD::AND, DL, MVT::i16,
10098                             CWD, DAG.getConstant(0x800, MVT::i16)),
10099                 DAG.getConstant(11, MVT::i8));
10100   SDValue CWD2 =
10101     DAG.getNode(ISD::SRL, DL, MVT::i16,
10102                 DAG.getNode(ISD::AND, DL, MVT::i16,
10103                             CWD, DAG.getConstant(0x400, MVT::i16)),
10104                 DAG.getConstant(9, MVT::i8));
10105
10106   SDValue RetVal =
10107     DAG.getNode(ISD::AND, DL, MVT::i16,
10108                 DAG.getNode(ISD::ADD, DL, MVT::i16,
10109                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
10110                             DAG.getConstant(1, MVT::i16)),
10111                 DAG.getConstant(3, MVT::i16));
10112
10113
10114   return DAG.getNode((VT.getSizeInBits() < 16 ?
10115                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
10116 }
10117
10118 SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
10119   EVT VT = Op.getValueType();
10120   EVT OpVT = VT;
10121   unsigned NumBits = VT.getSizeInBits();
10122   DebugLoc dl = Op.getDebugLoc();
10123
10124   Op = Op.getOperand(0);
10125   if (VT == MVT::i8) {
10126     // Zero extend to i32 since there is not an i8 bsr.
10127     OpVT = MVT::i32;
10128     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10129   }
10130
10131   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
10132   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10133   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
10134
10135   // If src is zero (i.e. bsr sets ZF), returns NumBits.
10136   SDValue Ops[] = {
10137     Op,
10138     DAG.getConstant(NumBits+NumBits-1, OpVT),
10139     DAG.getConstant(X86::COND_E, MVT::i8),
10140     Op.getValue(1)
10141   };
10142   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
10143
10144   // Finally xor with NumBits-1.
10145   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
10146
10147   if (VT == MVT::i8)
10148     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10149   return Op;
10150 }
10151
10152 SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
10153   EVT VT = Op.getValueType();
10154   EVT OpVT = VT;
10155   unsigned NumBits = VT.getSizeInBits();
10156   DebugLoc dl = Op.getDebugLoc();
10157
10158   Op = Op.getOperand(0);
10159   if (VT == MVT::i8) {
10160     OpVT = MVT::i32;
10161     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
10162   }
10163
10164   // Issue a bsf (scan bits forward) which also sets EFLAGS.
10165   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
10166   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
10167
10168   // If src is zero (i.e. bsf sets ZF), returns NumBits.
10169   SDValue Ops[] = {
10170     Op,
10171     DAG.getConstant(NumBits, OpVT),
10172     DAG.getConstant(X86::COND_E, MVT::i8),
10173     Op.getValue(1)
10174   };
10175   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
10176
10177   if (VT == MVT::i8)
10178     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
10179   return Op;
10180 }
10181
10182 // Lower256IntArith - Break a 256-bit integer operation into two new 128-bit
10183 // ones, and then concatenate the result back.
10184 static SDValue Lower256IntArith(SDValue Op, SelectionDAG &DAG) {
10185   EVT VT = Op.getValueType();
10186
10187   assert(VT.getSizeInBits() == 256 && VT.isInteger() &&
10188          "Unsupported value type for operation");
10189
10190   int NumElems = VT.getVectorNumElements();
10191   DebugLoc dl = Op.getDebugLoc();
10192   SDValue Idx0 = DAG.getConstant(0, MVT::i32);
10193   SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
10194
10195   // Extract the LHS vectors
10196   SDValue LHS = Op.getOperand(0);
10197   SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
10198   SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
10199
10200   // Extract the RHS vectors
10201   SDValue RHS = Op.getOperand(1);
10202   SDValue RHS1 = Extract128BitVector(RHS, Idx0, DAG, dl);
10203   SDValue RHS2 = Extract128BitVector(RHS, Idx1, DAG, dl);
10204
10205   MVT EltVT = VT.getVectorElementType().getSimpleVT();
10206   EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10207
10208   return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT,
10209                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, RHS1),
10210                      DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, RHS2));
10211 }
10212
10213 SDValue X86TargetLowering::LowerADD(SDValue Op, SelectionDAG &DAG) const {
10214   assert(Op.getValueType().getSizeInBits() == 256 &&
10215          Op.getValueType().isInteger() &&
10216          "Only handle AVX 256-bit vector integer operation");
10217   return Lower256IntArith(Op, DAG);
10218 }
10219
10220 SDValue X86TargetLowering::LowerSUB(SDValue Op, SelectionDAG &DAG) const {
10221   assert(Op.getValueType().getSizeInBits() == 256 &&
10222          Op.getValueType().isInteger() &&
10223          "Only handle AVX 256-bit vector integer operation");
10224   return Lower256IntArith(Op, DAG);
10225 }
10226
10227 SDValue X86TargetLowering::LowerMUL(SDValue Op, SelectionDAG &DAG) const {
10228   EVT VT = Op.getValueType();
10229
10230   // Decompose 256-bit ops into smaller 128-bit ops.
10231   if (VT.getSizeInBits() == 256 && !Subtarget->hasAVX2())
10232     return Lower256IntArith(Op, DAG);
10233
10234   DebugLoc dl = Op.getDebugLoc();
10235
10236   SDValue A = Op.getOperand(0);
10237   SDValue B = Op.getOperand(1);
10238
10239   if (VT == MVT::v4i64) {
10240     assert(Subtarget->hasAVX2() && "Lowering v4i64 multiply requires AVX2");
10241
10242     //  ulong2 Ahi = __builtin_ia32_psrlqi256( a, 32);
10243     //  ulong2 Bhi = __builtin_ia32_psrlqi256( b, 32);
10244     //  ulong2 AloBlo = __builtin_ia32_pmuludq256( a, b );
10245     //  ulong2 AloBhi = __builtin_ia32_pmuludq256( a, Bhi );
10246     //  ulong2 AhiBlo = __builtin_ia32_pmuludq256( Ahi, b );
10247     //
10248     //  AloBhi = __builtin_ia32_psllqi256( AloBhi, 32 );
10249     //  AhiBlo = __builtin_ia32_psllqi256( AhiBlo, 32 );
10250     //  return AloBlo + AloBhi + AhiBlo;
10251
10252     SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10253                          DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
10254                          A, DAG.getConstant(32, MVT::i32));
10255     SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10256                          DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
10257                          B, DAG.getConstant(32, MVT::i32));
10258     SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10259                          DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
10260                          A, B);
10261     SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10262                          DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
10263                          A, Bhi);
10264     SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10265                          DAG.getConstant(Intrinsic::x86_avx2_pmulu_dq, MVT::i32),
10266                          Ahi, B);
10267     AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10268                          DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
10269                          AloBhi, DAG.getConstant(32, MVT::i32));
10270     AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10271                          DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
10272                          AhiBlo, DAG.getConstant(32, MVT::i32));
10273     SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
10274     Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
10275     return Res;
10276   }
10277
10278   assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
10279
10280   //  ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
10281   //  ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
10282   //  ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
10283   //  ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
10284   //  ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
10285   //
10286   //  AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
10287   //  AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
10288   //  return AloBlo + AloBhi + AhiBlo;
10289
10290   SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10291                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
10292                        A, DAG.getConstant(32, MVT::i32));
10293   SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10294                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
10295                        B, DAG.getConstant(32, MVT::i32));
10296   SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10297                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
10298                        A, B);
10299   SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10300                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
10301                        A, Bhi);
10302   SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10303                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
10304                        Ahi, B);
10305   AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10306                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
10307                        AloBhi, DAG.getConstant(32, MVT::i32));
10308   AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10309                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
10310                        AhiBlo, DAG.getConstant(32, MVT::i32));
10311   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
10312   Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
10313   return Res;
10314 }
10315
10316 SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
10317
10318   EVT VT = Op.getValueType();
10319   DebugLoc dl = Op.getDebugLoc();
10320   SDValue R = Op.getOperand(0);
10321   SDValue Amt = Op.getOperand(1);
10322   LLVMContext *Context = DAG.getContext();
10323
10324   if (!Subtarget->hasXMMInt())
10325     return SDValue();
10326
10327   // Optimize shl/srl/sra with constant shift amount.
10328   if (isSplatVector(Amt.getNode())) {
10329     SDValue SclrAmt = Amt->getOperand(0);
10330     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
10331       uint64_t ShiftAmt = C->getZExtValue();
10332
10333       if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SHL) {
10334         // Make a large shift.
10335         SDValue SHL =
10336           DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10337                       DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10338                       R, DAG.getConstant(ShiftAmt, MVT::i32));
10339         // Zero out the rightmost bits.
10340         SmallVector<SDValue, 16> V(16, DAG.getConstant(uint8_t(-1U << ShiftAmt),
10341                                                        MVT::i8));
10342         return DAG.getNode(ISD::AND, dl, VT, SHL,
10343                            DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10344       }
10345
10346       if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
10347        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10348                      DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
10349                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10350
10351       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
10352        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10353                      DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
10354                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10355
10356       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
10357        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10358                      DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10359                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10360
10361       if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SRL) {
10362         // Make a large shift.
10363         SDValue SRL =
10364           DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10365                       DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
10366                       R, DAG.getConstant(ShiftAmt, MVT::i32));
10367         // Zero out the leftmost bits.
10368         SmallVector<SDValue, 16> V(16, DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10369                                                        MVT::i8));
10370         return DAG.getNode(ISD::AND, dl, VT, SRL,
10371                            DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16));
10372       }
10373
10374       if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
10375        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10376                      DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
10377                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10378
10379       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
10380        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10381                      DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
10382                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10383
10384       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
10385        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10386                      DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
10387                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10388
10389       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
10390        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10391                      DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
10392                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10393
10394       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
10395        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10396                      DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
10397                      R, DAG.getConstant(ShiftAmt, MVT::i32));
10398
10399       if (VT == MVT::v16i8 && Op.getOpcode() == ISD::SRA) {
10400         if (ShiftAmt == 7) {
10401           // R s>> 7  ===  R s< 0
10402           SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
10403           return DAG.getNode(X86ISD::PCMPGTB, dl, VT, Zeros, R);
10404         }
10405
10406         // R s>> a === ((R u>> a) ^ m) - m
10407         SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10408         SmallVector<SDValue, 16> V(16, DAG.getConstant(128 >> ShiftAmt,
10409                                                        MVT::i8));
10410         SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 16);
10411         Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10412         Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10413         return Res;
10414       }
10415
10416       if (Subtarget->hasAVX2() && VT == MVT::v32i8) {
10417         if (Op.getOpcode() == ISD::SHL) {
10418           // Make a large shift.
10419           SDValue SHL =
10420             DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10421                         DAG.getConstant(Intrinsic::x86_avx2_pslli_w, MVT::i32),
10422                         R, DAG.getConstant(ShiftAmt, MVT::i32));
10423           // Zero out the rightmost bits.
10424           SmallVector<SDValue, 32> V(32, DAG.getConstant(uint8_t(-1U << ShiftAmt),
10425                                                          MVT::i8));
10426           return DAG.getNode(ISD::AND, dl, VT, SHL,
10427                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
10428         }
10429         if (Op.getOpcode() == ISD::SRL) {
10430           // Make a large shift.
10431           SDValue SRL =
10432             DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10433                         DAG.getConstant(Intrinsic::x86_avx2_psrli_w, MVT::i32),
10434                         R, DAG.getConstant(ShiftAmt, MVT::i32));
10435           // Zero out the leftmost bits.
10436           SmallVector<SDValue, 32> V(32, DAG.getConstant(uint8_t(-1U) >> ShiftAmt,
10437                                                          MVT::i8));
10438           return DAG.getNode(ISD::AND, dl, VT, SRL,
10439                              DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32));
10440         }
10441         if (Op.getOpcode() == ISD::SRA) {
10442           if (ShiftAmt == 7) {
10443             // R s>> 7  ===  R s< 0
10444             SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
10445             return DAG.getNode(X86ISD::PCMPGTB, dl, VT, Zeros, R);
10446           }
10447
10448           // R s>> a === ((R u>> a) ^ m) - m
10449           SDValue Res = DAG.getNode(ISD::SRL, dl, VT, R, Amt);
10450           SmallVector<SDValue, 32> V(32, DAG.getConstant(128 >> ShiftAmt,
10451                                                          MVT::i8));
10452           SDValue Mask = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &V[0], 32);
10453           Res = DAG.getNode(ISD::XOR, dl, VT, Res, Mask);
10454           Res = DAG.getNode(ISD::SUB, dl, VT, Res, Mask);
10455           return Res;
10456         }
10457       }
10458     }
10459   }
10460
10461   // Lower SHL with variable shift amount.
10462   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
10463     Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10464                      DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
10465                      Op.getOperand(1), DAG.getConstant(23, MVT::i32));
10466
10467     ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
10468
10469     std::vector<Constant*> CV(4, CI);
10470     Constant *C = ConstantVector::get(CV);
10471     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
10472     SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
10473                                  MachinePointerInfo::getConstantPool(),
10474                                  false, false, false, 16);
10475
10476     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
10477     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
10478     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
10479     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
10480   }
10481   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
10482     // a = a << 5;
10483     Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10484                      DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
10485                      Op.getOperand(1), DAG.getConstant(5, MVT::i32));
10486
10487     ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
10488     ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
10489
10490     std::vector<Constant*> CVM1(16, CM1);
10491     std::vector<Constant*> CVM2(16, CM2);
10492     Constant *C = ConstantVector::get(CVM1);
10493     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
10494     SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
10495                             MachinePointerInfo::getConstantPool(),
10496                             false, false, false, 16);
10497
10498     // r = pblendv(r, psllw(r & (char16)15, 4), a);
10499     M = DAG.getNode(ISD::AND, dl, VT, R, M);
10500     M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10501                     DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
10502                     DAG.getConstant(4, MVT::i32));
10503     R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
10504     // a += a
10505     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
10506
10507     C = ConstantVector::get(CVM2);
10508     CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
10509     M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
10510                     MachinePointerInfo::getConstantPool(),
10511                     false, false, false, 16);
10512
10513     // r = pblendv(r, psllw(r & (char16)63, 2), a);
10514     M = DAG.getNode(ISD::AND, dl, VT, R, M);
10515     M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10516                     DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
10517                     DAG.getConstant(2, MVT::i32));
10518     R = DAG.getNode(ISD::VSELECT, dl, VT, Op, R, M);
10519     // a += a
10520     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
10521
10522     // return pblendv(r, r+r, a);
10523     R = DAG.getNode(ISD::VSELECT, dl, VT, Op,
10524                     R, DAG.getNode(ISD::ADD, dl, VT, R, R));
10525     return R;
10526   }
10527
10528   // Decompose 256-bit shifts into smaller 128-bit shifts.
10529   if (VT.getSizeInBits() == 256) {
10530     int NumElems = VT.getVectorNumElements();
10531     MVT EltVT = VT.getVectorElementType().getSimpleVT();
10532     EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10533
10534     // Extract the two vectors
10535     SDValue V1 = Extract128BitVector(R, DAG.getConstant(0, MVT::i32), DAG, dl);
10536     SDValue V2 = Extract128BitVector(R, DAG.getConstant(NumElems/2, MVT::i32),
10537                                      DAG, dl);
10538
10539     // Recreate the shift amount vectors
10540     SDValue Amt1, Amt2;
10541     if (Amt.getOpcode() == ISD::BUILD_VECTOR) {
10542       // Constant shift amount
10543       SmallVector<SDValue, 4> Amt1Csts;
10544       SmallVector<SDValue, 4> Amt2Csts;
10545       for (int i = 0; i < NumElems/2; ++i)
10546         Amt1Csts.push_back(Amt->getOperand(i));
10547       for (int i = NumElems/2; i < NumElems; ++i)
10548         Amt2Csts.push_back(Amt->getOperand(i));
10549
10550       Amt1 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10551                                  &Amt1Csts[0], NumElems/2);
10552       Amt2 = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT,
10553                                  &Amt2Csts[0], NumElems/2);
10554     } else {
10555       // Variable shift amount
10556       Amt1 = Extract128BitVector(Amt, DAG.getConstant(0, MVT::i32), DAG, dl);
10557       Amt2 = Extract128BitVector(Amt, DAG.getConstant(NumElems/2, MVT::i32),
10558                                  DAG, dl);
10559     }
10560
10561     // Issue new vector shifts for the smaller types
10562     V1 = DAG.getNode(Op.getOpcode(), dl, NewVT, V1, Amt1);
10563     V2 = DAG.getNode(Op.getOpcode(), dl, NewVT, V2, Amt2);
10564
10565     // Concatenate the result back
10566     return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, V1, V2);
10567   }
10568
10569   return SDValue();
10570 }
10571
10572 SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
10573   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
10574   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
10575   // looks for this combo and may remove the "setcc" instruction if the "setcc"
10576   // has only one use.
10577   SDNode *N = Op.getNode();
10578   SDValue LHS = N->getOperand(0);
10579   SDValue RHS = N->getOperand(1);
10580   unsigned BaseOp = 0;
10581   unsigned Cond = 0;
10582   DebugLoc DL = Op.getDebugLoc();
10583   switch (Op.getOpcode()) {
10584   default: llvm_unreachable("Unknown ovf instruction!");
10585   case ISD::SADDO:
10586     // A subtract of one will be selected as a INC. Note that INC doesn't
10587     // set CF, so we can't do this for UADDO.
10588     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10589       if (C->isOne()) {
10590         BaseOp = X86ISD::INC;
10591         Cond = X86::COND_O;
10592         break;
10593       }
10594     BaseOp = X86ISD::ADD;
10595     Cond = X86::COND_O;
10596     break;
10597   case ISD::UADDO:
10598     BaseOp = X86ISD::ADD;
10599     Cond = X86::COND_B;
10600     break;
10601   case ISD::SSUBO:
10602     // A subtract of one will be selected as a DEC. Note that DEC doesn't
10603     // set CF, so we can't do this for USUBO.
10604     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
10605       if (C->isOne()) {
10606         BaseOp = X86ISD::DEC;
10607         Cond = X86::COND_O;
10608         break;
10609       }
10610     BaseOp = X86ISD::SUB;
10611     Cond = X86::COND_O;
10612     break;
10613   case ISD::USUBO:
10614     BaseOp = X86ISD::SUB;
10615     Cond = X86::COND_B;
10616     break;
10617   case ISD::SMULO:
10618     BaseOp = X86ISD::SMUL;
10619     Cond = X86::COND_O;
10620     break;
10621   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
10622     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
10623                                  MVT::i32);
10624     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
10625
10626     SDValue SetCC =
10627       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
10628                   DAG.getConstant(X86::COND_O, MVT::i32),
10629                   SDValue(Sum.getNode(), 2));
10630
10631     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
10632   }
10633   }
10634
10635   // Also sets EFLAGS.
10636   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
10637   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
10638
10639   SDValue SetCC =
10640     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
10641                 DAG.getConstant(Cond, MVT::i32),
10642                 SDValue(Sum.getNode(), 1));
10643
10644   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
10645 }
10646
10647 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
10648   DebugLoc dl = Op.getDebugLoc();
10649   EVT ExtraVT = cast<VTSDNode>(Op.getOperand(1))->getVT();
10650   EVT VT = Op.getValueType();
10651
10652   if (Subtarget->hasXMMInt() && VT.isVector()) {
10653     unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
10654                         ExtraVT.getScalarType().getSizeInBits();
10655     SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
10656
10657     unsigned SHLIntrinsicsID = 0;
10658     unsigned SRAIntrinsicsID = 0;
10659     switch (VT.getSimpleVT().SimpleTy) {
10660       default:
10661         return SDValue();
10662       case MVT::v4i32:
10663         SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
10664         SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
10665         break;
10666       case MVT::v8i16:
10667         SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
10668         SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
10669         break;
10670       case MVT::v8i32:
10671       case MVT::v16i16:
10672         if (!Subtarget->hasAVX())
10673           return SDValue();
10674         if (!Subtarget->hasAVX2()) {
10675           // needs to be split
10676           int NumElems = VT.getVectorNumElements();
10677           SDValue Idx0 = DAG.getConstant(0, MVT::i32);
10678           SDValue Idx1 = DAG.getConstant(NumElems/2, MVT::i32);
10679
10680           // Extract the LHS vectors
10681           SDValue LHS = Op.getOperand(0);
10682           SDValue LHS1 = Extract128BitVector(LHS, Idx0, DAG, dl);
10683           SDValue LHS2 = Extract128BitVector(LHS, Idx1, DAG, dl);
10684
10685           MVT EltVT = VT.getVectorElementType().getSimpleVT();
10686           EVT NewVT = MVT::getVectorVT(EltVT, NumElems/2);
10687
10688           EVT ExtraEltVT = ExtraVT.getVectorElementType();
10689           int ExtraNumElems = ExtraVT.getVectorNumElements();
10690           ExtraVT = EVT::getVectorVT(*DAG.getContext(), ExtraEltVT,
10691                                      ExtraNumElems/2);
10692           SDValue Extra = DAG.getValueType(ExtraVT);
10693
10694           LHS1 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS1, Extra);
10695           LHS2 = DAG.getNode(Op.getOpcode(), dl, NewVT, LHS2, Extra);
10696
10697           return DAG.getNode(ISD::CONCAT_VECTORS, dl, VT, LHS1, LHS2);;
10698         }
10699         if (VT == MVT::v8i32) {
10700           SHLIntrinsicsID = Intrinsic::x86_avx2_pslli_d;
10701           SRAIntrinsicsID = Intrinsic::x86_avx2_psrai_d;
10702         } else {
10703           SHLIntrinsicsID = Intrinsic::x86_avx2_pslli_w;
10704           SRAIntrinsicsID = Intrinsic::x86_avx2_psrai_w;
10705         }
10706     }
10707
10708     SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10709                          DAG.getConstant(SHLIntrinsicsID, MVT::i32),
10710                          Op.getOperand(0), ShAmt);
10711
10712     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
10713                        DAG.getConstant(SRAIntrinsicsID, MVT::i32),
10714                        Tmp1, ShAmt);
10715   }
10716
10717   return SDValue();
10718 }
10719
10720
10721 SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
10722   DebugLoc dl = Op.getDebugLoc();
10723
10724   // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
10725   // There isn't any reason to disable it if the target processor supports it.
10726   if (!Subtarget->hasXMMInt() && !Subtarget->is64Bit()) {
10727     SDValue Chain = Op.getOperand(0);
10728     SDValue Zero = DAG.getConstant(0, MVT::i32);
10729     SDValue Ops[] = {
10730       DAG.getRegister(X86::ESP, MVT::i32), // Base
10731       DAG.getTargetConstant(1, MVT::i8),   // Scale
10732       DAG.getRegister(0, MVT::i32),        // Index
10733       DAG.getTargetConstant(0, MVT::i32),  // Disp
10734       DAG.getRegister(0, MVT::i32),        // Segment.
10735       Zero,
10736       Chain
10737     };
10738     SDNode *Res =
10739       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10740                           array_lengthof(Ops));
10741     return SDValue(Res, 0);
10742   }
10743
10744   unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
10745   if (!isDev)
10746     return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10747
10748   unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
10749   unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
10750   unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
10751   unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
10752
10753   // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
10754   if (!Op1 && !Op2 && !Op3 && Op4)
10755     return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
10756
10757   // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
10758   if (Op1 && !Op2 && !Op3 && !Op4)
10759     return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
10760
10761   // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
10762   //           (MFENCE)>;
10763   return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10764 }
10765
10766 SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
10767                                              SelectionDAG &DAG) const {
10768   DebugLoc dl = Op.getDebugLoc();
10769   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
10770     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
10771   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
10772     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
10773
10774   // The only fence that needs an instruction is a sequentially-consistent
10775   // cross-thread fence.
10776   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
10777     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
10778     // no-sse2). There isn't any reason to disable it if the target processor
10779     // supports it.
10780     if (Subtarget->hasXMMInt() || Subtarget->is64Bit())
10781       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
10782
10783     SDValue Chain = Op.getOperand(0);
10784     SDValue Zero = DAG.getConstant(0, MVT::i32);
10785     SDValue Ops[] = {
10786       DAG.getRegister(X86::ESP, MVT::i32), // Base
10787       DAG.getTargetConstant(1, MVT::i8),   // Scale
10788       DAG.getRegister(0, MVT::i32),        // Index
10789       DAG.getTargetConstant(0, MVT::i32),  // Disp
10790       DAG.getRegister(0, MVT::i32),        // Segment.
10791       Zero,
10792       Chain
10793     };
10794     SDNode *Res =
10795       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
10796                          array_lengthof(Ops));
10797     return SDValue(Res, 0);
10798   }
10799
10800   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
10801   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
10802 }
10803
10804
10805 SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
10806   EVT T = Op.getValueType();
10807   DebugLoc DL = Op.getDebugLoc();
10808   unsigned Reg = 0;
10809   unsigned size = 0;
10810   switch(T.getSimpleVT().SimpleTy) {
10811   default:
10812     assert(false && "Invalid value type!");
10813   case MVT::i8:  Reg = X86::AL;  size = 1; break;
10814   case MVT::i16: Reg = X86::AX;  size = 2; break;
10815   case MVT::i32: Reg = X86::EAX; size = 4; break;
10816   case MVT::i64:
10817     assert(Subtarget->is64Bit() && "Node not type legal!");
10818     Reg = X86::RAX; size = 8;
10819     break;
10820   }
10821   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
10822                                     Op.getOperand(2), SDValue());
10823   SDValue Ops[] = { cpIn.getValue(0),
10824                     Op.getOperand(1),
10825                     Op.getOperand(3),
10826                     DAG.getTargetConstant(size, MVT::i8),
10827                     cpIn.getValue(1) };
10828   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
10829   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
10830   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
10831                                            Ops, 5, T, MMO);
10832   SDValue cpOut =
10833     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
10834   return cpOut;
10835 }
10836
10837 SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
10838                                                  SelectionDAG &DAG) const {
10839   assert(Subtarget->is64Bit() && "Result not type legalized?");
10840   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
10841   SDValue TheChain = Op.getOperand(0);
10842   DebugLoc dl = Op.getDebugLoc();
10843   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
10844   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
10845   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
10846                                    rax.getValue(2));
10847   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
10848                             DAG.getConstant(32, MVT::i8));
10849   SDValue Ops[] = {
10850     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
10851     rdx.getValue(1)
10852   };
10853   return DAG.getMergeValues(Ops, 2, dl);
10854 }
10855
10856 SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
10857                                             SelectionDAG &DAG) const {
10858   EVT SrcVT = Op.getOperand(0).getValueType();
10859   EVT DstVT = Op.getValueType();
10860   assert(Subtarget->is64Bit() && !Subtarget->hasXMMInt() &&
10861          Subtarget->hasMMX() && "Unexpected custom BITCAST");
10862   assert((DstVT == MVT::i64 ||
10863           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
10864          "Unexpected custom BITCAST");
10865   // i64 <=> MMX conversions are Legal.
10866   if (SrcVT==MVT::i64 && DstVT.isVector())
10867     return Op;
10868   if (DstVT==MVT::i64 && SrcVT.isVector())
10869     return Op;
10870   // MMX <=> MMX conversions are Legal.
10871   if (SrcVT.isVector() && DstVT.isVector())
10872     return Op;
10873   // All other conversions need to be expanded.
10874   return SDValue();
10875 }
10876
10877 SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
10878   SDNode *Node = Op.getNode();
10879   DebugLoc dl = Node->getDebugLoc();
10880   EVT T = Node->getValueType(0);
10881   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
10882                               DAG.getConstant(0, T), Node->getOperand(2));
10883   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
10884                        cast<AtomicSDNode>(Node)->getMemoryVT(),
10885                        Node->getOperand(0),
10886                        Node->getOperand(1), negOp,
10887                        cast<AtomicSDNode>(Node)->getSrcValue(),
10888                        cast<AtomicSDNode>(Node)->getAlignment(),
10889                        cast<AtomicSDNode>(Node)->getOrdering(),
10890                        cast<AtomicSDNode>(Node)->getSynchScope());
10891 }
10892
10893 static SDValue LowerATOMIC_STORE(SDValue Op, SelectionDAG &DAG) {
10894   SDNode *Node = Op.getNode();
10895   DebugLoc dl = Node->getDebugLoc();
10896   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
10897
10898   // Convert seq_cst store -> xchg
10899   // Convert wide store -> swap (-> cmpxchg8b/cmpxchg16b)
10900   // FIXME: On 32-bit, store -> fist or movq would be more efficient
10901   //        (The only way to get a 16-byte store is cmpxchg16b)
10902   // FIXME: 16-byte ATOMIC_SWAP isn't actually hooked up at the moment.
10903   if (cast<AtomicSDNode>(Node)->getOrdering() == SequentiallyConsistent ||
10904       !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
10905     SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl,
10906                                  cast<AtomicSDNode>(Node)->getMemoryVT(),
10907                                  Node->getOperand(0),
10908                                  Node->getOperand(1), Node->getOperand(2),
10909                                  cast<AtomicSDNode>(Node)->getMemOperand(),
10910                                  cast<AtomicSDNode>(Node)->getOrdering(),
10911                                  cast<AtomicSDNode>(Node)->getSynchScope());
10912     return Swap.getValue(1);
10913   }
10914   // Other atomic stores have a simple pattern.
10915   return Op;
10916 }
10917
10918 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
10919   EVT VT = Op.getNode()->getValueType(0);
10920
10921   // Let legalize expand this if it isn't a legal type yet.
10922   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
10923     return SDValue();
10924
10925   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
10926
10927   unsigned Opc;
10928   bool ExtraOp = false;
10929   switch (Op.getOpcode()) {
10930   default: assert(0 && "Invalid code");
10931   case ISD::ADDC: Opc = X86ISD::ADD; break;
10932   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
10933   case ISD::SUBC: Opc = X86ISD::SUB; break;
10934   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
10935   }
10936
10937   if (!ExtraOp)
10938     return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10939                        Op.getOperand(1));
10940   return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
10941                      Op.getOperand(1), Op.getOperand(2));
10942 }
10943
10944 /// LowerOperation - Provide custom lowering hooks for some operations.
10945 ///
10946 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
10947   switch (Op.getOpcode()) {
10948   default: llvm_unreachable("Should not custom lower this!");
10949   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
10950   case ISD::MEMBARRIER:         return LowerMEMBARRIER(Op,DAG);
10951   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op,DAG);
10952   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op,DAG);
10953   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
10954   case ISD::ATOMIC_STORE:       return LowerATOMIC_STORE(Op,DAG);
10955   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
10956   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
10957   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
10958   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
10959   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
10960   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op, DAG);
10961   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, DAG);
10962   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
10963   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
10964   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
10965   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
10966   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
10967   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
10968   case ISD::SHL_PARTS:
10969   case ISD::SRA_PARTS:
10970   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
10971   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
10972   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
10973   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
10974   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
10975   case ISD::FABS:               return LowerFABS(Op, DAG);
10976   case ISD::FNEG:               return LowerFNEG(Op, DAG);
10977   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
10978   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
10979   case ISD::SETCC:              return LowerSETCC(Op, DAG);
10980   case ISD::SELECT:             return LowerSELECT(Op, DAG);
10981   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
10982   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
10983   case ISD::VASTART:            return LowerVASTART(Op, DAG);
10984   case ISD::VAARG:              return LowerVAARG(Op, DAG);
10985   case ISD::VACOPY:             return LowerVACOPY(Op, DAG);
10986   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
10987   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
10988   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
10989   case ISD::FRAME_TO_ARGS_OFFSET:
10990                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
10991   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
10992   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
10993   case ISD::INIT_TRAMPOLINE:    return LowerINIT_TRAMPOLINE(Op, DAG);
10994   case ISD::ADJUST_TRAMPOLINE:  return LowerADJUST_TRAMPOLINE(Op, DAG);
10995   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
10996   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
10997   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
10998   case ISD::MUL:                return LowerMUL(Op, DAG);
10999   case ISD::SRA:
11000   case ISD::SRL:
11001   case ISD::SHL:                return LowerShift(Op, DAG);
11002   case ISD::SADDO:
11003   case ISD::UADDO:
11004   case ISD::SSUBO:
11005   case ISD::USUBO:
11006   case ISD::SMULO:
11007   case ISD::UMULO:              return LowerXALUO(Op, DAG);
11008   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, DAG);
11009   case ISD::BITCAST:            return LowerBITCAST(Op, DAG);
11010   case ISD::ADDC:
11011   case ISD::ADDE:
11012   case ISD::SUBC:
11013   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
11014   case ISD::ADD:                return LowerADD(Op, DAG);
11015   case ISD::SUB:                return LowerSUB(Op, DAG);
11016   }
11017 }
11018
11019 static void ReplaceATOMIC_LOAD(SDNode *Node,
11020                                   SmallVectorImpl<SDValue> &Results,
11021                                   SelectionDAG &DAG) {
11022   DebugLoc dl = Node->getDebugLoc();
11023   EVT VT = cast<AtomicSDNode>(Node)->getMemoryVT();
11024
11025   // Convert wide load -> cmpxchg8b/cmpxchg16b
11026   // FIXME: On 32-bit, load -> fild or movq would be more efficient
11027   //        (The only way to get a 16-byte load is cmpxchg16b)
11028   // FIXME: 16-byte ATOMIC_CMP_SWAP isn't actually hooked up at the moment.
11029   SDValue Zero = DAG.getConstant(0, VT);
11030   SDValue Swap = DAG.getAtomic(ISD::ATOMIC_CMP_SWAP, dl, VT,
11031                                Node->getOperand(0),
11032                                Node->getOperand(1), Zero, Zero,
11033                                cast<AtomicSDNode>(Node)->getMemOperand(),
11034                                cast<AtomicSDNode>(Node)->getOrdering(),
11035                                cast<AtomicSDNode>(Node)->getSynchScope());
11036   Results.push_back(Swap.getValue(0));
11037   Results.push_back(Swap.getValue(1));
11038 }
11039
11040 void X86TargetLowering::
11041 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
11042                         SelectionDAG &DAG, unsigned NewOp) const {
11043   DebugLoc dl = Node->getDebugLoc();
11044   assert (Node->getValueType(0) == MVT::i64 &&
11045           "Only know how to expand i64 atomics");
11046
11047   SDValue Chain = Node->getOperand(0);
11048   SDValue In1 = Node->getOperand(1);
11049   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11050                              Node->getOperand(2), DAG.getIntPtrConstant(0));
11051   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
11052                              Node->getOperand(2), DAG.getIntPtrConstant(1));
11053   SDValue Ops[] = { Chain, In1, In2L, In2H };
11054   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
11055   SDValue Result =
11056     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
11057                             cast<MemSDNode>(Node)->getMemOperand());
11058   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
11059   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
11060   Results.push_back(Result.getValue(2));
11061 }
11062
11063 /// ReplaceNodeResults - Replace a node with an illegal result type
11064 /// with a new node built out of custom code.
11065 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
11066                                            SmallVectorImpl<SDValue>&Results,
11067                                            SelectionDAG &DAG) const {
11068   DebugLoc dl = N->getDebugLoc();
11069   switch (N->getOpcode()) {
11070   default:
11071     assert(false && "Do not know how to custom type legalize this operation!");
11072     return;
11073   case ISD::SIGN_EXTEND_INREG:
11074   case ISD::ADDC:
11075   case ISD::ADDE:
11076   case ISD::SUBC:
11077   case ISD::SUBE:
11078     // We don't want to expand or promote these.
11079     return;
11080   case ISD::FP_TO_SINT: {
11081     std::pair<SDValue,SDValue> Vals =
11082         FP_TO_INTHelper(SDValue(N, 0), DAG, true);
11083     SDValue FIST = Vals.first, StackSlot = Vals.second;
11084     if (FIST.getNode() != 0) {
11085       EVT VT = N->getValueType(0);
11086       // Return a load from the stack slot.
11087       Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
11088                                     MachinePointerInfo(), 
11089                                     false, false, false, 0));
11090     }
11091     return;
11092   }
11093   case ISD::READCYCLECOUNTER: {
11094     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11095     SDValue TheChain = N->getOperand(0);
11096     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
11097     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
11098                                      rd.getValue(1));
11099     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
11100                                      eax.getValue(2));
11101     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
11102     SDValue Ops[] = { eax, edx };
11103     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
11104     Results.push_back(edx.getValue(1));
11105     return;
11106   }
11107   case ISD::ATOMIC_CMP_SWAP: {
11108     EVT T = N->getValueType(0);
11109     assert((T == MVT::i64 || T == MVT::i128) && "can only expand cmpxchg pair");
11110     bool Regs64bit = T == MVT::i128;
11111     EVT HalfT = Regs64bit ? MVT::i64 : MVT::i32;
11112     SDValue cpInL, cpInH;
11113     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11114                         DAG.getConstant(0, HalfT));
11115     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(2),
11116                         DAG.getConstant(1, HalfT));
11117     cpInL = DAG.getCopyToReg(N->getOperand(0), dl,
11118                              Regs64bit ? X86::RAX : X86::EAX,
11119                              cpInL, SDValue());
11120     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl,
11121                              Regs64bit ? X86::RDX : X86::EDX,
11122                              cpInH, cpInL.getValue(1));
11123     SDValue swapInL, swapInH;
11124     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11125                           DAG.getConstant(0, HalfT));
11126     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, HalfT, N->getOperand(3),
11127                           DAG.getConstant(1, HalfT));
11128     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl,
11129                                Regs64bit ? X86::RBX : X86::EBX,
11130                                swapInL, cpInH.getValue(1));
11131     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl,
11132                                Regs64bit ? X86::RCX : X86::ECX, 
11133                                swapInH, swapInL.getValue(1));
11134     SDValue Ops[] = { swapInH.getValue(0),
11135                       N->getOperand(1),
11136                       swapInH.getValue(1) };
11137     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
11138     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
11139     unsigned Opcode = Regs64bit ? X86ISD::LCMPXCHG16_DAG :
11140                                   X86ISD::LCMPXCHG8_DAG;
11141     SDValue Result = DAG.getMemIntrinsicNode(Opcode, dl, Tys,
11142                                              Ops, 3, T, MMO);
11143     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl,
11144                                         Regs64bit ? X86::RAX : X86::EAX,
11145                                         HalfT, Result.getValue(1));
11146     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl,
11147                                         Regs64bit ? X86::RDX : X86::EDX,
11148                                         HalfT, cpOutL.getValue(2));
11149     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
11150     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, T, OpsF, 2));
11151     Results.push_back(cpOutH.getValue(1));
11152     return;
11153   }
11154   case ISD::ATOMIC_LOAD_ADD:
11155     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
11156     return;
11157   case ISD::ATOMIC_LOAD_AND:
11158     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
11159     return;
11160   case ISD::ATOMIC_LOAD_NAND:
11161     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
11162     return;
11163   case ISD::ATOMIC_LOAD_OR:
11164     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
11165     return;
11166   case ISD::ATOMIC_LOAD_SUB:
11167     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
11168     return;
11169   case ISD::ATOMIC_LOAD_XOR:
11170     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
11171     return;
11172   case ISD::ATOMIC_SWAP:
11173     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
11174     return;
11175   case ISD::ATOMIC_LOAD:
11176     ReplaceATOMIC_LOAD(N, Results, DAG);
11177   }
11178 }
11179
11180 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
11181   switch (Opcode) {
11182   default: return NULL;
11183   case X86ISD::BSF:                return "X86ISD::BSF";
11184   case X86ISD::BSR:                return "X86ISD::BSR";
11185   case X86ISD::SHLD:               return "X86ISD::SHLD";
11186   case X86ISD::SHRD:               return "X86ISD::SHRD";
11187   case X86ISD::FAND:               return "X86ISD::FAND";
11188   case X86ISD::FOR:                return "X86ISD::FOR";
11189   case X86ISD::FXOR:               return "X86ISD::FXOR";
11190   case X86ISD::FSRL:               return "X86ISD::FSRL";
11191   case X86ISD::FILD:               return "X86ISD::FILD";
11192   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
11193   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
11194   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
11195   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
11196   case X86ISD::FLD:                return "X86ISD::FLD";
11197   case X86ISD::FST:                return "X86ISD::FST";
11198   case X86ISD::CALL:               return "X86ISD::CALL";
11199   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
11200   case X86ISD::BT:                 return "X86ISD::BT";
11201   case X86ISD::CMP:                return "X86ISD::CMP";
11202   case X86ISD::COMI:               return "X86ISD::COMI";
11203   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
11204   case X86ISD::SETCC:              return "X86ISD::SETCC";
11205   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
11206   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
11207   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
11208   case X86ISD::CMOV:               return "X86ISD::CMOV";
11209   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
11210   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
11211   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
11212   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
11213   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
11214   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
11215   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
11216   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
11217   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
11218   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
11219   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
11220   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
11221   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
11222   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
11223   case X86ISD::PSIGN:              return "X86ISD::PSIGN";
11224   case X86ISD::BLENDV:             return "X86ISD::BLENDV";
11225   case X86ISD::FHADD:              return "X86ISD::FHADD";
11226   case X86ISD::FHSUB:              return "X86ISD::FHSUB";
11227   case X86ISD::FMAX:               return "X86ISD::FMAX";
11228   case X86ISD::FMIN:               return "X86ISD::FMIN";
11229   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
11230   case X86ISD::FRCP:               return "X86ISD::FRCP";
11231   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
11232   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
11233   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
11234   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
11235   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
11236   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
11237   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
11238   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
11239   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
11240   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
11241   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
11242   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
11243   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
11244   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
11245   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
11246   case X86ISD::VSHL:               return "X86ISD::VSHL";
11247   case X86ISD::VSRL:               return "X86ISD::VSRL";
11248   case X86ISD::CMPPD:              return "X86ISD::CMPPD";
11249   case X86ISD::CMPPS:              return "X86ISD::CMPPS";
11250   case X86ISD::PCMPEQB:            return "X86ISD::PCMPEQB";
11251   case X86ISD::PCMPEQW:            return "X86ISD::PCMPEQW";
11252   case X86ISD::PCMPEQD:            return "X86ISD::PCMPEQD";
11253   case X86ISD::PCMPEQQ:            return "X86ISD::PCMPEQQ";
11254   case X86ISD::PCMPGTB:            return "X86ISD::PCMPGTB";
11255   case X86ISD::PCMPGTW:            return "X86ISD::PCMPGTW";
11256   case X86ISD::PCMPGTD:            return "X86ISD::PCMPGTD";
11257   case X86ISD::PCMPGTQ:            return "X86ISD::PCMPGTQ";
11258   case X86ISD::ADD:                return "X86ISD::ADD";
11259   case X86ISD::SUB:                return "X86ISD::SUB";
11260   case X86ISD::ADC:                return "X86ISD::ADC";
11261   case X86ISD::SBB:                return "X86ISD::SBB";
11262   case X86ISD::SMUL:               return "X86ISD::SMUL";
11263   case X86ISD::UMUL:               return "X86ISD::UMUL";
11264   case X86ISD::INC:                return "X86ISD::INC";
11265   case X86ISD::DEC:                return "X86ISD::DEC";
11266   case X86ISD::OR:                 return "X86ISD::OR";
11267   case X86ISD::XOR:                return "X86ISD::XOR";
11268   case X86ISD::AND:                return "X86ISD::AND";
11269   case X86ISD::ANDN:               return "X86ISD::ANDN";
11270   case X86ISD::BLSI:               return "X86ISD::BLSI";
11271   case X86ISD::BLSMSK:             return "X86ISD::BLSMSK";
11272   case X86ISD::BLSR:               return "X86ISD::BLSR";
11273   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
11274   case X86ISD::PTEST:              return "X86ISD::PTEST";
11275   case X86ISD::TESTP:              return "X86ISD::TESTP";
11276   case X86ISD::PALIGN:             return "X86ISD::PALIGN";
11277   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
11278   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
11279   case X86ISD::PSHUFHW_LD:         return "X86ISD::PSHUFHW_LD";
11280   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
11281   case X86ISD::PSHUFLW_LD:         return "X86ISD::PSHUFLW_LD";
11282   case X86ISD::SHUFPS:             return "X86ISD::SHUFPS";
11283   case X86ISD::SHUFPD:             return "X86ISD::SHUFPD";
11284   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
11285   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
11286   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
11287   case X86ISD::MOVHLPD:            return "X86ISD::MOVHLPD";
11288   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
11289   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
11290   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
11291   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
11292   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
11293   case X86ISD::MOVSHDUP_LD:        return "X86ISD::MOVSHDUP_LD";
11294   case X86ISD::MOVSLDUP_LD:        return "X86ISD::MOVSLDUP_LD";
11295   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
11296   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
11297   case X86ISD::UNPCKLPS:           return "X86ISD::UNPCKLPS";
11298   case X86ISD::UNPCKLPD:           return "X86ISD::UNPCKLPD";
11299   case X86ISD::VUNPCKLPSY:         return "X86ISD::VUNPCKLPSY";
11300   case X86ISD::VUNPCKLPDY:         return "X86ISD::VUNPCKLPDY";
11301   case X86ISD::UNPCKHPS:           return "X86ISD::UNPCKHPS";
11302   case X86ISD::UNPCKHPD:           return "X86ISD::UNPCKHPD";
11303   case X86ISD::PUNPCKLBW:          return "X86ISD::PUNPCKLBW";
11304   case X86ISD::PUNPCKLWD:          return "X86ISD::PUNPCKLWD";
11305   case X86ISD::PUNPCKLDQ:          return "X86ISD::PUNPCKLDQ";
11306   case X86ISD::PUNPCKLQDQ:         return "X86ISD::PUNPCKLQDQ";
11307   case X86ISD::VPUNPCKLBWY:        return "X86ISD::VPUNPCKLBWY";
11308   case X86ISD::VPUNPCKLWDY:        return "X86ISD::VPUNPCKLWDY";
11309   case X86ISD::VPUNPCKLDQY:        return "X86ISD::VPUNPCKLDQY";
11310   case X86ISD::VPUNPCKLQDQY:       return "X86ISD::VPUNPCKLQDQY";
11311   case X86ISD::PUNPCKHBW:          return "X86ISD::PUNPCKHBW";
11312   case X86ISD::PUNPCKHWD:          return "X86ISD::PUNPCKHWD";
11313   case X86ISD::PUNPCKHDQ:          return "X86ISD::PUNPCKHDQ";
11314   case X86ISD::PUNPCKHQDQ:         return "X86ISD::PUNPCKHQDQ";
11315   case X86ISD::VPUNPCKHBWY:        return "X86ISD::VPUNPCKHBWY";
11316   case X86ISD::VPUNPCKHWDY:        return "X86ISD::VPUNPCKHWDY";
11317   case X86ISD::VPUNPCKHDQY:        return "X86ISD::VPUNPCKHDQY";
11318   case X86ISD::VPUNPCKHQDQY:       return "X86ISD::VPUNPCKHQDQY";
11319   case X86ISD::VBROADCAST:         return "X86ISD::VBROADCAST";
11320   case X86ISD::VPERMILPS:          return "X86ISD::VPERMILPS";
11321   case X86ISD::VPERMILPSY:         return "X86ISD::VPERMILPSY";
11322   case X86ISD::VPERMILPD:          return "X86ISD::VPERMILPD";
11323   case X86ISD::VPERMILPDY:         return "X86ISD::VPERMILPDY";
11324   case X86ISD::VPERM2F128:         return "X86ISD::VPERM2F128";
11325   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
11326   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
11327   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
11328   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
11329   case X86ISD::SEG_ALLOCA:         return "X86ISD::SEG_ALLOCA";
11330   }
11331 }
11332
11333 // isLegalAddressingMode - Return true if the addressing mode represented
11334 // by AM is legal for this target, for a load/store of the specified type.
11335 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
11336                                               Type *Ty) const {
11337   // X86 supports extremely general addressing modes.
11338   CodeModel::Model M = getTargetMachine().getCodeModel();
11339   Reloc::Model R = getTargetMachine().getRelocationModel();
11340
11341   // X86 allows a sign-extended 32-bit immediate field as a displacement.
11342   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
11343     return false;
11344
11345   if (AM.BaseGV) {
11346     unsigned GVFlags =
11347       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
11348
11349     // If a reference to this global requires an extra load, we can't fold it.
11350     if (isGlobalStubReference(GVFlags))
11351       return false;
11352
11353     // If BaseGV requires a register for the PIC base, we cannot also have a
11354     // BaseReg specified.
11355     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
11356       return false;
11357
11358     // If lower 4G is not available, then we must use rip-relative addressing.
11359     if ((M != CodeModel::Small || R != Reloc::Static) &&
11360         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
11361       return false;
11362   }
11363
11364   switch (AM.Scale) {
11365   case 0:
11366   case 1:
11367   case 2:
11368   case 4:
11369   case 8:
11370     // These scales always work.
11371     break;
11372   case 3:
11373   case 5:
11374   case 9:
11375     // These scales are formed with basereg+scalereg.  Only accept if there is
11376     // no basereg yet.
11377     if (AM.HasBaseReg)
11378       return false;
11379     break;
11380   default:  // Other stuff never works.
11381     return false;
11382   }
11383
11384   return true;
11385 }
11386
11387
11388 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
11389   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
11390     return false;
11391   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
11392   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
11393   if (NumBits1 <= NumBits2)
11394     return false;
11395   return true;
11396 }
11397
11398 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
11399   if (!VT1.isInteger() || !VT2.isInteger())
11400     return false;
11401   unsigned NumBits1 = VT1.getSizeInBits();
11402   unsigned NumBits2 = VT2.getSizeInBits();
11403   if (NumBits1 <= NumBits2)
11404     return false;
11405   return true;
11406 }
11407
11408 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
11409   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
11410   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
11411 }
11412
11413 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
11414   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
11415   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
11416 }
11417
11418 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
11419   // i16 instructions are longer (0x66 prefix) and potentially slower.
11420   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
11421 }
11422
11423 /// isShuffleMaskLegal - Targets can use this to indicate that they only
11424 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
11425 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
11426 /// are assumed to be legal.
11427 bool
11428 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
11429                                       EVT VT) const {
11430   // Very little shuffling can be done for 64-bit vectors right now.
11431   if (VT.getSizeInBits() == 64)
11432     return isPALIGNRMask(M, VT, Subtarget->hasSSSE3orAVX());
11433
11434   // FIXME: pshufb, blends, shifts.
11435   return (VT.getVectorNumElements() == 2 ||
11436           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
11437           isMOVLMask(M, VT) ||
11438           isSHUFPMask(M, VT) ||
11439           isPSHUFDMask(M, VT) ||
11440           isPSHUFHWMask(M, VT) ||
11441           isPSHUFLWMask(M, VT) ||
11442           isPALIGNRMask(M, VT, Subtarget->hasSSSE3orAVX()) ||
11443           isUNPCKLMask(M, VT, Subtarget->hasAVX2()) ||
11444           isUNPCKHMask(M, VT, Subtarget->hasAVX2()) ||
11445           isUNPCKL_v_undef_Mask(M, VT) ||
11446           isUNPCKH_v_undef_Mask(M, VT));
11447 }
11448
11449 bool
11450 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
11451                                           EVT VT) const {
11452   unsigned NumElts = VT.getVectorNumElements();
11453   // FIXME: This collection of masks seems suspect.
11454   if (NumElts == 2)
11455     return true;
11456   if (NumElts == 4 && VT.getSizeInBits() == 128) {
11457     return (isMOVLMask(Mask, VT)  ||
11458             isCommutedMOVLMask(Mask, VT, true) ||
11459             isSHUFPMask(Mask, VT) ||
11460             isCommutedSHUFPMask(Mask, VT));
11461   }
11462   return false;
11463 }
11464
11465 //===----------------------------------------------------------------------===//
11466 //                           X86 Scheduler Hooks
11467 //===----------------------------------------------------------------------===//
11468
11469 // private utility function
11470 MachineBasicBlock *
11471 X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
11472                                                        MachineBasicBlock *MBB,
11473                                                        unsigned regOpc,
11474                                                        unsigned immOpc,
11475                                                        unsigned LoadOpc,
11476                                                        unsigned CXchgOpc,
11477                                                        unsigned notOpc,
11478                                                        unsigned EAXreg,
11479                                                        TargetRegisterClass *RC,
11480                                                        bool invSrc) const {
11481   // For the atomic bitwise operator, we generate
11482   //   thisMBB:
11483   //   newMBB:
11484   //     ld  t1 = [bitinstr.addr]
11485   //     op  t2 = t1, [bitinstr.val]
11486   //     mov EAX = t1
11487   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
11488   //     bz  newMBB
11489   //     fallthrough -->nextMBB
11490   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11491   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11492   MachineFunction::iterator MBBIter = MBB;
11493   ++MBBIter;
11494
11495   /// First build the CFG
11496   MachineFunction *F = MBB->getParent();
11497   MachineBasicBlock *thisMBB = MBB;
11498   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11499   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11500   F->insert(MBBIter, newMBB);
11501   F->insert(MBBIter, nextMBB);
11502
11503   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11504   nextMBB->splice(nextMBB->begin(), thisMBB,
11505                   llvm::next(MachineBasicBlock::iterator(bInstr)),
11506                   thisMBB->end());
11507   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11508
11509   // Update thisMBB to fall through to newMBB
11510   thisMBB->addSuccessor(newMBB);
11511
11512   // newMBB jumps to itself and fall through to nextMBB
11513   newMBB->addSuccessor(nextMBB);
11514   newMBB->addSuccessor(newMBB);
11515
11516   // Insert instructions into newMBB based on incoming instruction
11517   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
11518          "unexpected number of operands");
11519   DebugLoc dl = bInstr->getDebugLoc();
11520   MachineOperand& destOper = bInstr->getOperand(0);
11521   MachineOperand* argOpers[2 + X86::AddrNumOperands];
11522   int numArgs = bInstr->getNumOperands() - 1;
11523   for (int i=0; i < numArgs; ++i)
11524     argOpers[i] = &bInstr->getOperand(i+1);
11525
11526   // x86 address has 4 operands: base, index, scale, and displacement
11527   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
11528   int valArgIndx = lastAddrIndx + 1;
11529
11530   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
11531   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
11532   for (int i=0; i <= lastAddrIndx; ++i)
11533     (*MIB).addOperand(*argOpers[i]);
11534
11535   unsigned tt = F->getRegInfo().createVirtualRegister(RC);
11536   if (invSrc) {
11537     MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
11538   }
11539   else
11540     tt = t1;
11541
11542   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
11543   assert((argOpers[valArgIndx]->isReg() ||
11544           argOpers[valArgIndx]->isImm()) &&
11545          "invalid operand");
11546   if (argOpers[valArgIndx]->isReg())
11547     MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
11548   else
11549     MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
11550   MIB.addReg(tt);
11551   (*MIB).addOperand(*argOpers[valArgIndx]);
11552
11553   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
11554   MIB.addReg(t1);
11555
11556   MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
11557   for (int i=0; i <= lastAddrIndx; ++i)
11558     (*MIB).addOperand(*argOpers[i]);
11559   MIB.addReg(t2);
11560   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
11561   (*MIB).setMemRefs(bInstr->memoperands_begin(),
11562                     bInstr->memoperands_end());
11563
11564   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
11565   MIB.addReg(EAXreg);
11566
11567   // insert branch
11568   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
11569
11570   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
11571   return nextMBB;
11572 }
11573
11574 // private utility function:  64 bit atomics on 32 bit host.
11575 MachineBasicBlock *
11576 X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
11577                                                        MachineBasicBlock *MBB,
11578                                                        unsigned regOpcL,
11579                                                        unsigned regOpcH,
11580                                                        unsigned immOpcL,
11581                                                        unsigned immOpcH,
11582                                                        bool invSrc) const {
11583   // For the atomic bitwise operator, we generate
11584   //   thisMBB (instructions are in pairs, except cmpxchg8b)
11585   //     ld t1,t2 = [bitinstr.addr]
11586   //   newMBB:
11587   //     out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
11588   //     op  t5, t6 <- out1, out2, [bitinstr.val]
11589   //      (for SWAP, substitute:  mov t5, t6 <- [bitinstr.val])
11590   //     mov ECX, EBX <- t5, t6
11591   //     mov EAX, EDX <- t1, t2
11592   //     cmpxchg8b [bitinstr.addr]  [EAX, EDX, EBX, ECX implicit]
11593   //     mov t3, t4 <- EAX, EDX
11594   //     bz  newMBB
11595   //     result in out1, out2
11596   //     fallthrough -->nextMBB
11597
11598   const TargetRegisterClass *RC = X86::GR32RegisterClass;
11599   const unsigned LoadOpc = X86::MOV32rm;
11600   const unsigned NotOpc = X86::NOT32r;
11601   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11602   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11603   MachineFunction::iterator MBBIter = MBB;
11604   ++MBBIter;
11605
11606   /// First build the CFG
11607   MachineFunction *F = MBB->getParent();
11608   MachineBasicBlock *thisMBB = MBB;
11609   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11610   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11611   F->insert(MBBIter, newMBB);
11612   F->insert(MBBIter, nextMBB);
11613
11614   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11615   nextMBB->splice(nextMBB->begin(), thisMBB,
11616                   llvm::next(MachineBasicBlock::iterator(bInstr)),
11617                   thisMBB->end());
11618   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11619
11620   // Update thisMBB to fall through to newMBB
11621   thisMBB->addSuccessor(newMBB);
11622
11623   // newMBB jumps to itself and fall through to nextMBB
11624   newMBB->addSuccessor(nextMBB);
11625   newMBB->addSuccessor(newMBB);
11626
11627   DebugLoc dl = bInstr->getDebugLoc();
11628   // Insert instructions into newMBB based on incoming instruction
11629   // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
11630   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
11631          "unexpected number of operands");
11632   MachineOperand& dest1Oper = bInstr->getOperand(0);
11633   MachineOperand& dest2Oper = bInstr->getOperand(1);
11634   MachineOperand* argOpers[2 + X86::AddrNumOperands];
11635   for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
11636     argOpers[i] = &bInstr->getOperand(i+2);
11637
11638     // We use some of the operands multiple times, so conservatively just
11639     // clear any kill flags that might be present.
11640     if (argOpers[i]->isReg() && argOpers[i]->isUse())
11641       argOpers[i]->setIsKill(false);
11642   }
11643
11644   // x86 address has 5 operands: base, index, scale, displacement, and segment.
11645   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
11646
11647   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
11648   MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
11649   for (int i=0; i <= lastAddrIndx; ++i)
11650     (*MIB).addOperand(*argOpers[i]);
11651   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
11652   MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
11653   // add 4 to displacement.
11654   for (int i=0; i <= lastAddrIndx-2; ++i)
11655     (*MIB).addOperand(*argOpers[i]);
11656   MachineOperand newOp3 = *(argOpers[3]);
11657   if (newOp3.isImm())
11658     newOp3.setImm(newOp3.getImm()+4);
11659   else
11660     newOp3.setOffset(newOp3.getOffset()+4);
11661   (*MIB).addOperand(newOp3);
11662   (*MIB).addOperand(*argOpers[lastAddrIndx]);
11663
11664   // t3/4 are defined later, at the bottom of the loop
11665   unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
11666   unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
11667   BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
11668     .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
11669   BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
11670     .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
11671
11672   // The subsequent operations should be using the destination registers of
11673   //the PHI instructions.
11674   if (invSrc) {
11675     t1 = F->getRegInfo().createVirtualRegister(RC);
11676     t2 = F->getRegInfo().createVirtualRegister(RC);
11677     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
11678     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
11679   } else {
11680     t1 = dest1Oper.getReg();
11681     t2 = dest2Oper.getReg();
11682   }
11683
11684   int valArgIndx = lastAddrIndx + 1;
11685   assert((argOpers[valArgIndx]->isReg() ||
11686           argOpers[valArgIndx]->isImm()) &&
11687          "invalid operand");
11688   unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
11689   unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
11690   if (argOpers[valArgIndx]->isReg())
11691     MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
11692   else
11693     MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
11694   if (regOpcL != X86::MOV32rr)
11695     MIB.addReg(t1);
11696   (*MIB).addOperand(*argOpers[valArgIndx]);
11697   assert(argOpers[valArgIndx + 1]->isReg() ==
11698          argOpers[valArgIndx]->isReg());
11699   assert(argOpers[valArgIndx + 1]->isImm() ==
11700          argOpers[valArgIndx]->isImm());
11701   if (argOpers[valArgIndx + 1]->isReg())
11702     MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
11703   else
11704     MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
11705   if (regOpcH != X86::MOV32rr)
11706     MIB.addReg(t2);
11707   (*MIB).addOperand(*argOpers[valArgIndx + 1]);
11708
11709   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
11710   MIB.addReg(t1);
11711   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
11712   MIB.addReg(t2);
11713
11714   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
11715   MIB.addReg(t5);
11716   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
11717   MIB.addReg(t6);
11718
11719   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
11720   for (int i=0; i <= lastAddrIndx; ++i)
11721     (*MIB).addOperand(*argOpers[i]);
11722
11723   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
11724   (*MIB).setMemRefs(bInstr->memoperands_begin(),
11725                     bInstr->memoperands_end());
11726
11727   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
11728   MIB.addReg(X86::EAX);
11729   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
11730   MIB.addReg(X86::EDX);
11731
11732   // insert branch
11733   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
11734
11735   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
11736   return nextMBB;
11737 }
11738
11739 // private utility function
11740 MachineBasicBlock *
11741 X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
11742                                                       MachineBasicBlock *MBB,
11743                                                       unsigned cmovOpc) const {
11744   // For the atomic min/max operator, we generate
11745   //   thisMBB:
11746   //   newMBB:
11747   //     ld t1 = [min/max.addr]
11748   //     mov t2 = [min/max.val]
11749   //     cmp  t1, t2
11750   //     cmov[cond] t2 = t1
11751   //     mov EAX = t1
11752   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
11753   //     bz   newMBB
11754   //     fallthrough -->nextMBB
11755   //
11756   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11757   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
11758   MachineFunction::iterator MBBIter = MBB;
11759   ++MBBIter;
11760
11761   /// First build the CFG
11762   MachineFunction *F = MBB->getParent();
11763   MachineBasicBlock *thisMBB = MBB;
11764   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
11765   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
11766   F->insert(MBBIter, newMBB);
11767   F->insert(MBBIter, nextMBB);
11768
11769   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
11770   nextMBB->splice(nextMBB->begin(), thisMBB,
11771                   llvm::next(MachineBasicBlock::iterator(mInstr)),
11772                   thisMBB->end());
11773   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
11774
11775   // Update thisMBB to fall through to newMBB
11776   thisMBB->addSuccessor(newMBB);
11777
11778   // newMBB jumps to newMBB and fall through to nextMBB
11779   newMBB->addSuccessor(nextMBB);
11780   newMBB->addSuccessor(newMBB);
11781
11782   DebugLoc dl = mInstr->getDebugLoc();
11783   // Insert instructions into newMBB based on incoming instruction
11784   assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
11785          "unexpected number of operands");
11786   MachineOperand& destOper = mInstr->getOperand(0);
11787   MachineOperand* argOpers[2 + X86::AddrNumOperands];
11788   int numArgs = mInstr->getNumOperands() - 1;
11789   for (int i=0; i < numArgs; ++i)
11790     argOpers[i] = &mInstr->getOperand(i+1);
11791
11792   // x86 address has 4 operands: base, index, scale, and displacement
11793   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
11794   int valArgIndx = lastAddrIndx + 1;
11795
11796   unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
11797   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
11798   for (int i=0; i <= lastAddrIndx; ++i)
11799     (*MIB).addOperand(*argOpers[i]);
11800
11801   // We only support register and immediate values
11802   assert((argOpers[valArgIndx]->isReg() ||
11803           argOpers[valArgIndx]->isImm()) &&
11804          "invalid operand");
11805
11806   unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
11807   if (argOpers[valArgIndx]->isReg())
11808     MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
11809   else
11810     MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
11811   (*MIB).addOperand(*argOpers[valArgIndx]);
11812
11813   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
11814   MIB.addReg(t1);
11815
11816   MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
11817   MIB.addReg(t1);
11818   MIB.addReg(t2);
11819
11820   // Generate movc
11821   unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
11822   MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
11823   MIB.addReg(t2);
11824   MIB.addReg(t1);
11825
11826   // Cmp and exchange if none has modified the memory location
11827   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
11828   for (int i=0; i <= lastAddrIndx; ++i)
11829     (*MIB).addOperand(*argOpers[i]);
11830   MIB.addReg(t3);
11831   assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
11832   (*MIB).setMemRefs(mInstr->memoperands_begin(),
11833                     mInstr->memoperands_end());
11834
11835   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
11836   MIB.addReg(X86::EAX);
11837
11838   // insert branch
11839   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
11840
11841   mInstr->eraseFromParent();   // The pseudo instruction is gone now.
11842   return nextMBB;
11843 }
11844
11845 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
11846 // or XMM0_V32I8 in AVX all of this code can be replaced with that
11847 // in the .td file.
11848 MachineBasicBlock *
11849 X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
11850                             unsigned numArgs, bool memArg) const {
11851   assert(Subtarget->hasSSE42orAVX() &&
11852          "Target must have SSE4.2 or AVX features enabled");
11853
11854   DebugLoc dl = MI->getDebugLoc();
11855   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11856   unsigned Opc;
11857   if (!Subtarget->hasAVX()) {
11858     if (memArg)
11859       Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
11860     else
11861       Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
11862   } else {
11863     if (memArg)
11864       Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
11865     else
11866       Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
11867   }
11868
11869   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
11870   for (unsigned i = 0; i < numArgs; ++i) {
11871     MachineOperand &Op = MI->getOperand(i+1);
11872     if (!(Op.isReg() && Op.isImplicit()))
11873       MIB.addOperand(Op);
11874   }
11875   BuildMI(*BB, MI, dl,
11876     TII->get(Subtarget->hasAVX() ? X86::VMOVAPSrr : X86::MOVAPSrr),
11877              MI->getOperand(0).getReg())
11878     .addReg(X86::XMM0);
11879
11880   MI->eraseFromParent();
11881   return BB;
11882 }
11883
11884 MachineBasicBlock *
11885 X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
11886   DebugLoc dl = MI->getDebugLoc();
11887   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11888
11889   // Address into RAX/EAX, other two args into ECX, EDX.
11890   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
11891   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
11892   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
11893   for (int i = 0; i < X86::AddrNumOperands; ++i)
11894     MIB.addOperand(MI->getOperand(i));
11895
11896   unsigned ValOps = X86::AddrNumOperands;
11897   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11898     .addReg(MI->getOperand(ValOps).getReg());
11899   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
11900     .addReg(MI->getOperand(ValOps+1).getReg());
11901
11902   // The instruction doesn't actually take any operands though.
11903   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
11904
11905   MI->eraseFromParent(); // The pseudo is gone now.
11906   return BB;
11907 }
11908
11909 MachineBasicBlock *
11910 X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
11911   DebugLoc dl = MI->getDebugLoc();
11912   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11913
11914   // First arg in ECX, the second in EAX.
11915   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
11916     .addReg(MI->getOperand(0).getReg());
11917   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
11918     .addReg(MI->getOperand(1).getReg());
11919
11920   // The instruction doesn't actually take any operands though.
11921   BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
11922
11923   MI->eraseFromParent(); // The pseudo is gone now.
11924   return BB;
11925 }
11926
11927 MachineBasicBlock *
11928 X86TargetLowering::EmitVAARG64WithCustomInserter(
11929                    MachineInstr *MI,
11930                    MachineBasicBlock *MBB) const {
11931   // Emit va_arg instruction on X86-64.
11932
11933   // Operands to this pseudo-instruction:
11934   // 0  ) Output        : destination address (reg)
11935   // 1-5) Input         : va_list address (addr, i64mem)
11936   // 6  ) ArgSize       : Size (in bytes) of vararg type
11937   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
11938   // 8  ) Align         : Alignment of type
11939   // 9  ) EFLAGS (implicit-def)
11940
11941   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
11942   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
11943
11944   unsigned DestReg = MI->getOperand(0).getReg();
11945   MachineOperand &Base = MI->getOperand(1);
11946   MachineOperand &Scale = MI->getOperand(2);
11947   MachineOperand &Index = MI->getOperand(3);
11948   MachineOperand &Disp = MI->getOperand(4);
11949   MachineOperand &Segment = MI->getOperand(5);
11950   unsigned ArgSize = MI->getOperand(6).getImm();
11951   unsigned ArgMode = MI->getOperand(7).getImm();
11952   unsigned Align = MI->getOperand(8).getImm();
11953
11954   // Memory Reference
11955   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
11956   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
11957   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
11958
11959   // Machine Information
11960   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11961   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
11962   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
11963   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
11964   DebugLoc DL = MI->getDebugLoc();
11965
11966   // struct va_list {
11967   //   i32   gp_offset
11968   //   i32   fp_offset
11969   //   i64   overflow_area (address)
11970   //   i64   reg_save_area (address)
11971   // }
11972   // sizeof(va_list) = 24
11973   // alignment(va_list) = 8
11974
11975   unsigned TotalNumIntRegs = 6;
11976   unsigned TotalNumXMMRegs = 8;
11977   bool UseGPOffset = (ArgMode == 1);
11978   bool UseFPOffset = (ArgMode == 2);
11979   unsigned MaxOffset = TotalNumIntRegs * 8 +
11980                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
11981
11982   /* Align ArgSize to a multiple of 8 */
11983   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
11984   bool NeedsAlign = (Align > 8);
11985
11986   MachineBasicBlock *thisMBB = MBB;
11987   MachineBasicBlock *overflowMBB;
11988   MachineBasicBlock *offsetMBB;
11989   MachineBasicBlock *endMBB;
11990
11991   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
11992   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
11993   unsigned OffsetReg = 0;
11994
11995   if (!UseGPOffset && !UseFPOffset) {
11996     // If we only pull from the overflow region, we don't create a branch.
11997     // We don't need to alter control flow.
11998     OffsetDestReg = 0; // unused
11999     OverflowDestReg = DestReg;
12000
12001     offsetMBB = NULL;
12002     overflowMBB = thisMBB;
12003     endMBB = thisMBB;
12004   } else {
12005     // First emit code to check if gp_offset (or fp_offset) is below the bound.
12006     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
12007     // If not, pull from overflow_area. (branch to overflowMBB)
12008     //
12009     //       thisMBB
12010     //         |     .
12011     //         |        .
12012     //     offsetMBB   overflowMBB
12013     //         |        .
12014     //         |     .
12015     //        endMBB
12016
12017     // Registers for the PHI in endMBB
12018     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
12019     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
12020
12021     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
12022     MachineFunction *MF = MBB->getParent();
12023     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12024     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12025     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12026
12027     MachineFunction::iterator MBBIter = MBB;
12028     ++MBBIter;
12029
12030     // Insert the new basic blocks
12031     MF->insert(MBBIter, offsetMBB);
12032     MF->insert(MBBIter, overflowMBB);
12033     MF->insert(MBBIter, endMBB);
12034
12035     // Transfer the remainder of MBB and its successor edges to endMBB.
12036     endMBB->splice(endMBB->begin(), thisMBB,
12037                     llvm::next(MachineBasicBlock::iterator(MI)),
12038                     thisMBB->end());
12039     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
12040
12041     // Make offsetMBB and overflowMBB successors of thisMBB
12042     thisMBB->addSuccessor(offsetMBB);
12043     thisMBB->addSuccessor(overflowMBB);
12044
12045     // endMBB is a successor of both offsetMBB and overflowMBB
12046     offsetMBB->addSuccessor(endMBB);
12047     overflowMBB->addSuccessor(endMBB);
12048
12049     // Load the offset value into a register
12050     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
12051     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
12052       .addOperand(Base)
12053       .addOperand(Scale)
12054       .addOperand(Index)
12055       .addDisp(Disp, UseFPOffset ? 4 : 0)
12056       .addOperand(Segment)
12057       .setMemRefs(MMOBegin, MMOEnd);
12058
12059     // Check if there is enough room left to pull this argument.
12060     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
12061       .addReg(OffsetReg)
12062       .addImm(MaxOffset + 8 - ArgSizeA8);
12063
12064     // Branch to "overflowMBB" if offset >= max
12065     // Fall through to "offsetMBB" otherwise
12066     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
12067       .addMBB(overflowMBB);
12068   }
12069
12070   // In offsetMBB, emit code to use the reg_save_area.
12071   if (offsetMBB) {
12072     assert(OffsetReg != 0);
12073
12074     // Read the reg_save_area address.
12075     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
12076     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
12077       .addOperand(Base)
12078       .addOperand(Scale)
12079       .addOperand(Index)
12080       .addDisp(Disp, 16)
12081       .addOperand(Segment)
12082       .setMemRefs(MMOBegin, MMOEnd);
12083
12084     // Zero-extend the offset
12085     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
12086       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
12087         .addImm(0)
12088         .addReg(OffsetReg)
12089         .addImm(X86::sub_32bit);
12090
12091     // Add the offset to the reg_save_area to get the final address.
12092     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
12093       .addReg(OffsetReg64)
12094       .addReg(RegSaveReg);
12095
12096     // Compute the offset for the next argument
12097     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
12098     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
12099       .addReg(OffsetReg)
12100       .addImm(UseFPOffset ? 16 : 8);
12101
12102     // Store it back into the va_list.
12103     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
12104       .addOperand(Base)
12105       .addOperand(Scale)
12106       .addOperand(Index)
12107       .addDisp(Disp, UseFPOffset ? 4 : 0)
12108       .addOperand(Segment)
12109       .addReg(NextOffsetReg)
12110       .setMemRefs(MMOBegin, MMOEnd);
12111
12112     // Jump to endMBB
12113     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
12114       .addMBB(endMBB);
12115   }
12116
12117   //
12118   // Emit code to use overflow area
12119   //
12120
12121   // Load the overflow_area address into a register.
12122   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
12123   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
12124     .addOperand(Base)
12125     .addOperand(Scale)
12126     .addOperand(Index)
12127     .addDisp(Disp, 8)
12128     .addOperand(Segment)
12129     .setMemRefs(MMOBegin, MMOEnd);
12130
12131   // If we need to align it, do so. Otherwise, just copy the address
12132   // to OverflowDestReg.
12133   if (NeedsAlign) {
12134     // Align the overflow address
12135     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
12136     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
12137
12138     // aligned_addr = (addr + (align-1)) & ~(align-1)
12139     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
12140       .addReg(OverflowAddrReg)
12141       .addImm(Align-1);
12142
12143     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
12144       .addReg(TmpReg)
12145       .addImm(~(uint64_t)(Align-1));
12146   } else {
12147     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
12148       .addReg(OverflowAddrReg);
12149   }
12150
12151   // Compute the next overflow address after this argument.
12152   // (the overflow address should be kept 8-byte aligned)
12153   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
12154   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
12155     .addReg(OverflowDestReg)
12156     .addImm(ArgSizeA8);
12157
12158   // Store the new overflow address.
12159   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
12160     .addOperand(Base)
12161     .addOperand(Scale)
12162     .addOperand(Index)
12163     .addDisp(Disp, 8)
12164     .addOperand(Segment)
12165     .addReg(NextAddrReg)
12166     .setMemRefs(MMOBegin, MMOEnd);
12167
12168   // If we branched, emit the PHI to the front of endMBB.
12169   if (offsetMBB) {
12170     BuildMI(*endMBB, endMBB->begin(), DL,
12171             TII->get(X86::PHI), DestReg)
12172       .addReg(OffsetDestReg).addMBB(offsetMBB)
12173       .addReg(OverflowDestReg).addMBB(overflowMBB);
12174   }
12175
12176   // Erase the pseudo instruction
12177   MI->eraseFromParent();
12178
12179   return endMBB;
12180 }
12181
12182 MachineBasicBlock *
12183 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
12184                                                  MachineInstr *MI,
12185                                                  MachineBasicBlock *MBB) const {
12186   // Emit code to save XMM registers to the stack. The ABI says that the
12187   // number of registers to save is given in %al, so it's theoretically
12188   // possible to do an indirect jump trick to avoid saving all of them,
12189   // however this code takes a simpler approach and just executes all
12190   // of the stores if %al is non-zero. It's less code, and it's probably
12191   // easier on the hardware branch predictor, and stores aren't all that
12192   // expensive anyway.
12193
12194   // Create the new basic blocks. One block contains all the XMM stores,
12195   // and one block is the final destination regardless of whether any
12196   // stores were performed.
12197   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
12198   MachineFunction *F = MBB->getParent();
12199   MachineFunction::iterator MBBIter = MBB;
12200   ++MBBIter;
12201   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
12202   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
12203   F->insert(MBBIter, XMMSaveMBB);
12204   F->insert(MBBIter, EndMBB);
12205
12206   // Transfer the remainder of MBB and its successor edges to EndMBB.
12207   EndMBB->splice(EndMBB->begin(), MBB,
12208                  llvm::next(MachineBasicBlock::iterator(MI)),
12209                  MBB->end());
12210   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
12211
12212   // The original block will now fall through to the XMM save block.
12213   MBB->addSuccessor(XMMSaveMBB);
12214   // The XMMSaveMBB will fall through to the end block.
12215   XMMSaveMBB->addSuccessor(EndMBB);
12216
12217   // Now add the instructions.
12218   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12219   DebugLoc DL = MI->getDebugLoc();
12220
12221   unsigned CountReg = MI->getOperand(0).getReg();
12222   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
12223   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
12224
12225   if (!Subtarget->isTargetWin64()) {
12226     // If %al is 0, branch around the XMM save block.
12227     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
12228     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
12229     MBB->addSuccessor(EndMBB);
12230   }
12231
12232   unsigned MOVOpc = Subtarget->hasAVX() ? X86::VMOVAPSmr : X86::MOVAPSmr;
12233   // In the XMM save block, save all the XMM argument registers.
12234   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
12235     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
12236     MachineMemOperand *MMO =
12237       F->getMachineMemOperand(
12238           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
12239         MachineMemOperand::MOStore,
12240         /*Size=*/16, /*Align=*/16);
12241     BuildMI(XMMSaveMBB, DL, TII->get(MOVOpc))
12242       .addFrameIndex(RegSaveFrameIndex)
12243       .addImm(/*Scale=*/1)
12244       .addReg(/*IndexReg=*/0)
12245       .addImm(/*Disp=*/Offset)
12246       .addReg(/*Segment=*/0)
12247       .addReg(MI->getOperand(i).getReg())
12248       .addMemOperand(MMO);
12249   }
12250
12251   MI->eraseFromParent();   // The pseudo instruction is gone now.
12252
12253   return EndMBB;
12254 }
12255
12256 MachineBasicBlock *
12257 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
12258                                      MachineBasicBlock *BB) const {
12259   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12260   DebugLoc DL = MI->getDebugLoc();
12261
12262   // To "insert" a SELECT_CC instruction, we actually have to insert the
12263   // diamond control-flow pattern.  The incoming instruction knows the
12264   // destination vreg to set, the condition code register to branch on, the
12265   // true/false values to select between, and a branch opcode to use.
12266   const BasicBlock *LLVM_BB = BB->getBasicBlock();
12267   MachineFunction::iterator It = BB;
12268   ++It;
12269
12270   //  thisMBB:
12271   //  ...
12272   //   TrueVal = ...
12273   //   cmpTY ccX, r1, r2
12274   //   bCC copy1MBB
12275   //   fallthrough --> copy0MBB
12276   MachineBasicBlock *thisMBB = BB;
12277   MachineFunction *F = BB->getParent();
12278   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
12279   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
12280   F->insert(It, copy0MBB);
12281   F->insert(It, sinkMBB);
12282
12283   // If the EFLAGS register isn't dead in the terminator, then claim that it's
12284   // live into the sink and copy blocks.
12285   if (!MI->killsRegister(X86::EFLAGS)) {
12286     copy0MBB->addLiveIn(X86::EFLAGS);
12287     sinkMBB->addLiveIn(X86::EFLAGS);
12288   }
12289
12290   // Transfer the remainder of BB and its successor edges to sinkMBB.
12291   sinkMBB->splice(sinkMBB->begin(), BB,
12292                   llvm::next(MachineBasicBlock::iterator(MI)),
12293                   BB->end());
12294   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
12295
12296   // Add the true and fallthrough blocks as its successors.
12297   BB->addSuccessor(copy0MBB);
12298   BB->addSuccessor(sinkMBB);
12299
12300   // Create the conditional branch instruction.
12301   unsigned Opc =
12302     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
12303   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
12304
12305   //  copy0MBB:
12306   //   %FalseValue = ...
12307   //   # fallthrough to sinkMBB
12308   copy0MBB->addSuccessor(sinkMBB);
12309
12310   //  sinkMBB:
12311   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
12312   //  ...
12313   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
12314           TII->get(X86::PHI), MI->getOperand(0).getReg())
12315     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
12316     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
12317
12318   MI->eraseFromParent();   // The pseudo instruction is gone now.
12319   return sinkMBB;
12320 }
12321
12322 MachineBasicBlock *
12323 X86TargetLowering::EmitLoweredSegAlloca(MachineInstr *MI, MachineBasicBlock *BB,
12324                                         bool Is64Bit) const {
12325   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12326   DebugLoc DL = MI->getDebugLoc();
12327   MachineFunction *MF = BB->getParent();
12328   const BasicBlock *LLVM_BB = BB->getBasicBlock();
12329
12330   assert(EnableSegmentedStacks);
12331
12332   unsigned TlsReg = Is64Bit ? X86::FS : X86::GS;
12333   unsigned TlsOffset = Is64Bit ? 0x70 : 0x30;
12334
12335   // BB:
12336   //  ... [Till the alloca]
12337   // If stacklet is not large enough, jump to mallocMBB
12338   //
12339   // bumpMBB:
12340   //  Allocate by subtracting from RSP
12341   //  Jump to continueMBB
12342   //
12343   // mallocMBB:
12344   //  Allocate by call to runtime
12345   //
12346   // continueMBB:
12347   //  ...
12348   //  [rest of original BB]
12349   //
12350
12351   MachineBasicBlock *mallocMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12352   MachineBasicBlock *bumpMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12353   MachineBasicBlock *continueMBB = MF->CreateMachineBasicBlock(LLVM_BB);
12354
12355   MachineRegisterInfo &MRI = MF->getRegInfo();
12356   const TargetRegisterClass *AddrRegClass =
12357     getRegClassFor(Is64Bit ? MVT::i64:MVT::i32);
12358
12359   unsigned mallocPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12360     bumpSPPtrVReg = MRI.createVirtualRegister(AddrRegClass),
12361     tmpSPVReg = MRI.createVirtualRegister(AddrRegClass),
12362     SPLimitVReg = MRI.createVirtualRegister(AddrRegClass),
12363     sizeVReg = MI->getOperand(1).getReg(),
12364     physSPReg = Is64Bit ? X86::RSP : X86::ESP;
12365
12366   MachineFunction::iterator MBBIter = BB;
12367   ++MBBIter;
12368
12369   MF->insert(MBBIter, bumpMBB);
12370   MF->insert(MBBIter, mallocMBB);
12371   MF->insert(MBBIter, continueMBB);
12372
12373   continueMBB->splice(continueMBB->begin(), BB, llvm::next
12374                       (MachineBasicBlock::iterator(MI)), BB->end());
12375   continueMBB->transferSuccessorsAndUpdatePHIs(BB);
12376
12377   // Add code to the main basic block to check if the stack limit has been hit,
12378   // and if so, jump to mallocMBB otherwise to bumpMBB.
12379   BuildMI(BB, DL, TII->get(TargetOpcode::COPY), tmpSPVReg).addReg(physSPReg);
12380   BuildMI(BB, DL, TII->get(Is64Bit ? X86::SUB64rr:X86::SUB32rr), SPLimitVReg)
12381     .addReg(tmpSPVReg).addReg(sizeVReg);
12382   BuildMI(BB, DL, TII->get(Is64Bit ? X86::CMP64mr:X86::CMP32mr))
12383     .addReg(0).addImm(0).addReg(0).addImm(TlsOffset).addReg(TlsReg)
12384     .addReg(SPLimitVReg);
12385   BuildMI(BB, DL, TII->get(X86::JG_4)).addMBB(mallocMBB);
12386
12387   // bumpMBB simply decreases the stack pointer, since we know the current
12388   // stacklet has enough space.
12389   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), physSPReg)
12390     .addReg(SPLimitVReg);
12391   BuildMI(bumpMBB, DL, TII->get(TargetOpcode::COPY), bumpSPPtrVReg)
12392     .addReg(SPLimitVReg);
12393   BuildMI(bumpMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12394
12395   // Calls into a routine in libgcc to allocate more space from the heap.
12396   if (Is64Bit) {
12397     BuildMI(mallocMBB, DL, TII->get(X86::MOV64rr), X86::RDI)
12398       .addReg(sizeVReg);
12399     BuildMI(mallocMBB, DL, TII->get(X86::CALL64pcrel32))
12400     .addExternalSymbol("__morestack_allocate_stack_space").addReg(X86::RDI);
12401   } else {
12402     BuildMI(mallocMBB, DL, TII->get(X86::SUB32ri), physSPReg).addReg(physSPReg)
12403       .addImm(12);
12404     BuildMI(mallocMBB, DL, TII->get(X86::PUSH32r)).addReg(sizeVReg);
12405     BuildMI(mallocMBB, DL, TII->get(X86::CALLpcrel32))
12406       .addExternalSymbol("__morestack_allocate_stack_space");
12407   }
12408
12409   if (!Is64Bit)
12410     BuildMI(mallocMBB, DL, TII->get(X86::ADD32ri), physSPReg).addReg(physSPReg)
12411       .addImm(16);
12412
12413   BuildMI(mallocMBB, DL, TII->get(TargetOpcode::COPY), mallocPtrVReg)
12414     .addReg(Is64Bit ? X86::RAX : X86::EAX);
12415   BuildMI(mallocMBB, DL, TII->get(X86::JMP_4)).addMBB(continueMBB);
12416
12417   // Set up the CFG correctly.
12418   BB->addSuccessor(bumpMBB);
12419   BB->addSuccessor(mallocMBB);
12420   mallocMBB->addSuccessor(continueMBB);
12421   bumpMBB->addSuccessor(continueMBB);
12422
12423   // Take care of the PHI nodes.
12424   BuildMI(*continueMBB, continueMBB->begin(), DL, TII->get(X86::PHI),
12425           MI->getOperand(0).getReg())
12426     .addReg(mallocPtrVReg).addMBB(mallocMBB)
12427     .addReg(bumpSPPtrVReg).addMBB(bumpMBB);
12428
12429   // Delete the original pseudo instruction.
12430   MI->eraseFromParent();
12431
12432   // And we're done.
12433   return continueMBB;
12434 }
12435
12436 MachineBasicBlock *
12437 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
12438                                           MachineBasicBlock *BB) const {
12439   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12440   DebugLoc DL = MI->getDebugLoc();
12441
12442   assert(!Subtarget->isTargetEnvMacho());
12443
12444   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
12445   // non-trivial part is impdef of ESP.
12446
12447   if (Subtarget->isTargetWin64()) {
12448     if (Subtarget->isTargetCygMing()) {
12449       // ___chkstk(Mingw64):
12450       // Clobbers R10, R11, RAX and EFLAGS.
12451       // Updates RSP.
12452       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12453         .addExternalSymbol("___chkstk")
12454         .addReg(X86::RAX, RegState::Implicit)
12455         .addReg(X86::RSP, RegState::Implicit)
12456         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
12457         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
12458         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12459     } else {
12460       // __chkstk(MSVCRT): does not update stack pointer.
12461       // Clobbers R10, R11 and EFLAGS.
12462       // FIXME: RAX(allocated size) might be reused and not killed.
12463       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
12464         .addExternalSymbol("__chkstk")
12465         .addReg(X86::RAX, RegState::Implicit)
12466         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12467       // RAX has the offset to subtracted from RSP.
12468       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
12469         .addReg(X86::RSP)
12470         .addReg(X86::RAX);
12471     }
12472   } else {
12473     const char *StackProbeSymbol =
12474       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
12475
12476     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
12477       .addExternalSymbol(StackProbeSymbol)
12478       .addReg(X86::EAX, RegState::Implicit)
12479       .addReg(X86::ESP, RegState::Implicit)
12480       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
12481       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
12482       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
12483   }
12484
12485   MI->eraseFromParent();   // The pseudo instruction is gone now.
12486   return BB;
12487 }
12488
12489 MachineBasicBlock *
12490 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
12491                                       MachineBasicBlock *BB) const {
12492   // This is pretty easy.  We're taking the value that we received from
12493   // our load from the relocation, sticking it in either RDI (x86-64)
12494   // or EAX and doing an indirect call.  The return value will then
12495   // be in the normal return register.
12496   const X86InstrInfo *TII
12497     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
12498   DebugLoc DL = MI->getDebugLoc();
12499   MachineFunction *F = BB->getParent();
12500
12501   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
12502   assert(MI->getOperand(3).isGlobal() && "This should be a global");
12503
12504   if (Subtarget->is64Bit()) {
12505     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12506                                       TII->get(X86::MOV64rm), X86::RDI)
12507     .addReg(X86::RIP)
12508     .addImm(0).addReg(0)
12509     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12510                       MI->getOperand(3).getTargetFlags())
12511     .addReg(0);
12512     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
12513     addDirectMem(MIB, X86::RDI);
12514   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
12515     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12516                                       TII->get(X86::MOV32rm), X86::EAX)
12517     .addReg(0)
12518     .addImm(0).addReg(0)
12519     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12520                       MI->getOperand(3).getTargetFlags())
12521     .addReg(0);
12522     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
12523     addDirectMem(MIB, X86::EAX);
12524   } else {
12525     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
12526                                       TII->get(X86::MOV32rm), X86::EAX)
12527     .addReg(TII->getGlobalBaseReg(F))
12528     .addImm(0).addReg(0)
12529     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
12530                       MI->getOperand(3).getTargetFlags())
12531     .addReg(0);
12532     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
12533     addDirectMem(MIB, X86::EAX);
12534   }
12535
12536   MI->eraseFromParent(); // The pseudo instruction is gone now.
12537   return BB;
12538 }
12539
12540 MachineBasicBlock *
12541 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
12542                                                MachineBasicBlock *BB) const {
12543   switch (MI->getOpcode()) {
12544   default: assert(0 && "Unexpected instr type to insert");
12545   case X86::TAILJMPd64:
12546   case X86::TAILJMPr64:
12547   case X86::TAILJMPm64:
12548     assert(0 && "TAILJMP64 would not be touched here.");
12549   case X86::TCRETURNdi64:
12550   case X86::TCRETURNri64:
12551   case X86::TCRETURNmi64:
12552     // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
12553     // On AMD64, additional defs should be added before register allocation.
12554     if (!Subtarget->isTargetWin64()) {
12555       MI->addRegisterDefined(X86::RSI);
12556       MI->addRegisterDefined(X86::RDI);
12557       MI->addRegisterDefined(X86::XMM6);
12558       MI->addRegisterDefined(X86::XMM7);
12559       MI->addRegisterDefined(X86::XMM8);
12560       MI->addRegisterDefined(X86::XMM9);
12561       MI->addRegisterDefined(X86::XMM10);
12562       MI->addRegisterDefined(X86::XMM11);
12563       MI->addRegisterDefined(X86::XMM12);
12564       MI->addRegisterDefined(X86::XMM13);
12565       MI->addRegisterDefined(X86::XMM14);
12566       MI->addRegisterDefined(X86::XMM15);
12567     }
12568     return BB;
12569   case X86::WIN_ALLOCA:
12570     return EmitLoweredWinAlloca(MI, BB);
12571   case X86::SEG_ALLOCA_32:
12572     return EmitLoweredSegAlloca(MI, BB, false);
12573   case X86::SEG_ALLOCA_64:
12574     return EmitLoweredSegAlloca(MI, BB, true);
12575   case X86::TLSCall_32:
12576   case X86::TLSCall_64:
12577     return EmitLoweredTLSCall(MI, BB);
12578   case X86::CMOV_GR8:
12579   case X86::CMOV_FR32:
12580   case X86::CMOV_FR64:
12581   case X86::CMOV_V4F32:
12582   case X86::CMOV_V2F64:
12583   case X86::CMOV_V2I64:
12584   case X86::CMOV_V8F32:
12585   case X86::CMOV_V4F64:
12586   case X86::CMOV_V4I64:
12587   case X86::CMOV_GR16:
12588   case X86::CMOV_GR32:
12589   case X86::CMOV_RFP32:
12590   case X86::CMOV_RFP64:
12591   case X86::CMOV_RFP80:
12592     return EmitLoweredSelect(MI, BB);
12593
12594   case X86::FP32_TO_INT16_IN_MEM:
12595   case X86::FP32_TO_INT32_IN_MEM:
12596   case X86::FP32_TO_INT64_IN_MEM:
12597   case X86::FP64_TO_INT16_IN_MEM:
12598   case X86::FP64_TO_INT32_IN_MEM:
12599   case X86::FP64_TO_INT64_IN_MEM:
12600   case X86::FP80_TO_INT16_IN_MEM:
12601   case X86::FP80_TO_INT32_IN_MEM:
12602   case X86::FP80_TO_INT64_IN_MEM: {
12603     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
12604     DebugLoc DL = MI->getDebugLoc();
12605
12606     // Change the floating point control register to use "round towards zero"
12607     // mode when truncating to an integer value.
12608     MachineFunction *F = BB->getParent();
12609     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
12610     addFrameReference(BuildMI(*BB, MI, DL,
12611                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
12612
12613     // Load the old value of the high byte of the control word...
12614     unsigned OldCW =
12615       F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
12616     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
12617                       CWFrameIdx);
12618
12619     // Set the high part to be round to zero...
12620     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
12621       .addImm(0xC7F);
12622
12623     // Reload the modified control word now...
12624     addFrameReference(BuildMI(*BB, MI, DL,
12625                               TII->get(X86::FLDCW16m)), CWFrameIdx);
12626
12627     // Restore the memory image of control word to original value
12628     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
12629       .addReg(OldCW);
12630
12631     // Get the X86 opcode to use.
12632     unsigned Opc;
12633     switch (MI->getOpcode()) {
12634     default: llvm_unreachable("illegal opcode!");
12635     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
12636     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
12637     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
12638     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
12639     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
12640     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
12641     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
12642     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
12643     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
12644     }
12645
12646     X86AddressMode AM;
12647     MachineOperand &Op = MI->getOperand(0);
12648     if (Op.isReg()) {
12649       AM.BaseType = X86AddressMode::RegBase;
12650       AM.Base.Reg = Op.getReg();
12651     } else {
12652       AM.BaseType = X86AddressMode::FrameIndexBase;
12653       AM.Base.FrameIndex = Op.getIndex();
12654     }
12655     Op = MI->getOperand(1);
12656     if (Op.isImm())
12657       AM.Scale = Op.getImm();
12658     Op = MI->getOperand(2);
12659     if (Op.isImm())
12660       AM.IndexReg = Op.getImm();
12661     Op = MI->getOperand(3);
12662     if (Op.isGlobal()) {
12663       AM.GV = Op.getGlobal();
12664     } else {
12665       AM.Disp = Op.getImm();
12666     }
12667     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
12668                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
12669
12670     // Reload the original control word now.
12671     addFrameReference(BuildMI(*BB, MI, DL,
12672                               TII->get(X86::FLDCW16m)), CWFrameIdx);
12673
12674     MI->eraseFromParent();   // The pseudo instruction is gone now.
12675     return BB;
12676   }
12677     // String/text processing lowering.
12678   case X86::PCMPISTRM128REG:
12679   case X86::VPCMPISTRM128REG:
12680     return EmitPCMP(MI, BB, 3, false /* in-mem */);
12681   case X86::PCMPISTRM128MEM:
12682   case X86::VPCMPISTRM128MEM:
12683     return EmitPCMP(MI, BB, 3, true /* in-mem */);
12684   case X86::PCMPESTRM128REG:
12685   case X86::VPCMPESTRM128REG:
12686     return EmitPCMP(MI, BB, 5, false /* in mem */);
12687   case X86::PCMPESTRM128MEM:
12688   case X86::VPCMPESTRM128MEM:
12689     return EmitPCMP(MI, BB, 5, true /* in mem */);
12690
12691     // Thread synchronization.
12692   case X86::MONITOR:
12693     return EmitMonitor(MI, BB);
12694   case X86::MWAIT:
12695     return EmitMwait(MI, BB);
12696
12697     // Atomic Lowering.
12698   case X86::ATOMAND32:
12699     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
12700                                                X86::AND32ri, X86::MOV32rm,
12701                                                X86::LCMPXCHG32,
12702                                                X86::NOT32r, X86::EAX,
12703                                                X86::GR32RegisterClass);
12704   case X86::ATOMOR32:
12705     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
12706                                                X86::OR32ri, X86::MOV32rm,
12707                                                X86::LCMPXCHG32,
12708                                                X86::NOT32r, X86::EAX,
12709                                                X86::GR32RegisterClass);
12710   case X86::ATOMXOR32:
12711     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
12712                                                X86::XOR32ri, X86::MOV32rm,
12713                                                X86::LCMPXCHG32,
12714                                                X86::NOT32r, X86::EAX,
12715                                                X86::GR32RegisterClass);
12716   case X86::ATOMNAND32:
12717     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
12718                                                X86::AND32ri, X86::MOV32rm,
12719                                                X86::LCMPXCHG32,
12720                                                X86::NOT32r, X86::EAX,
12721                                                X86::GR32RegisterClass, true);
12722   case X86::ATOMMIN32:
12723     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
12724   case X86::ATOMMAX32:
12725     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
12726   case X86::ATOMUMIN32:
12727     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
12728   case X86::ATOMUMAX32:
12729     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
12730
12731   case X86::ATOMAND16:
12732     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12733                                                X86::AND16ri, X86::MOV16rm,
12734                                                X86::LCMPXCHG16,
12735                                                X86::NOT16r, X86::AX,
12736                                                X86::GR16RegisterClass);
12737   case X86::ATOMOR16:
12738     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
12739                                                X86::OR16ri, X86::MOV16rm,
12740                                                X86::LCMPXCHG16,
12741                                                X86::NOT16r, X86::AX,
12742                                                X86::GR16RegisterClass);
12743   case X86::ATOMXOR16:
12744     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
12745                                                X86::XOR16ri, X86::MOV16rm,
12746                                                X86::LCMPXCHG16,
12747                                                X86::NOT16r, X86::AX,
12748                                                X86::GR16RegisterClass);
12749   case X86::ATOMNAND16:
12750     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
12751                                                X86::AND16ri, X86::MOV16rm,
12752                                                X86::LCMPXCHG16,
12753                                                X86::NOT16r, X86::AX,
12754                                                X86::GR16RegisterClass, true);
12755   case X86::ATOMMIN16:
12756     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
12757   case X86::ATOMMAX16:
12758     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
12759   case X86::ATOMUMIN16:
12760     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
12761   case X86::ATOMUMAX16:
12762     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
12763
12764   case X86::ATOMAND8:
12765     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12766                                                X86::AND8ri, X86::MOV8rm,
12767                                                X86::LCMPXCHG8,
12768                                                X86::NOT8r, X86::AL,
12769                                                X86::GR8RegisterClass);
12770   case X86::ATOMOR8:
12771     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
12772                                                X86::OR8ri, X86::MOV8rm,
12773                                                X86::LCMPXCHG8,
12774                                                X86::NOT8r, X86::AL,
12775                                                X86::GR8RegisterClass);
12776   case X86::ATOMXOR8:
12777     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
12778                                                X86::XOR8ri, X86::MOV8rm,
12779                                                X86::LCMPXCHG8,
12780                                                X86::NOT8r, X86::AL,
12781                                                X86::GR8RegisterClass);
12782   case X86::ATOMNAND8:
12783     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
12784                                                X86::AND8ri, X86::MOV8rm,
12785                                                X86::LCMPXCHG8,
12786                                                X86::NOT8r, X86::AL,
12787                                                X86::GR8RegisterClass, true);
12788   // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
12789   // This group is for 64-bit host.
12790   case X86::ATOMAND64:
12791     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12792                                                X86::AND64ri32, X86::MOV64rm,
12793                                                X86::LCMPXCHG64,
12794                                                X86::NOT64r, X86::RAX,
12795                                                X86::GR64RegisterClass);
12796   case X86::ATOMOR64:
12797     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
12798                                                X86::OR64ri32, X86::MOV64rm,
12799                                                X86::LCMPXCHG64,
12800                                                X86::NOT64r, X86::RAX,
12801                                                X86::GR64RegisterClass);
12802   case X86::ATOMXOR64:
12803     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
12804                                                X86::XOR64ri32, X86::MOV64rm,
12805                                                X86::LCMPXCHG64,
12806                                                X86::NOT64r, X86::RAX,
12807                                                X86::GR64RegisterClass);
12808   case X86::ATOMNAND64:
12809     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
12810                                                X86::AND64ri32, X86::MOV64rm,
12811                                                X86::LCMPXCHG64,
12812                                                X86::NOT64r, X86::RAX,
12813                                                X86::GR64RegisterClass, true);
12814   case X86::ATOMMIN64:
12815     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
12816   case X86::ATOMMAX64:
12817     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
12818   case X86::ATOMUMIN64:
12819     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
12820   case X86::ATOMUMAX64:
12821     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
12822
12823   // This group does 64-bit operations on a 32-bit host.
12824   case X86::ATOMAND6432:
12825     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12826                                                X86::AND32rr, X86::AND32rr,
12827                                                X86::AND32ri, X86::AND32ri,
12828                                                false);
12829   case X86::ATOMOR6432:
12830     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12831                                                X86::OR32rr, X86::OR32rr,
12832                                                X86::OR32ri, X86::OR32ri,
12833                                                false);
12834   case X86::ATOMXOR6432:
12835     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12836                                                X86::XOR32rr, X86::XOR32rr,
12837                                                X86::XOR32ri, X86::XOR32ri,
12838                                                false);
12839   case X86::ATOMNAND6432:
12840     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12841                                                X86::AND32rr, X86::AND32rr,
12842                                                X86::AND32ri, X86::AND32ri,
12843                                                true);
12844   case X86::ATOMADD6432:
12845     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12846                                                X86::ADD32rr, X86::ADC32rr,
12847                                                X86::ADD32ri, X86::ADC32ri,
12848                                                false);
12849   case X86::ATOMSUB6432:
12850     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12851                                                X86::SUB32rr, X86::SBB32rr,
12852                                                X86::SUB32ri, X86::SBB32ri,
12853                                                false);
12854   case X86::ATOMSWAP6432:
12855     return EmitAtomicBit6432WithCustomInserter(MI, BB,
12856                                                X86::MOV32rr, X86::MOV32rr,
12857                                                X86::MOV32ri, X86::MOV32ri,
12858                                                false);
12859   case X86::VASTART_SAVE_XMM_REGS:
12860     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
12861
12862   case X86::VAARG_64:
12863     return EmitVAARG64WithCustomInserter(MI, BB);
12864   }
12865 }
12866
12867 //===----------------------------------------------------------------------===//
12868 //                           X86 Optimization Hooks
12869 //===----------------------------------------------------------------------===//
12870
12871 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
12872                                                        const APInt &Mask,
12873                                                        APInt &KnownZero,
12874                                                        APInt &KnownOne,
12875                                                        const SelectionDAG &DAG,
12876                                                        unsigned Depth) const {
12877   unsigned Opc = Op.getOpcode();
12878   assert((Opc >= ISD::BUILTIN_OP_END ||
12879           Opc == ISD::INTRINSIC_WO_CHAIN ||
12880           Opc == ISD::INTRINSIC_W_CHAIN ||
12881           Opc == ISD::INTRINSIC_VOID) &&
12882          "Should use MaskedValueIsZero if you don't know whether Op"
12883          " is a target node!");
12884
12885   KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);   // Don't know anything.
12886   switch (Opc) {
12887   default: break;
12888   case X86ISD::ADD:
12889   case X86ISD::SUB:
12890   case X86ISD::ADC:
12891   case X86ISD::SBB:
12892   case X86ISD::SMUL:
12893   case X86ISD::UMUL:
12894   case X86ISD::INC:
12895   case X86ISD::DEC:
12896   case X86ISD::OR:
12897   case X86ISD::XOR:
12898   case X86ISD::AND:
12899     // These nodes' second result is a boolean.
12900     if (Op.getResNo() == 0)
12901       break;
12902     // Fallthrough
12903   case X86ISD::SETCC:
12904     KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
12905                                        Mask.getBitWidth() - 1);
12906     break;
12907   case ISD::INTRINSIC_WO_CHAIN: {
12908     unsigned IntId = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
12909     unsigned NumLoBits = 0;
12910     switch (IntId) {
12911     default: break;
12912     case Intrinsic::x86_sse_movmsk_ps:
12913     case Intrinsic::x86_avx_movmsk_ps_256:
12914     case Intrinsic::x86_sse2_movmsk_pd:
12915     case Intrinsic::x86_avx_movmsk_pd_256:
12916     case Intrinsic::x86_mmx_pmovmskb:
12917     case Intrinsic::x86_sse2_pmovmskb_128: {
12918       // High bits of movmskp{s|d}, pmovmskb are known zero.
12919       switch (IntId) {
12920         case Intrinsic::x86_sse_movmsk_ps:      NumLoBits = 4; break;
12921         case Intrinsic::x86_avx_movmsk_ps_256:  NumLoBits = 8; break;
12922         case Intrinsic::x86_sse2_movmsk_pd:     NumLoBits = 2; break;
12923         case Intrinsic::x86_avx_movmsk_pd_256:  NumLoBits = 4; break;
12924         case Intrinsic::x86_mmx_pmovmskb:       NumLoBits = 8; break;
12925         case Intrinsic::x86_sse2_pmovmskb_128:  NumLoBits = 16; break;
12926       }
12927       KnownZero = APInt::getHighBitsSet(Mask.getBitWidth(),
12928                                         Mask.getBitWidth() - NumLoBits);
12929       break;
12930     }
12931     }
12932     break;
12933   }
12934   }
12935 }
12936
12937 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
12938                                                          unsigned Depth) const {
12939   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
12940   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
12941     return Op.getValueType().getScalarType().getSizeInBits();
12942
12943   // Fallback case.
12944   return 1;
12945 }
12946
12947 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
12948 /// node is a GlobalAddress + offset.
12949 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
12950                                        const GlobalValue* &GA,
12951                                        int64_t &Offset) const {
12952   if (N->getOpcode() == X86ISD::Wrapper) {
12953     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
12954       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
12955       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
12956       return true;
12957     }
12958   }
12959   return TargetLowering::isGAPlusOffset(N, GA, Offset);
12960 }
12961
12962 /// isShuffleHigh128VectorInsertLow - Checks whether the shuffle node is the
12963 /// same as extracting the high 128-bit part of 256-bit vector and then
12964 /// inserting the result into the low part of a new 256-bit vector
12965 static bool isShuffleHigh128VectorInsertLow(ShuffleVectorSDNode *SVOp) {
12966   EVT VT = SVOp->getValueType(0);
12967   int NumElems = VT.getVectorNumElements();
12968
12969   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
12970   for (int i = 0, j = NumElems/2; i < NumElems/2; ++i, ++j)
12971     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12972         SVOp->getMaskElt(j) >= 0)
12973       return false;
12974
12975   return true;
12976 }
12977
12978 /// isShuffleLow128VectorInsertHigh - Checks whether the shuffle node is the
12979 /// same as extracting the low 128-bit part of 256-bit vector and then
12980 /// inserting the result into the high part of a new 256-bit vector
12981 static bool isShuffleLow128VectorInsertHigh(ShuffleVectorSDNode *SVOp) {
12982   EVT VT = SVOp->getValueType(0);
12983   int NumElems = VT.getVectorNumElements();
12984
12985   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
12986   for (int i = NumElems/2, j = 0; i < NumElems; ++i, ++j)
12987     if (!isUndefOrEqual(SVOp->getMaskElt(i), j) ||
12988         SVOp->getMaskElt(j) >= 0)
12989       return false;
12990
12991   return true;
12992 }
12993
12994 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
12995 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
12996                                         TargetLowering::DAGCombinerInfo &DCI) {
12997   DebugLoc dl = N->getDebugLoc();
12998   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
12999   SDValue V1 = SVOp->getOperand(0);
13000   SDValue V2 = SVOp->getOperand(1);
13001   EVT VT = SVOp->getValueType(0);
13002   int NumElems = VT.getVectorNumElements();
13003
13004   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
13005       V2.getOpcode() == ISD::CONCAT_VECTORS) {
13006     //
13007     //                   0,0,0,...
13008     //                      |
13009     //    V      UNDEF    BUILD_VECTOR    UNDEF
13010     //     \      /           \           /
13011     //  CONCAT_VECTOR         CONCAT_VECTOR
13012     //         \                  /
13013     //          \                /
13014     //          RESULT: V + zero extended
13015     //
13016     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
13017         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
13018         V1.getOperand(1).getOpcode() != ISD::UNDEF)
13019       return SDValue();
13020
13021     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
13022       return SDValue();
13023
13024     // To match the shuffle mask, the first half of the mask should
13025     // be exactly the first vector, and all the rest a splat with the
13026     // first element of the second one.
13027     for (int i = 0; i < NumElems/2; ++i)
13028       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
13029           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
13030         return SDValue();
13031
13032     // Emit a zeroed vector and insert the desired subvector on its
13033     // first half.
13034     SDValue Zeros = getZeroVector(VT, true /* HasXMMInt */, DAG, dl);
13035     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
13036                          DAG.getConstant(0, MVT::i32), DAG, dl);
13037     return DCI.CombineTo(N, InsV);
13038   }
13039
13040   //===--------------------------------------------------------------------===//
13041   // Combine some shuffles into subvector extracts and inserts:
13042   //
13043
13044   // vector_shuffle <4, 5, 6, 7, u, u, u, u> or <2, 3, u, u>
13045   if (isShuffleHigh128VectorInsertLow(SVOp)) {
13046     SDValue V = Extract128BitVector(V1, DAG.getConstant(NumElems/2, MVT::i32),
13047                                     DAG, dl);
13048     SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
13049                                       V, DAG.getConstant(0, MVT::i32), DAG, dl);
13050     return DCI.CombineTo(N, InsV);
13051   }
13052
13053   // vector_shuffle <u, u, u, u, 0, 1, 2, 3> or <u, u, 0, 1>
13054   if (isShuffleLow128VectorInsertHigh(SVOp)) {
13055     SDValue V = Extract128BitVector(V1, DAG.getConstant(0, MVT::i32), DAG, dl);
13056     SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT),
13057                              V, DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
13058     return DCI.CombineTo(N, InsV);
13059   }
13060
13061   return SDValue();
13062 }
13063
13064 /// PerformShuffleCombine - Performs several different shuffle combines.
13065 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
13066                                      TargetLowering::DAGCombinerInfo &DCI,
13067                                      const X86Subtarget *Subtarget) {
13068   DebugLoc dl = N->getDebugLoc();
13069   EVT VT = N->getValueType(0);
13070
13071   // Don't create instructions with illegal types after legalize types has run.
13072   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
13073   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
13074     return SDValue();
13075
13076   // Combine 256-bit vector shuffles. This is only profitable when in AVX mode
13077   if (Subtarget->hasAVX() && VT.getSizeInBits() == 256 &&
13078       N->getOpcode() == ISD::VECTOR_SHUFFLE)
13079     return PerformShuffleCombine256(N, DAG, DCI);
13080
13081   // Only handle 128 wide vector from here on.
13082   if (VT.getSizeInBits() != 128)
13083     return SDValue();
13084
13085   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
13086   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
13087   // consecutive, non-overlapping, and in the right order.
13088   SmallVector<SDValue, 16> Elts;
13089   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
13090     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
13091
13092   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
13093 }
13094
13095 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
13096 /// generation and convert it from being a bunch of shuffles and extracts
13097 /// to a simple store and scalar loads to extract the elements.
13098 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
13099                                                 const TargetLowering &TLI) {
13100   SDValue InputVector = N->getOperand(0);
13101
13102   // Only operate on vectors of 4 elements, where the alternative shuffling
13103   // gets to be more expensive.
13104   if (InputVector.getValueType() != MVT::v4i32)
13105     return SDValue();
13106
13107   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
13108   // single use which is a sign-extend or zero-extend, and all elements are
13109   // used.
13110   SmallVector<SDNode *, 4> Uses;
13111   unsigned ExtractedElements = 0;
13112   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
13113        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
13114     if (UI.getUse().getResNo() != InputVector.getResNo())
13115       return SDValue();
13116
13117     SDNode *Extract = *UI;
13118     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
13119       return SDValue();
13120
13121     if (Extract->getValueType(0) != MVT::i32)
13122       return SDValue();
13123     if (!Extract->hasOneUse())
13124       return SDValue();
13125     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
13126         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
13127       return SDValue();
13128     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
13129       return SDValue();
13130
13131     // Record which element was extracted.
13132     ExtractedElements |=
13133       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
13134
13135     Uses.push_back(Extract);
13136   }
13137
13138   // If not all the elements were used, this may not be worthwhile.
13139   if (ExtractedElements != 15)
13140     return SDValue();
13141
13142   // Ok, we've now decided to do the transformation.
13143   DebugLoc dl = InputVector.getDebugLoc();
13144
13145   // Store the value to a temporary stack slot.
13146   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
13147   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
13148                             MachinePointerInfo(), false, false, 0);
13149
13150   // Replace each use (extract) with a load of the appropriate element.
13151   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
13152        UE = Uses.end(); UI != UE; ++UI) {
13153     SDNode *Extract = *UI;
13154
13155     // cOMpute the element's address.
13156     SDValue Idx = Extract->getOperand(1);
13157     unsigned EltSize =
13158         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
13159     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
13160     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
13161
13162     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
13163                                      StackPtr, OffsetVal);
13164
13165     // Load the scalar.
13166     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
13167                                      ScalarAddr, MachinePointerInfo(),
13168                                      false, false, false, 0);
13169
13170     // Replace the exact with the load.
13171     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
13172   }
13173
13174   // The replacement was made in place; don't return anything.
13175   return SDValue();
13176 }
13177
13178 /// PerformSELECTCombine - Do target-specific dag combines on SELECT and VSELECT
13179 /// nodes.
13180 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
13181                                     const X86Subtarget *Subtarget) {
13182   DebugLoc DL = N->getDebugLoc();
13183   SDValue Cond = N->getOperand(0);
13184   // Get the LHS/RHS of the select.
13185   SDValue LHS = N->getOperand(1);
13186   SDValue RHS = N->getOperand(2);
13187   EVT VT = LHS.getValueType();
13188
13189   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
13190   // instructions match the semantics of the common C idiom x<y?x:y but not
13191   // x<=y?x:y, because of how they handle negative zero (which can be
13192   // ignored in unsafe-math mode).
13193   if (Cond.getOpcode() == ISD::SETCC && VT.isFloatingPoint() &&
13194       VT != MVT::f80 && DAG.getTargetLoweringInfo().isTypeLegal(VT) &&
13195       (Subtarget->hasXMMInt() ||
13196        (Subtarget->hasSSE1() && VT.getScalarType() == MVT::f32))) {
13197     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
13198
13199     unsigned Opcode = 0;
13200     // Check for x CC y ? x : y.
13201     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
13202         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
13203       switch (CC) {
13204       default: break;
13205       case ISD::SETULT:
13206         // Converting this to a min would handle NaNs incorrectly, and swapping
13207         // the operands would cause it to handle comparisons between positive
13208         // and negative zero incorrectly.
13209         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
13210           if (!UnsafeFPMath &&
13211               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
13212             break;
13213           std::swap(LHS, RHS);
13214         }
13215         Opcode = X86ISD::FMIN;
13216         break;
13217       case ISD::SETOLE:
13218         // Converting this to a min would handle comparisons between positive
13219         // and negative zero incorrectly.
13220         if (!UnsafeFPMath &&
13221             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
13222           break;
13223         Opcode = X86ISD::FMIN;
13224         break;
13225       case ISD::SETULE:
13226         // Converting this to a min would handle both negative zeros and NaNs
13227         // incorrectly, but we can swap the operands to fix both.
13228         std::swap(LHS, RHS);
13229       case ISD::SETOLT:
13230       case ISD::SETLT:
13231       case ISD::SETLE:
13232         Opcode = X86ISD::FMIN;
13233         break;
13234
13235       case ISD::SETOGE:
13236         // Converting this to a max would handle comparisons between positive
13237         // and negative zero incorrectly.
13238         if (!UnsafeFPMath &&
13239             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
13240           break;
13241         Opcode = X86ISD::FMAX;
13242         break;
13243       case ISD::SETUGT:
13244         // Converting this to a max would handle NaNs incorrectly, and swapping
13245         // the operands would cause it to handle comparisons between positive
13246         // and negative zero incorrectly.
13247         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
13248           if (!UnsafeFPMath &&
13249               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
13250             break;
13251           std::swap(LHS, RHS);
13252         }
13253         Opcode = X86ISD::FMAX;
13254         break;
13255       case ISD::SETUGE:
13256         // Converting this to a max would handle both negative zeros and NaNs
13257         // incorrectly, but we can swap the operands to fix both.
13258         std::swap(LHS, RHS);
13259       case ISD::SETOGT:
13260       case ISD::SETGT:
13261       case ISD::SETGE:
13262         Opcode = X86ISD::FMAX;
13263         break;
13264       }
13265     // Check for x CC y ? y : x -- a min/max with reversed arms.
13266     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
13267                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
13268       switch (CC) {
13269       default: break;
13270       case ISD::SETOGE:
13271         // Converting this to a min would handle comparisons between positive
13272         // and negative zero incorrectly, and swapping the operands would
13273         // cause it to handle NaNs incorrectly.
13274         if (!UnsafeFPMath &&
13275             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
13276           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13277             break;
13278           std::swap(LHS, RHS);
13279         }
13280         Opcode = X86ISD::FMIN;
13281         break;
13282       case ISD::SETUGT:
13283         // Converting this to a min would handle NaNs incorrectly.
13284         if (!UnsafeFPMath &&
13285             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
13286           break;
13287         Opcode = X86ISD::FMIN;
13288         break;
13289       case ISD::SETUGE:
13290         // Converting this to a min would handle both negative zeros and NaNs
13291         // incorrectly, but we can swap the operands to fix both.
13292         std::swap(LHS, RHS);
13293       case ISD::SETOGT:
13294       case ISD::SETGT:
13295       case ISD::SETGE:
13296         Opcode = X86ISD::FMIN;
13297         break;
13298
13299       case ISD::SETULT:
13300         // Converting this to a max would handle NaNs incorrectly.
13301         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13302           break;
13303         Opcode = X86ISD::FMAX;
13304         break;
13305       case ISD::SETOLE:
13306         // Converting this to a max would handle comparisons between positive
13307         // and negative zero incorrectly, and swapping the operands would
13308         // cause it to handle NaNs incorrectly.
13309         if (!UnsafeFPMath &&
13310             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
13311           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
13312             break;
13313           std::swap(LHS, RHS);
13314         }
13315         Opcode = X86ISD::FMAX;
13316         break;
13317       case ISD::SETULE:
13318         // Converting this to a max would handle both negative zeros and NaNs
13319         // incorrectly, but we can swap the operands to fix both.
13320         std::swap(LHS, RHS);
13321       case ISD::SETOLT:
13322       case ISD::SETLT:
13323       case ISD::SETLE:
13324         Opcode = X86ISD::FMAX;
13325         break;
13326       }
13327     }
13328
13329     if (Opcode)
13330       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
13331   }
13332
13333   // If this is a select between two integer constants, try to do some
13334   // optimizations.
13335   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
13336     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
13337       // Don't do this for crazy integer types.
13338       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
13339         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
13340         // so that TrueC (the true value) is larger than FalseC.
13341         bool NeedsCondInvert = false;
13342
13343         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
13344             // Efficiently invertible.
13345             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
13346              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
13347               isa<ConstantSDNode>(Cond.getOperand(1))))) {
13348           NeedsCondInvert = true;
13349           std::swap(TrueC, FalseC);
13350         }
13351
13352         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
13353         if (FalseC->getAPIntValue() == 0 &&
13354             TrueC->getAPIntValue().isPowerOf2()) {
13355           if (NeedsCondInvert) // Invert the condition if needed.
13356             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13357                                DAG.getConstant(1, Cond.getValueType()));
13358
13359           // Zero extend the condition if needed.
13360           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
13361
13362           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
13363           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
13364                              DAG.getConstant(ShAmt, MVT::i8));
13365         }
13366
13367         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
13368         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
13369           if (NeedsCondInvert) // Invert the condition if needed.
13370             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13371                                DAG.getConstant(1, Cond.getValueType()));
13372
13373           // Zero extend the condition if needed.
13374           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
13375                              FalseC->getValueType(0), Cond);
13376           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13377                              SDValue(FalseC, 0));
13378         }
13379
13380         // Optimize cases that will turn into an LEA instruction.  This requires
13381         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
13382         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
13383           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
13384           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
13385
13386           bool isFastMultiplier = false;
13387           if (Diff < 10) {
13388             switch ((unsigned char)Diff) {
13389               default: break;
13390               case 1:  // result = add base, cond
13391               case 2:  // result = lea base(    , cond*2)
13392               case 3:  // result = lea base(cond, cond*2)
13393               case 4:  // result = lea base(    , cond*4)
13394               case 5:  // result = lea base(cond, cond*4)
13395               case 8:  // result = lea base(    , cond*8)
13396               case 9:  // result = lea base(cond, cond*8)
13397                 isFastMultiplier = true;
13398                 break;
13399             }
13400           }
13401
13402           if (isFastMultiplier) {
13403             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
13404             if (NeedsCondInvert) // Invert the condition if needed.
13405               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
13406                                  DAG.getConstant(1, Cond.getValueType()));
13407
13408             // Zero extend the condition if needed.
13409             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
13410                                Cond);
13411             // Scale the condition by the difference.
13412             if (Diff != 1)
13413               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
13414                                  DAG.getConstant(Diff, Cond.getValueType()));
13415
13416             // Add the base if non-zero.
13417             if (FalseC->getAPIntValue() != 0)
13418               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13419                                  SDValue(FalseC, 0));
13420             return Cond;
13421           }
13422         }
13423       }
13424   }
13425
13426   return SDValue();
13427 }
13428
13429 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
13430 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
13431                                   TargetLowering::DAGCombinerInfo &DCI) {
13432   DebugLoc DL = N->getDebugLoc();
13433
13434   // If the flag operand isn't dead, don't touch this CMOV.
13435   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
13436     return SDValue();
13437
13438   SDValue FalseOp = N->getOperand(0);
13439   SDValue TrueOp = N->getOperand(1);
13440   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
13441   SDValue Cond = N->getOperand(3);
13442   if (CC == X86::COND_E || CC == X86::COND_NE) {
13443     switch (Cond.getOpcode()) {
13444     default: break;
13445     case X86ISD::BSR:
13446     case X86ISD::BSF:
13447       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
13448       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
13449         return (CC == X86::COND_E) ? FalseOp : TrueOp;
13450     }
13451   }
13452
13453   // If this is a select between two integer constants, try to do some
13454   // optimizations.  Note that the operands are ordered the opposite of SELECT
13455   // operands.
13456   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
13457     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
13458       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
13459       // larger than FalseC (the false value).
13460       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
13461         CC = X86::GetOppositeBranchCondition(CC);
13462         std::swap(TrueC, FalseC);
13463       }
13464
13465       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
13466       // This is efficient for any integer data type (including i8/i16) and
13467       // shift amount.
13468       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
13469         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13470                            DAG.getConstant(CC, MVT::i8), Cond);
13471
13472         // Zero extend the condition if needed.
13473         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
13474
13475         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
13476         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
13477                            DAG.getConstant(ShAmt, MVT::i8));
13478         if (N->getNumValues() == 2)  // Dead flag value?
13479           return DCI.CombineTo(N, Cond, SDValue());
13480         return Cond;
13481       }
13482
13483       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
13484       // for any integer data type, including i8/i16.
13485       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
13486         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13487                            DAG.getConstant(CC, MVT::i8), Cond);
13488
13489         // Zero extend the condition if needed.
13490         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
13491                            FalseC->getValueType(0), Cond);
13492         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13493                            SDValue(FalseC, 0));
13494
13495         if (N->getNumValues() == 2)  // Dead flag value?
13496           return DCI.CombineTo(N, Cond, SDValue());
13497         return Cond;
13498       }
13499
13500       // Optimize cases that will turn into an LEA instruction.  This requires
13501       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
13502       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
13503         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
13504         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
13505
13506         bool isFastMultiplier = false;
13507         if (Diff < 10) {
13508           switch ((unsigned char)Diff) {
13509           default: break;
13510           case 1:  // result = add base, cond
13511           case 2:  // result = lea base(    , cond*2)
13512           case 3:  // result = lea base(cond, cond*2)
13513           case 4:  // result = lea base(    , cond*4)
13514           case 5:  // result = lea base(cond, cond*4)
13515           case 8:  // result = lea base(    , cond*8)
13516           case 9:  // result = lea base(cond, cond*8)
13517             isFastMultiplier = true;
13518             break;
13519           }
13520         }
13521
13522         if (isFastMultiplier) {
13523           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
13524           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
13525                              DAG.getConstant(CC, MVT::i8), Cond);
13526           // Zero extend the condition if needed.
13527           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
13528                              Cond);
13529           // Scale the condition by the difference.
13530           if (Diff != 1)
13531             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
13532                                DAG.getConstant(Diff, Cond.getValueType()));
13533
13534           // Add the base if non-zero.
13535           if (FalseC->getAPIntValue() != 0)
13536             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
13537                                SDValue(FalseC, 0));
13538           if (N->getNumValues() == 2)  // Dead flag value?
13539             return DCI.CombineTo(N, Cond, SDValue());
13540           return Cond;
13541         }
13542       }
13543     }
13544   }
13545   return SDValue();
13546 }
13547
13548
13549 /// PerformMulCombine - Optimize a single multiply with constant into two
13550 /// in order to implement it with two cheaper instructions, e.g.
13551 /// LEA + SHL, LEA + LEA.
13552 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
13553                                  TargetLowering::DAGCombinerInfo &DCI) {
13554   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
13555     return SDValue();
13556
13557   EVT VT = N->getValueType(0);
13558   if (VT != MVT::i64)
13559     return SDValue();
13560
13561   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
13562   if (!C)
13563     return SDValue();
13564   uint64_t MulAmt = C->getZExtValue();
13565   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
13566     return SDValue();
13567
13568   uint64_t MulAmt1 = 0;
13569   uint64_t MulAmt2 = 0;
13570   if ((MulAmt % 9) == 0) {
13571     MulAmt1 = 9;
13572     MulAmt2 = MulAmt / 9;
13573   } else if ((MulAmt % 5) == 0) {
13574     MulAmt1 = 5;
13575     MulAmt2 = MulAmt / 5;
13576   } else if ((MulAmt % 3) == 0) {
13577     MulAmt1 = 3;
13578     MulAmt2 = MulAmt / 3;
13579   }
13580   if (MulAmt2 &&
13581       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
13582     DebugLoc DL = N->getDebugLoc();
13583
13584     if (isPowerOf2_64(MulAmt2) &&
13585         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
13586       // If second multiplifer is pow2, issue it first. We want the multiply by
13587       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
13588       // is an add.
13589       std::swap(MulAmt1, MulAmt2);
13590
13591     SDValue NewMul;
13592     if (isPowerOf2_64(MulAmt1))
13593       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
13594                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
13595     else
13596       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
13597                            DAG.getConstant(MulAmt1, VT));
13598
13599     if (isPowerOf2_64(MulAmt2))
13600       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
13601                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
13602     else
13603       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
13604                            DAG.getConstant(MulAmt2, VT));
13605
13606     // Do not add new nodes to DAG combiner worklist.
13607     DCI.CombineTo(N, NewMul, false);
13608   }
13609   return SDValue();
13610 }
13611
13612 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
13613   SDValue N0 = N->getOperand(0);
13614   SDValue N1 = N->getOperand(1);
13615   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
13616   EVT VT = N0.getValueType();
13617
13618   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
13619   // since the result of setcc_c is all zero's or all ones.
13620   if (VT.isInteger() && !VT.isVector() &&
13621       N1C && N0.getOpcode() == ISD::AND &&
13622       N0.getOperand(1).getOpcode() == ISD::Constant) {
13623     SDValue N00 = N0.getOperand(0);
13624     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
13625         ((N00.getOpcode() == ISD::ANY_EXTEND ||
13626           N00.getOpcode() == ISD::ZERO_EXTEND) &&
13627          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
13628       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
13629       APInt ShAmt = N1C->getAPIntValue();
13630       Mask = Mask.shl(ShAmt);
13631       if (Mask != 0)
13632         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
13633                            N00, DAG.getConstant(Mask, VT));
13634     }
13635   }
13636
13637
13638   // Hardware support for vector shifts is sparse which makes us scalarize the
13639   // vector operations in many cases. Also, on sandybridge ADD is faster than
13640   // shl.
13641   // (shl V, 1) -> add V,V
13642   if (isSplatVector(N1.getNode())) {
13643     assert(N0.getValueType().isVector() && "Invalid vector shift type");
13644     ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1->getOperand(0));
13645     // We shift all of the values by one. In many cases we do not have
13646     // hardware support for this operation. This is better expressed as an ADD
13647     // of two values.
13648     if (N1C && (1 == N1C->getZExtValue())) {
13649       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, N0, N0);
13650     }
13651   }
13652
13653   return SDValue();
13654 }
13655
13656 /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
13657 ///                       when possible.
13658 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
13659                                    const X86Subtarget *Subtarget) {
13660   EVT VT = N->getValueType(0);
13661   if (N->getOpcode() == ISD::SHL) {
13662     SDValue V = PerformSHLCombine(N, DAG);
13663     if (V.getNode()) return V;
13664   }
13665
13666   // On X86 with SSE2 support, we can transform this to a vector shift if
13667   // all elements are shifted by the same amount.  We can't do this in legalize
13668   // because the a constant vector is typically transformed to a constant pool
13669   // so we have no knowledge of the shift amount.
13670   if (!Subtarget->hasXMMInt())
13671     return SDValue();
13672
13673   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16 &&
13674       (!Subtarget->hasAVX2() ||
13675        (VT != MVT::v4i64 && VT != MVT::v8i32 && VT != MVT::v16i16)))
13676     return SDValue();
13677
13678   SDValue ShAmtOp = N->getOperand(1);
13679   EVT EltVT = VT.getVectorElementType();
13680   DebugLoc DL = N->getDebugLoc();
13681   SDValue BaseShAmt = SDValue();
13682   if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
13683     unsigned NumElts = VT.getVectorNumElements();
13684     unsigned i = 0;
13685     for (; i != NumElts; ++i) {
13686       SDValue Arg = ShAmtOp.getOperand(i);
13687       if (Arg.getOpcode() == ISD::UNDEF) continue;
13688       BaseShAmt = Arg;
13689       break;
13690     }
13691     for (; i != NumElts; ++i) {
13692       SDValue Arg = ShAmtOp.getOperand(i);
13693       if (Arg.getOpcode() == ISD::UNDEF) continue;
13694       if (Arg != BaseShAmt) {
13695         return SDValue();
13696       }
13697     }
13698   } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
13699              cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
13700     SDValue InVec = ShAmtOp.getOperand(0);
13701     if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
13702       unsigned NumElts = InVec.getValueType().getVectorNumElements();
13703       unsigned i = 0;
13704       for (; i != NumElts; ++i) {
13705         SDValue Arg = InVec.getOperand(i);
13706         if (Arg.getOpcode() == ISD::UNDEF) continue;
13707         BaseShAmt = Arg;
13708         break;
13709       }
13710     } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
13711        if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
13712          unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
13713          if (C->getZExtValue() == SplatIdx)
13714            BaseShAmt = InVec.getOperand(1);
13715        }
13716     }
13717     if (BaseShAmt.getNode() == 0)
13718       BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
13719                               DAG.getIntPtrConstant(0));
13720   } else
13721     return SDValue();
13722
13723   // The shift amount is an i32.
13724   if (EltVT.bitsGT(MVT::i32))
13725     BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
13726   else if (EltVT.bitsLT(MVT::i32))
13727     BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
13728
13729   // The shift amount is identical so we can do a vector shift.
13730   SDValue  ValOp = N->getOperand(0);
13731   switch (N->getOpcode()) {
13732   default:
13733     llvm_unreachable("Unknown shift opcode!");
13734     break;
13735   case ISD::SHL:
13736     if (VT == MVT::v2i64)
13737       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13738                          DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
13739                          ValOp, BaseShAmt);
13740     if (VT == MVT::v4i32)
13741       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13742                          DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
13743                          ValOp, BaseShAmt);
13744     if (VT == MVT::v8i16)
13745       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13746                          DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
13747                          ValOp, BaseShAmt);
13748     if (VT == MVT::v4i64)
13749       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13750                          DAG.getConstant(Intrinsic::x86_avx2_pslli_q, MVT::i32),
13751                          ValOp, BaseShAmt);
13752     if (VT == MVT::v8i32)
13753       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13754                          DAG.getConstant(Intrinsic::x86_avx2_pslli_d, MVT::i32),
13755                          ValOp, BaseShAmt);
13756     if (VT == MVT::v16i16)
13757       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13758                          DAG.getConstant(Intrinsic::x86_avx2_pslli_w, MVT::i32),
13759                          ValOp, BaseShAmt);
13760     break;
13761   case ISD::SRA:
13762     if (VT == MVT::v4i32)
13763       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13764                          DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
13765                          ValOp, BaseShAmt);
13766     if (VT == MVT::v8i16)
13767       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13768                          DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
13769                          ValOp, BaseShAmt);
13770     if (VT == MVT::v8i32)
13771       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13772                          DAG.getConstant(Intrinsic::x86_avx2_psrai_d, MVT::i32),
13773                          ValOp, BaseShAmt);
13774     if (VT == MVT::v16i16)
13775       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13776                          DAG.getConstant(Intrinsic::x86_avx2_psrai_w, MVT::i32),
13777                          ValOp, BaseShAmt);
13778     break;
13779   case ISD::SRL:
13780     if (VT == MVT::v2i64)
13781       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13782                          DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
13783                          ValOp, BaseShAmt);
13784     if (VT == MVT::v4i32)
13785       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13786                          DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
13787                          ValOp, BaseShAmt);
13788     if (VT ==  MVT::v8i16)
13789       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13790                          DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
13791                          ValOp, BaseShAmt);
13792     if (VT == MVT::v4i64)
13793       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13794                          DAG.getConstant(Intrinsic::x86_avx2_psrli_q, MVT::i32),
13795                          ValOp, BaseShAmt);
13796     if (VT == MVT::v8i32)
13797       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13798                          DAG.getConstant(Intrinsic::x86_avx2_psrli_d, MVT::i32),
13799                          ValOp, BaseShAmt);
13800     if (VT ==  MVT::v16i16)
13801       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
13802                          DAG.getConstant(Intrinsic::x86_avx2_psrli_w, MVT::i32),
13803                          ValOp, BaseShAmt);
13804     break;
13805   }
13806   return SDValue();
13807 }
13808
13809
13810 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
13811 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
13812 // and friends.  Likewise for OR -> CMPNEQSS.
13813 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
13814                             TargetLowering::DAGCombinerInfo &DCI,
13815                             const X86Subtarget *Subtarget) {
13816   unsigned opcode;
13817
13818   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
13819   // we're requiring SSE2 for both.
13820   if (Subtarget->hasXMMInt() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
13821     SDValue N0 = N->getOperand(0);
13822     SDValue N1 = N->getOperand(1);
13823     SDValue CMP0 = N0->getOperand(1);
13824     SDValue CMP1 = N1->getOperand(1);
13825     DebugLoc DL = N->getDebugLoc();
13826
13827     // The SETCCs should both refer to the same CMP.
13828     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
13829       return SDValue();
13830
13831     SDValue CMP00 = CMP0->getOperand(0);
13832     SDValue CMP01 = CMP0->getOperand(1);
13833     EVT     VT    = CMP00.getValueType();
13834
13835     if (VT == MVT::f32 || VT == MVT::f64) {
13836       bool ExpectingFlags = false;
13837       // Check for any users that want flags:
13838       for (SDNode::use_iterator UI = N->use_begin(),
13839              UE = N->use_end();
13840            !ExpectingFlags && UI != UE; ++UI)
13841         switch (UI->getOpcode()) {
13842         default:
13843         case ISD::BR_CC:
13844         case ISD::BRCOND:
13845         case ISD::SELECT:
13846           ExpectingFlags = true;
13847           break;
13848         case ISD::CopyToReg:
13849         case ISD::SIGN_EXTEND:
13850         case ISD::ZERO_EXTEND:
13851         case ISD::ANY_EXTEND:
13852           break;
13853         }
13854
13855       if (!ExpectingFlags) {
13856         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
13857         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
13858
13859         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
13860           X86::CondCode tmp = cc0;
13861           cc0 = cc1;
13862           cc1 = tmp;
13863         }
13864
13865         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
13866             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
13867           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
13868           X86ISD::NodeType NTOperator = is64BitFP ?
13869             X86ISD::FSETCCsd : X86ISD::FSETCCss;
13870           // FIXME: need symbolic constants for these magic numbers.
13871           // See X86ATTInstPrinter.cpp:printSSECC().
13872           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
13873           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
13874                                               DAG.getConstant(x86cc, MVT::i8));
13875           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
13876                                               OnesOrZeroesF);
13877           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
13878                                       DAG.getConstant(1, MVT::i32));
13879           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
13880           return OneBitOfTruth;
13881         }
13882       }
13883     }
13884   }
13885   return SDValue();
13886 }
13887
13888 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
13889 /// so it can be folded inside ANDNP.
13890 static bool CanFoldXORWithAllOnes(const SDNode *N) {
13891   EVT VT = N->getValueType(0);
13892
13893   // Match direct AllOnes for 128 and 256-bit vectors
13894   if (ISD::isBuildVectorAllOnes(N))
13895     return true;
13896
13897   // Look through a bit convert.
13898   if (N->getOpcode() == ISD::BITCAST)
13899     N = N->getOperand(0).getNode();
13900
13901   // Sometimes the operand may come from a insert_subvector building a 256-bit
13902   // allones vector
13903   if (VT.getSizeInBits() == 256 &&
13904       N->getOpcode() == ISD::INSERT_SUBVECTOR) {
13905     SDValue V1 = N->getOperand(0);
13906     SDValue V2 = N->getOperand(1);
13907
13908     if (V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
13909         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
13910         ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
13911         ISD::isBuildVectorAllOnes(V2.getNode()))
13912       return true;
13913   }
13914
13915   return false;
13916 }
13917
13918 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
13919                                  TargetLowering::DAGCombinerInfo &DCI,
13920                                  const X86Subtarget *Subtarget) {
13921   if (DCI.isBeforeLegalizeOps())
13922     return SDValue();
13923
13924   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
13925   if (R.getNode())
13926     return R;
13927
13928   EVT VT = N->getValueType(0);
13929
13930   // Create ANDN, BLSI, and BLSR instructions
13931   // BLSI is X & (-X)
13932   // BLSR is X & (X-1)
13933   if (Subtarget->hasBMI() && (VT == MVT::i32 || VT == MVT::i64)) {
13934     SDValue N0 = N->getOperand(0);
13935     SDValue N1 = N->getOperand(1);
13936     DebugLoc DL = N->getDebugLoc();
13937
13938     // Check LHS for not
13939     if (N0.getOpcode() == ISD::XOR && isAllOnes(N0.getOperand(1)))
13940       return DAG.getNode(X86ISD::ANDN, DL, VT, N0.getOperand(0), N1);
13941     // Check RHS for not
13942     if (N1.getOpcode() == ISD::XOR && isAllOnes(N1.getOperand(1)))
13943       return DAG.getNode(X86ISD::ANDN, DL, VT, N1.getOperand(0), N0);
13944
13945     // Check LHS for neg
13946     if (N0.getOpcode() == ISD::SUB && N0.getOperand(1) == N1 &&
13947         isZero(N0.getOperand(0)))
13948       return DAG.getNode(X86ISD::BLSI, DL, VT, N1);
13949
13950     // Check RHS for neg
13951     if (N1.getOpcode() == ISD::SUB && N1.getOperand(1) == N0 &&
13952         isZero(N1.getOperand(0)))
13953       return DAG.getNode(X86ISD::BLSI, DL, VT, N0);
13954
13955     // Check LHS for X-1
13956     if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
13957         isAllOnes(N0.getOperand(1)))
13958       return DAG.getNode(X86ISD::BLSR, DL, VT, N1);
13959
13960     // Check RHS for X-1
13961     if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
13962         isAllOnes(N1.getOperand(1)))
13963       return DAG.getNode(X86ISD::BLSR, DL, VT, N0);
13964
13965     return SDValue();
13966   }
13967
13968   // Want to form ANDNP nodes:
13969   // 1) In the hopes of then easily combining them with OR and AND nodes
13970   //    to form PBLEND/PSIGN.
13971   // 2) To match ANDN packed intrinsics
13972   if (VT != MVT::v2i64 && VT != MVT::v4i64)
13973     return SDValue();
13974
13975   SDValue N0 = N->getOperand(0);
13976   SDValue N1 = N->getOperand(1);
13977   DebugLoc DL = N->getDebugLoc();
13978
13979   // Check LHS for vnot
13980   if (N0.getOpcode() == ISD::XOR &&
13981       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
13982       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
13983     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
13984
13985   // Check RHS for vnot
13986   if (N1.getOpcode() == ISD::XOR &&
13987       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
13988       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
13989     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
13990
13991   return SDValue();
13992 }
13993
13994 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
13995                                 TargetLowering::DAGCombinerInfo &DCI,
13996                                 const X86Subtarget *Subtarget) {
13997   if (DCI.isBeforeLegalizeOps())
13998     return SDValue();
13999
14000   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
14001   if (R.getNode())
14002     return R;
14003
14004   EVT VT = N->getValueType(0);
14005
14006   SDValue N0 = N->getOperand(0);
14007   SDValue N1 = N->getOperand(1);
14008
14009   // look for psign/blend
14010   if (VT == MVT::v2i64 || VT == MVT::v4i64) {
14011     if (!Subtarget->hasSSSE3orAVX() ||
14012         (VT == MVT::v4i64 && !Subtarget->hasAVX2()))
14013       return SDValue();
14014
14015     // Canonicalize pandn to RHS
14016     if (N0.getOpcode() == X86ISD::ANDNP)
14017       std::swap(N0, N1);
14018     // or (and (m, x), (pandn m, y))
14019     if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
14020       SDValue Mask = N1.getOperand(0);
14021       SDValue X    = N1.getOperand(1);
14022       SDValue Y;
14023       if (N0.getOperand(0) == Mask)
14024         Y = N0.getOperand(1);
14025       if (N0.getOperand(1) == Mask)
14026         Y = N0.getOperand(0);
14027
14028       // Check to see if the mask appeared in both the AND and ANDNP and
14029       if (!Y.getNode())
14030         return SDValue();
14031
14032       // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
14033       if (Mask.getOpcode() != ISD::BITCAST ||
14034           X.getOpcode() != ISD::BITCAST ||
14035           Y.getOpcode() != ISD::BITCAST)
14036         return SDValue();
14037
14038       // Look through mask bitcast.
14039       Mask = Mask.getOperand(0);
14040       EVT MaskVT = Mask.getValueType();
14041
14042       // Validate that the Mask operand is a vector sra node.  The sra node
14043       // will be an intrinsic.
14044       if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
14045         return SDValue();
14046
14047       // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
14048       // there is no psrai.b
14049       switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
14050       case Intrinsic::x86_sse2_psrai_w:
14051       case Intrinsic::x86_sse2_psrai_d:
14052       case Intrinsic::x86_avx2_psrai_w:
14053       case Intrinsic::x86_avx2_psrai_d:
14054         break;
14055       default: return SDValue();
14056       }
14057
14058       // Check that the SRA is all signbits.
14059       SDValue SraC = Mask.getOperand(2);
14060       unsigned SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
14061       unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
14062       if ((SraAmt + 1) != EltBits)
14063         return SDValue();
14064
14065       DebugLoc DL = N->getDebugLoc();
14066
14067       // Now we know we at least have a plendvb with the mask val.  See if
14068       // we can form a psignb/w/d.
14069       // psign = x.type == y.type == mask.type && y = sub(0, x);
14070       X = X.getOperand(0);
14071       Y = Y.getOperand(0);
14072       if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
14073           ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
14074           X.getValueType() == MaskVT && X.getValueType() == Y.getValueType() &&
14075           (EltBits == 8 || EltBits == 16 || EltBits == 32)) {
14076         SDValue Sign = DAG.getNode(X86ISD::PSIGN, DL, MaskVT, X,
14077                                    Mask.getOperand(1));
14078         return DAG.getNode(ISD::BITCAST, DL, VT, Sign);
14079       }
14080       // PBLENDVB only available on SSE 4.1
14081       if (!Subtarget->hasSSE41orAVX())
14082         return SDValue();
14083
14084       EVT BlendVT = (VT == MVT::v4i64) ? MVT::v32i8 : MVT::v16i8;
14085
14086       X = DAG.getNode(ISD::BITCAST, DL, BlendVT, X);
14087       Y = DAG.getNode(ISD::BITCAST, DL, BlendVT, Y);
14088       Mask = DAG.getNode(ISD::BITCAST, DL, BlendVT, Mask);
14089       Mask = DAG.getNode(ISD::VSELECT, DL, BlendVT, Mask, X, Y);
14090       return DAG.getNode(ISD::BITCAST, DL, VT, Mask);
14091     }
14092   }
14093
14094   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64)
14095     return SDValue();
14096
14097   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
14098   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
14099     std::swap(N0, N1);
14100   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
14101     return SDValue();
14102   if (!N0.hasOneUse() || !N1.hasOneUse())
14103     return SDValue();
14104
14105   SDValue ShAmt0 = N0.getOperand(1);
14106   if (ShAmt0.getValueType() != MVT::i8)
14107     return SDValue();
14108   SDValue ShAmt1 = N1.getOperand(1);
14109   if (ShAmt1.getValueType() != MVT::i8)
14110     return SDValue();
14111   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
14112     ShAmt0 = ShAmt0.getOperand(0);
14113   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
14114     ShAmt1 = ShAmt1.getOperand(0);
14115
14116   DebugLoc DL = N->getDebugLoc();
14117   unsigned Opc = X86ISD::SHLD;
14118   SDValue Op0 = N0.getOperand(0);
14119   SDValue Op1 = N1.getOperand(0);
14120   if (ShAmt0.getOpcode() == ISD::SUB) {
14121     Opc = X86ISD::SHRD;
14122     std::swap(Op0, Op1);
14123     std::swap(ShAmt0, ShAmt1);
14124   }
14125
14126   unsigned Bits = VT.getSizeInBits();
14127   if (ShAmt1.getOpcode() == ISD::SUB) {
14128     SDValue Sum = ShAmt1.getOperand(0);
14129     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
14130       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
14131       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
14132         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
14133       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
14134         return DAG.getNode(Opc, DL, VT,
14135                            Op0, Op1,
14136                            DAG.getNode(ISD::TRUNCATE, DL,
14137                                        MVT::i8, ShAmt0));
14138     }
14139   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
14140     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
14141     if (ShAmt0C &&
14142         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
14143       return DAG.getNode(Opc, DL, VT,
14144                          N0.getOperand(0), N1.getOperand(0),
14145                          DAG.getNode(ISD::TRUNCATE, DL,
14146                                        MVT::i8, ShAmt0));
14147   }
14148
14149   return SDValue();
14150 }
14151
14152 static SDValue PerformXorCombine(SDNode *N, SelectionDAG &DAG,
14153                                  TargetLowering::DAGCombinerInfo &DCI,
14154                                  const X86Subtarget *Subtarget) {
14155   if (DCI.isBeforeLegalizeOps())
14156     return SDValue();
14157
14158   EVT VT = N->getValueType(0);
14159
14160   if (VT != MVT::i32 && VT != MVT::i64)
14161     return SDValue();
14162
14163   // Create BLSMSK instructions by finding X ^ (X-1)
14164   SDValue N0 = N->getOperand(0);
14165   SDValue N1 = N->getOperand(1);
14166   DebugLoc DL = N->getDebugLoc();
14167
14168   if (N0.getOpcode() == ISD::ADD && N0.getOperand(0) == N1 &&
14169       isAllOnes(N0.getOperand(1)))
14170     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N1);
14171
14172   if (N1.getOpcode() == ISD::ADD && N1.getOperand(0) == N0 &&
14173       isAllOnes(N1.getOperand(1)))
14174     return DAG.getNode(X86ISD::BLSMSK, DL, VT, N0);
14175
14176   return SDValue();
14177 }
14178
14179 /// PerformLOADCombine - Do target-specific dag combines on LOAD nodes.
14180 static SDValue PerformLOADCombine(SDNode *N, SelectionDAG &DAG,
14181                                    const X86Subtarget *Subtarget) {
14182   LoadSDNode *Ld = cast<LoadSDNode>(N);
14183   EVT RegVT = Ld->getValueType(0);
14184   EVT MemVT = Ld->getMemoryVT();
14185   DebugLoc dl = Ld->getDebugLoc();
14186   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14187
14188   ISD::LoadExtType Ext = Ld->getExtensionType();
14189
14190   // If this is a vector EXT Load then attempt to optimize it using a
14191   // shuffle. We need SSE4 for the shuffles.
14192   // TODO: It is possible to support ZExt by zeroing the undef values
14193   // during the shuffle phase or after the shuffle.
14194   if (RegVT.isVector() && Ext == ISD::EXTLOAD && Subtarget->hasSSE41()) {
14195     assert(MemVT != RegVT && "Cannot extend to the same type");
14196     assert(MemVT.isVector() && "Must load a vector from memory");
14197
14198     unsigned NumElems = RegVT.getVectorNumElements();
14199     unsigned RegSz = RegVT.getSizeInBits();
14200     unsigned MemSz = MemVT.getSizeInBits();
14201     assert(RegSz > MemSz && "Register size must be greater than the mem size");
14202     // All sizes must be a power of two
14203     if (!isPowerOf2_32(RegSz * MemSz * NumElems)) return SDValue();
14204
14205     // Attempt to load the original value using a single load op.
14206     // Find a scalar type which is equal to the loaded word size.
14207     MVT SclrLoadTy = MVT::i8;
14208     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
14209          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
14210       MVT Tp = (MVT::SimpleValueType)tp;
14211       if (TLI.isTypeLegal(Tp) &&  Tp.getSizeInBits() == MemSz) {
14212         SclrLoadTy = Tp;
14213         break;
14214       }
14215     }
14216
14217     // Proceed if a load word is found.
14218     if (SclrLoadTy.getSizeInBits() != MemSz) return SDValue();
14219
14220     EVT LoadUnitVecVT = EVT::getVectorVT(*DAG.getContext(), SclrLoadTy,
14221       RegSz/SclrLoadTy.getSizeInBits());
14222
14223     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(), MemVT.getScalarType(),
14224                                   RegSz/MemVT.getScalarType().getSizeInBits());
14225     // Can't shuffle using an illegal type.
14226     if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
14227
14228     // Perform a single load.
14229     SDValue ScalarLoad = DAG.getLoad(SclrLoadTy, dl, Ld->getChain(),
14230                                   Ld->getBasePtr(),
14231                                   Ld->getPointerInfo(), Ld->isVolatile(),
14232                                   Ld->isNonTemporal(), Ld->isInvariant(),
14233                                   Ld->getAlignment());
14234
14235     // Insert the word loaded into a vector.
14236     SDValue ScalarInVector = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
14237       LoadUnitVecVT, ScalarLoad);
14238
14239     // Bitcast the loaded value to a vector of the original element type, in
14240     // the size of the target vector type.
14241     SDValue SlicedVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, ScalarInVector);
14242     unsigned SizeRatio = RegSz/MemSz;
14243
14244     // Redistribute the loaded elements into the different locations.
14245     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
14246     for (unsigned i = 0; i < NumElems; i++) ShuffleVec[i*SizeRatio] = i;
14247
14248     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, SlicedVec,
14249                                 DAG.getUNDEF(SlicedVec.getValueType()),
14250                                 ShuffleVec.data());
14251
14252     // Bitcast to the requested type.
14253     Shuff = DAG.getNode(ISD::BITCAST, dl, RegVT, Shuff);
14254     // Replace the original load with the new sequence
14255     // and return the new chain.
14256     DAG.ReplaceAllUsesOfValueWith(SDValue(N, 0), Shuff);
14257     return SDValue(ScalarLoad.getNode(), 1);
14258   }
14259
14260   return SDValue();
14261 }
14262
14263 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
14264 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
14265                                    const X86Subtarget *Subtarget) {
14266   StoreSDNode *St = cast<StoreSDNode>(N);
14267   EVT VT = St->getValue().getValueType();
14268   EVT StVT = St->getMemoryVT();
14269   DebugLoc dl = St->getDebugLoc();
14270   SDValue StoredVal = St->getOperand(1);
14271   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14272
14273   // If we are saving a concatination of two XMM registers, perform two stores.
14274   // This is better in Sandy Bridge cause one 256-bit mem op is done via two
14275   // 128-bit ones. If in the future the cost becomes only one memory access the
14276   // first version would be better.
14277   if (VT.getSizeInBits() == 256 &&
14278     StoredVal.getNode()->getOpcode() == ISD::CONCAT_VECTORS &&
14279     StoredVal.getNumOperands() == 2) {
14280
14281     SDValue Value0 = StoredVal.getOperand(0);
14282     SDValue Value1 = StoredVal.getOperand(1);
14283
14284     SDValue Stride = DAG.getConstant(16, TLI.getPointerTy());
14285     SDValue Ptr0 = St->getBasePtr();
14286     SDValue Ptr1 = DAG.getNode(ISD::ADD, dl, Ptr0.getValueType(), Ptr0, Stride);
14287
14288     SDValue Ch0 = DAG.getStore(St->getChain(), dl, Value0, Ptr0,
14289                                 St->getPointerInfo(), St->isVolatile(),
14290                                 St->isNonTemporal(), St->getAlignment());
14291     SDValue Ch1 = DAG.getStore(St->getChain(), dl, Value1, Ptr1,
14292                                 St->getPointerInfo(), St->isVolatile(),
14293                                 St->isNonTemporal(), St->getAlignment());
14294     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Ch0, Ch1);
14295   }
14296
14297   // Optimize trunc store (of multiple scalars) to shuffle and store.
14298   // First, pack all of the elements in one place. Next, store to memory
14299   // in fewer chunks.
14300   if (St->isTruncatingStore() && VT.isVector()) {
14301     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14302     unsigned NumElems = VT.getVectorNumElements();
14303     assert(StVT != VT && "Cannot truncate to the same type");
14304     unsigned FromSz = VT.getVectorElementType().getSizeInBits();
14305     unsigned ToSz = StVT.getVectorElementType().getSizeInBits();
14306
14307     // From, To sizes and ElemCount must be pow of two
14308     if (!isPowerOf2_32(NumElems * FromSz * ToSz)) return SDValue();
14309     // We are going to use the original vector elt for storing.
14310     // Accumulated smaller vector elements must be a multiple of the store size.
14311     if (0 != (NumElems * FromSz) % ToSz) return SDValue();
14312
14313     unsigned SizeRatio  = FromSz / ToSz;
14314
14315     assert(SizeRatio * NumElems * ToSz == VT.getSizeInBits());
14316
14317     // Create a type on which we perform the shuffle
14318     EVT WideVecVT = EVT::getVectorVT(*DAG.getContext(),
14319             StVT.getScalarType(), NumElems*SizeRatio);
14320
14321     assert(WideVecVT.getSizeInBits() == VT.getSizeInBits());
14322
14323     SDValue WideVec = DAG.getNode(ISD::BITCAST, dl, WideVecVT, St->getValue());
14324     SmallVector<int, 8> ShuffleVec(NumElems * SizeRatio, -1);
14325     for (unsigned i = 0; i < NumElems; i++ ) ShuffleVec[i] = i * SizeRatio;
14326
14327     // Can't shuffle using an illegal type
14328     if (!TLI.isTypeLegal(WideVecVT)) return SDValue();
14329
14330     SDValue Shuff = DAG.getVectorShuffle(WideVecVT, dl, WideVec,
14331                                 DAG.getUNDEF(WideVec.getValueType()),
14332                                 ShuffleVec.data());
14333     // At this point all of the data is stored at the bottom of the
14334     // register. We now need to save it to mem.
14335
14336     // Find the largest store unit
14337     MVT StoreType = MVT::i8;
14338     for (unsigned tp = MVT::FIRST_INTEGER_VALUETYPE;
14339          tp < MVT::LAST_INTEGER_VALUETYPE; ++tp) {
14340       MVT Tp = (MVT::SimpleValueType)tp;
14341       if (TLI.isTypeLegal(Tp) && StoreType.getSizeInBits() < NumElems * ToSz)
14342         StoreType = Tp;
14343     }
14344
14345     // Bitcast the original vector into a vector of store-size units
14346     EVT StoreVecVT = EVT::getVectorVT(*DAG.getContext(),
14347             StoreType, VT.getSizeInBits()/EVT(StoreType).getSizeInBits());
14348     assert(StoreVecVT.getSizeInBits() == VT.getSizeInBits());
14349     SDValue ShuffWide = DAG.getNode(ISD::BITCAST, dl, StoreVecVT, Shuff);
14350     SmallVector<SDValue, 8> Chains;
14351     SDValue Increment = DAG.getConstant(StoreType.getSizeInBits()/8,
14352                                         TLI.getPointerTy());
14353     SDValue Ptr = St->getBasePtr();
14354
14355     // Perform one or more big stores into memory.
14356     for (unsigned i = 0; i < (ToSz*NumElems)/StoreType.getSizeInBits() ; i++) {
14357       SDValue SubVec = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
14358                                    StoreType, ShuffWide,
14359                                    DAG.getIntPtrConstant(i));
14360       SDValue Ch = DAG.getStore(St->getChain(), dl, SubVec, Ptr,
14361                                 St->getPointerInfo(), St->isVolatile(),
14362                                 St->isNonTemporal(), St->getAlignment());
14363       Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
14364       Chains.push_back(Ch);
14365     }
14366
14367     return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Chains[0],
14368                                Chains.size());
14369   }
14370
14371
14372   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
14373   // the FP state in cases where an emms may be missing.
14374   // A preferable solution to the general problem is to figure out the right
14375   // places to insert EMMS.  This qualifies as a quick hack.
14376
14377   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
14378   if (VT.getSizeInBits() != 64)
14379     return SDValue();
14380
14381   const Function *F = DAG.getMachineFunction().getFunction();
14382   bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
14383   bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
14384                      && Subtarget->hasXMMInt();
14385   if ((VT.isVector() ||
14386        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
14387       isa<LoadSDNode>(St->getValue()) &&
14388       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
14389       St->getChain().hasOneUse() && !St->isVolatile()) {
14390     SDNode* LdVal = St->getValue().getNode();
14391     LoadSDNode *Ld = 0;
14392     int TokenFactorIndex = -1;
14393     SmallVector<SDValue, 8> Ops;
14394     SDNode* ChainVal = St->getChain().getNode();
14395     // Must be a store of a load.  We currently handle two cases:  the load
14396     // is a direct child, and it's under an intervening TokenFactor.  It is
14397     // possible to dig deeper under nested TokenFactors.
14398     if (ChainVal == LdVal)
14399       Ld = cast<LoadSDNode>(St->getChain());
14400     else if (St->getValue().hasOneUse() &&
14401              ChainVal->getOpcode() == ISD::TokenFactor) {
14402       for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
14403         if (ChainVal->getOperand(i).getNode() == LdVal) {
14404           TokenFactorIndex = i;
14405           Ld = cast<LoadSDNode>(St->getValue());
14406         } else
14407           Ops.push_back(ChainVal->getOperand(i));
14408       }
14409     }
14410
14411     if (!Ld || !ISD::isNormalLoad(Ld))
14412       return SDValue();
14413
14414     // If this is not the MMX case, i.e. we are just turning i64 load/store
14415     // into f64 load/store, avoid the transformation if there are multiple
14416     // uses of the loaded value.
14417     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
14418       return SDValue();
14419
14420     DebugLoc LdDL = Ld->getDebugLoc();
14421     DebugLoc StDL = N->getDebugLoc();
14422     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
14423     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
14424     // pair instead.
14425     if (Subtarget->is64Bit() || F64IsLegal) {
14426       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
14427       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
14428                                   Ld->getPointerInfo(), Ld->isVolatile(),
14429                                   Ld->isNonTemporal(), Ld->isInvariant(),
14430                                   Ld->getAlignment());
14431       SDValue NewChain = NewLd.getValue(1);
14432       if (TokenFactorIndex != -1) {
14433         Ops.push_back(NewChain);
14434         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
14435                                Ops.size());
14436       }
14437       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
14438                           St->getPointerInfo(),
14439                           St->isVolatile(), St->isNonTemporal(),
14440                           St->getAlignment());
14441     }
14442
14443     // Otherwise, lower to two pairs of 32-bit loads / stores.
14444     SDValue LoAddr = Ld->getBasePtr();
14445     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
14446                                  DAG.getConstant(4, MVT::i32));
14447
14448     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
14449                                Ld->getPointerInfo(),
14450                                Ld->isVolatile(), Ld->isNonTemporal(),
14451                                Ld->isInvariant(), Ld->getAlignment());
14452     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
14453                                Ld->getPointerInfo().getWithOffset(4),
14454                                Ld->isVolatile(), Ld->isNonTemporal(),
14455                                Ld->isInvariant(),
14456                                MinAlign(Ld->getAlignment(), 4));
14457
14458     SDValue NewChain = LoLd.getValue(1);
14459     if (TokenFactorIndex != -1) {
14460       Ops.push_back(LoLd);
14461       Ops.push_back(HiLd);
14462       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
14463                              Ops.size());
14464     }
14465
14466     LoAddr = St->getBasePtr();
14467     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
14468                          DAG.getConstant(4, MVT::i32));
14469
14470     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
14471                                 St->getPointerInfo(),
14472                                 St->isVolatile(), St->isNonTemporal(),
14473                                 St->getAlignment());
14474     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
14475                                 St->getPointerInfo().getWithOffset(4),
14476                                 St->isVolatile(),
14477                                 St->isNonTemporal(),
14478                                 MinAlign(St->getAlignment(), 4));
14479     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
14480   }
14481   return SDValue();
14482 }
14483
14484 /// isHorizontalBinOp - Return 'true' if this vector operation is "horizontal"
14485 /// and return the operands for the horizontal operation in LHS and RHS.  A
14486 /// horizontal operation performs the binary operation on successive elements
14487 /// of its first operand, then on successive elements of its second operand,
14488 /// returning the resulting values in a vector.  For example, if
14489 ///   A = < float a0, float a1, float a2, float a3 >
14490 /// and
14491 ///   B = < float b0, float b1, float b2, float b3 >
14492 /// then the result of doing a horizontal operation on A and B is
14493 ///   A horizontal-op B = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >.
14494 /// In short, LHS and RHS are inspected to see if LHS op RHS is of the form
14495 /// A horizontal-op B, for some already available A and B, and if so then LHS is
14496 /// set to A, RHS to B, and the routine returns 'true'.
14497 /// Note that the binary operation should have the property that if one of the
14498 /// operands is UNDEF then the result is UNDEF.
14499 static bool isHorizontalBinOp(SDValue &LHS, SDValue &RHS, bool isCommutative) {
14500   // Look for the following pattern: if
14501   //   A = < float a0, float a1, float a2, float a3 >
14502   //   B = < float b0, float b1, float b2, float b3 >
14503   // and
14504   //   LHS = VECTOR_SHUFFLE A, B, <0, 2, 4, 6>
14505   //   RHS = VECTOR_SHUFFLE A, B, <1, 3, 5, 7>
14506   // then LHS op RHS = < a0 op a1, a2 op a3, b0 op b1, b2 op b3 >
14507   // which is A horizontal-op B.
14508
14509   // At least one of the operands should be a vector shuffle.
14510   if (LHS.getOpcode() != ISD::VECTOR_SHUFFLE &&
14511       RHS.getOpcode() != ISD::VECTOR_SHUFFLE)
14512     return false;
14513
14514   EVT VT = LHS.getValueType();
14515   unsigned N = VT.getVectorNumElements();
14516
14517   // View LHS in the form
14518   //   LHS = VECTOR_SHUFFLE A, B, LMask
14519   // If LHS is not a shuffle then pretend it is the shuffle
14520   //   LHS = VECTOR_SHUFFLE LHS, undef, <0, 1, ..., N-1>
14521   // NOTE: in what follows a default initialized SDValue represents an UNDEF of
14522   // type VT.
14523   SDValue A, B;
14524   SmallVector<int, 8> LMask(N);
14525   if (LHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
14526     if (LHS.getOperand(0).getOpcode() != ISD::UNDEF)
14527       A = LHS.getOperand(0);
14528     if (LHS.getOperand(1).getOpcode() != ISD::UNDEF)
14529       B = LHS.getOperand(1);
14530     cast<ShuffleVectorSDNode>(LHS.getNode())->getMask(LMask);
14531   } else {
14532     if (LHS.getOpcode() != ISD::UNDEF)
14533       A = LHS;
14534     for (unsigned i = 0; i != N; ++i)
14535       LMask[i] = i;
14536   }
14537
14538   // Likewise, view RHS in the form
14539   //   RHS = VECTOR_SHUFFLE C, D, RMask
14540   SDValue C, D;
14541   SmallVector<int, 8> RMask(N);
14542   if (RHS.getOpcode() == ISD::VECTOR_SHUFFLE) {
14543     if (RHS.getOperand(0).getOpcode() != ISD::UNDEF)
14544       C = RHS.getOperand(0);
14545     if (RHS.getOperand(1).getOpcode() != ISD::UNDEF)
14546       D = RHS.getOperand(1);
14547     cast<ShuffleVectorSDNode>(RHS.getNode())->getMask(RMask);
14548   } else {
14549     if (RHS.getOpcode() != ISD::UNDEF)
14550       C = RHS;
14551     for (unsigned i = 0; i != N; ++i)
14552       RMask[i] = i;
14553   }
14554
14555   // Check that the shuffles are both shuffling the same vectors.
14556   if (!(A == C && B == D) && !(A == D && B == C))
14557     return false;
14558
14559   // If everything is UNDEF then bail out: it would be better to fold to UNDEF.
14560   if (!A.getNode() && !B.getNode())
14561     return false;
14562
14563   // If A and B occur in reverse order in RHS, then "swap" them (which means
14564   // rewriting the mask).
14565   if (A != C)
14566     for (unsigned i = 0; i != N; ++i) {
14567       unsigned Idx = RMask[i];
14568       if (Idx < N)
14569         RMask[i] += N;
14570       else if (Idx < 2*N)
14571         RMask[i] -= N;
14572     }
14573
14574   // At this point LHS and RHS are equivalent to
14575   //   LHS = VECTOR_SHUFFLE A, B, LMask
14576   //   RHS = VECTOR_SHUFFLE A, B, RMask
14577   // Check that the masks correspond to performing a horizontal operation.
14578   for (unsigned i = 0; i != N; ++i) {
14579     unsigned LIdx = LMask[i], RIdx = RMask[i];
14580
14581     // Ignore any UNDEF components.
14582     if (LIdx >= 2*N || RIdx >= 2*N || (!A.getNode() && (LIdx < N || RIdx < N))
14583         || (!B.getNode() && (LIdx >= N || RIdx >= N)))
14584       continue;
14585
14586     // Check that successive elements are being operated on.  If not, this is
14587     // not a horizontal operation.
14588     if (!(LIdx == 2*i && RIdx == 2*i + 1) &&
14589         !(isCommutative && LIdx == 2*i + 1 && RIdx == 2*i))
14590       return false;
14591   }
14592
14593   LHS = A.getNode() ? A : B; // If A is 'UNDEF', use B for it.
14594   RHS = B.getNode() ? B : A; // If B is 'UNDEF', use A for it.
14595   return true;
14596 }
14597
14598 /// PerformFADDCombine - Do target-specific dag combines on floating point adds.
14599 static SDValue PerformFADDCombine(SDNode *N, SelectionDAG &DAG,
14600                                   const X86Subtarget *Subtarget) {
14601   EVT VT = N->getValueType(0);
14602   SDValue LHS = N->getOperand(0);
14603   SDValue RHS = N->getOperand(1);
14604
14605   // Try to synthesize horizontal adds from adds of shuffles.
14606   if (Subtarget->hasSSE3orAVX() && (VT == MVT::v4f32 || VT == MVT::v2f64) &&
14607       isHorizontalBinOp(LHS, RHS, true))
14608     return DAG.getNode(X86ISD::FHADD, N->getDebugLoc(), VT, LHS, RHS);
14609   return SDValue();
14610 }
14611
14612 /// PerformFSUBCombine - Do target-specific dag combines on floating point subs.
14613 static SDValue PerformFSUBCombine(SDNode *N, SelectionDAG &DAG,
14614                                   const X86Subtarget *Subtarget) {
14615   EVT VT = N->getValueType(0);
14616   SDValue LHS = N->getOperand(0);
14617   SDValue RHS = N->getOperand(1);
14618
14619   // Try to synthesize horizontal subs from subs of shuffles.
14620   if (Subtarget->hasSSE3orAVX() && (VT == MVT::v4f32 || VT == MVT::v2f64) &&
14621       isHorizontalBinOp(LHS, RHS, false))
14622     return DAG.getNode(X86ISD::FHSUB, N->getDebugLoc(), VT, LHS, RHS);
14623   return SDValue();
14624 }
14625
14626 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
14627 /// X86ISD::FXOR nodes.
14628 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
14629   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
14630   // F[X]OR(0.0, x) -> x
14631   // F[X]OR(x, 0.0) -> x
14632   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
14633     if (C->getValueAPF().isPosZero())
14634       return N->getOperand(1);
14635   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
14636     if (C->getValueAPF().isPosZero())
14637       return N->getOperand(0);
14638   return SDValue();
14639 }
14640
14641 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
14642 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
14643   // FAND(0.0, x) -> 0.0
14644   // FAND(x, 0.0) -> 0.0
14645   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
14646     if (C->getValueAPF().isPosZero())
14647       return N->getOperand(0);
14648   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
14649     if (C->getValueAPF().isPosZero())
14650       return N->getOperand(1);
14651   return SDValue();
14652 }
14653
14654 static SDValue PerformBTCombine(SDNode *N,
14655                                 SelectionDAG &DAG,
14656                                 TargetLowering::DAGCombinerInfo &DCI) {
14657   // BT ignores high bits in the bit index operand.
14658   SDValue Op1 = N->getOperand(1);
14659   if (Op1.hasOneUse()) {
14660     unsigned BitWidth = Op1.getValueSizeInBits();
14661     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
14662     APInt KnownZero, KnownOne;
14663     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
14664                                           !DCI.isBeforeLegalizeOps());
14665     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
14666     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
14667         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
14668       DCI.CommitTargetLoweringOpt(TLO);
14669   }
14670   return SDValue();
14671 }
14672
14673 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
14674   SDValue Op = N->getOperand(0);
14675   if (Op.getOpcode() == ISD::BITCAST)
14676     Op = Op.getOperand(0);
14677   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
14678   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
14679       VT.getVectorElementType().getSizeInBits() ==
14680       OpVT.getVectorElementType().getSizeInBits()) {
14681     return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
14682   }
14683   return SDValue();
14684 }
14685
14686 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
14687   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
14688   //           (and (i32 x86isd::setcc_carry), 1)
14689   // This eliminates the zext. This transformation is necessary because
14690   // ISD::SETCC is always legalized to i8.
14691   DebugLoc dl = N->getDebugLoc();
14692   SDValue N0 = N->getOperand(0);
14693   EVT VT = N->getValueType(0);
14694   if (N0.getOpcode() == ISD::AND &&
14695       N0.hasOneUse() &&
14696       N0.getOperand(0).hasOneUse()) {
14697     SDValue N00 = N0.getOperand(0);
14698     if (N00.getOpcode() != X86ISD::SETCC_CARRY)
14699       return SDValue();
14700     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
14701     if (!C || C->getZExtValue() != 1)
14702       return SDValue();
14703     return DAG.getNode(ISD::AND, dl, VT,
14704                        DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
14705                                    N00.getOperand(0), N00.getOperand(1)),
14706                        DAG.getConstant(1, VT));
14707   }
14708
14709   return SDValue();
14710 }
14711
14712 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
14713 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
14714   unsigned X86CC = N->getConstantOperandVal(0);
14715   SDValue EFLAG = N->getOperand(1);
14716   DebugLoc DL = N->getDebugLoc();
14717
14718   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
14719   // a zext and produces an all-ones bit which is more useful than 0/1 in some
14720   // cases.
14721   if (X86CC == X86::COND_B)
14722     return DAG.getNode(ISD::AND, DL, MVT::i8,
14723                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
14724                                    DAG.getConstant(X86CC, MVT::i8), EFLAG),
14725                        DAG.getConstant(1, MVT::i8));
14726
14727   return SDValue();
14728 }
14729
14730 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
14731                                         const X86TargetLowering *XTLI) {
14732   SDValue Op0 = N->getOperand(0);
14733   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
14734   // a 32-bit target where SSE doesn't support i64->FP operations.
14735   if (Op0.getOpcode() == ISD::LOAD) {
14736     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
14737     EVT VT = Ld->getValueType(0);
14738     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
14739         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
14740         !XTLI->getSubtarget()->is64Bit() &&
14741         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
14742       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
14743                                           Ld->getChain(), Op0, DAG);
14744       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
14745       return FILDChain;
14746     }
14747   }
14748   return SDValue();
14749 }
14750
14751 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
14752 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
14753                                  X86TargetLowering::DAGCombinerInfo &DCI) {
14754   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
14755   // the result is either zero or one (depending on the input carry bit).
14756   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
14757   if (X86::isZeroNode(N->getOperand(0)) &&
14758       X86::isZeroNode(N->getOperand(1)) &&
14759       // We don't have a good way to replace an EFLAGS use, so only do this when
14760       // dead right now.
14761       SDValue(N, 1).use_empty()) {
14762     DebugLoc DL = N->getDebugLoc();
14763     EVT VT = N->getValueType(0);
14764     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
14765     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
14766                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
14767                                            DAG.getConstant(X86::COND_B,MVT::i8),
14768                                            N->getOperand(2)),
14769                                DAG.getConstant(1, VT));
14770     return DCI.CombineTo(N, Res1, CarryOut);
14771   }
14772
14773   return SDValue();
14774 }
14775
14776 // fold (add Y, (sete  X, 0)) -> adc  0, Y
14777 //      (add Y, (setne X, 0)) -> sbb -1, Y
14778 //      (sub (sete  X, 0), Y) -> sbb  0, Y
14779 //      (sub (setne X, 0), Y) -> adc -1, Y
14780 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
14781   DebugLoc DL = N->getDebugLoc();
14782
14783   // Look through ZExts.
14784   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
14785   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
14786     return SDValue();
14787
14788   SDValue SetCC = Ext.getOperand(0);
14789   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
14790     return SDValue();
14791
14792   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
14793   if (CC != X86::COND_E && CC != X86::COND_NE)
14794     return SDValue();
14795
14796   SDValue Cmp = SetCC.getOperand(1);
14797   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
14798       !X86::isZeroNode(Cmp.getOperand(1)) ||
14799       !Cmp.getOperand(0).getValueType().isInteger())
14800     return SDValue();
14801
14802   SDValue CmpOp0 = Cmp.getOperand(0);
14803   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
14804                                DAG.getConstant(1, CmpOp0.getValueType()));
14805
14806   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
14807   if (CC == X86::COND_NE)
14808     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
14809                        DL, OtherVal.getValueType(), OtherVal,
14810                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
14811   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
14812                      DL, OtherVal.getValueType(), OtherVal,
14813                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
14814 }
14815
14816 /// PerformADDCombine - Do target-specific dag combines on integer adds.
14817 static SDValue PerformAddCombine(SDNode *N, SelectionDAG &DAG,
14818                                  const X86Subtarget *Subtarget) {
14819   EVT VT = N->getValueType(0);
14820   SDValue Op0 = N->getOperand(0);
14821   SDValue Op1 = N->getOperand(1);
14822
14823   // Try to synthesize horizontal adds from adds of shuffles.
14824   if ((Subtarget->hasSSSE3orAVX()) && (VT == MVT::v8i16 || VT == MVT::v4i32) &&
14825       isHorizontalBinOp(Op0, Op1, true))
14826     return DAG.getNode(X86ISD::HADD, N->getDebugLoc(), VT, Op0, Op1);
14827
14828   return OptimizeConditionalInDecrement(N, DAG);
14829 }
14830
14831 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG,
14832                                  const X86Subtarget *Subtarget) {
14833   SDValue Op0 = N->getOperand(0);
14834   SDValue Op1 = N->getOperand(1);
14835
14836   // X86 can't encode an immediate LHS of a sub. See if we can push the
14837   // negation into a preceding instruction.
14838   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
14839     // If the RHS of the sub is a XOR with one use and a constant, invert the
14840     // immediate. Then add one to the LHS of the sub so we can turn
14841     // X-Y -> X+~Y+1, saving one register.
14842     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
14843         isa<ConstantSDNode>(Op1.getOperand(1))) {
14844       APInt XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getAPIntValue();
14845       EVT VT = Op0.getValueType();
14846       SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
14847                                    Op1.getOperand(0),
14848                                    DAG.getConstant(~XorC, VT));
14849       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
14850                          DAG.getConstant(C->getAPIntValue()+1, VT));
14851     }
14852   }
14853
14854   // Try to synthesize horizontal adds from adds of shuffles.
14855   EVT VT = N->getValueType(0);
14856   if ((Subtarget->hasSSSE3orAVX()) && (VT == MVT::v8i16 || VT == MVT::v4i32) &&
14857       isHorizontalBinOp(Op0, Op1, false))
14858     return DAG.getNode(X86ISD::HSUB, N->getDebugLoc(), VT, Op0, Op1);
14859
14860   return OptimizeConditionalInDecrement(N, DAG);
14861 }
14862
14863 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
14864                                              DAGCombinerInfo &DCI) const {
14865   SelectionDAG &DAG = DCI.DAG;
14866   switch (N->getOpcode()) {
14867   default: break;
14868   case ISD::EXTRACT_VECTOR_ELT:
14869     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
14870   case ISD::VSELECT:
14871   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, Subtarget);
14872   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI);
14873   case ISD::ADD:            return PerformAddCombine(N, DAG, Subtarget);
14874   case ISD::SUB:            return PerformSubCombine(N, DAG, Subtarget);
14875   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
14876   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
14877   case ISD::SHL:
14878   case ISD::SRA:
14879   case ISD::SRL:            return PerformShiftCombine(N, DAG, Subtarget);
14880   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
14881   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
14882   case ISD::XOR:            return PerformXorCombine(N, DAG, DCI, Subtarget);
14883   case ISD::LOAD:           return PerformLOADCombine(N, DAG, Subtarget);
14884   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
14885   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
14886   case ISD::FADD:           return PerformFADDCombine(N, DAG, Subtarget);
14887   case ISD::FSUB:           return PerformFSUBCombine(N, DAG, Subtarget);
14888   case X86ISD::FXOR:
14889   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
14890   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
14891   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
14892   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
14893   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG);
14894   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG);
14895   case X86ISD::SHUFPS:      // Handle all target specific shuffles
14896   case X86ISD::SHUFPD:
14897   case X86ISD::PALIGN:
14898   case X86ISD::PUNPCKHBW:
14899   case X86ISD::PUNPCKHWD:
14900   case X86ISD::PUNPCKHDQ:
14901   case X86ISD::PUNPCKHQDQ:
14902   case X86ISD::VPUNPCKHBWY:
14903   case X86ISD::VPUNPCKHWDY:
14904   case X86ISD::VPUNPCKHDQY:
14905   case X86ISD::VPUNPCKHQDQY:
14906   case X86ISD::UNPCKHPS:
14907   case X86ISD::UNPCKHPD:
14908   case X86ISD::VUNPCKHPSY:
14909   case X86ISD::VUNPCKHPDY:
14910   case X86ISD::PUNPCKLBW:
14911   case X86ISD::PUNPCKLWD:
14912   case X86ISD::PUNPCKLDQ:
14913   case X86ISD::PUNPCKLQDQ:
14914   case X86ISD::VPUNPCKLBWY:
14915   case X86ISD::VPUNPCKLWDY:
14916   case X86ISD::VPUNPCKLDQY:
14917   case X86ISD::VPUNPCKLQDQY:
14918   case X86ISD::UNPCKLPS:
14919   case X86ISD::UNPCKLPD:
14920   case X86ISD::VUNPCKLPSY:
14921   case X86ISD::VUNPCKLPDY:
14922   case X86ISD::MOVHLPS:
14923   case X86ISD::MOVLHPS:
14924   case X86ISD::PSHUFD:
14925   case X86ISD::PSHUFHW:
14926   case X86ISD::PSHUFLW:
14927   case X86ISD::MOVSS:
14928   case X86ISD::MOVSD:
14929   case X86ISD::VPERMILPS:
14930   case X86ISD::VPERMILPSY:
14931   case X86ISD::VPERMILPD:
14932   case X86ISD::VPERMILPDY:
14933   case X86ISD::VPERM2F128:
14934   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI,Subtarget);
14935   }
14936
14937   return SDValue();
14938 }
14939
14940 /// isTypeDesirableForOp - Return true if the target has native support for
14941 /// the specified value type and it is 'desirable' to use the type for the
14942 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
14943 /// instruction encodings are longer and some i16 instructions are slow.
14944 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
14945   if (!isTypeLegal(VT))
14946     return false;
14947   if (VT != MVT::i16)
14948     return true;
14949
14950   switch (Opc) {
14951   default:
14952     return true;
14953   case ISD::LOAD:
14954   case ISD::SIGN_EXTEND:
14955   case ISD::ZERO_EXTEND:
14956   case ISD::ANY_EXTEND:
14957   case ISD::SHL:
14958   case ISD::SRL:
14959   case ISD::SUB:
14960   case ISD::ADD:
14961   case ISD::MUL:
14962   case ISD::AND:
14963   case ISD::OR:
14964   case ISD::XOR:
14965     return false;
14966   }
14967 }
14968
14969 /// IsDesirableToPromoteOp - This method query the target whether it is
14970 /// beneficial for dag combiner to promote the specified node. If true, it
14971 /// should return the desired promotion type by reference.
14972 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
14973   EVT VT = Op.getValueType();
14974   if (VT != MVT::i16)
14975     return false;
14976
14977   bool Promote = false;
14978   bool Commute = false;
14979   switch (Op.getOpcode()) {
14980   default: break;
14981   case ISD::LOAD: {
14982     LoadSDNode *LD = cast<LoadSDNode>(Op);
14983     // If the non-extending load has a single use and it's not live out, then it
14984     // might be folded.
14985     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
14986                                                      Op.hasOneUse()*/) {
14987       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
14988              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
14989         // The only case where we'd want to promote LOAD (rather then it being
14990         // promoted as an operand is when it's only use is liveout.
14991         if (UI->getOpcode() != ISD::CopyToReg)
14992           return false;
14993       }
14994     }
14995     Promote = true;
14996     break;
14997   }
14998   case ISD::SIGN_EXTEND:
14999   case ISD::ZERO_EXTEND:
15000   case ISD::ANY_EXTEND:
15001     Promote = true;
15002     break;
15003   case ISD::SHL:
15004   case ISD::SRL: {
15005     SDValue N0 = Op.getOperand(0);
15006     // Look out for (store (shl (load), x)).
15007     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
15008       return false;
15009     Promote = true;
15010     break;
15011   }
15012   case ISD::ADD:
15013   case ISD::MUL:
15014   case ISD::AND:
15015   case ISD::OR:
15016   case ISD::XOR:
15017     Commute = true;
15018     // fallthrough
15019   case ISD::SUB: {
15020     SDValue N0 = Op.getOperand(0);
15021     SDValue N1 = Op.getOperand(1);
15022     if (!Commute && MayFoldLoad(N1))
15023       return false;
15024     // Avoid disabling potential load folding opportunities.
15025     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
15026       return false;
15027     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
15028       return false;
15029     Promote = true;
15030   }
15031   }
15032
15033   PVT = MVT::i32;
15034   return Promote;
15035 }
15036
15037 //===----------------------------------------------------------------------===//
15038 //                           X86 Inline Assembly Support
15039 //===----------------------------------------------------------------------===//
15040
15041 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
15042   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
15043
15044   std::string AsmStr = IA->getAsmString();
15045
15046   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
15047   SmallVector<StringRef, 4> AsmPieces;
15048   SplitString(AsmStr, AsmPieces, ";\n");
15049
15050   switch (AsmPieces.size()) {
15051   default: return false;
15052   case 1:
15053     AsmStr = AsmPieces[0];
15054     AsmPieces.clear();
15055     SplitString(AsmStr, AsmPieces, " \t");  // Split with whitespace.
15056
15057     // FIXME: this should verify that we are targeting a 486 or better.  If not,
15058     // we will turn this bswap into something that will be lowered to logical ops
15059     // instead of emitting the bswap asm.  For now, we don't support 486 or lower
15060     // so don't worry about this.
15061     // bswap $0
15062     if (AsmPieces.size() == 2 &&
15063         (AsmPieces[0] == "bswap" ||
15064          AsmPieces[0] == "bswapq" ||
15065          AsmPieces[0] == "bswapl") &&
15066         (AsmPieces[1] == "$0" ||
15067          AsmPieces[1] == "${0:q}")) {
15068       // No need to check constraints, nothing other than the equivalent of
15069       // "=r,0" would be valid here.
15070       IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
15071       if (!Ty || Ty->getBitWidth() % 16 != 0)
15072         return false;
15073       return IntrinsicLowering::LowerToByteSwap(CI);
15074     }
15075     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
15076     if (CI->getType()->isIntegerTy(16) &&
15077         AsmPieces.size() == 3 &&
15078         (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
15079         AsmPieces[1] == "$$8," &&
15080         AsmPieces[2] == "${0:w}" &&
15081         IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
15082       AsmPieces.clear();
15083       const std::string &ConstraintsStr = IA->getConstraintString();
15084       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
15085       std::sort(AsmPieces.begin(), AsmPieces.end());
15086       if (AsmPieces.size() == 4 &&
15087           AsmPieces[0] == "~{cc}" &&
15088           AsmPieces[1] == "~{dirflag}" &&
15089           AsmPieces[2] == "~{flags}" &&
15090           AsmPieces[3] == "~{fpsr}") {
15091         IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
15092         if (!Ty || Ty->getBitWidth() % 16 != 0)
15093           return false;
15094         return IntrinsicLowering::LowerToByteSwap(CI);
15095       }
15096     }
15097     break;
15098   case 3:
15099     if (CI->getType()->isIntegerTy(32) &&
15100         IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
15101       SmallVector<StringRef, 4> Words;
15102       SplitString(AsmPieces[0], Words, " \t,");
15103       if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
15104           Words[2] == "${0:w}") {
15105         Words.clear();
15106         SplitString(AsmPieces[1], Words, " \t,");
15107         if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
15108             Words[2] == "$0") {
15109           Words.clear();
15110           SplitString(AsmPieces[2], Words, " \t,");
15111           if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
15112               Words[2] == "${0:w}") {
15113             AsmPieces.clear();
15114             const std::string &ConstraintsStr = IA->getConstraintString();
15115             SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
15116             std::sort(AsmPieces.begin(), AsmPieces.end());
15117             if (AsmPieces.size() == 4 &&
15118                 AsmPieces[0] == "~{cc}" &&
15119                 AsmPieces[1] == "~{dirflag}" &&
15120                 AsmPieces[2] == "~{flags}" &&
15121                 AsmPieces[3] == "~{fpsr}") {
15122               IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
15123               if (!Ty || Ty->getBitWidth() % 16 != 0)
15124                 return false;
15125               return IntrinsicLowering::LowerToByteSwap(CI);
15126             }
15127           }
15128         }
15129       }
15130     }
15131
15132     if (CI->getType()->isIntegerTy(64)) {
15133       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
15134       if (Constraints.size() >= 2 &&
15135           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
15136           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
15137         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
15138         SmallVector<StringRef, 4> Words;
15139         SplitString(AsmPieces[0], Words, " \t");
15140         if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
15141           Words.clear();
15142           SplitString(AsmPieces[1], Words, " \t");
15143           if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
15144             Words.clear();
15145             SplitString(AsmPieces[2], Words, " \t,");
15146             if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
15147                 Words[2] == "%edx") {
15148               IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
15149               if (!Ty || Ty->getBitWidth() % 16 != 0)
15150                 return false;
15151               return IntrinsicLowering::LowerToByteSwap(CI);
15152             }
15153           }
15154         }
15155       }
15156     }
15157     break;
15158   }
15159   return false;
15160 }
15161
15162
15163
15164 /// getConstraintType - Given a constraint letter, return the type of
15165 /// constraint it is for this target.
15166 X86TargetLowering::ConstraintType
15167 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
15168   if (Constraint.size() == 1) {
15169     switch (Constraint[0]) {
15170     case 'R':
15171     case 'q':
15172     case 'Q':
15173     case 'f':
15174     case 't':
15175     case 'u':
15176     case 'y':
15177     case 'x':
15178     case 'Y':
15179     case 'l':
15180       return C_RegisterClass;
15181     case 'a':
15182     case 'b':
15183     case 'c':
15184     case 'd':
15185     case 'S':
15186     case 'D':
15187     case 'A':
15188       return C_Register;
15189     case 'I':
15190     case 'J':
15191     case 'K':
15192     case 'L':
15193     case 'M':
15194     case 'N':
15195     case 'G':
15196     case 'C':
15197     case 'e':
15198     case 'Z':
15199       return C_Other;
15200     default:
15201       break;
15202     }
15203   }
15204   return TargetLowering::getConstraintType(Constraint);
15205 }
15206
15207 /// Examine constraint type and operand type and determine a weight value.
15208 /// This object must already have been set up with the operand type
15209 /// and the current alternative constraint selected.
15210 TargetLowering::ConstraintWeight
15211   X86TargetLowering::getSingleConstraintMatchWeight(
15212     AsmOperandInfo &info, const char *constraint) const {
15213   ConstraintWeight weight = CW_Invalid;
15214   Value *CallOperandVal = info.CallOperandVal;
15215     // If we don't have a value, we can't do a match,
15216     // but allow it at the lowest weight.
15217   if (CallOperandVal == NULL)
15218     return CW_Default;
15219   Type *type = CallOperandVal->getType();
15220   // Look at the constraint type.
15221   switch (*constraint) {
15222   default:
15223     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
15224   case 'R':
15225   case 'q':
15226   case 'Q':
15227   case 'a':
15228   case 'b':
15229   case 'c':
15230   case 'd':
15231   case 'S':
15232   case 'D':
15233   case 'A':
15234     if (CallOperandVal->getType()->isIntegerTy())
15235       weight = CW_SpecificReg;
15236     break;
15237   case 'f':
15238   case 't':
15239   case 'u':
15240       if (type->isFloatingPointTy())
15241         weight = CW_SpecificReg;
15242       break;
15243   case 'y':
15244       if (type->isX86_MMXTy() && Subtarget->hasMMX())
15245         weight = CW_SpecificReg;
15246       break;
15247   case 'x':
15248   case 'Y':
15249     if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
15250       weight = CW_Register;
15251     break;
15252   case 'I':
15253     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
15254       if (C->getZExtValue() <= 31)
15255         weight = CW_Constant;
15256     }
15257     break;
15258   case 'J':
15259     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15260       if (C->getZExtValue() <= 63)
15261         weight = CW_Constant;
15262     }
15263     break;
15264   case 'K':
15265     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15266       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
15267         weight = CW_Constant;
15268     }
15269     break;
15270   case 'L':
15271     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15272       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
15273         weight = CW_Constant;
15274     }
15275     break;
15276   case 'M':
15277     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15278       if (C->getZExtValue() <= 3)
15279         weight = CW_Constant;
15280     }
15281     break;
15282   case 'N':
15283     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15284       if (C->getZExtValue() <= 0xff)
15285         weight = CW_Constant;
15286     }
15287     break;
15288   case 'G':
15289   case 'C':
15290     if (dyn_cast<ConstantFP>(CallOperandVal)) {
15291       weight = CW_Constant;
15292     }
15293     break;
15294   case 'e':
15295     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15296       if ((C->getSExtValue() >= -0x80000000LL) &&
15297           (C->getSExtValue() <= 0x7fffffffLL))
15298         weight = CW_Constant;
15299     }
15300     break;
15301   case 'Z':
15302     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
15303       if (C->getZExtValue() <= 0xffffffff)
15304         weight = CW_Constant;
15305     }
15306     break;
15307   }
15308   return weight;
15309 }
15310
15311 /// LowerXConstraint - try to replace an X constraint, which matches anything,
15312 /// with another that has more specific requirements based on the type of the
15313 /// corresponding operand.
15314 const char *X86TargetLowering::
15315 LowerXConstraint(EVT ConstraintVT) const {
15316   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
15317   // 'f' like normal targets.
15318   if (ConstraintVT.isFloatingPoint()) {
15319     if (Subtarget->hasXMMInt())
15320       return "Y";
15321     if (Subtarget->hasXMM())
15322       return "x";
15323   }
15324
15325   return TargetLowering::LowerXConstraint(ConstraintVT);
15326 }
15327
15328 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
15329 /// vector.  If it is invalid, don't add anything to Ops.
15330 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
15331                                                      std::string &Constraint,
15332                                                      std::vector<SDValue>&Ops,
15333                                                      SelectionDAG &DAG) const {
15334   SDValue Result(0, 0);
15335
15336   // Only support length 1 constraints for now.
15337   if (Constraint.length() > 1) return;
15338
15339   char ConstraintLetter = Constraint[0];
15340   switch (ConstraintLetter) {
15341   default: break;
15342   case 'I':
15343     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15344       if (C->getZExtValue() <= 31) {
15345         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15346         break;
15347       }
15348     }
15349     return;
15350   case 'J':
15351     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15352       if (C->getZExtValue() <= 63) {
15353         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15354         break;
15355       }
15356     }
15357     return;
15358   case 'K':
15359     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15360       if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
15361         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15362         break;
15363       }
15364     }
15365     return;
15366   case 'N':
15367     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15368       if (C->getZExtValue() <= 255) {
15369         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15370         break;
15371       }
15372     }
15373     return;
15374   case 'e': {
15375     // 32-bit signed value
15376     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15377       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
15378                                            C->getSExtValue())) {
15379         // Widen to 64 bits here to get it sign extended.
15380         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
15381         break;
15382       }
15383     // FIXME gcc accepts some relocatable values here too, but only in certain
15384     // memory models; it's complicated.
15385     }
15386     return;
15387   }
15388   case 'Z': {
15389     // 32-bit unsigned value
15390     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
15391       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
15392                                            C->getZExtValue())) {
15393         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
15394         break;
15395       }
15396     }
15397     // FIXME gcc accepts some relocatable values here too, but only in certain
15398     // memory models; it's complicated.
15399     return;
15400   }
15401   case 'i': {
15402     // Literal immediates are always ok.
15403     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
15404       // Widen to 64 bits here to get it sign extended.
15405       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
15406       break;
15407     }
15408
15409     // In any sort of PIC mode addresses need to be computed at runtime by
15410     // adding in a register or some sort of table lookup.  These can't
15411     // be used as immediates.
15412     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
15413       return;
15414
15415     // If we are in non-pic codegen mode, we allow the address of a global (with
15416     // an optional displacement) to be used with 'i'.
15417     GlobalAddressSDNode *GA = 0;
15418     int64_t Offset = 0;
15419
15420     // Match either (GA), (GA+C), (GA+C1+C2), etc.
15421     while (1) {
15422       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
15423         Offset += GA->getOffset();
15424         break;
15425       } else if (Op.getOpcode() == ISD::ADD) {
15426         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
15427           Offset += C->getZExtValue();
15428           Op = Op.getOperand(0);
15429           continue;
15430         }
15431       } else if (Op.getOpcode() == ISD::SUB) {
15432         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
15433           Offset += -C->getZExtValue();
15434           Op = Op.getOperand(0);
15435           continue;
15436         }
15437       }
15438
15439       // Otherwise, this isn't something we can handle, reject it.
15440       return;
15441     }
15442
15443     const GlobalValue *GV = GA->getGlobal();
15444     // If we require an extra load to get this address, as in PIC mode, we
15445     // can't accept it.
15446     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
15447                                                         getTargetMachine())))
15448       return;
15449
15450     Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
15451                                         GA->getValueType(0), Offset);
15452     break;
15453   }
15454   }
15455
15456   if (Result.getNode()) {
15457     Ops.push_back(Result);
15458     return;
15459   }
15460   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
15461 }
15462
15463 std::pair<unsigned, const TargetRegisterClass*>
15464 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
15465                                                 EVT VT) const {
15466   // First, see if this is a constraint that directly corresponds to an LLVM
15467   // register class.
15468   if (Constraint.size() == 1) {
15469     // GCC Constraint Letters
15470     switch (Constraint[0]) {
15471     default: break;
15472       // TODO: Slight differences here in allocation order and leaving
15473       // RIP in the class. Do they matter any more here than they do
15474       // in the normal allocation?
15475     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
15476       if (Subtarget->is64Bit()) {
15477         if (VT == MVT::i32 || VT == MVT::f32)
15478           return std::make_pair(0U, X86::GR32RegisterClass);
15479         else if (VT == MVT::i16)
15480           return std::make_pair(0U, X86::GR16RegisterClass);
15481         else if (VT == MVT::i8 || VT == MVT::i1)
15482           return std::make_pair(0U, X86::GR8RegisterClass);
15483         else if (VT == MVT::i64 || VT == MVT::f64)
15484           return std::make_pair(0U, X86::GR64RegisterClass);
15485         break;
15486       }
15487       // 32-bit fallthrough
15488     case 'Q':   // Q_REGS
15489       if (VT == MVT::i32 || VT == MVT::f32)
15490         return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
15491       else if (VT == MVT::i16)
15492         return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
15493       else if (VT == MVT::i8 || VT == MVT::i1)
15494         return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
15495       else if (VT == MVT::i64)
15496         return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
15497       break;
15498     case 'r':   // GENERAL_REGS
15499     case 'l':   // INDEX_REGS
15500       if (VT == MVT::i8 || VT == MVT::i1)
15501         return std::make_pair(0U, X86::GR8RegisterClass);
15502       if (VT == MVT::i16)
15503         return std::make_pair(0U, X86::GR16RegisterClass);
15504       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
15505         return std::make_pair(0U, X86::GR32RegisterClass);
15506       return std::make_pair(0U, X86::GR64RegisterClass);
15507     case 'R':   // LEGACY_REGS
15508       if (VT == MVT::i8 || VT == MVT::i1)
15509         return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
15510       if (VT == MVT::i16)
15511         return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
15512       if (VT == MVT::i32 || !Subtarget->is64Bit())
15513         return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
15514       return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
15515     case 'f':  // FP Stack registers.
15516       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
15517       // value to the correct fpstack register class.
15518       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
15519         return std::make_pair(0U, X86::RFP32RegisterClass);
15520       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
15521         return std::make_pair(0U, X86::RFP64RegisterClass);
15522       return std::make_pair(0U, X86::RFP80RegisterClass);
15523     case 'y':   // MMX_REGS if MMX allowed.
15524       if (!Subtarget->hasMMX()) break;
15525       return std::make_pair(0U, X86::VR64RegisterClass);
15526     case 'Y':   // SSE_REGS if SSE2 allowed
15527       if (!Subtarget->hasXMMInt()) break;
15528       // FALL THROUGH.
15529     case 'x':   // SSE_REGS if SSE1 allowed
15530       if (!Subtarget->hasXMM()) break;
15531
15532       switch (VT.getSimpleVT().SimpleTy) {
15533       default: break;
15534       // Scalar SSE types.
15535       case MVT::f32:
15536       case MVT::i32:
15537         return std::make_pair(0U, X86::FR32RegisterClass);
15538       case MVT::f64:
15539       case MVT::i64:
15540         return std::make_pair(0U, X86::FR64RegisterClass);
15541       // Vector types.
15542       case MVT::v16i8:
15543       case MVT::v8i16:
15544       case MVT::v4i32:
15545       case MVT::v2i64:
15546       case MVT::v4f32:
15547       case MVT::v2f64:
15548         return std::make_pair(0U, X86::VR128RegisterClass);
15549       }
15550       break;
15551     }
15552   }
15553
15554   // Use the default implementation in TargetLowering to convert the register
15555   // constraint into a member of a register class.
15556   std::pair<unsigned, const TargetRegisterClass*> Res;
15557   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
15558
15559   // Not found as a standard register?
15560   if (Res.second == 0) {
15561     // Map st(0) -> st(7) -> ST0
15562     if (Constraint.size() == 7 && Constraint[0] == '{' &&
15563         tolower(Constraint[1]) == 's' &&
15564         tolower(Constraint[2]) == 't' &&
15565         Constraint[3] == '(' &&
15566         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
15567         Constraint[5] == ')' &&
15568         Constraint[6] == '}') {
15569
15570       Res.first = X86::ST0+Constraint[4]-'0';
15571       Res.second = X86::RFP80RegisterClass;
15572       return Res;
15573     }
15574
15575     // GCC allows "st(0)" to be called just plain "st".
15576     if (StringRef("{st}").equals_lower(Constraint)) {
15577       Res.first = X86::ST0;
15578       Res.second = X86::RFP80RegisterClass;
15579       return Res;
15580     }
15581
15582     // flags -> EFLAGS
15583     if (StringRef("{flags}").equals_lower(Constraint)) {
15584       Res.first = X86::EFLAGS;
15585       Res.second = X86::CCRRegisterClass;
15586       return Res;
15587     }
15588
15589     // 'A' means EAX + EDX.
15590     if (Constraint == "A") {
15591       Res.first = X86::EAX;
15592       Res.second = X86::GR32_ADRegisterClass;
15593       return Res;
15594     }
15595     return Res;
15596   }
15597
15598   // Otherwise, check to see if this is a register class of the wrong value
15599   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
15600   // turn into {ax},{dx}.
15601   if (Res.second->hasType(VT))
15602     return Res;   // Correct type already, nothing to do.
15603
15604   // All of the single-register GCC register classes map their values onto
15605   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
15606   // really want an 8-bit or 32-bit register, map to the appropriate register
15607   // class and return the appropriate register.
15608   if (Res.second == X86::GR16RegisterClass) {
15609     if (VT == MVT::i8) {
15610       unsigned DestReg = 0;
15611       switch (Res.first) {
15612       default: break;
15613       case X86::AX: DestReg = X86::AL; break;
15614       case X86::DX: DestReg = X86::DL; break;
15615       case X86::CX: DestReg = X86::CL; break;
15616       case X86::BX: DestReg = X86::BL; break;
15617       }
15618       if (DestReg) {
15619         Res.first = DestReg;
15620         Res.second = X86::GR8RegisterClass;
15621       }
15622     } else if (VT == MVT::i32) {
15623       unsigned DestReg = 0;
15624       switch (Res.first) {
15625       default: break;
15626       case X86::AX: DestReg = X86::EAX; break;
15627       case X86::DX: DestReg = X86::EDX; break;
15628       case X86::CX: DestReg = X86::ECX; break;
15629       case X86::BX: DestReg = X86::EBX; break;
15630       case X86::SI: DestReg = X86::ESI; break;
15631       case X86::DI: DestReg = X86::EDI; break;
15632       case X86::BP: DestReg = X86::EBP; break;
15633       case X86::SP: DestReg = X86::ESP; break;
15634       }
15635       if (DestReg) {
15636         Res.first = DestReg;
15637         Res.second = X86::GR32RegisterClass;
15638       }
15639     } else if (VT == MVT::i64) {
15640       unsigned DestReg = 0;
15641       switch (Res.first) {
15642       default: break;
15643       case X86::AX: DestReg = X86::RAX; break;
15644       case X86::DX: DestReg = X86::RDX; break;
15645       case X86::CX: DestReg = X86::RCX; break;
15646       case X86::BX: DestReg = X86::RBX; break;
15647       case X86::SI: DestReg = X86::RSI; break;
15648       case X86::DI: DestReg = X86::RDI; break;
15649       case X86::BP: DestReg = X86::RBP; break;
15650       case X86::SP: DestReg = X86::RSP; break;
15651       }
15652       if (DestReg) {
15653         Res.first = DestReg;
15654         Res.second = X86::GR64RegisterClass;
15655       }
15656     }
15657   } else if (Res.second == X86::FR32RegisterClass ||
15658              Res.second == X86::FR64RegisterClass ||
15659              Res.second == X86::VR128RegisterClass) {
15660     // Handle references to XMM physical registers that got mapped into the
15661     // wrong class.  This can happen with constraints like {xmm0} where the
15662     // target independent register mapper will just pick the first match it can
15663     // find, ignoring the required type.
15664     if (VT == MVT::f32)
15665       Res.second = X86::FR32RegisterClass;
15666     else if (VT == MVT::f64)
15667       Res.second = X86::FR64RegisterClass;
15668     else if (X86::VR128RegisterClass->hasType(VT))
15669       Res.second = X86::VR128RegisterClass;
15670   }
15671
15672   return Res;
15673 }