5987e57a693b671abc3e901ae52a515e4fd2706d
[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/CodeGen/PseudoSourceValue.h"
39 #include "llvm/MC/MCAsmInfo.h"
40 #include "llvm/MC/MCContext.h"
41 #include "llvm/MC/MCExpr.h"
42 #include "llvm/MC/MCSymbol.h"
43 #include "llvm/ADT/BitVector.h"
44 #include "llvm/ADT/SmallSet.h"
45 #include "llvm/ADT/Statistic.h"
46 #include "llvm/ADT/StringExtras.h"
47 #include "llvm/ADT/VectorExtras.h"
48 #include "llvm/Support/CallSite.h"
49 #include "llvm/Support/Debug.h"
50 #include "llvm/Support/Dwarf.h"
51 #include "llvm/Support/ErrorHandling.h"
52 #include "llvm/Support/MathExtras.h"
53 #include "llvm/Support/raw_ostream.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
184   // For 64-bit since we have so many registers use the ILP scheduler, for
185   // 32-bit code use the register pressure specific scheduling.
186   if (Subtarget->is64Bit())
187     setSchedulingPreference(Sched::ILP);
188   else
189     setSchedulingPreference(Sched::RegPressure);
190   setStackPointerRegisterToSaveRestore(X86StackPtr);
191
192   if (Subtarget->isTargetWindows() && !Subtarget->isTargetCygMing()) {
193     // Setup Windows compiler runtime calls.
194     setLibcallName(RTLIB::SDIV_I64, "_alldiv");
195     setLibcallName(RTLIB::UDIV_I64, "_aulldiv");
196     setLibcallName(RTLIB::SREM_I64, "_allrem");
197     setLibcallName(RTLIB::UREM_I64, "_aullrem");
198     setLibcallName(RTLIB::MUL_I64, "_allmul");
199     setLibcallName(RTLIB::FPTOUINT_F64_I64, "_ftol2");
200     setLibcallName(RTLIB::FPTOUINT_F32_I64, "_ftol2");
201     setLibcallCallingConv(RTLIB::SDIV_I64, CallingConv::X86_StdCall);
202     setLibcallCallingConv(RTLIB::UDIV_I64, CallingConv::X86_StdCall);
203     setLibcallCallingConv(RTLIB::SREM_I64, CallingConv::X86_StdCall);
204     setLibcallCallingConv(RTLIB::UREM_I64, CallingConv::X86_StdCall);
205     setLibcallCallingConv(RTLIB::MUL_I64, CallingConv::X86_StdCall);
206     setLibcallCallingConv(RTLIB::FPTOUINT_F64_I64, CallingConv::C);
207     setLibcallCallingConv(RTLIB::FPTOUINT_F32_I64, CallingConv::C);
208   }
209
210   if (Subtarget->isTargetDarwin()) {
211     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
212     setUseUnderscoreSetJmp(false);
213     setUseUnderscoreLongJmp(false);
214   } else if (Subtarget->isTargetMingw()) {
215     // MS runtime is weird: it exports _setjmp, but longjmp!
216     setUseUnderscoreSetJmp(true);
217     setUseUnderscoreLongJmp(false);
218   } else {
219     setUseUnderscoreSetJmp(true);
220     setUseUnderscoreLongJmp(true);
221   }
222
223   // Set up the register classes.
224   addRegisterClass(MVT::i8, X86::GR8RegisterClass);
225   addRegisterClass(MVT::i16, X86::GR16RegisterClass);
226   addRegisterClass(MVT::i32, X86::GR32RegisterClass);
227   if (Subtarget->is64Bit())
228     addRegisterClass(MVT::i64, X86::GR64RegisterClass);
229
230   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
231
232   // We don't accept any truncstore of integer registers.
233   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
234   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
235   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
236   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
237   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
238   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
239
240   // SETOEQ and SETUNE require checking two conditions.
241   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
242   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
243   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
244   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
245   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
246   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
247
248   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
249   // operation.
250   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
251   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
252   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
253
254   if (Subtarget->is64Bit()) {
255     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
256     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Expand);
257   } else if (!UseSoftFloat) {
258     // We have an algorithm for SSE2->double, and we turn this into a
259     // 64-bit FILD followed by conditional FADD for other targets.
260     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Custom);
261     // We have an algorithm for SSE2, and we turn this into a 64-bit
262     // FILD for other targets.
263     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Custom);
264   }
265
266   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
267   // this operation.
268   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
269   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
270
271   if (!UseSoftFloat) {
272     // SSE has no i16 to fp conversion, only i32
273     if (X86ScalarSSEf32) {
274       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
275       // f32 and f64 cases are Legal, f80 case is not
276       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
277     } else {
278       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
279       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
280     }
281   } else {
282     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
283     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
284   }
285
286   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
287   // are Legal, f80 is custom lowered.
288   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
289   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
290
291   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
292   // this operation.
293   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
294   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
295
296   if (X86ScalarSSEf32) {
297     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
298     // f32 and f64 cases are Legal, f80 case is not
299     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
300   } else {
301     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
302     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
303   }
304
305   // Handle FP_TO_UINT by promoting the destination to a larger signed
306   // conversion.
307   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
308   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
309   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
310
311   if (Subtarget->is64Bit()) {
312     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
313     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
314   } else if (!UseSoftFloat) {
315     if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
316       // Expand FP_TO_UINT into a select.
317       // FIXME: We would like to use a Custom expander here eventually to do
318       // the optimal thing for SSE vs. the default expansion in the legalizer.
319       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
320     else
321       // With SSE3 we can use fisttpll to convert to a signed i64; without
322       // SSE, we're stuck with a fistpll.
323       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
324   }
325
326   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
327   if (!X86ScalarSSEf64) {
328     setOperationAction(ISD::BITCAST        , MVT::f32  , Expand);
329     setOperationAction(ISD::BITCAST        , MVT::i32  , Expand);
330     if (Subtarget->is64Bit()) {
331       setOperationAction(ISD::BITCAST      , MVT::f64  , Expand);
332       // Without SSE, i64->f64 goes through memory.
333       setOperationAction(ISD::BITCAST      , MVT::i64  , Expand);
334     }
335   }
336
337   // Scalar integer divide and remainder are lowered to use operations that
338   // produce two results, to match the available instructions. This exposes
339   // the two-result form to trivial CSE, which is able to combine x/y and x%y
340   // into a single instruction.
341   //
342   // Scalar integer multiply-high is also lowered to use two-result
343   // operations, to match the available instructions. However, plain multiply
344   // (low) operations are left as Legal, as there are single-result
345   // instructions for this in x86. Using the two-result multiply instructions
346   // when both high and low results are needed must be arranged by dagcombine.
347   for (unsigned i = 0, e = 4; i != e; ++i) {
348     MVT VT = IntVTs[i];
349     setOperationAction(ISD::MULHS, VT, Expand);
350     setOperationAction(ISD::MULHU, VT, Expand);
351     setOperationAction(ISD::SDIV, VT, Expand);
352     setOperationAction(ISD::UDIV, VT, Expand);
353     setOperationAction(ISD::SREM, VT, Expand);
354     setOperationAction(ISD::UREM, VT, Expand);
355
356     // Add/Sub overflow ops with MVT::Glues are lowered to EFLAGS dependences.
357     setOperationAction(ISD::ADDC, VT, Custom);
358     setOperationAction(ISD::ADDE, VT, Custom);
359     setOperationAction(ISD::SUBC, VT, Custom);
360     setOperationAction(ISD::SUBE, VT, Custom);
361   }
362
363   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
364   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
365   setOperationAction(ISD::BR_CC            , MVT::Other, Expand);
366   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
367   if (Subtarget->is64Bit())
368     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
369   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
370   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
371   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
372   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
373   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
374   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
375   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
376   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
377
378   setOperationAction(ISD::CTTZ             , MVT::i8   , Custom);
379   setOperationAction(ISD::CTLZ             , MVT::i8   , Custom);
380   setOperationAction(ISD::CTTZ             , MVT::i16  , Custom);
381   setOperationAction(ISD::CTLZ             , MVT::i16  , Custom);
382   setOperationAction(ISD::CTTZ             , MVT::i32  , Custom);
383   setOperationAction(ISD::CTLZ             , MVT::i32  , Custom);
384   if (Subtarget->is64Bit()) {
385     setOperationAction(ISD::CTTZ           , MVT::i64  , Custom);
386     setOperationAction(ISD::CTLZ           , MVT::i64  , Custom);
387   }
388
389   if (Subtarget->hasPOPCNT()) {
390     setOperationAction(ISD::CTPOP          , MVT::i8   , Promote);
391   } else {
392     setOperationAction(ISD::CTPOP          , MVT::i8   , Expand);
393     setOperationAction(ISD::CTPOP          , MVT::i16  , Expand);
394     setOperationAction(ISD::CTPOP          , MVT::i32  , Expand);
395     if (Subtarget->is64Bit())
396       setOperationAction(ISD::CTPOP        , MVT::i64  , Expand);
397   }
398
399   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
400   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
401
402   // These should be promoted to a larger select which is supported.
403   setOperationAction(ISD::SELECT          , MVT::i1   , Promote);
404   // X86 wants to expand cmov itself.
405   setOperationAction(ISD::SELECT          , MVT::i8   , Custom);
406   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
407   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
408   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
409   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
410   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
411   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
412   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
413   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
414   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
415   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
416   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
417   if (Subtarget->is64Bit()) {
418     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
419     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
420   }
421   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
422
423   // Darwin ABI issue.
424   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
425   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
426   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
427   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
428   if (Subtarget->is64Bit())
429     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
430   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
431   setOperationAction(ISD::BlockAddress    , MVT::i32  , Custom);
432   if (Subtarget->is64Bit()) {
433     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
434     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
435     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
436     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
437     setOperationAction(ISD::BlockAddress  , MVT::i64  , Custom);
438   }
439   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
440   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
441   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
442   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
443   if (Subtarget->is64Bit()) {
444     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
445     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
446     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
447   }
448
449   if (Subtarget->hasXMM())
450     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
451
452   setOperationAction(ISD::MEMBARRIER    , MVT::Other, Custom);
453   setOperationAction(ISD::ATOMIC_FENCE  , MVT::Other, Custom);
454
455   // On X86 and X86-64, atomic operations are lowered to locked instructions.
456   // Locked instructions, in turn, have implicit fence semantics (all memory
457   // operations are flushed before issuing the locked instruction, and they
458   // are not buffered), so we can fold away the common pattern of
459   // fence-atomic-fence.
460   setShouldFoldAtomicFences(true);
461
462   // Expand certain atomics
463   for (unsigned i = 0, e = 4; i != e; ++i) {
464     MVT VT = IntVTs[i];
465     setOperationAction(ISD::ATOMIC_CMP_SWAP, VT, Custom);
466     setOperationAction(ISD::ATOMIC_LOAD_SUB, VT, Custom);
467   }
468
469   if (!Subtarget->is64Bit()) {
470     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
471     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
472     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
473     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
474     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
475     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
476     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
477   }
478
479   // FIXME - use subtarget debug flags
480   if (!Subtarget->isTargetDarwin() &&
481       !Subtarget->isTargetELF() &&
482       !Subtarget->isTargetCygMing()) {
483     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
484   }
485
486   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
487   setOperationAction(ISD::EHSELECTION,   MVT::i64, Expand);
488   setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
489   setOperationAction(ISD::EHSELECTION,   MVT::i32, Expand);
490   if (Subtarget->is64Bit()) {
491     setExceptionPointerRegister(X86::RAX);
492     setExceptionSelectorRegister(X86::RDX);
493   } else {
494     setExceptionPointerRegister(X86::EAX);
495     setExceptionSelectorRegister(X86::EDX);
496   }
497   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
498   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
499
500   setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
501
502   setOperationAction(ISD::TRAP, MVT::Other, Legal);
503
504   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
505   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
506   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
507   if (Subtarget->is64Bit()) {
508     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
509     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
510   } else {
511     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
512     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
513   }
514
515   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
516   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
517   setOperationAction(ISD::DYNAMIC_STACKALLOC,
518                      (Subtarget->is64Bit() ? MVT::i64 : MVT::i32),
519                      (Subtarget->isTargetCOFF()
520                       && !Subtarget->isTargetEnvMacho()
521                       ? Custom : Expand));
522
523   if (!UseSoftFloat && X86ScalarSSEf64) {
524     // f32 and f64 use SSE.
525     // Set up the FP register classes.
526     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
527     addRegisterClass(MVT::f64, X86::FR64RegisterClass);
528
529     // Use ANDPD to simulate FABS.
530     setOperationAction(ISD::FABS , MVT::f64, Custom);
531     setOperationAction(ISD::FABS , MVT::f32, Custom);
532
533     // Use XORP to simulate FNEG.
534     setOperationAction(ISD::FNEG , MVT::f64, Custom);
535     setOperationAction(ISD::FNEG , MVT::f32, Custom);
536
537     // Use ANDPD and ORPD to simulate FCOPYSIGN.
538     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
539     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
540
541     // Lower this to FGETSIGNx86 plus an AND.
542     setOperationAction(ISD::FGETSIGN, MVT::i64, Custom);
543     setOperationAction(ISD::FGETSIGN, MVT::i32, Custom);
544
545     // We don't support sin/cos/fmod
546     setOperationAction(ISD::FSIN , MVT::f64, Expand);
547     setOperationAction(ISD::FCOS , MVT::f64, Expand);
548     setOperationAction(ISD::FSIN , MVT::f32, Expand);
549     setOperationAction(ISD::FCOS , MVT::f32, Expand);
550
551     // Expand FP immediates into loads from the stack, except for the special
552     // cases we handle.
553     addLegalFPImmediate(APFloat(+0.0)); // xorpd
554     addLegalFPImmediate(APFloat(+0.0f)); // xorps
555   } else if (!UseSoftFloat && X86ScalarSSEf32) {
556     // Use SSE for f32, x87 for f64.
557     // Set up the FP register classes.
558     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
559     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
560
561     // Use ANDPS to simulate FABS.
562     setOperationAction(ISD::FABS , MVT::f32, Custom);
563
564     // Use XORP to simulate FNEG.
565     setOperationAction(ISD::FNEG , MVT::f32, Custom);
566
567     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
568
569     // Use ANDPS and ORPS to simulate FCOPYSIGN.
570     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
571     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
572
573     // We don't support sin/cos/fmod
574     setOperationAction(ISD::FSIN , MVT::f32, Expand);
575     setOperationAction(ISD::FCOS , MVT::f32, Expand);
576
577     // Special cases we handle for FP constants.
578     addLegalFPImmediate(APFloat(+0.0f)); // xorps
579     addLegalFPImmediate(APFloat(+0.0)); // FLD0
580     addLegalFPImmediate(APFloat(+1.0)); // FLD1
581     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
582     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
583
584     if (!UnsafeFPMath) {
585       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
586       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
587     }
588   } else if (!UseSoftFloat) {
589     // f32 and f64 in x87.
590     // Set up the FP register classes.
591     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
592     addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
593
594     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
595     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
596     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
597     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
598
599     if (!UnsafeFPMath) {
600       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
601       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
602     }
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     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
608     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
609     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
610     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
611   }
612
613   // We don't support FMA.
614   setOperationAction(ISD::FMA, MVT::f64, Expand);
615   setOperationAction(ISD::FMA, MVT::f32, Expand);
616
617   // Long double always uses X87.
618   if (!UseSoftFloat) {
619     addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
620     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
621     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
622     {
623       APFloat TmpFlt = APFloat::getZero(APFloat::x87DoubleExtended);
624       addLegalFPImmediate(TmpFlt);  // FLD0
625       TmpFlt.changeSign();
626       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
627
628       bool ignored;
629       APFloat TmpFlt2(+1.0);
630       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
631                       &ignored);
632       addLegalFPImmediate(TmpFlt2);  // FLD1
633       TmpFlt2.changeSign();
634       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
635     }
636
637     if (!UnsafeFPMath) {
638       setOperationAction(ISD::FSIN           , MVT::f80  , Expand);
639       setOperationAction(ISD::FCOS           , MVT::f80  , Expand);
640     }
641
642     setOperationAction(ISD::FMA, MVT::f80, Expand);
643   }
644
645   // Always use a library call for pow.
646   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
647   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
648   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
649
650   setOperationAction(ISD::FLOG, MVT::f80, Expand);
651   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
652   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
653   setOperationAction(ISD::FEXP, MVT::f80, Expand);
654   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
655
656   // First set operation action for all vector types to either promote
657   // (for widening) or expand (for scalarization). Then we will selectively
658   // turn on ones that can be effectively codegen'd.
659   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
660        VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
661     setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
662     setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
663     setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
664     setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
665     setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
666     setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
667     setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
668     setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
669     setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
670     setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
671     setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
672     setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
673     setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
674     setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
675     setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
676     setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
677     setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
678     setOperationAction(ISD::INSERT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
679     setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
680     setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
681     setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
682     setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
683     setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
684     setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
685     setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
686     setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
687     setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
688     setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
689     setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
690     setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
691     setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
692     setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
693     setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
694     setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
695     setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
696     setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
697     setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
698     setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
699     setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
700     setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
701     setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
702     setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
703     setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
704     setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
705     setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
706     setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
707     setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
708     setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
709     setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
710     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT,Expand);
711     setOperationAction(ISD::TRUNCATE,  (MVT::SimpleValueType)VT, Expand);
712     setOperationAction(ISD::SIGN_EXTEND,  (MVT::SimpleValueType)VT, Expand);
713     setOperationAction(ISD::ZERO_EXTEND,  (MVT::SimpleValueType)VT, Expand);
714     setOperationAction(ISD::ANY_EXTEND,  (MVT::SimpleValueType)VT, Expand);
715     for (unsigned InnerVT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
716          InnerVT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++InnerVT)
717       setTruncStoreAction((MVT::SimpleValueType)VT,
718                           (MVT::SimpleValueType)InnerVT, Expand);
719     setLoadExtAction(ISD::SEXTLOAD, (MVT::SimpleValueType)VT, Expand);
720     setLoadExtAction(ISD::ZEXTLOAD, (MVT::SimpleValueType)VT, Expand);
721     setLoadExtAction(ISD::EXTLOAD, (MVT::SimpleValueType)VT, Expand);
722   }
723
724   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
725   // with -msoft-float, disable use of MMX as well.
726   if (!UseSoftFloat && Subtarget->hasMMX()) {
727     addRegisterClass(MVT::x86mmx, X86::VR64RegisterClass);
728     // No operations on x86mmx supported, everything uses intrinsics.
729   }
730
731   // MMX-sized vectors (other than x86mmx) are expected to be expanded
732   // into smaller operations.
733   setOperationAction(ISD::MULHS,              MVT::v8i8,  Expand);
734   setOperationAction(ISD::MULHS,              MVT::v4i16, Expand);
735   setOperationAction(ISD::MULHS,              MVT::v2i32, Expand);
736   setOperationAction(ISD::MULHS,              MVT::v1i64, Expand);
737   setOperationAction(ISD::AND,                MVT::v8i8,  Expand);
738   setOperationAction(ISD::AND,                MVT::v4i16, Expand);
739   setOperationAction(ISD::AND,                MVT::v2i32, Expand);
740   setOperationAction(ISD::AND,                MVT::v1i64, Expand);
741   setOperationAction(ISD::OR,                 MVT::v8i8,  Expand);
742   setOperationAction(ISD::OR,                 MVT::v4i16, Expand);
743   setOperationAction(ISD::OR,                 MVT::v2i32, Expand);
744   setOperationAction(ISD::OR,                 MVT::v1i64, Expand);
745   setOperationAction(ISD::XOR,                MVT::v8i8,  Expand);
746   setOperationAction(ISD::XOR,                MVT::v4i16, Expand);
747   setOperationAction(ISD::XOR,                MVT::v2i32, Expand);
748   setOperationAction(ISD::XOR,                MVT::v1i64, Expand);
749   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Expand);
750   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Expand);
751   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2i32, Expand);
752   setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Expand);
753   setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v1i64, Expand);
754   setOperationAction(ISD::SELECT,             MVT::v8i8,  Expand);
755   setOperationAction(ISD::SELECT,             MVT::v4i16, Expand);
756   setOperationAction(ISD::SELECT,             MVT::v2i32, Expand);
757   setOperationAction(ISD::SELECT,             MVT::v1i64, Expand);
758   setOperationAction(ISD::BITCAST,            MVT::v8i8,  Expand);
759   setOperationAction(ISD::BITCAST,            MVT::v4i16, Expand);
760   setOperationAction(ISD::BITCAST,            MVT::v2i32, Expand);
761   setOperationAction(ISD::BITCAST,            MVT::v1i64, Expand);
762
763   if (!UseSoftFloat && Subtarget->hasXMM()) {
764     addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
765
766     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
767     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
768     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
769     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
770     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
771     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
772     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
773     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
774     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
775     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
776     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
777     setOperationAction(ISD::VSETCC,             MVT::v4f32, Custom);
778   }
779
780   if (!UseSoftFloat && Subtarget->hasXMMInt()) {
781     addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
782
783     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
784     // registers cannot be used even for integer operations.
785     addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
786     addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
787     addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
788     addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
789
790     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
791     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
792     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
793     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
794     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
795     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
796     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
797     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
798     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
799     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
800     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
801     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
802     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
803     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
804     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
805     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
806
807     setOperationAction(ISD::VSETCC,             MVT::v2f64, Custom);
808     setOperationAction(ISD::VSETCC,             MVT::v16i8, Custom);
809     setOperationAction(ISD::VSETCC,             MVT::v8i16, Custom);
810     setOperationAction(ISD::VSETCC,             MVT::v4i32, Custom);
811
812     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
813     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
814     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
815     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
816     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
817
818     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v2f64, Custom);
819     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v2i64, Custom);
820     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v16i8, Custom);
821     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v8i16, Custom);
822     setOperationAction(ISD::CONCAT_VECTORS,     MVT::v4i32, Custom);
823
824     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
825     for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
826       EVT VT = (MVT::SimpleValueType)i;
827       // Do not attempt to custom lower non-power-of-2 vectors
828       if (!isPowerOf2_32(VT.getVectorNumElements()))
829         continue;
830       // Do not attempt to custom lower non-128-bit vectors
831       if (!VT.is128BitVector())
832         continue;
833       setOperationAction(ISD::BUILD_VECTOR,
834                          VT.getSimpleVT().SimpleTy, Custom);
835       setOperationAction(ISD::VECTOR_SHUFFLE,
836                          VT.getSimpleVT().SimpleTy, Custom);
837       setOperationAction(ISD::EXTRACT_VECTOR_ELT,
838                          VT.getSimpleVT().SimpleTy, Custom);
839     }
840
841     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
842     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
843     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
844     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
845     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
846     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
847
848     if (Subtarget->is64Bit()) {
849       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
850       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
851     }
852
853     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
854     for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; i++) {
855       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
856       EVT VT = SVT;
857
858       // Do not attempt to promote non-128-bit vectors
859       if (!VT.is128BitVector())
860         continue;
861
862       setOperationAction(ISD::AND,    SVT, Promote);
863       AddPromotedToType (ISD::AND,    SVT, MVT::v2i64);
864       setOperationAction(ISD::OR,     SVT, Promote);
865       AddPromotedToType (ISD::OR,     SVT, MVT::v2i64);
866       setOperationAction(ISD::XOR,    SVT, Promote);
867       AddPromotedToType (ISD::XOR,    SVT, MVT::v2i64);
868       setOperationAction(ISD::LOAD,   SVT, Promote);
869       AddPromotedToType (ISD::LOAD,   SVT, MVT::v2i64);
870       setOperationAction(ISD::SELECT, SVT, Promote);
871       AddPromotedToType (ISD::SELECT, SVT, MVT::v2i64);
872     }
873
874     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
875
876     // Custom lower v2i64 and v2f64 selects.
877     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
878     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
879     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
880     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
881
882     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
883     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
884   }
885
886   if (Subtarget->hasSSE41()) {
887     setOperationAction(ISD::FFLOOR,             MVT::f32,   Legal);
888     setOperationAction(ISD::FCEIL,              MVT::f32,   Legal);
889     setOperationAction(ISD::FTRUNC,             MVT::f32,   Legal);
890     setOperationAction(ISD::FRINT,              MVT::f32,   Legal);
891     setOperationAction(ISD::FNEARBYINT,         MVT::f32,   Legal);
892     setOperationAction(ISD::FFLOOR,             MVT::f64,   Legal);
893     setOperationAction(ISD::FCEIL,              MVT::f64,   Legal);
894     setOperationAction(ISD::FTRUNC,             MVT::f64,   Legal);
895     setOperationAction(ISD::FRINT,              MVT::f64,   Legal);
896     setOperationAction(ISD::FNEARBYINT,         MVT::f64,   Legal);
897
898     // FIXME: Do we need to handle scalar-to-vector here?
899     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
900
901     // Can turn SHL into an integer multiply.
902     setOperationAction(ISD::SHL,                MVT::v4i32, Custom);
903     setOperationAction(ISD::SHL,                MVT::v16i8, Custom);
904
905     // i8 and i16 vectors are custom , because the source register and source
906     // source memory operand types are not the same width.  f32 vectors are
907     // custom since the immediate controlling the insert encodes additional
908     // information.
909     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
910     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
911     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
912     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
913
914     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
915     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
916     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
917     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
918
919     if (Subtarget->is64Bit()) {
920       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Legal);
921       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
922     }
923   }
924
925   if (Subtarget->hasSSE2()) {
926     setOperationAction(ISD::SRL,               MVT::v2i64, Custom);
927     setOperationAction(ISD::SRL,               MVT::v4i32, Custom);
928     setOperationAction(ISD::SRL,               MVT::v16i8, Custom);
929
930     setOperationAction(ISD::SHL,               MVT::v2i64, Custom);
931     setOperationAction(ISD::SHL,               MVT::v4i32, Custom);
932     setOperationAction(ISD::SHL,               MVT::v8i16, Custom);
933
934     setOperationAction(ISD::SRA,               MVT::v4i32, Custom);
935     setOperationAction(ISD::SRA,               MVT::v8i16, Custom);
936   }
937
938   if (Subtarget->hasSSE42())
939     setOperationAction(ISD::VSETCC,             MVT::v2i64, Custom);
940
941   if (!UseSoftFloat && Subtarget->hasAVX()) {
942     addRegisterClass(MVT::v32i8,  X86::VR256RegisterClass);
943     addRegisterClass(MVT::v16i16, X86::VR256RegisterClass);
944     addRegisterClass(MVT::v8i32,  X86::VR256RegisterClass);
945     addRegisterClass(MVT::v8f32,  X86::VR256RegisterClass);
946     addRegisterClass(MVT::v4i64,  X86::VR256RegisterClass);
947     addRegisterClass(MVT::v4f64,  X86::VR256RegisterClass);
948
949     setOperationAction(ISD::LOAD,               MVT::v8f32, Legal);
950     setOperationAction(ISD::LOAD,               MVT::v4f64, Legal);
951     setOperationAction(ISD::LOAD,               MVT::v4i64, Legal);
952
953     setOperationAction(ISD::FADD,               MVT::v8f32, Legal);
954     setOperationAction(ISD::FSUB,               MVT::v8f32, Legal);
955     setOperationAction(ISD::FMUL,               MVT::v8f32, Legal);
956     setOperationAction(ISD::FDIV,               MVT::v8f32, Legal);
957     setOperationAction(ISD::FSQRT,              MVT::v8f32, Legal);
958     setOperationAction(ISD::FNEG,               MVT::v8f32, Custom);
959
960     setOperationAction(ISD::FADD,               MVT::v4f64, Legal);
961     setOperationAction(ISD::FSUB,               MVT::v4f64, Legal);
962     setOperationAction(ISD::FMUL,               MVT::v4f64, Legal);
963     setOperationAction(ISD::FDIV,               MVT::v4f64, Legal);
964     setOperationAction(ISD::FSQRT,              MVT::v4f64, Legal);
965     setOperationAction(ISD::FNEG,               MVT::v4f64, Custom);
966
967     setOperationAction(ISD::FP_TO_SINT,         MVT::v8i32, Legal);
968     setOperationAction(ISD::SINT_TO_FP,         MVT::v8i32, Legal);
969
970     // Custom lower several nodes for 256-bit types.
971     for (unsigned i = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
972                   i <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++i) {
973       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
974       EVT VT = SVT;
975
976       // Extract subvector is special because the value type
977       // (result) is 128-bit but the source is 256-bit wide.
978       if (VT.is128BitVector())
979         setOperationAction(ISD::EXTRACT_SUBVECTOR, SVT, Custom);
980
981       // Do not attempt to custom lower other non-256-bit vectors
982       if (!VT.is256BitVector())
983         continue;
984
985       setOperationAction(ISD::BUILD_VECTOR,       SVT, Custom);
986       setOperationAction(ISD::VECTOR_SHUFFLE,     SVT, Custom);
987       setOperationAction(ISD::INSERT_VECTOR_ELT,  SVT, Custom);
988       setOperationAction(ISD::EXTRACT_VECTOR_ELT, SVT, Custom);
989       setOperationAction(ISD::SCALAR_TO_VECTOR,   SVT, Custom);
990       setOperationAction(ISD::INSERT_SUBVECTOR,   SVT, Custom);
991     }
992
993     // Promote v32i8, v16i16, v8i32 select, and, or, xor to v4i64.
994     for (unsigned i = (unsigned)MVT::v32i8; i != (unsigned)MVT::v4i64; ++i) {
995       MVT::SimpleValueType SVT = (MVT::SimpleValueType)i;
996       EVT VT = SVT;
997
998       // Do not attempt to promote non-256-bit vectors
999       if (!VT.is256BitVector())
1000         continue;
1001
1002       setOperationAction(ISD::AND,    SVT, Promote);
1003       AddPromotedToType (ISD::AND,    SVT, MVT::v4i64);
1004       setOperationAction(ISD::OR,     SVT, Promote);
1005       AddPromotedToType (ISD::OR,     SVT, MVT::v4i64);
1006       setOperationAction(ISD::XOR,    SVT, Promote);
1007       AddPromotedToType (ISD::XOR,    SVT, MVT::v4i64);
1008       setOperationAction(ISD::LOAD,   SVT, Promote);
1009       AddPromotedToType (ISD::LOAD,   SVT, MVT::v4i64);
1010       setOperationAction(ISD::SELECT, SVT, Promote);
1011       AddPromotedToType (ISD::SELECT, SVT, MVT::v4i64);
1012     }
1013   }
1014
1015   // SIGN_EXTEND_INREGs are evaluated by the extend type. Handle the expansion
1016   // of this type with custom code.
1017   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
1018          VT != (unsigned)MVT::LAST_VECTOR_VALUETYPE; VT++) {
1019     setOperationAction(ISD::SIGN_EXTEND_INREG, (MVT::SimpleValueType)VT, Custom);
1020   }
1021
1022   // We want to custom lower some of our intrinsics.
1023   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
1024
1025
1026   // Only custom-lower 64-bit SADDO and friends on 64-bit because we don't
1027   // handle type legalization for these operations here.
1028   //
1029   // FIXME: We really should do custom legalization for addition and
1030   // subtraction on x86-32 once PR3203 is fixed.  We really can't do much better
1031   // than generic legalization for 64-bit multiplication-with-overflow, though.
1032   for (unsigned i = 0, e = 3+Subtarget->is64Bit(); i != e; ++i) {
1033     // Add/Sub/Mul with overflow operations are custom lowered.
1034     MVT VT = IntVTs[i];
1035     setOperationAction(ISD::SADDO, VT, Custom);
1036     setOperationAction(ISD::UADDO, VT, Custom);
1037     setOperationAction(ISD::SSUBO, VT, Custom);
1038     setOperationAction(ISD::USUBO, VT, Custom);
1039     setOperationAction(ISD::SMULO, VT, Custom);
1040     setOperationAction(ISD::UMULO, VT, Custom);
1041   }
1042
1043   // There are no 8-bit 3-address imul/mul instructions
1044   setOperationAction(ISD::SMULO, MVT::i8, Expand);
1045   setOperationAction(ISD::UMULO, MVT::i8, Expand);
1046
1047   if (!Subtarget->is64Bit()) {
1048     // These libcalls are not available in 32-bit.
1049     setLibcallName(RTLIB::SHL_I128, 0);
1050     setLibcallName(RTLIB::SRL_I128, 0);
1051     setLibcallName(RTLIB::SRA_I128, 0);
1052   }
1053
1054   // We have target-specific dag combine patterns for the following nodes:
1055   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
1056   setTargetDAGCombine(ISD::EXTRACT_VECTOR_ELT);
1057   setTargetDAGCombine(ISD::BUILD_VECTOR);
1058   setTargetDAGCombine(ISD::SELECT);
1059   setTargetDAGCombine(ISD::SHL);
1060   setTargetDAGCombine(ISD::SRA);
1061   setTargetDAGCombine(ISD::SRL);
1062   setTargetDAGCombine(ISD::OR);
1063   setTargetDAGCombine(ISD::AND);
1064   setTargetDAGCombine(ISD::ADD);
1065   setTargetDAGCombine(ISD::SUB);
1066   setTargetDAGCombine(ISD::STORE);
1067   setTargetDAGCombine(ISD::ZERO_EXTEND);
1068   setTargetDAGCombine(ISD::SINT_TO_FP);
1069   if (Subtarget->is64Bit())
1070     setTargetDAGCombine(ISD::MUL);
1071
1072   computeRegisterProperties();
1073
1074   // On Darwin, -Os means optimize for size without hurting performance,
1075   // do not reduce the limit.
1076   maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
1077   maxStoresPerMemsetOptSize = Subtarget->isTargetDarwin() ? 16 : 8;
1078   maxStoresPerMemcpy = 8; // For @llvm.memcpy -> sequence of stores
1079   maxStoresPerMemcpyOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1080   maxStoresPerMemmove = 8; // For @llvm.memmove -> sequence of stores
1081   maxStoresPerMemmoveOptSize = Subtarget->isTargetDarwin() ? 8 : 4;
1082   setPrefLoopAlignment(16);
1083   benefitFromCodePlacementOpt = true;
1084
1085   setPrefFunctionAlignment(4);
1086 }
1087
1088
1089 MVT::SimpleValueType X86TargetLowering::getSetCCResultType(EVT VT) const {
1090   return MVT::i8;
1091 }
1092
1093
1094 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
1095 /// the desired ByVal argument alignment.
1096 static void getMaxByValAlign(Type *Ty, unsigned &MaxAlign) {
1097   if (MaxAlign == 16)
1098     return;
1099   if (VectorType *VTy = dyn_cast<VectorType>(Ty)) {
1100     if (VTy->getBitWidth() == 128)
1101       MaxAlign = 16;
1102   } else if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
1103     unsigned EltAlign = 0;
1104     getMaxByValAlign(ATy->getElementType(), EltAlign);
1105     if (EltAlign > MaxAlign)
1106       MaxAlign = EltAlign;
1107   } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
1108     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1109       unsigned EltAlign = 0;
1110       getMaxByValAlign(STy->getElementType(i), EltAlign);
1111       if (EltAlign > MaxAlign)
1112         MaxAlign = EltAlign;
1113       if (MaxAlign == 16)
1114         break;
1115     }
1116   }
1117   return;
1118 }
1119
1120 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
1121 /// function arguments in the caller parameter area. For X86, aggregates
1122 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
1123 /// are at 4-byte boundaries.
1124 unsigned X86TargetLowering::getByValTypeAlignment(Type *Ty) const {
1125   if (Subtarget->is64Bit()) {
1126     // Max of 8 and alignment of type.
1127     unsigned TyAlign = TD->getABITypeAlignment(Ty);
1128     if (TyAlign > 8)
1129       return TyAlign;
1130     return 8;
1131   }
1132
1133   unsigned Align = 4;
1134   if (Subtarget->hasXMM())
1135     getMaxByValAlign(Ty, Align);
1136   return Align;
1137 }
1138
1139 /// getOptimalMemOpType - Returns the target specific optimal type for load
1140 /// and store operations as a result of memset, memcpy, and memmove
1141 /// lowering. If DstAlign is zero that means it's safe to destination
1142 /// alignment can satisfy any constraint. Similarly if SrcAlign is zero it
1143 /// means there isn't a need to check it against alignment requirement,
1144 /// probably because the source does not need to be loaded. If
1145 /// 'NonScalarIntSafe' is true, that means it's safe to return a
1146 /// non-scalar-integer type, e.g. empty string source, constant, or loaded
1147 /// from memory. 'MemcpyStrSrc' indicates whether the memcpy source is
1148 /// constant so it does not need to be loaded.
1149 /// It returns EVT::Other if the type should be determined using generic
1150 /// target-independent logic.
1151 EVT
1152 X86TargetLowering::getOptimalMemOpType(uint64_t Size,
1153                                        unsigned DstAlign, unsigned SrcAlign,
1154                                        bool NonScalarIntSafe,
1155                                        bool MemcpyStrSrc,
1156                                        MachineFunction &MF) const {
1157   // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
1158   // linux.  This is because the stack realignment code can't handle certain
1159   // cases like PR2962.  This should be removed when PR2962 is fixed.
1160   const Function *F = MF.getFunction();
1161   if (NonScalarIntSafe &&
1162       !F->hasFnAttr(Attribute::NoImplicitFloat)) {
1163     if (Size >= 16 &&
1164         (Subtarget->isUnalignedMemAccessFast() ||
1165          ((DstAlign == 0 || DstAlign >= 16) &&
1166           (SrcAlign == 0 || SrcAlign >= 16))) &&
1167         Subtarget->getStackAlignment() >= 16) {
1168       if (Subtarget->hasSSE2())
1169         return MVT::v4i32;
1170       if (Subtarget->hasSSE1())
1171         return MVT::v4f32;
1172     } else if (!MemcpyStrSrc && Size >= 8 &&
1173                !Subtarget->is64Bit() &&
1174                Subtarget->getStackAlignment() >= 8 &&
1175                Subtarget->hasXMMInt()) {
1176       // Do not use f64 to lower memcpy if source is string constant. It's
1177       // better to use i32 to avoid the loads.
1178       return MVT::f64;
1179     }
1180   }
1181   if (Subtarget->is64Bit() && Size >= 8)
1182     return MVT::i64;
1183   return MVT::i32;
1184 }
1185
1186 /// getJumpTableEncoding - Return the entry encoding for a jump table in the
1187 /// current function.  The returned value is a member of the
1188 /// MachineJumpTableInfo::JTEntryKind enum.
1189 unsigned X86TargetLowering::getJumpTableEncoding() const {
1190   // In GOT pic mode, each entry in the jump table is emitted as a @GOTOFF
1191   // symbol.
1192   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1193       Subtarget->isPICStyleGOT())
1194     return MachineJumpTableInfo::EK_Custom32;
1195
1196   // Otherwise, use the normal jump table encoding heuristics.
1197   return TargetLowering::getJumpTableEncoding();
1198 }
1199
1200 const MCExpr *
1201 X86TargetLowering::LowerCustomJumpTableEntry(const MachineJumpTableInfo *MJTI,
1202                                              const MachineBasicBlock *MBB,
1203                                              unsigned uid,MCContext &Ctx) const{
1204   assert(getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1205          Subtarget->isPICStyleGOT());
1206   // In 32-bit ELF systems, our jump table entries are formed with @GOTOFF
1207   // entries.
1208   return MCSymbolRefExpr::Create(MBB->getSymbol(),
1209                                  MCSymbolRefExpr::VK_GOTOFF, Ctx);
1210 }
1211
1212 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
1213 /// jumptable.
1214 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
1215                                                     SelectionDAG &DAG) const {
1216   if (!Subtarget->is64Bit())
1217     // This doesn't have DebugLoc associated with it, but is not really the
1218     // same as a Register.
1219     return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc(), getPointerTy());
1220   return Table;
1221 }
1222
1223 /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the
1224 /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an
1225 /// MCExpr.
1226 const MCExpr *X86TargetLowering::
1227 getPICJumpTableRelocBaseExpr(const MachineFunction *MF, unsigned JTI,
1228                              MCContext &Ctx) const {
1229   // X86-64 uses RIP relative addressing based on the jump table label.
1230   if (Subtarget->isPICStyleRIPRel())
1231     return TargetLowering::getPICJumpTableRelocBaseExpr(MF, JTI, Ctx);
1232
1233   // Otherwise, the reference is relative to the PIC base.
1234   return MCSymbolRefExpr::Create(MF->getPICBaseSymbol(), Ctx);
1235 }
1236
1237 // FIXME: Why this routine is here? Move to RegInfo!
1238 std::pair<const TargetRegisterClass*, uint8_t>
1239 X86TargetLowering::findRepresentativeClass(EVT VT) const{
1240   const TargetRegisterClass *RRC = 0;
1241   uint8_t Cost = 1;
1242   switch (VT.getSimpleVT().SimpleTy) {
1243   default:
1244     return TargetLowering::findRepresentativeClass(VT);
1245   case MVT::i8: case MVT::i16: case MVT::i32: case MVT::i64:
1246     RRC = (Subtarget->is64Bit()
1247            ? X86::GR64RegisterClass : X86::GR32RegisterClass);
1248     break;
1249   case MVT::x86mmx:
1250     RRC = X86::VR64RegisterClass;
1251     break;
1252   case MVT::f32: case MVT::f64:
1253   case MVT::v16i8: case MVT::v8i16: case MVT::v4i32: case MVT::v2i64:
1254   case MVT::v4f32: case MVT::v2f64:
1255   case MVT::v32i8: case MVT::v8i32: case MVT::v4i64: case MVT::v8f32:
1256   case MVT::v4f64:
1257     RRC = X86::VR128RegisterClass;
1258     break;
1259   }
1260   return std::make_pair(RRC, Cost);
1261 }
1262
1263 bool X86TargetLowering::getStackCookieLocation(unsigned &AddressSpace,
1264                                                unsigned &Offset) const {
1265   if (!Subtarget->isTargetLinux())
1266     return false;
1267
1268   if (Subtarget->is64Bit()) {
1269     // %fs:0x28, unless we're using a Kernel code model, in which case it's %gs:
1270     Offset = 0x28;
1271     if (getTargetMachine().getCodeModel() == CodeModel::Kernel)
1272       AddressSpace = 256;
1273     else
1274       AddressSpace = 257;
1275   } else {
1276     // %gs:0x14 on i386
1277     Offset = 0x14;
1278     AddressSpace = 256;
1279   }
1280   return true;
1281 }
1282
1283
1284 //===----------------------------------------------------------------------===//
1285 //               Return Value Calling Convention Implementation
1286 //===----------------------------------------------------------------------===//
1287
1288 #include "X86GenCallingConv.inc"
1289
1290 bool
1291 X86TargetLowering::CanLowerReturn(CallingConv::ID CallConv,
1292                                   MachineFunction &MF, bool isVarArg,
1293                         const SmallVectorImpl<ISD::OutputArg> &Outs,
1294                         LLVMContext &Context) const {
1295   SmallVector<CCValAssign, 16> RVLocs;
1296   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1297                  RVLocs, Context);
1298   return CCInfo.CheckReturn(Outs, RetCC_X86);
1299 }
1300
1301 SDValue
1302 X86TargetLowering::LowerReturn(SDValue Chain,
1303                                CallingConv::ID CallConv, bool isVarArg,
1304                                const SmallVectorImpl<ISD::OutputArg> &Outs,
1305                                const SmallVectorImpl<SDValue> &OutVals,
1306                                DebugLoc dl, SelectionDAG &DAG) const {
1307   MachineFunction &MF = DAG.getMachineFunction();
1308   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1309
1310   SmallVector<CCValAssign, 16> RVLocs;
1311   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1312                  RVLocs, *DAG.getContext());
1313   CCInfo.AnalyzeReturn(Outs, RetCC_X86);
1314
1315   // Add the regs to the liveout set for the function.
1316   MachineRegisterInfo &MRI = DAG.getMachineFunction().getRegInfo();
1317   for (unsigned i = 0; i != RVLocs.size(); ++i)
1318     if (RVLocs[i].isRegLoc() && !MRI.isLiveOut(RVLocs[i].getLocReg()))
1319       MRI.addLiveOut(RVLocs[i].getLocReg());
1320
1321   SDValue Flag;
1322
1323   SmallVector<SDValue, 6> RetOps;
1324   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
1325   // Operand #1 = Bytes To Pop
1326   RetOps.push_back(DAG.getTargetConstant(FuncInfo->getBytesToPopOnReturn(),
1327                    MVT::i16));
1328
1329   // Copy the result values into the output registers.
1330   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1331     CCValAssign &VA = RVLocs[i];
1332     assert(VA.isRegLoc() && "Can only return in registers!");
1333     SDValue ValToCopy = OutVals[i];
1334     EVT ValVT = ValToCopy.getValueType();
1335
1336     // If this is x86-64, and we disabled SSE, we can't return FP values,
1337     // or SSE or MMX vectors.
1338     if ((ValVT == MVT::f32 || ValVT == MVT::f64 ||
1339          VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) &&
1340           (Subtarget->is64Bit() && !Subtarget->hasXMM())) {
1341       report_fatal_error("SSE register return with SSE disabled");
1342     }
1343     // Likewise we can't return F64 values with SSE1 only.  gcc does so, but
1344     // llvm-gcc has never done it right and no one has noticed, so this
1345     // should be OK for now.
1346     if (ValVT == MVT::f64 &&
1347         (Subtarget->is64Bit() && !Subtarget->hasXMMInt()))
1348       report_fatal_error("SSE2 register return with SSE2 disabled");
1349
1350     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
1351     // the RET instruction and handled by the FP Stackifier.
1352     if (VA.getLocReg() == X86::ST0 ||
1353         VA.getLocReg() == X86::ST1) {
1354       // If this is a copy from an xmm register to ST(0), use an FPExtend to
1355       // change the value to the FP stack register class.
1356       if (isScalarFPTypeInSSEReg(VA.getValVT()))
1357         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
1358       RetOps.push_back(ValToCopy);
1359       // Don't emit a copytoreg.
1360       continue;
1361     }
1362
1363     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
1364     // which is returned in RAX / RDX.
1365     if (Subtarget->is64Bit()) {
1366       if (ValVT == MVT::x86mmx) {
1367         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1368           ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::i64, ValToCopy);
1369           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64,
1370                                   ValToCopy);
1371           // If we don't have SSE2 available, convert to v4f32 so the generated
1372           // register is legal.
1373           if (!Subtarget->hasSSE2())
1374             ValToCopy = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32,ValToCopy);
1375         }
1376       }
1377     }
1378
1379     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1380     Flag = Chain.getValue(1);
1381   }
1382
1383   // The x86-64 ABI for returning structs by value requires that we copy
1384   // the sret argument into %rax for the return. We saved the argument into
1385   // a virtual register in the entry block, so now we copy the value out
1386   // and into %rax.
1387   if (Subtarget->is64Bit() &&
1388       DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1389     MachineFunction &MF = DAG.getMachineFunction();
1390     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1391     unsigned Reg = FuncInfo->getSRetReturnReg();
1392     assert(Reg &&
1393            "SRetReturnReg should have been set in LowerFormalArguments().");
1394     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1395
1396     Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
1397     Flag = Chain.getValue(1);
1398
1399     // RAX now acts like a return value.
1400     MRI.addLiveOut(X86::RAX);
1401   }
1402
1403   RetOps[0] = Chain;  // Update chain.
1404
1405   // Add the flag if we have it.
1406   if (Flag.getNode())
1407     RetOps.push_back(Flag);
1408
1409   return DAG.getNode(X86ISD::RET_FLAG, dl,
1410                      MVT::Other, &RetOps[0], RetOps.size());
1411 }
1412
1413 bool X86TargetLowering::isUsedByReturnOnly(SDNode *N) const {
1414   if (N->getNumValues() != 1)
1415     return false;
1416   if (!N->hasNUsesOfValue(1, 0))
1417     return false;
1418
1419   SDNode *Copy = *N->use_begin();
1420   if (Copy->getOpcode() != ISD::CopyToReg &&
1421       Copy->getOpcode() != ISD::FP_EXTEND)
1422     return false;
1423
1424   bool HasRet = false;
1425   for (SDNode::use_iterator UI = Copy->use_begin(), UE = Copy->use_end();
1426        UI != UE; ++UI) {
1427     if (UI->getOpcode() != X86ISD::RET_FLAG)
1428       return false;
1429     HasRet = true;
1430   }
1431
1432   return HasRet;
1433 }
1434
1435 EVT
1436 X86TargetLowering::getTypeForExtArgOrReturn(LLVMContext &Context, EVT VT,
1437                                             ISD::NodeType ExtendKind) const {
1438   MVT ReturnMVT;
1439   // TODO: Is this also valid on 32-bit?
1440   if (Subtarget->is64Bit() && VT == MVT::i1 && ExtendKind == ISD::ZERO_EXTEND)
1441     ReturnMVT = MVT::i8;
1442   else
1443     ReturnMVT = MVT::i32;
1444
1445   EVT MinVT = getRegisterType(Context, ReturnMVT);
1446   return VT.bitsLT(MinVT) ? MinVT : VT;
1447 }
1448
1449 /// LowerCallResult - Lower the result values of a call into the
1450 /// appropriate copies out of appropriate physical registers.
1451 ///
1452 SDValue
1453 X86TargetLowering::LowerCallResult(SDValue Chain, SDValue InFlag,
1454                                    CallingConv::ID CallConv, bool isVarArg,
1455                                    const SmallVectorImpl<ISD::InputArg> &Ins,
1456                                    DebugLoc dl, SelectionDAG &DAG,
1457                                    SmallVectorImpl<SDValue> &InVals) const {
1458
1459   // Assign locations to each value returned by this call.
1460   SmallVector<CCValAssign, 16> RVLocs;
1461   bool Is64Bit = Subtarget->is64Bit();
1462   CCState CCInfo(CallConv, isVarArg, DAG.getMachineFunction(),
1463                  getTargetMachine(), RVLocs, *DAG.getContext());
1464   CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
1465
1466   // Copy all of the result registers out of their specified physreg.
1467   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1468     CCValAssign &VA = RVLocs[i];
1469     EVT CopyVT = VA.getValVT();
1470
1471     // If this is x86-64, and we disabled SSE, we can't return FP values
1472     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1473         ((Is64Bit || Ins[i].Flags.isInReg()) && !Subtarget->hasXMM())) {
1474       report_fatal_error("SSE register return with SSE disabled");
1475     }
1476
1477     SDValue Val;
1478
1479     // If this is a call to a function that returns an fp value on the floating
1480     // point stack, we must guarantee the the value is popped from the stack, so
1481     // a CopyFromReg is not good enough - the copy instruction may be eliminated
1482     // if the return value is not used. We use the FpPOP_RETVAL instruction
1483     // instead.
1484     if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1) {
1485       // If we prefer to use the value in xmm registers, copy it out as f80 and
1486       // use a truncate to move it from fp stack reg to xmm reg.
1487       if (isScalarFPTypeInSSEReg(VA.getValVT())) CopyVT = MVT::f80;
1488       SDValue Ops[] = { Chain, InFlag };
1489       Chain = SDValue(DAG.getMachineNode(X86::FpPOP_RETVAL, dl, CopyVT,
1490                                          MVT::Other, MVT::Glue, Ops, 2), 1);
1491       Val = Chain.getValue(0);
1492
1493       // Round the f80 to the right size, which also moves it to the appropriate
1494       // xmm register.
1495       if (CopyVT != VA.getValVT())
1496         Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1497                           // This truncation won't change the value.
1498                           DAG.getIntPtrConstant(1));
1499     } else {
1500       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1501                                  CopyVT, InFlag).getValue(1);
1502       Val = Chain.getValue(0);
1503     }
1504     InFlag = Chain.getValue(2);
1505     InVals.push_back(Val);
1506   }
1507
1508   return Chain;
1509 }
1510
1511
1512 //===----------------------------------------------------------------------===//
1513 //                C & StdCall & Fast Calling Convention implementation
1514 //===----------------------------------------------------------------------===//
1515 //  StdCall calling convention seems to be standard for many Windows' API
1516 //  routines and around. It differs from C calling convention just a little:
1517 //  callee should clean up the stack, not caller. Symbols should be also
1518 //  decorated in some fancy way :) It doesn't support any vector arguments.
1519 //  For info on fast calling convention see Fast Calling Convention (tail call)
1520 //  implementation LowerX86_32FastCCCallTo.
1521
1522 /// CallIsStructReturn - Determines whether a call uses struct return
1523 /// semantics.
1524 static bool CallIsStructReturn(const SmallVectorImpl<ISD::OutputArg> &Outs) {
1525   if (Outs.empty())
1526     return false;
1527
1528   return Outs[0].Flags.isSRet();
1529 }
1530
1531 /// ArgsAreStructReturn - Determines whether a function uses struct
1532 /// return semantics.
1533 static bool
1534 ArgsAreStructReturn(const SmallVectorImpl<ISD::InputArg> &Ins) {
1535   if (Ins.empty())
1536     return false;
1537
1538   return Ins[0].Flags.isSRet();
1539 }
1540
1541 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1542 /// by "Src" to address "Dst" with size and alignment information specified by
1543 /// the specific parameter attribute. The copy will be passed as a byval
1544 /// function parameter.
1545 static SDValue
1546 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1547                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1548                           DebugLoc dl) {
1549   SDValue SizeNode = DAG.getConstant(Flags.getByValSize(), MVT::i32);
1550
1551   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
1552                        /*isVolatile*/false, /*AlwaysInline=*/true,
1553                        MachinePointerInfo(), MachinePointerInfo());
1554 }
1555
1556 /// IsTailCallConvention - Return true if the calling convention is one that
1557 /// supports tail call optimization.
1558 static bool IsTailCallConvention(CallingConv::ID CC) {
1559   return (CC == CallingConv::Fast || CC == CallingConv::GHC);
1560 }
1561
1562 bool X86TargetLowering::mayBeEmittedAsTailCall(CallInst *CI) const {
1563   if (!CI->isTailCall())
1564     return false;
1565
1566   CallSite CS(CI);
1567   CallingConv::ID CalleeCC = CS.getCallingConv();
1568   if (!IsTailCallConvention(CalleeCC) && CalleeCC != CallingConv::C)
1569     return false;
1570
1571   return true;
1572 }
1573
1574 /// FuncIsMadeTailCallSafe - Return true if the function is being made into
1575 /// a tailcall target by changing its ABI.
1576 static bool FuncIsMadeTailCallSafe(CallingConv::ID CC) {
1577   return GuaranteedTailCallOpt && IsTailCallConvention(CC);
1578 }
1579
1580 SDValue
1581 X86TargetLowering::LowerMemArgument(SDValue Chain,
1582                                     CallingConv::ID CallConv,
1583                                     const SmallVectorImpl<ISD::InputArg> &Ins,
1584                                     DebugLoc dl, SelectionDAG &DAG,
1585                                     const CCValAssign &VA,
1586                                     MachineFrameInfo *MFI,
1587                                     unsigned i) const {
1588   // Create the nodes corresponding to a load from this parameter slot.
1589   ISD::ArgFlagsTy Flags = Ins[i].Flags;
1590   bool AlwaysUseMutable = FuncIsMadeTailCallSafe(CallConv);
1591   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
1592   EVT ValVT;
1593
1594   // If value is passed by pointer we have address passed instead of the value
1595   // itself.
1596   if (VA.getLocInfo() == CCValAssign::Indirect)
1597     ValVT = VA.getLocVT();
1598   else
1599     ValVT = VA.getValVT();
1600
1601   // FIXME: For now, all byval parameter objects are marked mutable. This can be
1602   // changed with more analysis.
1603   // In case of tail call optimization mark all arguments mutable. Since they
1604   // could be overwritten by lowering of arguments in case of a tail call.
1605   if (Flags.isByVal()) {
1606     unsigned Bytes = Flags.getByValSize();
1607     if (Bytes == 0) Bytes = 1; // Don't create zero-sized stack objects.
1608     int FI = MFI->CreateFixedObject(Bytes, VA.getLocMemOffset(), isImmutable);
1609     return DAG.getFrameIndex(FI, getPointerTy());
1610   } else {
1611     int FI = MFI->CreateFixedObject(ValVT.getSizeInBits()/8,
1612                                     VA.getLocMemOffset(), isImmutable);
1613     SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1614     return DAG.getLoad(ValVT, dl, Chain, FIN,
1615                        MachinePointerInfo::getFixedStack(FI),
1616                        false, false, 0);
1617   }
1618 }
1619
1620 SDValue
1621 X86TargetLowering::LowerFormalArguments(SDValue Chain,
1622                                         CallingConv::ID CallConv,
1623                                         bool isVarArg,
1624                                       const SmallVectorImpl<ISD::InputArg> &Ins,
1625                                         DebugLoc dl,
1626                                         SelectionDAG &DAG,
1627                                         SmallVectorImpl<SDValue> &InVals)
1628                                           const {
1629   MachineFunction &MF = DAG.getMachineFunction();
1630   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1631
1632   const Function* Fn = MF.getFunction();
1633   if (Fn->hasExternalLinkage() &&
1634       Subtarget->isTargetCygMing() &&
1635       Fn->getName() == "main")
1636     FuncInfo->setForceFramePointer(true);
1637
1638   MachineFrameInfo *MFI = MF.getFrameInfo();
1639   bool Is64Bit = Subtarget->is64Bit();
1640   bool IsWin64 = Subtarget->isTargetWin64();
1641
1642   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1643          "Var args not supported with calling convention fastcc or ghc");
1644
1645   // Assign locations to all of the incoming arguments.
1646   SmallVector<CCValAssign, 16> ArgLocs;
1647   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1648                  ArgLocs, *DAG.getContext());
1649
1650   // Allocate shadow area for Win64
1651   if (IsWin64) {
1652     CCInfo.AllocateStack(32, 8);
1653   }
1654
1655   CCInfo.AnalyzeFormalArguments(Ins, CC_X86);
1656
1657   unsigned LastVal = ~0U;
1658   SDValue ArgValue;
1659   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1660     CCValAssign &VA = ArgLocs[i];
1661     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1662     // places.
1663     assert(VA.getValNo() != LastVal &&
1664            "Don't support value assigned to multiple locs yet");
1665     LastVal = VA.getValNo();
1666
1667     if (VA.isRegLoc()) {
1668       EVT RegVT = VA.getLocVT();
1669       TargetRegisterClass *RC = NULL;
1670       if (RegVT == MVT::i32)
1671         RC = X86::GR32RegisterClass;
1672       else if (Is64Bit && RegVT == MVT::i64)
1673         RC = X86::GR64RegisterClass;
1674       else if (RegVT == MVT::f32)
1675         RC = X86::FR32RegisterClass;
1676       else if (RegVT == MVT::f64)
1677         RC = X86::FR64RegisterClass;
1678       else if (RegVT.isVector() && RegVT.getSizeInBits() == 256)
1679         RC = X86::VR256RegisterClass;
1680       else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
1681         RC = X86::VR128RegisterClass;
1682       else if (RegVT == MVT::x86mmx)
1683         RC = X86::VR64RegisterClass;
1684       else
1685         llvm_unreachable("Unknown argument type!");
1686
1687       unsigned Reg = MF.addLiveIn(VA.getLocReg(), RC);
1688       ArgValue = DAG.getCopyFromReg(Chain, dl, Reg, RegVT);
1689
1690       // If this is an 8 or 16-bit value, it is really passed promoted to 32
1691       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
1692       // right size.
1693       if (VA.getLocInfo() == CCValAssign::SExt)
1694         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1695                                DAG.getValueType(VA.getValVT()));
1696       else if (VA.getLocInfo() == CCValAssign::ZExt)
1697         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1698                                DAG.getValueType(VA.getValVT()));
1699       else if (VA.getLocInfo() == CCValAssign::BCvt)
1700         ArgValue = DAG.getNode(ISD::BITCAST, dl, VA.getValVT(), ArgValue);
1701
1702       if (VA.isExtInLoc()) {
1703         // Handle MMX values passed in XMM regs.
1704         if (RegVT.isVector()) {
1705           ArgValue = DAG.getNode(X86ISD::MOVDQ2Q, dl, VA.getValVT(),
1706                                  ArgValue);
1707         } else
1708           ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1709       }
1710     } else {
1711       assert(VA.isMemLoc());
1712       ArgValue = LowerMemArgument(Chain, CallConv, Ins, dl, DAG, VA, MFI, i);
1713     }
1714
1715     // If value is passed via pointer - do a load.
1716     if (VA.getLocInfo() == CCValAssign::Indirect)
1717       ArgValue = DAG.getLoad(VA.getValVT(), dl, Chain, ArgValue,
1718                              MachinePointerInfo(), false, false, 0);
1719
1720     InVals.push_back(ArgValue);
1721   }
1722
1723   // The x86-64 ABI for returning structs by value requires that we copy
1724   // the sret argument into %rax for the return. Save the argument into
1725   // a virtual register so that we can access it from the return points.
1726   if (Is64Bit && MF.getFunction()->hasStructRetAttr()) {
1727     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1728     unsigned Reg = FuncInfo->getSRetReturnReg();
1729     if (!Reg) {
1730       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1731       FuncInfo->setSRetReturnReg(Reg);
1732     }
1733     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, InVals[0]);
1734     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Chain);
1735   }
1736
1737   unsigned StackSize = CCInfo.getNextStackOffset();
1738   // Align stack specially for tail calls.
1739   if (FuncIsMadeTailCallSafe(CallConv))
1740     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
1741
1742   // If the function takes variable number of arguments, make a frame index for
1743   // the start of the first vararg value... for expansion of llvm.va_start.
1744   if (isVarArg) {
1745     if (Is64Bit || (CallConv != CallingConv::X86_FastCall &&
1746                     CallConv != CallingConv::X86_ThisCall)) {
1747       FuncInfo->setVarArgsFrameIndex(MFI->CreateFixedObject(1, StackSize,true));
1748     }
1749     if (Is64Bit) {
1750       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1751
1752       // FIXME: We should really autogenerate these arrays
1753       static const unsigned GPR64ArgRegsWin64[] = {
1754         X86::RCX, X86::RDX, X86::R8,  X86::R9
1755       };
1756       static const unsigned GPR64ArgRegs64Bit[] = {
1757         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1758       };
1759       static const unsigned XMMArgRegs64Bit[] = {
1760         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1761         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1762       };
1763       const unsigned *GPR64ArgRegs;
1764       unsigned NumXMMRegs = 0;
1765
1766       if (IsWin64) {
1767         // The XMM registers which might contain var arg parameters are shadowed
1768         // in their paired GPR.  So we only need to save the GPR to their home
1769         // slots.
1770         TotalNumIntRegs = 4;
1771         GPR64ArgRegs = GPR64ArgRegsWin64;
1772       } else {
1773         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1774         GPR64ArgRegs = GPR64ArgRegs64Bit;
1775
1776         NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs64Bit, TotalNumXMMRegs);
1777       }
1778       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1779                                                        TotalNumIntRegs);
1780
1781       bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
1782       assert(!(NumXMMRegs && !Subtarget->hasXMM()) &&
1783              "SSE register cannot be used when SSE is disabled!");
1784       assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
1785              "SSE register cannot be used when SSE is disabled!");
1786       if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasXMM())
1787         // Kernel mode asks for SSE to be disabled, so don't push them
1788         // on the stack.
1789         TotalNumXMMRegs = 0;
1790
1791       if (IsWin64) {
1792         const TargetFrameLowering &TFI = *getTargetMachine().getFrameLowering();
1793         // Get to the caller-allocated home save location.  Add 8 to account
1794         // for the return address.
1795         int HomeOffset = TFI.getOffsetOfLocalArea() + 8;
1796         FuncInfo->setRegSaveFrameIndex(
1797           MFI->CreateFixedObject(1, NumIntRegs * 8 + HomeOffset, false));
1798         // Fixup to set vararg frame on shadow area (4 x i64).
1799         if (NumIntRegs < 4)
1800           FuncInfo->setVarArgsFrameIndex(FuncInfo->getRegSaveFrameIndex());
1801       } else {
1802         // For X86-64, if there are vararg parameters that are passed via
1803         // registers, then we must store them to their spots on the stack so they
1804         // may be loaded by deferencing the result of va_next.
1805         FuncInfo->setVarArgsGPOffset(NumIntRegs * 8);
1806         FuncInfo->setVarArgsFPOffset(TotalNumIntRegs * 8 + NumXMMRegs * 16);
1807         FuncInfo->setRegSaveFrameIndex(
1808           MFI->CreateStackObject(TotalNumIntRegs * 8 + TotalNumXMMRegs * 16, 16,
1809                                false));
1810       }
1811
1812       // Store the integer parameter registers.
1813       SmallVector<SDValue, 8> MemOps;
1814       SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
1815                                         getPointerTy());
1816       unsigned Offset = FuncInfo->getVarArgsGPOffset();
1817       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
1818         SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1819                                   DAG.getIntPtrConstant(Offset));
1820         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1821                                      X86::GR64RegisterClass);
1822         SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::i64);
1823         SDValue Store =
1824           DAG.getStore(Val.getValue(1), dl, Val, FIN,
1825                        MachinePointerInfo::getFixedStack(
1826                          FuncInfo->getRegSaveFrameIndex(), Offset),
1827                        false, false, 0);
1828         MemOps.push_back(Store);
1829         Offset += 8;
1830       }
1831
1832       if (TotalNumXMMRegs != 0 && NumXMMRegs != TotalNumXMMRegs) {
1833         // Now store the XMM (fp + vector) parameter registers.
1834         SmallVector<SDValue, 11> SaveXMMOps;
1835         SaveXMMOps.push_back(Chain);
1836
1837         unsigned AL = MF.addLiveIn(X86::AL, X86::GR8RegisterClass);
1838         SDValue ALVal = DAG.getCopyFromReg(DAG.getEntryNode(), dl, AL, MVT::i8);
1839         SaveXMMOps.push_back(ALVal);
1840
1841         SaveXMMOps.push_back(DAG.getIntPtrConstant(
1842                                FuncInfo->getRegSaveFrameIndex()));
1843         SaveXMMOps.push_back(DAG.getIntPtrConstant(
1844                                FuncInfo->getVarArgsFPOffset()));
1845
1846         for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
1847           unsigned VReg = MF.addLiveIn(XMMArgRegs64Bit[NumXMMRegs],
1848                                        X86::VR128RegisterClass);
1849           SDValue Val = DAG.getCopyFromReg(Chain, dl, VReg, MVT::v4f32);
1850           SaveXMMOps.push_back(Val);
1851         }
1852         MemOps.push_back(DAG.getNode(X86ISD::VASTART_SAVE_XMM_REGS, dl,
1853                                      MVT::Other,
1854                                      &SaveXMMOps[0], SaveXMMOps.size()));
1855       }
1856
1857       if (!MemOps.empty())
1858         Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1859                             &MemOps[0], MemOps.size());
1860     }
1861   }
1862
1863   // Some CCs need callee pop.
1864   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt)) {
1865     FuncInfo->setBytesToPopOnReturn(StackSize); // Callee pops everything.
1866   } else {
1867     FuncInfo->setBytesToPopOnReturn(0); // Callee pops nothing.
1868     // If this is an sret function, the return should pop the hidden pointer.
1869     if (!Is64Bit && !IsTailCallConvention(CallConv) && ArgsAreStructReturn(Ins))
1870       FuncInfo->setBytesToPopOnReturn(4);
1871   }
1872
1873   if (!Is64Bit) {
1874     // RegSaveFrameIndex is X86-64 only.
1875     FuncInfo->setRegSaveFrameIndex(0xAAAAAAA);
1876     if (CallConv == CallingConv::X86_FastCall ||
1877         CallConv == CallingConv::X86_ThisCall)
1878       // fastcc functions can't have varargs.
1879       FuncInfo->setVarArgsFrameIndex(0xAAAAAAA);
1880   }
1881
1882   return Chain;
1883 }
1884
1885 SDValue
1886 X86TargetLowering::LowerMemOpCallTo(SDValue Chain,
1887                                     SDValue StackPtr, SDValue Arg,
1888                                     DebugLoc dl, SelectionDAG &DAG,
1889                                     const CCValAssign &VA,
1890                                     ISD::ArgFlagsTy Flags) const {
1891   unsigned LocMemOffset = VA.getLocMemOffset();
1892   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1893   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1894   if (Flags.isByVal())
1895     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
1896
1897   return DAG.getStore(Chain, dl, Arg, PtrOff,
1898                       MachinePointerInfo::getStack(LocMemOffset),
1899                       false, false, 0);
1900 }
1901
1902 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
1903 /// optimization is performed and it is required.
1904 SDValue
1905 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
1906                                            SDValue &OutRetAddr, SDValue Chain,
1907                                            bool IsTailCall, bool Is64Bit,
1908                                            int FPDiff, DebugLoc dl) const {
1909   // Adjust the Return address stack slot.
1910   EVT VT = getPointerTy();
1911   OutRetAddr = getReturnAddressFrameIndex(DAG);
1912
1913   // Load the "old" Return address.
1914   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, MachinePointerInfo(),
1915                            false, false, 0);
1916   return SDValue(OutRetAddr.getNode(), 1);
1917 }
1918
1919 /// EmitTailCallStoreRetAddr - Emit a store of the return address if tail call
1920 /// optimization is performed and it is required (FPDiff!=0).
1921 static SDValue
1922 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
1923                          SDValue Chain, SDValue RetAddrFrIdx,
1924                          bool Is64Bit, int FPDiff, DebugLoc dl) {
1925   // Store the return address to the appropriate stack slot.
1926   if (!FPDiff) return Chain;
1927   // Calculate the new stack slot for the return address.
1928   int SlotSize = Is64Bit ? 8 : 4;
1929   int NewReturnAddrFI =
1930     MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize, false);
1931   EVT VT = Is64Bit ? MVT::i64 : MVT::i32;
1932   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
1933   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
1934                        MachinePointerInfo::getFixedStack(NewReturnAddrFI),
1935                        false, false, 0);
1936   return Chain;
1937 }
1938
1939 SDValue
1940 X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
1941                              CallingConv::ID CallConv, bool isVarArg,
1942                              bool &isTailCall,
1943                              const SmallVectorImpl<ISD::OutputArg> &Outs,
1944                              const SmallVectorImpl<SDValue> &OutVals,
1945                              const SmallVectorImpl<ISD::InputArg> &Ins,
1946                              DebugLoc dl, SelectionDAG &DAG,
1947                              SmallVectorImpl<SDValue> &InVals) const {
1948   MachineFunction &MF = DAG.getMachineFunction();
1949   bool Is64Bit        = Subtarget->is64Bit();
1950   bool IsWin64        = Subtarget->isTargetWin64();
1951   bool IsStructRet    = CallIsStructReturn(Outs);
1952   bool IsSibcall      = false;
1953
1954   if (isTailCall) {
1955     // Check if it's really possible to do a tail call.
1956     isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv,
1957                     isVarArg, IsStructRet, MF.getFunction()->hasStructRetAttr(),
1958                                                    Outs, OutVals, Ins, DAG);
1959
1960     // Sibcalls are automatically detected tailcalls which do not require
1961     // ABI changes.
1962     if (!GuaranteedTailCallOpt && isTailCall)
1963       IsSibcall = true;
1964
1965     if (isTailCall)
1966       ++NumTailCalls;
1967   }
1968
1969   assert(!(isVarArg && IsTailCallConvention(CallConv)) &&
1970          "Var args not supported with calling convention fastcc or ghc");
1971
1972   // Analyze operands of the call, assigning locations to each operand.
1973   SmallVector<CCValAssign, 16> ArgLocs;
1974   CCState CCInfo(CallConv, isVarArg, MF, getTargetMachine(),
1975                  ArgLocs, *DAG.getContext());
1976
1977   // Allocate shadow area for Win64
1978   if (IsWin64) {
1979     CCInfo.AllocateStack(32, 8);
1980   }
1981
1982   CCInfo.AnalyzeCallOperands(Outs, CC_X86);
1983
1984   // Get a count of how many bytes are to be pushed on the stack.
1985   unsigned NumBytes = CCInfo.getNextStackOffset();
1986   if (IsSibcall)
1987     // This is a sibcall. The memory operands are available in caller's
1988     // own caller's stack.
1989     NumBytes = 0;
1990   else if (GuaranteedTailCallOpt && IsTailCallConvention(CallConv))
1991     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
1992
1993   int FPDiff = 0;
1994   if (isTailCall && !IsSibcall) {
1995     // Lower arguments at fp - stackoffset + fpdiff.
1996     unsigned NumBytesCallerPushed =
1997       MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1998     FPDiff = NumBytesCallerPushed - NumBytes;
1999
2000     // Set the delta of movement of the returnaddr stackslot.
2001     // But only set if delta is greater than previous delta.
2002     if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
2003       MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
2004   }
2005
2006   if (!IsSibcall)
2007     Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
2008
2009   SDValue RetAddrFrIdx;
2010   // Load return address for tail calls.
2011   if (isTailCall && FPDiff)
2012     Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, isTailCall,
2013                                     Is64Bit, FPDiff, dl);
2014
2015   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
2016   SmallVector<SDValue, 8> MemOpChains;
2017   SDValue StackPtr;
2018
2019   // Walk the register/memloc assignments, inserting copies/loads.  In the case
2020   // of tail call optimization arguments are handle later.
2021   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2022     CCValAssign &VA = ArgLocs[i];
2023     EVT RegVT = VA.getLocVT();
2024     SDValue Arg = OutVals[i];
2025     ISD::ArgFlagsTy Flags = Outs[i].Flags;
2026     bool isByVal = Flags.isByVal();
2027
2028     // Promote the value if needed.
2029     switch (VA.getLocInfo()) {
2030     default: llvm_unreachable("Unknown loc info!");
2031     case CCValAssign::Full: break;
2032     case CCValAssign::SExt:
2033       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, RegVT, Arg);
2034       break;
2035     case CCValAssign::ZExt:
2036       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, RegVT, Arg);
2037       break;
2038     case CCValAssign::AExt:
2039       if (RegVT.isVector() && RegVT.getSizeInBits() == 128) {
2040         // Special case: passing MMX values in XMM registers.
2041         Arg = DAG.getNode(ISD::BITCAST, dl, MVT::i64, Arg);
2042         Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
2043         Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
2044       } else
2045         Arg = DAG.getNode(ISD::ANY_EXTEND, dl, RegVT, Arg);
2046       break;
2047     case CCValAssign::BCvt:
2048       Arg = DAG.getNode(ISD::BITCAST, dl, RegVT, Arg);
2049       break;
2050     case CCValAssign::Indirect: {
2051       // Store the argument.
2052       SDValue SpillSlot = DAG.CreateStackTemporary(VA.getValVT());
2053       int FI = cast<FrameIndexSDNode>(SpillSlot)->getIndex();
2054       Chain = DAG.getStore(Chain, dl, Arg, SpillSlot,
2055                            MachinePointerInfo::getFixedStack(FI),
2056                            false, false, 0);
2057       Arg = SpillSlot;
2058       break;
2059     }
2060     }
2061
2062     if (VA.isRegLoc()) {
2063       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
2064       if (isVarArg && IsWin64) {
2065         // Win64 ABI requires argument XMM reg to be copied to the corresponding
2066         // shadow reg if callee is a varargs function.
2067         unsigned ShadowReg = 0;
2068         switch (VA.getLocReg()) {
2069         case X86::XMM0: ShadowReg = X86::RCX; break;
2070         case X86::XMM1: ShadowReg = X86::RDX; break;
2071         case X86::XMM2: ShadowReg = X86::R8; break;
2072         case X86::XMM3: ShadowReg = X86::R9; break;
2073         }
2074         if (ShadowReg)
2075           RegsToPass.push_back(std::make_pair(ShadowReg, Arg));
2076       }
2077     } else if (!IsSibcall && (!isTailCall || isByVal)) {
2078       assert(VA.isMemLoc());
2079       if (StackPtr.getNode() == 0)
2080         StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
2081       MemOpChains.push_back(LowerMemOpCallTo(Chain, StackPtr, Arg,
2082                                              dl, DAG, VA, Flags));
2083     }
2084   }
2085
2086   if (!MemOpChains.empty())
2087     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2088                         &MemOpChains[0], MemOpChains.size());
2089
2090   // Build a sequence of copy-to-reg nodes chained together with token chain
2091   // and flag operands which copy the outgoing args into registers.
2092   SDValue InFlag;
2093   // Tail call byval lowering might overwrite argument registers so in case of
2094   // tail call optimization the copies to registers are lowered later.
2095   if (!isTailCall)
2096     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2097       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2098                                RegsToPass[i].second, InFlag);
2099       InFlag = Chain.getValue(1);
2100     }
2101
2102   if (Subtarget->isPICStyleGOT()) {
2103     // ELF / PIC requires GOT in the EBX register before function calls via PLT
2104     // GOT pointer.
2105     if (!isTailCall) {
2106       Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
2107                                DAG.getNode(X86ISD::GlobalBaseReg,
2108                                            DebugLoc(), getPointerTy()),
2109                                InFlag);
2110       InFlag = Chain.getValue(1);
2111     } else {
2112       // If we are tail calling and generating PIC/GOT style code load the
2113       // address of the callee into ECX. The value in ecx is used as target of
2114       // the tail jump. This is done to circumvent the ebx/callee-saved problem
2115       // for tail calls on PIC/GOT architectures. Normally we would just put the
2116       // address of GOT into ebx and then call target@PLT. But for tail calls
2117       // ebx would be restored (since ebx is callee saved) before jumping to the
2118       // target@PLT.
2119
2120       // Note: The actual moving to ECX is done further down.
2121       GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
2122       if (G && !G->getGlobal()->hasHiddenVisibility() &&
2123           !G->getGlobal()->hasProtectedVisibility())
2124         Callee = LowerGlobalAddress(Callee, DAG);
2125       else if (isa<ExternalSymbolSDNode>(Callee))
2126         Callee = LowerExternalSymbol(Callee, DAG);
2127     }
2128   }
2129
2130   if (Is64Bit && isVarArg && !IsWin64) {
2131     // From AMD64 ABI document:
2132     // For calls that may call functions that use varargs or stdargs
2133     // (prototype-less calls or calls to functions containing ellipsis (...) in
2134     // the declaration) %al is used as hidden argument to specify the number
2135     // of SSE registers used. The contents of %al do not need to match exactly
2136     // the number of registers, but must be an ubound on the number of SSE
2137     // registers used and is in the range 0 - 8 inclusive.
2138
2139     // Count the number of XMM registers allocated.
2140     static const unsigned XMMArgRegs[] = {
2141       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
2142       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
2143     };
2144     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
2145     assert((Subtarget->hasXMM() || !NumXMMRegs)
2146            && "SSE registers cannot be used when SSE is disabled");
2147
2148     Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
2149                              DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
2150     InFlag = Chain.getValue(1);
2151   }
2152
2153
2154   // For tail calls lower the arguments to the 'real' stack slot.
2155   if (isTailCall) {
2156     // Force all the incoming stack arguments to be loaded from the stack
2157     // before any new outgoing arguments are stored to the stack, because the
2158     // outgoing stack slots may alias the incoming argument stack slots, and
2159     // the alias isn't otherwise explicit. This is slightly more conservative
2160     // than necessary, because it means that each store effectively depends
2161     // on every argument instead of just those arguments it would clobber.
2162     SDValue ArgChain = DAG.getStackArgumentTokenFactor(Chain);
2163
2164     SmallVector<SDValue, 8> MemOpChains2;
2165     SDValue FIN;
2166     int FI = 0;
2167     // Do not flag preceding copytoreg stuff together with the following stuff.
2168     InFlag = SDValue();
2169     if (GuaranteedTailCallOpt) {
2170       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2171         CCValAssign &VA = ArgLocs[i];
2172         if (VA.isRegLoc())
2173           continue;
2174         assert(VA.isMemLoc());
2175         SDValue Arg = OutVals[i];
2176         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2177         // Create frame index.
2178         int32_t Offset = VA.getLocMemOffset()+FPDiff;
2179         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
2180         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset, true);
2181         FIN = DAG.getFrameIndex(FI, getPointerTy());
2182
2183         if (Flags.isByVal()) {
2184           // Copy relative to framepointer.
2185           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
2186           if (StackPtr.getNode() == 0)
2187             StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
2188                                           getPointerTy());
2189           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
2190
2191           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN,
2192                                                            ArgChain,
2193                                                            Flags, DAG, dl));
2194         } else {
2195           // Store relative to framepointer.
2196           MemOpChains2.push_back(
2197             DAG.getStore(ArgChain, dl, Arg, FIN,
2198                          MachinePointerInfo::getFixedStack(FI),
2199                          false, false, 0));
2200         }
2201       }
2202     }
2203
2204     if (!MemOpChains2.empty())
2205       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
2206                           &MemOpChains2[0], MemOpChains2.size());
2207
2208     // Copy arguments to their registers.
2209     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
2210       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
2211                                RegsToPass[i].second, InFlag);
2212       InFlag = Chain.getValue(1);
2213     }
2214     InFlag =SDValue();
2215
2216     // Store the return address to the appropriate stack slot.
2217     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
2218                                      FPDiff, dl);
2219   }
2220
2221   if (getTargetMachine().getCodeModel() == CodeModel::Large) {
2222     assert(Is64Bit && "Large code model is only legal in 64-bit mode.");
2223     // In the 64-bit large code model, we have to make all calls
2224     // through a register, since the call instruction's 32-bit
2225     // pc-relative offset may not be large enough to hold the whole
2226     // address.
2227   } else if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
2228     // If the callee is a GlobalAddress node (quite common, every direct call
2229     // is) turn it into a TargetGlobalAddress node so that legalize doesn't hack
2230     // it.
2231
2232     // We should use extra load for direct calls to dllimported functions in
2233     // non-JIT mode.
2234     const GlobalValue *GV = G->getGlobal();
2235     if (!GV->hasDLLImportLinkage()) {
2236       unsigned char OpFlags = 0;
2237       bool ExtraLoad = false;
2238       unsigned WrapperKind = ISD::DELETED_NODE;
2239
2240       // On ELF targets, in both X86-64 and X86-32 mode, direct calls to
2241       // external symbols most go through the PLT in PIC mode.  If the symbol
2242       // has hidden or protected visibility, or if it is static or local, then
2243       // we don't need to use the PLT - we can directly call it.
2244       if (Subtarget->isTargetELF() &&
2245           getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
2246           GV->hasDefaultVisibility() && !GV->hasLocalLinkage()) {
2247         OpFlags = X86II::MO_PLT;
2248       } else if (Subtarget->isPICStyleStubAny() &&
2249                  (GV->isDeclaration() || GV->isWeakForLinker()) &&
2250                  (!Subtarget->getTargetTriple().isMacOSX() ||
2251                   Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2252         // PC-relative references to external symbols should go through $stub,
2253         // unless we're building with the leopard linker or later, which
2254         // automatically synthesizes these stubs.
2255         OpFlags = X86II::MO_DARWIN_STUB;
2256       } else if (Subtarget->isPICStyleRIPRel() &&
2257                  isa<Function>(GV) &&
2258                  cast<Function>(GV)->hasFnAttr(Attribute::NonLazyBind)) {
2259         // If the function is marked as non-lazy, generate an indirect call
2260         // which loads from the GOT directly. This avoids runtime overhead
2261         // at the cost of eager binding (and one extra byte of encoding).
2262         OpFlags = X86II::MO_GOTPCREL;
2263         WrapperKind = X86ISD::WrapperRIP;
2264         ExtraLoad = true;
2265       }
2266
2267       Callee = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(),
2268                                           G->getOffset(), OpFlags);
2269
2270       // Add a wrapper if needed.
2271       if (WrapperKind != ISD::DELETED_NODE)
2272         Callee = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Callee);
2273       // Add extra indirection if needed.
2274       if (ExtraLoad)
2275         Callee = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Callee,
2276                              MachinePointerInfo::getGOT(),
2277                              false, false, 0);
2278     }
2279   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
2280     unsigned char OpFlags = 0;
2281
2282     // On ELF targets, in either X86-64 or X86-32 mode, direct calls to
2283     // external symbols should go through the PLT.
2284     if (Subtarget->isTargetELF() &&
2285         getTargetMachine().getRelocationModel() == Reloc::PIC_) {
2286       OpFlags = X86II::MO_PLT;
2287     } else if (Subtarget->isPICStyleStubAny() &&
2288                (!Subtarget->getTargetTriple().isMacOSX() ||
2289                 Subtarget->getTargetTriple().isMacOSXVersionLT(10, 5))) {
2290       // PC-relative references to external symbols should go through $stub,
2291       // unless we're building with the leopard linker or later, which
2292       // automatically synthesizes these stubs.
2293       OpFlags = X86II::MO_DARWIN_STUB;
2294     }
2295
2296     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy(),
2297                                          OpFlags);
2298   }
2299
2300   // Returns a chain & a flag for retval copy to use.
2301   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
2302   SmallVector<SDValue, 8> Ops;
2303
2304   if (!IsSibcall && isTailCall) {
2305     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
2306                            DAG.getIntPtrConstant(0, true), InFlag);
2307     InFlag = Chain.getValue(1);
2308   }
2309
2310   Ops.push_back(Chain);
2311   Ops.push_back(Callee);
2312
2313   if (isTailCall)
2314     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
2315
2316   // Add argument registers to the end of the list so that they are known live
2317   // into the call.
2318   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
2319     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
2320                                   RegsToPass[i].second.getValueType()));
2321
2322   // Add an implicit use GOT pointer in EBX.
2323   if (!isTailCall && Subtarget->isPICStyleGOT())
2324     Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
2325
2326   // Add an implicit use of AL for non-Windows x86 64-bit vararg functions.
2327   if (Is64Bit && isVarArg && !IsWin64)
2328     Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
2329
2330   if (InFlag.getNode())
2331     Ops.push_back(InFlag);
2332
2333   if (isTailCall) {
2334     // We used to do:
2335     //// If this is the first return lowered for this function, add the regs
2336     //// to the liveout set for the function.
2337     // This isn't right, although it's probably harmless on x86; liveouts
2338     // should be computed from returns not tail calls.  Consider a void
2339     // function making a tail call to a function returning int.
2340     return DAG.getNode(X86ISD::TC_RETURN, dl,
2341                        NodeTys, &Ops[0], Ops.size());
2342   }
2343
2344   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
2345   InFlag = Chain.getValue(1);
2346
2347   // Create the CALLSEQ_END node.
2348   unsigned NumBytesForCalleeToPush;
2349   if (X86::isCalleePop(CallConv, Is64Bit, isVarArg, GuaranteedTailCallOpt))
2350     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
2351   else if (!Is64Bit && !IsTailCallConvention(CallConv) && IsStructRet)
2352     // If this is a call to a struct-return function, the callee
2353     // pops the hidden struct pointer, so we have to push it back.
2354     // This is common for Darwin/X86, Linux & Mingw32 targets.
2355     NumBytesForCalleeToPush = 4;
2356   else
2357     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
2358
2359   // Returns a flag for retval copy to use.
2360   if (!IsSibcall) {
2361     Chain = DAG.getCALLSEQ_END(Chain,
2362                                DAG.getIntPtrConstant(NumBytes, true),
2363                                DAG.getIntPtrConstant(NumBytesForCalleeToPush,
2364                                                      true),
2365                                InFlag);
2366     InFlag = Chain.getValue(1);
2367   }
2368
2369   // Handle result values, copying them out of physregs into vregs that we
2370   // return.
2371   return LowerCallResult(Chain, InFlag, CallConv, isVarArg,
2372                          Ins, dl, DAG, InVals);
2373 }
2374
2375
2376 //===----------------------------------------------------------------------===//
2377 //                Fast Calling Convention (tail call) implementation
2378 //===----------------------------------------------------------------------===//
2379
2380 //  Like std call, callee cleans arguments, convention except that ECX is
2381 //  reserved for storing the tail called function address. Only 2 registers are
2382 //  free for argument passing (inreg). Tail call optimization is performed
2383 //  provided:
2384 //                * tailcallopt is enabled
2385 //                * caller/callee are fastcc
2386 //  On X86_64 architecture with GOT-style position independent code only local
2387 //  (within module) calls are supported at the moment.
2388 //  To keep the stack aligned according to platform abi the function
2389 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
2390 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
2391 //  If a tail called function callee has more arguments than the caller the
2392 //  caller needs to make sure that there is room to move the RETADDR to. This is
2393 //  achieved by reserving an area the size of the argument delta right after the
2394 //  original REtADDR, but before the saved framepointer or the spilled registers
2395 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
2396 //  stack layout:
2397 //    arg1
2398 //    arg2
2399 //    RETADDR
2400 //    [ new RETADDR
2401 //      move area ]
2402 //    (possible EBP)
2403 //    ESI
2404 //    EDI
2405 //    local1 ..
2406
2407 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
2408 /// for a 16 byte align requirement.
2409 unsigned
2410 X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
2411                                                SelectionDAG& DAG) const {
2412   MachineFunction &MF = DAG.getMachineFunction();
2413   const TargetMachine &TM = MF.getTarget();
2414   const TargetFrameLowering &TFI = *TM.getFrameLowering();
2415   unsigned StackAlignment = TFI.getStackAlignment();
2416   uint64_t AlignMask = StackAlignment - 1;
2417   int64_t Offset = StackSize;
2418   uint64_t SlotSize = TD->getPointerSize();
2419   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
2420     // Number smaller than 12 so just add the difference.
2421     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
2422   } else {
2423     // Mask out lower bits, add stackalignment once plus the 12 bytes.
2424     Offset = ((~AlignMask) & Offset) + StackAlignment +
2425       (StackAlignment-SlotSize);
2426   }
2427   return Offset;
2428 }
2429
2430 /// MatchingStackOffset - Return true if the given stack call argument is
2431 /// already available in the same position (relatively) of the caller's
2432 /// incoming argument stack.
2433 static
2434 bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
2435                          MachineFrameInfo *MFI, const MachineRegisterInfo *MRI,
2436                          const X86InstrInfo *TII) {
2437   unsigned Bytes = Arg.getValueType().getSizeInBits() / 8;
2438   int FI = INT_MAX;
2439   if (Arg.getOpcode() == ISD::CopyFromReg) {
2440     unsigned VR = cast<RegisterSDNode>(Arg.getOperand(1))->getReg();
2441     if (!TargetRegisterInfo::isVirtualRegister(VR))
2442       return false;
2443     MachineInstr *Def = MRI->getVRegDef(VR);
2444     if (!Def)
2445       return false;
2446     if (!Flags.isByVal()) {
2447       if (!TII->isLoadFromStackSlot(Def, FI))
2448         return false;
2449     } else {
2450       unsigned Opcode = Def->getOpcode();
2451       if ((Opcode == X86::LEA32r || Opcode == X86::LEA64r) &&
2452           Def->getOperand(1).isFI()) {
2453         FI = Def->getOperand(1).getIndex();
2454         Bytes = Flags.getByValSize();
2455       } else
2456         return false;
2457     }
2458   } else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
2459     if (Flags.isByVal())
2460       // ByVal argument is passed in as a pointer but it's now being
2461       // dereferenced. e.g.
2462       // define @foo(%struct.X* %A) {
2463       //   tail call @bar(%struct.X* byval %A)
2464       // }
2465       return false;
2466     SDValue Ptr = Ld->getBasePtr();
2467     FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr);
2468     if (!FINode)
2469       return false;
2470     FI = FINode->getIndex();
2471   } else if (Arg.getOpcode() == ISD::FrameIndex && Flags.isByVal()) {
2472     FrameIndexSDNode *FINode = cast<FrameIndexSDNode>(Arg);
2473     FI = FINode->getIndex();
2474     Bytes = Flags.getByValSize();
2475   } else
2476     return false;
2477
2478   assert(FI != INT_MAX);
2479   if (!MFI->isFixedObjectIndex(FI))
2480     return false;
2481   return Offset == MFI->getObjectOffset(FI) && Bytes == MFI->getObjectSize(FI);
2482 }
2483
2484 /// IsEligibleForTailCallOptimization - Check whether the call is eligible
2485 /// for tail call optimization. Targets which want to do tail call
2486 /// optimization should implement this function.
2487 bool
2488 X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
2489                                                      CallingConv::ID CalleeCC,
2490                                                      bool isVarArg,
2491                                                      bool isCalleeStructRet,
2492                                                      bool isCallerStructRet,
2493                                     const SmallVectorImpl<ISD::OutputArg> &Outs,
2494                                     const SmallVectorImpl<SDValue> &OutVals,
2495                                     const SmallVectorImpl<ISD::InputArg> &Ins,
2496                                                      SelectionDAG& DAG) const {
2497   if (!IsTailCallConvention(CalleeCC) &&
2498       CalleeCC != CallingConv::C)
2499     return false;
2500
2501   // If -tailcallopt is specified, make fastcc functions tail-callable.
2502   const MachineFunction &MF = DAG.getMachineFunction();
2503   const Function *CallerF = DAG.getMachineFunction().getFunction();
2504   CallingConv::ID CallerCC = CallerF->getCallingConv();
2505   bool CCMatch = CallerCC == CalleeCC;
2506
2507   if (GuaranteedTailCallOpt) {
2508     if (IsTailCallConvention(CalleeCC) && CCMatch)
2509       return true;
2510     return false;
2511   }
2512
2513   // Look for obvious safe cases to perform tail call optimization that do not
2514   // require ABI changes. This is what gcc calls sibcall.
2515
2516   // Can't do sibcall if stack needs to be dynamically re-aligned. PEI needs to
2517   // emit a special epilogue.
2518   if (RegInfo->needsStackRealignment(MF))
2519     return false;
2520
2521   // Also avoid sibcall optimization if either caller or callee uses struct
2522   // return semantics.
2523   if (isCalleeStructRet || isCallerStructRet)
2524     return false;
2525
2526   // An stdcall caller is expected to clean up its arguments; the callee
2527   // isn't going to do that.
2528   if (!CCMatch && CallerCC==CallingConv::X86_StdCall)
2529     return false;
2530
2531   // Do not sibcall optimize vararg calls unless all arguments are passed via
2532   // registers.
2533   if (isVarArg && !Outs.empty()) {
2534
2535     // Optimizing for varargs on Win64 is unlikely to be safe without
2536     // additional testing.
2537     if (Subtarget->isTargetWin64())
2538       return false;
2539
2540     SmallVector<CCValAssign, 16> ArgLocs;
2541     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2542                    getTargetMachine(), ArgLocs, *DAG.getContext());
2543
2544     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2545     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i)
2546       if (!ArgLocs[i].isRegLoc())
2547         return false;
2548   }
2549
2550   // If the call result is in ST0 / ST1, it needs to be popped off the x87 stack.
2551   // Therefore if it's not used by the call it is not safe to optimize this into
2552   // a sibcall.
2553   bool Unused = false;
2554   for (unsigned i = 0, e = Ins.size(); i != e; ++i) {
2555     if (!Ins[i].Used) {
2556       Unused = true;
2557       break;
2558     }
2559   }
2560   if (Unused) {
2561     SmallVector<CCValAssign, 16> RVLocs;
2562     CCState CCInfo(CalleeCC, false, DAG.getMachineFunction(),
2563                    getTargetMachine(), RVLocs, *DAG.getContext());
2564     CCInfo.AnalyzeCallResult(Ins, RetCC_X86);
2565     for (unsigned i = 0, e = RVLocs.size(); i != e; ++i) {
2566       CCValAssign &VA = RVLocs[i];
2567       if (VA.getLocReg() == X86::ST0 || VA.getLocReg() == X86::ST1)
2568         return false;
2569     }
2570   }
2571
2572   // If the calling conventions do not match, then we'd better make sure the
2573   // results are returned in the same way as what the caller expects.
2574   if (!CCMatch) {
2575     SmallVector<CCValAssign, 16> RVLocs1;
2576     CCState CCInfo1(CalleeCC, false, DAG.getMachineFunction(),
2577                     getTargetMachine(), RVLocs1, *DAG.getContext());
2578     CCInfo1.AnalyzeCallResult(Ins, RetCC_X86);
2579
2580     SmallVector<CCValAssign, 16> RVLocs2;
2581     CCState CCInfo2(CallerCC, false, DAG.getMachineFunction(),
2582                     getTargetMachine(), RVLocs2, *DAG.getContext());
2583     CCInfo2.AnalyzeCallResult(Ins, RetCC_X86);
2584
2585     if (RVLocs1.size() != RVLocs2.size())
2586       return false;
2587     for (unsigned i = 0, e = RVLocs1.size(); i != e; ++i) {
2588       if (RVLocs1[i].isRegLoc() != RVLocs2[i].isRegLoc())
2589         return false;
2590       if (RVLocs1[i].getLocInfo() != RVLocs2[i].getLocInfo())
2591         return false;
2592       if (RVLocs1[i].isRegLoc()) {
2593         if (RVLocs1[i].getLocReg() != RVLocs2[i].getLocReg())
2594           return false;
2595       } else {
2596         if (RVLocs1[i].getLocMemOffset() != RVLocs2[i].getLocMemOffset())
2597           return false;
2598       }
2599     }
2600   }
2601
2602   // If the callee takes no arguments then go on to check the results of the
2603   // call.
2604   if (!Outs.empty()) {
2605     // Check if stack adjustment is needed. For now, do not do this if any
2606     // argument is passed on the stack.
2607     SmallVector<CCValAssign, 16> ArgLocs;
2608     CCState CCInfo(CalleeCC, isVarArg, DAG.getMachineFunction(),
2609                    getTargetMachine(), ArgLocs, *DAG.getContext());
2610
2611     // Allocate shadow area for Win64
2612     if (Subtarget->isTargetWin64()) {
2613       CCInfo.AllocateStack(32, 8);
2614     }
2615
2616     CCInfo.AnalyzeCallOperands(Outs, CC_X86);
2617     if (CCInfo.getNextStackOffset()) {
2618       MachineFunction &MF = DAG.getMachineFunction();
2619       if (MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn())
2620         return false;
2621
2622       // Check if the arguments are already laid out in the right way as
2623       // the caller's fixed stack objects.
2624       MachineFrameInfo *MFI = MF.getFrameInfo();
2625       const MachineRegisterInfo *MRI = &MF.getRegInfo();
2626       const X86InstrInfo *TII =
2627         ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
2628       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2629         CCValAssign &VA = ArgLocs[i];
2630         SDValue Arg = OutVals[i];
2631         ISD::ArgFlagsTy Flags = Outs[i].Flags;
2632         if (VA.getLocInfo() == CCValAssign::Indirect)
2633           return false;
2634         if (!VA.isRegLoc()) {
2635           if (!MatchingStackOffset(Arg, VA.getLocMemOffset(), Flags,
2636                                    MFI, MRI, TII))
2637             return false;
2638         }
2639       }
2640     }
2641
2642     // If the tailcall address may be in a register, then make sure it's
2643     // possible to register allocate for it. In 32-bit, the call address can
2644     // only target EAX, EDX, or ECX since the tail call must be scheduled after
2645     // callee-saved registers are restored. These happen to be the same
2646     // registers used to pass 'inreg' arguments so watch out for those.
2647     if (!Subtarget->is64Bit() &&
2648         !isa<GlobalAddressSDNode>(Callee) &&
2649         !isa<ExternalSymbolSDNode>(Callee)) {
2650       unsigned NumInRegs = 0;
2651       for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
2652         CCValAssign &VA = ArgLocs[i];
2653         if (!VA.isRegLoc())
2654           continue;
2655         unsigned Reg = VA.getLocReg();
2656         switch (Reg) {
2657         default: break;
2658         case X86::EAX: case X86::EDX: case X86::ECX:
2659           if (++NumInRegs == 3)
2660             return false;
2661           break;
2662         }
2663       }
2664     }
2665   }
2666
2667   return true;
2668 }
2669
2670 FastISel *
2671 X86TargetLowering::createFastISel(FunctionLoweringInfo &funcInfo) const {
2672   return X86::createFastISel(funcInfo);
2673 }
2674
2675
2676 //===----------------------------------------------------------------------===//
2677 //                           Other Lowering Hooks
2678 //===----------------------------------------------------------------------===//
2679
2680 static bool MayFoldLoad(SDValue Op) {
2681   return Op.hasOneUse() && ISD::isNormalLoad(Op.getNode());
2682 }
2683
2684 static bool MayFoldIntoStore(SDValue Op) {
2685   return Op.hasOneUse() && ISD::isNormalStore(*Op.getNode()->use_begin());
2686 }
2687
2688 static bool isTargetShuffle(unsigned Opcode) {
2689   switch(Opcode) {
2690   default: return false;
2691   case X86ISD::PSHUFD:
2692   case X86ISD::PSHUFHW:
2693   case X86ISD::PSHUFLW:
2694   case X86ISD::SHUFPD:
2695   case X86ISD::PALIGN:
2696   case X86ISD::SHUFPS:
2697   case X86ISD::MOVLHPS:
2698   case X86ISD::MOVLHPD:
2699   case X86ISD::MOVHLPS:
2700   case X86ISD::MOVLPS:
2701   case X86ISD::MOVLPD:
2702   case X86ISD::MOVSHDUP:
2703   case X86ISD::MOVSLDUP:
2704   case X86ISD::MOVDDUP:
2705   case X86ISD::MOVSS:
2706   case X86ISD::MOVSD:
2707   case X86ISD::UNPCKLPS:
2708   case X86ISD::UNPCKLPD:
2709   case X86ISD::VUNPCKLPSY:
2710   case X86ISD::VUNPCKLPDY:
2711   case X86ISD::PUNPCKLWD:
2712   case X86ISD::PUNPCKLBW:
2713   case X86ISD::PUNPCKLDQ:
2714   case X86ISD::PUNPCKLQDQ:
2715   case X86ISD::UNPCKHPS:
2716   case X86ISD::UNPCKHPD:
2717   case X86ISD::VUNPCKHPSY:
2718   case X86ISD::VUNPCKHPDY:
2719   case X86ISD::PUNPCKHWD:
2720   case X86ISD::PUNPCKHBW:
2721   case X86ISD::PUNPCKHDQ:
2722   case X86ISD::PUNPCKHQDQ:
2723   case X86ISD::VPERMILPS:
2724   case X86ISD::VPERMILPSY:
2725   case X86ISD::VPERMILPD:
2726   case X86ISD::VPERMILPDY:
2727     return true;
2728   }
2729   return false;
2730 }
2731
2732 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2733                                                SDValue V1, SelectionDAG &DAG) {
2734   switch(Opc) {
2735   default: llvm_unreachable("Unknown x86 shuffle node");
2736   case X86ISD::MOVSHDUP:
2737   case X86ISD::MOVSLDUP:
2738   case X86ISD::MOVDDUP:
2739     return DAG.getNode(Opc, dl, VT, V1);
2740   }
2741
2742   return SDValue();
2743 }
2744
2745 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2746                           SDValue V1, unsigned TargetMask, SelectionDAG &DAG) {
2747   switch(Opc) {
2748   default: llvm_unreachable("Unknown x86 shuffle node");
2749   case X86ISD::PSHUFD:
2750   case X86ISD::PSHUFHW:
2751   case X86ISD::PSHUFLW:
2752   case X86ISD::VPERMILPS:
2753   case X86ISD::VPERMILPSY:
2754   case X86ISD::VPERMILPD:
2755   case X86ISD::VPERMILPDY:
2756     return DAG.getNode(Opc, dl, VT, V1, DAG.getConstant(TargetMask, MVT::i8));
2757   }
2758
2759   return SDValue();
2760 }
2761
2762 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2763                SDValue V1, SDValue V2, unsigned TargetMask, SelectionDAG &DAG) {
2764   switch(Opc) {
2765   default: llvm_unreachable("Unknown x86 shuffle node");
2766   case X86ISD::PALIGN:
2767   case X86ISD::SHUFPD:
2768   case X86ISD::SHUFPS:
2769     return DAG.getNode(Opc, dl, VT, V1, V2,
2770                        DAG.getConstant(TargetMask, MVT::i8));
2771   }
2772   return SDValue();
2773 }
2774
2775 static SDValue getTargetShuffleNode(unsigned Opc, DebugLoc dl, EVT VT,
2776                                     SDValue V1, SDValue V2, SelectionDAG &DAG) {
2777   switch(Opc) {
2778   default: llvm_unreachable("Unknown x86 shuffle node");
2779   case X86ISD::MOVLHPS:
2780   case X86ISD::MOVLHPD:
2781   case X86ISD::MOVHLPS:
2782   case X86ISD::MOVLPS:
2783   case X86ISD::MOVLPD:
2784   case X86ISD::MOVSS:
2785   case X86ISD::MOVSD:
2786   case X86ISD::UNPCKLPS:
2787   case X86ISD::UNPCKLPD:
2788   case X86ISD::VUNPCKLPSY:
2789   case X86ISD::VUNPCKLPDY:
2790   case X86ISD::PUNPCKLWD:
2791   case X86ISD::PUNPCKLBW:
2792   case X86ISD::PUNPCKLDQ:
2793   case X86ISD::PUNPCKLQDQ:
2794   case X86ISD::UNPCKHPS:
2795   case X86ISD::UNPCKHPD:
2796   case X86ISD::VUNPCKHPSY:
2797   case X86ISD::VUNPCKHPDY:
2798   case X86ISD::PUNPCKHWD:
2799   case X86ISD::PUNPCKHBW:
2800   case X86ISD::PUNPCKHDQ:
2801   case X86ISD::PUNPCKHQDQ:
2802     return DAG.getNode(Opc, dl, VT, V1, V2);
2803   }
2804   return SDValue();
2805 }
2806
2807 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) const {
2808   MachineFunction &MF = DAG.getMachineFunction();
2809   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2810   int ReturnAddrIndex = FuncInfo->getRAIndex();
2811
2812   if (ReturnAddrIndex == 0) {
2813     // Set up a frame object for the return address.
2814     uint64_t SlotSize = TD->getPointerSize();
2815     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize,
2816                                                            false);
2817     FuncInfo->setRAIndex(ReturnAddrIndex);
2818   }
2819
2820   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2821 }
2822
2823
2824 bool X86::isOffsetSuitableForCodeModel(int64_t Offset, CodeModel::Model M,
2825                                        bool hasSymbolicDisplacement) {
2826   // Offset should fit into 32 bit immediate field.
2827   if (!isInt<32>(Offset))
2828     return false;
2829
2830   // If we don't have a symbolic displacement - we don't have any extra
2831   // restrictions.
2832   if (!hasSymbolicDisplacement)
2833     return true;
2834
2835   // FIXME: Some tweaks might be needed for medium code model.
2836   if (M != CodeModel::Small && M != CodeModel::Kernel)
2837     return false;
2838
2839   // For small code model we assume that latest object is 16MB before end of 31
2840   // bits boundary. We may also accept pretty large negative constants knowing
2841   // that all objects are in the positive half of address space.
2842   if (M == CodeModel::Small && Offset < 16*1024*1024)
2843     return true;
2844
2845   // For kernel code model we know that all object resist in the negative half
2846   // of 32bits address space. We may not accept negative offsets, since they may
2847   // be just off and we may accept pretty large positive ones.
2848   if (M == CodeModel::Kernel && Offset > 0)
2849     return true;
2850
2851   return false;
2852 }
2853
2854 /// isCalleePop - Determines whether the callee is required to pop its
2855 /// own arguments. Callee pop is necessary to support tail calls.
2856 bool X86::isCalleePop(CallingConv::ID CallingConv,
2857                       bool is64Bit, bool IsVarArg, bool TailCallOpt) {
2858   if (IsVarArg)
2859     return false;
2860
2861   switch (CallingConv) {
2862   default:
2863     return false;
2864   case CallingConv::X86_StdCall:
2865     return !is64Bit;
2866   case CallingConv::X86_FastCall:
2867     return !is64Bit;
2868   case CallingConv::X86_ThisCall:
2869     return !is64Bit;
2870   case CallingConv::Fast:
2871     return TailCallOpt;
2872   case CallingConv::GHC:
2873     return TailCallOpt;
2874   }
2875 }
2876
2877 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2878 /// specific condition code, returning the condition code and the LHS/RHS of the
2879 /// comparison to make.
2880 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2881                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
2882   if (!isFP) {
2883     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2884       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2885         // X > -1   -> X == 0, jump !sign.
2886         RHS = DAG.getConstant(0, RHS.getValueType());
2887         return X86::COND_NS;
2888       } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2889         // X < 0   -> X == 0, jump on sign.
2890         return X86::COND_S;
2891       } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
2892         // X < 1   -> X <= 0
2893         RHS = DAG.getConstant(0, RHS.getValueType());
2894         return X86::COND_LE;
2895       }
2896     }
2897
2898     switch (SetCCOpcode) {
2899     default: llvm_unreachable("Invalid integer condition!");
2900     case ISD::SETEQ:  return X86::COND_E;
2901     case ISD::SETGT:  return X86::COND_G;
2902     case ISD::SETGE:  return X86::COND_GE;
2903     case ISD::SETLT:  return X86::COND_L;
2904     case ISD::SETLE:  return X86::COND_LE;
2905     case ISD::SETNE:  return X86::COND_NE;
2906     case ISD::SETULT: return X86::COND_B;
2907     case ISD::SETUGT: return X86::COND_A;
2908     case ISD::SETULE: return X86::COND_BE;
2909     case ISD::SETUGE: return X86::COND_AE;
2910     }
2911   }
2912
2913   // First determine if it is required or is profitable to flip the operands.
2914
2915   // If LHS is a foldable load, but RHS is not, flip the condition.
2916   if (ISD::isNON_EXTLoad(LHS.getNode()) &&
2917       !ISD::isNON_EXTLoad(RHS.getNode())) {
2918     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2919     std::swap(LHS, RHS);
2920   }
2921
2922   switch (SetCCOpcode) {
2923   default: break;
2924   case ISD::SETOLT:
2925   case ISD::SETOLE:
2926   case ISD::SETUGT:
2927   case ISD::SETUGE:
2928     std::swap(LHS, RHS);
2929     break;
2930   }
2931
2932   // On a floating point condition, the flags are set as follows:
2933   // ZF  PF  CF   op
2934   //  0 | 0 | 0 | X > Y
2935   //  0 | 0 | 1 | X < Y
2936   //  1 | 0 | 0 | X == Y
2937   //  1 | 1 | 1 | unordered
2938   switch (SetCCOpcode) {
2939   default: llvm_unreachable("Condcode should be pre-legalized away");
2940   case ISD::SETUEQ:
2941   case ISD::SETEQ:   return X86::COND_E;
2942   case ISD::SETOLT:              // flipped
2943   case ISD::SETOGT:
2944   case ISD::SETGT:   return X86::COND_A;
2945   case ISD::SETOLE:              // flipped
2946   case ISD::SETOGE:
2947   case ISD::SETGE:   return X86::COND_AE;
2948   case ISD::SETUGT:              // flipped
2949   case ISD::SETULT:
2950   case ISD::SETLT:   return X86::COND_B;
2951   case ISD::SETUGE:              // flipped
2952   case ISD::SETULE:
2953   case ISD::SETLE:   return X86::COND_BE;
2954   case ISD::SETONE:
2955   case ISD::SETNE:   return X86::COND_NE;
2956   case ISD::SETUO:   return X86::COND_P;
2957   case ISD::SETO:    return X86::COND_NP;
2958   case ISD::SETOEQ:
2959   case ISD::SETUNE:  return X86::COND_INVALID;
2960   }
2961 }
2962
2963 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
2964 /// code. Current x86 isa includes the following FP cmov instructions:
2965 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2966 static bool hasFPCMov(unsigned X86CC) {
2967   switch (X86CC) {
2968   default:
2969     return false;
2970   case X86::COND_B:
2971   case X86::COND_BE:
2972   case X86::COND_E:
2973   case X86::COND_P:
2974   case X86::COND_A:
2975   case X86::COND_AE:
2976   case X86::COND_NE:
2977   case X86::COND_NP:
2978     return true;
2979   }
2980 }
2981
2982 /// isFPImmLegal - Returns true if the target can instruction select the
2983 /// specified FP immediate natively. If false, the legalizer will
2984 /// materialize the FP immediate as a load from a constant pool.
2985 bool X86TargetLowering::isFPImmLegal(const APFloat &Imm, EVT VT) const {
2986   for (unsigned i = 0, e = LegalFPImmediates.size(); i != e; ++i) {
2987     if (Imm.bitwiseIsEqual(LegalFPImmediates[i]))
2988       return true;
2989   }
2990   return false;
2991 }
2992
2993 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
2994 /// the specified range (L, H].
2995 static bool isUndefOrInRange(int Val, int Low, int Hi) {
2996   return (Val < 0) || (Val >= Low && Val < Hi);
2997 }
2998
2999 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
3000 /// specified value.
3001 static bool isUndefOrEqual(int Val, int CmpVal) {
3002   if (Val < 0 || Val == CmpVal)
3003     return true;
3004   return false;
3005 }
3006
3007 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
3008 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
3009 /// the second operand.
3010 static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3011   if (VT == MVT::v4f32 || VT == MVT::v4i32 )
3012     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
3013   if (VT == MVT::v2f64 || VT == MVT::v2i64)
3014     return (Mask[0] < 2 && Mask[1] < 2);
3015   return false;
3016 }
3017
3018 bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
3019   SmallVector<int, 8> M;
3020   N->getMask(M);
3021   return ::isPSHUFDMask(M, N->getValueType(0));
3022 }
3023
3024 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
3025 /// is suitable for input to PSHUFHW.
3026 static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3027   if (VT != MVT::v8i16)
3028     return false;
3029
3030   // Lower quadword copied in order or undef.
3031   for (int i = 0; i != 4; ++i)
3032     if (Mask[i] >= 0 && Mask[i] != i)
3033       return false;
3034
3035   // Upper quadword shuffled.
3036   for (int i = 4; i != 8; ++i)
3037     if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
3038       return false;
3039
3040   return true;
3041 }
3042
3043 bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
3044   SmallVector<int, 8> M;
3045   N->getMask(M);
3046   return ::isPSHUFHWMask(M, N->getValueType(0));
3047 }
3048
3049 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
3050 /// is suitable for input to PSHUFLW.
3051 static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3052   if (VT != MVT::v8i16)
3053     return false;
3054
3055   // Upper quadword copied in order.
3056   for (int i = 4; i != 8; ++i)
3057     if (Mask[i] >= 0 && Mask[i] != i)
3058       return false;
3059
3060   // Lower quadword shuffled.
3061   for (int i = 0; i != 4; ++i)
3062     if (Mask[i] >= 4)
3063       return false;
3064
3065   return true;
3066 }
3067
3068 bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
3069   SmallVector<int, 8> M;
3070   N->getMask(M);
3071   return ::isPSHUFLWMask(M, N->getValueType(0));
3072 }
3073
3074 /// isPALIGNRMask - Return true if the node specifies a shuffle of elements that
3075 /// is suitable for input to PALIGNR.
3076 static bool isPALIGNRMask(const SmallVectorImpl<int> &Mask, EVT VT,
3077                           bool hasSSSE3) {
3078   int i, e = VT.getVectorNumElements();
3079   if (VT.getSizeInBits() != 128 && VT.getSizeInBits() != 64)
3080     return false;
3081
3082   // Do not handle v2i64 / v2f64 shuffles with palignr.
3083   if (e < 4 || !hasSSSE3)
3084     return false;
3085
3086   for (i = 0; i != e; ++i)
3087     if (Mask[i] >= 0)
3088       break;
3089
3090   // All undef, not a palignr.
3091   if (i == e)
3092     return false;
3093
3094   // Make sure we're shifting in the right direction.
3095   if (Mask[i] <= i)
3096     return false;
3097
3098   int s = Mask[i] - i;
3099
3100   // Check the rest of the elements to see if they are consecutive.
3101   for (++i; i != e; ++i) {
3102     int m = Mask[i];
3103     if (m >= 0 && m != s+i)
3104       return false;
3105   }
3106   return true;
3107 }
3108
3109 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
3110 /// specifies a shuffle of elements that is suitable for input to SHUFP*.
3111 static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3112   int NumElems = VT.getVectorNumElements();
3113   if (NumElems != 2 && NumElems != 4)
3114     return false;
3115
3116   int Half = NumElems / 2;
3117   for (int i = 0; i < Half; ++i)
3118     if (!isUndefOrInRange(Mask[i], 0, NumElems))
3119       return false;
3120   for (int i = Half; i < NumElems; ++i)
3121     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
3122       return false;
3123
3124   return true;
3125 }
3126
3127 bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
3128   SmallVector<int, 8> M;
3129   N->getMask(M);
3130   return ::isSHUFPMask(M, N->getValueType(0));
3131 }
3132
3133 /// isCommutedSHUFP - Returns true if the shuffle mask is exactly
3134 /// the reverse of what x86 shuffles want. x86 shuffles requires the lower
3135 /// half elements to come from vector 1 (which would equal the dest.) and
3136 /// the upper half to come from vector 2.
3137 static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3138   int NumElems = VT.getVectorNumElements();
3139
3140   if (NumElems != 2 && NumElems != 4)
3141     return false;
3142
3143   int Half = NumElems / 2;
3144   for (int i = 0; i < Half; ++i)
3145     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
3146       return false;
3147   for (int i = Half; i < NumElems; ++i)
3148     if (!isUndefOrInRange(Mask[i], 0, NumElems))
3149       return false;
3150   return true;
3151 }
3152
3153 static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
3154   SmallVector<int, 8> M;
3155   N->getMask(M);
3156   return isCommutedSHUFPMask(M, N->getValueType(0));
3157 }
3158
3159 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
3160 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
3161 bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
3162   EVT VT = N->getValueType(0);
3163   unsigned NumElems = VT.getVectorNumElements();
3164
3165   if (VT.getSizeInBits() != 128)
3166     return false;
3167
3168   if (NumElems != 4)
3169     return false;
3170
3171   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
3172   return isUndefOrEqual(N->getMaskElt(0), 6) &&
3173          isUndefOrEqual(N->getMaskElt(1), 7) &&
3174          isUndefOrEqual(N->getMaskElt(2), 2) &&
3175          isUndefOrEqual(N->getMaskElt(3), 3);
3176 }
3177
3178 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
3179 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
3180 /// <2, 3, 2, 3>
3181 bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
3182   EVT VT = N->getValueType(0);
3183   unsigned NumElems = VT.getVectorNumElements();
3184
3185   if (VT.getSizeInBits() != 128)
3186     return false;
3187
3188   if (NumElems != 4)
3189     return false;
3190
3191   return isUndefOrEqual(N->getMaskElt(0), 2) &&
3192          isUndefOrEqual(N->getMaskElt(1), 3) &&
3193          isUndefOrEqual(N->getMaskElt(2), 2) &&
3194          isUndefOrEqual(N->getMaskElt(3), 3);
3195 }
3196
3197 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
3198 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
3199 bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
3200   unsigned NumElems = N->getValueType(0).getVectorNumElements();
3201
3202   if (NumElems != 2 && NumElems != 4)
3203     return false;
3204
3205   for (unsigned i = 0; i < NumElems/2; ++i)
3206     if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
3207       return false;
3208
3209   for (unsigned i = NumElems/2; i < NumElems; ++i)
3210     if (!isUndefOrEqual(N->getMaskElt(i), i))
3211       return false;
3212
3213   return true;
3214 }
3215
3216 /// isMOVLHPSMask - Return true if the specified VECTOR_SHUFFLE operand
3217 /// specifies a shuffle of elements that is suitable for input to MOVLHPS.
3218 bool X86::isMOVLHPSMask(ShuffleVectorSDNode *N) {
3219   unsigned NumElems = N->getValueType(0).getVectorNumElements();
3220
3221   if ((NumElems != 2 && NumElems != 4)
3222       || N->getValueType(0).getSizeInBits() > 128)
3223     return false;
3224
3225   for (unsigned i = 0; i < NumElems/2; ++i)
3226     if (!isUndefOrEqual(N->getMaskElt(i), i))
3227       return false;
3228
3229   for (unsigned i = 0; i < NumElems/2; ++i)
3230     if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
3231       return false;
3232
3233   return true;
3234 }
3235
3236 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
3237 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
3238 static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, EVT VT,
3239                          bool V2IsSplat = false) {
3240   int NumElts = VT.getVectorNumElements();
3241
3242   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3243          "Unsupported vector type for unpckh");
3244
3245   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
3246     return false;
3247
3248   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3249   // independently on 128-bit lanes.
3250   unsigned NumLanes = VT.getSizeInBits()/128;
3251   unsigned NumLaneElts = NumElts/NumLanes;
3252
3253   unsigned Start = 0;
3254   unsigned End = NumLaneElts;
3255   for (unsigned s = 0; s < NumLanes; ++s) {
3256     for (unsigned i = Start, j = s * NumLaneElts;
3257          i != End;
3258          i += 2, ++j) {
3259       int BitI  = Mask[i];
3260       int BitI1 = Mask[i+1];
3261       if (!isUndefOrEqual(BitI, j))
3262         return false;
3263       if (V2IsSplat) {
3264         if (!isUndefOrEqual(BitI1, NumElts))
3265           return false;
3266       } else {
3267         if (!isUndefOrEqual(BitI1, j + NumElts))
3268           return false;
3269       }
3270     }
3271     // Process the next 128 bits.
3272     Start += NumLaneElts;
3273     End += NumLaneElts;
3274   }
3275
3276   return true;
3277 }
3278
3279 bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3280   SmallVector<int, 8> M;
3281   N->getMask(M);
3282   return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
3283 }
3284
3285 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
3286 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
3287 static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, EVT VT,
3288                          bool V2IsSplat = false) {
3289   int NumElts = VT.getVectorNumElements();
3290
3291   assert((VT.is128BitVector() || VT.is256BitVector()) &&
3292          "Unsupported vector type for unpckh");
3293
3294   if (VT.getSizeInBits() == 256 && NumElts != 4 && NumElts != 8)
3295     return false;
3296
3297   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3298   // independently on 128-bit lanes.
3299   unsigned NumLanes = VT.getSizeInBits()/128;
3300   unsigned NumLaneElts = NumElts/NumLanes;
3301
3302   unsigned Start = 0;
3303   unsigned End = NumLaneElts;
3304   for (unsigned l = 0; l != NumLanes; ++l) {
3305     for (unsigned i = Start, j = (l*NumLaneElts)+NumLaneElts/2;
3306                              i != End; i += 2, ++j) {
3307       int BitI  = Mask[i];
3308       int BitI1 = Mask[i+1];
3309       if (!isUndefOrEqual(BitI, j))
3310         return false;
3311       if (V2IsSplat) {
3312         if (isUndefOrEqual(BitI1, NumElts))
3313           return false;
3314       } else {
3315         if (!isUndefOrEqual(BitI1, j+NumElts))
3316           return false;
3317       }
3318     }
3319     // Process the next 128 bits.
3320     Start += NumLaneElts;
3321     End += NumLaneElts;
3322   }
3323   return true;
3324 }
3325
3326 bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
3327   SmallVector<int, 8> M;
3328   N->getMask(M);
3329   return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
3330 }
3331
3332 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
3333 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
3334 /// <0, 0, 1, 1>
3335 static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
3336   int NumElems = VT.getVectorNumElements();
3337   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3338     return false;
3339
3340   // Handle 128 and 256-bit vector lengths. AVX defines UNPCK* to operate
3341   // independently on 128-bit lanes.
3342   unsigned NumLanes = VT.getSizeInBits() / 128;
3343   unsigned NumLaneElts = NumElems / NumLanes;
3344
3345   for (unsigned s = 0; s < NumLanes; ++s) {
3346     for (unsigned i = s * NumLaneElts, j = s * NumLaneElts;
3347          i != NumLaneElts * (s + 1);
3348          i += 2, ++j) {
3349       int BitI  = Mask[i];
3350       int BitI1 = Mask[i+1];
3351
3352       if (!isUndefOrEqual(BitI, j))
3353         return false;
3354       if (!isUndefOrEqual(BitI1, j))
3355         return false;
3356     }
3357   }
3358
3359   return true;
3360 }
3361
3362 bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
3363   SmallVector<int, 8> M;
3364   N->getMask(M);
3365   return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
3366 }
3367
3368 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
3369 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
3370 /// <2, 2, 3, 3>
3371 static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, EVT VT) {
3372   int NumElems = VT.getVectorNumElements();
3373   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
3374     return false;
3375
3376   for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
3377     int BitI  = Mask[i];
3378     int BitI1 = Mask[i+1];
3379     if (!isUndefOrEqual(BitI, j))
3380       return false;
3381     if (!isUndefOrEqual(BitI1, j))
3382       return false;
3383   }
3384   return true;
3385 }
3386
3387 bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
3388   SmallVector<int, 8> M;
3389   N->getMask(M);
3390   return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
3391 }
3392
3393 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
3394 /// specifies a shuffle of elements that is suitable for input to MOVSS,
3395 /// MOVSD, and MOVD, i.e. setting the lowest element.
3396 static bool isMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT) {
3397   if (VT.getVectorElementType().getSizeInBits() < 32)
3398     return false;
3399
3400   int NumElts = VT.getVectorNumElements();
3401
3402   if (!isUndefOrEqual(Mask[0], NumElts))
3403     return false;
3404
3405   for (int i = 1; i < NumElts; ++i)
3406     if (!isUndefOrEqual(Mask[i], i))
3407       return false;
3408
3409   return true;
3410 }
3411
3412 bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
3413   SmallVector<int, 8> M;
3414   N->getMask(M);
3415   return ::isMOVLMask(M, N->getValueType(0));
3416 }
3417
3418 /// isVPERMILPDMask - Return true if the specified VECTOR_SHUFFLE operand
3419 /// specifies a shuffle of elements that is suitable for input to VPERMILPD*.
3420 /// Note that VPERMIL mask matching is different depending whether theunderlying
3421 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3422 /// to the same elements of the low, but to the higher half of the source.
3423 /// In VPERMILPD the two lanes could be shuffled independently of each other
3424 /// with the same restriction that lanes can't be crossed.
3425 static bool isVPERMILPDMask(const SmallVectorImpl<int> &Mask, EVT VT,
3426                             const X86Subtarget *Subtarget) {
3427   int NumElts = VT.getVectorNumElements();
3428   int NumLanes = VT.getSizeInBits()/128;
3429
3430   if (!Subtarget->hasAVX())
3431     return false;
3432
3433   // Match any permutation of 128-bit vector with 64-bit types
3434   if (NumLanes == 1 && NumElts != 2)
3435     return false;
3436
3437   // Only match 256-bit with 32 types
3438   if (VT.getSizeInBits() == 256 && NumElts != 4)
3439     return false;
3440
3441   // The mask on the high lane is independent of the low. Both can match
3442   // any element in inside its own lane, but can't cross.
3443   int LaneSize = NumElts/NumLanes;
3444   for (int l = 0; l < NumLanes; ++l)
3445     for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3446       int LaneStart = l*LaneSize;
3447       if (!isUndefOrInRange(Mask[i], LaneStart, LaneStart+LaneSize))
3448         return false;
3449     }
3450
3451   return true;
3452 }
3453
3454 /// isVPERMILPSMask - Return true if the specified VECTOR_SHUFFLE operand
3455 /// specifies a shuffle of elements that is suitable for input to VPERMILPS*.
3456 /// Note that VPERMIL mask matching is different depending whether theunderlying
3457 /// type is 32 or 64. In the VPERMILPS the high half of the mask should point
3458 /// to the same elements of the low, but to the higher half of the source.
3459 /// In VPERMILPD the two lanes could be shuffled independently of each other
3460 /// with the same restriction that lanes can't be crossed.
3461 static bool isVPERMILPSMask(const SmallVectorImpl<int> &Mask, EVT VT,
3462                             const X86Subtarget *Subtarget) {
3463   unsigned NumElts = VT.getVectorNumElements();
3464   unsigned NumLanes = VT.getSizeInBits()/128;
3465
3466   if (!Subtarget->hasAVX())
3467     return false;
3468
3469   // Match any permutation of 128-bit vector with 32-bit types
3470   if (NumLanes == 1 && NumElts != 4)
3471     return false;
3472
3473   // Only match 256-bit with 32 types
3474   if (VT.getSizeInBits() == 256 && NumElts != 8)
3475     return false;
3476
3477   // The mask on the high lane should be the same as the low. Actually,
3478   // they can differ if any of the corresponding index in a lane is undef
3479   // and the other stays in range.
3480   int LaneSize = NumElts/NumLanes;
3481   for (int i = 0; i < LaneSize; ++i) {
3482     int HighElt = i+LaneSize;
3483     if (Mask[i] < 0 && (isUndefOrInRange(Mask[HighElt], LaneSize, NumElts)))
3484       continue;
3485     if (Mask[HighElt] < 0 && (isUndefOrInRange(Mask[i], 0, LaneSize)))
3486       continue;
3487     if (Mask[HighElt]-Mask[i] != LaneSize)
3488       return false;
3489   }
3490
3491   return true;
3492 }
3493
3494 /// getShuffleVPERMILPSImmediate - Return the appropriate immediate to shuffle
3495 /// the specified VECTOR_MASK mask with VPERMILPS* instructions.
3496 static unsigned getShuffleVPERMILPSImmediate(SDNode *N) {
3497   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3498   EVT VT = SVOp->getValueType(0);
3499
3500   int NumElts = VT.getVectorNumElements();
3501   int NumLanes = VT.getSizeInBits()/128;
3502   int LaneSize = NumElts/NumLanes;
3503
3504   // Although the mask is equal for both lanes do it twice to get the cases
3505   // where a mask will match because the same mask element is undef on the
3506   // first half but valid on the second. This would get pathological cases
3507   // such as: shuffle <u, 0, 1, 2, 4, 4, 5, 6>, which is completely valid.
3508   unsigned Mask = 0;
3509   for (int l = 0; l < NumLanes; ++l) {
3510     for (int i = 0; i < LaneSize; ++i) {
3511       int MaskElt = SVOp->getMaskElt(i+(l*LaneSize));
3512       if (MaskElt < 0)
3513         continue;
3514       if (MaskElt >= LaneSize)
3515         MaskElt -= LaneSize;
3516       Mask |= MaskElt << (i*2);
3517     }
3518   }
3519
3520   return Mask;
3521 }
3522
3523 /// getShuffleVPERMILPDImmediate - Return the appropriate immediate to shuffle
3524 /// the specified VECTOR_MASK mask with VPERMILPD* instructions.
3525 static unsigned getShuffleVPERMILPDImmediate(SDNode *N) {
3526   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3527   EVT VT = SVOp->getValueType(0);
3528
3529   int NumElts = VT.getVectorNumElements();
3530   int NumLanes = VT.getSizeInBits()/128;
3531
3532   unsigned Mask = 0;
3533   int LaneSize = NumElts/NumLanes;
3534   for (int l = 0; l < NumLanes; ++l)
3535     for (int i = l*LaneSize; i < LaneSize*(l+1); ++i) {
3536       int MaskElt = SVOp->getMaskElt(i);
3537       if (MaskElt < 0)
3538         continue;
3539       Mask |= (MaskElt-l*LaneSize) << i;
3540     }
3541
3542   return Mask;
3543 }
3544
3545 /// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
3546 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
3547 /// element of vector 2 and the other elements to come from vector 1 in order.
3548 static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, EVT VT,
3549                                bool V2IsSplat = false, bool V2IsUndef = false) {
3550   int NumOps = VT.getVectorNumElements();
3551   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
3552     return false;
3553
3554   if (!isUndefOrEqual(Mask[0], 0))
3555     return false;
3556
3557   for (int i = 1; i < NumOps; ++i)
3558     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
3559           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
3560           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
3561       return false;
3562
3563   return true;
3564 }
3565
3566 static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
3567                            bool V2IsUndef = false) {
3568   SmallVector<int, 8> M;
3569   N->getMask(M);
3570   return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
3571 }
3572
3573 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3574 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
3575 /// Masks to match: <1, 1, 3, 3> or <1, 1, 3, 3, 5, 5, 7, 7>
3576 bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N,
3577                          const X86Subtarget *Subtarget) {
3578   if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
3579     return false;
3580
3581   // The second vector must be undef
3582   if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3583     return false;
3584
3585   EVT VT = N->getValueType(0);
3586   unsigned NumElems = VT.getVectorNumElements();
3587
3588   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3589       (VT.getSizeInBits() == 256 && NumElems != 8))
3590     return false;
3591
3592   // "i+1" is the value the indexed mask element must have
3593   for (unsigned i = 0; i < NumElems; i += 2)
3594     if (!isUndefOrEqual(N->getMaskElt(i), i+1) ||
3595         !isUndefOrEqual(N->getMaskElt(i+1), i+1))
3596       return false;
3597
3598   return true;
3599 }
3600
3601 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3602 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
3603 /// Masks to match: <0, 0, 2, 2> or <0, 0, 2, 2, 4, 4, 6, 6>
3604 bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N,
3605                          const X86Subtarget *Subtarget) {
3606   if (!Subtarget->hasSSE3() && !Subtarget->hasAVX())
3607     return false;
3608
3609   // The second vector must be undef
3610   if (N->getOperand(1).getOpcode() != ISD::UNDEF)
3611     return false;
3612
3613   EVT VT = N->getValueType(0);
3614   unsigned NumElems = VT.getVectorNumElements();
3615
3616   if ((VT.getSizeInBits() == 128 && NumElems != 4) ||
3617       (VT.getSizeInBits() == 256 && NumElems != 8))
3618     return false;
3619
3620   // "i" is the value the indexed mask element must have
3621   for (unsigned i = 0; i < NumElems; i += 2)
3622     if (!isUndefOrEqual(N->getMaskElt(i), i) ||
3623         !isUndefOrEqual(N->getMaskElt(i+1), i))
3624       return false;
3625
3626   return true;
3627 }
3628
3629 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
3630 /// specifies a shuffle of elements that is suitable for input to MOVDDUP.
3631 bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
3632   int e = N->getValueType(0).getVectorNumElements() / 2;
3633
3634   for (int i = 0; i < e; ++i)
3635     if (!isUndefOrEqual(N->getMaskElt(i), i))
3636       return false;
3637   for (int i = 0; i < e; ++i)
3638     if (!isUndefOrEqual(N->getMaskElt(e+i), i))
3639       return false;
3640   return true;
3641 }
3642
3643 /// isVEXTRACTF128Index - Return true if the specified
3644 /// EXTRACT_SUBVECTOR operand specifies a vector extract that is
3645 /// suitable for input to VEXTRACTF128.
3646 bool X86::isVEXTRACTF128Index(SDNode *N) {
3647   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3648     return false;
3649
3650   // The index should be aligned on a 128-bit boundary.
3651   uint64_t Index =
3652     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3653
3654   unsigned VL = N->getValueType(0).getVectorNumElements();
3655   unsigned VBits = N->getValueType(0).getSizeInBits();
3656   unsigned ElSize = VBits / VL;
3657   bool Result = (Index * ElSize) % 128 == 0;
3658
3659   return Result;
3660 }
3661
3662 /// isVINSERTF128Index - Return true if the specified INSERT_SUBVECTOR
3663 /// operand specifies a subvector insert that is suitable for input to
3664 /// VINSERTF128.
3665 bool X86::isVINSERTF128Index(SDNode *N) {
3666   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3667     return false;
3668
3669   // The index should be aligned on a 128-bit boundary.
3670   uint64_t Index =
3671     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3672
3673   unsigned VL = N->getValueType(0).getVectorNumElements();
3674   unsigned VBits = N->getValueType(0).getSizeInBits();
3675   unsigned ElSize = VBits / VL;
3676   bool Result = (Index * ElSize) % 128 == 0;
3677
3678   return Result;
3679 }
3680
3681 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
3682 /// the specified VECTOR_SHUFFLE mask with PSHUF* and SHUFP* instructions.
3683 unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
3684   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3685   int NumOperands = SVOp->getValueType(0).getVectorNumElements();
3686
3687   unsigned Shift = (NumOperands == 4) ? 2 : 1;
3688   unsigned Mask = 0;
3689   for (int i = 0; i < NumOperands; ++i) {
3690     int Val = SVOp->getMaskElt(NumOperands-i-1);
3691     if (Val < 0) Val = 0;
3692     if (Val >= NumOperands) Val -= NumOperands;
3693     Mask |= Val;
3694     if (i != NumOperands - 1)
3695       Mask <<= Shift;
3696   }
3697   return Mask;
3698 }
3699
3700 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
3701 /// the specified VECTOR_SHUFFLE mask with the PSHUFHW instruction.
3702 unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
3703   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3704   unsigned Mask = 0;
3705   // 8 nodes, but we only care about the last 4.
3706   for (unsigned i = 7; i >= 4; --i) {
3707     int Val = SVOp->getMaskElt(i);
3708     if (Val >= 0)
3709       Mask |= (Val - 4);
3710     if (i != 4)
3711       Mask <<= 2;
3712   }
3713   return Mask;
3714 }
3715
3716 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
3717 /// the specified VECTOR_SHUFFLE mask with the PSHUFLW instruction.
3718 unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
3719   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3720   unsigned Mask = 0;
3721   // 8 nodes, but we only care about the first 4.
3722   for (int i = 3; i >= 0; --i) {
3723     int Val = SVOp->getMaskElt(i);
3724     if (Val >= 0)
3725       Mask |= Val;
3726     if (i != 0)
3727       Mask <<= 2;
3728   }
3729   return Mask;
3730 }
3731
3732 /// getShufflePALIGNRImmediate - Return the appropriate immediate to shuffle
3733 /// the specified VECTOR_SHUFFLE mask with the PALIGNR instruction.
3734 unsigned X86::getShufflePALIGNRImmediate(SDNode *N) {
3735   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
3736   EVT VVT = N->getValueType(0);
3737   unsigned EltSize = VVT.getVectorElementType().getSizeInBits() >> 3;
3738   int Val = 0;
3739
3740   unsigned i, e;
3741   for (i = 0, e = VVT.getVectorNumElements(); i != e; ++i) {
3742     Val = SVOp->getMaskElt(i);
3743     if (Val >= 0)
3744       break;
3745   }
3746   assert(Val - i > 0 && "PALIGNR imm should be positive");
3747   return (Val - i) * EltSize;
3748 }
3749
3750 /// getExtractVEXTRACTF128Immediate - Return the appropriate immediate
3751 /// to extract the specified EXTRACT_SUBVECTOR index with VEXTRACTF128
3752 /// instructions.
3753 unsigned X86::getExtractVEXTRACTF128Immediate(SDNode *N) {
3754   if (!isa<ConstantSDNode>(N->getOperand(1).getNode()))
3755     llvm_unreachable("Illegal extract subvector for VEXTRACTF128");
3756
3757   uint64_t Index =
3758     cast<ConstantSDNode>(N->getOperand(1).getNode())->getZExtValue();
3759
3760   EVT VecVT = N->getOperand(0).getValueType();
3761   EVT ElVT = VecVT.getVectorElementType();
3762
3763   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3764   return Index / NumElemsPerChunk;
3765 }
3766
3767 /// getInsertVINSERTF128Immediate - Return the appropriate immediate
3768 /// to insert at the specified INSERT_SUBVECTOR index with VINSERTF128
3769 /// instructions.
3770 unsigned X86::getInsertVINSERTF128Immediate(SDNode *N) {
3771   if (!isa<ConstantSDNode>(N->getOperand(2).getNode()))
3772     llvm_unreachable("Illegal insert subvector for VINSERTF128");
3773
3774   uint64_t Index =
3775     cast<ConstantSDNode>(N->getOperand(2).getNode())->getZExtValue();
3776
3777   EVT VecVT = N->getValueType(0);
3778   EVT ElVT = VecVT.getVectorElementType();
3779
3780   unsigned NumElemsPerChunk = 128 / ElVT.getSizeInBits();
3781   return Index / NumElemsPerChunk;
3782 }
3783
3784 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
3785 /// constant +0.0.
3786 bool X86::isZeroNode(SDValue Elt) {
3787   return ((isa<ConstantSDNode>(Elt) &&
3788            cast<ConstantSDNode>(Elt)->isNullValue()) ||
3789           (isa<ConstantFPSDNode>(Elt) &&
3790            cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
3791 }
3792
3793 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
3794 /// their permute mask.
3795 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
3796                                     SelectionDAG &DAG) {
3797   EVT VT = SVOp->getValueType(0);
3798   unsigned NumElems = VT.getVectorNumElements();
3799   SmallVector<int, 8> MaskVec;
3800
3801   for (unsigned i = 0; i != NumElems; ++i) {
3802     int idx = SVOp->getMaskElt(i);
3803     if (idx < 0)
3804       MaskVec.push_back(idx);
3805     else if (idx < (int)NumElems)
3806       MaskVec.push_back(idx + NumElems);
3807     else
3808       MaskVec.push_back(idx - NumElems);
3809   }
3810   return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
3811                               SVOp->getOperand(0), &MaskVec[0]);
3812 }
3813
3814 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
3815 /// the two vector operands have swapped position.
3816 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, EVT VT) {
3817   unsigned NumElems = VT.getVectorNumElements();
3818   for (unsigned i = 0; i != NumElems; ++i) {
3819     int idx = Mask[i];
3820     if (idx < 0)
3821       continue;
3822     else if (idx < (int)NumElems)
3823       Mask[i] = idx + NumElems;
3824     else
3825       Mask[i] = idx - NumElems;
3826   }
3827 }
3828
3829 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
3830 /// match movhlps. The lower half elements should come from upper half of
3831 /// V1 (and in order), and the upper half elements should come from the upper
3832 /// half of V2 (and in order).
3833 static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
3834   if (Op->getValueType(0).getVectorNumElements() != 4)
3835     return false;
3836   for (unsigned i = 0, e = 2; i != e; ++i)
3837     if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
3838       return false;
3839   for (unsigned i = 2; i != 4; ++i)
3840     if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
3841       return false;
3842   return true;
3843 }
3844
3845 /// isScalarLoadToVector - Returns true if the node is a scalar load that
3846 /// is promoted to a vector. It also returns the LoadSDNode by reference if
3847 /// required.
3848 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
3849   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
3850     return false;
3851   N = N->getOperand(0).getNode();
3852   if (!ISD::isNON_EXTLoad(N))
3853     return false;
3854   if (LD)
3855     *LD = cast<LoadSDNode>(N);
3856   return true;
3857 }
3858
3859 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
3860 /// match movlp{s|d}. The lower half elements should come from lower half of
3861 /// V1 (and in order), and the upper half elements should come from the upper
3862 /// half of V2 (and in order). And since V1 will become the source of the
3863 /// MOVLP, it must be either a vector load or a scalar load to vector.
3864 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
3865                                ShuffleVectorSDNode *Op) {
3866   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
3867     return false;
3868   // Is V2 is a vector load, don't do this transformation. We will try to use
3869   // load folding shufps op.
3870   if (ISD::isNON_EXTLoad(V2))
3871     return false;
3872
3873   unsigned NumElems = Op->getValueType(0).getVectorNumElements();
3874
3875   if (NumElems != 2 && NumElems != 4)
3876     return false;
3877   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
3878     if (!isUndefOrEqual(Op->getMaskElt(i), i))
3879       return false;
3880   for (unsigned i = NumElems/2; i != NumElems; ++i)
3881     if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
3882       return false;
3883   return true;
3884 }
3885
3886 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
3887 /// all the same.
3888 static bool isSplatVector(SDNode *N) {
3889   if (N->getOpcode() != ISD::BUILD_VECTOR)
3890     return false;
3891
3892   SDValue SplatValue = N->getOperand(0);
3893   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
3894     if (N->getOperand(i) != SplatValue)
3895       return false;
3896   return true;
3897 }
3898
3899 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
3900 /// to an zero vector.
3901 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
3902 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
3903   SDValue V1 = N->getOperand(0);
3904   SDValue V2 = N->getOperand(1);
3905   unsigned NumElems = N->getValueType(0).getVectorNumElements();
3906   for (unsigned i = 0; i != NumElems; ++i) {
3907     int Idx = N->getMaskElt(i);
3908     if (Idx >= (int)NumElems) {
3909       unsigned Opc = V2.getOpcode();
3910       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
3911         continue;
3912       if (Opc != ISD::BUILD_VECTOR ||
3913           !X86::isZeroNode(V2.getOperand(Idx-NumElems)))
3914         return false;
3915     } else if (Idx >= 0) {
3916       unsigned Opc = V1.getOpcode();
3917       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
3918         continue;
3919       if (Opc != ISD::BUILD_VECTOR ||
3920           !X86::isZeroNode(V1.getOperand(Idx)))
3921         return false;
3922     }
3923   }
3924   return true;
3925 }
3926
3927 /// getZeroVector - Returns a vector of specified type with all zero elements.
3928 ///
3929 static SDValue getZeroVector(EVT VT, bool HasSSE2, SelectionDAG &DAG,
3930                              DebugLoc dl) {
3931   assert(VT.isVector() && "Expected a vector type");
3932
3933   // Always build SSE zero vectors as <4 x i32> bitcasted
3934   // to their dest type. This ensures they get CSE'd.
3935   SDValue Vec;
3936   if (VT.getSizeInBits() == 128) {  // SSE
3937     if (HasSSE2) {  // SSE2
3938       SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
3939       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
3940     } else { // SSE1
3941       SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3942       Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
3943     }
3944   } else if (VT.getSizeInBits() == 256) { // AVX
3945     // 256-bit logic and arithmetic instructions in AVX are
3946     // all floating-point, no support for integer ops. Default
3947     // to emitting fp zeroed vectors then.
3948     SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
3949     SDValue Ops[] = { Cst, Cst, Cst, Cst, Cst, Cst, Cst, Cst };
3950     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v8f32, Ops, 8);
3951   }
3952   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
3953 }
3954
3955 /// getOnesVector - Returns a vector of specified type with all bits set.
3956 /// Always build ones vectors as <4 x i32>. For 256-bit types, use two
3957 /// <4 x i32> inserted in a <8 x i32> appropriately. Then bitcast to their
3958 /// original type, ensuring they get CSE'd.
3959 static SDValue getOnesVector(EVT VT, SelectionDAG &DAG, DebugLoc dl) {
3960   assert(VT.isVector() && "Expected a vector type");
3961   assert((VT.is128BitVector() || VT.is256BitVector())
3962          && "Expected a 128-bit or 256-bit vector type");
3963
3964   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
3965   SDValue Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32,
3966                             Cst, Cst, Cst, Cst);
3967
3968   if (VT.is256BitVector()) {
3969     SDValue InsV = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, MVT::v8i32),
3970                               Vec, DAG.getConstant(0, MVT::i32), DAG, dl);
3971     Vec = Insert128BitVector(InsV, Vec,
3972                   DAG.getConstant(4 /* NumElems/2 */, MVT::i32), DAG, dl);
3973   }
3974
3975   return DAG.getNode(ISD::BITCAST, dl, VT, Vec);
3976 }
3977
3978 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
3979 /// that point to V2 points to its first element.
3980 static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
3981   EVT VT = SVOp->getValueType(0);
3982   unsigned NumElems = VT.getVectorNumElements();
3983
3984   bool Changed = false;
3985   SmallVector<int, 8> MaskVec;
3986   SVOp->getMask(MaskVec);
3987
3988   for (unsigned i = 0; i != NumElems; ++i) {
3989     if (MaskVec[i] > (int)NumElems) {
3990       MaskVec[i] = NumElems;
3991       Changed = true;
3992     }
3993   }
3994   if (Changed)
3995     return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
3996                                 SVOp->getOperand(1), &MaskVec[0]);
3997   return SDValue(SVOp, 0);
3998 }
3999
4000 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
4001 /// operation of specified width.
4002 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4003                        SDValue V2) {
4004   unsigned NumElems = VT.getVectorNumElements();
4005   SmallVector<int, 8> Mask;
4006   Mask.push_back(NumElems);
4007   for (unsigned i = 1; i != NumElems; ++i)
4008     Mask.push_back(i);
4009   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4010 }
4011
4012 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
4013 static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4014                           SDValue V2) {
4015   unsigned NumElems = VT.getVectorNumElements();
4016   SmallVector<int, 8> Mask;
4017   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
4018     Mask.push_back(i);
4019     Mask.push_back(i + NumElems);
4020   }
4021   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4022 }
4023
4024 /// getUnpackh - Returns a vector_shuffle node for an unpackh operation.
4025 static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, EVT VT, SDValue V1,
4026                           SDValue V2) {
4027   unsigned NumElems = VT.getVectorNumElements();
4028   unsigned Half = NumElems/2;
4029   SmallVector<int, 8> Mask;
4030   for (unsigned i = 0; i != Half; ++i) {
4031     Mask.push_back(i + Half);
4032     Mask.push_back(i + NumElems + Half);
4033   }
4034   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
4035 }
4036
4037 // PromoteSplatv8v16 - All i16 and i8 vector types can't be used directly by
4038 // a generic shuffle instruction because the target has no such instructions.
4039 // Generate shuffles which repeat i16 and i8 several times until they can be
4040 // represented by v4f32 and then be manipulated by target suported shuffles.
4041 static SDValue PromoteSplatv8v16(SDValue V, SelectionDAG &DAG, int &EltNo) {
4042   EVT VT = V.getValueType();
4043   int NumElems = VT.getVectorNumElements();
4044   DebugLoc dl = V.getDebugLoc();
4045
4046   while (NumElems > 4) {
4047     if (EltNo < NumElems/2) {
4048       V = getUnpackl(DAG, dl, VT, V, V);
4049     } else {
4050       V = getUnpackh(DAG, dl, VT, V, V);
4051       EltNo -= NumElems/2;
4052     }
4053     NumElems >>= 1;
4054   }
4055   return V;
4056 }
4057
4058 /// getLegalSplat - Generate a legal splat with supported x86 shuffles
4059 static SDValue getLegalSplat(SelectionDAG &DAG, SDValue V, int EltNo) {
4060   EVT VT = V.getValueType();
4061   DebugLoc dl = V.getDebugLoc();
4062   assert((VT.getSizeInBits() == 128 || VT.getSizeInBits() == 256)
4063          && "Vector size not supported");
4064
4065   bool Is128 = VT.getSizeInBits() == 128;
4066   EVT NVT = Is128 ? MVT::v4f32 : MVT::v8f32;
4067   V = DAG.getNode(ISD::BITCAST, dl, NVT, V);
4068
4069   if (Is128) {
4070     int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
4071     V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4072   } else {
4073     // The second half of indicies refer to the higher part, which is a
4074     // duplication of the lower one. This makes this shuffle a perfect match
4075     // for the VPERM instruction.
4076     int SplatMask[8] = { EltNo, EltNo, EltNo, EltNo,
4077                          EltNo+4, EltNo+4, EltNo+4, EltNo+4 };
4078     V = DAG.getVectorShuffle(NVT, dl, V, DAG.getUNDEF(NVT), &SplatMask[0]);
4079   }
4080
4081   return DAG.getNode(ISD::BITCAST, dl, VT, V);
4082 }
4083
4084 /// PromoteVectorToScalarSplat - Since there's no native support for
4085 /// scalar_to_vector for 256-bit AVX, a 128-bit scalar_to_vector +
4086 /// INSERT_SUBVECTOR is generated. Recognize this idiom and do the
4087 /// shuffle before the insertion, this yields less instructions in the end.
4088 static SDValue PromoteVectorToScalarSplat(ShuffleVectorSDNode *SV,
4089                                           SelectionDAG &DAG) {
4090   EVT SrcVT = SV->getValueType(0);
4091   SDValue V1 = SV->getOperand(0);
4092   DebugLoc dl = SV->getDebugLoc();
4093   int NumElems = SrcVT.getVectorNumElements();
4094
4095   assert(SrcVT.is256BitVector() && "unknown howto handle vector type");
4096
4097   SmallVector<int, 4> Mask;
4098   for (int i = 0; i < NumElems/2; ++i)
4099     Mask.push_back(SV->getMaskElt(i));
4100
4101   EVT SVT = EVT::getVectorVT(*DAG.getContext(), SrcVT.getVectorElementType(),
4102                              NumElems/2);
4103   SDValue SV1 = DAG.getVectorShuffle(SVT, dl, V1.getOperand(1),
4104                                      DAG.getUNDEF(SVT), &Mask[0]);
4105   SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), SV1,
4106                                     DAG.getConstant(0, MVT::i32), DAG, dl);
4107
4108   return Insert128BitVector(InsV, SV1,
4109                        DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4110 }
4111
4112 /// PromoteSplat - Promote a splat of v4i32, v8i16 or v16i8 to v4f32 and
4113 /// v8i32, v16i16 or v32i8 to v8f32.
4114 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG) {
4115   EVT SrcVT = SV->getValueType(0);
4116   SDValue V1 = SV->getOperand(0);
4117   DebugLoc dl = SV->getDebugLoc();
4118
4119   int EltNo = SV->getSplatIndex();
4120   int NumElems = SrcVT.getVectorNumElements();
4121   unsigned Size = SrcVT.getSizeInBits();
4122
4123   // Extract the 128-bit part containing the splat element and update
4124   // the splat element index when it refers to the higher register.
4125   if (Size == 256) {
4126     unsigned Idx = (EltNo > NumElems/2) ? NumElems/2 : 0;
4127     V1 = Extract128BitVector(V1, DAG.getConstant(Idx, MVT::i32), DAG, dl);
4128     if (Idx > 0)
4129       EltNo -= NumElems/2;
4130   }
4131
4132   // Make this 128-bit vector duplicate i8 and i16 elements
4133   if (NumElems > 4)
4134     V1 = PromoteSplatv8v16(V1, DAG, EltNo);
4135
4136   // Recreate the 256-bit vector and place the same 128-bit vector
4137   // into the low and high part. This is necessary because we want
4138   // to use VPERM to shuffle the v8f32 vector, and VPERM only shuffles
4139   // inside each separate v4f32 lane.
4140   if (Size == 256) {
4141     SDValue InsV = Insert128BitVector(DAG.getUNDEF(SrcVT), V1,
4142                          DAG.getConstant(0, MVT::i32), DAG, dl);
4143     V1 = Insert128BitVector(InsV, V1,
4144                DAG.getConstant(NumElems/2, MVT::i32), DAG, dl);
4145   }
4146
4147   return getLegalSplat(DAG, V1, EltNo);
4148 }
4149
4150 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
4151 /// vector of zero or undef vector.  This produces a shuffle where the low
4152 /// element of V2 is swizzled into the zero/undef vector, landing at element
4153 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
4154 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
4155                                              bool isZero, bool HasSSE2,
4156                                              SelectionDAG &DAG) {
4157   EVT VT = V2.getValueType();
4158   SDValue V1 = isZero
4159     ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
4160   unsigned NumElems = VT.getVectorNumElements();
4161   SmallVector<int, 16> MaskVec;
4162   for (unsigned i = 0; i != NumElems; ++i)
4163     // If this is the insertion idx, put the low elt of V2 here.
4164     MaskVec.push_back(i == Idx ? NumElems : i);
4165   return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
4166 }
4167
4168 /// getShuffleScalarElt - Returns the scalar element that will make up the ith
4169 /// element of the result of the vector shuffle.
4170 static SDValue getShuffleScalarElt(SDNode *N, int Index, SelectionDAG &DAG,
4171                                    unsigned Depth) {
4172   if (Depth == 6)
4173     return SDValue();  // Limit search depth.
4174
4175   SDValue V = SDValue(N, 0);
4176   EVT VT = V.getValueType();
4177   unsigned Opcode = V.getOpcode();
4178
4179   // Recurse into ISD::VECTOR_SHUFFLE node to find scalars.
4180   if (const ShuffleVectorSDNode *SV = dyn_cast<ShuffleVectorSDNode>(N)) {
4181     Index = SV->getMaskElt(Index);
4182
4183     if (Index < 0)
4184       return DAG.getUNDEF(VT.getVectorElementType());
4185
4186     int NumElems = VT.getVectorNumElements();
4187     SDValue NewV = (Index < NumElems) ? SV->getOperand(0) : SV->getOperand(1);
4188     return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG, Depth+1);
4189   }
4190
4191   // Recurse into target specific vector shuffles to find scalars.
4192   if (isTargetShuffle(Opcode)) {
4193     int NumElems = VT.getVectorNumElements();
4194     SmallVector<unsigned, 16> ShuffleMask;
4195     SDValue ImmN;
4196
4197     switch(Opcode) {
4198     case X86ISD::SHUFPS:
4199     case X86ISD::SHUFPD:
4200       ImmN = N->getOperand(N->getNumOperands()-1);
4201       DecodeSHUFPSMask(NumElems,
4202                        cast<ConstantSDNode>(ImmN)->getZExtValue(),
4203                        ShuffleMask);
4204       break;
4205     case X86ISD::PUNPCKHBW:
4206     case X86ISD::PUNPCKHWD:
4207     case X86ISD::PUNPCKHDQ:
4208     case X86ISD::PUNPCKHQDQ:
4209       DecodePUNPCKHMask(NumElems, ShuffleMask);
4210       break;
4211     case X86ISD::UNPCKHPS:
4212     case X86ISD::UNPCKHPD:
4213     case X86ISD::VUNPCKHPSY:
4214     case X86ISD::VUNPCKHPDY:
4215       DecodeUNPCKHPMask(NumElems, ShuffleMask);
4216       break;
4217     case X86ISD::PUNPCKLBW:
4218     case X86ISD::PUNPCKLWD:
4219     case X86ISD::PUNPCKLDQ:
4220     case X86ISD::PUNPCKLQDQ:
4221       DecodePUNPCKLMask(VT, ShuffleMask);
4222       break;
4223     case X86ISD::UNPCKLPS:
4224     case X86ISD::UNPCKLPD:
4225     case X86ISD::VUNPCKLPSY:
4226     case X86ISD::VUNPCKLPDY:
4227       DecodeUNPCKLPMask(VT, ShuffleMask);
4228       break;
4229     case X86ISD::MOVHLPS:
4230       DecodeMOVHLPSMask(NumElems, ShuffleMask);
4231       break;
4232     case X86ISD::MOVLHPS:
4233       DecodeMOVLHPSMask(NumElems, ShuffleMask);
4234       break;
4235     case X86ISD::PSHUFD:
4236       ImmN = N->getOperand(N->getNumOperands()-1);
4237       DecodePSHUFMask(NumElems,
4238                       cast<ConstantSDNode>(ImmN)->getZExtValue(),
4239                       ShuffleMask);
4240       break;
4241     case X86ISD::PSHUFHW:
4242       ImmN = N->getOperand(N->getNumOperands()-1);
4243       DecodePSHUFHWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4244                         ShuffleMask);
4245       break;
4246     case X86ISD::PSHUFLW:
4247       ImmN = N->getOperand(N->getNumOperands()-1);
4248       DecodePSHUFLWMask(cast<ConstantSDNode>(ImmN)->getZExtValue(),
4249                         ShuffleMask);
4250       break;
4251     case X86ISD::MOVSS:
4252     case X86ISD::MOVSD: {
4253       // The index 0 always comes from the first element of the second source,
4254       // this is why MOVSS and MOVSD are used in the first place. The other
4255       // elements come from the other positions of the first source vector.
4256       unsigned OpNum = (Index == 0) ? 1 : 0;
4257       return getShuffleScalarElt(V.getOperand(OpNum).getNode(), Index, DAG,
4258                                  Depth+1);
4259     }
4260     case X86ISD::VPERMILPS:
4261       ImmN = N->getOperand(N->getNumOperands()-1);
4262       DecodeVPERMILPSMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4263                         ShuffleMask);
4264       break;
4265     case X86ISD::VPERMILPSY:
4266       ImmN = N->getOperand(N->getNumOperands()-1);
4267       DecodeVPERMILPSMask(8, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4268                         ShuffleMask);
4269       break;
4270     case X86ISD::VPERMILPD:
4271       ImmN = N->getOperand(N->getNumOperands()-1);
4272       DecodeVPERMILPDMask(2, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4273                         ShuffleMask);
4274       break;
4275     case X86ISD::VPERMILPDY:
4276       ImmN = N->getOperand(N->getNumOperands()-1);
4277       DecodeVPERMILPDMask(4, cast<ConstantSDNode>(ImmN)->getZExtValue(),
4278                         ShuffleMask);
4279       break;
4280     default:
4281       assert("not implemented for target shuffle node");
4282       return SDValue();
4283     }
4284
4285     Index = ShuffleMask[Index];
4286     if (Index < 0)
4287       return DAG.getUNDEF(VT.getVectorElementType());
4288
4289     SDValue NewV = (Index < NumElems) ? N->getOperand(0) : N->getOperand(1);
4290     return getShuffleScalarElt(NewV.getNode(), Index % NumElems, DAG,
4291                                Depth+1);
4292   }
4293
4294   // Actual nodes that may contain scalar elements
4295   if (Opcode == ISD::BITCAST) {
4296     V = V.getOperand(0);
4297     EVT SrcVT = V.getValueType();
4298     unsigned NumElems = VT.getVectorNumElements();
4299
4300     if (!SrcVT.isVector() || SrcVT.getVectorNumElements() != NumElems)
4301       return SDValue();
4302   }
4303
4304   if (V.getOpcode() == ISD::SCALAR_TO_VECTOR)
4305     return (Index == 0) ? V.getOperand(0)
4306                           : DAG.getUNDEF(VT.getVectorElementType());
4307
4308   if (V.getOpcode() == ISD::BUILD_VECTOR)
4309     return V.getOperand(Index);
4310
4311   return SDValue();
4312 }
4313
4314 /// getNumOfConsecutiveZeros - Return the number of elements of a vector
4315 /// shuffle operation which come from a consecutively from a zero. The
4316 /// search can start in two different directions, from left or right.
4317 static
4318 unsigned getNumOfConsecutiveZeros(SDNode *N, int NumElems,
4319                                   bool ZerosFromLeft, SelectionDAG &DAG) {
4320   int i = 0;
4321
4322   while (i < NumElems) {
4323     unsigned Index = ZerosFromLeft ? i : NumElems-i-1;
4324     SDValue Elt = getShuffleScalarElt(N, Index, DAG, 0);
4325     if (!(Elt.getNode() &&
4326          (Elt.getOpcode() == ISD::UNDEF || X86::isZeroNode(Elt))))
4327       break;
4328     ++i;
4329   }
4330
4331   return i;
4332 }
4333
4334 /// isShuffleMaskConsecutive - Check if the shuffle mask indicies from MaskI to
4335 /// MaskE correspond consecutively to elements from one of the vector operands,
4336 /// starting from its index OpIdx. Also tell OpNum which source vector operand.
4337 static
4338 bool isShuffleMaskConsecutive(ShuffleVectorSDNode *SVOp, int MaskI, int MaskE,
4339                               int OpIdx, int NumElems, unsigned &OpNum) {
4340   bool SeenV1 = false;
4341   bool SeenV2 = false;
4342
4343   for (int i = MaskI; i <= MaskE; ++i, ++OpIdx) {
4344     int Idx = SVOp->getMaskElt(i);
4345     // Ignore undef indicies
4346     if (Idx < 0)
4347       continue;
4348
4349     if (Idx < NumElems)
4350       SeenV1 = true;
4351     else
4352       SeenV2 = true;
4353
4354     // Only accept consecutive elements from the same vector
4355     if ((Idx % NumElems != OpIdx) || (SeenV1 && SeenV2))
4356       return false;
4357   }
4358
4359   OpNum = SeenV1 ? 0 : 1;
4360   return true;
4361 }
4362
4363 /// isVectorShiftRight - Returns true if the shuffle can be implemented as a
4364 /// logical left shift of a vector.
4365 static bool isVectorShiftRight(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4366                                bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4367   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4368   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4369               false /* check zeros from right */, DAG);
4370   unsigned OpSrc;
4371
4372   if (!NumZeros)
4373     return false;
4374
4375   // Considering the elements in the mask that are not consecutive zeros,
4376   // check if they consecutively come from only one of the source vectors.
4377   //
4378   //               V1 = {X, A, B, C}     0
4379   //                         \  \  \    /
4380   //   vector_shuffle V1, V2 <1, 2, 3, X>
4381   //
4382   if (!isShuffleMaskConsecutive(SVOp,
4383             0,                   // Mask Start Index
4384             NumElems-NumZeros-1, // Mask End Index
4385             NumZeros,            // Where to start looking in the src vector
4386             NumElems,            // Number of elements in vector
4387             OpSrc))              // Which source operand ?
4388     return false;
4389
4390   isLeft = false;
4391   ShAmt = NumZeros;
4392   ShVal = SVOp->getOperand(OpSrc);
4393   return true;
4394 }
4395
4396 /// isVectorShiftLeft - Returns true if the shuffle can be implemented as a
4397 /// logical left shift of a vector.
4398 static bool isVectorShiftLeft(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4399                               bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4400   unsigned NumElems = SVOp->getValueType(0).getVectorNumElements();
4401   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems,
4402               true /* check zeros from left */, DAG);
4403   unsigned OpSrc;
4404
4405   if (!NumZeros)
4406     return false;
4407
4408   // Considering the elements in the mask that are not consecutive zeros,
4409   // check if they consecutively come from only one of the source vectors.
4410   //
4411   //                           0    { A, B, X, X } = V2
4412   //                          / \    /  /
4413   //   vector_shuffle V1, V2 <X, X, 4, 5>
4414   //
4415   if (!isShuffleMaskConsecutive(SVOp,
4416             NumZeros,     // Mask Start Index
4417             NumElems-1,   // Mask End Index
4418             0,            // Where to start looking in the src vector
4419             NumElems,     // Number of elements in vector
4420             OpSrc))       // Which source operand ?
4421     return false;
4422
4423   isLeft = true;
4424   ShAmt = NumZeros;
4425   ShVal = SVOp->getOperand(OpSrc);
4426   return true;
4427 }
4428
4429 /// isVectorShift - Returns true if the shuffle can be implemented as a
4430 /// logical left or right shift of a vector.
4431 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
4432                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
4433   if (isVectorShiftLeft(SVOp, DAG, isLeft, ShVal, ShAmt) ||
4434       isVectorShiftRight(SVOp, DAG, isLeft, ShVal, ShAmt))
4435     return true;
4436
4437   return false;
4438 }
4439
4440 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
4441 ///
4442 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
4443                                        unsigned NumNonZero, unsigned NumZero,
4444                                        SelectionDAG &DAG,
4445                                        const TargetLowering &TLI) {
4446   if (NumNonZero > 8)
4447     return SDValue();
4448
4449   DebugLoc dl = Op.getDebugLoc();
4450   SDValue V(0, 0);
4451   bool First = true;
4452   for (unsigned i = 0; i < 16; ++i) {
4453     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
4454     if (ThisIsNonZero && First) {
4455       if (NumZero)
4456         V = getZeroVector(MVT::v8i16, true, DAG, dl);
4457       else
4458         V = DAG.getUNDEF(MVT::v8i16);
4459       First = false;
4460     }
4461
4462     if ((i & 1) != 0) {
4463       SDValue ThisElt(0, 0), LastElt(0, 0);
4464       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
4465       if (LastIsNonZero) {
4466         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
4467                               MVT::i16, Op.getOperand(i-1));
4468       }
4469       if (ThisIsNonZero) {
4470         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
4471         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
4472                               ThisElt, DAG.getConstant(8, MVT::i8));
4473         if (LastIsNonZero)
4474           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
4475       } else
4476         ThisElt = LastElt;
4477
4478       if (ThisElt.getNode())
4479         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
4480                         DAG.getIntPtrConstant(i/2));
4481     }
4482   }
4483
4484   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V);
4485 }
4486
4487 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
4488 ///
4489 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
4490                                      unsigned NumNonZero, unsigned NumZero,
4491                                      SelectionDAG &DAG,
4492                                      const TargetLowering &TLI) {
4493   if (NumNonZero > 4)
4494     return SDValue();
4495
4496   DebugLoc dl = Op.getDebugLoc();
4497   SDValue V(0, 0);
4498   bool First = true;
4499   for (unsigned i = 0; i < 8; ++i) {
4500     bool isNonZero = (NonZeros & (1 << i)) != 0;
4501     if (isNonZero) {
4502       if (First) {
4503         if (NumZero)
4504           V = getZeroVector(MVT::v8i16, true, DAG, dl);
4505         else
4506           V = DAG.getUNDEF(MVT::v8i16);
4507         First = false;
4508       }
4509       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
4510                       MVT::v8i16, V, Op.getOperand(i),
4511                       DAG.getIntPtrConstant(i));
4512     }
4513   }
4514
4515   return V;
4516 }
4517
4518 /// getVShift - Return a vector logical shift node.
4519 ///
4520 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp,
4521                          unsigned NumBits, SelectionDAG &DAG,
4522                          const TargetLowering &TLI, DebugLoc dl) {
4523   EVT ShVT = MVT::v2i64;
4524   unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
4525   SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp);
4526   return DAG.getNode(ISD::BITCAST, dl, VT,
4527                      DAG.getNode(Opc, dl, ShVT, SrcOp,
4528                              DAG.getConstant(NumBits,
4529                                   TLI.getShiftAmountTy(SrcOp.getValueType()))));
4530 }
4531
4532 SDValue
4533 X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
4534                                           SelectionDAG &DAG) const {
4535
4536   // Check if the scalar load can be widened into a vector load. And if
4537   // the address is "base + cst" see if the cst can be "absorbed" into
4538   // the shuffle mask.
4539   if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) {
4540     SDValue Ptr = LD->getBasePtr();
4541     if (!ISD::isNormalLoad(LD) || LD->isVolatile())
4542       return SDValue();
4543     EVT PVT = LD->getValueType(0);
4544     if (PVT != MVT::i32 && PVT != MVT::f32)
4545       return SDValue();
4546
4547     int FI = -1;
4548     int64_t Offset = 0;
4549     if (FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(Ptr)) {
4550       FI = FINode->getIndex();
4551       Offset = 0;
4552     } else if (DAG.isBaseWithConstantOffset(Ptr) &&
4553                isa<FrameIndexSDNode>(Ptr.getOperand(0))) {
4554       FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex();
4555       Offset = Ptr.getConstantOperandVal(1);
4556       Ptr = Ptr.getOperand(0);
4557     } else {
4558       return SDValue();
4559     }
4560
4561     SDValue Chain = LD->getChain();
4562     // Make sure the stack object alignment is at least 16.
4563     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
4564     if (DAG.InferPtrAlignment(Ptr) < 16) {
4565       if (MFI->isFixedObjectIndex(FI)) {
4566         // Can't change the alignment. FIXME: It's possible to compute
4567         // the exact stack offset and reference FI + adjust offset instead.
4568         // If someone *really* cares about this. That's the way to implement it.
4569         return SDValue();
4570       } else {
4571         MFI->setObjectAlignment(FI, 16);
4572       }
4573     }
4574
4575     // (Offset % 16) must be multiple of 4. Then address is then
4576     // Ptr + (Offset & ~15).
4577     if (Offset < 0)
4578       return SDValue();
4579     if ((Offset % 16) & 3)
4580       return SDValue();
4581     int64_t StartOffset = Offset & ~15;
4582     if (StartOffset)
4583       Ptr = DAG.getNode(ISD::ADD, Ptr.getDebugLoc(), Ptr.getValueType(),
4584                         Ptr,DAG.getConstant(StartOffset, Ptr.getValueType()));
4585
4586     int EltNo = (Offset - StartOffset) >> 2;
4587     int Mask[4] = { EltNo, EltNo, EltNo, EltNo };
4588     EVT VT = (PVT == MVT::i32) ? MVT::v4i32 : MVT::v4f32;
4589     SDValue V1 = DAG.getLoad(VT, dl, Chain, Ptr,
4590                              LD->getPointerInfo().getWithOffset(StartOffset),
4591                              false, false, 0);
4592     // Canonicalize it to a v4i32 shuffle.
4593     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v4i32, V1);
4594     return DAG.getNode(ISD::BITCAST, dl, VT,
4595                        DAG.getVectorShuffle(MVT::v4i32, dl, V1,
4596                                             DAG.getUNDEF(MVT::v4i32),&Mask[0]));
4597   }
4598
4599   return SDValue();
4600 }
4601
4602 /// EltsFromConsecutiveLoads - Given the initializing elements 'Elts' of a
4603 /// vector of type 'VT', see if the elements can be replaced by a single large
4604 /// load which has the same value as a build_vector whose operands are 'elts'.
4605 ///
4606 /// Example: <load i32 *a, load i32 *a+4, undef, undef> -> zextload a
4607 ///
4608 /// FIXME: we'd also like to handle the case where the last elements are zero
4609 /// rather than undef via VZEXT_LOAD, but we do not detect that case today.
4610 /// There's even a handy isZeroNode for that purpose.
4611 static SDValue EltsFromConsecutiveLoads(EVT VT, SmallVectorImpl<SDValue> &Elts,
4612                                         DebugLoc &DL, SelectionDAG &DAG) {
4613   EVT EltVT = VT.getVectorElementType();
4614   unsigned NumElems = Elts.size();
4615
4616   LoadSDNode *LDBase = NULL;
4617   unsigned LastLoadedElt = -1U;
4618
4619   // For each element in the initializer, see if we've found a load or an undef.
4620   // If we don't find an initial load element, or later load elements are
4621   // non-consecutive, bail out.
4622   for (unsigned i = 0; i < NumElems; ++i) {
4623     SDValue Elt = Elts[i];
4624
4625     if (!Elt.getNode() ||
4626         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
4627       return SDValue();
4628     if (!LDBase) {
4629       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
4630         return SDValue();
4631       LDBase = cast<LoadSDNode>(Elt.getNode());
4632       LastLoadedElt = i;
4633       continue;
4634     }
4635     if (Elt.getOpcode() == ISD::UNDEF)
4636       continue;
4637
4638     LoadSDNode *LD = cast<LoadSDNode>(Elt);
4639     if (!DAG.isConsecutiveLoad(LD, LDBase, EltVT.getSizeInBits()/8, i))
4640       return SDValue();
4641     LastLoadedElt = i;
4642   }
4643
4644   // If we have found an entire vector of loads and undefs, then return a large
4645   // load of the entire vector width starting at the base pointer.  If we found
4646   // consecutive loads for the low half, generate a vzext_load node.
4647   if (LastLoadedElt == NumElems - 1) {
4648     if (DAG.InferPtrAlignment(LDBase->getBasePtr()) >= 16)
4649       return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
4650                          LDBase->getPointerInfo(),
4651                          LDBase->isVolatile(), LDBase->isNonTemporal(), 0);
4652     return DAG.getLoad(VT, DL, LDBase->getChain(), LDBase->getBasePtr(),
4653                        LDBase->getPointerInfo(),
4654                        LDBase->isVolatile(), LDBase->isNonTemporal(),
4655                        LDBase->getAlignment());
4656   } else if (NumElems == 4 && LastLoadedElt == 1 &&
4657              DAG.getTargetLoweringInfo().isTypeLegal(MVT::v2i64)) {
4658     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
4659     SDValue Ops[] = { LDBase->getChain(), LDBase->getBasePtr() };
4660     SDValue ResNode = DAG.getMemIntrinsicNode(X86ISD::VZEXT_LOAD, DL, Tys,
4661                                               Ops, 2, MVT::i32,
4662                                               LDBase->getMemOperand());
4663     return DAG.getNode(ISD::BITCAST, DL, VT, ResNode);
4664   }
4665   return SDValue();
4666 }
4667
4668 SDValue
4669 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) const {
4670   DebugLoc dl = Op.getDebugLoc();
4671
4672   EVT VT = Op.getValueType();
4673   EVT ExtVT = VT.getVectorElementType();
4674   unsigned NumElems = Op.getNumOperands();
4675
4676   // All zero's:
4677   //  - pxor (SSE2), xorps (SSE1), vpxor (128 AVX), xorp[s|d] (256 AVX)
4678   // All one's:
4679   //  - pcmpeqd (SSE2 and 128 AVX), fallback to constant pools (256 AVX)
4680   if (ISD::isBuildVectorAllZeros(Op.getNode()) ||
4681       ISD::isBuildVectorAllOnes(Op.getNode())) {
4682     // Canonicalize this to <4 x i32> or <8 x 32> (SSE) to
4683     // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
4684     // eliminated on x86-32 hosts.
4685     if (Op.getValueType() == MVT::v4i32 ||
4686         Op.getValueType() == MVT::v8i32)
4687       return Op;
4688
4689     if (ISD::isBuildVectorAllOnes(Op.getNode()))
4690       return getOnesVector(Op.getValueType(), DAG, dl);
4691     return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
4692   }
4693
4694   unsigned EVTBits = ExtVT.getSizeInBits();
4695
4696   unsigned NumZero  = 0;
4697   unsigned NumNonZero = 0;
4698   unsigned NonZeros = 0;
4699   bool IsAllConstants = true;
4700   SmallSet<SDValue, 8> Values;
4701   for (unsigned i = 0; i < NumElems; ++i) {
4702     SDValue Elt = Op.getOperand(i);
4703     if (Elt.getOpcode() == ISD::UNDEF)
4704       continue;
4705     Values.insert(Elt);
4706     if (Elt.getOpcode() != ISD::Constant &&
4707         Elt.getOpcode() != ISD::ConstantFP)
4708       IsAllConstants = false;
4709     if (X86::isZeroNode(Elt))
4710       NumZero++;
4711     else {
4712       NonZeros |= (1 << i);
4713       NumNonZero++;
4714     }
4715   }
4716
4717   // All undef vector. Return an UNDEF.  All zero vectors were handled above.
4718   if (NumNonZero == 0)
4719     return DAG.getUNDEF(VT);
4720
4721   // Special case for single non-zero, non-undef, element.
4722   if (NumNonZero == 1) {
4723     unsigned Idx = CountTrailingZeros_32(NonZeros);
4724     SDValue Item = Op.getOperand(Idx);
4725
4726     // If this is an insertion of an i64 value on x86-32, and if the top bits of
4727     // the value are obviously zero, truncate the value to i32 and do the
4728     // insertion that way.  Only do this if the value is non-constant or if the
4729     // value is a constant being inserted into element 0.  It is cheaper to do
4730     // a constant pool load than it is to do a movd + shuffle.
4731     if (ExtVT == MVT::i64 && !Subtarget->is64Bit() &&
4732         (!IsAllConstants || Idx == 0)) {
4733       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
4734         // Handle SSE only.
4735         assert(VT == MVT::v2i64 && "Expected an SSE value type!");
4736         EVT VecVT = MVT::v4i32;
4737         unsigned VecElts = 4;
4738
4739         // Truncate the value (which may itself be a constant) to i32, and
4740         // convert it to a vector with movd (S2V+shuffle to zero extend).
4741         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
4742         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
4743         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4744                                            Subtarget->hasSSE2(), DAG);
4745
4746         // Now we have our 32-bit value zero extended in the low element of
4747         // a vector.  If Idx != 0, swizzle it into place.
4748         if (Idx != 0) {
4749           SmallVector<int, 4> Mask;
4750           Mask.push_back(Idx);
4751           for (unsigned i = 1; i != VecElts; ++i)
4752             Mask.push_back(i);
4753           Item = DAG.getVectorShuffle(VecVT, dl, Item,
4754                                       DAG.getUNDEF(Item.getValueType()),
4755                                       &Mask[0]);
4756         }
4757         return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(), Item);
4758       }
4759     }
4760
4761     // If we have a constant or non-constant insertion into the low element of
4762     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
4763     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
4764     // depending on what the source datatype is.
4765     if (Idx == 0) {
4766       if (NumZero == 0) {
4767         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4768       } else if (ExtVT == MVT::i32 || ExtVT == MVT::f32 || ExtVT == MVT::f64 ||
4769           (ExtVT == MVT::i64 && Subtarget->is64Bit())) {
4770         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4771         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
4772         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
4773                                            DAG);
4774       } else if (ExtVT == MVT::i16 || ExtVT == MVT::i8) {
4775         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
4776         assert(VT.getSizeInBits() == 128 && "Expected an SSE value type!");
4777         EVT MiddleVT = MVT::v4i32;
4778         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
4779         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
4780                                            Subtarget->hasSSE2(), DAG);
4781         return DAG.getNode(ISD::BITCAST, dl, VT, Item);
4782       }
4783     }
4784
4785     // Is it a vector logical left shift?
4786     if (NumElems == 2 && Idx == 1 &&
4787         X86::isZeroNode(Op.getOperand(0)) &&
4788         !X86::isZeroNode(Op.getOperand(1))) {
4789       unsigned NumBits = VT.getSizeInBits();
4790       return getVShift(true, VT,
4791                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4792                                    VT, Op.getOperand(1)),
4793                        NumBits/2, DAG, *this, dl);
4794     }
4795
4796     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
4797       return SDValue();
4798
4799     // Otherwise, if this is a vector with i32 or f32 elements, and the element
4800     // is a non-constant being inserted into an element other than the low one,
4801     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
4802     // movd/movss) to move this into the low element, then shuffle it into
4803     // place.
4804     if (EVTBits == 32) {
4805       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
4806
4807       // Turn it into a shuffle of zero and zero-extended scalar to vector.
4808       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
4809                                          Subtarget->hasSSE2(), DAG);
4810       SmallVector<int, 8> MaskVec;
4811       for (unsigned i = 0; i < NumElems; i++)
4812         MaskVec.push_back(i == Idx ? 0 : 1);
4813       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
4814     }
4815   }
4816
4817   // Splat is obviously ok. Let legalizer expand it to a shuffle.
4818   if (Values.size() == 1) {
4819     if (EVTBits == 32) {
4820       // Instead of a shuffle like this:
4821       // shuffle (scalar_to_vector (load (ptr + 4))), undef, <0, 0, 0, 0>
4822       // Check if it's possible to issue this instead.
4823       // shuffle (vload ptr)), undef, <1, 1, 1, 1>
4824       unsigned Idx = CountTrailingZeros_32(NonZeros);
4825       SDValue Item = Op.getOperand(Idx);
4826       if (Op.getNode()->isOnlyUserOf(Item.getNode()))
4827         return LowerAsSplatVectorLoad(Item, VT, dl, DAG);
4828     }
4829     return SDValue();
4830   }
4831
4832   // A vector full of immediates; various special cases are already
4833   // handled, so this is best done with a single constant-pool load.
4834   if (IsAllConstants)
4835     return SDValue();
4836
4837   // For AVX-length vectors, build the individual 128-bit pieces and use
4838   // shuffles to put them in place.
4839   if (VT.getSizeInBits() == 256 && !ISD::isBuildVectorAllZeros(Op.getNode())) {
4840     SmallVector<SDValue, 32> V;
4841     for (unsigned i = 0; i < NumElems; ++i)
4842       V.push_back(Op.getOperand(i));
4843
4844     EVT HVT = EVT::getVectorVT(*DAG.getContext(), ExtVT, NumElems/2);
4845
4846     // Build both the lower and upper subvector.
4847     SDValue Lower = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[0], NumElems/2);
4848     SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2],
4849                                 NumElems/2);
4850
4851     // Recreate the wider vector with the lower and upper part.
4852     SDValue Vec = Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, VT), Lower,
4853                                 DAG.getConstant(0, MVT::i32), DAG, dl);
4854     return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
4855                               DAG, dl);
4856   }
4857
4858   // Let legalizer expand 2-wide build_vectors.
4859   if (EVTBits == 64) {
4860     if (NumNonZero == 1) {
4861       // One half is zero or undef.
4862       unsigned Idx = CountTrailingZeros_32(NonZeros);
4863       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
4864                                  Op.getOperand(Idx));
4865       return getShuffleVectorZeroOrUndef(V2, Idx, true,
4866                                          Subtarget->hasSSE2(), DAG);
4867     }
4868     return SDValue();
4869   }
4870
4871   // If element VT is < 32 bits, convert it to inserts into a zero vector.
4872   if (EVTBits == 8 && NumElems == 16) {
4873     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
4874                                         *this);
4875     if (V.getNode()) return V;
4876   }
4877
4878   if (EVTBits == 16 && NumElems == 8) {
4879     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
4880                                       *this);
4881     if (V.getNode()) return V;
4882   }
4883
4884   // If element VT is == 32 bits, turn it into a number of shuffles.
4885   SmallVector<SDValue, 8> V;
4886   V.resize(NumElems);
4887   if (NumElems == 4 && NumZero > 0) {
4888     for (unsigned i = 0; i < 4; ++i) {
4889       bool isZero = !(NonZeros & (1 << i));
4890       if (isZero)
4891         V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
4892       else
4893         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4894     }
4895
4896     for (unsigned i = 0; i < 2; ++i) {
4897       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
4898         default: break;
4899         case 0:
4900           V[i] = V[i*2];  // Must be a zero vector.
4901           break;
4902         case 1:
4903           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
4904           break;
4905         case 2:
4906           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
4907           break;
4908         case 3:
4909           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
4910           break;
4911       }
4912     }
4913
4914     SmallVector<int, 8> MaskVec;
4915     bool Reverse = (NonZeros & 0x3) == 2;
4916     for (unsigned i = 0; i < 2; ++i)
4917       MaskVec.push_back(Reverse ? 1-i : i);
4918     Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
4919     for (unsigned i = 0; i < 2; ++i)
4920       MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
4921     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
4922   }
4923
4924   if (Values.size() > 1 && VT.getSizeInBits() == 128) {
4925     // Check for a build vector of consecutive loads.
4926     for (unsigned i = 0; i < NumElems; ++i)
4927       V[i] = Op.getOperand(i);
4928
4929     // Check for elements which are consecutive loads.
4930     SDValue LD = EltsFromConsecutiveLoads(VT, V, dl, DAG);
4931     if (LD.getNode())
4932       return LD;
4933
4934     // For SSE 4.1, use insertps to put the high elements into the low element.
4935     if (getSubtarget()->hasSSE41()) {
4936       SDValue Result;
4937       if (Op.getOperand(0).getOpcode() != ISD::UNDEF)
4938         Result = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(0));
4939       else
4940         Result = DAG.getUNDEF(VT);
4941
4942       for (unsigned i = 1; i < NumElems; ++i) {
4943         if (Op.getOperand(i).getOpcode() == ISD::UNDEF) continue;
4944         Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, Result,
4945                              Op.getOperand(i), DAG.getIntPtrConstant(i));
4946       }
4947       return Result;
4948     }
4949
4950     // Otherwise, expand into a number of unpckl*, start by extending each of
4951     // our (non-undef) elements to the full vector width with the element in the
4952     // bottom slot of the vector (which generates no code for SSE).
4953     for (unsigned i = 0; i < NumElems; ++i) {
4954       if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
4955         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
4956       else
4957         V[i] = DAG.getUNDEF(VT);
4958     }
4959
4960     // Next, we iteratively mix elements, e.g. for v4f32:
4961     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
4962     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
4963     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
4964     unsigned EltStride = NumElems >> 1;
4965     while (EltStride != 0) {
4966       for (unsigned i = 0; i < EltStride; ++i) {
4967         // If V[i+EltStride] is undef and this is the first round of mixing,
4968         // then it is safe to just drop this shuffle: V[i] is already in the
4969         // right place, the one element (since it's the first round) being
4970         // inserted as undef can be dropped.  This isn't safe for successive
4971         // rounds because they will permute elements within both vectors.
4972         if (V[i+EltStride].getOpcode() == ISD::UNDEF &&
4973             EltStride == NumElems/2)
4974           continue;
4975
4976         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + EltStride]);
4977       }
4978       EltStride >>= 1;
4979     }
4980     return V[0];
4981   }
4982   return SDValue();
4983 }
4984
4985 SDValue
4986 X86TargetLowering::LowerCONCAT_VECTORS(SDValue Op, SelectionDAG &DAG) const {
4987   // We support concatenate two MMX registers and place them in a MMX
4988   // register.  This is better than doing a stack convert.
4989   DebugLoc dl = Op.getDebugLoc();
4990   EVT ResVT = Op.getValueType();
4991   assert(Op.getNumOperands() == 2);
4992   assert(ResVT == MVT::v2i64 || ResVT == MVT::v4i32 ||
4993          ResVT == MVT::v8i16 || ResVT == MVT::v16i8);
4994   int Mask[2];
4995   SDValue InVec = DAG.getNode(ISD::BITCAST,dl, MVT::v1i64, Op.getOperand(0));
4996   SDValue VecOp = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
4997   InVec = Op.getOperand(1);
4998   if (InVec.getOpcode() == ISD::SCALAR_TO_VECTOR) {
4999     unsigned NumElts = ResVT.getVectorNumElements();
5000     VecOp = DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
5001     VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, ResVT, VecOp,
5002                        InVec.getOperand(0), DAG.getIntPtrConstant(NumElts/2+1));
5003   } else {
5004     InVec = DAG.getNode(ISD::BITCAST, dl, MVT::v1i64, InVec);
5005     SDValue VecOp2 = DAG.getNode(X86ISD::MOVQ2DQ, dl, MVT::v2i64, InVec);
5006     Mask[0] = 0; Mask[1] = 2;
5007     VecOp = DAG.getVectorShuffle(MVT::v2i64, dl, VecOp, VecOp2, Mask);
5008   }
5009   return DAG.getNode(ISD::BITCAST, dl, ResVT, VecOp);
5010 }
5011
5012 // v8i16 shuffles - Prefer shuffles in the following order:
5013 // 1. [all]   pshuflw, pshufhw, optional move
5014 // 2. [ssse3] 1 x pshufb
5015 // 3. [ssse3] 2 x pshufb + 1 x por
5016 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
5017 SDValue
5018 X86TargetLowering::LowerVECTOR_SHUFFLEv8i16(SDValue Op,
5019                                             SelectionDAG &DAG) const {
5020   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5021   SDValue V1 = SVOp->getOperand(0);
5022   SDValue V2 = SVOp->getOperand(1);
5023   DebugLoc dl = SVOp->getDebugLoc();
5024   SmallVector<int, 8> MaskVals;
5025
5026   // Determine if more than 1 of the words in each of the low and high quadwords
5027   // of the result come from the same quadword of one of the two inputs.  Undef
5028   // mask values count as coming from any quadword, for better codegen.
5029   SmallVector<unsigned, 4> LoQuad(4);
5030   SmallVector<unsigned, 4> HiQuad(4);
5031   BitVector InputQuads(4);
5032   for (unsigned i = 0; i < 8; ++i) {
5033     SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
5034     int EltIdx = SVOp->getMaskElt(i);
5035     MaskVals.push_back(EltIdx);
5036     if (EltIdx < 0) {
5037       ++Quad[0];
5038       ++Quad[1];
5039       ++Quad[2];
5040       ++Quad[3];
5041       continue;
5042     }
5043     ++Quad[EltIdx / 4];
5044     InputQuads.set(EltIdx / 4);
5045   }
5046
5047   int BestLoQuad = -1;
5048   unsigned MaxQuad = 1;
5049   for (unsigned i = 0; i < 4; ++i) {
5050     if (LoQuad[i] > MaxQuad) {
5051       BestLoQuad = i;
5052       MaxQuad = LoQuad[i];
5053     }
5054   }
5055
5056   int BestHiQuad = -1;
5057   MaxQuad = 1;
5058   for (unsigned i = 0; i < 4; ++i) {
5059     if (HiQuad[i] > MaxQuad) {
5060       BestHiQuad = i;
5061       MaxQuad = HiQuad[i];
5062     }
5063   }
5064
5065   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
5066   // of the two input vectors, shuffle them into one input vector so only a
5067   // single pshufb instruction is necessary. If There are more than 2 input
5068   // quads, disable the next transformation since it does not help SSSE3.
5069   bool V1Used = InputQuads[0] || InputQuads[1];
5070   bool V2Used = InputQuads[2] || InputQuads[3];
5071   if (Subtarget->hasSSSE3()) {
5072     if (InputQuads.count() == 2 && V1Used && V2Used) {
5073       BestLoQuad = InputQuads.find_first();
5074       BestHiQuad = InputQuads.find_next(BestLoQuad);
5075     }
5076     if (InputQuads.count() > 2) {
5077       BestLoQuad = -1;
5078       BestHiQuad = -1;
5079     }
5080   }
5081
5082   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
5083   // the shuffle mask.  If a quad is scored as -1, that means that it contains
5084   // words from all 4 input quadwords.
5085   SDValue NewV;
5086   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
5087     SmallVector<int, 8> MaskV;
5088     MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
5089     MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
5090     NewV = DAG.getVectorShuffle(MVT::v2i64, dl,
5091                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V1),
5092                   DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, V2), &MaskV[0]);
5093     NewV = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, NewV);
5094
5095     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
5096     // source words for the shuffle, to aid later transformations.
5097     bool AllWordsInNewV = true;
5098     bool InOrder[2] = { true, true };
5099     for (unsigned i = 0; i != 8; ++i) {
5100       int idx = MaskVals[i];
5101       if (idx != (int)i)
5102         InOrder[i/4] = false;
5103       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
5104         continue;
5105       AllWordsInNewV = false;
5106       break;
5107     }
5108
5109     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
5110     if (AllWordsInNewV) {
5111       for (int i = 0; i != 8; ++i) {
5112         int idx = MaskVals[i];
5113         if (idx < 0)
5114           continue;
5115         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4;
5116         if ((idx != i) && idx < 4)
5117           pshufhw = false;
5118         if ((idx != i) && idx > 3)
5119           pshuflw = false;
5120       }
5121       V1 = NewV;
5122       V2Used = false;
5123       BestLoQuad = 0;
5124       BestHiQuad = 1;
5125     }
5126
5127     // If we've eliminated the use of V2, and the new mask is a pshuflw or
5128     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
5129     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
5130       unsigned Opc = pshufhw ? X86ISD::PSHUFHW : X86ISD::PSHUFLW;
5131       unsigned TargetMask = 0;
5132       NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV,
5133                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
5134       TargetMask = pshufhw ? X86::getShufflePSHUFHWImmediate(NewV.getNode()):
5135                              X86::getShufflePSHUFLWImmediate(NewV.getNode());
5136       V1 = NewV.getOperand(0);
5137       return getTargetShuffleNode(Opc, dl, MVT::v8i16, V1, TargetMask, DAG);
5138     }
5139   }
5140
5141   // If we have SSSE3, and all words of the result are from 1 input vector,
5142   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
5143   // is present, fall back to case 4.
5144   if (Subtarget->hasSSSE3()) {
5145     SmallVector<SDValue,16> pshufbMask;
5146
5147     // If we have elements from both input vectors, set the high bit of the
5148     // shuffle mask element to zero out elements that come from V2 in the V1
5149     // mask, and elements that come from V1 in the V2 mask, so that the two
5150     // results can be OR'd together.
5151     bool TwoInputs = V1Used && V2Used;
5152     for (unsigned i = 0; i != 8; ++i) {
5153       int EltIdx = MaskVals[i] * 2;
5154       if (TwoInputs && (EltIdx >= 16)) {
5155         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5156         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5157         continue;
5158       }
5159       pshufbMask.push_back(DAG.getConstant(EltIdx,   MVT::i8));
5160       pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
5161     }
5162     V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V1);
5163     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5164                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5165                                  MVT::v16i8, &pshufbMask[0], 16));
5166     if (!TwoInputs)
5167       return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5168
5169     // Calculate the shuffle mask for the second input, shuffle it, and
5170     // OR it with the first shuffled input.
5171     pshufbMask.clear();
5172     for (unsigned i = 0; i != 8; ++i) {
5173       int EltIdx = MaskVals[i] * 2;
5174       if (EltIdx < 16) {
5175         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5176         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5177         continue;
5178       }
5179       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5180       pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
5181     }
5182     V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, V2);
5183     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5184                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5185                                  MVT::v16i8, &pshufbMask[0], 16));
5186     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5187     return DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5188   }
5189
5190   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
5191   // and update MaskVals with new element order.
5192   BitVector InOrder(8);
5193   if (BestLoQuad >= 0) {
5194     SmallVector<int, 8> MaskV;
5195     for (int i = 0; i != 4; ++i) {
5196       int idx = MaskVals[i];
5197       if (idx < 0) {
5198         MaskV.push_back(-1);
5199         InOrder.set(i);
5200       } else if ((idx / 4) == BestLoQuad) {
5201         MaskV.push_back(idx & 3);
5202         InOrder.set(i);
5203       } else {
5204         MaskV.push_back(-1);
5205       }
5206     }
5207     for (unsigned i = 4; i != 8; ++i)
5208       MaskV.push_back(i);
5209     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5210                                 &MaskV[0]);
5211
5212     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5213       NewV = getTargetShuffleNode(X86ISD::PSHUFLW, dl, MVT::v8i16,
5214                                NewV.getOperand(0),
5215                                X86::getShufflePSHUFLWImmediate(NewV.getNode()),
5216                                DAG);
5217   }
5218
5219   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
5220   // and update MaskVals with the new element order.
5221   if (BestHiQuad >= 0) {
5222     SmallVector<int, 8> MaskV;
5223     for (unsigned i = 0; i != 4; ++i)
5224       MaskV.push_back(i);
5225     for (unsigned i = 4; i != 8; ++i) {
5226       int idx = MaskVals[i];
5227       if (idx < 0) {
5228         MaskV.push_back(-1);
5229         InOrder.set(i);
5230       } else if ((idx / 4) == BestHiQuad) {
5231         MaskV.push_back((idx & 3) + 4);
5232         InOrder.set(i);
5233       } else {
5234         MaskV.push_back(-1);
5235       }
5236     }
5237     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
5238                                 &MaskV[0]);
5239
5240     if (NewV.getOpcode() == ISD::VECTOR_SHUFFLE && Subtarget->hasSSSE3())
5241       NewV = getTargetShuffleNode(X86ISD::PSHUFHW, dl, MVT::v8i16,
5242                               NewV.getOperand(0),
5243                               X86::getShufflePSHUFHWImmediate(NewV.getNode()),
5244                               DAG);
5245   }
5246
5247   // In case BestHi & BestLo were both -1, which means each quadword has a word
5248   // from each of the four input quadwords, calculate the InOrder bitvector now
5249   // before falling through to the insert/extract cleanup.
5250   if (BestLoQuad == -1 && BestHiQuad == -1) {
5251     NewV = V1;
5252     for (int i = 0; i != 8; ++i)
5253       if (MaskVals[i] < 0 || MaskVals[i] == i)
5254         InOrder.set(i);
5255   }
5256
5257   // The other elements are put in the right place using pextrw and pinsrw.
5258   for (unsigned i = 0; i != 8; ++i) {
5259     if (InOrder[i])
5260       continue;
5261     int EltIdx = MaskVals[i];
5262     if (EltIdx < 0)
5263       continue;
5264     SDValue ExtOp = (EltIdx < 8)
5265     ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
5266                   DAG.getIntPtrConstant(EltIdx))
5267     : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
5268                   DAG.getIntPtrConstant(EltIdx - 8));
5269     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
5270                        DAG.getIntPtrConstant(i));
5271   }
5272   return NewV;
5273 }
5274
5275 // v16i8 shuffles - Prefer shuffles in the following order:
5276 // 1. [ssse3] 1 x pshufb
5277 // 2. [ssse3] 2 x pshufb + 1 x por
5278 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
5279 static
5280 SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
5281                                  SelectionDAG &DAG,
5282                                  const X86TargetLowering &TLI) {
5283   SDValue V1 = SVOp->getOperand(0);
5284   SDValue V2 = SVOp->getOperand(1);
5285   DebugLoc dl = SVOp->getDebugLoc();
5286   SmallVector<int, 16> MaskVals;
5287   SVOp->getMask(MaskVals);
5288
5289   // If we have SSSE3, case 1 is generated when all result bytes come from
5290   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is
5291   // present, fall back to case 3.
5292   // FIXME: kill V2Only once shuffles are canonizalized by getNode.
5293   bool V1Only = true;
5294   bool V2Only = true;
5295   for (unsigned i = 0; i < 16; ++i) {
5296     int EltIdx = MaskVals[i];
5297     if (EltIdx < 0)
5298       continue;
5299     if (EltIdx < 16)
5300       V2Only = false;
5301     else
5302       V1Only = false;
5303   }
5304
5305   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
5306   if (TLI.getSubtarget()->hasSSSE3()) {
5307     SmallVector<SDValue,16> pshufbMask;
5308
5309     // If all result elements are from one input vector, then only translate
5310     // undef mask values to 0x80 (zero out result) in the pshufb mask.
5311     //
5312     // Otherwise, we have elements from both input vectors, and must zero out
5313     // elements that come from V2 in the first mask, and V1 in the second mask
5314     // so that we can OR them together.
5315     bool TwoInputs = !(V1Only || V2Only);
5316     for (unsigned i = 0; i != 16; ++i) {
5317       int EltIdx = MaskVals[i];
5318       if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
5319         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5320         continue;
5321       }
5322       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
5323     }
5324     // If all the elements are from V2, assign it to V1 and return after
5325     // building the first pshufb.
5326     if (V2Only)
5327       V1 = V2;
5328     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
5329                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5330                                  MVT::v16i8, &pshufbMask[0], 16));
5331     if (!TwoInputs)
5332       return V1;
5333
5334     // Calculate the shuffle mask for the second input, shuffle it, and
5335     // OR it with the first shuffled input.
5336     pshufbMask.clear();
5337     for (unsigned i = 0; i != 16; ++i) {
5338       int EltIdx = MaskVals[i];
5339       if (EltIdx < 16) {
5340         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
5341         continue;
5342       }
5343       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
5344     }
5345     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
5346                      DAG.getNode(ISD::BUILD_VECTOR, dl,
5347                                  MVT::v16i8, &pshufbMask[0], 16));
5348     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
5349   }
5350
5351   // No SSSE3 - Calculate in place words and then fix all out of place words
5352   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
5353   // the 16 different words that comprise the two doublequadword input vectors.
5354   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V1);
5355   V2 = DAG.getNode(ISD::BITCAST, dl, MVT::v8i16, V2);
5356   SDValue NewV = V2Only ? V2 : V1;
5357   for (int i = 0; i != 8; ++i) {
5358     int Elt0 = MaskVals[i*2];
5359     int Elt1 = MaskVals[i*2+1];
5360
5361     // This word of the result is all undef, skip it.
5362     if (Elt0 < 0 && Elt1 < 0)
5363       continue;
5364
5365     // This word of the result is already in the correct place, skip it.
5366     if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
5367       continue;
5368     if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
5369       continue;
5370
5371     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
5372     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
5373     SDValue InsElt;
5374
5375     // If Elt0 and Elt1 are defined, are consecutive, and can be load
5376     // using a single extract together, load it and store it.
5377     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
5378       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
5379                            DAG.getIntPtrConstant(Elt1 / 2));
5380       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
5381                         DAG.getIntPtrConstant(i));
5382       continue;
5383     }
5384
5385     // If Elt1 is defined, extract it from the appropriate source.  If the
5386     // source byte is not also odd, shift the extracted word left 8 bits
5387     // otherwise clear the bottom 8 bits if we need to do an or.
5388     if (Elt1 >= 0) {
5389       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
5390                            DAG.getIntPtrConstant(Elt1 / 2));
5391       if ((Elt1 & 1) == 0)
5392         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
5393                              DAG.getConstant(8,
5394                                   TLI.getShiftAmountTy(InsElt.getValueType())));
5395       else if (Elt0 >= 0)
5396         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
5397                              DAG.getConstant(0xFF00, MVT::i16));
5398     }
5399     // If Elt0 is defined, extract it from the appropriate source.  If the
5400     // source byte is not also even, shift the extracted word right 8 bits. If
5401     // Elt1 was also defined, OR the extracted values together before
5402     // inserting them in the result.
5403     if (Elt0 >= 0) {
5404       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
5405                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
5406       if ((Elt0 & 1) != 0)
5407         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
5408                               DAG.getConstant(8,
5409                                  TLI.getShiftAmountTy(InsElt0.getValueType())));
5410       else if (Elt1 >= 0)
5411         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
5412                              DAG.getConstant(0x00FF, MVT::i16));
5413       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
5414                          : InsElt0;
5415     }
5416     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
5417                        DAG.getIntPtrConstant(i));
5418   }
5419   return DAG.getNode(ISD::BITCAST, dl, MVT::v16i8, NewV);
5420 }
5421
5422 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
5423 /// ones, or rewriting v4i32 / v4f32 as 2 wide ones if possible. This can be
5424 /// done when every pair / quad of shuffle mask elements point to elements in
5425 /// the right sequence. e.g.
5426 /// vector_shuffle X, Y, <2, 3, | 10, 11, | 0, 1, | 14, 15>
5427 static
5428 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
5429                                  SelectionDAG &DAG, DebugLoc dl) {
5430   EVT VT = SVOp->getValueType(0);
5431   SDValue V1 = SVOp->getOperand(0);
5432   SDValue V2 = SVOp->getOperand(1);
5433   unsigned NumElems = VT.getVectorNumElements();
5434   unsigned NewWidth = (NumElems == 4) ? 2 : 4;
5435   EVT NewVT;
5436   switch (VT.getSimpleVT().SimpleTy) {
5437   default: assert(false && "Unexpected!");
5438   case MVT::v4f32: NewVT = MVT::v2f64; break;
5439   case MVT::v4i32: NewVT = MVT::v2i64; break;
5440   case MVT::v8i16: NewVT = MVT::v4i32; break;
5441   case MVT::v16i8: NewVT = MVT::v4i32; break;
5442   }
5443
5444   int Scale = NumElems / NewWidth;
5445   SmallVector<int, 8> MaskVec;
5446   for (unsigned i = 0; i < NumElems; i += Scale) {
5447     int StartIdx = -1;
5448     for (int j = 0; j < Scale; ++j) {
5449       int EltIdx = SVOp->getMaskElt(i+j);
5450       if (EltIdx < 0)
5451         continue;
5452       if (StartIdx == -1)
5453         StartIdx = EltIdx - (EltIdx % Scale);
5454       if (EltIdx != StartIdx + j)
5455         return SDValue();
5456     }
5457     if (StartIdx == -1)
5458       MaskVec.push_back(-1);
5459     else
5460       MaskVec.push_back(StartIdx / Scale);
5461   }
5462
5463   V1 = DAG.getNode(ISD::BITCAST, dl, NewVT, V1);
5464   V2 = DAG.getNode(ISD::BITCAST, dl, NewVT, V2);
5465   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
5466 }
5467
5468 /// getVZextMovL - Return a zero-extending vector move low node.
5469 ///
5470 static SDValue getVZextMovL(EVT VT, EVT OpVT,
5471                             SDValue SrcOp, SelectionDAG &DAG,
5472                             const X86Subtarget *Subtarget, DebugLoc dl) {
5473   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
5474     LoadSDNode *LD = NULL;
5475     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
5476       LD = dyn_cast<LoadSDNode>(SrcOp);
5477     if (!LD) {
5478       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
5479       // instead.
5480       MVT ExtVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
5481       if ((ExtVT != MVT::i64 || Subtarget->is64Bit()) &&
5482           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
5483           SrcOp.getOperand(0).getOpcode() == ISD::BITCAST &&
5484           SrcOp.getOperand(0).getOperand(0).getValueType() == ExtVT) {
5485         // PR2108
5486         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
5487         return DAG.getNode(ISD::BITCAST, dl, VT,
5488                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5489                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
5490                                                    OpVT,
5491                                                    SrcOp.getOperand(0)
5492                                                           .getOperand(0))));
5493       }
5494     }
5495   }
5496
5497   return DAG.getNode(ISD::BITCAST, dl, VT,
5498                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
5499                                  DAG.getNode(ISD::BITCAST, dl,
5500                                              OpVT, SrcOp)));
5501 }
5502
5503 /// LowerVECTOR_SHUFFLE_256 - Handle all 256-bit wide vectors shuffles
5504 /// which could not be matched by any known target speficic shuffle
5505 static SDValue
5506 LowerVECTOR_SHUFFLE_256(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5507   return SDValue();
5508 }
5509
5510 /// LowerVECTOR_SHUFFLE_128v4 - Handle all 128-bit wide vectors with
5511 /// 4 elements, and match them with several different shuffle types.
5512 static SDValue
5513 LowerVECTOR_SHUFFLE_128v4(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
5514   SDValue V1 = SVOp->getOperand(0);
5515   SDValue V2 = SVOp->getOperand(1);
5516   DebugLoc dl = SVOp->getDebugLoc();
5517   EVT VT = SVOp->getValueType(0);
5518
5519   assert(VT.getSizeInBits() == 128 && "Unsupported vector size");
5520
5521   SmallVector<std::pair<int, int>, 8> Locs;
5522   Locs.resize(4);
5523   SmallVector<int, 8> Mask1(4U, -1);
5524   SmallVector<int, 8> PermMask;
5525   SVOp->getMask(PermMask);
5526
5527   unsigned NumHi = 0;
5528   unsigned NumLo = 0;
5529   for (unsigned i = 0; i != 4; ++i) {
5530     int Idx = PermMask[i];
5531     if (Idx < 0) {
5532       Locs[i] = std::make_pair(-1, -1);
5533     } else {
5534       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
5535       if (Idx < 4) {
5536         Locs[i] = std::make_pair(0, NumLo);
5537         Mask1[NumLo] = Idx;
5538         NumLo++;
5539       } else {
5540         Locs[i] = std::make_pair(1, NumHi);
5541         if (2+NumHi < 4)
5542           Mask1[2+NumHi] = Idx;
5543         NumHi++;
5544       }
5545     }
5546   }
5547
5548   if (NumLo <= 2 && NumHi <= 2) {
5549     // If no more than two elements come from either vector. This can be
5550     // implemented with two shuffles. First shuffle gather the elements.
5551     // The second shuffle, which takes the first shuffle as both of its
5552     // vector operands, put the elements into the right order.
5553     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
5554
5555     SmallVector<int, 8> Mask2(4U, -1);
5556
5557     for (unsigned i = 0; i != 4; ++i) {
5558       if (Locs[i].first == -1)
5559         continue;
5560       else {
5561         unsigned Idx = (i < 2) ? 0 : 4;
5562         Idx += Locs[i].first * 2 + Locs[i].second;
5563         Mask2[i] = Idx;
5564       }
5565     }
5566
5567     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
5568   } else if (NumLo == 3 || NumHi == 3) {
5569     // Otherwise, we must have three elements from one vector, call it X, and
5570     // one element from the other, call it Y.  First, use a shufps to build an
5571     // intermediate vector with the one element from Y and the element from X
5572     // that will be in the same half in the final destination (the indexes don't
5573     // matter). Then, use a shufps to build the final vector, taking the half
5574     // containing the element from Y from the intermediate, and the other half
5575     // from X.
5576     if (NumHi == 3) {
5577       // Normalize it so the 3 elements come from V1.
5578       CommuteVectorShuffleMask(PermMask, VT);
5579       std::swap(V1, V2);
5580     }
5581
5582     // Find the element from V2.
5583     unsigned HiIndex;
5584     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
5585       int Val = PermMask[HiIndex];
5586       if (Val < 0)
5587         continue;
5588       if (Val >= 4)
5589         break;
5590     }
5591
5592     Mask1[0] = PermMask[HiIndex];
5593     Mask1[1] = -1;
5594     Mask1[2] = PermMask[HiIndex^1];
5595     Mask1[3] = -1;
5596     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
5597
5598     if (HiIndex >= 2) {
5599       Mask1[0] = PermMask[0];
5600       Mask1[1] = PermMask[1];
5601       Mask1[2] = HiIndex & 1 ? 6 : 4;
5602       Mask1[3] = HiIndex & 1 ? 4 : 6;
5603       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
5604     } else {
5605       Mask1[0] = HiIndex & 1 ? 2 : 0;
5606       Mask1[1] = HiIndex & 1 ? 0 : 2;
5607       Mask1[2] = PermMask[2];
5608       Mask1[3] = PermMask[3];
5609       if (Mask1[2] >= 0)
5610         Mask1[2] += 4;
5611       if (Mask1[3] >= 0)
5612         Mask1[3] += 4;
5613       return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
5614     }
5615   }
5616
5617   // Break it into (shuffle shuffle_hi, shuffle_lo).
5618   Locs.clear();
5619   Locs.resize(4);
5620   SmallVector<int,8> LoMask(4U, -1);
5621   SmallVector<int,8> HiMask(4U, -1);
5622
5623   SmallVector<int,8> *MaskPtr = &LoMask;
5624   unsigned MaskIdx = 0;
5625   unsigned LoIdx = 0;
5626   unsigned HiIdx = 2;
5627   for (unsigned i = 0; i != 4; ++i) {
5628     if (i == 2) {
5629       MaskPtr = &HiMask;
5630       MaskIdx = 1;
5631       LoIdx = 0;
5632       HiIdx = 2;
5633     }
5634     int Idx = PermMask[i];
5635     if (Idx < 0) {
5636       Locs[i] = std::make_pair(-1, -1);
5637     } else if (Idx < 4) {
5638       Locs[i] = std::make_pair(MaskIdx, LoIdx);
5639       (*MaskPtr)[LoIdx] = Idx;
5640       LoIdx++;
5641     } else {
5642       Locs[i] = std::make_pair(MaskIdx, HiIdx);
5643       (*MaskPtr)[HiIdx] = Idx;
5644       HiIdx++;
5645     }
5646   }
5647
5648   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
5649   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
5650   SmallVector<int, 8> MaskOps;
5651   for (unsigned i = 0; i != 4; ++i) {
5652     if (Locs[i].first == -1) {
5653       MaskOps.push_back(-1);
5654     } else {
5655       unsigned Idx = Locs[i].first * 4 + Locs[i].second;
5656       MaskOps.push_back(Idx);
5657     }
5658   }
5659   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
5660 }
5661
5662 static bool MayFoldVectorLoad(SDValue V) {
5663   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
5664     V = V.getOperand(0);
5665   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5666     V = V.getOperand(0);
5667   if (MayFoldLoad(V))
5668     return true;
5669   return false;
5670 }
5671
5672 // FIXME: the version above should always be used. Since there's
5673 // a bug where several vector shuffles can't be folded because the
5674 // DAG is not updated during lowering and a node claims to have two
5675 // uses while it only has one, use this version, and let isel match
5676 // another instruction if the load really happens to have more than
5677 // one use. Remove this version after this bug get fixed.
5678 // rdar://8434668, PR8156
5679 static bool RelaxedMayFoldVectorLoad(SDValue V) {
5680   if (V.hasOneUse() && V.getOpcode() == ISD::BITCAST)
5681     V = V.getOperand(0);
5682   if (V.hasOneUse() && V.getOpcode() == ISD::SCALAR_TO_VECTOR)
5683     V = V.getOperand(0);
5684   if (ISD::isNormalLoad(V.getNode()))
5685     return true;
5686   return false;
5687 }
5688
5689 /// CanFoldShuffleIntoVExtract - Check if the current shuffle is used by
5690 /// a vector extract, and if both can be later optimized into a single load.
5691 /// This is done in visitEXTRACT_VECTOR_ELT and the conditions are checked
5692 /// here because otherwise a target specific shuffle node is going to be
5693 /// emitted for this shuffle, and the optimization not done.
5694 /// FIXME: This is probably not the best approach, but fix the problem
5695 /// until the right path is decided.
5696 static
5697 bool CanXFormVExtractWithShuffleIntoLoad(SDValue V, SelectionDAG &DAG,
5698                                          const TargetLowering &TLI) {
5699   EVT VT = V.getValueType();
5700   ShuffleVectorSDNode *SVOp = dyn_cast<ShuffleVectorSDNode>(V);
5701
5702   // Be sure that the vector shuffle is present in a pattern like this:
5703   // (vextract (v4f32 shuffle (load $addr), <1,u,u,u>), c) -> (f32 load $addr)
5704   if (!V.hasOneUse())
5705     return false;
5706
5707   SDNode *N = *V.getNode()->use_begin();
5708   if (N->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
5709     return false;
5710
5711   SDValue EltNo = N->getOperand(1);
5712   if (!isa<ConstantSDNode>(EltNo))
5713     return false;
5714
5715   // If the bit convert changed the number of elements, it is unsafe
5716   // to examine the mask.
5717   bool HasShuffleIntoBitcast = false;
5718   if (V.getOpcode() == ISD::BITCAST) {
5719     EVT SrcVT = V.getOperand(0).getValueType();
5720     if (SrcVT.getVectorNumElements() != VT.getVectorNumElements())
5721       return false;
5722     V = V.getOperand(0);
5723     HasShuffleIntoBitcast = true;
5724   }
5725
5726   // Select the input vector, guarding against out of range extract vector.
5727   unsigned NumElems = VT.getVectorNumElements();
5728   unsigned Elt = cast<ConstantSDNode>(EltNo)->getZExtValue();
5729   int Idx = (Elt > NumElems) ? -1 : SVOp->getMaskElt(Elt);
5730   V = (Idx < (int)NumElems) ? V.getOperand(0) : V.getOperand(1);
5731
5732   // Skip one more bit_convert if necessary
5733   if (V.getOpcode() == ISD::BITCAST)
5734     V = V.getOperand(0);
5735
5736   if (ISD::isNormalLoad(V.getNode())) {
5737     // Is the original load suitable?
5738     LoadSDNode *LN0 = cast<LoadSDNode>(V);
5739
5740     // FIXME: avoid the multi-use bug that is preventing lots of
5741     // of foldings to be detected, this is still wrong of course, but
5742     // give the temporary desired behavior, and if it happens that
5743     // the load has real more uses, during isel it will not fold, and
5744     // will generate poor code.
5745     if (!LN0 || LN0->isVolatile()) // || !LN0->hasOneUse()
5746       return false;
5747
5748     if (!HasShuffleIntoBitcast)
5749       return true;
5750
5751     // If there's a bitcast before the shuffle, check if the load type and
5752     // alignment is valid.
5753     unsigned Align = LN0->getAlignment();
5754     unsigned NewAlign =
5755       TLI.getTargetData()->getABITypeAlignment(
5756                                     VT.getTypeForEVT(*DAG.getContext()));
5757
5758     if (NewAlign > Align || !TLI.isOperationLegalOrCustom(ISD::LOAD, VT))
5759       return false;
5760   }
5761
5762   return true;
5763 }
5764
5765 static
5766 SDValue getMOVDDup(SDValue &Op, DebugLoc &dl, SDValue V1, SelectionDAG &DAG) {
5767   EVT VT = Op.getValueType();
5768
5769   // Canonizalize to v2f64.
5770   V1 = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, V1);
5771   return DAG.getNode(ISD::BITCAST, dl, VT,
5772                      getTargetShuffleNode(X86ISD::MOVDDUP, dl, MVT::v2f64,
5773                                           V1, DAG));
5774 }
5775
5776 static
5777 SDValue getMOVLowToHigh(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG,
5778                         bool HasSSE2) {
5779   SDValue V1 = Op.getOperand(0);
5780   SDValue V2 = Op.getOperand(1);
5781   EVT VT = Op.getValueType();
5782
5783   assert(VT != MVT::v2i64 && "unsupported shuffle type");
5784
5785   if (HasSSE2 && VT == MVT::v2f64)
5786     return getTargetShuffleNode(X86ISD::MOVLHPD, dl, VT, V1, V2, DAG);
5787
5788   // v4f32 or v4i32
5789   return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V2, DAG);
5790 }
5791
5792 static
5793 SDValue getMOVHighToLow(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG) {
5794   SDValue V1 = Op.getOperand(0);
5795   SDValue V2 = Op.getOperand(1);
5796   EVT VT = Op.getValueType();
5797
5798   assert((VT == MVT::v4i32 || VT == MVT::v4f32) &&
5799          "unsupported shuffle type");
5800
5801   if (V2.getOpcode() == ISD::UNDEF)
5802     V2 = V1;
5803
5804   // v4i32 or v4f32
5805   return getTargetShuffleNode(X86ISD::MOVHLPS, dl, VT, V1, V2, DAG);
5806 }
5807
5808 static
5809 SDValue getMOVLP(SDValue &Op, DebugLoc &dl, SelectionDAG &DAG, bool HasSSE2) {
5810   SDValue V1 = Op.getOperand(0);
5811   SDValue V2 = Op.getOperand(1);
5812   EVT VT = Op.getValueType();
5813   unsigned NumElems = VT.getVectorNumElements();
5814
5815   // Use MOVLPS and MOVLPD in case V1 or V2 are loads. During isel, the second
5816   // operand of these instructions is only memory, so check if there's a
5817   // potencial load folding here, otherwise use SHUFPS or MOVSD to match the
5818   // same masks.
5819   bool CanFoldLoad = false;
5820
5821   // Trivial case, when V2 comes from a load.
5822   if (MayFoldVectorLoad(V2))
5823     CanFoldLoad = true;
5824
5825   // When V1 is a load, it can be folded later into a store in isel, example:
5826   //  (store (v4f32 (X86Movlps (load addr:$src1), VR128:$src2)), addr:$src1)
5827   //    turns into:
5828   //  (MOVLPSmr addr:$src1, VR128:$src2)
5829   // So, recognize this potential and also use MOVLPS or MOVLPD
5830   if (MayFoldVectorLoad(V1) && MayFoldIntoStore(Op))
5831     CanFoldLoad = true;
5832
5833   // Both of them can't be memory operations though.
5834   if (MayFoldVectorLoad(V1) && MayFoldVectorLoad(V2))
5835     CanFoldLoad = false;
5836
5837   if (CanFoldLoad) {
5838     if (HasSSE2 && NumElems == 2)
5839       return getTargetShuffleNode(X86ISD::MOVLPD, dl, VT, V1, V2, DAG);
5840
5841     if (NumElems == 4)
5842       return getTargetShuffleNode(X86ISD::MOVLPS, dl, VT, V1, V2, DAG);
5843   }
5844
5845   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5846   // movl and movlp will both match v2i64, but v2i64 is never matched by
5847   // movl earlier because we make it strict to avoid messing with the movlp load
5848   // folding logic (see the code above getMOVLP call). Match it here then,
5849   // this is horrible, but will stay like this until we move all shuffle
5850   // matching to x86 specific nodes. Note that for the 1st condition all
5851   // types are matched with movsd.
5852   if ((HasSSE2 && NumElems == 2) || !X86::isMOVLMask(SVOp))
5853     return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
5854   else if (HasSSE2)
5855     return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
5856
5857
5858   assert(VT != MVT::v4i32 && "unsupported shuffle type");
5859
5860   // Invert the operand order and use SHUFPS to match it.
5861   return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V2, V1,
5862                               X86::getShuffleSHUFImmediate(SVOp), DAG);
5863 }
5864
5865 static inline unsigned getUNPCKLOpcode(EVT VT) {
5866   switch(VT.getSimpleVT().SimpleTy) {
5867   case MVT::v4i32: return X86ISD::PUNPCKLDQ;
5868   case MVT::v2i64: return X86ISD::PUNPCKLQDQ;
5869   case MVT::v4f32: return X86ISD::UNPCKLPS;
5870   case MVT::v2f64: return X86ISD::UNPCKLPD;
5871   case MVT::v8f32: return X86ISD::VUNPCKLPSY;
5872   case MVT::v4f64: return X86ISD::VUNPCKLPDY;
5873   case MVT::v16i8: return X86ISD::PUNPCKLBW;
5874   case MVT::v8i16: return X86ISD::PUNPCKLWD;
5875   default:
5876     llvm_unreachable("Unknown type for unpckl");
5877   }
5878   return 0;
5879 }
5880
5881 static inline unsigned getUNPCKHOpcode(EVT VT) {
5882   switch(VT.getSimpleVT().SimpleTy) {
5883   case MVT::v4i32: return X86ISD::PUNPCKHDQ;
5884   case MVT::v2i64: return X86ISD::PUNPCKHQDQ;
5885   case MVT::v4f32: return X86ISD::UNPCKHPS;
5886   case MVT::v2f64: return X86ISD::UNPCKHPD;
5887   case MVT::v8f32: return X86ISD::VUNPCKHPSY;
5888   case MVT::v4f64: return X86ISD::VUNPCKHPDY;
5889   case MVT::v16i8: return X86ISD::PUNPCKHBW;
5890   case MVT::v8i16: return X86ISD::PUNPCKHWD;
5891   default:
5892     llvm_unreachable("Unknown type for unpckh");
5893   }
5894   return 0;
5895 }
5896
5897 static inline unsigned getVPERMILOpcode(EVT VT) {
5898   switch(VT.getSimpleVT().SimpleTy) {
5899   case MVT::v4i32:
5900   case MVT::v4f32: return X86ISD::VPERMILPS;
5901   case MVT::v2i64:
5902   case MVT::v2f64: return X86ISD::VPERMILPD;
5903   case MVT::v8i32:
5904   case MVT::v8f32: return X86ISD::VPERMILPSY;
5905   case MVT::v4i64:
5906   case MVT::v4f64: return X86ISD::VPERMILPDY;
5907   default:
5908     llvm_unreachable("Unknown type for vpermil");
5909   }
5910   return 0;
5911 }
5912
5913 static
5914 SDValue NormalizeVectorShuffle(SDValue Op, SelectionDAG &DAG,
5915                                const TargetLowering &TLI,
5916                                const X86Subtarget *Subtarget) {
5917   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5918   EVT VT = Op.getValueType();
5919   DebugLoc dl = Op.getDebugLoc();
5920   SDValue V1 = Op.getOperand(0);
5921   SDValue V2 = Op.getOperand(1);
5922
5923   if (isZeroShuffle(SVOp))
5924     return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
5925
5926   // Handle splat operations
5927   if (SVOp->isSplat()) {
5928     unsigned NumElem = VT.getVectorNumElements();
5929     // Special case, this is the only place now where it's allowed to return
5930     // a vector_shuffle operation without using a target specific node, because
5931     // *hopefully* it will be optimized away by the dag combiner. FIXME: should
5932     // this be moved to DAGCombine instead?
5933     if (NumElem <= 4 && CanXFormVExtractWithShuffleIntoLoad(Op, DAG, TLI))
5934       return Op;
5935
5936     // Since there's no native support for scalar_to_vector for 256-bit AVX, a
5937     // 128-bit scalar_to_vector + INSERT_SUBVECTOR is generated. Recognize this
5938     // idiom and do the shuffle before the insertion, this yields less
5939     // instructions in the end.
5940     if (VT.is256BitVector() &&
5941         V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
5942         V1.getOperand(0).getOpcode() == ISD::UNDEF &&
5943         V1.getOperand(1).getOpcode() == ISD::SCALAR_TO_VECTOR)
5944       return PromoteVectorToScalarSplat(SVOp, DAG);
5945
5946     // Handle splats by matching through known shuffle masks
5947     if ((VT.is128BitVector() && NumElem <= 4) ||
5948         (VT.is256BitVector() && NumElem <= 8))
5949       return SDValue();
5950
5951     // All i16 and i8 vector types can't be used directly by a generic shuffle
5952     // instruction because the target has no such instruction. Generate shuffles
5953     // which repeat i16 and i8 several times until they fit in i32, and then can
5954     // be manipulated by target suported shuffles. After the insertion of the
5955     // necessary shuffles, the result is bitcasted back to v4f32 or v8f32.
5956     return PromoteSplat(SVOp, DAG);
5957   }
5958
5959   // If the shuffle can be profitably rewritten as a narrower shuffle, then
5960   // do it!
5961   if (VT == MVT::v8i16 || VT == MVT::v16i8) {
5962     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5963     if (NewOp.getNode())
5964       return DAG.getNode(ISD::BITCAST, dl, VT, NewOp);
5965   } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
5966     // FIXME: Figure out a cleaner way to do this.
5967     // Try to make use of movq to zero out the top part.
5968     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
5969       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5970       if (NewOp.getNode()) {
5971         if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
5972           return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
5973                               DAG, Subtarget, dl);
5974       }
5975     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
5976       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, dl);
5977       if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
5978         return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
5979                             DAG, Subtarget, dl);
5980     }
5981   }
5982   return SDValue();
5983 }
5984
5985 SDValue
5986 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) const {
5987   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
5988   SDValue V1 = Op.getOperand(0);
5989   SDValue V2 = Op.getOperand(1);
5990   EVT VT = Op.getValueType();
5991   DebugLoc dl = Op.getDebugLoc();
5992   unsigned NumElems = VT.getVectorNumElements();
5993   bool isMMX = VT.getSizeInBits() == 64;
5994   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
5995   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
5996   bool V1IsSplat = false;
5997   bool V2IsSplat = false;
5998   bool HasSSE2 = Subtarget->hasSSE2() || Subtarget->hasAVX();
5999   bool HasSSE3 = Subtarget->hasSSE3() || Subtarget->hasAVX();
6000   bool HasSSSE3 = Subtarget->hasSSSE3() || Subtarget->hasAVX();
6001   MachineFunction &MF = DAG.getMachineFunction();
6002   bool OptForSize = MF.getFunction()->hasFnAttr(Attribute::OptimizeForSize);
6003
6004   // Shuffle operations on MMX not supported.
6005   if (isMMX)
6006     return Op;
6007
6008   // Vector shuffle lowering takes 3 steps:
6009   //
6010   // 1) Normalize the input vectors. Here splats, zeroed vectors, profitable
6011   //    narrowing and commutation of operands should be handled.
6012   // 2) Matching of shuffles with known shuffle masks to x86 target specific
6013   //    shuffle nodes.
6014   // 3) Rewriting of unmatched masks into new generic shuffle operations,
6015   //    so the shuffle can be broken into other shuffles and the legalizer can
6016   //    try the lowering again.
6017   //
6018   // The general ideia is that no vector_shuffle operation should be left to
6019   // be matched during isel, all of them must be converted to a target specific
6020   // node here.
6021
6022   // Normalize the input vectors. Here splats, zeroed vectors, profitable
6023   // narrowing and commutation of operands should be handled. The actual code
6024   // doesn't include all of those, work in progress...
6025   SDValue NewOp = NormalizeVectorShuffle(Op, DAG, *this, Subtarget);
6026   if (NewOp.getNode())
6027     return NewOp;
6028
6029   // NOTE: isPSHUFDMask can also match both masks below (unpckl_undef and
6030   // unpckh_undef). Only use pshufd if speed is more important than size.
6031   if (OptForSize && X86::isUNPCKL_v_undef_Mask(SVOp))
6032     return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
6033   if (OptForSize && X86::isUNPCKH_v_undef_Mask(SVOp))
6034     return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6035
6036   if (X86::isMOVDDUPMask(SVOp) && HasSSE3 && V2IsUndef &&
6037       RelaxedMayFoldVectorLoad(V1))
6038     return getMOVDDup(Op, dl, V1, DAG);
6039
6040   if (X86::isMOVHLPS_v_undef_Mask(SVOp))
6041     return getMOVHighToLow(Op, dl, DAG);
6042
6043   // Use to match splats
6044   if (HasSSE2 && X86::isUNPCKHMask(SVOp) && V2IsUndef &&
6045       (VT == MVT::v2f64 || VT == MVT::v2i64))
6046     return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6047
6048   if (X86::isPSHUFDMask(SVOp)) {
6049     // The actual implementation will match the mask in the if above and then
6050     // during isel it can match several different instructions, not only pshufd
6051     // as its name says, sad but true, emulate the behavior for now...
6052     if (X86::isMOVDDUPMask(SVOp) && ((VT == MVT::v4f32 || VT == MVT::v2i64)))
6053         return getTargetShuffleNode(X86ISD::MOVLHPS, dl, VT, V1, V1, DAG);
6054
6055     unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6056
6057     if (HasSSE2 && (VT == MVT::v4f32 || VT == MVT::v4i32))
6058       return getTargetShuffleNode(X86ISD::PSHUFD, dl, VT, V1, TargetMask, DAG);
6059
6060     if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
6061       return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V1,
6062                                   TargetMask, DAG);
6063
6064     if (VT == MVT::v4f32)
6065       return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V1,
6066                                   TargetMask, DAG);
6067   }
6068
6069   // Check if this can be converted into a logical shift.
6070   bool isLeft = false;
6071   unsigned ShAmt = 0;
6072   SDValue ShVal;
6073   bool isShift = getSubtarget()->hasSSE2() &&
6074     isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
6075   if (isShift && ShVal.hasOneUse()) {
6076     // If the shifted value has multiple uses, it may be cheaper to use
6077     // v_set0 + movlhps or movhlps, etc.
6078     EVT EltVT = VT.getVectorElementType();
6079     ShAmt *= EltVT.getSizeInBits();
6080     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6081   }
6082
6083   if (X86::isMOVLMask(SVOp)) {
6084     if (V1IsUndef)
6085       return V2;
6086     if (ISD::isBuildVectorAllZeros(V1.getNode()))
6087       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
6088     if (!X86::isMOVLPMask(SVOp)) {
6089       if (HasSSE2 && (VT == MVT::v2i64 || VT == MVT::v2f64))
6090         return getTargetShuffleNode(X86ISD::MOVSD, dl, VT, V1, V2, DAG);
6091
6092       if (VT == MVT::v4i32 || VT == MVT::v4f32)
6093         return getTargetShuffleNode(X86ISD::MOVSS, dl, VT, V1, V2, DAG);
6094     }
6095   }
6096
6097   // FIXME: fold these into legal mask.
6098   if (X86::isMOVLHPSMask(SVOp) && !X86::isUNPCKLMask(SVOp))
6099     return getMOVLowToHigh(Op, dl, DAG, HasSSE2);
6100
6101   if (X86::isMOVHLPSMask(SVOp))
6102     return getMOVHighToLow(Op, dl, DAG);
6103
6104   if (X86::isMOVSHDUPMask(SVOp, Subtarget))
6105     return getTargetShuffleNode(X86ISD::MOVSHDUP, dl, VT, V1, DAG);
6106
6107   if (X86::isMOVSLDUPMask(SVOp, Subtarget))
6108     return getTargetShuffleNode(X86ISD::MOVSLDUP, dl, VT, V1, DAG);
6109
6110   if (X86::isMOVLPMask(SVOp))
6111     return getMOVLP(Op, dl, DAG, HasSSE2);
6112
6113   if (ShouldXformToMOVHLPS(SVOp) ||
6114       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
6115     return CommuteVectorShuffle(SVOp, DAG);
6116
6117   if (isShift) {
6118     // No better options. Use a vshl / vsrl.
6119     EVT EltVT = VT.getVectorElementType();
6120     ShAmt *= EltVT.getSizeInBits();
6121     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
6122   }
6123
6124   bool Commuted = false;
6125   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
6126   // 1,1,1,1 -> v8i16 though.
6127   V1IsSplat = isSplatVector(V1.getNode());
6128   V2IsSplat = isSplatVector(V2.getNode());
6129
6130   // Canonicalize the splat or undef, if present, to be on the RHS.
6131   if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
6132     Op = CommuteVectorShuffle(SVOp, DAG);
6133     SVOp = cast<ShuffleVectorSDNode>(Op);
6134     V1 = SVOp->getOperand(0);
6135     V2 = SVOp->getOperand(1);
6136     std::swap(V1IsSplat, V2IsSplat);
6137     std::swap(V1IsUndef, V2IsUndef);
6138     Commuted = true;
6139   }
6140
6141   if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
6142     // Shuffling low element of v1 into undef, just return v1.
6143     if (V2IsUndef)
6144       return V1;
6145     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
6146     // the instruction selector will not match, so get a canonical MOVL with
6147     // swapped operands to undo the commute.
6148     return getMOVL(DAG, dl, VT, V2, V1);
6149   }
6150
6151   if (X86::isUNPCKLMask(SVOp))
6152     return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V2, DAG);
6153
6154   if (X86::isUNPCKHMask(SVOp))
6155     return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V2, DAG);
6156
6157   if (V2IsSplat) {
6158     // Normalize mask so all entries that point to V2 points to its first
6159     // element then try to match unpck{h|l} again. If match, return a
6160     // new vector_shuffle with the corrected mask.
6161     SDValue NewMask = NormalizeMask(SVOp, DAG);
6162     ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
6163     if (NSVOp != SVOp) {
6164       if (X86::isUNPCKLMask(NSVOp, true)) {
6165         return NewMask;
6166       } else if (X86::isUNPCKHMask(NSVOp, true)) {
6167         return NewMask;
6168       }
6169     }
6170   }
6171
6172   if (Commuted) {
6173     // Commute is back and try unpck* again.
6174     // FIXME: this seems wrong.
6175     SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
6176     ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
6177
6178     if (X86::isUNPCKLMask(NewSVOp))
6179       return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V2, V1, DAG);
6180
6181     if (X86::isUNPCKHMask(NewSVOp))
6182       return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V2, V1, DAG);
6183   }
6184
6185   // Normalize the node to match x86 shuffle ops if needed
6186   if (V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
6187     return CommuteVectorShuffle(SVOp, DAG);
6188
6189   // The checks below are all present in isShuffleMaskLegal, but they are
6190   // inlined here right now to enable us to directly emit target specific
6191   // nodes, and remove one by one until they don't return Op anymore.
6192   SmallVector<int, 16> M;
6193   SVOp->getMask(M);
6194
6195   if (isPALIGNRMask(M, VT, HasSSSE3))
6196     return getTargetShuffleNode(X86ISD::PALIGN, dl, VT, V1, V2,
6197                                 X86::getShufflePALIGNRImmediate(SVOp),
6198                                 DAG);
6199
6200   if (ShuffleVectorSDNode::isSplatMask(&M[0], VT) &&
6201       SVOp->getSplatIndex() == 0 && V2IsUndef) {
6202     if (VT == MVT::v2f64)
6203       return getTargetShuffleNode(X86ISD::UNPCKLPD, dl, VT, V1, V1, DAG);
6204     if (VT == MVT::v2i64)
6205       return getTargetShuffleNode(X86ISD::PUNPCKLQDQ, dl, VT, V1, V1, DAG);
6206   }
6207
6208   if (isPSHUFHWMask(M, VT))
6209     return getTargetShuffleNode(X86ISD::PSHUFHW, dl, VT, V1,
6210                                 X86::getShufflePSHUFHWImmediate(SVOp),
6211                                 DAG);
6212
6213   if (isPSHUFLWMask(M, VT))
6214     return getTargetShuffleNode(X86ISD::PSHUFLW, dl, VT, V1,
6215                                 X86::getShufflePSHUFLWImmediate(SVOp),
6216                                 DAG);
6217
6218   if (isSHUFPMask(M, VT)) {
6219     unsigned TargetMask = X86::getShuffleSHUFImmediate(SVOp);
6220     if (VT == MVT::v4f32 || VT == MVT::v4i32)
6221       return getTargetShuffleNode(X86ISD::SHUFPS, dl, VT, V1, V2,
6222                                   TargetMask, DAG);
6223     if (VT == MVT::v2f64 || VT == MVT::v2i64)
6224       return getTargetShuffleNode(X86ISD::SHUFPD, dl, VT, V1, V2,
6225                                   TargetMask, DAG);
6226   }
6227
6228   if (X86::isUNPCKL_v_undef_Mask(SVOp))
6229     return getTargetShuffleNode(getUNPCKLOpcode(VT), dl, VT, V1, V1, DAG);
6230   if (X86::isUNPCKH_v_undef_Mask(SVOp))
6231     return getTargetShuffleNode(getUNPCKHOpcode(VT), dl, VT, V1, V1, DAG);
6232
6233   //===--------------------------------------------------------------------===//
6234   // Generate target specific nodes for 128 or 256-bit shuffles only
6235   // supported in the AVX instruction set.
6236   //
6237
6238   // Handle VPERMILPS* permutations
6239   if (isVPERMILPSMask(M, VT, Subtarget))
6240     return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6241                                 getShuffleVPERMILPSImmediate(SVOp), DAG);
6242
6243   // Handle VPERMILPD* permutations
6244   if (isVPERMILPDMask(M, VT, Subtarget))
6245     return getTargetShuffleNode(getVPERMILOpcode(VT), dl, VT, V1,
6246                                 getShuffleVPERMILPDImmediate(SVOp), DAG);
6247
6248   //===--------------------------------------------------------------------===//
6249   // Since no target specific shuffle was selected for this generic one,
6250   // lower it into other known shuffles. FIXME: this isn't true yet, but
6251   // this is the plan.
6252   //
6253
6254   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
6255   if (VT == MVT::v8i16) {
6256     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(Op, DAG);
6257     if (NewOp.getNode())
6258       return NewOp;
6259   }
6260
6261   if (VT == MVT::v16i8) {
6262     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
6263     if (NewOp.getNode())
6264       return NewOp;
6265   }
6266
6267   // Handle all 128-bit wide vectors with 4 elements, and match them with
6268   // several different shuffle types.
6269   if (NumElems == 4 && VT.getSizeInBits() == 128)
6270     return LowerVECTOR_SHUFFLE_128v4(SVOp, DAG);
6271
6272   // Handle general 256-bit shuffles
6273   if (VT.is256BitVector())
6274     return LowerVECTOR_SHUFFLE_256(SVOp, DAG);
6275
6276   return SDValue();
6277 }
6278
6279 SDValue
6280 X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
6281                                                 SelectionDAG &DAG) const {
6282   EVT VT = Op.getValueType();
6283   DebugLoc dl = Op.getDebugLoc();
6284
6285   if (Op.getOperand(0).getValueType().getSizeInBits() != 128)
6286     return SDValue();
6287
6288   if (VT.getSizeInBits() == 8) {
6289     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
6290                                     Op.getOperand(0), Op.getOperand(1));
6291     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
6292                                     DAG.getValueType(VT));
6293     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6294   } else if (VT.getSizeInBits() == 16) {
6295     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6296     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
6297     if (Idx == 0)
6298       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6299                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6300                                      DAG.getNode(ISD::BITCAST, dl,
6301                                                  MVT::v4i32,
6302                                                  Op.getOperand(0)),
6303                                      Op.getOperand(1)));
6304     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
6305                                     Op.getOperand(0), Op.getOperand(1));
6306     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
6307                                     DAG.getValueType(VT));
6308     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6309   } else if (VT == MVT::f32) {
6310     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
6311     // the result back to FR32 register. It's only worth matching if the
6312     // result has a single use which is a store or a bitcast to i32.  And in
6313     // the case of a store, it's not worth it if the index is a constant 0,
6314     // because a MOVSSmr can be used instead, which is smaller and faster.
6315     if (!Op.hasOneUse())
6316       return SDValue();
6317     SDNode *User = *Op.getNode()->use_begin();
6318     if ((User->getOpcode() != ISD::STORE ||
6319          (isa<ConstantSDNode>(Op.getOperand(1)) &&
6320           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
6321         (User->getOpcode() != ISD::BITCAST ||
6322          User->getValueType(0) != MVT::i32))
6323       return SDValue();
6324     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6325                                   DAG.getNode(ISD::BITCAST, dl, MVT::v4i32,
6326                                               Op.getOperand(0)),
6327                                               Op.getOperand(1));
6328     return DAG.getNode(ISD::BITCAST, dl, MVT::f32, Extract);
6329   } else if (VT == MVT::i32) {
6330     // ExtractPS works with constant index.
6331     if (isa<ConstantSDNode>(Op.getOperand(1)))
6332       return Op;
6333   }
6334   return SDValue();
6335 }
6336
6337
6338 SDValue
6339 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
6340                                            SelectionDAG &DAG) const {
6341   if (!isa<ConstantSDNode>(Op.getOperand(1)))
6342     return SDValue();
6343
6344   SDValue Vec = Op.getOperand(0);
6345   EVT VecVT = Vec.getValueType();
6346
6347   // If this is a 256-bit vector result, first extract the 128-bit vector and
6348   // then extract the element from the 128-bit vector.
6349   if (VecVT.getSizeInBits() == 256) {
6350     DebugLoc dl = Op.getNode()->getDebugLoc();
6351     unsigned NumElems = VecVT.getVectorNumElements();
6352     SDValue Idx = Op.getOperand(1);
6353     unsigned IdxVal = cast<ConstantSDNode>(Idx)->getZExtValue();
6354
6355     // Get the 128-bit vector.
6356     bool Upper = IdxVal >= NumElems/2;
6357     Vec = Extract128BitVector(Vec,
6358                     DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
6359
6360     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, Op.getValueType(), Vec,
6361                     Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
6362   }
6363
6364   assert(Vec.getValueSizeInBits() <= 128 && "Unexpected vector length");
6365
6366   if (Subtarget->hasSSE41() || Subtarget->hasAVX()) {
6367     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
6368     if (Res.getNode())
6369       return Res;
6370   }
6371
6372   EVT VT = Op.getValueType();
6373   DebugLoc dl = Op.getDebugLoc();
6374   // TODO: handle v16i8.
6375   if (VT.getSizeInBits() == 16) {
6376     SDValue Vec = Op.getOperand(0);
6377     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6378     if (Idx == 0)
6379       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
6380                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
6381                                      DAG.getNode(ISD::BITCAST, dl,
6382                                                  MVT::v4i32, Vec),
6383                                      Op.getOperand(1)));
6384     // Transform it so it match pextrw which produces a 32-bit result.
6385     EVT EltVT = MVT::i32;
6386     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EltVT,
6387                                     Op.getOperand(0), Op.getOperand(1));
6388     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EltVT, Extract,
6389                                     DAG.getValueType(VT));
6390     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
6391   } else if (VT.getSizeInBits() == 32) {
6392     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6393     if (Idx == 0)
6394       return Op;
6395
6396     // SHUFPS the element to the lowest double word, then movss.
6397     int Mask[4] = { static_cast<int>(Idx), -1, -1, -1 };
6398     EVT VVT = Op.getOperand(0).getValueType();
6399     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
6400                                        DAG.getUNDEF(VVT), Mask);
6401     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
6402                        DAG.getIntPtrConstant(0));
6403   } else if (VT.getSizeInBits() == 64) {
6404     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
6405     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
6406     //        to match extract_elt for f64.
6407     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
6408     if (Idx == 0)
6409       return Op;
6410
6411     // UNPCKHPD the element to the lowest double word, then movsd.
6412     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
6413     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
6414     int Mask[2] = { 1, -1 };
6415     EVT VVT = Op.getOperand(0).getValueType();
6416     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0),
6417                                        DAG.getUNDEF(VVT), Mask);
6418     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
6419                        DAG.getIntPtrConstant(0));
6420   }
6421
6422   return SDValue();
6423 }
6424
6425 SDValue
6426 X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op,
6427                                                SelectionDAG &DAG) const {
6428   EVT VT = Op.getValueType();
6429   EVT EltVT = VT.getVectorElementType();
6430   DebugLoc dl = Op.getDebugLoc();
6431
6432   SDValue N0 = Op.getOperand(0);
6433   SDValue N1 = Op.getOperand(1);
6434   SDValue N2 = Op.getOperand(2);
6435
6436   if (VT.getSizeInBits() == 256)
6437     return SDValue();
6438
6439   if ((EltVT.getSizeInBits() == 8 || EltVT.getSizeInBits() == 16) &&
6440       isa<ConstantSDNode>(N2)) {
6441     unsigned Opc;
6442     if (VT == MVT::v8i16)
6443       Opc = X86ISD::PINSRW;
6444     else if (VT == MVT::v16i8)
6445       Opc = X86ISD::PINSRB;
6446     else
6447       Opc = X86ISD::PINSRB;
6448
6449     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
6450     // argument.
6451     if (N1.getValueType() != MVT::i32)
6452       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6453     if (N2.getValueType() != MVT::i32)
6454       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
6455     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
6456   } else if (EltVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
6457     // Bits [7:6] of the constant are the source select.  This will always be
6458     //  zero here.  The DAG Combiner may combine an extract_elt index into these
6459     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
6460     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
6461     // Bits [5:4] of the constant are the destination select.  This is the
6462     //  value of the incoming immediate.
6463     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
6464     //   combine either bitwise AND or insert of float 0.0 to set these bits.
6465     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
6466     // Create this as a scalar to vector..
6467     N1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4f32, N1);
6468     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
6469   } else if (EltVT == MVT::i32 && isa<ConstantSDNode>(N2)) {
6470     // PINSR* works with constant index.
6471     return Op;
6472   }
6473   return SDValue();
6474 }
6475
6476 SDValue
6477 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) const {
6478   EVT VT = Op.getValueType();
6479   EVT EltVT = VT.getVectorElementType();
6480
6481   DebugLoc dl = Op.getDebugLoc();
6482   SDValue N0 = Op.getOperand(0);
6483   SDValue N1 = Op.getOperand(1);
6484   SDValue N2 = Op.getOperand(2);
6485
6486   // If this is a 256-bit vector result, first extract the 128-bit vector,
6487   // insert the element into the extracted half and then place it back.
6488   if (VT.getSizeInBits() == 256) {
6489     if (!isa<ConstantSDNode>(N2))
6490       return SDValue();
6491
6492     // Get the desired 128-bit vector half.
6493     unsigned NumElems = VT.getVectorNumElements();
6494     unsigned IdxVal = cast<ConstantSDNode>(N2)->getZExtValue();
6495     bool Upper = IdxVal >= NumElems/2;
6496     SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
6497     SDValue V = Extract128BitVector(N0, Ins128Idx, DAG, dl);
6498
6499     // Insert the element into the desired half.
6500     V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, V.getValueType(), V,
6501                  N1, Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : N2);
6502
6503     // Insert the changed part back to the 256-bit vector
6504     return Insert128BitVector(N0, V, Ins128Idx, DAG, dl);
6505   }
6506
6507   if (Subtarget->hasSSE41() || Subtarget->hasAVX())
6508     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
6509
6510   if (EltVT == MVT::i8)
6511     return SDValue();
6512
6513   if (EltVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
6514     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
6515     // as its second argument.
6516     if (N1.getValueType() != MVT::i32)
6517       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
6518     if (N2.getValueType() != MVT::i32)
6519       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
6520     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
6521   }
6522   return SDValue();
6523 }
6524
6525 SDValue
6526 X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) const {
6527   LLVMContext *Context = DAG.getContext();
6528   DebugLoc dl = Op.getDebugLoc();
6529   EVT OpVT = Op.getValueType();
6530
6531   // If this is a 256-bit vector result, first insert into a 128-bit
6532   // vector and then insert into the 256-bit vector.
6533   if (OpVT.getSizeInBits() > 128) {
6534     // Insert into a 128-bit vector.
6535     EVT VT128 = EVT::getVectorVT(*Context,
6536                                  OpVT.getVectorElementType(),
6537                                  OpVT.getVectorNumElements() / 2);
6538
6539     Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT128, Op.getOperand(0));
6540
6541     // Insert the 128-bit vector.
6542     return Insert128BitVector(DAG.getNode(ISD::UNDEF, dl, OpVT), Op,
6543                               DAG.getConstant(0, MVT::i32),
6544                               DAG, dl);
6545   }
6546
6547   if (Op.getValueType() == MVT::v1i64 &&
6548       Op.getOperand(0).getValueType() == MVT::i64)
6549     return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v1i64, Op.getOperand(0));
6550
6551   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
6552   assert(Op.getValueType().getSimpleVT().getSizeInBits() == 128 &&
6553          "Expected an SSE type!");
6554   return DAG.getNode(ISD::BITCAST, dl, Op.getValueType(),
6555                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,AnyExt));
6556 }
6557
6558 // Lower a node with an EXTRACT_SUBVECTOR opcode.  This may result in
6559 // a simple subregister reference or explicit instructions to grab
6560 // upper bits of a vector.
6561 SDValue
6562 X86TargetLowering::LowerEXTRACT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6563   if (Subtarget->hasAVX()) {
6564     DebugLoc dl = Op.getNode()->getDebugLoc();
6565     SDValue Vec = Op.getNode()->getOperand(0);
6566     SDValue Idx = Op.getNode()->getOperand(1);
6567
6568     if (Op.getNode()->getValueType(0).getSizeInBits() == 128
6569         && Vec.getNode()->getValueType(0).getSizeInBits() == 256) {
6570         return Extract128BitVector(Vec, Idx, DAG, dl);
6571     }
6572   }
6573   return SDValue();
6574 }
6575
6576 // Lower a node with an INSERT_SUBVECTOR opcode.  This may result in a
6577 // simple superregister reference or explicit instructions to insert
6578 // the upper bits of a vector.
6579 SDValue
6580 X86TargetLowering::LowerINSERT_SUBVECTOR(SDValue Op, SelectionDAG &DAG) const {
6581   if (Subtarget->hasAVX()) {
6582     DebugLoc dl = Op.getNode()->getDebugLoc();
6583     SDValue Vec = Op.getNode()->getOperand(0);
6584     SDValue SubVec = Op.getNode()->getOperand(1);
6585     SDValue Idx = Op.getNode()->getOperand(2);
6586
6587     if (Op.getNode()->getValueType(0).getSizeInBits() == 256
6588         && SubVec.getNode()->getValueType(0).getSizeInBits() == 128) {
6589       return Insert128BitVector(Vec, SubVec, Idx, DAG, dl);
6590     }
6591   }
6592   return SDValue();
6593 }
6594
6595 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
6596 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
6597 // one of the above mentioned nodes. It has to be wrapped because otherwise
6598 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
6599 // be used to form addressing mode. These wrapped nodes will be selected
6600 // into MOV32ri.
6601 SDValue
6602 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) const {
6603   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
6604
6605   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6606   // global base reg.
6607   unsigned char OpFlag = 0;
6608   unsigned WrapperKind = X86ISD::Wrapper;
6609   CodeModel::Model M = getTargetMachine().getCodeModel();
6610
6611   if (Subtarget->isPICStyleRIPRel() &&
6612       (M == CodeModel::Small || M == CodeModel::Kernel))
6613     WrapperKind = X86ISD::WrapperRIP;
6614   else if (Subtarget->isPICStyleGOT())
6615     OpFlag = X86II::MO_GOTOFF;
6616   else if (Subtarget->isPICStyleStubPIC())
6617     OpFlag = X86II::MO_PIC_BASE_OFFSET;
6618
6619   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
6620                                              CP->getAlignment(),
6621                                              CP->getOffset(), OpFlag);
6622   DebugLoc DL = CP->getDebugLoc();
6623   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
6624   // With PIC, the address is actually $g + Offset.
6625   if (OpFlag) {
6626     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6627                          DAG.getNode(X86ISD::GlobalBaseReg,
6628                                      DebugLoc(), getPointerTy()),
6629                          Result);
6630   }
6631
6632   return Result;
6633 }
6634
6635 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) const {
6636   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
6637
6638   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6639   // global base reg.
6640   unsigned char OpFlag = 0;
6641   unsigned WrapperKind = X86ISD::Wrapper;
6642   CodeModel::Model M = getTargetMachine().getCodeModel();
6643
6644   if (Subtarget->isPICStyleRIPRel() &&
6645       (M == CodeModel::Small || M == CodeModel::Kernel))
6646     WrapperKind = X86ISD::WrapperRIP;
6647   else if (Subtarget->isPICStyleGOT())
6648     OpFlag = X86II::MO_GOTOFF;
6649   else if (Subtarget->isPICStyleStubPIC())
6650     OpFlag = X86II::MO_PIC_BASE_OFFSET;
6651
6652   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
6653                                           OpFlag);
6654   DebugLoc DL = JT->getDebugLoc();
6655   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
6656
6657   // With PIC, the address is actually $g + Offset.
6658   if (OpFlag)
6659     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6660                          DAG.getNode(X86ISD::GlobalBaseReg,
6661                                      DebugLoc(), getPointerTy()),
6662                          Result);
6663
6664   return Result;
6665 }
6666
6667 SDValue
6668 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) const {
6669   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
6670
6671   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6672   // global base reg.
6673   unsigned char OpFlag = 0;
6674   unsigned WrapperKind = X86ISD::Wrapper;
6675   CodeModel::Model M = getTargetMachine().getCodeModel();
6676
6677   if (Subtarget->isPICStyleRIPRel() &&
6678       (M == CodeModel::Small || M == CodeModel::Kernel))
6679     WrapperKind = X86ISD::WrapperRIP;
6680   else if (Subtarget->isPICStyleGOT())
6681     OpFlag = X86II::MO_GOTOFF;
6682   else if (Subtarget->isPICStyleStubPIC())
6683     OpFlag = X86II::MO_PIC_BASE_OFFSET;
6684
6685   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy(), OpFlag);
6686
6687   DebugLoc DL = Op.getDebugLoc();
6688   Result = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
6689
6690
6691   // With PIC, the address is actually $g + Offset.
6692   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
6693       !Subtarget->is64Bit()) {
6694     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6695                          DAG.getNode(X86ISD::GlobalBaseReg,
6696                                      DebugLoc(), getPointerTy()),
6697                          Result);
6698   }
6699
6700   return Result;
6701 }
6702
6703 SDValue
6704 X86TargetLowering::LowerBlockAddress(SDValue Op, SelectionDAG &DAG) const {
6705   // Create the TargetBlockAddressAddress node.
6706   unsigned char OpFlags =
6707     Subtarget->ClassifyBlockAddressReference();
6708   CodeModel::Model M = getTargetMachine().getCodeModel();
6709   const BlockAddress *BA = cast<BlockAddressSDNode>(Op)->getBlockAddress();
6710   DebugLoc dl = Op.getDebugLoc();
6711   SDValue Result = DAG.getBlockAddress(BA, getPointerTy(),
6712                                        /*isTarget=*/true, OpFlags);
6713
6714   if (Subtarget->isPICStyleRIPRel() &&
6715       (M == CodeModel::Small || M == CodeModel::Kernel))
6716     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6717   else
6718     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
6719
6720   // With PIC, the address is actually $g + Offset.
6721   if (isGlobalRelativeToPICBase(OpFlags)) {
6722     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6723                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6724                          Result);
6725   }
6726
6727   return Result;
6728 }
6729
6730 SDValue
6731 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
6732                                       int64_t Offset,
6733                                       SelectionDAG &DAG) const {
6734   // Create the TargetGlobalAddress node, folding in the constant
6735   // offset if it is legal.
6736   unsigned char OpFlags =
6737     Subtarget->ClassifyGlobalReference(GV, getTargetMachine());
6738   CodeModel::Model M = getTargetMachine().getCodeModel();
6739   SDValue Result;
6740   if (OpFlags == X86II::MO_NO_FLAG &&
6741       X86::isOffsetSuitableForCodeModel(Offset, M)) {
6742     // A direct static reference to a global.
6743     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), Offset);
6744     Offset = 0;
6745   } else {
6746     Result = DAG.getTargetGlobalAddress(GV, dl, getPointerTy(), 0, OpFlags);
6747   }
6748
6749   if (Subtarget->isPICStyleRIPRel() &&
6750       (M == CodeModel::Small || M == CodeModel::Kernel))
6751     Result = DAG.getNode(X86ISD::WrapperRIP, dl, getPointerTy(), Result);
6752   else
6753     Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
6754
6755   // With PIC, the address is actually $g + Offset.
6756   if (isGlobalRelativeToPICBase(OpFlags)) {
6757     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
6758                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
6759                          Result);
6760   }
6761
6762   // For globals that require a load from a stub to get the address, emit the
6763   // load.
6764   if (isGlobalStubReference(OpFlags))
6765     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
6766                          MachinePointerInfo::getGOT(), false, false, 0);
6767
6768   // If there was a non-zero offset that we didn't fold, create an explicit
6769   // addition for it.
6770   if (Offset != 0)
6771     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
6772                          DAG.getConstant(Offset, getPointerTy()));
6773
6774   return Result;
6775 }
6776
6777 SDValue
6778 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) const {
6779   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
6780   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
6781   return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
6782 }
6783
6784 static SDValue
6785 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
6786            SDValue *InFlag, const EVT PtrVT, unsigned ReturnReg,
6787            unsigned char OperandFlags) {
6788   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6789   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6790   DebugLoc dl = GA->getDebugLoc();
6791   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
6792                                            GA->getValueType(0),
6793                                            GA->getOffset(),
6794                                            OperandFlags);
6795   if (InFlag) {
6796     SDValue Ops[] = { Chain,  TGA, *InFlag };
6797     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
6798   } else {
6799     SDValue Ops[]  = { Chain, TGA };
6800     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
6801   }
6802
6803   // TLSADDR will be codegen'ed as call. Inform MFI that function has calls.
6804   MFI->setAdjustsStack(true);
6805
6806   SDValue Flag = Chain.getValue(1);
6807   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
6808 }
6809
6810 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
6811 static SDValue
6812 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
6813                                 const EVT PtrVT) {
6814   SDValue InFlag;
6815   DebugLoc dl = GA->getDebugLoc();  // ? function entry point might be better
6816   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
6817                                      DAG.getNode(X86ISD::GlobalBaseReg,
6818                                                  DebugLoc(), PtrVT), InFlag);
6819   InFlag = Chain.getValue(1);
6820
6821   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
6822 }
6823
6824 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
6825 static SDValue
6826 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
6827                                 const EVT PtrVT) {
6828   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
6829                     X86::RAX, X86II::MO_TLSGD);
6830 }
6831
6832 // Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
6833 // "local exec" model.
6834 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
6835                                    const EVT PtrVT, TLSModel::Model model,
6836                                    bool is64Bit) {
6837   DebugLoc dl = GA->getDebugLoc();
6838
6839   // Get the Thread Pointer, which is %gs:0 (32-bit) or %fs:0 (64-bit).
6840   Value *Ptr = Constant::getNullValue(Type::getInt8PtrTy(*DAG.getContext(),
6841                                                          is64Bit ? 257 : 256));
6842
6843   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(),
6844                                       DAG.getIntPtrConstant(0),
6845                                       MachinePointerInfo(Ptr), false, false, 0);
6846
6847   unsigned char OperandFlags = 0;
6848   // Most TLS accesses are not RIP relative, even on x86-64.  One exception is
6849   // initialexec.
6850   unsigned WrapperKind = X86ISD::Wrapper;
6851   if (model == TLSModel::LocalExec) {
6852     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
6853   } else if (is64Bit) {
6854     assert(model == TLSModel::InitialExec);
6855     OperandFlags = X86II::MO_GOTTPOFF;
6856     WrapperKind = X86ISD::WrapperRIP;
6857   } else {
6858     assert(model == TLSModel::InitialExec);
6859     OperandFlags = X86II::MO_INDNTPOFF;
6860   }
6861
6862   // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
6863   // exec)
6864   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), dl,
6865                                            GA->getValueType(0),
6866                                            GA->getOffset(), OperandFlags);
6867   SDValue Offset = DAG.getNode(WrapperKind, dl, PtrVT, TGA);
6868
6869   if (model == TLSModel::InitialExec)
6870     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
6871                          MachinePointerInfo::getGOT(), false, false, 0);
6872
6873   // The address of the thread local variable is the add of the thread
6874   // pointer with the offset of the variable.
6875   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
6876 }
6877
6878 SDValue
6879 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) const {
6880
6881   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
6882   const GlobalValue *GV = GA->getGlobal();
6883
6884   if (Subtarget->isTargetELF()) {
6885     // TODO: implement the "local dynamic" model
6886     // TODO: implement the "initial exec"model for pic executables
6887
6888     // If GV is an alias then use the aliasee for determining
6889     // thread-localness.
6890     if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
6891       GV = GA->resolveAliasedGlobal(false);
6892
6893     TLSModel::Model model
6894       = getTLSModel(GV, getTargetMachine().getRelocationModel());
6895
6896     switch (model) {
6897       case TLSModel::GeneralDynamic:
6898       case TLSModel::LocalDynamic: // not implemented
6899         if (Subtarget->is64Bit())
6900           return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
6901         return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
6902
6903       case TLSModel::InitialExec:
6904       case TLSModel::LocalExec:
6905         return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
6906                                    Subtarget->is64Bit());
6907     }
6908   } else if (Subtarget->isTargetDarwin()) {
6909     // Darwin only has one model of TLS.  Lower to that.
6910     unsigned char OpFlag = 0;
6911     unsigned WrapperKind = Subtarget->isPICStyleRIPRel() ?
6912                            X86ISD::WrapperRIP : X86ISD::Wrapper;
6913
6914     // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
6915     // global base reg.
6916     bool PIC32 = (getTargetMachine().getRelocationModel() == Reloc::PIC_) &&
6917                   !Subtarget->is64Bit();
6918     if (PIC32)
6919       OpFlag = X86II::MO_TLVP_PIC_BASE;
6920     else
6921       OpFlag = X86II::MO_TLVP;
6922     DebugLoc DL = Op.getDebugLoc();
6923     SDValue Result = DAG.getTargetGlobalAddress(GA->getGlobal(), DL,
6924                                                 GA->getValueType(0),
6925                                                 GA->getOffset(), OpFlag);
6926     SDValue Offset = DAG.getNode(WrapperKind, DL, getPointerTy(), Result);
6927
6928     // With PIC32, the address is actually $g + Offset.
6929     if (PIC32)
6930       Offset = DAG.getNode(ISD::ADD, DL, getPointerTy(),
6931                            DAG.getNode(X86ISD::GlobalBaseReg,
6932                                        DebugLoc(), getPointerTy()),
6933                            Offset);
6934
6935     // Lowering the machine isd will make sure everything is in the right
6936     // location.
6937     SDValue Chain = DAG.getEntryNode();
6938     SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
6939     SDValue Args[] = { Chain, Offset };
6940     Chain = DAG.getNode(X86ISD::TLSCALL, DL, NodeTys, Args, 2);
6941
6942     // TLSCALL will be codegen'ed as call. Inform MFI that function has calls.
6943     MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6944     MFI->setAdjustsStack(true);
6945
6946     // And our return value (tls address) is in the standard call return value
6947     // location.
6948     unsigned Reg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
6949     return DAG.getCopyFromReg(Chain, DL, Reg, getPointerTy());
6950   }
6951
6952   assert(false &&
6953          "TLS not implemented for this target.");
6954
6955   llvm_unreachable("Unreachable");
6956   return SDValue();
6957 }
6958
6959
6960 /// LowerShiftParts - Lower SRA_PARTS and friends, which return two i32 values and
6961 /// take a 2 x i32 value to shift plus a shift amount.
6962 SDValue X86TargetLowering::LowerShiftParts(SDValue Op, SelectionDAG &DAG) const {
6963   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
6964   EVT VT = Op.getValueType();
6965   unsigned VTBits = VT.getSizeInBits();
6966   DebugLoc dl = Op.getDebugLoc();
6967   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
6968   SDValue ShOpLo = Op.getOperand(0);
6969   SDValue ShOpHi = Op.getOperand(1);
6970   SDValue ShAmt  = Op.getOperand(2);
6971   SDValue Tmp1 = isSRA ? DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
6972                                      DAG.getConstant(VTBits - 1, MVT::i8))
6973                        : DAG.getConstant(0, VT);
6974
6975   SDValue Tmp2, Tmp3;
6976   if (Op.getOpcode() == ISD::SHL_PARTS) {
6977     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
6978     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
6979   } else {
6980     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
6981     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
6982   }
6983
6984   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
6985                                 DAG.getConstant(VTBits, MVT::i8));
6986   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, MVT::i32,
6987                              AndNode, DAG.getConstant(0, MVT::i8));
6988
6989   SDValue Hi, Lo;
6990   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
6991   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
6992   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
6993
6994   if (Op.getOpcode() == ISD::SHL_PARTS) {
6995     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6996     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
6997   } else {
6998     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
6999     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
7000   }
7001
7002   SDValue Ops[2] = { Lo, Hi };
7003   return DAG.getMergeValues(Ops, 2, dl);
7004 }
7005
7006 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op,
7007                                            SelectionDAG &DAG) const {
7008   EVT SrcVT = Op.getOperand(0).getValueType();
7009
7010   if (SrcVT.isVector())
7011     return SDValue();
7012
7013   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
7014          "Unknown SINT_TO_FP to lower!");
7015
7016   // These are really Legal; return the operand so the caller accepts it as
7017   // Legal.
7018   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
7019     return Op;
7020   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
7021       Subtarget->is64Bit()) {
7022     return Op;
7023   }
7024
7025   DebugLoc dl = Op.getDebugLoc();
7026   unsigned Size = SrcVT.getSizeInBits()/8;
7027   MachineFunction &MF = DAG.getMachineFunction();
7028   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size, false);
7029   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7030   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7031                                StackSlot,
7032                                MachinePointerInfo::getFixedStack(SSFI),
7033                                false, false, 0);
7034   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
7035 }
7036
7037 SDValue X86TargetLowering::BuildFILD(SDValue Op, EVT SrcVT, SDValue Chain,
7038                                      SDValue StackSlot,
7039                                      SelectionDAG &DAG) const {
7040   // Build the FILD
7041   DebugLoc DL = Op.getDebugLoc();
7042   SDVTList Tys;
7043   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
7044   if (useSSE)
7045     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Glue);
7046   else
7047     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
7048
7049   unsigned ByteSize = SrcVT.getSizeInBits()/8;
7050
7051   FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(StackSlot);
7052   MachineMemOperand *MMO;
7053   if (FI) {
7054     int SSFI = FI->getIndex();
7055     MMO =
7056       DAG.getMachineFunction()
7057       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7058                             MachineMemOperand::MOLoad, ByteSize, ByteSize);
7059   } else {
7060     MMO = cast<LoadSDNode>(StackSlot)->getMemOperand();
7061     StackSlot = StackSlot.getOperand(1);
7062   }
7063   SDValue Ops[] = { Chain, StackSlot, DAG.getValueType(SrcVT) };
7064   SDValue Result = DAG.getMemIntrinsicNode(useSSE ? X86ISD::FILD_FLAG :
7065                                            X86ISD::FILD, DL,
7066                                            Tys, Ops, array_lengthof(Ops),
7067                                            SrcVT, MMO);
7068
7069   if (useSSE) {
7070     Chain = Result.getValue(1);
7071     SDValue InFlag = Result.getValue(2);
7072
7073     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
7074     // shouldn't be necessary except that RFP cannot be live across
7075     // multiple blocks. When stackifier is fixed, they can be uncoupled.
7076     MachineFunction &MF = DAG.getMachineFunction();
7077     unsigned SSFISize = Op.getValueType().getSizeInBits()/8;
7078     int SSFI = MF.getFrameInfo()->CreateStackObject(SSFISize, SSFISize, false);
7079     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7080     Tys = DAG.getVTList(MVT::Other);
7081     SDValue Ops[] = {
7082       Chain, Result, StackSlot, DAG.getValueType(Op.getValueType()), InFlag
7083     };
7084     MachineMemOperand *MMO =
7085       DAG.getMachineFunction()
7086       .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7087                             MachineMemOperand::MOStore, SSFISize, SSFISize);
7088
7089     Chain = DAG.getMemIntrinsicNode(X86ISD::FST, DL, Tys,
7090                                     Ops, array_lengthof(Ops),
7091                                     Op.getValueType(), MMO);
7092     Result = DAG.getLoad(Op.getValueType(), DL, Chain, StackSlot,
7093                          MachinePointerInfo::getFixedStack(SSFI),
7094                          false, false, 0);
7095   }
7096
7097   return Result;
7098 }
7099
7100 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
7101 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op,
7102                                                SelectionDAG &DAG) const {
7103   // This algorithm is not obvious. Here it is in C code, more or less:
7104   /*
7105     double uint64_to_double( uint32_t hi, uint32_t lo ) {
7106       static const __m128i exp = { 0x4330000045300000ULL, 0 };
7107       static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
7108
7109       // Copy ints to xmm registers.
7110       __m128i xh = _mm_cvtsi32_si128( hi );
7111       __m128i xl = _mm_cvtsi32_si128( lo );
7112
7113       // Combine into low half of a single xmm register.
7114       __m128i x = _mm_unpacklo_epi32( xh, xl );
7115       __m128d d;
7116       double sd;
7117
7118       // Merge in appropriate exponents to give the integer bits the right
7119       // magnitude.
7120       x = _mm_unpacklo_epi32( x, exp );
7121
7122       // Subtract away the biases to deal with the IEEE-754 double precision
7123       // implicit 1.
7124       d = _mm_sub_pd( (__m128d) x, bias );
7125
7126       // All conversions up to here are exact. The correctly rounded result is
7127       // calculated using the current rounding mode using the following
7128       // horizontal add.
7129       d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
7130       _mm_store_sd( &sd, d );   // Because we are returning doubles in XMM, this
7131                                 // store doesn't really need to be here (except
7132                                 // maybe to zero the other double)
7133       return sd;
7134     }
7135   */
7136
7137   DebugLoc dl = Op.getDebugLoc();
7138   LLVMContext *Context = DAG.getContext();
7139
7140   // Build some magic constants.
7141   std::vector<Constant*> CV0;
7142   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x45300000)));
7143   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0x43300000)));
7144   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7145   CV0.push_back(ConstantInt::get(*Context, APInt(32, 0)));
7146   Constant *C0 = ConstantVector::get(CV0);
7147   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
7148
7149   std::vector<Constant*> CV1;
7150   CV1.push_back(
7151     ConstantFP::get(*Context, APFloat(APInt(64, 0x4530000000000000ULL))));
7152   CV1.push_back(
7153     ConstantFP::get(*Context, APFloat(APInt(64, 0x4330000000000000ULL))));
7154   Constant *C1 = ConstantVector::get(CV1);
7155   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
7156
7157   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7158                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
7159                                         Op.getOperand(0),
7160                                         DAG.getIntPtrConstant(1)));
7161   SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7162                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
7163                                         Op.getOperand(0),
7164                                         DAG.getIntPtrConstant(0)));
7165   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
7166   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
7167                               MachinePointerInfo::getConstantPool(),
7168                               false, false, 16);
7169   SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
7170   SDValue XR2F = DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Unpck2);
7171   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
7172                               MachinePointerInfo::getConstantPool(),
7173                               false, false, 16);
7174   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
7175
7176   // Add the halves; easiest way is to swap them into another reg first.
7177   int ShufMask[2] = { 1, -1 };
7178   SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
7179                                       DAG.getUNDEF(MVT::v2f64), ShufMask);
7180   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
7181   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
7182                      DAG.getIntPtrConstant(0));
7183 }
7184
7185 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
7186 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op,
7187                                                SelectionDAG &DAG) const {
7188   DebugLoc dl = Op.getDebugLoc();
7189   // FP constant to bias correct the final result.
7190   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
7191                                    MVT::f64);
7192
7193   // Load the 32-bit value into an XMM register.
7194   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
7195                              DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
7196                                          Op.getOperand(0),
7197                                          DAG.getIntPtrConstant(0)));
7198
7199   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7200                      DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Load),
7201                      DAG.getIntPtrConstant(0));
7202
7203   // Or the load with the bias.
7204   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
7205                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7206                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7207                                                    MVT::v2f64, Load)),
7208                            DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7209                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
7210                                                    MVT::v2f64, Bias)));
7211   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
7212                    DAG.getNode(ISD::BITCAST, dl, MVT::v2f64, Or),
7213                    DAG.getIntPtrConstant(0));
7214
7215   // Subtract the bias.
7216   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
7217
7218   // Handle final rounding.
7219   EVT DestVT = Op.getValueType();
7220
7221   if (DestVT.bitsLT(MVT::f64)) {
7222     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
7223                        DAG.getIntPtrConstant(0));
7224   } else if (DestVT.bitsGT(MVT::f64)) {
7225     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
7226   }
7227
7228   // Handle final rounding.
7229   return Sub;
7230 }
7231
7232 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op,
7233                                            SelectionDAG &DAG) const {
7234   SDValue N0 = Op.getOperand(0);
7235   DebugLoc dl = Op.getDebugLoc();
7236
7237   // Since UINT_TO_FP is legal (it's marked custom), dag combiner won't
7238   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
7239   // the optimization here.
7240   if (DAG.SignBitIsZero(N0))
7241     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
7242
7243   EVT SrcVT = N0.getValueType();
7244   EVT DstVT = Op.getValueType();
7245   if (SrcVT == MVT::i64 && DstVT == MVT::f64 && X86ScalarSSEf64)
7246     return LowerUINT_TO_FP_i64(Op, DAG);
7247   else if (SrcVT == MVT::i32 && X86ScalarSSEf64)
7248     return LowerUINT_TO_FP_i32(Op, DAG);
7249
7250   // Make a 64-bit buffer, and use it to build an FILD.
7251   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
7252   if (SrcVT == MVT::i32) {
7253     SDValue WordOff = DAG.getConstant(4, getPointerTy());
7254     SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
7255                                      getPointerTy(), StackSlot, WordOff);
7256     SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7257                                   StackSlot, MachinePointerInfo(),
7258                                   false, false, 0);
7259     SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
7260                                   OffsetSlot, MachinePointerInfo(),
7261                                   false, false, 0);
7262     SDValue Fild = BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
7263     return Fild;
7264   }
7265
7266   assert(SrcVT == MVT::i64 && "Unexpected type in UINT_TO_FP");
7267   SDValue Store = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
7268                                 StackSlot, MachinePointerInfo(),
7269                                false, false, 0);
7270   // For i64 source, we need to add the appropriate power of 2 if the input
7271   // was negative.  This is the same as the optimization in
7272   // DAGTypeLegalizer::ExpandIntOp_UNIT_TO_FP, and for it to be safe here,
7273   // we must be careful to do the computation in x87 extended precision, not
7274   // in SSE. (The generic code can't know it's OK to do this, or how to.)
7275   int SSFI = cast<FrameIndexSDNode>(StackSlot)->getIndex();
7276   MachineMemOperand *MMO =
7277     DAG.getMachineFunction()
7278     .getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7279                           MachineMemOperand::MOLoad, 8, 8);
7280
7281   SDVTList Tys = DAG.getVTList(MVT::f80, MVT::Other);
7282   SDValue Ops[] = { Store, StackSlot, DAG.getValueType(MVT::i64) };
7283   SDValue Fild = DAG.getMemIntrinsicNode(X86ISD::FILD, dl, Tys, Ops, 3,
7284                                          MVT::i64, MMO);
7285
7286   APInt FF(32, 0x5F800000ULL);
7287
7288   // Check whether the sign bit is set.
7289   SDValue SignSet = DAG.getSetCC(dl, getSetCCResultType(MVT::i64),
7290                                  Op.getOperand(0), DAG.getConstant(0, MVT::i64),
7291                                  ISD::SETLT);
7292
7293   // Build a 64 bit pair (0, FF) in the constant pool, with FF in the lo bits.
7294   SDValue FudgePtr = DAG.getConstantPool(
7295                              ConstantInt::get(*DAG.getContext(), FF.zext(64)),
7296                                          getPointerTy());
7297
7298   // Get a pointer to FF if the sign bit was set, or to 0 otherwise.
7299   SDValue Zero = DAG.getIntPtrConstant(0);
7300   SDValue Four = DAG.getIntPtrConstant(4);
7301   SDValue Offset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(), SignSet,
7302                                Zero, Four);
7303   FudgePtr = DAG.getNode(ISD::ADD, dl, getPointerTy(), FudgePtr, Offset);
7304
7305   // Load the value out, extending it from f32 to f80.
7306   // FIXME: Avoid the extend by constructing the right constant pool?
7307   SDValue Fudge = DAG.getExtLoad(ISD::EXTLOAD, dl, MVT::f80, DAG.getEntryNode(),
7308                                  FudgePtr, MachinePointerInfo::getConstantPool(),
7309                                  MVT::f32, false, false, 4);
7310   // Extend everything to 80 bits to force it to be done on x87.
7311   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::f80, Fild, Fudge);
7312   return DAG.getNode(ISD::FP_ROUND, dl, DstVT, Add, DAG.getIntPtrConstant(0));
7313 }
7314
7315 std::pair<SDValue,SDValue> X86TargetLowering::
7316 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) const {
7317   DebugLoc DL = Op.getDebugLoc();
7318
7319   EVT DstTy = Op.getValueType();
7320
7321   if (!IsSigned) {
7322     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
7323     DstTy = MVT::i64;
7324   }
7325
7326   assert(DstTy.getSimpleVT() <= MVT::i64 &&
7327          DstTy.getSimpleVT() >= MVT::i16 &&
7328          "Unknown FP_TO_SINT to lower!");
7329
7330   // These are really Legal.
7331   if (DstTy == MVT::i32 &&
7332       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
7333     return std::make_pair(SDValue(), SDValue());
7334   if (Subtarget->is64Bit() &&
7335       DstTy == MVT::i64 &&
7336       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
7337     return std::make_pair(SDValue(), SDValue());
7338
7339   // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
7340   // stack slot.
7341   MachineFunction &MF = DAG.getMachineFunction();
7342   unsigned MemSize = DstTy.getSizeInBits()/8;
7343   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
7344   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7345
7346
7347
7348   unsigned Opc;
7349   switch (DstTy.getSimpleVT().SimpleTy) {
7350   default: llvm_unreachable("Invalid FP_TO_SINT to lower!");
7351   case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
7352   case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
7353   case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
7354   }
7355
7356   SDValue Chain = DAG.getEntryNode();
7357   SDValue Value = Op.getOperand(0);
7358   EVT TheVT = Op.getOperand(0).getValueType();
7359   if (isScalarFPTypeInSSEReg(TheVT)) {
7360     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
7361     Chain = DAG.getStore(Chain, DL, Value, StackSlot,
7362                          MachinePointerInfo::getFixedStack(SSFI),
7363                          false, false, 0);
7364     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
7365     SDValue Ops[] = {
7366       Chain, StackSlot, DAG.getValueType(TheVT)
7367     };
7368
7369     MachineMemOperand *MMO =
7370       MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7371                               MachineMemOperand::MOLoad, MemSize, MemSize);
7372     Value = DAG.getMemIntrinsicNode(X86ISD::FLD, DL, Tys, Ops, 3,
7373                                     DstTy, MMO);
7374     Chain = Value.getValue(1);
7375     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize, false);
7376     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
7377   }
7378
7379   MachineMemOperand *MMO =
7380     MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
7381                             MachineMemOperand::MOStore, MemSize, MemSize);
7382
7383   // Build the FP_TO_INT*_IN_MEM
7384   SDValue Ops[] = { Chain, Value, StackSlot };
7385   SDValue FIST = DAG.getMemIntrinsicNode(Opc, DL, DAG.getVTList(MVT::Other),
7386                                          Ops, 3, DstTy, MMO);
7387
7388   return std::make_pair(FIST, StackSlot);
7389 }
7390
7391 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op,
7392                                            SelectionDAG &DAG) const {
7393   if (Op.getValueType().isVector())
7394     return SDValue();
7395
7396   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
7397   SDValue FIST = Vals.first, StackSlot = Vals.second;
7398   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
7399   if (FIST.getNode() == 0) return Op;
7400
7401   // Load the result.
7402   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
7403                      FIST, StackSlot, MachinePointerInfo(), false, false, 0);
7404 }
7405
7406 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op,
7407                                            SelectionDAG &DAG) const {
7408   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
7409   SDValue FIST = Vals.first, StackSlot = Vals.second;
7410   assert(FIST.getNode() && "Unexpected failure");
7411
7412   // Load the result.
7413   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
7414                      FIST, StackSlot, MachinePointerInfo(), false, false, 0);
7415 }
7416
7417 SDValue X86TargetLowering::LowerFABS(SDValue Op,
7418                                      SelectionDAG &DAG) const {
7419   LLVMContext *Context = DAG.getContext();
7420   DebugLoc dl = Op.getDebugLoc();
7421   EVT VT = Op.getValueType();
7422   EVT EltVT = VT;
7423   if (VT.isVector())
7424     EltVT = VT.getVectorElementType();
7425   std::vector<Constant*> CV;
7426   if (EltVT == MVT::f64) {
7427     Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63))));
7428     CV.push_back(C);
7429     CV.push_back(C);
7430   } else {
7431     Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31))));
7432     CV.push_back(C);
7433     CV.push_back(C);
7434     CV.push_back(C);
7435     CV.push_back(C);
7436   }
7437   Constant *C = ConstantVector::get(CV);
7438   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
7439   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
7440                              MachinePointerInfo::getConstantPool(),
7441                              false, false, 16);
7442   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
7443 }
7444
7445 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) const {
7446   LLVMContext *Context = DAG.getContext();
7447   DebugLoc dl = Op.getDebugLoc();
7448   EVT VT = Op.getValueType();
7449   EVT EltVT = VT;
7450   if (VT.isVector())
7451     EltVT = VT.getVectorElementType();
7452   std::vector<Constant*> CV;
7453   if (EltVT == MVT::f64) {
7454     Constant *C = ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63)));
7455     CV.push_back(C);
7456     CV.push_back(C);
7457   } else {
7458     Constant *C = ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31)));
7459     CV.push_back(C);
7460     CV.push_back(C);
7461     CV.push_back(C);
7462     CV.push_back(C);
7463   }
7464   Constant *C = ConstantVector::get(CV);
7465   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
7466   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
7467                              MachinePointerInfo::getConstantPool(),
7468                              false, false, 16);
7469   if (VT.isVector()) {
7470     return DAG.getNode(ISD::BITCAST, dl, VT,
7471                        DAG.getNode(ISD::XOR, dl, MVT::v2i64,
7472                     DAG.getNode(ISD::BITCAST, dl, MVT::v2i64,
7473                                 Op.getOperand(0)),
7474                     DAG.getNode(ISD::BITCAST, dl, MVT::v2i64, Mask)));
7475   } else {
7476     return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
7477   }
7478 }
7479
7480 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) const {
7481   LLVMContext *Context = DAG.getContext();
7482   SDValue Op0 = Op.getOperand(0);
7483   SDValue Op1 = Op.getOperand(1);
7484   DebugLoc dl = Op.getDebugLoc();
7485   EVT VT = Op.getValueType();
7486   EVT SrcVT = Op1.getValueType();
7487
7488   // If second operand is smaller, extend it first.
7489   if (SrcVT.bitsLT(VT)) {
7490     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
7491     SrcVT = VT;
7492   }
7493   // And if it is bigger, shrink it first.
7494   if (SrcVT.bitsGT(VT)) {
7495     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
7496     SrcVT = VT;
7497   }
7498
7499   // At this point the operands and the result should have the same
7500   // type, and that won't be f80 since that is not custom lowered.
7501
7502   // First get the sign bit of second operand.
7503   std::vector<Constant*> CV;
7504   if (SrcVT == MVT::f64) {
7505     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 1ULL << 63))));
7506     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
7507   } else {
7508     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 1U << 31))));
7509     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7510     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7511     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7512   }
7513   Constant *C = ConstantVector::get(CV);
7514   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
7515   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
7516                               MachinePointerInfo::getConstantPool(),
7517                               false, false, 16);
7518   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
7519
7520   // Shift sign bit right or left if the two operands have different types.
7521   if (SrcVT.bitsGT(VT)) {
7522     // Op0 is MVT::f32, Op1 is MVT::f64.
7523     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
7524     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
7525                           DAG.getConstant(32, MVT::i32));
7526     SignBit = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, SignBit);
7527     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
7528                           DAG.getIntPtrConstant(0));
7529   }
7530
7531   // Clear first operand sign bit.
7532   CV.clear();
7533   if (VT == MVT::f64) {
7534     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, ~(1ULL << 63)))));
7535     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(64, 0))));
7536   } else {
7537     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, ~(1U << 31)))));
7538     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7539     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7540     CV.push_back(ConstantFP::get(*Context, APFloat(APInt(32, 0))));
7541   }
7542   C = ConstantVector::get(CV);
7543   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
7544   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
7545                               MachinePointerInfo::getConstantPool(),
7546                               false, false, 16);
7547   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
7548
7549   // Or the value with the sign bit.
7550   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
7551 }
7552
7553 SDValue X86TargetLowering::LowerFGETSIGN(SDValue Op, SelectionDAG &DAG) const {
7554   SDValue N0 = Op.getOperand(0);
7555   DebugLoc dl = Op.getDebugLoc();
7556   EVT VT = Op.getValueType();
7557
7558   // Lower ISD::FGETSIGN to (AND (X86ISD::FGETSIGNx86 ...) 1).
7559   SDValue xFGETSIGN = DAG.getNode(X86ISD::FGETSIGNx86, dl, VT, N0,
7560                                   DAG.getConstant(1, VT));
7561   return DAG.getNode(ISD::AND, dl, VT, xFGETSIGN, DAG.getConstant(1, VT));
7562 }
7563
7564 /// Emit nodes that will be selected as "test Op0,Op0", or something
7565 /// equivalent.
7566 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
7567                                     SelectionDAG &DAG) const {
7568   DebugLoc dl = Op.getDebugLoc();
7569
7570   // CF and OF aren't always set the way we want. Determine which
7571   // of these we need.
7572   bool NeedCF = false;
7573   bool NeedOF = false;
7574   switch (X86CC) {
7575   default: break;
7576   case X86::COND_A: case X86::COND_AE:
7577   case X86::COND_B: case X86::COND_BE:
7578     NeedCF = true;
7579     break;
7580   case X86::COND_G: case X86::COND_GE:
7581   case X86::COND_L: case X86::COND_LE:
7582   case X86::COND_O: case X86::COND_NO:
7583     NeedOF = true;
7584     break;
7585   }
7586
7587   // See if we can use the EFLAGS value from the operand instead of
7588   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
7589   // we prove that the arithmetic won't overflow, we can't use OF or CF.
7590   if (Op.getResNo() != 0 || NeedOF || NeedCF)
7591     // Emit a CMP with 0, which is the TEST pattern.
7592     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7593                        DAG.getConstant(0, Op.getValueType()));
7594
7595   unsigned Opcode = 0;
7596   unsigned NumOperands = 0;
7597   switch (Op.getNode()->getOpcode()) {
7598   case ISD::ADD:
7599     // Due to an isel shortcoming, be conservative if this add is likely to be
7600     // selected as part of a load-modify-store instruction. When the root node
7601     // in a match is a store, isel doesn't know how to remap non-chain non-flag
7602     // uses of other nodes in the match, such as the ADD in this case. This
7603     // leads to the ADD being left around and reselected, with the result being
7604     // two adds in the output.  Alas, even if none our users are stores, that
7605     // doesn't prove we're O.K.  Ergo, if we have any parents that aren't
7606     // CopyToReg or SETCC, eschew INC/DEC.  A better fix seems to require
7607     // climbing the DAG back to the root, and it doesn't seem to be worth the
7608     // effort.
7609     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7610            UE = Op.getNode()->use_end(); UI != UE; ++UI)
7611       if (UI->getOpcode() != ISD::CopyToReg && UI->getOpcode() != ISD::SETCC)
7612         goto default_case;
7613
7614     if (ConstantSDNode *C =
7615         dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
7616       // An add of one will be selected as an INC.
7617       if (C->getAPIntValue() == 1) {
7618         Opcode = X86ISD::INC;
7619         NumOperands = 1;
7620         break;
7621       }
7622
7623       // An add of negative one (subtract of one) will be selected as a DEC.
7624       if (C->getAPIntValue().isAllOnesValue()) {
7625         Opcode = X86ISD::DEC;
7626         NumOperands = 1;
7627         break;
7628       }
7629     }
7630
7631     // Otherwise use a regular EFLAGS-setting add.
7632     Opcode = X86ISD::ADD;
7633     NumOperands = 2;
7634     break;
7635   case ISD::AND: {
7636     // If the primary and result isn't used, don't bother using X86ISD::AND,
7637     // because a TEST instruction will be better.
7638     bool NonFlagUse = false;
7639     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7640            UE = Op.getNode()->use_end(); UI != UE; ++UI) {
7641       SDNode *User = *UI;
7642       unsigned UOpNo = UI.getOperandNo();
7643       if (User->getOpcode() == ISD::TRUNCATE && User->hasOneUse()) {
7644         // Look pass truncate.
7645         UOpNo = User->use_begin().getOperandNo();
7646         User = *User->use_begin();
7647       }
7648
7649       if (User->getOpcode() != ISD::BRCOND &&
7650           User->getOpcode() != ISD::SETCC &&
7651           (User->getOpcode() != ISD::SELECT || UOpNo != 0)) {
7652         NonFlagUse = true;
7653         break;
7654       }
7655     }
7656
7657     if (!NonFlagUse)
7658       break;
7659   }
7660     // FALL THROUGH
7661   case ISD::SUB:
7662   case ISD::OR:
7663   case ISD::XOR:
7664     // Due to the ISEL shortcoming noted above, be conservative if this op is
7665     // likely to be selected as part of a load-modify-store instruction.
7666     for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
7667            UE = Op.getNode()->use_end(); UI != UE; ++UI)
7668       if (UI->getOpcode() == ISD::STORE)
7669         goto default_case;
7670
7671     // Otherwise use a regular EFLAGS-setting instruction.
7672     switch (Op.getNode()->getOpcode()) {
7673     default: llvm_unreachable("unexpected operator!");
7674     case ISD::SUB: Opcode = X86ISD::SUB; break;
7675     case ISD::OR:  Opcode = X86ISD::OR;  break;
7676     case ISD::XOR: Opcode = X86ISD::XOR; break;
7677     case ISD::AND: Opcode = X86ISD::AND; break;
7678     }
7679
7680     NumOperands = 2;
7681     break;
7682   case X86ISD::ADD:
7683   case X86ISD::SUB:
7684   case X86ISD::INC:
7685   case X86ISD::DEC:
7686   case X86ISD::OR:
7687   case X86ISD::XOR:
7688   case X86ISD::AND:
7689     return SDValue(Op.getNode(), 1);
7690   default:
7691   default_case:
7692     break;
7693   }
7694
7695   if (Opcode == 0)
7696     // Emit a CMP with 0, which is the TEST pattern.
7697     return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
7698                        DAG.getConstant(0, Op.getValueType()));
7699
7700   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
7701   SmallVector<SDValue, 4> Ops;
7702   for (unsigned i = 0; i != NumOperands; ++i)
7703     Ops.push_back(Op.getOperand(i));
7704
7705   SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
7706   DAG.ReplaceAllUsesWith(Op, New);
7707   return SDValue(New.getNode(), 1);
7708 }
7709
7710 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
7711 /// equivalent.
7712 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
7713                                    SelectionDAG &DAG) const {
7714   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
7715     if (C->getAPIntValue() == 0)
7716       return EmitTest(Op0, X86CC, DAG);
7717
7718   DebugLoc dl = Op0.getDebugLoc();
7719   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
7720 }
7721
7722 /// LowerToBT - Result of 'and' is compared against zero. Turn it into a BT node
7723 /// if it's possible.
7724 SDValue X86TargetLowering::LowerToBT(SDValue And, ISD::CondCode CC,
7725                                      DebugLoc dl, SelectionDAG &DAG) const {
7726   SDValue Op0 = And.getOperand(0);
7727   SDValue Op1 = And.getOperand(1);
7728   if (Op0.getOpcode() == ISD::TRUNCATE)
7729     Op0 = Op0.getOperand(0);
7730   if (Op1.getOpcode() == ISD::TRUNCATE)
7731     Op1 = Op1.getOperand(0);
7732
7733   SDValue LHS, RHS;
7734   if (Op1.getOpcode() == ISD::SHL)
7735     std::swap(Op0, Op1);
7736   if (Op0.getOpcode() == ISD::SHL) {
7737     if (ConstantSDNode *And00C = dyn_cast<ConstantSDNode>(Op0.getOperand(0)))
7738       if (And00C->getZExtValue() == 1) {
7739         // If we looked past a truncate, check that it's only truncating away
7740         // known zeros.
7741         unsigned BitWidth = Op0.getValueSizeInBits();
7742         unsigned AndBitWidth = And.getValueSizeInBits();
7743         if (BitWidth > AndBitWidth) {
7744           APInt Mask = APInt::getAllOnesValue(BitWidth), Zeros, Ones;
7745           DAG.ComputeMaskedBits(Op0, Mask, Zeros, Ones);
7746           if (Zeros.countLeadingOnes() < BitWidth - AndBitWidth)
7747             return SDValue();
7748         }
7749         LHS = Op1;
7750         RHS = Op0.getOperand(1);
7751       }
7752   } else if (Op1.getOpcode() == ISD::Constant) {
7753     ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op1);
7754     SDValue AndLHS = Op0;
7755     if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
7756       LHS = AndLHS.getOperand(0);
7757       RHS = AndLHS.getOperand(1);
7758     }
7759   }
7760
7761   if (LHS.getNode()) {
7762     // If LHS is i8, promote it to i32 with any_extend.  There is no i8 BT
7763     // instruction.  Since the shift amount is in-range-or-undefined, we know
7764     // that doing a bittest on the i32 value is ok.  We extend to i32 because
7765     // the encoding for the i16 version is larger than the i32 version.
7766     // Also promote i16 to i32 for performance / code size reason.
7767     if (LHS.getValueType() == MVT::i8 ||
7768         LHS.getValueType() == MVT::i16)
7769       LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
7770
7771     // If the operand types disagree, extend the shift amount to match.  Since
7772     // BT ignores high bits (like shifts) we can use anyextend.
7773     if (LHS.getValueType() != RHS.getValueType())
7774       RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
7775
7776     SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
7777     unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
7778     return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7779                        DAG.getConstant(Cond, MVT::i8), BT);
7780   }
7781
7782   return SDValue();
7783 }
7784
7785 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) const {
7786   assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
7787   SDValue Op0 = Op.getOperand(0);
7788   SDValue Op1 = Op.getOperand(1);
7789   DebugLoc dl = Op.getDebugLoc();
7790   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
7791
7792   // Optimize to BT if possible.
7793   // Lower (X & (1 << N)) == 0 to BT(X, N).
7794   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
7795   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
7796   if (Op0.getOpcode() == ISD::AND && Op0.hasOneUse() &&
7797       Op1.getOpcode() == ISD::Constant &&
7798       cast<ConstantSDNode>(Op1)->isNullValue() &&
7799       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7800     SDValue NewSetCC = LowerToBT(Op0, CC, dl, DAG);
7801     if (NewSetCC.getNode())
7802       return NewSetCC;
7803   }
7804
7805   // Look for X == 0, X == 1, X != 0, or X != 1.  We can simplify some forms of
7806   // these.
7807   if (Op1.getOpcode() == ISD::Constant &&
7808       (cast<ConstantSDNode>(Op1)->getZExtValue() == 1 ||
7809        cast<ConstantSDNode>(Op1)->isNullValue()) &&
7810       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
7811
7812     // If the input is a setcc, then reuse the input setcc or use a new one with
7813     // the inverted condition.
7814     if (Op0.getOpcode() == X86ISD::SETCC) {
7815       X86::CondCode CCode = (X86::CondCode)Op0.getConstantOperandVal(0);
7816       bool Invert = (CC == ISD::SETNE) ^
7817         cast<ConstantSDNode>(Op1)->isNullValue();
7818       if (!Invert) return Op0;
7819
7820       CCode = X86::GetOppositeBranchCondition(CCode);
7821       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7822                          DAG.getConstant(CCode, MVT::i8), Op0.getOperand(1));
7823     }
7824   }
7825
7826   bool isFP = Op1.getValueType().isFloatingPoint();
7827   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
7828   if (X86CC == X86::COND_INVALID)
7829     return SDValue();
7830
7831   SDValue EFLAGS = EmitCmp(Op0, Op1, X86CC, DAG);
7832   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
7833                      DAG.getConstant(X86CC, MVT::i8), EFLAGS);
7834 }
7835
7836 SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) const {
7837   SDValue Cond;
7838   SDValue Op0 = Op.getOperand(0);
7839   SDValue Op1 = Op.getOperand(1);
7840   SDValue CC = Op.getOperand(2);
7841   EVT VT = Op.getValueType();
7842   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
7843   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
7844   DebugLoc dl = Op.getDebugLoc();
7845
7846   if (isFP) {
7847     unsigned SSECC = 8;
7848     EVT VT0 = Op0.getValueType();
7849     assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
7850     unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
7851     bool Swap = false;
7852
7853     switch (SetCCOpcode) {
7854     default: break;
7855     case ISD::SETOEQ:
7856     case ISD::SETEQ:  SSECC = 0; break;
7857     case ISD::SETOGT:
7858     case ISD::SETGT: Swap = true; // Fallthrough
7859     case ISD::SETLT:
7860     case ISD::SETOLT: SSECC = 1; break;
7861     case ISD::SETOGE:
7862     case ISD::SETGE: Swap = true; // Fallthrough
7863     case ISD::SETLE:
7864     case ISD::SETOLE: SSECC = 2; break;
7865     case ISD::SETUO:  SSECC = 3; break;
7866     case ISD::SETUNE:
7867     case ISD::SETNE:  SSECC = 4; break;
7868     case ISD::SETULE: Swap = true;
7869     case ISD::SETUGE: SSECC = 5; break;
7870     case ISD::SETULT: Swap = true;
7871     case ISD::SETUGT: SSECC = 6; break;
7872     case ISD::SETO:   SSECC = 7; break;
7873     }
7874     if (Swap)
7875       std::swap(Op0, Op1);
7876
7877     // In the two special cases we can't handle, emit two comparisons.
7878     if (SSECC == 8) {
7879       if (SetCCOpcode == ISD::SETUEQ) {
7880         SDValue UNORD, EQ;
7881         UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
7882         EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
7883         return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
7884       }
7885       else if (SetCCOpcode == ISD::SETONE) {
7886         SDValue ORD, NEQ;
7887         ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
7888         NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
7889         return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
7890       }
7891       llvm_unreachable("Illegal FP comparison");
7892     }
7893     // Handle all other FP comparisons here.
7894     return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
7895   }
7896
7897   // We are handling one of the integer comparisons here.  Since SSE only has
7898   // GT and EQ comparisons for integer, swapping operands and multiple
7899   // operations may be required for some comparisons.
7900   unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
7901   bool Swap = false, Invert = false, FlipSigns = false;
7902
7903   switch (VT.getSimpleVT().SimpleTy) {
7904   default: break;
7905   case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
7906   case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
7907   case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
7908   case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
7909   }
7910
7911   switch (SetCCOpcode) {
7912   default: break;
7913   case ISD::SETNE:  Invert = true;
7914   case ISD::SETEQ:  Opc = EQOpc; break;
7915   case ISD::SETLT:  Swap = true;
7916   case ISD::SETGT:  Opc = GTOpc; break;
7917   case ISD::SETGE:  Swap = true;
7918   case ISD::SETLE:  Opc = GTOpc; Invert = true; break;
7919   case ISD::SETULT: Swap = true;
7920   case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
7921   case ISD::SETUGE: Swap = true;
7922   case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
7923   }
7924   if (Swap)
7925     std::swap(Op0, Op1);
7926
7927   // Since SSE has no unsigned integer comparisons, we need to flip  the sign
7928   // bits of the inputs before performing those operations.
7929   if (FlipSigns) {
7930     EVT EltVT = VT.getVectorElementType();
7931     SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
7932                                       EltVT);
7933     std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
7934     SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
7935                                     SignBits.size());
7936     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
7937     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
7938   }
7939
7940   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
7941
7942   // If the logical-not of the result is required, perform that now.
7943   if (Invert)
7944     Result = DAG.getNOT(dl, Result, VT);
7945
7946   return Result;
7947 }
7948
7949 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
7950 static bool isX86LogicalCmp(SDValue Op) {
7951   unsigned Opc = Op.getNode()->getOpcode();
7952   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
7953     return true;
7954   if (Op.getResNo() == 1 &&
7955       (Opc == X86ISD::ADD ||
7956        Opc == X86ISD::SUB ||
7957        Opc == X86ISD::ADC ||
7958        Opc == X86ISD::SBB ||
7959        Opc == X86ISD::SMUL ||
7960        Opc == X86ISD::UMUL ||
7961        Opc == X86ISD::INC ||
7962        Opc == X86ISD::DEC ||
7963        Opc == X86ISD::OR ||
7964        Opc == X86ISD::XOR ||
7965        Opc == X86ISD::AND))
7966     return true;
7967
7968   if (Op.getResNo() == 2 && Opc == X86ISD::UMUL)
7969     return true;
7970
7971   return false;
7972 }
7973
7974 static bool isZero(SDValue V) {
7975   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7976   return C && C->isNullValue();
7977 }
7978
7979 static bool isAllOnes(SDValue V) {
7980   ConstantSDNode *C = dyn_cast<ConstantSDNode>(V);
7981   return C && C->isAllOnesValue();
7982 }
7983
7984 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) const {
7985   bool addTest = true;
7986   SDValue Cond  = Op.getOperand(0);
7987   SDValue Op1 = Op.getOperand(1);
7988   SDValue Op2 = Op.getOperand(2);
7989   DebugLoc DL = Op.getDebugLoc();
7990   SDValue CC;
7991
7992   if (Cond.getOpcode() == ISD::SETCC) {
7993     SDValue NewCond = LowerSETCC(Cond, DAG);
7994     if (NewCond.getNode())
7995       Cond = NewCond;
7996   }
7997
7998   // (select (x == 0), -1, y) -> (sign_bit (x - 1)) | y
7999   // (select (x == 0), y, -1) -> ~(sign_bit (x - 1)) | y
8000   // (select (x != 0), y, -1) -> (sign_bit (x - 1)) | y
8001   // (select (x != 0), -1, y) -> ~(sign_bit (x - 1)) | y
8002   if (Cond.getOpcode() == X86ISD::SETCC &&
8003       Cond.getOperand(1).getOpcode() == X86ISD::CMP &&
8004       isZero(Cond.getOperand(1).getOperand(1))) {
8005     SDValue Cmp = Cond.getOperand(1);
8006
8007     unsigned CondCode =cast<ConstantSDNode>(Cond.getOperand(0))->getZExtValue();
8008
8009     if ((isAllOnes(Op1) || isAllOnes(Op2)) &&
8010         (CondCode == X86::COND_E || CondCode == X86::COND_NE)) {
8011       SDValue Y = isAllOnes(Op2) ? Op1 : Op2;
8012
8013       SDValue CmpOp0 = Cmp.getOperand(0);
8014       Cmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32,
8015                         CmpOp0, DAG.getConstant(1, CmpOp0.getValueType()));
8016
8017       SDValue Res =   // Res = 0 or -1.
8018         DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8019                     DAG.getConstant(X86::COND_B, MVT::i8), Cmp);
8020
8021       if (isAllOnes(Op1) != (CondCode == X86::COND_E))
8022         Res = DAG.getNOT(DL, Res, Res.getValueType());
8023
8024       ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(Op2);
8025       if (N2C == 0 || !N2C->isNullValue())
8026         Res = DAG.getNode(ISD::OR, DL, Res.getValueType(), Res, Y);
8027       return Res;
8028     }
8029   }
8030
8031   // Look past (and (setcc_carry (cmp ...)), 1).
8032   if (Cond.getOpcode() == ISD::AND &&
8033       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8034     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
8035     if (C && C->getAPIntValue() == 1)
8036       Cond = Cond.getOperand(0);
8037   }
8038
8039   // If condition flag is set by a X86ISD::CMP, then use it as the condition
8040   // setting operand in place of the X86ISD::SETCC.
8041   if (Cond.getOpcode() == X86ISD::SETCC ||
8042       Cond.getOpcode() == X86ISD::SETCC_CARRY) {
8043     CC = Cond.getOperand(0);
8044
8045     SDValue Cmp = Cond.getOperand(1);
8046     unsigned Opc = Cmp.getOpcode();
8047     EVT VT = Op.getValueType();
8048
8049     bool IllegalFPCMov = false;
8050     if (VT.isFloatingPoint() && !VT.isVector() &&
8051         !isScalarFPTypeInSSEReg(VT))  // FPStack?
8052       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
8053
8054     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
8055         Opc == X86ISD::BT) { // FIXME
8056       Cond = Cmp;
8057       addTest = false;
8058     }
8059   }
8060
8061   if (addTest) {
8062     // Look pass the truncate.
8063     if (Cond.getOpcode() == ISD::TRUNCATE)
8064       Cond = Cond.getOperand(0);
8065
8066     // We know the result of AND is compared against zero. Try to match
8067     // it to BT.
8068     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
8069       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, DL, DAG);
8070       if (NewSetCC.getNode()) {
8071         CC = NewSetCC.getOperand(0);
8072         Cond = NewSetCC.getOperand(1);
8073         addTest = false;
8074       }
8075     }
8076   }
8077
8078   if (addTest) {
8079     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8080     Cond = EmitTest(Cond, X86::COND_NE, DAG);
8081   }
8082
8083   // a <  b ? -1 :  0 -> RES = ~setcc_carry
8084   // a <  b ?  0 : -1 -> RES = setcc_carry
8085   // a >= b ? -1 :  0 -> RES = setcc_carry
8086   // a >= b ?  0 : -1 -> RES = ~setcc_carry
8087   if (Cond.getOpcode() == X86ISD::CMP) {
8088     unsigned CondCode = cast<ConstantSDNode>(CC)->getZExtValue();
8089
8090     if ((CondCode == X86::COND_AE || CondCode == X86::COND_B) &&
8091         (isAllOnes(Op1) || isAllOnes(Op2)) && (isZero(Op1) || isZero(Op2))) {
8092       SDValue Res = DAG.getNode(X86ISD::SETCC_CARRY, DL, Op.getValueType(),
8093                                 DAG.getConstant(X86::COND_B, MVT::i8), Cond);
8094       if (isAllOnes(Op1) != (CondCode == X86::COND_B))
8095         return DAG.getNOT(DL, Res, Res.getValueType());
8096       return Res;
8097     }
8098   }
8099
8100   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
8101   // condition is true.
8102   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Glue);
8103   SDValue Ops[] = { Op2, Op1, CC, Cond };
8104   return DAG.getNode(X86ISD::CMOV, DL, VTs, Ops, array_lengthof(Ops));
8105 }
8106
8107 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
8108 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
8109 // from the AND / OR.
8110 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
8111   Opc = Op.getOpcode();
8112   if (Opc != ISD::OR && Opc != ISD::AND)
8113     return false;
8114   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8115           Op.getOperand(0).hasOneUse() &&
8116           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
8117           Op.getOperand(1).hasOneUse());
8118 }
8119
8120 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
8121 // 1 and that the SETCC node has a single use.
8122 static bool isXor1OfSetCC(SDValue Op) {
8123   if (Op.getOpcode() != ISD::XOR)
8124     return false;
8125   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
8126   if (N1C && N1C->getAPIntValue() == 1) {
8127     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
8128       Op.getOperand(0).hasOneUse();
8129   }
8130   return false;
8131 }
8132
8133 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) const {
8134   bool addTest = true;
8135   SDValue Chain = Op.getOperand(0);
8136   SDValue Cond  = Op.getOperand(1);
8137   SDValue Dest  = Op.getOperand(2);
8138   DebugLoc dl = Op.getDebugLoc();
8139   SDValue CC;
8140
8141   if (Cond.getOpcode() == ISD::SETCC) {
8142     SDValue NewCond = LowerSETCC(Cond, DAG);
8143     if (NewCond.getNode())
8144       Cond = NewCond;
8145   }
8146 #if 0
8147   // FIXME: LowerXALUO doesn't handle these!!
8148   else if (Cond.getOpcode() == X86ISD::ADD  ||
8149            Cond.getOpcode() == X86ISD::SUB  ||
8150            Cond.getOpcode() == X86ISD::SMUL ||
8151            Cond.getOpcode() == X86ISD::UMUL)
8152     Cond = LowerXALUO(Cond, DAG);
8153 #endif
8154
8155   // Look pass (and (setcc_carry (cmp ...)), 1).
8156   if (Cond.getOpcode() == ISD::AND &&
8157       Cond.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY) {
8158     ConstantSDNode *C = dyn_cast<ConstantSDNode>(Cond.getOperand(1));
8159     if (C && C->getAPIntValue() == 1)
8160       Cond = Cond.getOperand(0);
8161   }
8162
8163   // If condition flag is set by a X86ISD::CMP, then use it as the condition
8164   // setting operand in place of the X86ISD::SETCC.
8165   if (Cond.getOpcode() == X86ISD::SETCC ||
8166       Cond.getOpcode() == X86ISD::SETCC_CARRY) {
8167     CC = Cond.getOperand(0);
8168
8169     SDValue Cmp = Cond.getOperand(1);
8170     unsigned Opc = Cmp.getOpcode();
8171     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
8172     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
8173       Cond = Cmp;
8174       addTest = false;
8175     } else {
8176       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
8177       default: break;
8178       case X86::COND_O:
8179       case X86::COND_B:
8180         // These can only come from an arithmetic instruction with overflow,
8181         // e.g. SADDO, UADDO.
8182         Cond = Cond.getNode()->getOperand(1);
8183         addTest = false;
8184         break;
8185       }
8186     }
8187   } else {
8188     unsigned CondOpc;
8189     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
8190       SDValue Cmp = Cond.getOperand(0).getOperand(1);
8191       if (CondOpc == ISD::OR) {
8192         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
8193         // two branches instead of an explicit OR instruction with a
8194         // separate test.
8195         if (Cmp == Cond.getOperand(1).getOperand(1) &&
8196             isX86LogicalCmp(Cmp)) {
8197           CC = Cond.getOperand(0).getOperand(0);
8198           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
8199                               Chain, Dest, CC, Cmp);
8200           CC = Cond.getOperand(1).getOperand(0);
8201           Cond = Cmp;
8202           addTest = false;
8203         }
8204       } else { // ISD::AND
8205         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
8206         // two branches instead of an explicit AND instruction with a
8207         // separate test. However, we only do this if this block doesn't
8208         // have a fall-through edge, because this requires an explicit
8209         // jmp when the condition is false.
8210         if (Cmp == Cond.getOperand(1).getOperand(1) &&
8211             isX86LogicalCmp(Cmp) &&
8212             Op.getNode()->hasOneUse()) {
8213           X86::CondCode CCode =
8214             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8215           CCode = X86::GetOppositeBranchCondition(CCode);
8216           CC = DAG.getConstant(CCode, MVT::i8);
8217           SDNode *User = *Op.getNode()->use_begin();
8218           // Look for an unconditional branch following this conditional branch.
8219           // We need this because we need to reverse the successors in order
8220           // to implement FCMP_OEQ.
8221           if (User->getOpcode() == ISD::BR) {
8222             SDValue FalseBB = User->getOperand(1);
8223             SDNode *NewBR =
8224               DAG.UpdateNodeOperands(User, User->getOperand(0), Dest);
8225             assert(NewBR == User);
8226             (void)NewBR;
8227             Dest = FalseBB;
8228
8229             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
8230                                 Chain, Dest, CC, Cmp);
8231             X86::CondCode CCode =
8232               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
8233             CCode = X86::GetOppositeBranchCondition(CCode);
8234             CC = DAG.getConstant(CCode, MVT::i8);
8235             Cond = Cmp;
8236             addTest = false;
8237           }
8238         }
8239       }
8240     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
8241       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
8242       // It should be transformed during dag combiner except when the condition
8243       // is set by a arithmetics with overflow node.
8244       X86::CondCode CCode =
8245         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
8246       CCode = X86::GetOppositeBranchCondition(CCode);
8247       CC = DAG.getConstant(CCode, MVT::i8);
8248       Cond = Cond.getOperand(0).getOperand(1);
8249       addTest = false;
8250     }
8251   }
8252
8253   if (addTest) {
8254     // Look pass the truncate.
8255     if (Cond.getOpcode() == ISD::TRUNCATE)
8256       Cond = Cond.getOperand(0);
8257
8258     // We know the result of AND is compared against zero. Try to match
8259     // it to BT.
8260     if (Cond.getOpcode() == ISD::AND && Cond.hasOneUse()) {
8261       SDValue NewSetCC = LowerToBT(Cond, ISD::SETNE, dl, DAG);
8262       if (NewSetCC.getNode()) {
8263         CC = NewSetCC.getOperand(0);
8264         Cond = NewSetCC.getOperand(1);
8265         addTest = false;
8266       }
8267     }
8268   }
8269
8270   if (addTest) {
8271     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
8272     Cond = EmitTest(Cond, X86::COND_NE, DAG);
8273   }
8274   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
8275                      Chain, Dest, CC, Cond);
8276 }
8277
8278
8279 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
8280 // Calls to _alloca is needed to probe the stack when allocating more than 4k
8281 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
8282 // that the guard pages used by the OS virtual memory manager are allocated in
8283 // correct sequence.
8284 SDValue
8285 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
8286                                            SelectionDAG &DAG) const {
8287   assert((Subtarget->isTargetCygMing() || Subtarget->isTargetWindows()) &&
8288          "This should be used only on Windows targets");
8289   assert(!Subtarget->isTargetEnvMacho());
8290   DebugLoc dl = Op.getDebugLoc();
8291
8292   // Get the inputs.
8293   SDValue Chain = Op.getOperand(0);
8294   SDValue Size  = Op.getOperand(1);
8295   // FIXME: Ensure alignment here
8296
8297   SDValue Flag;
8298
8299   EVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
8300   unsigned Reg = (Subtarget->is64Bit() ? X86::RAX : X86::EAX);
8301
8302   Chain = DAG.getCopyToReg(Chain, dl, Reg, Size, Flag);
8303   Flag = Chain.getValue(1);
8304
8305   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Glue);
8306
8307   Chain = DAG.getNode(X86ISD::WIN_ALLOCA, dl, NodeTys, Chain, Flag);
8308   Flag = Chain.getValue(1);
8309
8310   Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
8311
8312   SDValue Ops1[2] = { Chain.getValue(0), Chain };
8313   return DAG.getMergeValues(Ops1, 2, dl);
8314 }
8315
8316 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) const {
8317   MachineFunction &MF = DAG.getMachineFunction();
8318   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
8319
8320   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8321   DebugLoc DL = Op.getDebugLoc();
8322
8323   if (!Subtarget->is64Bit() || Subtarget->isTargetWin64()) {
8324     // vastart just stores the address of the VarArgsFrameIndex slot into the
8325     // memory location argument.
8326     SDValue FR = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8327                                    getPointerTy());
8328     return DAG.getStore(Op.getOperand(0), DL, FR, Op.getOperand(1),
8329                         MachinePointerInfo(SV), false, false, 0);
8330   }
8331
8332   // __va_list_tag:
8333   //   gp_offset         (0 - 6 * 8)
8334   //   fp_offset         (48 - 48 + 8 * 16)
8335   //   overflow_arg_area (point to parameters coming in memory).
8336   //   reg_save_area
8337   SmallVector<SDValue, 8> MemOps;
8338   SDValue FIN = Op.getOperand(1);
8339   // Store gp_offset
8340   SDValue Store = DAG.getStore(Op.getOperand(0), DL,
8341                                DAG.getConstant(FuncInfo->getVarArgsGPOffset(),
8342                                                MVT::i32),
8343                                FIN, MachinePointerInfo(SV), false, false, 0);
8344   MemOps.push_back(Store);
8345
8346   // Store fp_offset
8347   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8348                     FIN, DAG.getIntPtrConstant(4));
8349   Store = DAG.getStore(Op.getOperand(0), DL,
8350                        DAG.getConstant(FuncInfo->getVarArgsFPOffset(),
8351                                        MVT::i32),
8352                        FIN, MachinePointerInfo(SV, 4), false, false, 0);
8353   MemOps.push_back(Store);
8354
8355   // Store ptr to overflow_arg_area
8356   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8357                     FIN, DAG.getIntPtrConstant(4));
8358   SDValue OVFIN = DAG.getFrameIndex(FuncInfo->getVarArgsFrameIndex(),
8359                                     getPointerTy());
8360   Store = DAG.getStore(Op.getOperand(0), DL, OVFIN, FIN,
8361                        MachinePointerInfo(SV, 8),
8362                        false, false, 0);
8363   MemOps.push_back(Store);
8364
8365   // Store ptr to reg_save_area.
8366   FIN = DAG.getNode(ISD::ADD, DL, getPointerTy(),
8367                     FIN, DAG.getIntPtrConstant(8));
8368   SDValue RSFIN = DAG.getFrameIndex(FuncInfo->getRegSaveFrameIndex(),
8369                                     getPointerTy());
8370   Store = DAG.getStore(Op.getOperand(0), DL, RSFIN, FIN,
8371                        MachinePointerInfo(SV, 16), false, false, 0);
8372   MemOps.push_back(Store);
8373   return DAG.getNode(ISD::TokenFactor, DL, MVT::Other,
8374                      &MemOps[0], MemOps.size());
8375 }
8376
8377 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) const {
8378   assert(Subtarget->is64Bit() &&
8379          "LowerVAARG only handles 64-bit va_arg!");
8380   assert((Subtarget->isTargetLinux() ||
8381           Subtarget->isTargetDarwin()) &&
8382           "Unhandled target in LowerVAARG");
8383   assert(Op.getNode()->getNumOperands() == 4);
8384   SDValue Chain = Op.getOperand(0);
8385   SDValue SrcPtr = Op.getOperand(1);
8386   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
8387   unsigned Align = Op.getConstantOperandVal(3);
8388   DebugLoc dl = Op.getDebugLoc();
8389
8390   EVT ArgVT = Op.getNode()->getValueType(0);
8391   Type *ArgTy = ArgVT.getTypeForEVT(*DAG.getContext());
8392   uint32_t ArgSize = getTargetData()->getTypeAllocSize(ArgTy);
8393   uint8_t ArgMode;
8394
8395   // Decide which area this value should be read from.
8396   // TODO: Implement the AMD64 ABI in its entirety. This simple
8397   // selection mechanism works only for the basic types.
8398   if (ArgVT == MVT::f80) {
8399     llvm_unreachable("va_arg for f80 not yet implemented");
8400   } else if (ArgVT.isFloatingPoint() && ArgSize <= 16 /*bytes*/) {
8401     ArgMode = 2;  // Argument passed in XMM register. Use fp_offset.
8402   } else if (ArgVT.isInteger() && ArgSize <= 32 /*bytes*/) {
8403     ArgMode = 1;  // Argument passed in GPR64 register(s). Use gp_offset.
8404   } else {
8405     llvm_unreachable("Unhandled argument type in LowerVAARG");
8406   }
8407
8408   if (ArgMode == 2) {
8409     // Sanity Check: Make sure using fp_offset makes sense.
8410     assert(!UseSoftFloat &&
8411            !(DAG.getMachineFunction()
8412                 .getFunction()->hasFnAttr(Attribute::NoImplicitFloat)) &&
8413            Subtarget->hasXMM());
8414   }
8415
8416   // Insert VAARG_64 node into the DAG
8417   // VAARG_64 returns two values: Variable Argument Address, Chain
8418   SmallVector<SDValue, 11> InstOps;
8419   InstOps.push_back(Chain);
8420   InstOps.push_back(SrcPtr);
8421   InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32));
8422   InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8));
8423   InstOps.push_back(DAG.getConstant(Align, MVT::i32));
8424   SDVTList VTs = DAG.getVTList(getPointerTy(), MVT::Other);
8425   SDValue VAARG = DAG.getMemIntrinsicNode(X86ISD::VAARG_64, dl,
8426                                           VTs, &InstOps[0], InstOps.size(),
8427                                           MVT::i64,
8428                                           MachinePointerInfo(SV),
8429                                           /*Align=*/0,
8430                                           /*Volatile=*/false,
8431                                           /*ReadMem=*/true,
8432                                           /*WriteMem=*/true);
8433   Chain = VAARG.getValue(1);
8434
8435   // Load the next argument and return it
8436   return DAG.getLoad(ArgVT, dl,
8437                      Chain,
8438                      VAARG,
8439                      MachinePointerInfo(),
8440                      false, false, 0);
8441 }
8442
8443 SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) const {
8444   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
8445   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
8446   SDValue Chain = Op.getOperand(0);
8447   SDValue DstPtr = Op.getOperand(1);
8448   SDValue SrcPtr = Op.getOperand(2);
8449   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
8450   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
8451   DebugLoc DL = Op.getDebugLoc();
8452
8453   return DAG.getMemcpy(Chain, DL, DstPtr, SrcPtr,
8454                        DAG.getIntPtrConstant(24), 8, /*isVolatile*/false,
8455                        false,
8456                        MachinePointerInfo(DstSV), MachinePointerInfo(SrcSV));
8457 }
8458
8459 SDValue
8460 X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) const {
8461   DebugLoc dl = Op.getDebugLoc();
8462   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8463   switch (IntNo) {
8464   default: return SDValue();    // Don't custom lower most intrinsics.
8465   // Comparison intrinsics.
8466   case Intrinsic::x86_sse_comieq_ss:
8467   case Intrinsic::x86_sse_comilt_ss:
8468   case Intrinsic::x86_sse_comile_ss:
8469   case Intrinsic::x86_sse_comigt_ss:
8470   case Intrinsic::x86_sse_comige_ss:
8471   case Intrinsic::x86_sse_comineq_ss:
8472   case Intrinsic::x86_sse_ucomieq_ss:
8473   case Intrinsic::x86_sse_ucomilt_ss:
8474   case Intrinsic::x86_sse_ucomile_ss:
8475   case Intrinsic::x86_sse_ucomigt_ss:
8476   case Intrinsic::x86_sse_ucomige_ss:
8477   case Intrinsic::x86_sse_ucomineq_ss:
8478   case Intrinsic::x86_sse2_comieq_sd:
8479   case Intrinsic::x86_sse2_comilt_sd:
8480   case Intrinsic::x86_sse2_comile_sd:
8481   case Intrinsic::x86_sse2_comigt_sd:
8482   case Intrinsic::x86_sse2_comige_sd:
8483   case Intrinsic::x86_sse2_comineq_sd:
8484   case Intrinsic::x86_sse2_ucomieq_sd:
8485   case Intrinsic::x86_sse2_ucomilt_sd:
8486   case Intrinsic::x86_sse2_ucomile_sd:
8487   case Intrinsic::x86_sse2_ucomigt_sd:
8488   case Intrinsic::x86_sse2_ucomige_sd:
8489   case Intrinsic::x86_sse2_ucomineq_sd: {
8490     unsigned Opc = 0;
8491     ISD::CondCode CC = ISD::SETCC_INVALID;
8492     switch (IntNo) {
8493     default: break;
8494     case Intrinsic::x86_sse_comieq_ss:
8495     case Intrinsic::x86_sse2_comieq_sd:
8496       Opc = X86ISD::COMI;
8497       CC = ISD::SETEQ;
8498       break;
8499     case Intrinsic::x86_sse_comilt_ss:
8500     case Intrinsic::x86_sse2_comilt_sd:
8501       Opc = X86ISD::COMI;
8502       CC = ISD::SETLT;
8503       break;
8504     case Intrinsic::x86_sse_comile_ss:
8505     case Intrinsic::x86_sse2_comile_sd:
8506       Opc = X86ISD::COMI;
8507       CC = ISD::SETLE;
8508       break;
8509     case Intrinsic::x86_sse_comigt_ss:
8510     case Intrinsic::x86_sse2_comigt_sd:
8511       Opc = X86ISD::COMI;
8512       CC = ISD::SETGT;
8513       break;
8514     case Intrinsic::x86_sse_comige_ss:
8515     case Intrinsic::x86_sse2_comige_sd:
8516       Opc = X86ISD::COMI;
8517       CC = ISD::SETGE;
8518       break;
8519     case Intrinsic::x86_sse_comineq_ss:
8520     case Intrinsic::x86_sse2_comineq_sd:
8521       Opc = X86ISD::COMI;
8522       CC = ISD::SETNE;
8523       break;
8524     case Intrinsic::x86_sse_ucomieq_ss:
8525     case Intrinsic::x86_sse2_ucomieq_sd:
8526       Opc = X86ISD::UCOMI;
8527       CC = ISD::SETEQ;
8528       break;
8529     case Intrinsic::x86_sse_ucomilt_ss:
8530     case Intrinsic::x86_sse2_ucomilt_sd:
8531       Opc = X86ISD::UCOMI;
8532       CC = ISD::SETLT;
8533       break;
8534     case Intrinsic::x86_sse_ucomile_ss:
8535     case Intrinsic::x86_sse2_ucomile_sd:
8536       Opc = X86ISD::UCOMI;
8537       CC = ISD::SETLE;
8538       break;
8539     case Intrinsic::x86_sse_ucomigt_ss:
8540     case Intrinsic::x86_sse2_ucomigt_sd:
8541       Opc = X86ISD::UCOMI;
8542       CC = ISD::SETGT;
8543       break;
8544     case Intrinsic::x86_sse_ucomige_ss:
8545     case Intrinsic::x86_sse2_ucomige_sd:
8546       Opc = X86ISD::UCOMI;
8547       CC = ISD::SETGE;
8548       break;
8549     case Intrinsic::x86_sse_ucomineq_ss:
8550     case Intrinsic::x86_sse2_ucomineq_sd:
8551       Opc = X86ISD::UCOMI;
8552       CC = ISD::SETNE;
8553       break;
8554     }
8555
8556     SDValue LHS = Op.getOperand(1);
8557     SDValue RHS = Op.getOperand(2);
8558     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
8559     assert(X86CC != X86::COND_INVALID && "Unexpected illegal condition!");
8560     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
8561     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
8562                                 DAG.getConstant(X86CC, MVT::i8), Cond);
8563     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
8564   }
8565   // ptest and testp intrinsics. The intrinsic these come from are designed to
8566   // return an integer value, not just an instruction so lower it to the ptest
8567   // or testp pattern and a setcc for the result.
8568   case Intrinsic::x86_sse41_ptestz:
8569   case Intrinsic::x86_sse41_ptestc:
8570   case Intrinsic::x86_sse41_ptestnzc:
8571   case Intrinsic::x86_avx_ptestz_256:
8572   case Intrinsic::x86_avx_ptestc_256:
8573   case Intrinsic::x86_avx_ptestnzc_256:
8574   case Intrinsic::x86_avx_vtestz_ps:
8575   case Intrinsic::x86_avx_vtestc_ps:
8576   case Intrinsic::x86_avx_vtestnzc_ps:
8577   case Intrinsic::x86_avx_vtestz_pd:
8578   case Intrinsic::x86_avx_vtestc_pd:
8579   case Intrinsic::x86_avx_vtestnzc_pd:
8580   case Intrinsic::x86_avx_vtestz_ps_256:
8581   case Intrinsic::x86_avx_vtestc_ps_256:
8582   case Intrinsic::x86_avx_vtestnzc_ps_256:
8583   case Intrinsic::x86_avx_vtestz_pd_256:
8584   case Intrinsic::x86_avx_vtestc_pd_256:
8585   case Intrinsic::x86_avx_vtestnzc_pd_256: {
8586     bool IsTestPacked = false;
8587     unsigned X86CC = 0;
8588     switch (IntNo) {
8589     default: llvm_unreachable("Bad fallthrough in Intrinsic lowering.");
8590     case Intrinsic::x86_avx_vtestz_ps:
8591     case Intrinsic::x86_avx_vtestz_pd:
8592     case Intrinsic::x86_avx_vtestz_ps_256:
8593     case Intrinsic::x86_avx_vtestz_pd_256:
8594       IsTestPacked = true; // Fallthrough
8595     case Intrinsic::x86_sse41_ptestz:
8596     case Intrinsic::x86_avx_ptestz_256:
8597       // ZF = 1
8598       X86CC = X86::COND_E;
8599       break;
8600     case Intrinsic::x86_avx_vtestc_ps:
8601     case Intrinsic::x86_avx_vtestc_pd:
8602     case Intrinsic::x86_avx_vtestc_ps_256:
8603     case Intrinsic::x86_avx_vtestc_pd_256:
8604       IsTestPacked = true; // Fallthrough
8605     case Intrinsic::x86_sse41_ptestc:
8606     case Intrinsic::x86_avx_ptestc_256:
8607       // CF = 1
8608       X86CC = X86::COND_B;
8609       break;
8610     case Intrinsic::x86_avx_vtestnzc_ps:
8611     case Intrinsic::x86_avx_vtestnzc_pd:
8612     case Intrinsic::x86_avx_vtestnzc_ps_256:
8613     case Intrinsic::x86_avx_vtestnzc_pd_256:
8614       IsTestPacked = true; // Fallthrough
8615     case Intrinsic::x86_sse41_ptestnzc:
8616     case Intrinsic::x86_avx_ptestnzc_256:
8617       // ZF and CF = 0
8618       X86CC = X86::COND_A;
8619       break;
8620     }
8621
8622     SDValue LHS = Op.getOperand(1);
8623     SDValue RHS = Op.getOperand(2);
8624     unsigned TestOpc = IsTestPacked ? X86ISD::TESTP : X86ISD::PTEST;
8625     SDValue Test = DAG.getNode(TestOpc, dl, MVT::i32, LHS, RHS);
8626     SDValue CC = DAG.getConstant(X86CC, MVT::i8);
8627     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8, CC, Test);
8628     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
8629   }
8630
8631   // Fix vector shift instructions where the last operand is a non-immediate
8632   // i32 value.
8633   case Intrinsic::x86_sse2_pslli_w:
8634   case Intrinsic::x86_sse2_pslli_d:
8635   case Intrinsic::x86_sse2_pslli_q:
8636   case Intrinsic::x86_sse2_psrli_w:
8637   case Intrinsic::x86_sse2_psrli_d:
8638   case Intrinsic::x86_sse2_psrli_q:
8639   case Intrinsic::x86_sse2_psrai_w:
8640   case Intrinsic::x86_sse2_psrai_d:
8641   case Intrinsic::x86_mmx_pslli_w:
8642   case Intrinsic::x86_mmx_pslli_d:
8643   case Intrinsic::x86_mmx_pslli_q:
8644   case Intrinsic::x86_mmx_psrli_w:
8645   case Intrinsic::x86_mmx_psrli_d:
8646   case Intrinsic::x86_mmx_psrli_q:
8647   case Intrinsic::x86_mmx_psrai_w:
8648   case Intrinsic::x86_mmx_psrai_d: {
8649     SDValue ShAmt = Op.getOperand(2);
8650     if (isa<ConstantSDNode>(ShAmt))
8651       return SDValue();
8652
8653     unsigned NewIntNo = 0;
8654     EVT ShAmtVT = MVT::v4i32;
8655     switch (IntNo) {
8656     case Intrinsic::x86_sse2_pslli_w:
8657       NewIntNo = Intrinsic::x86_sse2_psll_w;
8658       break;
8659     case Intrinsic::x86_sse2_pslli_d:
8660       NewIntNo = Intrinsic::x86_sse2_psll_d;
8661       break;
8662     case Intrinsic::x86_sse2_pslli_q:
8663       NewIntNo = Intrinsic::x86_sse2_psll_q;
8664       break;
8665     case Intrinsic::x86_sse2_psrli_w:
8666       NewIntNo = Intrinsic::x86_sse2_psrl_w;
8667       break;
8668     case Intrinsic::x86_sse2_psrli_d:
8669       NewIntNo = Intrinsic::x86_sse2_psrl_d;
8670       break;
8671     case Intrinsic::x86_sse2_psrli_q:
8672       NewIntNo = Intrinsic::x86_sse2_psrl_q;
8673       break;
8674     case Intrinsic::x86_sse2_psrai_w:
8675       NewIntNo = Intrinsic::x86_sse2_psra_w;
8676       break;
8677     case Intrinsic::x86_sse2_psrai_d:
8678       NewIntNo = Intrinsic::x86_sse2_psra_d;
8679       break;
8680     default: {
8681       ShAmtVT = MVT::v2i32;
8682       switch (IntNo) {
8683       case Intrinsic::x86_mmx_pslli_w:
8684         NewIntNo = Intrinsic::x86_mmx_psll_w;
8685         break;
8686       case Intrinsic::x86_mmx_pslli_d:
8687         NewIntNo = Intrinsic::x86_mmx_psll_d;
8688         break;
8689       case Intrinsic::x86_mmx_pslli_q:
8690         NewIntNo = Intrinsic::x86_mmx_psll_q;
8691         break;
8692       case Intrinsic::x86_mmx_psrli_w:
8693         NewIntNo = Intrinsic::x86_mmx_psrl_w;
8694         break;
8695       case Intrinsic::x86_mmx_psrli_d:
8696         NewIntNo = Intrinsic::x86_mmx_psrl_d;
8697         break;
8698       case Intrinsic::x86_mmx_psrli_q:
8699         NewIntNo = Intrinsic::x86_mmx_psrl_q;
8700         break;
8701       case Intrinsic::x86_mmx_psrai_w:
8702         NewIntNo = Intrinsic::x86_mmx_psra_w;
8703         break;
8704       case Intrinsic::x86_mmx_psrai_d:
8705         NewIntNo = Intrinsic::x86_mmx_psra_d;
8706         break;
8707       default: llvm_unreachable("Impossible intrinsic");  // Can't reach here.
8708       }
8709       break;
8710     }
8711     }
8712
8713     // The vector shift intrinsics with scalars uses 32b shift amounts but
8714     // the sse2/mmx shift instructions reads 64 bits. Set the upper 32 bits
8715     // to be zero.
8716     SDValue ShOps[4];
8717     ShOps[0] = ShAmt;
8718     ShOps[1] = DAG.getConstant(0, MVT::i32);
8719     if (ShAmtVT == MVT::v4i32) {
8720       ShOps[2] = DAG.getUNDEF(MVT::i32);
8721       ShOps[3] = DAG.getUNDEF(MVT::i32);
8722       ShAmt =  DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 4);
8723     } else {
8724       ShAmt =  DAG.getNode(ISD::BUILD_VECTOR, dl, ShAmtVT, &ShOps[0], 2);
8725 // FIXME this must be lowered to get rid of the invalid type.
8726     }
8727
8728     EVT VT = Op.getValueType();
8729     ShAmt = DAG.getNode(ISD::BITCAST, dl, VT, ShAmt);
8730     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
8731                        DAG.getConstant(NewIntNo, MVT::i32),
8732                        Op.getOperand(1), ShAmt);
8733   }
8734   }
8735 }
8736
8737 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op,
8738                                            SelectionDAG &DAG) const {
8739   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8740   MFI->setReturnAddressIsTaken(true);
8741
8742   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8743   DebugLoc dl = Op.getDebugLoc();
8744
8745   if (Depth > 0) {
8746     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
8747     SDValue Offset =
8748       DAG.getConstant(TD->getPointerSize(),
8749                       Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
8750     return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
8751                        DAG.getNode(ISD::ADD, dl, getPointerTy(),
8752                                    FrameAddr, Offset),
8753                        MachinePointerInfo(), false, false, 0);
8754   }
8755
8756   // Just load the return address.
8757   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
8758   return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
8759                      RetAddrFI, MachinePointerInfo(), false, false, 0);
8760 }
8761
8762 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) const {
8763   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
8764   MFI->setFrameAddressIsTaken(true);
8765
8766   EVT VT = Op.getValueType();
8767   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
8768   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
8769   unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
8770   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
8771   while (Depth--)
8772     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr,
8773                             MachinePointerInfo(),
8774                             false, false, 0);
8775   return FrameAddr;
8776 }
8777
8778 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
8779                                                      SelectionDAG &DAG) const {
8780   return DAG.getIntPtrConstant(2*TD->getPointerSize());
8781 }
8782
8783 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG) const {
8784   MachineFunction &MF = DAG.getMachineFunction();
8785   SDValue Chain     = Op.getOperand(0);
8786   SDValue Offset    = Op.getOperand(1);
8787   SDValue Handler   = Op.getOperand(2);
8788   DebugLoc dl       = Op.getDebugLoc();
8789
8790   SDValue Frame = DAG.getCopyFromReg(DAG.getEntryNode(), dl,
8791                                      Subtarget->is64Bit() ? X86::RBP : X86::EBP,
8792                                      getPointerTy());
8793   unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
8794
8795   SDValue StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), Frame,
8796                                   DAG.getIntPtrConstant(TD->getPointerSize()));
8797   StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
8798   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, MachinePointerInfo(),
8799                        false, false, 0);
8800   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
8801   MF.getRegInfo().addLiveOut(StoreAddrReg);
8802
8803   return DAG.getNode(X86ISD::EH_RETURN, dl,
8804                      MVT::Other,
8805                      Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
8806 }
8807
8808 SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
8809                                              SelectionDAG &DAG) const {
8810   SDValue Root = Op.getOperand(0);
8811   SDValue Trmp = Op.getOperand(1); // trampoline
8812   SDValue FPtr = Op.getOperand(2); // nested function
8813   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
8814   DebugLoc dl  = Op.getDebugLoc();
8815
8816   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
8817
8818   if (Subtarget->is64Bit()) {
8819     SDValue OutChains[6];
8820
8821     // Large code-model.
8822     const unsigned char JMP64r  = 0xFF; // 64-bit jmp through register opcode.
8823     const unsigned char MOV64ri = 0xB8; // X86::MOV64ri opcode.
8824
8825     const unsigned char N86R10 = X86_MC::getX86RegNum(X86::R10);
8826     const unsigned char N86R11 = X86_MC::getX86RegNum(X86::R11);
8827
8828     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
8829
8830     // Load the pointer to the nested function into R11.
8831     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
8832     SDValue Addr = Trmp;
8833     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
8834                                 Addr, MachinePointerInfo(TrmpAddr),
8835                                 false, false, 0);
8836
8837     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8838                        DAG.getConstant(2, MVT::i64));
8839     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr,
8840                                 MachinePointerInfo(TrmpAddr, 2),
8841                                 false, false, 2);
8842
8843     // Load the 'nest' parameter value into R10.
8844     // R10 is specified in X86CallingConv.td
8845     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
8846     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8847                        DAG.getConstant(10, MVT::i64));
8848     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
8849                                 Addr, MachinePointerInfo(TrmpAddr, 10),
8850                                 false, false, 0);
8851
8852     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8853                        DAG.getConstant(12, MVT::i64));
8854     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr,
8855                                 MachinePointerInfo(TrmpAddr, 12),
8856                                 false, false, 2);
8857
8858     // Jump to the nested function.
8859     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
8860     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8861                        DAG.getConstant(20, MVT::i64));
8862     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
8863                                 Addr, MachinePointerInfo(TrmpAddr, 20),
8864                                 false, false, 0);
8865
8866     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
8867     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
8868                        DAG.getConstant(22, MVT::i64));
8869     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
8870                                 MachinePointerInfo(TrmpAddr, 22),
8871                                 false, false, 0);
8872
8873     SDValue Ops[] =
8874       { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
8875     return DAG.getMergeValues(Ops, 2, dl);
8876   } else {
8877     const Function *Func =
8878       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
8879     CallingConv::ID CC = Func->getCallingConv();
8880     unsigned NestReg;
8881
8882     switch (CC) {
8883     default:
8884       llvm_unreachable("Unsupported calling convention");
8885     case CallingConv::C:
8886     case CallingConv::X86_StdCall: {
8887       // Pass 'nest' parameter in ECX.
8888       // Must be kept in sync with X86CallingConv.td
8889       NestReg = X86::ECX;
8890
8891       // Check that ECX wasn't needed by an 'inreg' parameter.
8892       FunctionType *FTy = Func->getFunctionType();
8893       const AttrListPtr &Attrs = Func->getAttributes();
8894
8895       if (!Attrs.isEmpty() && !Func->isVarArg()) {
8896         unsigned InRegCount = 0;
8897         unsigned Idx = 1;
8898
8899         for (FunctionType::param_iterator I = FTy->param_begin(),
8900              E = FTy->param_end(); I != E; ++I, ++Idx)
8901           if (Attrs.paramHasAttr(Idx, Attribute::InReg))
8902             // FIXME: should only count parameters that are lowered to integers.
8903             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
8904
8905         if (InRegCount > 2) {
8906           report_fatal_error("Nest register in use - reduce number of inreg"
8907                              " parameters!");
8908         }
8909       }
8910       break;
8911     }
8912     case CallingConv::X86_FastCall:
8913     case CallingConv::X86_ThisCall:
8914     case CallingConv::Fast:
8915       // Pass 'nest' parameter in EAX.
8916       // Must be kept in sync with X86CallingConv.td
8917       NestReg = X86::EAX;
8918       break;
8919     }
8920
8921     SDValue OutChains[4];
8922     SDValue Addr, Disp;
8923
8924     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8925                        DAG.getConstant(10, MVT::i32));
8926     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
8927
8928     // This is storing the opcode for MOV32ri.
8929     const unsigned char MOV32ri = 0xB8; // X86::MOV32ri's opcode byte.
8930     const unsigned char N86Reg = X86_MC::getX86RegNum(NestReg);
8931     OutChains[0] = DAG.getStore(Root, dl,
8932                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
8933                                 Trmp, MachinePointerInfo(TrmpAddr),
8934                                 false, false, 0);
8935
8936     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8937                        DAG.getConstant(1, MVT::i32));
8938     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr,
8939                                 MachinePointerInfo(TrmpAddr, 1),
8940                                 false, false, 1);
8941
8942     const unsigned char JMP = 0xE9; // jmp <32bit dst> opcode.
8943     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8944                        DAG.getConstant(5, MVT::i32));
8945     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
8946                                 MachinePointerInfo(TrmpAddr, 5),
8947                                 false, false, 1);
8948
8949     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
8950                        DAG.getConstant(6, MVT::i32));
8951     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr,
8952                                 MachinePointerInfo(TrmpAddr, 6),
8953                                 false, false, 1);
8954
8955     SDValue Ops[] =
8956       { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
8957     return DAG.getMergeValues(Ops, 2, dl);
8958   }
8959 }
8960
8961 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op,
8962                                             SelectionDAG &DAG) const {
8963   /*
8964    The rounding mode is in bits 11:10 of FPSR, and has the following
8965    settings:
8966      00 Round to nearest
8967      01 Round to -inf
8968      10 Round to +inf
8969      11 Round to 0
8970
8971   FLT_ROUNDS, on the other hand, expects the following:
8972     -1 Undefined
8973      0 Round to 0
8974      1 Round to nearest
8975      2 Round to +inf
8976      3 Round to -inf
8977
8978   To perform the conversion, we do:
8979     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
8980   */
8981
8982   MachineFunction &MF = DAG.getMachineFunction();
8983   const TargetMachine &TM = MF.getTarget();
8984   const TargetFrameLowering &TFI = *TM.getFrameLowering();
8985   unsigned StackAlignment = TFI.getStackAlignment();
8986   EVT VT = Op.getValueType();
8987   DebugLoc DL = Op.getDebugLoc();
8988
8989   // Save FP Control Word to stack slot
8990   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment, false);
8991   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
8992
8993
8994   MachineMemOperand *MMO =
8995    MF.getMachineMemOperand(MachinePointerInfo::getFixedStack(SSFI),
8996                            MachineMemOperand::MOStore, 2, 2);
8997
8998   SDValue Ops[] = { DAG.getEntryNode(), StackSlot };
8999   SDValue Chain = DAG.getMemIntrinsicNode(X86ISD::FNSTCW16m, DL,
9000                                           DAG.getVTList(MVT::Other),
9001                                           Ops, 2, MVT::i16, MMO);
9002
9003   // Load FP Control Word from stack slot
9004   SDValue CWD = DAG.getLoad(MVT::i16, DL, Chain, StackSlot,
9005                             MachinePointerInfo(), false, false, 0);
9006
9007   // Transform as necessary
9008   SDValue CWD1 =
9009     DAG.getNode(ISD::SRL, DL, MVT::i16,
9010                 DAG.getNode(ISD::AND, DL, MVT::i16,
9011                             CWD, DAG.getConstant(0x800, MVT::i16)),
9012                 DAG.getConstant(11, MVT::i8));
9013   SDValue CWD2 =
9014     DAG.getNode(ISD::SRL, DL, MVT::i16,
9015                 DAG.getNode(ISD::AND, DL, MVT::i16,
9016                             CWD, DAG.getConstant(0x400, MVT::i16)),
9017                 DAG.getConstant(9, MVT::i8));
9018
9019   SDValue RetVal =
9020     DAG.getNode(ISD::AND, DL, MVT::i16,
9021                 DAG.getNode(ISD::ADD, DL, MVT::i16,
9022                             DAG.getNode(ISD::OR, DL, MVT::i16, CWD1, CWD2),
9023                             DAG.getConstant(1, MVT::i16)),
9024                 DAG.getConstant(3, MVT::i16));
9025
9026
9027   return DAG.getNode((VT.getSizeInBits() < 16 ?
9028                       ISD::TRUNCATE : ISD::ZERO_EXTEND), DL, VT, RetVal);
9029 }
9030
9031 SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) const {
9032   EVT VT = Op.getValueType();
9033   EVT OpVT = VT;
9034   unsigned NumBits = VT.getSizeInBits();
9035   DebugLoc dl = Op.getDebugLoc();
9036
9037   Op = Op.getOperand(0);
9038   if (VT == MVT::i8) {
9039     // Zero extend to i32 since there is not an i8 bsr.
9040     OpVT = MVT::i32;
9041     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
9042   }
9043
9044   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
9045   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
9046   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
9047
9048   // If src is zero (i.e. bsr sets ZF), returns NumBits.
9049   SDValue Ops[] = {
9050     Op,
9051     DAG.getConstant(NumBits+NumBits-1, OpVT),
9052     DAG.getConstant(X86::COND_E, MVT::i8),
9053     Op.getValue(1)
9054   };
9055   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
9056
9057   // Finally xor with NumBits-1.
9058   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
9059
9060   if (VT == MVT::i8)
9061     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
9062   return Op;
9063 }
9064
9065 SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) const {
9066   EVT VT = Op.getValueType();
9067   EVT OpVT = VT;
9068   unsigned NumBits = VT.getSizeInBits();
9069   DebugLoc dl = Op.getDebugLoc();
9070
9071   Op = Op.getOperand(0);
9072   if (VT == MVT::i8) {
9073     OpVT = MVT::i32;
9074     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
9075   }
9076
9077   // Issue a bsf (scan bits forward) which also sets EFLAGS.
9078   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
9079   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
9080
9081   // If src is zero (i.e. bsf sets ZF), returns NumBits.
9082   SDValue Ops[] = {
9083     Op,
9084     DAG.getConstant(NumBits, OpVT),
9085     DAG.getConstant(X86::COND_E, MVT::i8),
9086     Op.getValue(1)
9087   };
9088   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, Ops, array_lengthof(Ops));
9089
9090   if (VT == MVT::i8)
9091     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
9092   return Op;
9093 }
9094
9095 SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) const {
9096   EVT VT = Op.getValueType();
9097   assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
9098   DebugLoc dl = Op.getDebugLoc();
9099
9100   //  ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
9101   //  ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
9102   //  ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
9103   //  ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
9104   //  ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
9105   //
9106   //  AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
9107   //  AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
9108   //  return AloBlo + AloBhi + AhiBlo;
9109
9110   SDValue A = Op.getOperand(0);
9111   SDValue B = Op.getOperand(1);
9112
9113   SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9114                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9115                        A, DAG.getConstant(32, MVT::i32));
9116   SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9117                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9118                        B, DAG.getConstant(32, MVT::i32));
9119   SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9120                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
9121                        A, B);
9122   SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9123                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
9124                        A, Bhi);
9125   SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9126                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
9127                        Ahi, B);
9128   AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9129                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9130                        AloBhi, DAG.getConstant(32, MVT::i32));
9131   AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9132                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9133                        AhiBlo, DAG.getConstant(32, MVT::i32));
9134   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
9135   Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
9136   return Res;
9137 }
9138
9139 SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) const {
9140
9141   EVT VT = Op.getValueType();
9142   DebugLoc dl = Op.getDebugLoc();
9143   SDValue R = Op.getOperand(0);
9144   SDValue Amt = Op.getOperand(1);
9145
9146   LLVMContext *Context = DAG.getContext();
9147
9148   // Must have SSE2.
9149   if (!Subtarget->hasSSE2()) return SDValue();
9150
9151   // Optimize shl/srl/sra with constant shift amount.
9152   if (isSplatVector(Amt.getNode())) {
9153     SDValue SclrAmt = Amt->getOperand(0);
9154     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(SclrAmt)) {
9155       uint64_t ShiftAmt = C->getZExtValue();
9156
9157       if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SHL)
9158        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9159                      DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
9160                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9161
9162       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SHL)
9163        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9164                      DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9165                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9166
9167       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SHL)
9168        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9169                      DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9170                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9171
9172       if (VT == MVT::v2i64 && Op.getOpcode() == ISD::SRL)
9173        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9174                      DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
9175                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9176
9177       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRL)
9178        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9179                      DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
9180                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9181
9182       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRL)
9183        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9184                      DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
9185                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9186
9187       if (VT == MVT::v4i32 && Op.getOpcode() == ISD::SRA)
9188        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9189                      DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
9190                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9191
9192       if (VT == MVT::v8i16 && Op.getOpcode() == ISD::SRA)
9193        return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9194                      DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
9195                      R, DAG.getConstant(ShiftAmt, MVT::i32));
9196     }
9197   }
9198
9199   // Lower SHL with variable shift amount.
9200   // Cannot lower SHL without SSE2 or later.
9201   if (!Subtarget->hasSSE2()) return SDValue();
9202
9203   if (VT == MVT::v4i32 && Op->getOpcode() == ISD::SHL) {
9204     Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9205                      DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
9206                      Op.getOperand(1), DAG.getConstant(23, MVT::i32));
9207
9208     ConstantInt *CI = ConstantInt::get(*Context, APInt(32, 0x3f800000U));
9209
9210     std::vector<Constant*> CV(4, CI);
9211     Constant *C = ConstantVector::get(CV);
9212     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9213     SDValue Addend = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9214                                  MachinePointerInfo::getConstantPool(),
9215                                  false, false, 16);
9216
9217     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Addend);
9218     Op = DAG.getNode(ISD::BITCAST, dl, MVT::v4f32, Op);
9219     Op = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op);
9220     return DAG.getNode(ISD::MUL, dl, VT, Op, R);
9221   }
9222   if (VT == MVT::v16i8 && Op->getOpcode() == ISD::SHL) {
9223     // a = a << 5;
9224     Op = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9225                      DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
9226                      Op.getOperand(1), DAG.getConstant(5, MVT::i32));
9227
9228     ConstantInt *CM1 = ConstantInt::get(*Context, APInt(8, 15));
9229     ConstantInt *CM2 = ConstantInt::get(*Context, APInt(8, 63));
9230
9231     std::vector<Constant*> CVM1(16, CM1);
9232     std::vector<Constant*> CVM2(16, CM2);
9233     Constant *C = ConstantVector::get(CVM1);
9234     SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9235     SDValue M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9236                             MachinePointerInfo::getConstantPool(),
9237                             false, false, 16);
9238
9239     // r = pblendv(r, psllw(r & (char16)15, 4), a);
9240     M = DAG.getNode(ISD::AND, dl, VT, R, M);
9241     M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9242                     DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9243                     DAG.getConstant(4, MVT::i32));
9244     R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
9245     // a += a
9246     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
9247
9248     C = ConstantVector::get(CVM2);
9249     CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
9250     M = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
9251                     MachinePointerInfo::getConstantPool(),
9252                     false, false, 16);
9253
9254     // r = pblendv(r, psllw(r & (char16)63, 2), a);
9255     M = DAG.getNode(ISD::AND, dl, VT, R, M);
9256     M = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9257                     DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32), M,
9258                     DAG.getConstant(2, MVT::i32));
9259     R = DAG.getNode(X86ISD::PBLENDVB, dl, VT, R, M, Op);
9260     // a += a
9261     Op = DAG.getNode(ISD::ADD, dl, VT, Op, Op);
9262
9263     // return pblendv(r, r+r, a);
9264     R = DAG.getNode(X86ISD::PBLENDVB, dl, VT,
9265                     R, DAG.getNode(ISD::ADD, dl, VT, R, R), Op);
9266     return R;
9267   }
9268   return SDValue();
9269 }
9270
9271 SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) const {
9272   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
9273   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
9274   // looks for this combo and may remove the "setcc" instruction if the "setcc"
9275   // has only one use.
9276   SDNode *N = Op.getNode();
9277   SDValue LHS = N->getOperand(0);
9278   SDValue RHS = N->getOperand(1);
9279   unsigned BaseOp = 0;
9280   unsigned Cond = 0;
9281   DebugLoc DL = Op.getDebugLoc();
9282   switch (Op.getOpcode()) {
9283   default: llvm_unreachable("Unknown ovf instruction!");
9284   case ISD::SADDO:
9285     // A subtract of one will be selected as a INC. Note that INC doesn't
9286     // set CF, so we can't do this for UADDO.
9287     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9288       if (C->isOne()) {
9289         BaseOp = X86ISD::INC;
9290         Cond = X86::COND_O;
9291         break;
9292       }
9293     BaseOp = X86ISD::ADD;
9294     Cond = X86::COND_O;
9295     break;
9296   case ISD::UADDO:
9297     BaseOp = X86ISD::ADD;
9298     Cond = X86::COND_B;
9299     break;
9300   case ISD::SSUBO:
9301     // A subtract of one will be selected as a DEC. Note that DEC doesn't
9302     // set CF, so we can't do this for USUBO.
9303     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(RHS))
9304       if (C->isOne()) {
9305         BaseOp = X86ISD::DEC;
9306         Cond = X86::COND_O;
9307         break;
9308       }
9309     BaseOp = X86ISD::SUB;
9310     Cond = X86::COND_O;
9311     break;
9312   case ISD::USUBO:
9313     BaseOp = X86ISD::SUB;
9314     Cond = X86::COND_B;
9315     break;
9316   case ISD::SMULO:
9317     BaseOp = X86ISD::SMUL;
9318     Cond = X86::COND_O;
9319     break;
9320   case ISD::UMULO: { // i64, i8 = umulo lhs, rhs --> i64, i64, i32 umul lhs,rhs
9321     SDVTList VTs = DAG.getVTList(N->getValueType(0), N->getValueType(0),
9322                                  MVT::i32);
9323     SDValue Sum = DAG.getNode(X86ISD::UMUL, DL, VTs, LHS, RHS);
9324
9325     SDValue SetCC =
9326       DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
9327                   DAG.getConstant(X86::COND_O, MVT::i32),
9328                   SDValue(Sum.getNode(), 2));
9329
9330     return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
9331   }
9332   }
9333
9334   // Also sets EFLAGS.
9335   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
9336   SDValue Sum = DAG.getNode(BaseOp, DL, VTs, LHS, RHS);
9337
9338   SDValue SetCC =
9339     DAG.getNode(X86ISD::SETCC, DL, N->getValueType(1),
9340                 DAG.getConstant(Cond, MVT::i32),
9341                 SDValue(Sum.getNode(), 1));
9342
9343   return DAG.getNode(ISD::MERGE_VALUES, DL, N->getVTList(), Sum, SetCC);
9344 }
9345
9346 SDValue X86TargetLowering::LowerSIGN_EXTEND_INREG(SDValue Op, SelectionDAG &DAG) const{
9347   DebugLoc dl = Op.getDebugLoc();
9348   SDNode* Node = Op.getNode();
9349   EVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
9350   EVT VT = Node->getValueType(0);
9351
9352   if (Subtarget->hasSSE2() && VT.isVector()) {
9353     unsigned BitsDiff = VT.getScalarType().getSizeInBits() -
9354                         ExtraVT.getScalarType().getSizeInBits();
9355     SDValue ShAmt = DAG.getConstant(BitsDiff, MVT::i32);
9356
9357     unsigned SHLIntrinsicsID = 0;
9358     unsigned SRAIntrinsicsID = 0;
9359     switch (VT.getSimpleVT().SimpleTy) {
9360       default:
9361         return SDValue();
9362       case MVT::v2i64: {
9363         SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_q;
9364         SRAIntrinsicsID = 0;
9365         break;
9366       }
9367       case MVT::v4i32: {
9368         SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_d;
9369         SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_d;
9370         break;
9371       }
9372       case MVT::v8i16: {
9373         SHLIntrinsicsID = Intrinsic::x86_sse2_pslli_w;
9374         SRAIntrinsicsID = Intrinsic::x86_sse2_psrai_w;
9375         break;
9376       }
9377     }
9378
9379     SDValue Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9380                          DAG.getConstant(SHLIntrinsicsID, MVT::i32),
9381                          Node->getOperand(0), ShAmt);
9382
9383     // In case of 1 bit sext, no need to shr
9384     if (ExtraVT.getScalarType().getSizeInBits() == 1) return Tmp1;
9385
9386     if (SRAIntrinsicsID) {
9387       Tmp1 = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
9388                          DAG.getConstant(SRAIntrinsicsID, MVT::i32),
9389                          Tmp1, ShAmt);
9390     }
9391     return Tmp1;
9392   }
9393
9394   return SDValue();
9395 }
9396
9397
9398 SDValue X86TargetLowering::LowerMEMBARRIER(SDValue Op, SelectionDAG &DAG) const{
9399   DebugLoc dl = Op.getDebugLoc();
9400
9401   // Go ahead and emit the fence on x86-64 even if we asked for no-sse2.
9402   // There isn't any reason to disable it if the target processor supports it.
9403   if (!Subtarget->hasSSE2() && !Subtarget->is64Bit()) {
9404     SDValue Chain = Op.getOperand(0);
9405     SDValue Zero = DAG.getConstant(0, MVT::i32);
9406     SDValue Ops[] = {
9407       DAG.getRegister(X86::ESP, MVT::i32), // Base
9408       DAG.getTargetConstant(1, MVT::i8),   // Scale
9409       DAG.getRegister(0, MVT::i32),        // Index
9410       DAG.getTargetConstant(0, MVT::i32),  // Disp
9411       DAG.getRegister(0, MVT::i32),        // Segment.
9412       Zero,
9413       Chain
9414     };
9415     SDNode *Res =
9416       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9417                           array_lengthof(Ops));
9418     return SDValue(Res, 0);
9419   }
9420
9421   unsigned isDev = cast<ConstantSDNode>(Op.getOperand(5))->getZExtValue();
9422   if (!isDev)
9423     return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9424
9425   unsigned Op1 = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
9426   unsigned Op2 = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue();
9427   unsigned Op3 = cast<ConstantSDNode>(Op.getOperand(3))->getZExtValue();
9428   unsigned Op4 = cast<ConstantSDNode>(Op.getOperand(4))->getZExtValue();
9429
9430   // def : Pat<(membarrier (i8 0), (i8 0), (i8 0), (i8 1), (i8 1)), (SFENCE)>;
9431   if (!Op1 && !Op2 && !Op3 && Op4)
9432     return DAG.getNode(X86ISD::SFENCE, dl, MVT::Other, Op.getOperand(0));
9433
9434   // def : Pat<(membarrier (i8 1), (i8 0), (i8 0), (i8 0), (i8 1)), (LFENCE)>;
9435   if (Op1 && !Op2 && !Op3 && !Op4)
9436     return DAG.getNode(X86ISD::LFENCE, dl, MVT::Other, Op.getOperand(0));
9437
9438   // def : Pat<(membarrier (i8 imm), (i8 imm), (i8 imm), (i8 imm), (i8 1)),
9439   //           (MFENCE)>;
9440   return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9441 }
9442
9443 SDValue X86TargetLowering::LowerATOMIC_FENCE(SDValue Op,
9444                                              SelectionDAG &DAG) const {
9445   DebugLoc dl = Op.getDebugLoc();
9446   AtomicOrdering FenceOrdering = static_cast<AtomicOrdering>(
9447     cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue());
9448   SynchronizationScope FenceScope = static_cast<SynchronizationScope>(
9449     cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue());
9450
9451   // The only fence that needs an instruction is a sequentially-consistent
9452   // cross-thread fence.
9453   if (FenceOrdering == SequentiallyConsistent && FenceScope == CrossThread) {
9454     // Use mfence if we have SSE2 or we're on x86-64 (even if we asked for
9455     // no-sse2). There isn't any reason to disable it if the target processor
9456     // supports it.
9457     if (Subtarget->hasSSE2() || Subtarget->is64Bit())
9458       return DAG.getNode(X86ISD::MFENCE, dl, MVT::Other, Op.getOperand(0));
9459
9460     SDValue Chain = Op.getOperand(0);
9461     SDValue Zero = DAG.getConstant(0, MVT::i32);
9462     SDValue Ops[] = {
9463       DAG.getRegister(X86::ESP, MVT::i32), // Base
9464       DAG.getTargetConstant(1, MVT::i8),   // Scale
9465       DAG.getRegister(0, MVT::i32),        // Index
9466       DAG.getTargetConstant(0, MVT::i32),  // Disp
9467       DAG.getRegister(0, MVT::i32),        // Segment.
9468       Zero,
9469       Chain
9470     };
9471     SDNode *Res =
9472       DAG.getMachineNode(X86::OR32mrLocked, dl, MVT::Other, Ops,
9473                          array_lengthof(Ops));
9474     return SDValue(Res, 0);
9475   }
9476
9477   // MEMBARRIER is a compiler barrier; it codegens to a no-op.
9478   return DAG.getNode(X86ISD::MEMBARRIER, dl, MVT::Other, Op.getOperand(0));
9479 }
9480
9481
9482 SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) const {
9483   EVT T = Op.getValueType();
9484   DebugLoc DL = Op.getDebugLoc();
9485   unsigned Reg = 0;
9486   unsigned size = 0;
9487   switch(T.getSimpleVT().SimpleTy) {
9488   default:
9489     assert(false && "Invalid value type!");
9490   case MVT::i8:  Reg = X86::AL;  size = 1; break;
9491   case MVT::i16: Reg = X86::AX;  size = 2; break;
9492   case MVT::i32: Reg = X86::EAX; size = 4; break;
9493   case MVT::i64:
9494     assert(Subtarget->is64Bit() && "Node not type legal!");
9495     Reg = X86::RAX; size = 8;
9496     break;
9497   }
9498   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), DL, Reg,
9499                                     Op.getOperand(2), SDValue());
9500   SDValue Ops[] = { cpIn.getValue(0),
9501                     Op.getOperand(1),
9502                     Op.getOperand(3),
9503                     DAG.getTargetConstant(size, MVT::i8),
9504                     cpIn.getValue(1) };
9505   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
9506   MachineMemOperand *MMO = cast<AtomicSDNode>(Op)->getMemOperand();
9507   SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG_DAG, DL, Tys,
9508                                            Ops, 5, T, MMO);
9509   SDValue cpOut =
9510     DAG.getCopyFromReg(Result.getValue(0), DL, Reg, T, Result.getValue(1));
9511   return cpOut;
9512 }
9513
9514 SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
9515                                                  SelectionDAG &DAG) const {
9516   assert(Subtarget->is64Bit() && "Result not type legalized?");
9517   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
9518   SDValue TheChain = Op.getOperand(0);
9519   DebugLoc dl = Op.getDebugLoc();
9520   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
9521   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
9522   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
9523                                    rax.getValue(2));
9524   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
9525                             DAG.getConstant(32, MVT::i8));
9526   SDValue Ops[] = {
9527     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
9528     rdx.getValue(1)
9529   };
9530   return DAG.getMergeValues(Ops, 2, dl);
9531 }
9532
9533 SDValue X86TargetLowering::LowerBITCAST(SDValue Op,
9534                                             SelectionDAG &DAG) const {
9535   EVT SrcVT = Op.getOperand(0).getValueType();
9536   EVT DstVT = Op.getValueType();
9537   assert(Subtarget->is64Bit() && !Subtarget->hasSSE2() &&
9538          Subtarget->hasMMX() && "Unexpected custom BITCAST");
9539   assert((DstVT == MVT::i64 ||
9540           (DstVT.isVector() && DstVT.getSizeInBits()==64)) &&
9541          "Unexpected custom BITCAST");
9542   // i64 <=> MMX conversions are Legal.
9543   if (SrcVT==MVT::i64 && DstVT.isVector())
9544     return Op;
9545   if (DstVT==MVT::i64 && SrcVT.isVector())
9546     return Op;
9547   // MMX <=> MMX conversions are Legal.
9548   if (SrcVT.isVector() && DstVT.isVector())
9549     return Op;
9550   // All other conversions need to be expanded.
9551   return SDValue();
9552 }
9553
9554 SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) const {
9555   SDNode *Node = Op.getNode();
9556   DebugLoc dl = Node->getDebugLoc();
9557   EVT T = Node->getValueType(0);
9558   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
9559                               DAG.getConstant(0, T), Node->getOperand(2));
9560   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
9561                        cast<AtomicSDNode>(Node)->getMemoryVT(),
9562                        Node->getOperand(0),
9563                        Node->getOperand(1), negOp,
9564                        cast<AtomicSDNode>(Node)->getSrcValue(),
9565                        cast<AtomicSDNode>(Node)->getAlignment());
9566 }
9567
9568 static SDValue LowerADDC_ADDE_SUBC_SUBE(SDValue Op, SelectionDAG &DAG) {
9569   EVT VT = Op.getNode()->getValueType(0);
9570
9571   // Let legalize expand this if it isn't a legal type yet.
9572   if (!DAG.getTargetLoweringInfo().isTypeLegal(VT))
9573     return SDValue();
9574
9575   SDVTList VTs = DAG.getVTList(VT, MVT::i32);
9576
9577   unsigned Opc;
9578   bool ExtraOp = false;
9579   switch (Op.getOpcode()) {
9580   default: assert(0 && "Invalid code");
9581   case ISD::ADDC: Opc = X86ISD::ADD; break;
9582   case ISD::ADDE: Opc = X86ISD::ADC; ExtraOp = true; break;
9583   case ISD::SUBC: Opc = X86ISD::SUB; break;
9584   case ISD::SUBE: Opc = X86ISD::SBB; ExtraOp = true; break;
9585   }
9586
9587   if (!ExtraOp)
9588     return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9589                        Op.getOperand(1));
9590   return DAG.getNode(Opc, Op->getDebugLoc(), VTs, Op.getOperand(0),
9591                      Op.getOperand(1), Op.getOperand(2));
9592 }
9593
9594 /// LowerOperation - Provide custom lowering hooks for some operations.
9595 ///
9596 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) const {
9597   switch (Op.getOpcode()) {
9598   default: llvm_unreachable("Should not custom lower this!");
9599   case ISD::SIGN_EXTEND_INREG:  return LowerSIGN_EXTEND_INREG(Op,DAG);
9600   case ISD::MEMBARRIER:         return LowerMEMBARRIER(Op,DAG);
9601   case ISD::ATOMIC_FENCE:       return LowerATOMIC_FENCE(Op,DAG);
9602   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op,DAG);
9603   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
9604   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
9605   case ISD::CONCAT_VECTORS:     return LowerCONCAT_VECTORS(Op, DAG);
9606   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
9607   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
9608   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
9609   case ISD::EXTRACT_SUBVECTOR:  return LowerEXTRACT_SUBVECTOR(Op, DAG);
9610   case ISD::INSERT_SUBVECTOR:   return LowerINSERT_SUBVECTOR(Op, DAG);
9611   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
9612   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
9613   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
9614   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
9615   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
9616   case ISD::BlockAddress:       return LowerBlockAddress(Op, DAG);
9617   case ISD::SHL_PARTS:
9618   case ISD::SRA_PARTS:
9619   case ISD::SRL_PARTS:          return LowerShiftParts(Op, DAG);
9620   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
9621   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
9622   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
9623   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
9624   case ISD::FABS:               return LowerFABS(Op, DAG);
9625   case ISD::FNEG:               return LowerFNEG(Op, DAG);
9626   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
9627   case ISD::FGETSIGN:           return LowerFGETSIGN(Op, DAG);
9628   case ISD::SETCC:              return LowerSETCC(Op, DAG);
9629   case ISD::VSETCC:             return LowerVSETCC(Op, DAG);
9630   case ISD::SELECT:             return LowerSELECT(Op, DAG);
9631   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
9632   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
9633   case ISD::VASTART:            return LowerVASTART(Op, DAG);
9634   case ISD::VAARG:              return LowerVAARG(Op, DAG);
9635   case ISD::VACOPY:             return LowerVACOPY(Op, DAG);
9636   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
9637   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
9638   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
9639   case ISD::FRAME_TO_ARGS_OFFSET:
9640                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
9641   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
9642   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
9643   case ISD::TRAMPOLINE:         return LowerTRAMPOLINE(Op, DAG);
9644   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
9645   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
9646   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
9647   case ISD::MUL:                return LowerMUL_V2I64(Op, DAG);
9648   case ISD::SRA:
9649   case ISD::SRL:
9650   case ISD::SHL:                return LowerShift(Op, DAG);
9651   case ISD::SADDO:
9652   case ISD::UADDO:
9653   case ISD::SSUBO:
9654   case ISD::USUBO:
9655   case ISD::SMULO:
9656   case ISD::UMULO:              return LowerXALUO(Op, DAG);
9657   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, DAG);
9658   case ISD::BITCAST:            return LowerBITCAST(Op, DAG);
9659   case ISD::ADDC:
9660   case ISD::ADDE:
9661   case ISD::SUBC:
9662   case ISD::SUBE:               return LowerADDC_ADDE_SUBC_SUBE(Op, DAG);
9663   }
9664 }
9665
9666 void X86TargetLowering::
9667 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
9668                         SelectionDAG &DAG, unsigned NewOp) const {
9669   EVT T = Node->getValueType(0);
9670   DebugLoc dl = Node->getDebugLoc();
9671   assert (T == MVT::i64 && "Only know how to expand i64 atomics");
9672
9673   SDValue Chain = Node->getOperand(0);
9674   SDValue In1 = Node->getOperand(1);
9675   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
9676                              Node->getOperand(2), DAG.getIntPtrConstant(0));
9677   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
9678                              Node->getOperand(2), DAG.getIntPtrConstant(1));
9679   SDValue Ops[] = { Chain, In1, In2L, In2H };
9680   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
9681   SDValue Result =
9682     DAG.getMemIntrinsicNode(NewOp, dl, Tys, Ops, 4, MVT::i64,
9683                             cast<MemSDNode>(Node)->getMemOperand());
9684   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
9685   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
9686   Results.push_back(Result.getValue(2));
9687 }
9688
9689 /// ReplaceNodeResults - Replace a node with an illegal result type
9690 /// with a new node built out of custom code.
9691 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
9692                                            SmallVectorImpl<SDValue>&Results,
9693                                            SelectionDAG &DAG) const {
9694   DebugLoc dl = N->getDebugLoc();
9695   switch (N->getOpcode()) {
9696   default:
9697     assert(false && "Do not know how to custom type legalize this operation!");
9698     return;
9699   case ISD::SIGN_EXTEND_INREG:
9700   case ISD::ADDC:
9701   case ISD::ADDE:
9702   case ISD::SUBC:
9703   case ISD::SUBE:
9704     // We don't want to expand or promote these.
9705     return;
9706   case ISD::FP_TO_SINT: {
9707     std::pair<SDValue,SDValue> Vals =
9708         FP_TO_INTHelper(SDValue(N, 0), DAG, true);
9709     SDValue FIST = Vals.first, StackSlot = Vals.second;
9710     if (FIST.getNode() != 0) {
9711       EVT VT = N->getValueType(0);
9712       // Return a load from the stack slot.
9713       Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot,
9714                                     MachinePointerInfo(), false, false, 0));
9715     }
9716     return;
9717   }
9718   case ISD::READCYCLECOUNTER: {
9719     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
9720     SDValue TheChain = N->getOperand(0);
9721     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
9722     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
9723                                      rd.getValue(1));
9724     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
9725                                      eax.getValue(2));
9726     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
9727     SDValue Ops[] = { eax, edx };
9728     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
9729     Results.push_back(edx.getValue(1));
9730     return;
9731   }
9732   case ISD::ATOMIC_CMP_SWAP: {
9733     EVT T = N->getValueType(0);
9734     assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
9735     SDValue cpInL, cpInH;
9736     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9737                         DAG.getConstant(0, MVT::i32));
9738     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
9739                         DAG.getConstant(1, MVT::i32));
9740     cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
9741     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
9742                              cpInL.getValue(1));
9743     SDValue swapInL, swapInH;
9744     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9745                           DAG.getConstant(0, MVT::i32));
9746     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
9747                           DAG.getConstant(1, MVT::i32));
9748     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
9749                                cpInH.getValue(1));
9750     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
9751                                swapInL.getValue(1));
9752     SDValue Ops[] = { swapInH.getValue(0),
9753                       N->getOperand(1),
9754                       swapInH.getValue(1) };
9755     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Glue);
9756     MachineMemOperand *MMO = cast<AtomicSDNode>(N)->getMemOperand();
9757     SDValue Result = DAG.getMemIntrinsicNode(X86ISD::LCMPXCHG8_DAG, dl, Tys,
9758                                              Ops, 3, T, MMO);
9759     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
9760                                         MVT::i32, Result.getValue(1));
9761     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
9762                                         MVT::i32, cpOutL.getValue(2));
9763     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
9764     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
9765     Results.push_back(cpOutH.getValue(1));
9766     return;
9767   }
9768   case ISD::ATOMIC_LOAD_ADD:
9769     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
9770     return;
9771   case ISD::ATOMIC_LOAD_AND:
9772     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
9773     return;
9774   case ISD::ATOMIC_LOAD_NAND:
9775     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
9776     return;
9777   case ISD::ATOMIC_LOAD_OR:
9778     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
9779     return;
9780   case ISD::ATOMIC_LOAD_SUB:
9781     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
9782     return;
9783   case ISD::ATOMIC_LOAD_XOR:
9784     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
9785     return;
9786   case ISD::ATOMIC_SWAP:
9787     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
9788     return;
9789   }
9790 }
9791
9792 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
9793   switch (Opcode) {
9794   default: return NULL;
9795   case X86ISD::BSF:                return "X86ISD::BSF";
9796   case X86ISD::BSR:                return "X86ISD::BSR";
9797   case X86ISD::SHLD:               return "X86ISD::SHLD";
9798   case X86ISD::SHRD:               return "X86ISD::SHRD";
9799   case X86ISD::FAND:               return "X86ISD::FAND";
9800   case X86ISD::FOR:                return "X86ISD::FOR";
9801   case X86ISD::FXOR:               return "X86ISD::FXOR";
9802   case X86ISD::FSRL:               return "X86ISD::FSRL";
9803   case X86ISD::FILD:               return "X86ISD::FILD";
9804   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
9805   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
9806   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
9807   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
9808   case X86ISD::FLD:                return "X86ISD::FLD";
9809   case X86ISD::FST:                return "X86ISD::FST";
9810   case X86ISD::CALL:               return "X86ISD::CALL";
9811   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
9812   case X86ISD::BT:                 return "X86ISD::BT";
9813   case X86ISD::CMP:                return "X86ISD::CMP";
9814   case X86ISD::COMI:               return "X86ISD::COMI";
9815   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
9816   case X86ISD::SETCC:              return "X86ISD::SETCC";
9817   case X86ISD::SETCC_CARRY:        return "X86ISD::SETCC_CARRY";
9818   case X86ISD::FSETCCsd:           return "X86ISD::FSETCCsd";
9819   case X86ISD::FSETCCss:           return "X86ISD::FSETCCss";
9820   case X86ISD::CMOV:               return "X86ISD::CMOV";
9821   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
9822   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
9823   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
9824   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
9825   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
9826   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
9827   case X86ISD::WrapperRIP:         return "X86ISD::WrapperRIP";
9828   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
9829   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
9830   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
9831   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
9832   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
9833   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
9834   case X86ISD::ANDNP:              return "X86ISD::ANDNP";
9835   case X86ISD::PSIGNB:             return "X86ISD::PSIGNB";
9836   case X86ISD::PSIGNW:             return "X86ISD::PSIGNW";
9837   case X86ISD::PSIGND:             return "X86ISD::PSIGND";
9838   case X86ISD::PBLENDVB:           return "X86ISD::PBLENDVB";
9839   case X86ISD::FMAX:               return "X86ISD::FMAX";
9840   case X86ISD::FMIN:               return "X86ISD::FMIN";
9841   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
9842   case X86ISD::FRCP:               return "X86ISD::FRCP";
9843   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
9844   case X86ISD::TLSCALL:            return "X86ISD::TLSCALL";
9845   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
9846   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
9847   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
9848   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
9849   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
9850   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
9851   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
9852   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
9853   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
9854   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
9855   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
9856   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
9857   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
9858   case X86ISD::VSHL:               return "X86ISD::VSHL";
9859   case X86ISD::VSRL:               return "X86ISD::VSRL";
9860   case X86ISD::CMPPD:              return "X86ISD::CMPPD";
9861   case X86ISD::CMPPS:              return "X86ISD::CMPPS";
9862   case X86ISD::PCMPEQB:            return "X86ISD::PCMPEQB";
9863   case X86ISD::PCMPEQW:            return "X86ISD::PCMPEQW";
9864   case X86ISD::PCMPEQD:            return "X86ISD::PCMPEQD";
9865   case X86ISD::PCMPEQQ:            return "X86ISD::PCMPEQQ";
9866   case X86ISD::PCMPGTB:            return "X86ISD::PCMPGTB";
9867   case X86ISD::PCMPGTW:            return "X86ISD::PCMPGTW";
9868   case X86ISD::PCMPGTD:            return "X86ISD::PCMPGTD";
9869   case X86ISD::PCMPGTQ:            return "X86ISD::PCMPGTQ";
9870   case X86ISD::ADD:                return "X86ISD::ADD";
9871   case X86ISD::SUB:                return "X86ISD::SUB";
9872   case X86ISD::ADC:                return "X86ISD::ADC";
9873   case X86ISD::SBB:                return "X86ISD::SBB";
9874   case X86ISD::SMUL:               return "X86ISD::SMUL";
9875   case X86ISD::UMUL:               return "X86ISD::UMUL";
9876   case X86ISD::INC:                return "X86ISD::INC";
9877   case X86ISD::DEC:                return "X86ISD::DEC";
9878   case X86ISD::OR:                 return "X86ISD::OR";
9879   case X86ISD::XOR:                return "X86ISD::XOR";
9880   case X86ISD::AND:                return "X86ISD::AND";
9881   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
9882   case X86ISD::PTEST:              return "X86ISD::PTEST";
9883   case X86ISD::TESTP:              return "X86ISD::TESTP";
9884   case X86ISD::PALIGN:             return "X86ISD::PALIGN";
9885   case X86ISD::PSHUFD:             return "X86ISD::PSHUFD";
9886   case X86ISD::PSHUFHW:            return "X86ISD::PSHUFHW";
9887   case X86ISD::PSHUFHW_LD:         return "X86ISD::PSHUFHW_LD";
9888   case X86ISD::PSHUFLW:            return "X86ISD::PSHUFLW";
9889   case X86ISD::PSHUFLW_LD:         return "X86ISD::PSHUFLW_LD";
9890   case X86ISD::SHUFPS:             return "X86ISD::SHUFPS";
9891   case X86ISD::SHUFPD:             return "X86ISD::SHUFPD";
9892   case X86ISD::MOVLHPS:            return "X86ISD::MOVLHPS";
9893   case X86ISD::MOVLHPD:            return "X86ISD::MOVLHPD";
9894   case X86ISD::MOVHLPS:            return "X86ISD::MOVHLPS";
9895   case X86ISD::MOVHLPD:            return "X86ISD::MOVHLPD";
9896   case X86ISD::MOVLPS:             return "X86ISD::MOVLPS";
9897   case X86ISD::MOVLPD:             return "X86ISD::MOVLPD";
9898   case X86ISD::MOVDDUP:            return "X86ISD::MOVDDUP";
9899   case X86ISD::MOVSHDUP:           return "X86ISD::MOVSHDUP";
9900   case X86ISD::MOVSLDUP:           return "X86ISD::MOVSLDUP";
9901   case X86ISD::MOVSHDUP_LD:        return "X86ISD::MOVSHDUP_LD";
9902   case X86ISD::MOVSLDUP_LD:        return "X86ISD::MOVSLDUP_LD";
9903   case X86ISD::MOVSD:              return "X86ISD::MOVSD";
9904   case X86ISD::MOVSS:              return "X86ISD::MOVSS";
9905   case X86ISD::UNPCKLPS:           return "X86ISD::UNPCKLPS";
9906   case X86ISD::UNPCKLPD:           return "X86ISD::UNPCKLPD";
9907   case X86ISD::VUNPCKLPDY:         return "X86ISD::VUNPCKLPDY";
9908   case X86ISD::UNPCKHPS:           return "X86ISD::UNPCKHPS";
9909   case X86ISD::UNPCKHPD:           return "X86ISD::UNPCKHPD";
9910   case X86ISD::PUNPCKLBW:          return "X86ISD::PUNPCKLBW";
9911   case X86ISD::PUNPCKLWD:          return "X86ISD::PUNPCKLWD";
9912   case X86ISD::PUNPCKLDQ:          return "X86ISD::PUNPCKLDQ";
9913   case X86ISD::PUNPCKLQDQ:         return "X86ISD::PUNPCKLQDQ";
9914   case X86ISD::PUNPCKHBW:          return "X86ISD::PUNPCKHBW";
9915   case X86ISD::PUNPCKHWD:          return "X86ISD::PUNPCKHWD";
9916   case X86ISD::PUNPCKHDQ:          return "X86ISD::PUNPCKHDQ";
9917   case X86ISD::PUNPCKHQDQ:         return "X86ISD::PUNPCKHQDQ";
9918   case X86ISD::VPERMILPS:          return "X86ISD::VPERMILPS";
9919   case X86ISD::VPERMILPSY:         return "X86ISD::VPERMILPSY";
9920   case X86ISD::VPERMILPD:          return "X86ISD::VPERMILPD";
9921   case X86ISD::VPERMILPDY:         return "X86ISD::VPERMILPDY";
9922   case X86ISD::VASTART_SAVE_XMM_REGS: return "X86ISD::VASTART_SAVE_XMM_REGS";
9923   case X86ISD::VAARG_64:           return "X86ISD::VAARG_64";
9924   case X86ISD::WIN_ALLOCA:         return "X86ISD::WIN_ALLOCA";
9925   case X86ISD::MEMBARRIER:         return "X86ISD::MEMBARRIER";
9926   }
9927 }
9928
9929 // isLegalAddressingMode - Return true if the addressing mode represented
9930 // by AM is legal for this target, for a load/store of the specified type.
9931 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
9932                                               Type *Ty) const {
9933   // X86 supports extremely general addressing modes.
9934   CodeModel::Model M = getTargetMachine().getCodeModel();
9935   Reloc::Model R = getTargetMachine().getRelocationModel();
9936
9937   // X86 allows a sign-extended 32-bit immediate field as a displacement.
9938   if (!X86::isOffsetSuitableForCodeModel(AM.BaseOffs, M, AM.BaseGV != NULL))
9939     return false;
9940
9941   if (AM.BaseGV) {
9942     unsigned GVFlags =
9943       Subtarget->ClassifyGlobalReference(AM.BaseGV, getTargetMachine());
9944
9945     // If a reference to this global requires an extra load, we can't fold it.
9946     if (isGlobalStubReference(GVFlags))
9947       return false;
9948
9949     // If BaseGV requires a register for the PIC base, we cannot also have a
9950     // BaseReg specified.
9951     if (AM.HasBaseReg && isGlobalRelativeToPICBase(GVFlags))
9952       return false;
9953
9954     // If lower 4G is not available, then we must use rip-relative addressing.
9955     if ((M != CodeModel::Small || R != Reloc::Static) &&
9956         Subtarget->is64Bit() && (AM.BaseOffs || AM.Scale > 1))
9957       return false;
9958   }
9959
9960   switch (AM.Scale) {
9961   case 0:
9962   case 1:
9963   case 2:
9964   case 4:
9965   case 8:
9966     // These scales always work.
9967     break;
9968   case 3:
9969   case 5:
9970   case 9:
9971     // These scales are formed with basereg+scalereg.  Only accept if there is
9972     // no basereg yet.
9973     if (AM.HasBaseReg)
9974       return false;
9975     break;
9976   default:  // Other stuff never works.
9977     return false;
9978   }
9979
9980   return true;
9981 }
9982
9983
9984 bool X86TargetLowering::isTruncateFree(Type *Ty1, Type *Ty2) const {
9985   if (!Ty1->isIntegerTy() || !Ty2->isIntegerTy())
9986     return false;
9987   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
9988   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
9989   if (NumBits1 <= NumBits2)
9990     return false;
9991   return true;
9992 }
9993
9994 bool X86TargetLowering::isTruncateFree(EVT VT1, EVT VT2) const {
9995   if (!VT1.isInteger() || !VT2.isInteger())
9996     return false;
9997   unsigned NumBits1 = VT1.getSizeInBits();
9998   unsigned NumBits2 = VT2.getSizeInBits();
9999   if (NumBits1 <= NumBits2)
10000     return false;
10001   return true;
10002 }
10003
10004 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
10005   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
10006   return Ty1->isIntegerTy(32) && Ty2->isIntegerTy(64) && Subtarget->is64Bit();
10007 }
10008
10009 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
10010   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
10011   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
10012 }
10013
10014 bool X86TargetLowering::isNarrowingProfitable(EVT VT1, EVT VT2) const {
10015   // i16 instructions are longer (0x66 prefix) and potentially slower.
10016   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
10017 }
10018
10019 /// isShuffleMaskLegal - Targets can use this to indicate that they only
10020 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
10021 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
10022 /// are assumed to be legal.
10023 bool
10024 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M,
10025                                       EVT VT) const {
10026   // Very little shuffling can be done for 64-bit vectors right now.
10027   if (VT.getSizeInBits() == 64)
10028     return isPALIGNRMask(M, VT, Subtarget->hasSSSE3());
10029
10030   // FIXME: pshufb, blends, shifts.
10031   return (VT.getVectorNumElements() == 2 ||
10032           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
10033           isMOVLMask(M, VT) ||
10034           isSHUFPMask(M, VT) ||
10035           isPSHUFDMask(M, VT) ||
10036           isPSHUFHWMask(M, VT) ||
10037           isPSHUFLWMask(M, VT) ||
10038           isPALIGNRMask(M, VT, Subtarget->hasSSSE3()) ||
10039           isUNPCKLMask(M, VT) ||
10040           isUNPCKHMask(M, VT) ||
10041           isUNPCKL_v_undef_Mask(M, VT) ||
10042           isUNPCKH_v_undef_Mask(M, VT));
10043 }
10044
10045 bool
10046 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
10047                                           EVT VT) const {
10048   unsigned NumElts = VT.getVectorNumElements();
10049   // FIXME: This collection of masks seems suspect.
10050   if (NumElts == 2)
10051     return true;
10052   if (NumElts == 4 && VT.getSizeInBits() == 128) {
10053     return (isMOVLMask(Mask, VT)  ||
10054             isCommutedMOVLMask(Mask, VT, true) ||
10055             isSHUFPMask(Mask, VT) ||
10056             isCommutedSHUFPMask(Mask, VT));
10057   }
10058   return false;
10059 }
10060
10061 //===----------------------------------------------------------------------===//
10062 //                           X86 Scheduler Hooks
10063 //===----------------------------------------------------------------------===//
10064
10065 // private utility function
10066 MachineBasicBlock *
10067 X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
10068                                                        MachineBasicBlock *MBB,
10069                                                        unsigned regOpc,
10070                                                        unsigned immOpc,
10071                                                        unsigned LoadOpc,
10072                                                        unsigned CXchgOpc,
10073                                                        unsigned notOpc,
10074                                                        unsigned EAXreg,
10075                                                        TargetRegisterClass *RC,
10076                                                        bool invSrc) const {
10077   // For the atomic bitwise operator, we generate
10078   //   thisMBB:
10079   //   newMBB:
10080   //     ld  t1 = [bitinstr.addr]
10081   //     op  t2 = t1, [bitinstr.val]
10082   //     mov EAX = t1
10083   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
10084   //     bz  newMBB
10085   //     fallthrough -->nextMBB
10086   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10087   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10088   MachineFunction::iterator MBBIter = MBB;
10089   ++MBBIter;
10090
10091   /// First build the CFG
10092   MachineFunction *F = MBB->getParent();
10093   MachineBasicBlock *thisMBB = MBB;
10094   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10095   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10096   F->insert(MBBIter, newMBB);
10097   F->insert(MBBIter, nextMBB);
10098
10099   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10100   nextMBB->splice(nextMBB->begin(), thisMBB,
10101                   llvm::next(MachineBasicBlock::iterator(bInstr)),
10102                   thisMBB->end());
10103   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10104
10105   // Update thisMBB to fall through to newMBB
10106   thisMBB->addSuccessor(newMBB);
10107
10108   // newMBB jumps to itself and fall through to nextMBB
10109   newMBB->addSuccessor(nextMBB);
10110   newMBB->addSuccessor(newMBB);
10111
10112   // Insert instructions into newMBB based on incoming instruction
10113   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
10114          "unexpected number of operands");
10115   DebugLoc dl = bInstr->getDebugLoc();
10116   MachineOperand& destOper = bInstr->getOperand(0);
10117   MachineOperand* argOpers[2 + X86::AddrNumOperands];
10118   int numArgs = bInstr->getNumOperands() - 1;
10119   for (int i=0; i < numArgs; ++i)
10120     argOpers[i] = &bInstr->getOperand(i+1);
10121
10122   // x86 address has 4 operands: base, index, scale, and displacement
10123   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
10124   int valArgIndx = lastAddrIndx + 1;
10125
10126   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
10127   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
10128   for (int i=0; i <= lastAddrIndx; ++i)
10129     (*MIB).addOperand(*argOpers[i]);
10130
10131   unsigned tt = F->getRegInfo().createVirtualRegister(RC);
10132   if (invSrc) {
10133     MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
10134   }
10135   else
10136     tt = t1;
10137
10138   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
10139   assert((argOpers[valArgIndx]->isReg() ||
10140           argOpers[valArgIndx]->isImm()) &&
10141          "invalid operand");
10142   if (argOpers[valArgIndx]->isReg())
10143     MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
10144   else
10145     MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
10146   MIB.addReg(tt);
10147   (*MIB).addOperand(*argOpers[valArgIndx]);
10148
10149   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), EAXreg);
10150   MIB.addReg(t1);
10151
10152   MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
10153   for (int i=0; i <= lastAddrIndx; ++i)
10154     (*MIB).addOperand(*argOpers[i]);
10155   MIB.addReg(t2);
10156   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
10157   (*MIB).setMemRefs(bInstr->memoperands_begin(),
10158                     bInstr->memoperands_end());
10159
10160   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
10161   MIB.addReg(EAXreg);
10162
10163   // insert branch
10164   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
10165
10166   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
10167   return nextMBB;
10168 }
10169
10170 // private utility function:  64 bit atomics on 32 bit host.
10171 MachineBasicBlock *
10172 X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
10173                                                        MachineBasicBlock *MBB,
10174                                                        unsigned regOpcL,
10175                                                        unsigned regOpcH,
10176                                                        unsigned immOpcL,
10177                                                        unsigned immOpcH,
10178                                                        bool invSrc) const {
10179   // For the atomic bitwise operator, we generate
10180   //   thisMBB (instructions are in pairs, except cmpxchg8b)
10181   //     ld t1,t2 = [bitinstr.addr]
10182   //   newMBB:
10183   //     out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
10184   //     op  t5, t6 <- out1, out2, [bitinstr.val]
10185   //      (for SWAP, substitute:  mov t5, t6 <- [bitinstr.val])
10186   //     mov ECX, EBX <- t5, t6
10187   //     mov EAX, EDX <- t1, t2
10188   //     cmpxchg8b [bitinstr.addr]  [EAX, EDX, EBX, ECX implicit]
10189   //     mov t3, t4 <- EAX, EDX
10190   //     bz  newMBB
10191   //     result in out1, out2
10192   //     fallthrough -->nextMBB
10193
10194   const TargetRegisterClass *RC = X86::GR32RegisterClass;
10195   const unsigned LoadOpc = X86::MOV32rm;
10196   const unsigned NotOpc = X86::NOT32r;
10197   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10198   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10199   MachineFunction::iterator MBBIter = MBB;
10200   ++MBBIter;
10201
10202   /// First build the CFG
10203   MachineFunction *F = MBB->getParent();
10204   MachineBasicBlock *thisMBB = MBB;
10205   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10206   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10207   F->insert(MBBIter, newMBB);
10208   F->insert(MBBIter, nextMBB);
10209
10210   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10211   nextMBB->splice(nextMBB->begin(), thisMBB,
10212                   llvm::next(MachineBasicBlock::iterator(bInstr)),
10213                   thisMBB->end());
10214   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10215
10216   // Update thisMBB to fall through to newMBB
10217   thisMBB->addSuccessor(newMBB);
10218
10219   // newMBB jumps to itself and fall through to nextMBB
10220   newMBB->addSuccessor(nextMBB);
10221   newMBB->addSuccessor(newMBB);
10222
10223   DebugLoc dl = bInstr->getDebugLoc();
10224   // Insert instructions into newMBB based on incoming instruction
10225   // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
10226   assert(bInstr->getNumOperands() < X86::AddrNumOperands + 14 &&
10227          "unexpected number of operands");
10228   MachineOperand& dest1Oper = bInstr->getOperand(0);
10229   MachineOperand& dest2Oper = bInstr->getOperand(1);
10230   MachineOperand* argOpers[2 + X86::AddrNumOperands];
10231   for (int i=0; i < 2 + X86::AddrNumOperands; ++i) {
10232     argOpers[i] = &bInstr->getOperand(i+2);
10233
10234     // We use some of the operands multiple times, so conservatively just
10235     // clear any kill flags that might be present.
10236     if (argOpers[i]->isReg() && argOpers[i]->isUse())
10237       argOpers[i]->setIsKill(false);
10238   }
10239
10240   // x86 address has 5 operands: base, index, scale, displacement, and segment.
10241   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
10242
10243   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
10244   MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
10245   for (int i=0; i <= lastAddrIndx; ++i)
10246     (*MIB).addOperand(*argOpers[i]);
10247   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
10248   MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
10249   // add 4 to displacement.
10250   for (int i=0; i <= lastAddrIndx-2; ++i)
10251     (*MIB).addOperand(*argOpers[i]);
10252   MachineOperand newOp3 = *(argOpers[3]);
10253   if (newOp3.isImm())
10254     newOp3.setImm(newOp3.getImm()+4);
10255   else
10256     newOp3.setOffset(newOp3.getOffset()+4);
10257   (*MIB).addOperand(newOp3);
10258   (*MIB).addOperand(*argOpers[lastAddrIndx]);
10259
10260   // t3/4 are defined later, at the bottom of the loop
10261   unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
10262   unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
10263   BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
10264     .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
10265   BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
10266     .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
10267
10268   // The subsequent operations should be using the destination registers of
10269   //the PHI instructions.
10270   if (invSrc) {
10271     t1 = F->getRegInfo().createVirtualRegister(RC);
10272     t2 = F->getRegInfo().createVirtualRegister(RC);
10273     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t1).addReg(dest1Oper.getReg());
10274     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), t2).addReg(dest2Oper.getReg());
10275   } else {
10276     t1 = dest1Oper.getReg();
10277     t2 = dest2Oper.getReg();
10278   }
10279
10280   int valArgIndx = lastAddrIndx + 1;
10281   assert((argOpers[valArgIndx]->isReg() ||
10282           argOpers[valArgIndx]->isImm()) &&
10283          "invalid operand");
10284   unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
10285   unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
10286   if (argOpers[valArgIndx]->isReg())
10287     MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
10288   else
10289     MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
10290   if (regOpcL != X86::MOV32rr)
10291     MIB.addReg(t1);
10292   (*MIB).addOperand(*argOpers[valArgIndx]);
10293   assert(argOpers[valArgIndx + 1]->isReg() ==
10294          argOpers[valArgIndx]->isReg());
10295   assert(argOpers[valArgIndx + 1]->isImm() ==
10296          argOpers[valArgIndx]->isImm());
10297   if (argOpers[valArgIndx + 1]->isReg())
10298     MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
10299   else
10300     MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
10301   if (regOpcH != X86::MOV32rr)
10302     MIB.addReg(t2);
10303   (*MIB).addOperand(*argOpers[valArgIndx + 1]);
10304
10305   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
10306   MIB.addReg(t1);
10307   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EDX);
10308   MIB.addReg(t2);
10309
10310   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EBX);
10311   MIB.addReg(t5);
10312   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::ECX);
10313   MIB.addReg(t6);
10314
10315   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
10316   for (int i=0; i <= lastAddrIndx; ++i)
10317     (*MIB).addOperand(*argOpers[i]);
10318
10319   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
10320   (*MIB).setMemRefs(bInstr->memoperands_begin(),
10321                     bInstr->memoperands_end());
10322
10323   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t3);
10324   MIB.addReg(X86::EAX);
10325   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t4);
10326   MIB.addReg(X86::EDX);
10327
10328   // insert branch
10329   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
10330
10331   bInstr->eraseFromParent();   // The pseudo instruction is gone now.
10332   return nextMBB;
10333 }
10334
10335 // private utility function
10336 MachineBasicBlock *
10337 X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
10338                                                       MachineBasicBlock *MBB,
10339                                                       unsigned cmovOpc) const {
10340   // For the atomic min/max operator, we generate
10341   //   thisMBB:
10342   //   newMBB:
10343   //     ld t1 = [min/max.addr]
10344   //     mov t2 = [min/max.val]
10345   //     cmp  t1, t2
10346   //     cmov[cond] t2 = t1
10347   //     mov EAX = t1
10348   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
10349   //     bz   newMBB
10350   //     fallthrough -->nextMBB
10351   //
10352   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10353   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10354   MachineFunction::iterator MBBIter = MBB;
10355   ++MBBIter;
10356
10357   /// First build the CFG
10358   MachineFunction *F = MBB->getParent();
10359   MachineBasicBlock *thisMBB = MBB;
10360   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
10361   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
10362   F->insert(MBBIter, newMBB);
10363   F->insert(MBBIter, nextMBB);
10364
10365   // Transfer the remainder of thisMBB and its successor edges to nextMBB.
10366   nextMBB->splice(nextMBB->begin(), thisMBB,
10367                   llvm::next(MachineBasicBlock::iterator(mInstr)),
10368                   thisMBB->end());
10369   nextMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10370
10371   // Update thisMBB to fall through to newMBB
10372   thisMBB->addSuccessor(newMBB);
10373
10374   // newMBB jumps to newMBB and fall through to nextMBB
10375   newMBB->addSuccessor(nextMBB);
10376   newMBB->addSuccessor(newMBB);
10377
10378   DebugLoc dl = mInstr->getDebugLoc();
10379   // Insert instructions into newMBB based on incoming instruction
10380   assert(mInstr->getNumOperands() < X86::AddrNumOperands + 4 &&
10381          "unexpected number of operands");
10382   MachineOperand& destOper = mInstr->getOperand(0);
10383   MachineOperand* argOpers[2 + X86::AddrNumOperands];
10384   int numArgs = mInstr->getNumOperands() - 1;
10385   for (int i=0; i < numArgs; ++i)
10386     argOpers[i] = &mInstr->getOperand(i+1);
10387
10388   // x86 address has 4 operands: base, index, scale, and displacement
10389   int lastAddrIndx = X86::AddrNumOperands - 1; // [0,3]
10390   int valArgIndx = lastAddrIndx + 1;
10391
10392   unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
10393   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
10394   for (int i=0; i <= lastAddrIndx; ++i)
10395     (*MIB).addOperand(*argOpers[i]);
10396
10397   // We only support register and immediate values
10398   assert((argOpers[valArgIndx]->isReg() ||
10399           argOpers[valArgIndx]->isImm()) &&
10400          "invalid operand");
10401
10402   unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
10403   if (argOpers[valArgIndx]->isReg())
10404     MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), t2);
10405   else
10406     MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
10407   (*MIB).addOperand(*argOpers[valArgIndx]);
10408
10409   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), X86::EAX);
10410   MIB.addReg(t1);
10411
10412   MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
10413   MIB.addReg(t1);
10414   MIB.addReg(t2);
10415
10416   // Generate movc
10417   unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
10418   MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
10419   MIB.addReg(t2);
10420   MIB.addReg(t1);
10421
10422   // Cmp and exchange if none has modified the memory location
10423   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
10424   for (int i=0; i <= lastAddrIndx; ++i)
10425     (*MIB).addOperand(*argOpers[i]);
10426   MIB.addReg(t3);
10427   assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
10428   (*MIB).setMemRefs(mInstr->memoperands_begin(),
10429                     mInstr->memoperands_end());
10430
10431   MIB = BuildMI(newMBB, dl, TII->get(TargetOpcode::COPY), destOper.getReg());
10432   MIB.addReg(X86::EAX);
10433
10434   // insert branch
10435   BuildMI(newMBB, dl, TII->get(X86::JNE_4)).addMBB(newMBB);
10436
10437   mInstr->eraseFromParent();   // The pseudo instruction is gone now.
10438   return nextMBB;
10439 }
10440
10441 // FIXME: When we get size specific XMM0 registers, i.e. XMM0_V16I8
10442 // or XMM0_V32I8 in AVX all of this code can be replaced with that
10443 // in the .td file.
10444 MachineBasicBlock *
10445 X86TargetLowering::EmitPCMP(MachineInstr *MI, MachineBasicBlock *BB,
10446                             unsigned numArgs, bool memArg) const {
10447   assert((Subtarget->hasSSE42() || Subtarget->hasAVX()) &&
10448          "Target must have SSE4.2 or AVX features enabled");
10449
10450   DebugLoc dl = MI->getDebugLoc();
10451   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10452   unsigned Opc;
10453   if (!Subtarget->hasAVX()) {
10454     if (memArg)
10455       Opc = numArgs == 3 ? X86::PCMPISTRM128rm : X86::PCMPESTRM128rm;
10456     else
10457       Opc = numArgs == 3 ? X86::PCMPISTRM128rr : X86::PCMPESTRM128rr;
10458   } else {
10459     if (memArg)
10460       Opc = numArgs == 3 ? X86::VPCMPISTRM128rm : X86::VPCMPESTRM128rm;
10461     else
10462       Opc = numArgs == 3 ? X86::VPCMPISTRM128rr : X86::VPCMPESTRM128rr;
10463   }
10464
10465   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(Opc));
10466   for (unsigned i = 0; i < numArgs; ++i) {
10467     MachineOperand &Op = MI->getOperand(i+1);
10468     if (!(Op.isReg() && Op.isImplicit()))
10469       MIB.addOperand(Op);
10470   }
10471   BuildMI(*BB, MI, dl, TII->get(X86::MOVAPSrr), MI->getOperand(0).getReg())
10472     .addReg(X86::XMM0);
10473
10474   MI->eraseFromParent();
10475   return BB;
10476 }
10477
10478 MachineBasicBlock *
10479 X86TargetLowering::EmitMonitor(MachineInstr *MI, MachineBasicBlock *BB) const {
10480   DebugLoc dl = MI->getDebugLoc();
10481   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10482
10483   // Address into RAX/EAX, other two args into ECX, EDX.
10484   unsigned MemOpc = Subtarget->is64Bit() ? X86::LEA64r : X86::LEA32r;
10485   unsigned MemReg = Subtarget->is64Bit() ? X86::RAX : X86::EAX;
10486   MachineInstrBuilder MIB = BuildMI(*BB, MI, dl, TII->get(MemOpc), MemReg);
10487   for (int i = 0; i < X86::AddrNumOperands; ++i)
10488     MIB.addOperand(MI->getOperand(i));
10489
10490   unsigned ValOps = X86::AddrNumOperands;
10491   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10492     .addReg(MI->getOperand(ValOps).getReg());
10493   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EDX)
10494     .addReg(MI->getOperand(ValOps+1).getReg());
10495
10496   // The instruction doesn't actually take any operands though.
10497   BuildMI(*BB, MI, dl, TII->get(X86::MONITORrrr));
10498
10499   MI->eraseFromParent(); // The pseudo is gone now.
10500   return BB;
10501 }
10502
10503 MachineBasicBlock *
10504 X86TargetLowering::EmitMwait(MachineInstr *MI, MachineBasicBlock *BB) const {
10505   DebugLoc dl = MI->getDebugLoc();
10506   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10507
10508   // First arg in ECX, the second in EAX.
10509   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::ECX)
10510     .addReg(MI->getOperand(0).getReg());
10511   BuildMI(*BB, MI, dl, TII->get(TargetOpcode::COPY), X86::EAX)
10512     .addReg(MI->getOperand(1).getReg());
10513
10514   // The instruction doesn't actually take any operands though.
10515   BuildMI(*BB, MI, dl, TII->get(X86::MWAITrr));
10516
10517   MI->eraseFromParent(); // The pseudo is gone now.
10518   return BB;
10519 }
10520
10521 MachineBasicBlock *
10522 X86TargetLowering::EmitVAARG64WithCustomInserter(
10523                    MachineInstr *MI,
10524                    MachineBasicBlock *MBB) const {
10525   // Emit va_arg instruction on X86-64.
10526
10527   // Operands to this pseudo-instruction:
10528   // 0  ) Output        : destination address (reg)
10529   // 1-5) Input         : va_list address (addr, i64mem)
10530   // 6  ) ArgSize       : Size (in bytes) of vararg type
10531   // 7  ) ArgMode       : 0=overflow only, 1=use gp_offset, 2=use fp_offset
10532   // 8  ) Align         : Alignment of type
10533   // 9  ) EFLAGS (implicit-def)
10534
10535   assert(MI->getNumOperands() == 10 && "VAARG_64 should have 10 operands!");
10536   assert(X86::AddrNumOperands == 5 && "VAARG_64 assumes 5 address operands");
10537
10538   unsigned DestReg = MI->getOperand(0).getReg();
10539   MachineOperand &Base = MI->getOperand(1);
10540   MachineOperand &Scale = MI->getOperand(2);
10541   MachineOperand &Index = MI->getOperand(3);
10542   MachineOperand &Disp = MI->getOperand(4);
10543   MachineOperand &Segment = MI->getOperand(5);
10544   unsigned ArgSize = MI->getOperand(6).getImm();
10545   unsigned ArgMode = MI->getOperand(7).getImm();
10546   unsigned Align = MI->getOperand(8).getImm();
10547
10548   // Memory Reference
10549   assert(MI->hasOneMemOperand() && "Expected VAARG_64 to have one memoperand");
10550   MachineInstr::mmo_iterator MMOBegin = MI->memoperands_begin();
10551   MachineInstr::mmo_iterator MMOEnd = MI->memoperands_end();
10552
10553   // Machine Information
10554   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10555   MachineRegisterInfo &MRI = MBB->getParent()->getRegInfo();
10556   const TargetRegisterClass *AddrRegClass = getRegClassFor(MVT::i64);
10557   const TargetRegisterClass *OffsetRegClass = getRegClassFor(MVT::i32);
10558   DebugLoc DL = MI->getDebugLoc();
10559
10560   // struct va_list {
10561   //   i32   gp_offset
10562   //   i32   fp_offset
10563   //   i64   overflow_area (address)
10564   //   i64   reg_save_area (address)
10565   // }
10566   // sizeof(va_list) = 24
10567   // alignment(va_list) = 8
10568
10569   unsigned TotalNumIntRegs = 6;
10570   unsigned TotalNumXMMRegs = 8;
10571   bool UseGPOffset = (ArgMode == 1);
10572   bool UseFPOffset = (ArgMode == 2);
10573   unsigned MaxOffset = TotalNumIntRegs * 8 +
10574                        (UseFPOffset ? TotalNumXMMRegs * 16 : 0);
10575
10576   /* Align ArgSize to a multiple of 8 */
10577   unsigned ArgSizeA8 = (ArgSize + 7) & ~7;
10578   bool NeedsAlign = (Align > 8);
10579
10580   MachineBasicBlock *thisMBB = MBB;
10581   MachineBasicBlock *overflowMBB;
10582   MachineBasicBlock *offsetMBB;
10583   MachineBasicBlock *endMBB;
10584
10585   unsigned OffsetDestReg = 0;    // Argument address computed by offsetMBB
10586   unsigned OverflowDestReg = 0;  // Argument address computed by overflowMBB
10587   unsigned OffsetReg = 0;
10588
10589   if (!UseGPOffset && !UseFPOffset) {
10590     // If we only pull from the overflow region, we don't create a branch.
10591     // We don't need to alter control flow.
10592     OffsetDestReg = 0; // unused
10593     OverflowDestReg = DestReg;
10594
10595     offsetMBB = NULL;
10596     overflowMBB = thisMBB;
10597     endMBB = thisMBB;
10598   } else {
10599     // First emit code to check if gp_offset (or fp_offset) is below the bound.
10600     // If so, pull the argument from reg_save_area. (branch to offsetMBB)
10601     // If not, pull from overflow_area. (branch to overflowMBB)
10602     //
10603     //       thisMBB
10604     //         |     .
10605     //         |        .
10606     //     offsetMBB   overflowMBB
10607     //         |        .
10608     //         |     .
10609     //        endMBB
10610
10611     // Registers for the PHI in endMBB
10612     OffsetDestReg = MRI.createVirtualRegister(AddrRegClass);
10613     OverflowDestReg = MRI.createVirtualRegister(AddrRegClass);
10614
10615     const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10616     MachineFunction *MF = MBB->getParent();
10617     overflowMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10618     offsetMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10619     endMBB = MF->CreateMachineBasicBlock(LLVM_BB);
10620
10621     MachineFunction::iterator MBBIter = MBB;
10622     ++MBBIter;
10623
10624     // Insert the new basic blocks
10625     MF->insert(MBBIter, offsetMBB);
10626     MF->insert(MBBIter, overflowMBB);
10627     MF->insert(MBBIter, endMBB);
10628
10629     // Transfer the remainder of MBB and its successor edges to endMBB.
10630     endMBB->splice(endMBB->begin(), thisMBB,
10631                     llvm::next(MachineBasicBlock::iterator(MI)),
10632                     thisMBB->end());
10633     endMBB->transferSuccessorsAndUpdatePHIs(thisMBB);
10634
10635     // Make offsetMBB and overflowMBB successors of thisMBB
10636     thisMBB->addSuccessor(offsetMBB);
10637     thisMBB->addSuccessor(overflowMBB);
10638
10639     // endMBB is a successor of both offsetMBB and overflowMBB
10640     offsetMBB->addSuccessor(endMBB);
10641     overflowMBB->addSuccessor(endMBB);
10642
10643     // Load the offset value into a register
10644     OffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10645     BuildMI(thisMBB, DL, TII->get(X86::MOV32rm), OffsetReg)
10646       .addOperand(Base)
10647       .addOperand(Scale)
10648       .addOperand(Index)
10649       .addDisp(Disp, UseFPOffset ? 4 : 0)
10650       .addOperand(Segment)
10651       .setMemRefs(MMOBegin, MMOEnd);
10652
10653     // Check if there is enough room left to pull this argument.
10654     BuildMI(thisMBB, DL, TII->get(X86::CMP32ri))
10655       .addReg(OffsetReg)
10656       .addImm(MaxOffset + 8 - ArgSizeA8);
10657
10658     // Branch to "overflowMBB" if offset >= max
10659     // Fall through to "offsetMBB" otherwise
10660     BuildMI(thisMBB, DL, TII->get(X86::GetCondBranchFromCond(X86::COND_AE)))
10661       .addMBB(overflowMBB);
10662   }
10663
10664   // In offsetMBB, emit code to use the reg_save_area.
10665   if (offsetMBB) {
10666     assert(OffsetReg != 0);
10667
10668     // Read the reg_save_area address.
10669     unsigned RegSaveReg = MRI.createVirtualRegister(AddrRegClass);
10670     BuildMI(offsetMBB, DL, TII->get(X86::MOV64rm), RegSaveReg)
10671       .addOperand(Base)
10672       .addOperand(Scale)
10673       .addOperand(Index)
10674       .addDisp(Disp, 16)
10675       .addOperand(Segment)
10676       .setMemRefs(MMOBegin, MMOEnd);
10677
10678     // Zero-extend the offset
10679     unsigned OffsetReg64 = MRI.createVirtualRegister(AddrRegClass);
10680       BuildMI(offsetMBB, DL, TII->get(X86::SUBREG_TO_REG), OffsetReg64)
10681         .addImm(0)
10682         .addReg(OffsetReg)
10683         .addImm(X86::sub_32bit);
10684
10685     // Add the offset to the reg_save_area to get the final address.
10686     BuildMI(offsetMBB, DL, TII->get(X86::ADD64rr), OffsetDestReg)
10687       .addReg(OffsetReg64)
10688       .addReg(RegSaveReg);
10689
10690     // Compute the offset for the next argument
10691     unsigned NextOffsetReg = MRI.createVirtualRegister(OffsetRegClass);
10692     BuildMI(offsetMBB, DL, TII->get(X86::ADD32ri), NextOffsetReg)
10693       .addReg(OffsetReg)
10694       .addImm(UseFPOffset ? 16 : 8);
10695
10696     // Store it back into the va_list.
10697     BuildMI(offsetMBB, DL, TII->get(X86::MOV32mr))
10698       .addOperand(Base)
10699       .addOperand(Scale)
10700       .addOperand(Index)
10701       .addDisp(Disp, UseFPOffset ? 4 : 0)
10702       .addOperand(Segment)
10703       .addReg(NextOffsetReg)
10704       .setMemRefs(MMOBegin, MMOEnd);
10705
10706     // Jump to endMBB
10707     BuildMI(offsetMBB, DL, TII->get(X86::JMP_4))
10708       .addMBB(endMBB);
10709   }
10710
10711   //
10712   // Emit code to use overflow area
10713   //
10714
10715   // Load the overflow_area address into a register.
10716   unsigned OverflowAddrReg = MRI.createVirtualRegister(AddrRegClass);
10717   BuildMI(overflowMBB, DL, TII->get(X86::MOV64rm), OverflowAddrReg)
10718     .addOperand(Base)
10719     .addOperand(Scale)
10720     .addOperand(Index)
10721     .addDisp(Disp, 8)
10722     .addOperand(Segment)
10723     .setMemRefs(MMOBegin, MMOEnd);
10724
10725   // If we need to align it, do so. Otherwise, just copy the address
10726   // to OverflowDestReg.
10727   if (NeedsAlign) {
10728     // Align the overflow address
10729     assert((Align & (Align-1)) == 0 && "Alignment must be a power of 2");
10730     unsigned TmpReg = MRI.createVirtualRegister(AddrRegClass);
10731
10732     // aligned_addr = (addr + (align-1)) & ~(align-1)
10733     BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), TmpReg)
10734       .addReg(OverflowAddrReg)
10735       .addImm(Align-1);
10736
10737     BuildMI(overflowMBB, DL, TII->get(X86::AND64ri32), OverflowDestReg)
10738       .addReg(TmpReg)
10739       .addImm(~(uint64_t)(Align-1));
10740   } else {
10741     BuildMI(overflowMBB, DL, TII->get(TargetOpcode::COPY), OverflowDestReg)
10742       .addReg(OverflowAddrReg);
10743   }
10744
10745   // Compute the next overflow address after this argument.
10746   // (the overflow address should be kept 8-byte aligned)
10747   unsigned NextAddrReg = MRI.createVirtualRegister(AddrRegClass);
10748   BuildMI(overflowMBB, DL, TII->get(X86::ADD64ri32), NextAddrReg)
10749     .addReg(OverflowDestReg)
10750     .addImm(ArgSizeA8);
10751
10752   // Store the new overflow address.
10753   BuildMI(overflowMBB, DL, TII->get(X86::MOV64mr))
10754     .addOperand(Base)
10755     .addOperand(Scale)
10756     .addOperand(Index)
10757     .addDisp(Disp, 8)
10758     .addOperand(Segment)
10759     .addReg(NextAddrReg)
10760     .setMemRefs(MMOBegin, MMOEnd);
10761
10762   // If we branched, emit the PHI to the front of endMBB.
10763   if (offsetMBB) {
10764     BuildMI(*endMBB, endMBB->begin(), DL,
10765             TII->get(X86::PHI), DestReg)
10766       .addReg(OffsetDestReg).addMBB(offsetMBB)
10767       .addReg(OverflowDestReg).addMBB(overflowMBB);
10768   }
10769
10770   // Erase the pseudo instruction
10771   MI->eraseFromParent();
10772
10773   return endMBB;
10774 }
10775
10776 MachineBasicBlock *
10777 X86TargetLowering::EmitVAStartSaveXMMRegsWithCustomInserter(
10778                                                  MachineInstr *MI,
10779                                                  MachineBasicBlock *MBB) const {
10780   // Emit code to save XMM registers to the stack. The ABI says that the
10781   // number of registers to save is given in %al, so it's theoretically
10782   // possible to do an indirect jump trick to avoid saving all of them,
10783   // however this code takes a simpler approach and just executes all
10784   // of the stores if %al is non-zero. It's less code, and it's probably
10785   // easier on the hardware branch predictor, and stores aren't all that
10786   // expensive anyway.
10787
10788   // Create the new basic blocks. One block contains all the XMM stores,
10789   // and one block is the final destination regardless of whether any
10790   // stores were performed.
10791   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
10792   MachineFunction *F = MBB->getParent();
10793   MachineFunction::iterator MBBIter = MBB;
10794   ++MBBIter;
10795   MachineBasicBlock *XMMSaveMBB = F->CreateMachineBasicBlock(LLVM_BB);
10796   MachineBasicBlock *EndMBB = F->CreateMachineBasicBlock(LLVM_BB);
10797   F->insert(MBBIter, XMMSaveMBB);
10798   F->insert(MBBIter, EndMBB);
10799
10800   // Transfer the remainder of MBB and its successor edges to EndMBB.
10801   EndMBB->splice(EndMBB->begin(), MBB,
10802                  llvm::next(MachineBasicBlock::iterator(MI)),
10803                  MBB->end());
10804   EndMBB->transferSuccessorsAndUpdatePHIs(MBB);
10805
10806   // The original block will now fall through to the XMM save block.
10807   MBB->addSuccessor(XMMSaveMBB);
10808   // The XMMSaveMBB will fall through to the end block.
10809   XMMSaveMBB->addSuccessor(EndMBB);
10810
10811   // Now add the instructions.
10812   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10813   DebugLoc DL = MI->getDebugLoc();
10814
10815   unsigned CountReg = MI->getOperand(0).getReg();
10816   int64_t RegSaveFrameIndex = MI->getOperand(1).getImm();
10817   int64_t VarArgsFPOffset = MI->getOperand(2).getImm();
10818
10819   if (!Subtarget->isTargetWin64()) {
10820     // If %al is 0, branch around the XMM save block.
10821     BuildMI(MBB, DL, TII->get(X86::TEST8rr)).addReg(CountReg).addReg(CountReg);
10822     BuildMI(MBB, DL, TII->get(X86::JE_4)).addMBB(EndMBB);
10823     MBB->addSuccessor(EndMBB);
10824   }
10825
10826   // In the XMM save block, save all the XMM argument registers.
10827   for (int i = 3, e = MI->getNumOperands(); i != e; ++i) {
10828     int64_t Offset = (i - 3) * 16 + VarArgsFPOffset;
10829     MachineMemOperand *MMO =
10830       F->getMachineMemOperand(
10831           MachinePointerInfo::getFixedStack(RegSaveFrameIndex, Offset),
10832         MachineMemOperand::MOStore,
10833         /*Size=*/16, /*Align=*/16);
10834     BuildMI(XMMSaveMBB, DL, TII->get(X86::MOVAPSmr))
10835       .addFrameIndex(RegSaveFrameIndex)
10836       .addImm(/*Scale=*/1)
10837       .addReg(/*IndexReg=*/0)
10838       .addImm(/*Disp=*/Offset)
10839       .addReg(/*Segment=*/0)
10840       .addReg(MI->getOperand(i).getReg())
10841       .addMemOperand(MMO);
10842   }
10843
10844   MI->eraseFromParent();   // The pseudo instruction is gone now.
10845
10846   return EndMBB;
10847 }
10848
10849 MachineBasicBlock *
10850 X86TargetLowering::EmitLoweredSelect(MachineInstr *MI,
10851                                      MachineBasicBlock *BB) const {
10852   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10853   DebugLoc DL = MI->getDebugLoc();
10854
10855   // To "insert" a SELECT_CC instruction, we actually have to insert the
10856   // diamond control-flow pattern.  The incoming instruction knows the
10857   // destination vreg to set, the condition code register to branch on, the
10858   // true/false values to select between, and a branch opcode to use.
10859   const BasicBlock *LLVM_BB = BB->getBasicBlock();
10860   MachineFunction::iterator It = BB;
10861   ++It;
10862
10863   //  thisMBB:
10864   //  ...
10865   //   TrueVal = ...
10866   //   cmpTY ccX, r1, r2
10867   //   bCC copy1MBB
10868   //   fallthrough --> copy0MBB
10869   MachineBasicBlock *thisMBB = BB;
10870   MachineFunction *F = BB->getParent();
10871   MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
10872   MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
10873   F->insert(It, copy0MBB);
10874   F->insert(It, sinkMBB);
10875
10876   // If the EFLAGS register isn't dead in the terminator, then claim that it's
10877   // live into the sink and copy blocks.
10878   const MachineFunction *MF = BB->getParent();
10879   const TargetRegisterInfo *TRI = MF->getTarget().getRegisterInfo();
10880   BitVector ReservedRegs = TRI->getReservedRegs(*MF);
10881
10882   for (unsigned I = 0, E = MI->getNumOperands(); I != E; ++I) {
10883     const MachineOperand &MO = MI->getOperand(I);
10884     if (!MO.isReg() || !MO.isUse() || MO.isKill()) continue;
10885     unsigned Reg = MO.getReg();
10886     if (Reg != X86::EFLAGS) continue;
10887     copy0MBB->addLiveIn(Reg);
10888     sinkMBB->addLiveIn(Reg);
10889   }
10890
10891   // Transfer the remainder of BB and its successor edges to sinkMBB.
10892   sinkMBB->splice(sinkMBB->begin(), BB,
10893                   llvm::next(MachineBasicBlock::iterator(MI)),
10894                   BB->end());
10895   sinkMBB->transferSuccessorsAndUpdatePHIs(BB);
10896
10897   // Add the true and fallthrough blocks as its successors.
10898   BB->addSuccessor(copy0MBB);
10899   BB->addSuccessor(sinkMBB);
10900
10901   // Create the conditional branch instruction.
10902   unsigned Opc =
10903     X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
10904   BuildMI(BB, DL, TII->get(Opc)).addMBB(sinkMBB);
10905
10906   //  copy0MBB:
10907   //   %FalseValue = ...
10908   //   # fallthrough to sinkMBB
10909   copy0MBB->addSuccessor(sinkMBB);
10910
10911   //  sinkMBB:
10912   //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
10913   //  ...
10914   BuildMI(*sinkMBB, sinkMBB->begin(), DL,
10915           TII->get(X86::PHI), MI->getOperand(0).getReg())
10916     .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
10917     .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
10918
10919   MI->eraseFromParent();   // The pseudo instruction is gone now.
10920   return sinkMBB;
10921 }
10922
10923 MachineBasicBlock *
10924 X86TargetLowering::EmitLoweredWinAlloca(MachineInstr *MI,
10925                                           MachineBasicBlock *BB) const {
10926   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
10927   DebugLoc DL = MI->getDebugLoc();
10928
10929   assert(!Subtarget->isTargetEnvMacho());
10930
10931   // The lowering is pretty easy: we're just emitting the call to _alloca.  The
10932   // non-trivial part is impdef of ESP.
10933
10934   if (Subtarget->isTargetWin64()) {
10935     if (Subtarget->isTargetCygMing()) {
10936       // ___chkstk(Mingw64):
10937       // Clobbers R10, R11, RAX and EFLAGS.
10938       // Updates RSP.
10939       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10940         .addExternalSymbol("___chkstk")
10941         .addReg(X86::RAX, RegState::Implicit)
10942         .addReg(X86::RSP, RegState::Implicit)
10943         .addReg(X86::RAX, RegState::Define | RegState::Implicit)
10944         .addReg(X86::RSP, RegState::Define | RegState::Implicit)
10945         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10946     } else {
10947       // __chkstk(MSVCRT): does not update stack pointer.
10948       // Clobbers R10, R11 and EFLAGS.
10949       // FIXME: RAX(allocated size) might be reused and not killed.
10950       BuildMI(*BB, MI, DL, TII->get(X86::W64ALLOCA))
10951         .addExternalSymbol("__chkstk")
10952         .addReg(X86::RAX, RegState::Implicit)
10953         .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10954       // RAX has the offset to subtracted from RSP.
10955       BuildMI(*BB, MI, DL, TII->get(X86::SUB64rr), X86::RSP)
10956         .addReg(X86::RSP)
10957         .addReg(X86::RAX);
10958     }
10959   } else {
10960     const char *StackProbeSymbol =
10961       Subtarget->isTargetWindows() ? "_chkstk" : "_alloca";
10962
10963     BuildMI(*BB, MI, DL, TII->get(X86::CALLpcrel32))
10964       .addExternalSymbol(StackProbeSymbol)
10965       .addReg(X86::EAX, RegState::Implicit)
10966       .addReg(X86::ESP, RegState::Implicit)
10967       .addReg(X86::EAX, RegState::Define | RegState::Implicit)
10968       .addReg(X86::ESP, RegState::Define | RegState::Implicit)
10969       .addReg(X86::EFLAGS, RegState::Define | RegState::Implicit);
10970   }
10971
10972   MI->eraseFromParent();   // The pseudo instruction is gone now.
10973   return BB;
10974 }
10975
10976 MachineBasicBlock *
10977 X86TargetLowering::EmitLoweredTLSCall(MachineInstr *MI,
10978                                       MachineBasicBlock *BB) const {
10979   // This is pretty easy.  We're taking the value that we received from
10980   // our load from the relocation, sticking it in either RDI (x86-64)
10981   // or EAX and doing an indirect call.  The return value will then
10982   // be in the normal return register.
10983   const X86InstrInfo *TII
10984     = static_cast<const X86InstrInfo*>(getTargetMachine().getInstrInfo());
10985   DebugLoc DL = MI->getDebugLoc();
10986   MachineFunction *F = BB->getParent();
10987
10988   assert(Subtarget->isTargetDarwin() && "Darwin only instr emitted?");
10989   assert(MI->getOperand(3).isGlobal() && "This should be a global");
10990
10991   if (Subtarget->is64Bit()) {
10992     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
10993                                       TII->get(X86::MOV64rm), X86::RDI)
10994     .addReg(X86::RIP)
10995     .addImm(0).addReg(0)
10996     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
10997                       MI->getOperand(3).getTargetFlags())
10998     .addReg(0);
10999     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL64m));
11000     addDirectMem(MIB, X86::RDI);
11001   } else if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
11002     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11003                                       TII->get(X86::MOV32rm), X86::EAX)
11004     .addReg(0)
11005     .addImm(0).addReg(0)
11006     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
11007                       MI->getOperand(3).getTargetFlags())
11008     .addReg(0);
11009     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
11010     addDirectMem(MIB, X86::EAX);
11011   } else {
11012     MachineInstrBuilder MIB = BuildMI(*BB, MI, DL,
11013                                       TII->get(X86::MOV32rm), X86::EAX)
11014     .addReg(TII->getGlobalBaseReg(F))
11015     .addImm(0).addReg(0)
11016     .addGlobalAddress(MI->getOperand(3).getGlobal(), 0,
11017                       MI->getOperand(3).getTargetFlags())
11018     .addReg(0);
11019     MIB = BuildMI(*BB, MI, DL, TII->get(X86::CALL32m));
11020     addDirectMem(MIB, X86::EAX);
11021   }
11022
11023   MI->eraseFromParent(); // The pseudo instruction is gone now.
11024   return BB;
11025 }
11026
11027 MachineBasicBlock *
11028 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
11029                                                MachineBasicBlock *BB) const {
11030   switch (MI->getOpcode()) {
11031   default: assert(false && "Unexpected instr type to insert");
11032   case X86::TAILJMPd64:
11033   case X86::TAILJMPr64:
11034   case X86::TAILJMPm64:
11035     assert(!"TAILJMP64 would not be touched here.");
11036   case X86::TCRETURNdi64:
11037   case X86::TCRETURNri64:
11038   case X86::TCRETURNmi64:
11039     // Defs of TCRETURNxx64 has Win64's callee-saved registers, as subset.
11040     // On AMD64, additional defs should be added before register allocation.
11041     if (!Subtarget->isTargetWin64()) {
11042       MI->addRegisterDefined(X86::RSI);
11043       MI->addRegisterDefined(X86::RDI);
11044       MI->addRegisterDefined(X86::XMM6);
11045       MI->addRegisterDefined(X86::XMM7);
11046       MI->addRegisterDefined(X86::XMM8);
11047       MI->addRegisterDefined(X86::XMM9);
11048       MI->addRegisterDefined(X86::XMM10);
11049       MI->addRegisterDefined(X86::XMM11);
11050       MI->addRegisterDefined(X86::XMM12);
11051       MI->addRegisterDefined(X86::XMM13);
11052       MI->addRegisterDefined(X86::XMM14);
11053       MI->addRegisterDefined(X86::XMM15);
11054     }
11055     return BB;
11056   case X86::WIN_ALLOCA:
11057     return EmitLoweredWinAlloca(MI, BB);
11058   case X86::TLSCall_32:
11059   case X86::TLSCall_64:
11060     return EmitLoweredTLSCall(MI, BB);
11061   case X86::CMOV_GR8:
11062   case X86::CMOV_FR32:
11063   case X86::CMOV_FR64:
11064   case X86::CMOV_V4F32:
11065   case X86::CMOV_V2F64:
11066   case X86::CMOV_V2I64:
11067   case X86::CMOV_GR16:
11068   case X86::CMOV_GR32:
11069   case X86::CMOV_RFP32:
11070   case X86::CMOV_RFP64:
11071   case X86::CMOV_RFP80:
11072     return EmitLoweredSelect(MI, BB);
11073
11074   case X86::FP32_TO_INT16_IN_MEM:
11075   case X86::FP32_TO_INT32_IN_MEM:
11076   case X86::FP32_TO_INT64_IN_MEM:
11077   case X86::FP64_TO_INT16_IN_MEM:
11078   case X86::FP64_TO_INT32_IN_MEM:
11079   case X86::FP64_TO_INT64_IN_MEM:
11080   case X86::FP80_TO_INT16_IN_MEM:
11081   case X86::FP80_TO_INT32_IN_MEM:
11082   case X86::FP80_TO_INT64_IN_MEM: {
11083     const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
11084     DebugLoc DL = MI->getDebugLoc();
11085
11086     // Change the floating point control register to use "round towards zero"
11087     // mode when truncating to an integer value.
11088     MachineFunction *F = BB->getParent();
11089     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2, false);
11090     addFrameReference(BuildMI(*BB, MI, DL,
11091                               TII->get(X86::FNSTCW16m)), CWFrameIdx);
11092
11093     // Load the old value of the high byte of the control word...
11094     unsigned OldCW =
11095       F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
11096     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16rm), OldCW),
11097                       CWFrameIdx);
11098
11099     // Set the high part to be round to zero...
11100     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mi)), CWFrameIdx)
11101       .addImm(0xC7F);
11102
11103     // Reload the modified control word now...
11104     addFrameReference(BuildMI(*BB, MI, DL,
11105                               TII->get(X86::FLDCW16m)), CWFrameIdx);
11106
11107     // Restore the memory image of control word to original value
11108     addFrameReference(BuildMI(*BB, MI, DL, TII->get(X86::MOV16mr)), CWFrameIdx)
11109       .addReg(OldCW);
11110
11111     // Get the X86 opcode to use.
11112     unsigned Opc;
11113     switch (MI->getOpcode()) {
11114     default: llvm_unreachable("illegal opcode!");
11115     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
11116     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
11117     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
11118     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
11119     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
11120     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
11121     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
11122     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
11123     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
11124     }
11125
11126     X86AddressMode AM;
11127     MachineOperand &Op = MI->getOperand(0);
11128     if (Op.isReg()) {
11129       AM.BaseType = X86AddressMode::RegBase;
11130       AM.Base.Reg = Op.getReg();
11131     } else {
11132       AM.BaseType = X86AddressMode::FrameIndexBase;
11133       AM.Base.FrameIndex = Op.getIndex();
11134     }
11135     Op = MI->getOperand(1);
11136     if (Op.isImm())
11137       AM.Scale = Op.getImm();
11138     Op = MI->getOperand(2);
11139     if (Op.isImm())
11140       AM.IndexReg = Op.getImm();
11141     Op = MI->getOperand(3);
11142     if (Op.isGlobal()) {
11143       AM.GV = Op.getGlobal();
11144     } else {
11145       AM.Disp = Op.getImm();
11146     }
11147     addFullAddress(BuildMI(*BB, MI, DL, TII->get(Opc)), AM)
11148                       .addReg(MI->getOperand(X86::AddrNumOperands).getReg());
11149
11150     // Reload the original control word now.
11151     addFrameReference(BuildMI(*BB, MI, DL,
11152                               TII->get(X86::FLDCW16m)), CWFrameIdx);
11153
11154     MI->eraseFromParent();   // The pseudo instruction is gone now.
11155     return BB;
11156   }
11157     // String/text processing lowering.
11158   case X86::PCMPISTRM128REG:
11159   case X86::VPCMPISTRM128REG:
11160     return EmitPCMP(MI, BB, 3, false /* in-mem */);
11161   case X86::PCMPISTRM128MEM:
11162   case X86::VPCMPISTRM128MEM:
11163     return EmitPCMP(MI, BB, 3, true /* in-mem */);
11164   case X86::PCMPESTRM128REG:
11165   case X86::VPCMPESTRM128REG:
11166     return EmitPCMP(MI, BB, 5, false /* in mem */);
11167   case X86::PCMPESTRM128MEM:
11168   case X86::VPCMPESTRM128MEM:
11169     return EmitPCMP(MI, BB, 5, true /* in mem */);
11170
11171     // Thread synchronization.
11172   case X86::MONITOR:
11173     return EmitMonitor(MI, BB);
11174   case X86::MWAIT:
11175     return EmitMwait(MI, BB);
11176
11177     // Atomic Lowering.
11178   case X86::ATOMAND32:
11179     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
11180                                                X86::AND32ri, X86::MOV32rm,
11181                                                X86::LCMPXCHG32,
11182                                                X86::NOT32r, X86::EAX,
11183                                                X86::GR32RegisterClass);
11184   case X86::ATOMOR32:
11185     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
11186                                                X86::OR32ri, X86::MOV32rm,
11187                                                X86::LCMPXCHG32,
11188                                                X86::NOT32r, X86::EAX,
11189                                                X86::GR32RegisterClass);
11190   case X86::ATOMXOR32:
11191     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
11192                                                X86::XOR32ri, X86::MOV32rm,
11193                                                X86::LCMPXCHG32,
11194                                                X86::NOT32r, X86::EAX,
11195                                                X86::GR32RegisterClass);
11196   case X86::ATOMNAND32:
11197     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
11198                                                X86::AND32ri, X86::MOV32rm,
11199                                                X86::LCMPXCHG32,
11200                                                X86::NOT32r, X86::EAX,
11201                                                X86::GR32RegisterClass, true);
11202   case X86::ATOMMIN32:
11203     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
11204   case X86::ATOMMAX32:
11205     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
11206   case X86::ATOMUMIN32:
11207     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
11208   case X86::ATOMUMAX32:
11209     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
11210
11211   case X86::ATOMAND16:
11212     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11213                                                X86::AND16ri, X86::MOV16rm,
11214                                                X86::LCMPXCHG16,
11215                                                X86::NOT16r, X86::AX,
11216                                                X86::GR16RegisterClass);
11217   case X86::ATOMOR16:
11218     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
11219                                                X86::OR16ri, X86::MOV16rm,
11220                                                X86::LCMPXCHG16,
11221                                                X86::NOT16r, X86::AX,
11222                                                X86::GR16RegisterClass);
11223   case X86::ATOMXOR16:
11224     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
11225                                                X86::XOR16ri, X86::MOV16rm,
11226                                                X86::LCMPXCHG16,
11227                                                X86::NOT16r, X86::AX,
11228                                                X86::GR16RegisterClass);
11229   case X86::ATOMNAND16:
11230     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
11231                                                X86::AND16ri, X86::MOV16rm,
11232                                                X86::LCMPXCHG16,
11233                                                X86::NOT16r, X86::AX,
11234                                                X86::GR16RegisterClass, true);
11235   case X86::ATOMMIN16:
11236     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
11237   case X86::ATOMMAX16:
11238     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
11239   case X86::ATOMUMIN16:
11240     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
11241   case X86::ATOMUMAX16:
11242     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
11243
11244   case X86::ATOMAND8:
11245     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11246                                                X86::AND8ri, X86::MOV8rm,
11247                                                X86::LCMPXCHG8,
11248                                                X86::NOT8r, X86::AL,
11249                                                X86::GR8RegisterClass);
11250   case X86::ATOMOR8:
11251     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
11252                                                X86::OR8ri, X86::MOV8rm,
11253                                                X86::LCMPXCHG8,
11254                                                X86::NOT8r, X86::AL,
11255                                                X86::GR8RegisterClass);
11256   case X86::ATOMXOR8:
11257     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
11258                                                X86::XOR8ri, X86::MOV8rm,
11259                                                X86::LCMPXCHG8,
11260                                                X86::NOT8r, X86::AL,
11261                                                X86::GR8RegisterClass);
11262   case X86::ATOMNAND8:
11263     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
11264                                                X86::AND8ri, X86::MOV8rm,
11265                                                X86::LCMPXCHG8,
11266                                                X86::NOT8r, X86::AL,
11267                                                X86::GR8RegisterClass, true);
11268   // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
11269   // This group is for 64-bit host.
11270   case X86::ATOMAND64:
11271     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11272                                                X86::AND64ri32, X86::MOV64rm,
11273                                                X86::LCMPXCHG64,
11274                                                X86::NOT64r, X86::RAX,
11275                                                X86::GR64RegisterClass);
11276   case X86::ATOMOR64:
11277     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
11278                                                X86::OR64ri32, X86::MOV64rm,
11279                                                X86::LCMPXCHG64,
11280                                                X86::NOT64r, X86::RAX,
11281                                                X86::GR64RegisterClass);
11282   case X86::ATOMXOR64:
11283     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
11284                                                X86::XOR64ri32, X86::MOV64rm,
11285                                                X86::LCMPXCHG64,
11286                                                X86::NOT64r, X86::RAX,
11287                                                X86::GR64RegisterClass);
11288   case X86::ATOMNAND64:
11289     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
11290                                                X86::AND64ri32, X86::MOV64rm,
11291                                                X86::LCMPXCHG64,
11292                                                X86::NOT64r, X86::RAX,
11293                                                X86::GR64RegisterClass, true);
11294   case X86::ATOMMIN64:
11295     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
11296   case X86::ATOMMAX64:
11297     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
11298   case X86::ATOMUMIN64:
11299     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
11300   case X86::ATOMUMAX64:
11301     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
11302
11303   // This group does 64-bit operations on a 32-bit host.
11304   case X86::ATOMAND6432:
11305     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11306                                                X86::AND32rr, X86::AND32rr,
11307                                                X86::AND32ri, X86::AND32ri,
11308                                                false);
11309   case X86::ATOMOR6432:
11310     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11311                                                X86::OR32rr, X86::OR32rr,
11312                                                X86::OR32ri, X86::OR32ri,
11313                                                false);
11314   case X86::ATOMXOR6432:
11315     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11316                                                X86::XOR32rr, X86::XOR32rr,
11317                                                X86::XOR32ri, X86::XOR32ri,
11318                                                false);
11319   case X86::ATOMNAND6432:
11320     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11321                                                X86::AND32rr, X86::AND32rr,
11322                                                X86::AND32ri, X86::AND32ri,
11323                                                true);
11324   case X86::ATOMADD6432:
11325     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11326                                                X86::ADD32rr, X86::ADC32rr,
11327                                                X86::ADD32ri, X86::ADC32ri,
11328                                                false);
11329   case X86::ATOMSUB6432:
11330     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11331                                                X86::SUB32rr, X86::SBB32rr,
11332                                                X86::SUB32ri, X86::SBB32ri,
11333                                                false);
11334   case X86::ATOMSWAP6432:
11335     return EmitAtomicBit6432WithCustomInserter(MI, BB,
11336                                                X86::MOV32rr, X86::MOV32rr,
11337                                                X86::MOV32ri, X86::MOV32ri,
11338                                                false);
11339   case X86::VASTART_SAVE_XMM_REGS:
11340     return EmitVAStartSaveXMMRegsWithCustomInserter(MI, BB);
11341
11342   case X86::VAARG_64:
11343     return EmitVAARG64WithCustomInserter(MI, BB);
11344   }
11345 }
11346
11347 //===----------------------------------------------------------------------===//
11348 //                           X86 Optimization Hooks
11349 //===----------------------------------------------------------------------===//
11350
11351 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
11352                                                        const APInt &Mask,
11353                                                        APInt &KnownZero,
11354                                                        APInt &KnownOne,
11355                                                        const SelectionDAG &DAG,
11356                                                        unsigned Depth) const {
11357   unsigned Opc = Op.getOpcode();
11358   assert((Opc >= ISD::BUILTIN_OP_END ||
11359           Opc == ISD::INTRINSIC_WO_CHAIN ||
11360           Opc == ISD::INTRINSIC_W_CHAIN ||
11361           Opc == ISD::INTRINSIC_VOID) &&
11362          "Should use MaskedValueIsZero if you don't know whether Op"
11363          " is a target node!");
11364
11365   KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);   // Don't know anything.
11366   switch (Opc) {
11367   default: break;
11368   case X86ISD::ADD:
11369   case X86ISD::SUB:
11370   case X86ISD::ADC:
11371   case X86ISD::SBB:
11372   case X86ISD::SMUL:
11373   case X86ISD::UMUL:
11374   case X86ISD::INC:
11375   case X86ISD::DEC:
11376   case X86ISD::OR:
11377   case X86ISD::XOR:
11378   case X86ISD::AND:
11379     // These nodes' second result is a boolean.
11380     if (Op.getResNo() == 0)
11381       break;
11382     // Fallthrough
11383   case X86ISD::SETCC:
11384     KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
11385                                        Mask.getBitWidth() - 1);
11386     break;
11387   }
11388 }
11389
11390 unsigned X86TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op,
11391                                                          unsigned Depth) const {
11392   // SETCC_CARRY sets the dest to ~0 for true or 0 for false.
11393   if (Op.getOpcode() == X86ISD::SETCC_CARRY)
11394     return Op.getValueType().getScalarType().getSizeInBits();
11395
11396   // Fallback case.
11397   return 1;
11398 }
11399
11400 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
11401 /// node is a GlobalAddress + offset.
11402 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
11403                                        const GlobalValue* &GA,
11404                                        int64_t &Offset) const {
11405   if (N->getOpcode() == X86ISD::Wrapper) {
11406     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
11407       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
11408       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
11409       return true;
11410     }
11411   }
11412   return TargetLowering::isGAPlusOffset(N, GA, Offset);
11413 }
11414
11415 /// PerformShuffleCombine256 - Performs shuffle combines for 256-bit vectors.
11416 static SDValue PerformShuffleCombine256(SDNode *N, SelectionDAG &DAG,
11417                                         TargetLowering::DAGCombinerInfo &DCI) {
11418   DebugLoc dl = N->getDebugLoc();
11419   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
11420   SDValue V1 = SVOp->getOperand(0);
11421   SDValue V2 = SVOp->getOperand(1);
11422   EVT VT = SVOp->getValueType(0);
11423
11424   if (V1.getOpcode() == ISD::CONCAT_VECTORS &&
11425       V2.getOpcode() == ISD::CONCAT_VECTORS) {
11426     //
11427     //                   0,0,0,...
11428     //                      |
11429     //    V      UNDEF    BUILD_VECTOR    UNDEF
11430     //     \      /           \           /
11431     //  CONCAT_VECTOR         CONCAT_VECTOR
11432     //         \                  /
11433     //          \                /
11434     //          RESULT: V + zero extended
11435     //
11436     if (V2.getOperand(0).getOpcode() != ISD::BUILD_VECTOR ||
11437         V2.getOperand(1).getOpcode() != ISD::UNDEF ||
11438         V1.getOperand(1).getOpcode() != ISD::UNDEF)
11439       return SDValue();
11440
11441     if (!ISD::isBuildVectorAllZeros(V2.getOperand(0).getNode()))
11442       return SDValue();
11443
11444     // To match the shuffle mask, the first half of the mask should
11445     // be exactly the first vector, and all the rest a splat with the
11446     // first element of the second one.
11447     int NumElems = VT.getVectorNumElements();
11448     for (int i = 0; i < NumElems/2; ++i)
11449       if (!isUndefOrEqual(SVOp->getMaskElt(i), i) ||
11450           !isUndefOrEqual(SVOp->getMaskElt(i+NumElems/2), NumElems))
11451         return SDValue();
11452
11453     // Emit a zeroed vector and insert the desired subvector on its
11454     // first half.
11455     SDValue Zeros = getZeroVector(VT, true /* HasSSE2 */, DAG, dl);
11456     SDValue InsV = Insert128BitVector(Zeros, V1.getOperand(0),
11457                          DAG.getConstant(0, MVT::i32), DAG, dl);
11458     return DCI.CombineTo(N, InsV);
11459   }
11460
11461   return SDValue();
11462 }
11463
11464 /// PerformShuffleCombine - Performs several different shuffle combines.
11465 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
11466                                      TargetLowering::DAGCombinerInfo &DCI) {
11467   DebugLoc dl = N->getDebugLoc();
11468   EVT VT = N->getValueType(0);
11469
11470   // Don't create instructions with illegal types after legalize types has run.
11471   const TargetLowering &TLI = DAG.getTargetLoweringInfo();
11472   if (!DCI.isBeforeLegalize() && !TLI.isTypeLegal(VT.getVectorElementType()))
11473     return SDValue();
11474
11475   // Only handle pure VECTOR_SHUFFLE nodes.
11476   if (VT.getSizeInBits() == 256 && N->getOpcode() == ISD::VECTOR_SHUFFLE)
11477     return PerformShuffleCombine256(N, DAG, DCI);
11478
11479   // Only handle 128 wide vector from here on.
11480   if (VT.getSizeInBits() != 128)
11481     return SDValue();
11482
11483   // Combine a vector_shuffle that is equal to build_vector load1, load2, load3,
11484   // load4, <0, 1, 2, 3> into a 128-bit load if the load addresses are
11485   // consecutive, non-overlapping, and in the right order.
11486   SmallVector<SDValue, 16> Elts;
11487   for (unsigned i = 0, e = VT.getVectorNumElements(); i != e; ++i)
11488     Elts.push_back(getShuffleScalarElt(N, i, DAG, 0));
11489
11490   return EltsFromConsecutiveLoads(VT, Elts, dl, DAG);
11491 }
11492
11493 /// PerformEXTRACT_VECTOR_ELTCombine - Detect vector gather/scatter index
11494 /// generation and convert it from being a bunch of shuffles and extracts
11495 /// to a simple store and scalar loads to extract the elements.
11496 static SDValue PerformEXTRACT_VECTOR_ELTCombine(SDNode *N, SelectionDAG &DAG,
11497                                                 const TargetLowering &TLI) {
11498   SDValue InputVector = N->getOperand(0);
11499
11500   // Only operate on vectors of 4 elements, where the alternative shuffling
11501   // gets to be more expensive.
11502   if (InputVector.getValueType() != MVT::v4i32)
11503     return SDValue();
11504
11505   // Check whether every use of InputVector is an EXTRACT_VECTOR_ELT with a
11506   // single use which is a sign-extend or zero-extend, and all elements are
11507   // used.
11508   SmallVector<SDNode *, 4> Uses;
11509   unsigned ExtractedElements = 0;
11510   for (SDNode::use_iterator UI = InputVector.getNode()->use_begin(),
11511        UE = InputVector.getNode()->use_end(); UI != UE; ++UI) {
11512     if (UI.getUse().getResNo() != InputVector.getResNo())
11513       return SDValue();
11514
11515     SDNode *Extract = *UI;
11516     if (Extract->getOpcode() != ISD::EXTRACT_VECTOR_ELT)
11517       return SDValue();
11518
11519     if (Extract->getValueType(0) != MVT::i32)
11520       return SDValue();
11521     if (!Extract->hasOneUse())
11522       return SDValue();
11523     if (Extract->use_begin()->getOpcode() != ISD::SIGN_EXTEND &&
11524         Extract->use_begin()->getOpcode() != ISD::ZERO_EXTEND)
11525       return SDValue();
11526     if (!isa<ConstantSDNode>(Extract->getOperand(1)))
11527       return SDValue();
11528
11529     // Record which element was extracted.
11530     ExtractedElements |=
11531       1 << cast<ConstantSDNode>(Extract->getOperand(1))->getZExtValue();
11532
11533     Uses.push_back(Extract);
11534   }
11535
11536   // If not all the elements were used, this may not be worthwhile.
11537   if (ExtractedElements != 15)
11538     return SDValue();
11539
11540   // Ok, we've now decided to do the transformation.
11541   DebugLoc dl = InputVector.getDebugLoc();
11542
11543   // Store the value to a temporary stack slot.
11544   SDValue StackPtr = DAG.CreateStackTemporary(InputVector.getValueType());
11545   SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, InputVector, StackPtr,
11546                             MachinePointerInfo(), false, false, 0);
11547
11548   // Replace each use (extract) with a load of the appropriate element.
11549   for (SmallVectorImpl<SDNode *>::iterator UI = Uses.begin(),
11550        UE = Uses.end(); UI != UE; ++UI) {
11551     SDNode *Extract = *UI;
11552
11553     // cOMpute the element's address.
11554     SDValue Idx = Extract->getOperand(1);
11555     unsigned EltSize =
11556         InputVector.getValueType().getVectorElementType().getSizeInBits()/8;
11557     uint64_t Offset = EltSize * cast<ConstantSDNode>(Idx)->getZExtValue();
11558     SDValue OffsetVal = DAG.getConstant(Offset, TLI.getPointerTy());
11559
11560     SDValue ScalarAddr = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(),
11561                                      StackPtr, OffsetVal);
11562
11563     // Load the scalar.
11564     SDValue LoadScalar = DAG.getLoad(Extract->getValueType(0), dl, Ch,
11565                                      ScalarAddr, MachinePointerInfo(),
11566                                      false, false, 0);
11567
11568     // Replace the exact with the load.
11569     DAG.ReplaceAllUsesOfValueWith(SDValue(Extract, 0), LoadScalar);
11570   }
11571
11572   // The replacement was made in place; don't return anything.
11573   return SDValue();
11574 }
11575
11576 /// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
11577 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
11578                                     const X86Subtarget *Subtarget) {
11579   DebugLoc DL = N->getDebugLoc();
11580   SDValue Cond = N->getOperand(0);
11581   // Get the LHS/RHS of the select.
11582   SDValue LHS = N->getOperand(1);
11583   SDValue RHS = N->getOperand(2);
11584
11585   // If we have SSE[12] support, try to form min/max nodes. SSE min/max
11586   // instructions match the semantics of the common C idiom x<y?x:y but not
11587   // x<=y?x:y, because of how they handle negative zero (which can be
11588   // ignored in unsafe-math mode).
11589   if (Subtarget->hasSSE2() &&
11590       (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
11591       Cond.getOpcode() == ISD::SETCC) {
11592     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
11593
11594     unsigned Opcode = 0;
11595     // Check for x CC y ? x : y.
11596     if (DAG.isEqualTo(LHS, Cond.getOperand(0)) &&
11597         DAG.isEqualTo(RHS, Cond.getOperand(1))) {
11598       switch (CC) {
11599       default: break;
11600       case ISD::SETULT:
11601         // Converting this to a min would handle NaNs incorrectly, and swapping
11602         // the operands would cause it to handle comparisons between positive
11603         // and negative zero incorrectly.
11604         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
11605           if (!UnsafeFPMath &&
11606               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11607             break;
11608           std::swap(LHS, RHS);
11609         }
11610         Opcode = X86ISD::FMIN;
11611         break;
11612       case ISD::SETOLE:
11613         // Converting this to a min would handle comparisons between positive
11614         // and negative zero incorrectly.
11615         if (!UnsafeFPMath &&
11616             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS))
11617           break;
11618         Opcode = X86ISD::FMIN;
11619         break;
11620       case ISD::SETULE:
11621         // Converting this to a min would handle both negative zeros and NaNs
11622         // incorrectly, but we can swap the operands to fix both.
11623         std::swap(LHS, RHS);
11624       case ISD::SETOLT:
11625       case ISD::SETLT:
11626       case ISD::SETLE:
11627         Opcode = X86ISD::FMIN;
11628         break;
11629
11630       case ISD::SETOGE:
11631         // Converting this to a max would handle comparisons between positive
11632         // and negative zero incorrectly.
11633         if (!UnsafeFPMath &&
11634             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(LHS))
11635           break;
11636         Opcode = X86ISD::FMAX;
11637         break;
11638       case ISD::SETUGT:
11639         // Converting this to a max would handle NaNs incorrectly, and swapping
11640         // the operands would cause it to handle comparisons between positive
11641         // and negative zero incorrectly.
11642         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)) {
11643           if (!UnsafeFPMath &&
11644               !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS)))
11645             break;
11646           std::swap(LHS, RHS);
11647         }
11648         Opcode = X86ISD::FMAX;
11649         break;
11650       case ISD::SETUGE:
11651         // Converting this to a max would handle both negative zeros and NaNs
11652         // incorrectly, but we can swap the operands to fix both.
11653         std::swap(LHS, RHS);
11654       case ISD::SETOGT:
11655       case ISD::SETGT:
11656       case ISD::SETGE:
11657         Opcode = X86ISD::FMAX;
11658         break;
11659       }
11660     // Check for x CC y ? y : x -- a min/max with reversed arms.
11661     } else if (DAG.isEqualTo(LHS, Cond.getOperand(1)) &&
11662                DAG.isEqualTo(RHS, Cond.getOperand(0))) {
11663       switch (CC) {
11664       default: break;
11665       case ISD::SETOGE:
11666         // Converting this to a min would handle comparisons between positive
11667         // and negative zero incorrectly, and swapping the operands would
11668         // cause it to handle NaNs incorrectly.
11669         if (!UnsafeFPMath &&
11670             !(DAG.isKnownNeverZero(LHS) || DAG.isKnownNeverZero(RHS))) {
11671           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
11672             break;
11673           std::swap(LHS, RHS);
11674         }
11675         Opcode = X86ISD::FMIN;
11676         break;
11677       case ISD::SETUGT:
11678         // Converting this to a min would handle NaNs incorrectly.
11679         if (!UnsafeFPMath &&
11680             (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS)))
11681           break;
11682         Opcode = X86ISD::FMIN;
11683         break;
11684       case ISD::SETUGE:
11685         // Converting this to a min would handle both negative zeros and NaNs
11686         // incorrectly, but we can swap the operands to fix both.
11687         std::swap(LHS, RHS);
11688       case ISD::SETOGT:
11689       case ISD::SETGT:
11690       case ISD::SETGE:
11691         Opcode = X86ISD::FMIN;
11692         break;
11693
11694       case ISD::SETULT:
11695         // Converting this to a max would handle NaNs incorrectly.
11696         if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
11697           break;
11698         Opcode = X86ISD::FMAX;
11699         break;
11700       case ISD::SETOLE:
11701         // Converting this to a max would handle comparisons between positive
11702         // and negative zero incorrectly, and swapping the operands would
11703         // cause it to handle NaNs incorrectly.
11704         if (!UnsafeFPMath &&
11705             !DAG.isKnownNeverZero(LHS) && !DAG.isKnownNeverZero(RHS)) {
11706           if (!DAG.isKnownNeverNaN(LHS) || !DAG.isKnownNeverNaN(RHS))
11707             break;
11708           std::swap(LHS, RHS);
11709         }
11710         Opcode = X86ISD::FMAX;
11711         break;
11712       case ISD::SETULE:
11713         // Converting this to a max would handle both negative zeros and NaNs
11714         // incorrectly, but we can swap the operands to fix both.
11715         std::swap(LHS, RHS);
11716       case ISD::SETOLT:
11717       case ISD::SETLT:
11718       case ISD::SETLE:
11719         Opcode = X86ISD::FMAX;
11720         break;
11721       }
11722     }
11723
11724     if (Opcode)
11725       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
11726   }
11727
11728   // If this is a select between two integer constants, try to do some
11729   // optimizations.
11730   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
11731     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
11732       // Don't do this for crazy integer types.
11733       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
11734         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
11735         // so that TrueC (the true value) is larger than FalseC.
11736         bool NeedsCondInvert = false;
11737
11738         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
11739             // Efficiently invertible.
11740             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
11741              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
11742               isa<ConstantSDNode>(Cond.getOperand(1))))) {
11743           NeedsCondInvert = true;
11744           std::swap(TrueC, FalseC);
11745         }
11746
11747         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
11748         if (FalseC->getAPIntValue() == 0 &&
11749             TrueC->getAPIntValue().isPowerOf2()) {
11750           if (NeedsCondInvert) // Invert the condition if needed.
11751             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11752                                DAG.getConstant(1, Cond.getValueType()));
11753
11754           // Zero extend the condition if needed.
11755           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
11756
11757           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11758           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
11759                              DAG.getConstant(ShAmt, MVT::i8));
11760         }
11761
11762         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
11763         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
11764           if (NeedsCondInvert) // Invert the condition if needed.
11765             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11766                                DAG.getConstant(1, Cond.getValueType()));
11767
11768           // Zero extend the condition if needed.
11769           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11770                              FalseC->getValueType(0), Cond);
11771           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11772                              SDValue(FalseC, 0));
11773         }
11774
11775         // Optimize cases that will turn into an LEA instruction.  This requires
11776         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
11777         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
11778           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
11779           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
11780
11781           bool isFastMultiplier = false;
11782           if (Diff < 10) {
11783             switch ((unsigned char)Diff) {
11784               default: break;
11785               case 1:  // result = add base, cond
11786               case 2:  // result = lea base(    , cond*2)
11787               case 3:  // result = lea base(cond, cond*2)
11788               case 4:  // result = lea base(    , cond*4)
11789               case 5:  // result = lea base(cond, cond*4)
11790               case 8:  // result = lea base(    , cond*8)
11791               case 9:  // result = lea base(cond, cond*8)
11792                 isFastMultiplier = true;
11793                 break;
11794             }
11795           }
11796
11797           if (isFastMultiplier) {
11798             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11799             if (NeedsCondInvert) // Invert the condition if needed.
11800               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
11801                                  DAG.getConstant(1, Cond.getValueType()));
11802
11803             // Zero extend the condition if needed.
11804             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11805                                Cond);
11806             // Scale the condition by the difference.
11807             if (Diff != 1)
11808               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11809                                  DAG.getConstant(Diff, Cond.getValueType()));
11810
11811             // Add the base if non-zero.
11812             if (FalseC->getAPIntValue() != 0)
11813               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11814                                  SDValue(FalseC, 0));
11815             return Cond;
11816           }
11817         }
11818       }
11819   }
11820
11821   return SDValue();
11822 }
11823
11824 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
11825 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
11826                                   TargetLowering::DAGCombinerInfo &DCI) {
11827   DebugLoc DL = N->getDebugLoc();
11828
11829   // If the flag operand isn't dead, don't touch this CMOV.
11830   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
11831     return SDValue();
11832
11833   SDValue FalseOp = N->getOperand(0);
11834   SDValue TrueOp = N->getOperand(1);
11835   X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
11836   SDValue Cond = N->getOperand(3);
11837   if (CC == X86::COND_E || CC == X86::COND_NE) {
11838     switch (Cond.getOpcode()) {
11839     default: break;
11840     case X86ISD::BSR:
11841     case X86ISD::BSF:
11842       // If operand of BSR / BSF are proven never zero, then ZF cannot be set.
11843       if (DAG.isKnownNeverZero(Cond.getOperand(0)))
11844         return (CC == X86::COND_E) ? FalseOp : TrueOp;
11845     }
11846   }
11847
11848   // If this is a select between two integer constants, try to do some
11849   // optimizations.  Note that the operands are ordered the opposite of SELECT
11850   // operands.
11851   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(TrueOp)) {
11852     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(FalseOp)) {
11853       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
11854       // larger than FalseC (the false value).
11855       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
11856         CC = X86::GetOppositeBranchCondition(CC);
11857         std::swap(TrueC, FalseC);
11858       }
11859
11860       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
11861       // This is efficient for any integer data type (including i8/i16) and
11862       // shift amount.
11863       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
11864         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11865                            DAG.getConstant(CC, MVT::i8), Cond);
11866
11867         // Zero extend the condition if needed.
11868         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
11869
11870         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
11871         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
11872                            DAG.getConstant(ShAmt, MVT::i8));
11873         if (N->getNumValues() == 2)  // Dead flag value?
11874           return DCI.CombineTo(N, Cond, SDValue());
11875         return Cond;
11876       }
11877
11878       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
11879       // for any integer data type, including i8/i16.
11880       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
11881         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11882                            DAG.getConstant(CC, MVT::i8), Cond);
11883
11884         // Zero extend the condition if needed.
11885         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
11886                            FalseC->getValueType(0), Cond);
11887         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11888                            SDValue(FalseC, 0));
11889
11890         if (N->getNumValues() == 2)  // Dead flag value?
11891           return DCI.CombineTo(N, Cond, SDValue());
11892         return Cond;
11893       }
11894
11895       // Optimize cases that will turn into an LEA instruction.  This requires
11896       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
11897       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
11898         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
11899         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
11900
11901         bool isFastMultiplier = false;
11902         if (Diff < 10) {
11903           switch ((unsigned char)Diff) {
11904           default: break;
11905           case 1:  // result = add base, cond
11906           case 2:  // result = lea base(    , cond*2)
11907           case 3:  // result = lea base(cond, cond*2)
11908           case 4:  // result = lea base(    , cond*4)
11909           case 5:  // result = lea base(cond, cond*4)
11910           case 8:  // result = lea base(    , cond*8)
11911           case 9:  // result = lea base(cond, cond*8)
11912             isFastMultiplier = true;
11913             break;
11914           }
11915         }
11916
11917         if (isFastMultiplier) {
11918           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
11919           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
11920                              DAG.getConstant(CC, MVT::i8), Cond);
11921           // Zero extend the condition if needed.
11922           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
11923                              Cond);
11924           // Scale the condition by the difference.
11925           if (Diff != 1)
11926             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
11927                                DAG.getConstant(Diff, Cond.getValueType()));
11928
11929           // Add the base if non-zero.
11930           if (FalseC->getAPIntValue() != 0)
11931             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
11932                                SDValue(FalseC, 0));
11933           if (N->getNumValues() == 2)  // Dead flag value?
11934             return DCI.CombineTo(N, Cond, SDValue());
11935           return Cond;
11936         }
11937       }
11938     }
11939   }
11940   return SDValue();
11941 }
11942
11943
11944 /// PerformMulCombine - Optimize a single multiply with constant into two
11945 /// in order to implement it with two cheaper instructions, e.g.
11946 /// LEA + SHL, LEA + LEA.
11947 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
11948                                  TargetLowering::DAGCombinerInfo &DCI) {
11949   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
11950     return SDValue();
11951
11952   EVT VT = N->getValueType(0);
11953   if (VT != MVT::i64)
11954     return SDValue();
11955
11956   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
11957   if (!C)
11958     return SDValue();
11959   uint64_t MulAmt = C->getZExtValue();
11960   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
11961     return SDValue();
11962
11963   uint64_t MulAmt1 = 0;
11964   uint64_t MulAmt2 = 0;
11965   if ((MulAmt % 9) == 0) {
11966     MulAmt1 = 9;
11967     MulAmt2 = MulAmt / 9;
11968   } else if ((MulAmt % 5) == 0) {
11969     MulAmt1 = 5;
11970     MulAmt2 = MulAmt / 5;
11971   } else if ((MulAmt % 3) == 0) {
11972     MulAmt1 = 3;
11973     MulAmt2 = MulAmt / 3;
11974   }
11975   if (MulAmt2 &&
11976       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
11977     DebugLoc DL = N->getDebugLoc();
11978
11979     if (isPowerOf2_64(MulAmt2) &&
11980         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
11981       // If second multiplifer is pow2, issue it first. We want the multiply by
11982       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
11983       // is an add.
11984       std::swap(MulAmt1, MulAmt2);
11985
11986     SDValue NewMul;
11987     if (isPowerOf2_64(MulAmt1))
11988       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
11989                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
11990     else
11991       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
11992                            DAG.getConstant(MulAmt1, VT));
11993
11994     if (isPowerOf2_64(MulAmt2))
11995       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
11996                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
11997     else
11998       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
11999                            DAG.getConstant(MulAmt2, VT));
12000
12001     // Do not add new nodes to DAG combiner worklist.
12002     DCI.CombineTo(N, NewMul, false);
12003   }
12004   return SDValue();
12005 }
12006
12007 static SDValue PerformSHLCombine(SDNode *N, SelectionDAG &DAG) {
12008   SDValue N0 = N->getOperand(0);
12009   SDValue N1 = N->getOperand(1);
12010   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1);
12011   EVT VT = N0.getValueType();
12012
12013   // fold (shl (and (setcc_c), c1), c2) -> (and setcc_c, (c1 << c2))
12014   // since the result of setcc_c is all zero's or all ones.
12015   if (N1C && N0.getOpcode() == ISD::AND &&
12016       N0.getOperand(1).getOpcode() == ISD::Constant) {
12017     SDValue N00 = N0.getOperand(0);
12018     if (N00.getOpcode() == X86ISD::SETCC_CARRY ||
12019         ((N00.getOpcode() == ISD::ANY_EXTEND ||
12020           N00.getOpcode() == ISD::ZERO_EXTEND) &&
12021          N00.getOperand(0).getOpcode() == X86ISD::SETCC_CARRY)) {
12022       APInt Mask = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue();
12023       APInt ShAmt = N1C->getAPIntValue();
12024       Mask = Mask.shl(ShAmt);
12025       if (Mask != 0)
12026         return DAG.getNode(ISD::AND, N->getDebugLoc(), VT,
12027                            N00, DAG.getConstant(Mask, VT));
12028     }
12029   }
12030
12031   return SDValue();
12032 }
12033
12034 /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
12035 ///                       when possible.
12036 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
12037                                    const X86Subtarget *Subtarget) {
12038   EVT VT = N->getValueType(0);
12039   if (!VT.isVector() && VT.isInteger() &&
12040       N->getOpcode() == ISD::SHL)
12041     return PerformSHLCombine(N, DAG);
12042
12043   // On X86 with SSE2 support, we can transform this to a vector shift if
12044   // all elements are shifted by the same amount.  We can't do this in legalize
12045   // because the a constant vector is typically transformed to a constant pool
12046   // so we have no knowledge of the shift amount.
12047   if (!Subtarget->hasSSE2())
12048     return SDValue();
12049
12050   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
12051     return SDValue();
12052
12053   SDValue ShAmtOp = N->getOperand(1);
12054   EVT EltVT = VT.getVectorElementType();
12055   DebugLoc DL = N->getDebugLoc();
12056   SDValue BaseShAmt = SDValue();
12057   if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
12058     unsigned NumElts = VT.getVectorNumElements();
12059     unsigned i = 0;
12060     for (; i != NumElts; ++i) {
12061       SDValue Arg = ShAmtOp.getOperand(i);
12062       if (Arg.getOpcode() == ISD::UNDEF) continue;
12063       BaseShAmt = Arg;
12064       break;
12065     }
12066     for (; i != NumElts; ++i) {
12067       SDValue Arg = ShAmtOp.getOperand(i);
12068       if (Arg.getOpcode() == ISD::UNDEF) continue;
12069       if (Arg != BaseShAmt) {
12070         return SDValue();
12071       }
12072     }
12073   } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
12074              cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
12075     SDValue InVec = ShAmtOp.getOperand(0);
12076     if (InVec.getOpcode() == ISD::BUILD_VECTOR) {
12077       unsigned NumElts = InVec.getValueType().getVectorNumElements();
12078       unsigned i = 0;
12079       for (; i != NumElts; ++i) {
12080         SDValue Arg = InVec.getOperand(i);
12081         if (Arg.getOpcode() == ISD::UNDEF) continue;
12082         BaseShAmt = Arg;
12083         break;
12084       }
12085     } else if (InVec.getOpcode() == ISD::INSERT_VECTOR_ELT) {
12086        if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(InVec.getOperand(2))) {
12087          unsigned SplatIdx= cast<ShuffleVectorSDNode>(ShAmtOp)->getSplatIndex();
12088          if (C->getZExtValue() == SplatIdx)
12089            BaseShAmt = InVec.getOperand(1);
12090        }
12091     }
12092     if (BaseShAmt.getNode() == 0)
12093       BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
12094                               DAG.getIntPtrConstant(0));
12095   } else
12096     return SDValue();
12097
12098   // The shift amount is an i32.
12099   if (EltVT.bitsGT(MVT::i32))
12100     BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
12101   else if (EltVT.bitsLT(MVT::i32))
12102     BaseShAmt = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i32, BaseShAmt);
12103
12104   // The shift amount is identical so we can do a vector shift.
12105   SDValue  ValOp = N->getOperand(0);
12106   switch (N->getOpcode()) {
12107   default:
12108     llvm_unreachable("Unknown shift opcode!");
12109     break;
12110   case ISD::SHL:
12111     if (VT == MVT::v2i64)
12112       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12113                          DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
12114                          ValOp, BaseShAmt);
12115     if (VT == MVT::v4i32)
12116       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12117                          DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
12118                          ValOp, BaseShAmt);
12119     if (VT == MVT::v8i16)
12120       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12121                          DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
12122                          ValOp, BaseShAmt);
12123     break;
12124   case ISD::SRA:
12125     if (VT == MVT::v4i32)
12126       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12127                          DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
12128                          ValOp, BaseShAmt);
12129     if (VT == MVT::v8i16)
12130       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12131                          DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
12132                          ValOp, BaseShAmt);
12133     break;
12134   case ISD::SRL:
12135     if (VT == MVT::v2i64)
12136       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12137                          DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
12138                          ValOp, BaseShAmt);
12139     if (VT == MVT::v4i32)
12140       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12141                          DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
12142                          ValOp, BaseShAmt);
12143     if (VT ==  MVT::v8i16)
12144       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
12145                          DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
12146                          ValOp, BaseShAmt);
12147     break;
12148   }
12149   return SDValue();
12150 }
12151
12152
12153 // CMPEQCombine - Recognize the distinctive  (AND (setcc ...) (setcc ..))
12154 // where both setccs reference the same FP CMP, and rewrite for CMPEQSS
12155 // and friends.  Likewise for OR -> CMPNEQSS.
12156 static SDValue CMPEQCombine(SDNode *N, SelectionDAG &DAG,
12157                             TargetLowering::DAGCombinerInfo &DCI,
12158                             const X86Subtarget *Subtarget) {
12159   unsigned opcode;
12160
12161   // SSE1 supports CMP{eq|ne}SS, and SSE2 added CMP{eq|ne}SD, but
12162   // we're requiring SSE2 for both.
12163   if (Subtarget->hasSSE2() && isAndOrOfSetCCs(SDValue(N, 0U), opcode)) {
12164     SDValue N0 = N->getOperand(0);
12165     SDValue N1 = N->getOperand(1);
12166     SDValue CMP0 = N0->getOperand(1);
12167     SDValue CMP1 = N1->getOperand(1);
12168     DebugLoc DL = N->getDebugLoc();
12169
12170     // The SETCCs should both refer to the same CMP.
12171     if (CMP0.getOpcode() != X86ISD::CMP || CMP0 != CMP1)
12172       return SDValue();
12173
12174     SDValue CMP00 = CMP0->getOperand(0);
12175     SDValue CMP01 = CMP0->getOperand(1);
12176     EVT     VT    = CMP00.getValueType();
12177
12178     if (VT == MVT::f32 || VT == MVT::f64) {
12179       bool ExpectingFlags = false;
12180       // Check for any users that want flags:
12181       for (SDNode::use_iterator UI = N->use_begin(),
12182              UE = N->use_end();
12183            !ExpectingFlags && UI != UE; ++UI)
12184         switch (UI->getOpcode()) {
12185         default:
12186         case ISD::BR_CC:
12187         case ISD::BRCOND:
12188         case ISD::SELECT:
12189           ExpectingFlags = true;
12190           break;
12191         case ISD::CopyToReg:
12192         case ISD::SIGN_EXTEND:
12193         case ISD::ZERO_EXTEND:
12194         case ISD::ANY_EXTEND:
12195           break;
12196         }
12197
12198       if (!ExpectingFlags) {
12199         enum X86::CondCode cc0 = (enum X86::CondCode)N0.getConstantOperandVal(0);
12200         enum X86::CondCode cc1 = (enum X86::CondCode)N1.getConstantOperandVal(0);
12201
12202         if (cc1 == X86::COND_E || cc1 == X86::COND_NE) {
12203           X86::CondCode tmp = cc0;
12204           cc0 = cc1;
12205           cc1 = tmp;
12206         }
12207
12208         if ((cc0 == X86::COND_E  && cc1 == X86::COND_NP) ||
12209             (cc0 == X86::COND_NE && cc1 == X86::COND_P)) {
12210           bool is64BitFP = (CMP00.getValueType() == MVT::f64);
12211           X86ISD::NodeType NTOperator = is64BitFP ?
12212             X86ISD::FSETCCsd : X86ISD::FSETCCss;
12213           // FIXME: need symbolic constants for these magic numbers.
12214           // See X86ATTInstPrinter.cpp:printSSECC().
12215           unsigned x86cc = (cc0 == X86::COND_E) ? 0 : 4;
12216           SDValue OnesOrZeroesF = DAG.getNode(NTOperator, DL, MVT::f32, CMP00, CMP01,
12217                                               DAG.getConstant(x86cc, MVT::i8));
12218           SDValue OnesOrZeroesI = DAG.getNode(ISD::BITCAST, DL, MVT::i32,
12219                                               OnesOrZeroesF);
12220           SDValue ANDed = DAG.getNode(ISD::AND, DL, MVT::i32, OnesOrZeroesI,
12221                                       DAG.getConstant(1, MVT::i32));
12222           SDValue OneBitOfTruth = DAG.getNode(ISD::TRUNCATE, DL, MVT::i8, ANDed);
12223           return OneBitOfTruth;
12224         }
12225       }
12226     }
12227   }
12228   return SDValue();
12229 }
12230
12231 /// CanFoldXORWithAllOnes - Test whether the XOR operand is a AllOnes vector
12232 /// so it can be folded inside ANDNP.
12233 static bool CanFoldXORWithAllOnes(const SDNode *N) {
12234   EVT VT = N->getValueType(0);
12235
12236   // Match direct AllOnes for 128 and 256-bit vectors
12237   if (ISD::isBuildVectorAllOnes(N))
12238     return true;
12239
12240   // Look through a bit convert.
12241   if (N->getOpcode() == ISD::BITCAST)
12242     N = N->getOperand(0).getNode();
12243
12244   // Sometimes the operand may come from a insert_subvector building a 256-bit
12245   // allones vector
12246   SDValue V1 = N->getOperand(0);
12247   SDValue V2 = N->getOperand(1);
12248
12249   if (VT.getSizeInBits() == 256 &&
12250       N->getOpcode() == ISD::INSERT_SUBVECTOR &&
12251       V1.getOpcode() == ISD::INSERT_SUBVECTOR &&
12252       V1.getOperand(0).getOpcode() == ISD::UNDEF &&
12253       ISD::isBuildVectorAllOnes(V1.getOperand(1).getNode()) &&
12254       ISD::isBuildVectorAllOnes(V2.getNode()))
12255     return true;
12256
12257   return false;
12258 }
12259
12260 static SDValue PerformAndCombine(SDNode *N, SelectionDAG &DAG,
12261                                  TargetLowering::DAGCombinerInfo &DCI,
12262                                  const X86Subtarget *Subtarget) {
12263   if (DCI.isBeforeLegalizeOps())
12264     return SDValue();
12265
12266   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12267   if (R.getNode())
12268     return R;
12269
12270   // Want to form ANDNP nodes:
12271   // 1) In the hopes of then easily combining them with OR and AND nodes
12272   //    to form PBLEND/PSIGN.
12273   // 2) To match ANDN packed intrinsics
12274   EVT VT = N->getValueType(0);
12275   if (VT != MVT::v2i64 && VT != MVT::v4i64)
12276     return SDValue();
12277
12278   SDValue N0 = N->getOperand(0);
12279   SDValue N1 = N->getOperand(1);
12280   DebugLoc DL = N->getDebugLoc();
12281
12282   // Check LHS for vnot
12283   if (N0.getOpcode() == ISD::XOR &&
12284       //ISD::isBuildVectorAllOnes(N0.getOperand(1).getNode()))
12285       CanFoldXORWithAllOnes(N0.getOperand(1).getNode()))
12286     return DAG.getNode(X86ISD::ANDNP, DL, VT, N0.getOperand(0), N1);
12287
12288   // Check RHS for vnot
12289   if (N1.getOpcode() == ISD::XOR &&
12290       //ISD::isBuildVectorAllOnes(N1.getOperand(1).getNode()))
12291       CanFoldXORWithAllOnes(N1.getOperand(1).getNode()))
12292     return DAG.getNode(X86ISD::ANDNP, DL, VT, N1.getOperand(0), N0);
12293
12294   return SDValue();
12295 }
12296
12297 static SDValue PerformOrCombine(SDNode *N, SelectionDAG &DAG,
12298                                 TargetLowering::DAGCombinerInfo &DCI,
12299                                 const X86Subtarget *Subtarget) {
12300   if (DCI.isBeforeLegalizeOps())
12301     return SDValue();
12302
12303   SDValue R = CMPEQCombine(N, DAG, DCI, Subtarget);
12304   if (R.getNode())
12305     return R;
12306
12307   EVT VT = N->getValueType(0);
12308   if (VT != MVT::i16 && VT != MVT::i32 && VT != MVT::i64 && VT != MVT::v2i64)
12309     return SDValue();
12310
12311   SDValue N0 = N->getOperand(0);
12312   SDValue N1 = N->getOperand(1);
12313
12314   // look for psign/blend
12315   if (Subtarget->hasSSSE3()) {
12316     if (VT == MVT::v2i64) {
12317       // Canonicalize pandn to RHS
12318       if (N0.getOpcode() == X86ISD::ANDNP)
12319         std::swap(N0, N1);
12320       // or (and (m, x), (pandn m, y))
12321       if (N0.getOpcode() == ISD::AND && N1.getOpcode() == X86ISD::ANDNP) {
12322         SDValue Mask = N1.getOperand(0);
12323         SDValue X    = N1.getOperand(1);
12324         SDValue Y;
12325         if (N0.getOperand(0) == Mask)
12326           Y = N0.getOperand(1);
12327         if (N0.getOperand(1) == Mask)
12328           Y = N0.getOperand(0);
12329
12330         // Check to see if the mask appeared in both the AND and ANDNP and
12331         if (!Y.getNode())
12332           return SDValue();
12333
12334         // Validate that X, Y, and Mask are BIT_CONVERTS, and see through them.
12335         if (Mask.getOpcode() != ISD::BITCAST ||
12336             X.getOpcode() != ISD::BITCAST ||
12337             Y.getOpcode() != ISD::BITCAST)
12338           return SDValue();
12339
12340         // Look through mask bitcast.
12341         Mask = Mask.getOperand(0);
12342         EVT MaskVT = Mask.getValueType();
12343
12344         // Validate that the Mask operand is a vector sra node.  The sra node
12345         // will be an intrinsic.
12346         if (Mask.getOpcode() != ISD::INTRINSIC_WO_CHAIN)
12347           return SDValue();
12348
12349         // FIXME: what to do for bytes, since there is a psignb/pblendvb, but
12350         // there is no psrai.b
12351         switch (cast<ConstantSDNode>(Mask.getOperand(0))->getZExtValue()) {
12352         case Intrinsic::x86_sse2_psrai_w:
12353         case Intrinsic::x86_sse2_psrai_d:
12354           break;
12355         default: return SDValue();
12356         }
12357
12358         // Check that the SRA is all signbits.
12359         SDValue SraC = Mask.getOperand(2);
12360         unsigned SraAmt  = cast<ConstantSDNode>(SraC)->getZExtValue();
12361         unsigned EltBits = MaskVT.getVectorElementType().getSizeInBits();
12362         if ((SraAmt + 1) != EltBits)
12363           return SDValue();
12364
12365         DebugLoc DL = N->getDebugLoc();
12366
12367         // Now we know we at least have a plendvb with the mask val.  See if
12368         // we can form a psignb/w/d.
12369         // psign = x.type == y.type == mask.type && y = sub(0, x);
12370         X = X.getOperand(0);
12371         Y = Y.getOperand(0);
12372         if (Y.getOpcode() == ISD::SUB && Y.getOperand(1) == X &&
12373             ISD::isBuildVectorAllZeros(Y.getOperand(0).getNode()) &&
12374             X.getValueType() == MaskVT && X.getValueType() == Y.getValueType()){
12375           unsigned Opc = 0;
12376           switch (EltBits) {
12377           case 8: Opc = X86ISD::PSIGNB; break;
12378           case 16: Opc = X86ISD::PSIGNW; break;
12379           case 32: Opc = X86ISD::PSIGND; break;
12380           default: break;
12381           }
12382           if (Opc) {
12383             SDValue Sign = DAG.getNode(Opc, DL, MaskVT, X, Mask.getOperand(1));
12384             return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Sign);
12385           }
12386         }
12387         // PBLENDVB only available on SSE 4.1
12388         if (!Subtarget->hasSSE41())
12389           return SDValue();
12390
12391         X = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, X);
12392         Y = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Y);
12393         Mask = DAG.getNode(ISD::BITCAST, DL, MVT::v16i8, Mask);
12394         Mask = DAG.getNode(X86ISD::PBLENDVB, DL, MVT::v16i8, X, Y, Mask);
12395         return DAG.getNode(ISD::BITCAST, DL, MVT::v2i64, Mask);
12396       }
12397     }
12398   }
12399
12400   // fold (or (x << c) | (y >> (64 - c))) ==> (shld64 x, y, c)
12401   if (N0.getOpcode() == ISD::SRL && N1.getOpcode() == ISD::SHL)
12402     std::swap(N0, N1);
12403   if (N0.getOpcode() != ISD::SHL || N1.getOpcode() != ISD::SRL)
12404     return SDValue();
12405   if (!N0.hasOneUse() || !N1.hasOneUse())
12406     return SDValue();
12407
12408   SDValue ShAmt0 = N0.getOperand(1);
12409   if (ShAmt0.getValueType() != MVT::i8)
12410     return SDValue();
12411   SDValue ShAmt1 = N1.getOperand(1);
12412   if (ShAmt1.getValueType() != MVT::i8)
12413     return SDValue();
12414   if (ShAmt0.getOpcode() == ISD::TRUNCATE)
12415     ShAmt0 = ShAmt0.getOperand(0);
12416   if (ShAmt1.getOpcode() == ISD::TRUNCATE)
12417     ShAmt1 = ShAmt1.getOperand(0);
12418
12419   DebugLoc DL = N->getDebugLoc();
12420   unsigned Opc = X86ISD::SHLD;
12421   SDValue Op0 = N0.getOperand(0);
12422   SDValue Op1 = N1.getOperand(0);
12423   if (ShAmt0.getOpcode() == ISD::SUB) {
12424     Opc = X86ISD::SHRD;
12425     std::swap(Op0, Op1);
12426     std::swap(ShAmt0, ShAmt1);
12427   }
12428
12429   unsigned Bits = VT.getSizeInBits();
12430   if (ShAmt1.getOpcode() == ISD::SUB) {
12431     SDValue Sum = ShAmt1.getOperand(0);
12432     if (ConstantSDNode *SumC = dyn_cast<ConstantSDNode>(Sum)) {
12433       SDValue ShAmt1Op1 = ShAmt1.getOperand(1);
12434       if (ShAmt1Op1.getNode()->getOpcode() == ISD::TRUNCATE)
12435         ShAmt1Op1 = ShAmt1Op1.getOperand(0);
12436       if (SumC->getSExtValue() == Bits && ShAmt1Op1 == ShAmt0)
12437         return DAG.getNode(Opc, DL, VT,
12438                            Op0, Op1,
12439                            DAG.getNode(ISD::TRUNCATE, DL,
12440                                        MVT::i8, ShAmt0));
12441     }
12442   } else if (ConstantSDNode *ShAmt1C = dyn_cast<ConstantSDNode>(ShAmt1)) {
12443     ConstantSDNode *ShAmt0C = dyn_cast<ConstantSDNode>(ShAmt0);
12444     if (ShAmt0C &&
12445         ShAmt0C->getSExtValue() + ShAmt1C->getSExtValue() == Bits)
12446       return DAG.getNode(Opc, DL, VT,
12447                          N0.getOperand(0), N1.getOperand(0),
12448                          DAG.getNode(ISD::TRUNCATE, DL,
12449                                        MVT::i8, ShAmt0));
12450   }
12451
12452   return SDValue();
12453 }
12454
12455 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
12456 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
12457                                    const X86Subtarget *Subtarget) {
12458   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
12459   // the FP state in cases where an emms may be missing.
12460   // A preferable solution to the general problem is to figure out the right
12461   // places to insert EMMS.  This qualifies as a quick hack.
12462
12463   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
12464   StoreSDNode *St = cast<StoreSDNode>(N);
12465   EVT VT = St->getValue().getValueType();
12466   if (VT.getSizeInBits() != 64)
12467     return SDValue();
12468
12469   const Function *F = DAG.getMachineFunction().getFunction();
12470   bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
12471   bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps
12472     && Subtarget->hasSSE2();
12473   if ((VT.isVector() ||
12474        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
12475       isa<LoadSDNode>(St->getValue()) &&
12476       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
12477       St->getChain().hasOneUse() && !St->isVolatile()) {
12478     SDNode* LdVal = St->getValue().getNode();
12479     LoadSDNode *Ld = 0;
12480     int TokenFactorIndex = -1;
12481     SmallVector<SDValue, 8> Ops;
12482     SDNode* ChainVal = St->getChain().getNode();
12483     // Must be a store of a load.  We currently handle two cases:  the load
12484     // is a direct child, and it's under an intervening TokenFactor.  It is
12485     // possible to dig deeper under nested TokenFactors.
12486     if (ChainVal == LdVal)
12487       Ld = cast<LoadSDNode>(St->getChain());
12488     else if (St->getValue().hasOneUse() &&
12489              ChainVal->getOpcode() == ISD::TokenFactor) {
12490       for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
12491         if (ChainVal->getOperand(i).getNode() == LdVal) {
12492           TokenFactorIndex = i;
12493           Ld = cast<LoadSDNode>(St->getValue());
12494         } else
12495           Ops.push_back(ChainVal->getOperand(i));
12496       }
12497     }
12498
12499     if (!Ld || !ISD::isNormalLoad(Ld))
12500       return SDValue();
12501
12502     // If this is not the MMX case, i.e. we are just turning i64 load/store
12503     // into f64 load/store, avoid the transformation if there are multiple
12504     // uses of the loaded value.
12505     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
12506       return SDValue();
12507
12508     DebugLoc LdDL = Ld->getDebugLoc();
12509     DebugLoc StDL = N->getDebugLoc();
12510     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
12511     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
12512     // pair instead.
12513     if (Subtarget->is64Bit() || F64IsLegal) {
12514       EVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
12515       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(), Ld->getBasePtr(),
12516                                   Ld->getPointerInfo(), Ld->isVolatile(),
12517                                   Ld->isNonTemporal(), Ld->getAlignment());
12518       SDValue NewChain = NewLd.getValue(1);
12519       if (TokenFactorIndex != -1) {
12520         Ops.push_back(NewChain);
12521         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
12522                                Ops.size());
12523       }
12524       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
12525                           St->getPointerInfo(),
12526                           St->isVolatile(), St->isNonTemporal(),
12527                           St->getAlignment());
12528     }
12529
12530     // Otherwise, lower to two pairs of 32-bit loads / stores.
12531     SDValue LoAddr = Ld->getBasePtr();
12532     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
12533                                  DAG.getConstant(4, MVT::i32));
12534
12535     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
12536                                Ld->getPointerInfo(),
12537                                Ld->isVolatile(), Ld->isNonTemporal(),
12538                                Ld->getAlignment());
12539     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
12540                                Ld->getPointerInfo().getWithOffset(4),
12541                                Ld->isVolatile(), Ld->isNonTemporal(),
12542                                MinAlign(Ld->getAlignment(), 4));
12543
12544     SDValue NewChain = LoLd.getValue(1);
12545     if (TokenFactorIndex != -1) {
12546       Ops.push_back(LoLd);
12547       Ops.push_back(HiLd);
12548       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
12549                              Ops.size());
12550     }
12551
12552     LoAddr = St->getBasePtr();
12553     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
12554                          DAG.getConstant(4, MVT::i32));
12555
12556     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
12557                                 St->getPointerInfo(),
12558                                 St->isVolatile(), St->isNonTemporal(),
12559                                 St->getAlignment());
12560     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
12561                                 St->getPointerInfo().getWithOffset(4),
12562                                 St->isVolatile(),
12563                                 St->isNonTemporal(),
12564                                 MinAlign(St->getAlignment(), 4));
12565     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
12566   }
12567   return SDValue();
12568 }
12569
12570 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
12571 /// X86ISD::FXOR nodes.
12572 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
12573   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
12574   // F[X]OR(0.0, x) -> x
12575   // F[X]OR(x, 0.0) -> x
12576   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12577     if (C->getValueAPF().isPosZero())
12578       return N->getOperand(1);
12579   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12580     if (C->getValueAPF().isPosZero())
12581       return N->getOperand(0);
12582   return SDValue();
12583 }
12584
12585 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
12586 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
12587   // FAND(0.0, x) -> 0.0
12588   // FAND(x, 0.0) -> 0.0
12589   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
12590     if (C->getValueAPF().isPosZero())
12591       return N->getOperand(0);
12592   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
12593     if (C->getValueAPF().isPosZero())
12594       return N->getOperand(1);
12595   return SDValue();
12596 }
12597
12598 static SDValue PerformBTCombine(SDNode *N,
12599                                 SelectionDAG &DAG,
12600                                 TargetLowering::DAGCombinerInfo &DCI) {
12601   // BT ignores high bits in the bit index operand.
12602   SDValue Op1 = N->getOperand(1);
12603   if (Op1.hasOneUse()) {
12604     unsigned BitWidth = Op1.getValueSizeInBits();
12605     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
12606     APInt KnownZero, KnownOne;
12607     TargetLowering::TargetLoweringOpt TLO(DAG, !DCI.isBeforeLegalize(),
12608                                           !DCI.isBeforeLegalizeOps());
12609     const TargetLowering &TLI = DAG.getTargetLoweringInfo();
12610     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
12611         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
12612       DCI.CommitTargetLoweringOpt(TLO);
12613   }
12614   return SDValue();
12615 }
12616
12617 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
12618   SDValue Op = N->getOperand(0);
12619   if (Op.getOpcode() == ISD::BITCAST)
12620     Op = Op.getOperand(0);
12621   EVT VT = N->getValueType(0), OpVT = Op.getValueType();
12622   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
12623       VT.getVectorElementType().getSizeInBits() ==
12624       OpVT.getVectorElementType().getSizeInBits()) {
12625     return DAG.getNode(ISD::BITCAST, N->getDebugLoc(), VT, Op);
12626   }
12627   return SDValue();
12628 }
12629
12630 static SDValue PerformZExtCombine(SDNode *N, SelectionDAG &DAG) {
12631   // (i32 zext (and (i8  x86isd::setcc_carry), 1)) ->
12632   //           (and (i32 x86isd::setcc_carry), 1)
12633   // This eliminates the zext. This transformation is necessary because
12634   // ISD::SETCC is always legalized to i8.
12635   DebugLoc dl = N->getDebugLoc();
12636   SDValue N0 = N->getOperand(0);
12637   EVT VT = N->getValueType(0);
12638   if (N0.getOpcode() == ISD::AND &&
12639       N0.hasOneUse() &&
12640       N0.getOperand(0).hasOneUse()) {
12641     SDValue N00 = N0.getOperand(0);
12642     if (N00.getOpcode() != X86ISD::SETCC_CARRY)
12643       return SDValue();
12644     ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getOperand(1));
12645     if (!C || C->getZExtValue() != 1)
12646       return SDValue();
12647     return DAG.getNode(ISD::AND, dl, VT,
12648                        DAG.getNode(X86ISD::SETCC_CARRY, dl, VT,
12649                                    N00.getOperand(0), N00.getOperand(1)),
12650                        DAG.getConstant(1, VT));
12651   }
12652
12653   return SDValue();
12654 }
12655
12656 // Optimize  RES = X86ISD::SETCC CONDCODE, EFLAG_INPUT
12657 static SDValue PerformSETCCCombine(SDNode *N, SelectionDAG &DAG) {
12658   unsigned X86CC = N->getConstantOperandVal(0);
12659   SDValue EFLAG = N->getOperand(1);
12660   DebugLoc DL = N->getDebugLoc();
12661
12662   // Materialize "setb reg" as "sbb reg,reg", since it can be extended without
12663   // a zext and produces an all-ones bit which is more useful than 0/1 in some
12664   // cases.
12665   if (X86CC == X86::COND_B)
12666     return DAG.getNode(ISD::AND, DL, MVT::i8,
12667                        DAG.getNode(X86ISD::SETCC_CARRY, DL, MVT::i8,
12668                                    DAG.getConstant(X86CC, MVT::i8), EFLAG),
12669                        DAG.getConstant(1, MVT::i8));
12670
12671   return SDValue();
12672 }
12673
12674 static SDValue PerformSINT_TO_FPCombine(SDNode *N, SelectionDAG &DAG,
12675                                         const X86TargetLowering *XTLI) {
12676   SDValue Op0 = N->getOperand(0);
12677   // Transform (SINT_TO_FP (i64 ...)) into an x87 operation if we have
12678   // a 32-bit target where SSE doesn't support i64->FP operations.
12679   if (Op0.getOpcode() == ISD::LOAD) {
12680     LoadSDNode *Ld = cast<LoadSDNode>(Op0.getNode());
12681     EVT VT = Ld->getValueType(0);
12682     if (!Ld->isVolatile() && !N->getValueType(0).isVector() &&
12683         ISD::isNON_EXTLoad(Op0.getNode()) && Op0.hasOneUse() &&
12684         !XTLI->getSubtarget()->is64Bit() &&
12685         !DAG.getTargetLoweringInfo().isTypeLegal(VT)) {
12686       SDValue FILDChain = XTLI->BuildFILD(SDValue(N, 0), Ld->getValueType(0),
12687                                           Ld->getChain(), Op0, DAG);
12688       DAG.ReplaceAllUsesOfValueWith(Op0.getValue(1), FILDChain.getValue(1));
12689       return FILDChain;
12690     }
12691   }
12692   return SDValue();
12693 }
12694
12695 // Optimize RES, EFLAGS = X86ISD::ADC LHS, RHS, EFLAGS
12696 static SDValue PerformADCCombine(SDNode *N, SelectionDAG &DAG,
12697                                  X86TargetLowering::DAGCombinerInfo &DCI) {
12698   // If the LHS and RHS of the ADC node are zero, then it can't overflow and
12699   // the result is either zero or one (depending on the input carry bit).
12700   // Strength reduce this down to a "set on carry" aka SETCC_CARRY&1.
12701   if (X86::isZeroNode(N->getOperand(0)) &&
12702       X86::isZeroNode(N->getOperand(1)) &&
12703       // We don't have a good way to replace an EFLAGS use, so only do this when
12704       // dead right now.
12705       SDValue(N, 1).use_empty()) {
12706     DebugLoc DL = N->getDebugLoc();
12707     EVT VT = N->getValueType(0);
12708     SDValue CarryOut = DAG.getConstant(0, N->getValueType(1));
12709     SDValue Res1 = DAG.getNode(ISD::AND, DL, VT,
12710                                DAG.getNode(X86ISD::SETCC_CARRY, DL, VT,
12711                                            DAG.getConstant(X86::COND_B,MVT::i8),
12712                                            N->getOperand(2)),
12713                                DAG.getConstant(1, VT));
12714     return DCI.CombineTo(N, Res1, CarryOut);
12715   }
12716
12717   return SDValue();
12718 }
12719
12720 // fold (add Y, (sete  X, 0)) -> adc  0, Y
12721 //      (add Y, (setne X, 0)) -> sbb -1, Y
12722 //      (sub (sete  X, 0), Y) -> sbb  0, Y
12723 //      (sub (setne X, 0), Y) -> adc -1, Y
12724 static SDValue OptimizeConditionalInDecrement(SDNode *N, SelectionDAG &DAG) {
12725   DebugLoc DL = N->getDebugLoc();
12726
12727   // Look through ZExts.
12728   SDValue Ext = N->getOperand(N->getOpcode() == ISD::SUB ? 1 : 0);
12729   if (Ext.getOpcode() != ISD::ZERO_EXTEND || !Ext.hasOneUse())
12730     return SDValue();
12731
12732   SDValue SetCC = Ext.getOperand(0);
12733   if (SetCC.getOpcode() != X86ISD::SETCC || !SetCC.hasOneUse())
12734     return SDValue();
12735
12736   X86::CondCode CC = (X86::CondCode)SetCC.getConstantOperandVal(0);
12737   if (CC != X86::COND_E && CC != X86::COND_NE)
12738     return SDValue();
12739
12740   SDValue Cmp = SetCC.getOperand(1);
12741   if (Cmp.getOpcode() != X86ISD::CMP || !Cmp.hasOneUse() ||
12742       !X86::isZeroNode(Cmp.getOperand(1)) ||
12743       !Cmp.getOperand(0).getValueType().isInteger())
12744     return SDValue();
12745
12746   SDValue CmpOp0 = Cmp.getOperand(0);
12747   SDValue NewCmp = DAG.getNode(X86ISD::CMP, DL, MVT::i32, CmpOp0,
12748                                DAG.getConstant(1, CmpOp0.getValueType()));
12749
12750   SDValue OtherVal = N->getOperand(N->getOpcode() == ISD::SUB ? 0 : 1);
12751   if (CC == X86::COND_NE)
12752     return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::ADC : X86ISD::SBB,
12753                        DL, OtherVal.getValueType(), OtherVal,
12754                        DAG.getConstant(-1ULL, OtherVal.getValueType()), NewCmp);
12755   return DAG.getNode(N->getOpcode() == ISD::SUB ? X86ISD::SBB : X86ISD::ADC,
12756                      DL, OtherVal.getValueType(), OtherVal,
12757                      DAG.getConstant(0, OtherVal.getValueType()), NewCmp);
12758 }
12759
12760 static SDValue PerformSubCombine(SDNode *N, SelectionDAG &DAG) {
12761   SDValue Op0 = N->getOperand(0);
12762   SDValue Op1 = N->getOperand(1);
12763
12764   // X86 can't encode an immediate LHS of a sub. See if we can push the
12765   // negation into a preceding instruction.
12766   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op0)) {
12767     uint64_t Op0C = C->getSExtValue();
12768
12769     // If the RHS of the sub is a XOR with one use and a constant, invert the
12770     // immediate. Then add one to the LHS of the sub so we can turn
12771     // X-Y -> X+~Y+1, saving one register.
12772     if (Op1->hasOneUse() && Op1.getOpcode() == ISD::XOR &&
12773         isa<ConstantSDNode>(Op1.getOperand(1))) {
12774       uint64_t XorC = cast<ConstantSDNode>(Op1.getOperand(1))->getSExtValue();
12775       EVT VT = Op0.getValueType();
12776       SDValue NewXor = DAG.getNode(ISD::XOR, Op1.getDebugLoc(), VT,
12777                                    Op1.getOperand(0),
12778                                    DAG.getConstant(~XorC, VT));
12779       return DAG.getNode(ISD::ADD, N->getDebugLoc(), VT, NewXor,
12780                          DAG.getConstant(Op0C+1, VT));
12781     }
12782   }
12783
12784   return OptimizeConditionalInDecrement(N, DAG);
12785 }
12786
12787 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
12788                                              DAGCombinerInfo &DCI) const {
12789   SelectionDAG &DAG = DCI.DAG;
12790   switch (N->getOpcode()) {
12791   default: break;
12792   case ISD::EXTRACT_VECTOR_ELT:
12793     return PerformEXTRACT_VECTOR_ELTCombine(N, DAG, *this);
12794   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, Subtarget);
12795   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI);
12796   case ISD::ADD:            return OptimizeConditionalInDecrement(N, DAG);
12797   case ISD::SUB:            return PerformSubCombine(N, DAG);
12798   case X86ISD::ADC:         return PerformADCCombine(N, DAG, DCI);
12799   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
12800   case ISD::SHL:
12801   case ISD::SRA:
12802   case ISD::SRL:            return PerformShiftCombine(N, DAG, Subtarget);
12803   case ISD::AND:            return PerformAndCombine(N, DAG, DCI, Subtarget);
12804   case ISD::OR:             return PerformOrCombine(N, DAG, DCI, Subtarget);
12805   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
12806   case ISD::SINT_TO_FP:     return PerformSINT_TO_FPCombine(N, DAG, this);
12807   case X86ISD::FXOR:
12808   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
12809   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
12810   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
12811   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
12812   case ISD::ZERO_EXTEND:    return PerformZExtCombine(N, DAG);
12813   case X86ISD::SETCC:       return PerformSETCCCombine(N, DAG);
12814   case X86ISD::SHUFPS:      // Handle all target specific shuffles
12815   case X86ISD::SHUFPD:
12816   case X86ISD::PALIGN:
12817   case X86ISD::PUNPCKHBW:
12818   case X86ISD::PUNPCKHWD:
12819   case X86ISD::PUNPCKHDQ:
12820   case X86ISD::PUNPCKHQDQ:
12821   case X86ISD::UNPCKHPS:
12822   case X86ISD::UNPCKHPD:
12823   case X86ISD::VUNPCKHPSY:
12824   case X86ISD::VUNPCKHPDY:
12825   case X86ISD::PUNPCKLBW:
12826   case X86ISD::PUNPCKLWD:
12827   case X86ISD::PUNPCKLDQ:
12828   case X86ISD::PUNPCKLQDQ:
12829   case X86ISD::UNPCKLPS:
12830   case X86ISD::UNPCKLPD:
12831   case X86ISD::VUNPCKLPSY:
12832   case X86ISD::VUNPCKLPDY:
12833   case X86ISD::MOVHLPS:
12834   case X86ISD::MOVLHPS:
12835   case X86ISD::PSHUFD:
12836   case X86ISD::PSHUFHW:
12837   case X86ISD::PSHUFLW:
12838   case X86ISD::MOVSS:
12839   case X86ISD::MOVSD:
12840   case X86ISD::VPERMILPS:
12841   case X86ISD::VPERMILPSY:
12842   case X86ISD::VPERMILPD:
12843   case X86ISD::VPERMILPDY:
12844   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, DCI);
12845   }
12846
12847   return SDValue();
12848 }
12849
12850 /// isTypeDesirableForOp - Return true if the target has native support for
12851 /// the specified value type and it is 'desirable' to use the type for the
12852 /// given node type. e.g. On x86 i16 is legal, but undesirable since i16
12853 /// instruction encodings are longer and some i16 instructions are slow.
12854 bool X86TargetLowering::isTypeDesirableForOp(unsigned Opc, EVT VT) const {
12855   if (!isTypeLegal(VT))
12856     return false;
12857   if (VT != MVT::i16)
12858     return true;
12859
12860   switch (Opc) {
12861   default:
12862     return true;
12863   case ISD::LOAD:
12864   case ISD::SIGN_EXTEND:
12865   case ISD::ZERO_EXTEND:
12866   case ISD::ANY_EXTEND:
12867   case ISD::SHL:
12868   case ISD::SRL:
12869   case ISD::SUB:
12870   case ISD::ADD:
12871   case ISD::MUL:
12872   case ISD::AND:
12873   case ISD::OR:
12874   case ISD::XOR:
12875     return false;
12876   }
12877 }
12878
12879 /// IsDesirableToPromoteOp - This method query the target whether it is
12880 /// beneficial for dag combiner to promote the specified node. If true, it
12881 /// should return the desired promotion type by reference.
12882 bool X86TargetLowering::IsDesirableToPromoteOp(SDValue Op, EVT &PVT) const {
12883   EVT VT = Op.getValueType();
12884   if (VT != MVT::i16)
12885     return false;
12886
12887   bool Promote = false;
12888   bool Commute = false;
12889   switch (Op.getOpcode()) {
12890   default: break;
12891   case ISD::LOAD: {
12892     LoadSDNode *LD = cast<LoadSDNode>(Op);
12893     // If the non-extending load has a single use and it's not live out, then it
12894     // might be folded.
12895     if (LD->getExtensionType() == ISD::NON_EXTLOAD /*&&
12896                                                      Op.hasOneUse()*/) {
12897       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
12898              UE = Op.getNode()->use_end(); UI != UE; ++UI) {
12899         // The only case where we'd want to promote LOAD (rather then it being
12900         // promoted as an operand is when it's only use is liveout.
12901         if (UI->getOpcode() != ISD::CopyToReg)
12902           return false;
12903       }
12904     }
12905     Promote = true;
12906     break;
12907   }
12908   case ISD::SIGN_EXTEND:
12909   case ISD::ZERO_EXTEND:
12910   case ISD::ANY_EXTEND:
12911     Promote = true;
12912     break;
12913   case ISD::SHL:
12914   case ISD::SRL: {
12915     SDValue N0 = Op.getOperand(0);
12916     // Look out for (store (shl (load), x)).
12917     if (MayFoldLoad(N0) && MayFoldIntoStore(Op))
12918       return false;
12919     Promote = true;
12920     break;
12921   }
12922   case ISD::ADD:
12923   case ISD::MUL:
12924   case ISD::AND:
12925   case ISD::OR:
12926   case ISD::XOR:
12927     Commute = true;
12928     // fallthrough
12929   case ISD::SUB: {
12930     SDValue N0 = Op.getOperand(0);
12931     SDValue N1 = Op.getOperand(1);
12932     if (!Commute && MayFoldLoad(N1))
12933       return false;
12934     // Avoid disabling potential load folding opportunities.
12935     if (MayFoldLoad(N0) && (!isa<ConstantSDNode>(N1) || MayFoldIntoStore(Op)))
12936       return false;
12937     if (MayFoldLoad(N1) && (!isa<ConstantSDNode>(N0) || MayFoldIntoStore(Op)))
12938       return false;
12939     Promote = true;
12940   }
12941   }
12942
12943   PVT = MVT::i32;
12944   return Promote;
12945 }
12946
12947 //===----------------------------------------------------------------------===//
12948 //                           X86 Inline Assembly Support
12949 //===----------------------------------------------------------------------===//
12950
12951 bool X86TargetLowering::ExpandInlineAsm(CallInst *CI) const {
12952   InlineAsm *IA = cast<InlineAsm>(CI->getCalledValue());
12953
12954   std::string AsmStr = IA->getAsmString();
12955
12956   // TODO: should remove alternatives from the asmstring: "foo {a|b}" -> "foo a"
12957   SmallVector<StringRef, 4> AsmPieces;
12958   SplitString(AsmStr, AsmPieces, ";\n");
12959
12960   switch (AsmPieces.size()) {
12961   default: return false;
12962   case 1:
12963     AsmStr = AsmPieces[0];
12964     AsmPieces.clear();
12965     SplitString(AsmStr, AsmPieces, " \t");  // Split with whitespace.
12966
12967     // FIXME: this should verify that we are targeting a 486 or better.  If not,
12968     // we will turn this bswap into something that will be lowered to logical ops
12969     // instead of emitting the bswap asm.  For now, we don't support 486 or lower
12970     // so don't worry about this.
12971     // bswap $0
12972     if (AsmPieces.size() == 2 &&
12973         (AsmPieces[0] == "bswap" ||
12974          AsmPieces[0] == "bswapq" ||
12975          AsmPieces[0] == "bswapl") &&
12976         (AsmPieces[1] == "$0" ||
12977          AsmPieces[1] == "${0:q}")) {
12978       // No need to check constraints, nothing other than the equivalent of
12979       // "=r,0" would be valid here.
12980       IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
12981       if (!Ty || Ty->getBitWidth() % 16 != 0)
12982         return false;
12983       return IntrinsicLowering::LowerToByteSwap(CI);
12984     }
12985     // rorw $$8, ${0:w}  -->  llvm.bswap.i16
12986     if (CI->getType()->isIntegerTy(16) &&
12987         AsmPieces.size() == 3 &&
12988         (AsmPieces[0] == "rorw" || AsmPieces[0] == "rolw") &&
12989         AsmPieces[1] == "$$8," &&
12990         AsmPieces[2] == "${0:w}" &&
12991         IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
12992       AsmPieces.clear();
12993       const std::string &ConstraintsStr = IA->getConstraintString();
12994       SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
12995       std::sort(AsmPieces.begin(), AsmPieces.end());
12996       if (AsmPieces.size() == 4 &&
12997           AsmPieces[0] == "~{cc}" &&
12998           AsmPieces[1] == "~{dirflag}" &&
12999           AsmPieces[2] == "~{flags}" &&
13000           AsmPieces[3] == "~{fpsr}") {
13001         IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
13002         if (!Ty || Ty->getBitWidth() % 16 != 0)
13003           return false;
13004         return IntrinsicLowering::LowerToByteSwap(CI);
13005       }
13006     }
13007     break;
13008   case 3:
13009     if (CI->getType()->isIntegerTy(32) &&
13010         IA->getConstraintString().compare(0, 5, "=r,0,") == 0) {
13011       SmallVector<StringRef, 4> Words;
13012       SplitString(AsmPieces[0], Words, " \t,");
13013       if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13014           Words[2] == "${0:w}") {
13015         Words.clear();
13016         SplitString(AsmPieces[1], Words, " \t,");
13017         if (Words.size() == 3 && Words[0] == "rorl" && Words[1] == "$$16" &&
13018             Words[2] == "$0") {
13019           Words.clear();
13020           SplitString(AsmPieces[2], Words, " \t,");
13021           if (Words.size() == 3 && Words[0] == "rorw" && Words[1] == "$$8" &&
13022               Words[2] == "${0:w}") {
13023             AsmPieces.clear();
13024             const std::string &ConstraintsStr = IA->getConstraintString();
13025             SplitString(StringRef(ConstraintsStr).substr(5), AsmPieces, ",");
13026             std::sort(AsmPieces.begin(), AsmPieces.end());
13027             if (AsmPieces.size() == 4 &&
13028                 AsmPieces[0] == "~{cc}" &&
13029                 AsmPieces[1] == "~{dirflag}" &&
13030                 AsmPieces[2] == "~{flags}" &&
13031                 AsmPieces[3] == "~{fpsr}") {
13032               IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
13033               if (!Ty || Ty->getBitWidth() % 16 != 0)
13034                 return false;
13035               return IntrinsicLowering::LowerToByteSwap(CI);
13036             }
13037           }
13038         }
13039       }
13040     }
13041
13042     if (CI->getType()->isIntegerTy(64)) {
13043       InlineAsm::ConstraintInfoVector Constraints = IA->ParseConstraints();
13044       if (Constraints.size() >= 2 &&
13045           Constraints[0].Codes.size() == 1 && Constraints[0].Codes[0] == "A" &&
13046           Constraints[1].Codes.size() == 1 && Constraints[1].Codes[0] == "0") {
13047         // bswap %eax / bswap %edx / xchgl %eax, %edx  -> llvm.bswap.i64
13048         SmallVector<StringRef, 4> Words;
13049         SplitString(AsmPieces[0], Words, " \t");
13050         if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%eax") {
13051           Words.clear();
13052           SplitString(AsmPieces[1], Words, " \t");
13053           if (Words.size() == 2 && Words[0] == "bswap" && Words[1] == "%edx") {
13054             Words.clear();
13055             SplitString(AsmPieces[2], Words, " \t,");
13056             if (Words.size() == 3 && Words[0] == "xchgl" && Words[1] == "%eax" &&
13057                 Words[2] == "%edx") {
13058               IntegerType *Ty = dyn_cast<IntegerType>(CI->getType());
13059               if (!Ty || Ty->getBitWidth() % 16 != 0)
13060                 return false;
13061               return IntrinsicLowering::LowerToByteSwap(CI);
13062             }
13063           }
13064         }
13065       }
13066     }
13067     break;
13068   }
13069   return false;
13070 }
13071
13072
13073
13074 /// getConstraintType - Given a constraint letter, return the type of
13075 /// constraint it is for this target.
13076 X86TargetLowering::ConstraintType
13077 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
13078   if (Constraint.size() == 1) {
13079     switch (Constraint[0]) {
13080     case 'R':
13081     case 'q':
13082     case 'Q':
13083     case 'f':
13084     case 't':
13085     case 'u':
13086     case 'y':
13087     case 'x':
13088     case 'Y':
13089     case 'l':
13090       return C_RegisterClass;
13091     case 'a':
13092     case 'b':
13093     case 'c':
13094     case 'd':
13095     case 'S':
13096     case 'D':
13097     case 'A':
13098       return C_Register;
13099     case 'I':
13100     case 'J':
13101     case 'K':
13102     case 'L':
13103     case 'M':
13104     case 'N':
13105     case 'G':
13106     case 'C':
13107     case 'e':
13108     case 'Z':
13109       return C_Other;
13110     default:
13111       break;
13112     }
13113   }
13114   return TargetLowering::getConstraintType(Constraint);
13115 }
13116
13117 /// Examine constraint type and operand type and determine a weight value.
13118 /// This object must already have been set up with the operand type
13119 /// and the current alternative constraint selected.
13120 TargetLowering::ConstraintWeight
13121   X86TargetLowering::getSingleConstraintMatchWeight(
13122     AsmOperandInfo &info, const char *constraint) const {
13123   ConstraintWeight weight = CW_Invalid;
13124   Value *CallOperandVal = info.CallOperandVal;
13125     // If we don't have a value, we can't do a match,
13126     // but allow it at the lowest weight.
13127   if (CallOperandVal == NULL)
13128     return CW_Default;
13129   Type *type = CallOperandVal->getType();
13130   // Look at the constraint type.
13131   switch (*constraint) {
13132   default:
13133     weight = TargetLowering::getSingleConstraintMatchWeight(info, constraint);
13134   case 'R':
13135   case 'q':
13136   case 'Q':
13137   case 'a':
13138   case 'b':
13139   case 'c':
13140   case 'd':
13141   case 'S':
13142   case 'D':
13143   case 'A':
13144     if (CallOperandVal->getType()->isIntegerTy())
13145       weight = CW_SpecificReg;
13146     break;
13147   case 'f':
13148   case 't':
13149   case 'u':
13150       if (type->isFloatingPointTy())
13151         weight = CW_SpecificReg;
13152       break;
13153   case 'y':
13154       if (type->isX86_MMXTy() && Subtarget->hasMMX())
13155         weight = CW_SpecificReg;
13156       break;
13157   case 'x':
13158   case 'Y':
13159     if ((type->getPrimitiveSizeInBits() == 128) && Subtarget->hasXMM())
13160       weight = CW_Register;
13161     break;
13162   case 'I':
13163     if (ConstantInt *C = dyn_cast<ConstantInt>(info.CallOperandVal)) {
13164       if (C->getZExtValue() <= 31)
13165         weight = CW_Constant;
13166     }
13167     break;
13168   case 'J':
13169     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13170       if (C->getZExtValue() <= 63)
13171         weight = CW_Constant;
13172     }
13173     break;
13174   case 'K':
13175     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13176       if ((C->getSExtValue() >= -0x80) && (C->getSExtValue() <= 0x7f))
13177         weight = CW_Constant;
13178     }
13179     break;
13180   case 'L':
13181     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13182       if ((C->getZExtValue() == 0xff) || (C->getZExtValue() == 0xffff))
13183         weight = CW_Constant;
13184     }
13185     break;
13186   case 'M':
13187     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13188       if (C->getZExtValue() <= 3)
13189         weight = CW_Constant;
13190     }
13191     break;
13192   case 'N':
13193     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13194       if (C->getZExtValue() <= 0xff)
13195         weight = CW_Constant;
13196     }
13197     break;
13198   case 'G':
13199   case 'C':
13200     if (dyn_cast<ConstantFP>(CallOperandVal)) {
13201       weight = CW_Constant;
13202     }
13203     break;
13204   case 'e':
13205     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13206       if ((C->getSExtValue() >= -0x80000000LL) &&
13207           (C->getSExtValue() <= 0x7fffffffLL))
13208         weight = CW_Constant;
13209     }
13210     break;
13211   case 'Z':
13212     if (ConstantInt *C = dyn_cast<ConstantInt>(CallOperandVal)) {
13213       if (C->getZExtValue() <= 0xffffffff)
13214         weight = CW_Constant;
13215     }
13216     break;
13217   }
13218   return weight;
13219 }
13220
13221 /// LowerXConstraint - try to replace an X constraint, which matches anything,
13222 /// with another that has more specific requirements based on the type of the
13223 /// corresponding operand.
13224 const char *X86TargetLowering::
13225 LowerXConstraint(EVT ConstraintVT) const {
13226   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
13227   // 'f' like normal targets.
13228   if (ConstraintVT.isFloatingPoint()) {
13229     if (Subtarget->hasXMMInt())
13230       return "Y";
13231     if (Subtarget->hasXMM())
13232       return "x";
13233   }
13234
13235   return TargetLowering::LowerXConstraint(ConstraintVT);
13236 }
13237
13238 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
13239 /// vector.  If it is invalid, don't add anything to Ops.
13240 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
13241                                                      std::string &Constraint,
13242                                                      std::vector<SDValue>&Ops,
13243                                                      SelectionDAG &DAG) const {
13244   SDValue Result(0, 0);
13245
13246   // Only support length 1 constraints for now.
13247   if (Constraint.length() > 1) return;
13248
13249   char ConstraintLetter = Constraint[0];
13250   switch (ConstraintLetter) {
13251   default: break;
13252   case 'I':
13253     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13254       if (C->getZExtValue() <= 31) {
13255         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13256         break;
13257       }
13258     }
13259     return;
13260   case 'J':
13261     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13262       if (C->getZExtValue() <= 63) {
13263         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13264         break;
13265       }
13266     }
13267     return;
13268   case 'K':
13269     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13270       if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
13271         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13272         break;
13273       }
13274     }
13275     return;
13276   case 'N':
13277     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13278       if (C->getZExtValue() <= 255) {
13279         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13280         break;
13281       }
13282     }
13283     return;
13284   case 'e': {
13285     // 32-bit signed value
13286     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13287       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13288                                            C->getSExtValue())) {
13289         // Widen to 64 bits here to get it sign extended.
13290         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
13291         break;
13292       }
13293     // FIXME gcc accepts some relocatable values here too, but only in certain
13294     // memory models; it's complicated.
13295     }
13296     return;
13297   }
13298   case 'Z': {
13299     // 32-bit unsigned value
13300     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
13301       if (ConstantInt::isValueValidForType(Type::getInt32Ty(*DAG.getContext()),
13302                                            C->getZExtValue())) {
13303         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
13304         break;
13305       }
13306     }
13307     // FIXME gcc accepts some relocatable values here too, but only in certain
13308     // memory models; it's complicated.
13309     return;
13310   }
13311   case 'i': {
13312     // Literal immediates are always ok.
13313     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
13314       // Widen to 64 bits here to get it sign extended.
13315       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
13316       break;
13317     }
13318
13319     // In any sort of PIC mode addresses need to be computed at runtime by
13320     // adding in a register or some sort of table lookup.  These can't
13321     // be used as immediates.
13322     if (Subtarget->isPICStyleGOT() || Subtarget->isPICStyleStubPIC())
13323       return;
13324
13325     // If we are in non-pic codegen mode, we allow the address of a global (with
13326     // an optional displacement) to be used with 'i'.
13327     GlobalAddressSDNode *GA = 0;
13328     int64_t Offset = 0;
13329
13330     // Match either (GA), (GA+C), (GA+C1+C2), etc.
13331     while (1) {
13332       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
13333         Offset += GA->getOffset();
13334         break;
13335       } else if (Op.getOpcode() == ISD::ADD) {
13336         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13337           Offset += C->getZExtValue();
13338           Op = Op.getOperand(0);
13339           continue;
13340         }
13341       } else if (Op.getOpcode() == ISD::SUB) {
13342         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
13343           Offset += -C->getZExtValue();
13344           Op = Op.getOperand(0);
13345           continue;
13346         }
13347       }
13348
13349       // Otherwise, this isn't something we can handle, reject it.
13350       return;
13351     }
13352
13353     const GlobalValue *GV = GA->getGlobal();
13354     // If we require an extra load to get this address, as in PIC mode, we
13355     // can't accept it.
13356     if (isGlobalStubReference(Subtarget->ClassifyGlobalReference(GV,
13357                                                         getTargetMachine())))
13358       return;
13359
13360     Result = DAG.getTargetGlobalAddress(GV, Op.getDebugLoc(),
13361                                         GA->getValueType(0), Offset);
13362     break;
13363   }
13364   }
13365
13366   if (Result.getNode()) {
13367     Ops.push_back(Result);
13368     return;
13369   }
13370   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, Ops, DAG);
13371 }
13372
13373 std::pair<unsigned, const TargetRegisterClass*>
13374 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
13375                                                 EVT VT) const {
13376   // First, see if this is a constraint that directly corresponds to an LLVM
13377   // register class.
13378   if (Constraint.size() == 1) {
13379     // GCC Constraint Letters
13380     switch (Constraint[0]) {
13381     default: break;
13382       // TODO: Slight differences here in allocation order and leaving
13383       // RIP in the class. Do they matter any more here than they do
13384       // in the normal allocation?
13385     case 'q':   // GENERAL_REGS in 64-bit mode, Q_REGS in 32-bit mode.
13386       if (Subtarget->is64Bit()) {
13387         if (VT == MVT::i32 || VT == MVT::f32)
13388           return std::make_pair(0U, X86::GR32RegisterClass);
13389         else if (VT == MVT::i16)
13390           return std::make_pair(0U, X86::GR16RegisterClass);
13391         else if (VT == MVT::i8 || VT == MVT::i1)
13392           return std::make_pair(0U, X86::GR8RegisterClass);
13393         else if (VT == MVT::i64 || VT == MVT::f64)
13394           return std::make_pair(0U, X86::GR64RegisterClass);
13395         break;
13396       }
13397       // 32-bit fallthrough
13398     case 'Q':   // Q_REGS
13399       if (VT == MVT::i32 || VT == MVT::f32)
13400         return std::make_pair(0U, X86::GR32_ABCDRegisterClass);
13401       else if (VT == MVT::i16)
13402         return std::make_pair(0U, X86::GR16_ABCDRegisterClass);
13403       else if (VT == MVT::i8 || VT == MVT::i1)
13404         return std::make_pair(0U, X86::GR8_ABCD_LRegisterClass);
13405       else if (VT == MVT::i64)
13406         return std::make_pair(0U, X86::GR64_ABCDRegisterClass);
13407       break;
13408     case 'r':   // GENERAL_REGS
13409     case 'l':   // INDEX_REGS
13410       if (VT == MVT::i8 || VT == MVT::i1)
13411         return std::make_pair(0U, X86::GR8RegisterClass);
13412       if (VT == MVT::i16)
13413         return std::make_pair(0U, X86::GR16RegisterClass);
13414       if (VT == MVT::i32 || VT == MVT::f32 || !Subtarget->is64Bit())
13415         return std::make_pair(0U, X86::GR32RegisterClass);
13416       return std::make_pair(0U, X86::GR64RegisterClass);
13417     case 'R':   // LEGACY_REGS
13418       if (VT == MVT::i8 || VT == MVT::i1)
13419         return std::make_pair(0U, X86::GR8_NOREXRegisterClass);
13420       if (VT == MVT::i16)
13421         return std::make_pair(0U, X86::GR16_NOREXRegisterClass);
13422       if (VT == MVT::i32 || !Subtarget->is64Bit())
13423         return std::make_pair(0U, X86::GR32_NOREXRegisterClass);
13424       return std::make_pair(0U, X86::GR64_NOREXRegisterClass);
13425     case 'f':  // FP Stack registers.
13426       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
13427       // value to the correct fpstack register class.
13428       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
13429         return std::make_pair(0U, X86::RFP32RegisterClass);
13430       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
13431         return std::make_pair(0U, X86::RFP64RegisterClass);
13432       return std::make_pair(0U, X86::RFP80RegisterClass);
13433     case 'y':   // MMX_REGS if MMX allowed.
13434       if (!Subtarget->hasMMX()) break;
13435       return std::make_pair(0U, X86::VR64RegisterClass);
13436     case 'Y':   // SSE_REGS if SSE2 allowed
13437       if (!Subtarget->hasXMMInt()) break;
13438       // FALL THROUGH.
13439     case 'x':   // SSE_REGS if SSE1 allowed
13440       if (!Subtarget->hasXMM()) break;
13441
13442       switch (VT.getSimpleVT().SimpleTy) {
13443       default: break;
13444       // Scalar SSE types.
13445       case MVT::f32:
13446       case MVT::i32:
13447         return std::make_pair(0U, X86::FR32RegisterClass);
13448       case MVT::f64:
13449       case MVT::i64:
13450         return std::make_pair(0U, X86::FR64RegisterClass);
13451       // Vector types.
13452       case MVT::v16i8:
13453       case MVT::v8i16:
13454       case MVT::v4i32:
13455       case MVT::v2i64:
13456       case MVT::v4f32:
13457       case MVT::v2f64:
13458         return std::make_pair(0U, X86::VR128RegisterClass);
13459       }
13460       break;
13461     }
13462   }
13463
13464   // Use the default implementation in TargetLowering to convert the register
13465   // constraint into a member of a register class.
13466   std::pair<unsigned, const TargetRegisterClass*> Res;
13467   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
13468
13469   // Not found as a standard register?
13470   if (Res.second == 0) {
13471     // Map st(0) -> st(7) -> ST0
13472     if (Constraint.size() == 7 && Constraint[0] == '{' &&
13473         tolower(Constraint[1]) == 's' &&
13474         tolower(Constraint[2]) == 't' &&
13475         Constraint[3] == '(' &&
13476         (Constraint[4] >= '0' && Constraint[4] <= '7') &&
13477         Constraint[5] == ')' &&
13478         Constraint[6] == '}') {
13479
13480       Res.first = X86::ST0+Constraint[4]-'0';
13481       Res.second = X86::RFP80RegisterClass;
13482       return Res;
13483     }
13484
13485     // GCC allows "st(0)" to be called just plain "st".
13486     if (StringRef("{st}").equals_lower(Constraint)) {
13487       Res.first = X86::ST0;
13488       Res.second = X86::RFP80RegisterClass;
13489       return Res;
13490     }
13491
13492     // flags -> EFLAGS
13493     if (StringRef("{flags}").equals_lower(Constraint)) {
13494       Res.first = X86::EFLAGS;
13495       Res.second = X86::CCRRegisterClass;
13496       return Res;
13497     }
13498
13499     // 'A' means EAX + EDX.
13500     if (Constraint == "A") {
13501       Res.first = X86::EAX;
13502       Res.second = X86::GR32_ADRegisterClass;
13503       return Res;
13504     }
13505     return Res;
13506   }
13507
13508   // Otherwise, check to see if this is a register class of the wrong value
13509   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
13510   // turn into {ax},{dx}.
13511   if (Res.second->hasType(VT))
13512     return Res;   // Correct type already, nothing to do.
13513
13514   // All of the single-register GCC register classes map their values onto
13515   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
13516   // really want an 8-bit or 32-bit register, map to the appropriate register
13517   // class and return the appropriate register.
13518   if (Res.second == X86::GR16RegisterClass) {
13519     if (VT == MVT::i8) {
13520       unsigned DestReg = 0;
13521       switch (Res.first) {
13522       default: break;
13523       case X86::AX: DestReg = X86::AL; break;
13524       case X86::DX: DestReg = X86::DL; break;
13525       case X86::CX: DestReg = X86::CL; break;
13526       case X86::BX: DestReg = X86::BL; break;
13527       }
13528       if (DestReg) {
13529         Res.first = DestReg;
13530         Res.second = X86::GR8RegisterClass;
13531       }
13532     } else if (VT == MVT::i32) {
13533       unsigned DestReg = 0;
13534       switch (Res.first) {
13535       default: break;
13536       case X86::AX: DestReg = X86::EAX; break;
13537       case X86::DX: DestReg = X86::EDX; break;
13538       case X86::CX: DestReg = X86::ECX; break;
13539       case X86::BX: DestReg = X86::EBX; break;
13540       case X86::SI: DestReg = X86::ESI; break;
13541       case X86::DI: DestReg = X86::EDI; break;
13542       case X86::BP: DestReg = X86::EBP; break;
13543       case X86::SP: DestReg = X86::ESP; break;
13544       }
13545       if (DestReg) {
13546         Res.first = DestReg;
13547         Res.second = X86::GR32RegisterClass;
13548       }
13549     } else if (VT == MVT::i64) {
13550       unsigned DestReg = 0;
13551       switch (Res.first) {
13552       default: break;
13553       case X86::AX: DestReg = X86::RAX; break;
13554       case X86::DX: DestReg = X86::RDX; break;
13555       case X86::CX: DestReg = X86::RCX; break;
13556       case X86::BX: DestReg = X86::RBX; break;
13557       case X86::SI: DestReg = X86::RSI; break;
13558       case X86::DI: DestReg = X86::RDI; break;
13559       case X86::BP: DestReg = X86::RBP; break;
13560       case X86::SP: DestReg = X86::RSP; break;
13561       }
13562       if (DestReg) {
13563         Res.first = DestReg;
13564         Res.second = X86::GR64RegisterClass;
13565       }
13566     }
13567   } else if (Res.second == X86::FR32RegisterClass ||
13568              Res.second == X86::FR64RegisterClass ||
13569              Res.second == X86::VR128RegisterClass) {
13570     // Handle references to XMM physical registers that got mapped into the
13571     // wrong class.  This can happen with constraints like {xmm0} where the
13572     // target independent register mapper will just pick the first match it can
13573     // find, ignoring the required type.
13574     if (VT == MVT::f32)
13575       Res.second = X86::FR32RegisterClass;
13576     else if (VT == MVT::f64)
13577       Res.second = X86::FR64RegisterClass;
13578     else if (X86::VR128RegisterClass->hasType(VT))
13579       Res.second = X86::VR128RegisterClass;
13580   }
13581
13582   return Res;
13583 }