Move all the TLS processing logic into isel, don't do it in asmprinter at all.
[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 #include "X86.h"
16 #include "X86InstrBuilder.h"
17 #include "X86ISelLowering.h"
18 #include "X86TargetMachine.h"
19 #include "llvm/CallingConv.h"
20 #include "llvm/Constants.h"
21 #include "llvm/DerivedTypes.h"
22 #include "llvm/GlobalAlias.h"
23 #include "llvm/GlobalVariable.h"
24 #include "llvm/Function.h"
25 #include "llvm/Intrinsics.h"
26 #include "llvm/ADT/BitVector.h"
27 #include "llvm/ADT/VectorExtras.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineFunction.h"
30 #include "llvm/CodeGen/MachineInstrBuilder.h"
31 #include "llvm/CodeGen/MachineModuleInfo.h"
32 #include "llvm/CodeGen/MachineRegisterInfo.h"
33 #include "llvm/CodeGen/PseudoSourceValue.h"
34 #include "llvm/Support/MathExtras.h"
35 #include "llvm/Support/Debug.h"
36 #include "llvm/Target/TargetOptions.h"
37 #include "llvm/ADT/SmallSet.h"
38 #include "llvm/ADT/StringExtras.h"
39 #include "llvm/Support/CommandLine.h"
40 using namespace llvm;
41
42 static cl::opt<bool>
43 DisableMMX("disable-mmx", cl::Hidden, cl::desc("Disable use of MMX"));
44
45 // Forward declarations.
46 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
47                        SDValue V2);
48
49 X86TargetLowering::X86TargetLowering(X86TargetMachine &TM)
50   : TargetLowering(TM) {
51   Subtarget = &TM.getSubtarget<X86Subtarget>();
52   X86ScalarSSEf64 = Subtarget->hasSSE2();
53   X86ScalarSSEf32 = Subtarget->hasSSE1();
54   X86StackPtr = Subtarget->is64Bit() ? X86::RSP : X86::ESP;
55
56   RegInfo = TM.getRegisterInfo();
57   TD = getTargetData();
58
59   // Set up the TargetLowering object.
60
61   // X86 is weird, it always uses i8 for shift amounts and setcc results.
62   setShiftAmountType(MVT::i8);
63   setBooleanContents(ZeroOrOneBooleanContent);
64   setSchedulingPreference(SchedulingForRegPressure);
65   setShiftAmountFlavor(Mask);   // shl X, 32 == shl X, 0
66   setStackPointerRegisterToSaveRestore(X86StackPtr);
67
68   if (Subtarget->isTargetDarwin()) {
69     // Darwin should use _setjmp/_longjmp instead of setjmp/longjmp.
70     setUseUnderscoreSetJmp(false);
71     setUseUnderscoreLongJmp(false);
72   } else if (Subtarget->isTargetMingw()) {
73     // MS runtime is weird: it exports _setjmp, but longjmp!
74     setUseUnderscoreSetJmp(true);
75     setUseUnderscoreLongJmp(false);
76   } else {
77     setUseUnderscoreSetJmp(true);
78     setUseUnderscoreLongJmp(true);
79   }
80
81   // Set up the register classes.
82   addRegisterClass(MVT::i8, X86::GR8RegisterClass);
83   addRegisterClass(MVT::i16, X86::GR16RegisterClass);
84   addRegisterClass(MVT::i32, X86::GR32RegisterClass);
85   if (Subtarget->is64Bit())
86     addRegisterClass(MVT::i64, X86::GR64RegisterClass);
87
88   setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
89
90   // We don't accept any truncstore of integer registers.
91   setTruncStoreAction(MVT::i64, MVT::i32, Expand);
92   setTruncStoreAction(MVT::i64, MVT::i16, Expand);
93   setTruncStoreAction(MVT::i64, MVT::i8 , Expand);
94   setTruncStoreAction(MVT::i32, MVT::i16, Expand);
95   setTruncStoreAction(MVT::i32, MVT::i8 , Expand);
96   setTruncStoreAction(MVT::i16, MVT::i8,  Expand);
97
98   // SETOEQ and SETUNE require checking two conditions.
99   setCondCodeAction(ISD::SETOEQ, MVT::f32, Expand);
100   setCondCodeAction(ISD::SETOEQ, MVT::f64, Expand);
101   setCondCodeAction(ISD::SETOEQ, MVT::f80, Expand);
102   setCondCodeAction(ISD::SETUNE, MVT::f32, Expand);
103   setCondCodeAction(ISD::SETUNE, MVT::f64, Expand);
104   setCondCodeAction(ISD::SETUNE, MVT::f80, Expand);
105
106   // Promote all UINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have this
107   // operation.
108   setOperationAction(ISD::UINT_TO_FP       , MVT::i1   , Promote);
109   setOperationAction(ISD::UINT_TO_FP       , MVT::i8   , Promote);
110   setOperationAction(ISD::UINT_TO_FP       , MVT::i16  , Promote);
111
112   if (Subtarget->is64Bit()) {
113     setOperationAction(ISD::UINT_TO_FP     , MVT::i32  , Promote);
114     setOperationAction(ISD::UINT_TO_FP     , MVT::i64  , Expand);
115   } else if (!UseSoftFloat) {
116     if (X86ScalarSSEf64) {
117       // We have an impenetrably clever algorithm for ui64->double only.
118       setOperationAction(ISD::UINT_TO_FP   , MVT::i64  , Custom);
119     }
120     // We have an algorithm for SSE2, and we turn this into a 64-bit
121     // FILD for other targets.
122     setOperationAction(ISD::UINT_TO_FP   , MVT::i32  , Custom);
123   }
124
125   // Promote i1/i8 SINT_TO_FP to larger SINT_TO_FP's, as X86 doesn't have
126   // this operation.
127   setOperationAction(ISD::SINT_TO_FP       , MVT::i1   , Promote);
128   setOperationAction(ISD::SINT_TO_FP       , MVT::i8   , Promote);
129
130   if (!UseSoftFloat) {
131     // SSE has no i16 to fp conversion, only i32
132     if (X86ScalarSSEf32) {
133       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
134       // f32 and f64 cases are Legal, f80 case is not
135       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
136     } else {
137       setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Custom);
138       setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Custom);
139     }
140   } else {
141     setOperationAction(ISD::SINT_TO_FP     , MVT::i16  , Promote);
142     setOperationAction(ISD::SINT_TO_FP     , MVT::i32  , Promote);
143   }
144
145   // In 32-bit mode these are custom lowered.  In 64-bit mode F32 and F64
146   // are Legal, f80 is custom lowered.
147   setOperationAction(ISD::FP_TO_SINT     , MVT::i64  , Custom);
148   setOperationAction(ISD::SINT_TO_FP     , MVT::i64  , Custom);
149
150   // Promote i1/i8 FP_TO_SINT to larger FP_TO_SINTS's, as X86 doesn't have
151   // this operation.
152   setOperationAction(ISD::FP_TO_SINT       , MVT::i1   , Promote);
153   setOperationAction(ISD::FP_TO_SINT       , MVT::i8   , Promote);
154
155   if (X86ScalarSSEf32) {
156     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Promote);
157     // f32 and f64 cases are Legal, f80 case is not
158     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
159   } else {
160     setOperationAction(ISD::FP_TO_SINT     , MVT::i16  , Custom);
161     setOperationAction(ISD::FP_TO_SINT     , MVT::i32  , Custom);
162   }
163
164   // Handle FP_TO_UINT by promoting the destination to a larger signed
165   // conversion.
166   setOperationAction(ISD::FP_TO_UINT       , MVT::i1   , Promote);
167   setOperationAction(ISD::FP_TO_UINT       , MVT::i8   , Promote);
168   setOperationAction(ISD::FP_TO_UINT       , MVT::i16  , Promote);
169
170   if (Subtarget->is64Bit()) {
171     setOperationAction(ISD::FP_TO_UINT     , MVT::i64  , Expand);
172     setOperationAction(ISD::FP_TO_UINT     , MVT::i32  , Promote);
173   } else if (!UseSoftFloat) {
174     if (X86ScalarSSEf32 && !Subtarget->hasSSE3())
175       // Expand FP_TO_UINT into a select.
176       // FIXME: We would like to use a Custom expander here eventually to do
177       // the optimal thing for SSE vs. the default expansion in the legalizer.
178       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Expand);
179     else
180       // With SSE3 we can use fisttpll to convert to a signed i64; without
181       // SSE, we're stuck with a fistpll.
182       setOperationAction(ISD::FP_TO_UINT   , MVT::i32  , Custom);
183   }
184
185   // TODO: when we have SSE, these could be more efficient, by using movd/movq.
186   if (!X86ScalarSSEf64) {
187     setOperationAction(ISD::BIT_CONVERT      , MVT::f32  , Expand);
188     setOperationAction(ISD::BIT_CONVERT      , MVT::i32  , Expand);
189   }
190
191   // Scalar integer divide and remainder are lowered to use operations that
192   // produce two results, to match the available instructions. This exposes
193   // the two-result form to trivial CSE, which is able to combine x/y and x%y
194   // into a single instruction.
195   //
196   // Scalar integer multiply-high is also lowered to use two-result
197   // operations, to match the available instructions. However, plain multiply
198   // (low) operations are left as Legal, as there are single-result
199   // instructions for this in x86. Using the two-result multiply instructions
200   // when both high and low results are needed must be arranged by dagcombine.
201   setOperationAction(ISD::MULHS           , MVT::i8    , Expand);
202   setOperationAction(ISD::MULHU           , MVT::i8    , Expand);
203   setOperationAction(ISD::SDIV            , MVT::i8    , Expand);
204   setOperationAction(ISD::UDIV            , MVT::i8    , Expand);
205   setOperationAction(ISD::SREM            , MVT::i8    , Expand);
206   setOperationAction(ISD::UREM            , MVT::i8    , Expand);
207   setOperationAction(ISD::MULHS           , MVT::i16   , Expand);
208   setOperationAction(ISD::MULHU           , MVT::i16   , Expand);
209   setOperationAction(ISD::SDIV            , MVT::i16   , Expand);
210   setOperationAction(ISD::UDIV            , MVT::i16   , Expand);
211   setOperationAction(ISD::SREM            , MVT::i16   , Expand);
212   setOperationAction(ISD::UREM            , MVT::i16   , Expand);
213   setOperationAction(ISD::MULHS           , MVT::i32   , Expand);
214   setOperationAction(ISD::MULHU           , MVT::i32   , Expand);
215   setOperationAction(ISD::SDIV            , MVT::i32   , Expand);
216   setOperationAction(ISD::UDIV            , MVT::i32   , Expand);
217   setOperationAction(ISD::SREM            , MVT::i32   , Expand);
218   setOperationAction(ISD::UREM            , MVT::i32   , Expand);
219   setOperationAction(ISD::MULHS           , MVT::i64   , Expand);
220   setOperationAction(ISD::MULHU           , MVT::i64   , Expand);
221   setOperationAction(ISD::SDIV            , MVT::i64   , Expand);
222   setOperationAction(ISD::UDIV            , MVT::i64   , Expand);
223   setOperationAction(ISD::SREM            , MVT::i64   , Expand);
224   setOperationAction(ISD::UREM            , MVT::i64   , Expand);
225
226   setOperationAction(ISD::BR_JT            , MVT::Other, Expand);
227   setOperationAction(ISD::BRCOND           , MVT::Other, Custom);
228   setOperationAction(ISD::BR_CC            , MVT::Other, Expand);
229   setOperationAction(ISD::SELECT_CC        , MVT::Other, Expand);
230   if (Subtarget->is64Bit())
231     setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i32, Legal);
232   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16  , Legal);
233   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8   , Legal);
234   setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1   , Expand);
235   setOperationAction(ISD::FP_ROUND_INREG   , MVT::f32  , Expand);
236   setOperationAction(ISD::FREM             , MVT::f32  , Expand);
237   setOperationAction(ISD::FREM             , MVT::f64  , Expand);
238   setOperationAction(ISD::FREM             , MVT::f80  , Expand);
239   setOperationAction(ISD::FLT_ROUNDS_      , MVT::i32  , Custom);
240
241   setOperationAction(ISD::CTPOP            , MVT::i8   , Expand);
242   setOperationAction(ISD::CTTZ             , MVT::i8   , Custom);
243   setOperationAction(ISD::CTLZ             , MVT::i8   , Custom);
244   setOperationAction(ISD::CTPOP            , MVT::i16  , Expand);
245   setOperationAction(ISD::CTTZ             , MVT::i16  , Custom);
246   setOperationAction(ISD::CTLZ             , MVT::i16  , Custom);
247   setOperationAction(ISD::CTPOP            , MVT::i32  , Expand);
248   setOperationAction(ISD::CTTZ             , MVT::i32  , Custom);
249   setOperationAction(ISD::CTLZ             , MVT::i32  , Custom);
250   if (Subtarget->is64Bit()) {
251     setOperationAction(ISD::CTPOP          , MVT::i64  , Expand);
252     setOperationAction(ISD::CTTZ           , MVT::i64  , Custom);
253     setOperationAction(ISD::CTLZ           , MVT::i64  , Custom);
254   }
255
256   setOperationAction(ISD::READCYCLECOUNTER , MVT::i64  , Custom);
257   setOperationAction(ISD::BSWAP            , MVT::i16  , Expand);
258
259   // These should be promoted to a larger select which is supported.
260   setOperationAction(ISD::SELECT           , MVT::i1   , Promote);
261   setOperationAction(ISD::SELECT           , MVT::i8   , Promote);
262   // X86 wants to expand cmov itself.
263   setOperationAction(ISD::SELECT          , MVT::i16  , Custom);
264   setOperationAction(ISD::SELECT          , MVT::i32  , Custom);
265   setOperationAction(ISD::SELECT          , MVT::f32  , Custom);
266   setOperationAction(ISD::SELECT          , MVT::f64  , Custom);
267   setOperationAction(ISD::SELECT          , MVT::f80  , Custom);
268   setOperationAction(ISD::SETCC           , MVT::i8   , Custom);
269   setOperationAction(ISD::SETCC           , MVT::i16  , Custom);
270   setOperationAction(ISD::SETCC           , MVT::i32  , Custom);
271   setOperationAction(ISD::SETCC           , MVT::f32  , Custom);
272   setOperationAction(ISD::SETCC           , MVT::f64  , Custom);
273   setOperationAction(ISD::SETCC           , MVT::f80  , Custom);
274   if (Subtarget->is64Bit()) {
275     setOperationAction(ISD::SELECT        , MVT::i64  , Custom);
276     setOperationAction(ISD::SETCC         , MVT::i64  , Custom);
277   }
278   // X86 ret instruction may pop stack.
279   setOperationAction(ISD::RET             , MVT::Other, Custom);
280   setOperationAction(ISD::EH_RETURN       , MVT::Other, Custom);
281
282   // Darwin ABI issue.
283   setOperationAction(ISD::ConstantPool    , MVT::i32  , Custom);
284   setOperationAction(ISD::JumpTable       , MVT::i32  , Custom);
285   setOperationAction(ISD::GlobalAddress   , MVT::i32  , Custom);
286   setOperationAction(ISD::GlobalTLSAddress, MVT::i32  , Custom);
287   if (Subtarget->is64Bit())
288     setOperationAction(ISD::GlobalTLSAddress, MVT::i64, Custom);
289   setOperationAction(ISD::ExternalSymbol  , MVT::i32  , Custom);
290   if (Subtarget->is64Bit()) {
291     setOperationAction(ISD::ConstantPool  , MVT::i64  , Custom);
292     setOperationAction(ISD::JumpTable     , MVT::i64  , Custom);
293     setOperationAction(ISD::GlobalAddress , MVT::i64  , Custom);
294     setOperationAction(ISD::ExternalSymbol, MVT::i64  , Custom);
295   }
296   // 64-bit addm sub, shl, sra, srl (iff 32-bit x86)
297   setOperationAction(ISD::SHL_PARTS       , MVT::i32  , Custom);
298   setOperationAction(ISD::SRA_PARTS       , MVT::i32  , Custom);
299   setOperationAction(ISD::SRL_PARTS       , MVT::i32  , Custom);
300   if (Subtarget->is64Bit()) {
301     setOperationAction(ISD::SHL_PARTS     , MVT::i64  , Custom);
302     setOperationAction(ISD::SRA_PARTS     , MVT::i64  , Custom);
303     setOperationAction(ISD::SRL_PARTS     , MVT::i64  , Custom);
304   }
305
306   if (Subtarget->hasSSE1())
307     setOperationAction(ISD::PREFETCH      , MVT::Other, Legal);
308
309   if (!Subtarget->hasSSE2())
310     setOperationAction(ISD::MEMBARRIER    , MVT::Other, Expand);
311
312   // Expand certain atomics
313   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i8, Custom);
314   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i16, Custom);
315   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i32, Custom);
316   setOperationAction(ISD::ATOMIC_CMP_SWAP, MVT::i64, Custom);
317
318   setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i8, Custom);
319   setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i16, Custom);
320   setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i32, Custom);
321   setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
322
323   if (!Subtarget->is64Bit()) {
324     setOperationAction(ISD::ATOMIC_LOAD_ADD, MVT::i64, Custom);
325     setOperationAction(ISD::ATOMIC_LOAD_SUB, MVT::i64, Custom);
326     setOperationAction(ISD::ATOMIC_LOAD_AND, MVT::i64, Custom);
327     setOperationAction(ISD::ATOMIC_LOAD_OR, MVT::i64, Custom);
328     setOperationAction(ISD::ATOMIC_LOAD_XOR, MVT::i64, Custom);
329     setOperationAction(ISD::ATOMIC_LOAD_NAND, MVT::i64, Custom);
330     setOperationAction(ISD::ATOMIC_SWAP, MVT::i64, Custom);
331   }
332
333   // Use the default ISD::DBG_STOPPOINT, ISD::DECLARE expansion.
334   setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
335   // FIXME - use subtarget debug flags
336   if (!Subtarget->isTargetDarwin() &&
337       !Subtarget->isTargetELF() &&
338       !Subtarget->isTargetCygMing()) {
339     setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
340     setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
341   }
342
343   setOperationAction(ISD::EXCEPTIONADDR, MVT::i64, Expand);
344   setOperationAction(ISD::EHSELECTION,   MVT::i64, Expand);
345   setOperationAction(ISD::EXCEPTIONADDR, MVT::i32, Expand);
346   setOperationAction(ISD::EHSELECTION,   MVT::i32, Expand);
347   if (Subtarget->is64Bit()) {
348     setExceptionPointerRegister(X86::RAX);
349     setExceptionSelectorRegister(X86::RDX);
350   } else {
351     setExceptionPointerRegister(X86::EAX);
352     setExceptionSelectorRegister(X86::EDX);
353   }
354   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i32, Custom);
355   setOperationAction(ISD::FRAME_TO_ARGS_OFFSET, MVT::i64, Custom);
356
357   setOperationAction(ISD::TRAMPOLINE, MVT::Other, Custom);
358
359   setOperationAction(ISD::TRAP, MVT::Other, Legal);
360
361   // VASTART needs to be custom lowered to use the VarArgsFrameIndex
362   setOperationAction(ISD::VASTART           , MVT::Other, Custom);
363   setOperationAction(ISD::VAEND             , MVT::Other, Expand);
364   if (Subtarget->is64Bit()) {
365     setOperationAction(ISD::VAARG           , MVT::Other, Custom);
366     setOperationAction(ISD::VACOPY          , MVT::Other, Custom);
367   } else {
368     setOperationAction(ISD::VAARG           , MVT::Other, Expand);
369     setOperationAction(ISD::VACOPY          , MVT::Other, Expand);
370   }
371
372   setOperationAction(ISD::STACKSAVE,          MVT::Other, Expand);
373   setOperationAction(ISD::STACKRESTORE,       MVT::Other, Expand);
374   if (Subtarget->is64Bit())
375     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i64, Expand);
376   if (Subtarget->isTargetCygMing())
377     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
378   else
379     setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Expand);
380
381   if (!UseSoftFloat && X86ScalarSSEf64) {
382     // f32 and f64 use SSE.
383     // Set up the FP register classes.
384     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
385     addRegisterClass(MVT::f64, X86::FR64RegisterClass);
386
387     // Use ANDPD to simulate FABS.
388     setOperationAction(ISD::FABS , MVT::f64, Custom);
389     setOperationAction(ISD::FABS , MVT::f32, Custom);
390
391     // Use XORP to simulate FNEG.
392     setOperationAction(ISD::FNEG , MVT::f64, Custom);
393     setOperationAction(ISD::FNEG , MVT::f32, Custom);
394
395     // Use ANDPD and ORPD to simulate FCOPYSIGN.
396     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Custom);
397     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
398
399     // We don't support sin/cos/fmod
400     setOperationAction(ISD::FSIN , MVT::f64, Expand);
401     setOperationAction(ISD::FCOS , MVT::f64, Expand);
402     setOperationAction(ISD::FSIN , MVT::f32, Expand);
403     setOperationAction(ISD::FCOS , MVT::f32, Expand);
404
405     // Expand FP immediates into loads from the stack, except for the special
406     // cases we handle.
407     addLegalFPImmediate(APFloat(+0.0)); // xorpd
408     addLegalFPImmediate(APFloat(+0.0f)); // xorps
409   } else if (!UseSoftFloat && X86ScalarSSEf32) {
410     // Use SSE for f32, x87 for f64.
411     // Set up the FP register classes.
412     addRegisterClass(MVT::f32, X86::FR32RegisterClass);
413     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
414
415     // Use ANDPS to simulate FABS.
416     setOperationAction(ISD::FABS , MVT::f32, Custom);
417
418     // Use XORP to simulate FNEG.
419     setOperationAction(ISD::FNEG , MVT::f32, Custom);
420
421     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
422
423     // Use ANDPS and ORPS to simulate FCOPYSIGN.
424     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
425     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Custom);
426
427     // We don't support sin/cos/fmod
428     setOperationAction(ISD::FSIN , MVT::f32, Expand);
429     setOperationAction(ISD::FCOS , MVT::f32, Expand);
430
431     // Special cases we handle for FP constants.
432     addLegalFPImmediate(APFloat(+0.0f)); // xorps
433     addLegalFPImmediate(APFloat(+0.0)); // FLD0
434     addLegalFPImmediate(APFloat(+1.0)); // FLD1
435     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
436     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
437
438     if (!UnsafeFPMath) {
439       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
440       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
441     }
442   } else if (!UseSoftFloat) {
443     // f32 and f64 in x87.
444     // Set up the FP register classes.
445     addRegisterClass(MVT::f64, X86::RFP64RegisterClass);
446     addRegisterClass(MVT::f32, X86::RFP32RegisterClass);
447
448     setOperationAction(ISD::UNDEF,     MVT::f64, Expand);
449     setOperationAction(ISD::UNDEF,     MVT::f32, Expand);
450     setOperationAction(ISD::FCOPYSIGN, MVT::f64, Expand);
451     setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
452
453     if (!UnsafeFPMath) {
454       setOperationAction(ISD::FSIN           , MVT::f64  , Expand);
455       setOperationAction(ISD::FCOS           , MVT::f64  , Expand);
456     }
457     addLegalFPImmediate(APFloat(+0.0)); // FLD0
458     addLegalFPImmediate(APFloat(+1.0)); // FLD1
459     addLegalFPImmediate(APFloat(-0.0)); // FLD0/FCHS
460     addLegalFPImmediate(APFloat(-1.0)); // FLD1/FCHS
461     addLegalFPImmediate(APFloat(+0.0f)); // FLD0
462     addLegalFPImmediate(APFloat(+1.0f)); // FLD1
463     addLegalFPImmediate(APFloat(-0.0f)); // FLD0/FCHS
464     addLegalFPImmediate(APFloat(-1.0f)); // FLD1/FCHS
465   }
466
467   // Long double always uses X87.
468   if (!UseSoftFloat) {
469     addRegisterClass(MVT::f80, X86::RFP80RegisterClass);
470     setOperationAction(ISD::UNDEF,     MVT::f80, Expand);
471     setOperationAction(ISD::FCOPYSIGN, MVT::f80, Expand);
472     {
473       bool ignored;
474       APFloat TmpFlt(+0.0);
475       TmpFlt.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
476                      &ignored);
477       addLegalFPImmediate(TmpFlt);  // FLD0
478       TmpFlt.changeSign();
479       addLegalFPImmediate(TmpFlt);  // FLD0/FCHS
480       APFloat TmpFlt2(+1.0);
481       TmpFlt2.convert(APFloat::x87DoubleExtended, APFloat::rmNearestTiesToEven,
482                       &ignored);
483       addLegalFPImmediate(TmpFlt2);  // FLD1
484       TmpFlt2.changeSign();
485       addLegalFPImmediate(TmpFlt2);  // FLD1/FCHS
486     }
487
488     if (!UnsafeFPMath) {
489       setOperationAction(ISD::FSIN           , MVT::f80  , Expand);
490       setOperationAction(ISD::FCOS           , MVT::f80  , Expand);
491     }
492   }
493
494   // Always use a library call for pow.
495   setOperationAction(ISD::FPOW             , MVT::f32  , Expand);
496   setOperationAction(ISD::FPOW             , MVT::f64  , Expand);
497   setOperationAction(ISD::FPOW             , MVT::f80  , Expand);
498
499   setOperationAction(ISD::FLOG, MVT::f80, Expand);
500   setOperationAction(ISD::FLOG2, MVT::f80, Expand);
501   setOperationAction(ISD::FLOG10, MVT::f80, Expand);
502   setOperationAction(ISD::FEXP, MVT::f80, Expand);
503   setOperationAction(ISD::FEXP2, MVT::f80, Expand);
504
505   // First set operation action for all vector types to either promote
506   // (for widening) or expand (for scalarization). Then we will selectively
507   // turn on ones that can be effectively codegen'd.
508   for (unsigned VT = (unsigned)MVT::FIRST_VECTOR_VALUETYPE;
509        VT <= (unsigned)MVT::LAST_VECTOR_VALUETYPE; ++VT) {
510     setOperationAction(ISD::ADD , (MVT::SimpleValueType)VT, Expand);
511     setOperationAction(ISD::SUB , (MVT::SimpleValueType)VT, Expand);
512     setOperationAction(ISD::FADD, (MVT::SimpleValueType)VT, Expand);
513     setOperationAction(ISD::FNEG, (MVT::SimpleValueType)VT, Expand);
514     setOperationAction(ISD::FSUB, (MVT::SimpleValueType)VT, Expand);
515     setOperationAction(ISD::MUL , (MVT::SimpleValueType)VT, Expand);
516     setOperationAction(ISD::FMUL, (MVT::SimpleValueType)VT, Expand);
517     setOperationAction(ISD::SDIV, (MVT::SimpleValueType)VT, Expand);
518     setOperationAction(ISD::UDIV, (MVT::SimpleValueType)VT, Expand);
519     setOperationAction(ISD::FDIV, (MVT::SimpleValueType)VT, Expand);
520     setOperationAction(ISD::SREM, (MVT::SimpleValueType)VT, Expand);
521     setOperationAction(ISD::UREM, (MVT::SimpleValueType)VT, Expand);
522     setOperationAction(ISD::LOAD, (MVT::SimpleValueType)VT, Expand);
523     setOperationAction(ISD::VECTOR_SHUFFLE, (MVT::SimpleValueType)VT, Expand);
524     setOperationAction(ISD::EXTRACT_VECTOR_ELT,(MVT::SimpleValueType)VT,Expand);
525     setOperationAction(ISD::EXTRACT_SUBVECTOR,(MVT::SimpleValueType)VT,Expand);
526     setOperationAction(ISD::INSERT_VECTOR_ELT,(MVT::SimpleValueType)VT, Expand);
527     setOperationAction(ISD::FABS, (MVT::SimpleValueType)VT, Expand);
528     setOperationAction(ISD::FSIN, (MVT::SimpleValueType)VT, Expand);
529     setOperationAction(ISD::FCOS, (MVT::SimpleValueType)VT, Expand);
530     setOperationAction(ISD::FREM, (MVT::SimpleValueType)VT, Expand);
531     setOperationAction(ISD::FPOWI, (MVT::SimpleValueType)VT, Expand);
532     setOperationAction(ISD::FSQRT, (MVT::SimpleValueType)VT, Expand);
533     setOperationAction(ISD::FCOPYSIGN, (MVT::SimpleValueType)VT, Expand);
534     setOperationAction(ISD::SMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
535     setOperationAction(ISD::UMUL_LOHI, (MVT::SimpleValueType)VT, Expand);
536     setOperationAction(ISD::SDIVREM, (MVT::SimpleValueType)VT, Expand);
537     setOperationAction(ISD::UDIVREM, (MVT::SimpleValueType)VT, Expand);
538     setOperationAction(ISD::FPOW, (MVT::SimpleValueType)VT, Expand);
539     setOperationAction(ISD::CTPOP, (MVT::SimpleValueType)VT, Expand);
540     setOperationAction(ISD::CTTZ, (MVT::SimpleValueType)VT, Expand);
541     setOperationAction(ISD::CTLZ, (MVT::SimpleValueType)VT, Expand);
542     setOperationAction(ISD::SHL, (MVT::SimpleValueType)VT, Expand);
543     setOperationAction(ISD::SRA, (MVT::SimpleValueType)VT, Expand);
544     setOperationAction(ISD::SRL, (MVT::SimpleValueType)VT, Expand);
545     setOperationAction(ISD::ROTL, (MVT::SimpleValueType)VT, Expand);
546     setOperationAction(ISD::ROTR, (MVT::SimpleValueType)VT, Expand);
547     setOperationAction(ISD::BSWAP, (MVT::SimpleValueType)VT, Expand);
548     setOperationAction(ISD::VSETCC, (MVT::SimpleValueType)VT, Expand);
549     setOperationAction(ISD::FLOG, (MVT::SimpleValueType)VT, Expand);
550     setOperationAction(ISD::FLOG2, (MVT::SimpleValueType)VT, Expand);
551     setOperationAction(ISD::FLOG10, (MVT::SimpleValueType)VT, Expand);
552     setOperationAction(ISD::FEXP, (MVT::SimpleValueType)VT, Expand);
553     setOperationAction(ISD::FEXP2, (MVT::SimpleValueType)VT, Expand);
554     setOperationAction(ISD::FP_TO_UINT, (MVT::SimpleValueType)VT, Expand);
555     setOperationAction(ISD::FP_TO_SINT, (MVT::SimpleValueType)VT, Expand);
556     setOperationAction(ISD::UINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
557     setOperationAction(ISD::SINT_TO_FP, (MVT::SimpleValueType)VT, Expand);
558   }
559
560   // FIXME: In order to prevent SSE instructions being expanded to MMX ones
561   // with -msoft-float, disable use of MMX as well.
562   if (!UseSoftFloat && !DisableMMX && Subtarget->hasMMX()) {
563     addRegisterClass(MVT::v8i8,  X86::VR64RegisterClass);
564     addRegisterClass(MVT::v4i16, X86::VR64RegisterClass);
565     addRegisterClass(MVT::v2i32, X86::VR64RegisterClass);
566     addRegisterClass(MVT::v2f32, X86::VR64RegisterClass);
567     addRegisterClass(MVT::v1i64, X86::VR64RegisterClass);
568
569     setOperationAction(ISD::ADD,                MVT::v8i8,  Legal);
570     setOperationAction(ISD::ADD,                MVT::v4i16, Legal);
571     setOperationAction(ISD::ADD,                MVT::v2i32, Legal);
572     setOperationAction(ISD::ADD,                MVT::v1i64, Legal);
573
574     setOperationAction(ISD::SUB,                MVT::v8i8,  Legal);
575     setOperationAction(ISD::SUB,                MVT::v4i16, Legal);
576     setOperationAction(ISD::SUB,                MVT::v2i32, Legal);
577     setOperationAction(ISD::SUB,                MVT::v1i64, Legal);
578
579     setOperationAction(ISD::MULHS,              MVT::v4i16, Legal);
580     setOperationAction(ISD::MUL,                MVT::v4i16, Legal);
581
582     setOperationAction(ISD::AND,                MVT::v8i8,  Promote);
583     AddPromotedToType (ISD::AND,                MVT::v8i8,  MVT::v1i64);
584     setOperationAction(ISD::AND,                MVT::v4i16, Promote);
585     AddPromotedToType (ISD::AND,                MVT::v4i16, MVT::v1i64);
586     setOperationAction(ISD::AND,                MVT::v2i32, Promote);
587     AddPromotedToType (ISD::AND,                MVT::v2i32, MVT::v1i64);
588     setOperationAction(ISD::AND,                MVT::v1i64, Legal);
589
590     setOperationAction(ISD::OR,                 MVT::v8i8,  Promote);
591     AddPromotedToType (ISD::OR,                 MVT::v8i8,  MVT::v1i64);
592     setOperationAction(ISD::OR,                 MVT::v4i16, Promote);
593     AddPromotedToType (ISD::OR,                 MVT::v4i16, MVT::v1i64);
594     setOperationAction(ISD::OR,                 MVT::v2i32, Promote);
595     AddPromotedToType (ISD::OR,                 MVT::v2i32, MVT::v1i64);
596     setOperationAction(ISD::OR,                 MVT::v1i64, Legal);
597
598     setOperationAction(ISD::XOR,                MVT::v8i8,  Promote);
599     AddPromotedToType (ISD::XOR,                MVT::v8i8,  MVT::v1i64);
600     setOperationAction(ISD::XOR,                MVT::v4i16, Promote);
601     AddPromotedToType (ISD::XOR,                MVT::v4i16, MVT::v1i64);
602     setOperationAction(ISD::XOR,                MVT::v2i32, Promote);
603     AddPromotedToType (ISD::XOR,                MVT::v2i32, MVT::v1i64);
604     setOperationAction(ISD::XOR,                MVT::v1i64, Legal);
605
606     setOperationAction(ISD::LOAD,               MVT::v8i8,  Promote);
607     AddPromotedToType (ISD::LOAD,               MVT::v8i8,  MVT::v1i64);
608     setOperationAction(ISD::LOAD,               MVT::v4i16, Promote);
609     AddPromotedToType (ISD::LOAD,               MVT::v4i16, MVT::v1i64);
610     setOperationAction(ISD::LOAD,               MVT::v2i32, Promote);
611     AddPromotedToType (ISD::LOAD,               MVT::v2i32, MVT::v1i64);
612     setOperationAction(ISD::LOAD,               MVT::v2f32, Promote);
613     AddPromotedToType (ISD::LOAD,               MVT::v2f32, MVT::v1i64);
614     setOperationAction(ISD::LOAD,               MVT::v1i64, Legal);
615
616     setOperationAction(ISD::BUILD_VECTOR,       MVT::v8i8,  Custom);
617     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4i16, Custom);
618     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i32, Custom);
619     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f32, Custom);
620     setOperationAction(ISD::BUILD_VECTOR,       MVT::v1i64, Custom);
621
622     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v8i8,  Custom);
623     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4i16, Custom);
624     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i32, Custom);
625     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v1i64, Custom);
626
627     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v2f32, Custom);
628     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i8,  Custom);
629     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v4i16, Custom);
630     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v1i64, Custom);
631
632     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i16, Custom);
633
634     setTruncStoreAction(MVT::v8i16,             MVT::v8i8, Expand);
635     setOperationAction(ISD::TRUNCATE,           MVT::v8i8, Expand);
636     setOperationAction(ISD::SELECT,             MVT::v8i8, Promote);
637     setOperationAction(ISD::SELECT,             MVT::v4i16, Promote);
638     setOperationAction(ISD::SELECT,             MVT::v2i32, Promote);
639     setOperationAction(ISD::SELECT,             MVT::v1i64, Custom);
640   }
641
642   if (!UseSoftFloat && Subtarget->hasSSE1()) {
643     addRegisterClass(MVT::v4f32, X86::VR128RegisterClass);
644
645     setOperationAction(ISD::FADD,               MVT::v4f32, Legal);
646     setOperationAction(ISD::FSUB,               MVT::v4f32, Legal);
647     setOperationAction(ISD::FMUL,               MVT::v4f32, Legal);
648     setOperationAction(ISD::FDIV,               MVT::v4f32, Legal);
649     setOperationAction(ISD::FSQRT,              MVT::v4f32, Legal);
650     setOperationAction(ISD::FNEG,               MVT::v4f32, Custom);
651     setOperationAction(ISD::LOAD,               MVT::v4f32, Legal);
652     setOperationAction(ISD::BUILD_VECTOR,       MVT::v4f32, Custom);
653     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v4f32, Custom);
654     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
655     setOperationAction(ISD::SELECT,             MVT::v4f32, Custom);
656     setOperationAction(ISD::VSETCC,             MVT::v4f32, Custom);
657   }
658
659   if (!UseSoftFloat && Subtarget->hasSSE2()) {
660     addRegisterClass(MVT::v2f64, X86::VR128RegisterClass);
661
662     // FIXME: Unfortunately -soft-float and -no-implicit-float means XMM
663     // registers cannot be used even for integer operations.
664     addRegisterClass(MVT::v16i8, X86::VR128RegisterClass);
665     addRegisterClass(MVT::v8i16, X86::VR128RegisterClass);
666     addRegisterClass(MVT::v4i32, X86::VR128RegisterClass);
667     addRegisterClass(MVT::v2i64, X86::VR128RegisterClass);
668
669     setOperationAction(ISD::ADD,                MVT::v16i8, Legal);
670     setOperationAction(ISD::ADD,                MVT::v8i16, Legal);
671     setOperationAction(ISD::ADD,                MVT::v4i32, Legal);
672     setOperationAction(ISD::ADD,                MVT::v2i64, Legal);
673     setOperationAction(ISD::MUL,                MVT::v2i64, Custom);
674     setOperationAction(ISD::SUB,                MVT::v16i8, Legal);
675     setOperationAction(ISD::SUB,                MVT::v8i16, Legal);
676     setOperationAction(ISD::SUB,                MVT::v4i32, Legal);
677     setOperationAction(ISD::SUB,                MVT::v2i64, Legal);
678     setOperationAction(ISD::MUL,                MVT::v8i16, Legal);
679     setOperationAction(ISD::FADD,               MVT::v2f64, Legal);
680     setOperationAction(ISD::FSUB,               MVT::v2f64, Legal);
681     setOperationAction(ISD::FMUL,               MVT::v2f64, Legal);
682     setOperationAction(ISD::FDIV,               MVT::v2f64, Legal);
683     setOperationAction(ISD::FSQRT,              MVT::v2f64, Legal);
684     setOperationAction(ISD::FNEG,               MVT::v2f64, Custom);
685
686     setOperationAction(ISD::VSETCC,             MVT::v2f64, Custom);
687     setOperationAction(ISD::VSETCC,             MVT::v16i8, Custom);
688     setOperationAction(ISD::VSETCC,             MVT::v8i16, Custom);
689     setOperationAction(ISD::VSETCC,             MVT::v4i32, Custom);
690
691     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v16i8, Custom);
692     setOperationAction(ISD::SCALAR_TO_VECTOR,   MVT::v8i16, Custom);
693     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
694     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
695     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
696
697     // Custom lower build_vector, vector_shuffle, and extract_vector_elt.
698     for (unsigned i = (unsigned)MVT::v16i8; i != (unsigned)MVT::v2i64; ++i) {
699       MVT VT = (MVT::SimpleValueType)i;
700       // Do not attempt to custom lower non-power-of-2 vectors
701       if (!isPowerOf2_32(VT.getVectorNumElements()))
702         continue;
703       setOperationAction(ISD::BUILD_VECTOR,       VT, Custom);
704       setOperationAction(ISD::VECTOR_SHUFFLE,     VT, Custom);
705       setOperationAction(ISD::EXTRACT_VECTOR_ELT, VT, Custom);
706     }
707
708     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2f64, Custom);
709     setOperationAction(ISD::BUILD_VECTOR,       MVT::v2i64, Custom);
710     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2f64, Custom);
711     setOperationAction(ISD::VECTOR_SHUFFLE,     MVT::v2i64, Custom);
712     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2f64, Custom);
713     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2f64, Custom);
714
715     if (Subtarget->is64Bit()) {
716       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Custom);
717       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Custom);
718     }
719
720     // Promote v16i8, v8i16, v4i32 load, select, and, or, xor to v2i64.
721     for (unsigned VT = (unsigned)MVT::v16i8; VT != (unsigned)MVT::v2i64; VT++) {
722       setOperationAction(ISD::AND,    (MVT::SimpleValueType)VT, Promote);
723       AddPromotedToType (ISD::AND,    (MVT::SimpleValueType)VT, MVT::v2i64);
724       setOperationAction(ISD::OR,     (MVT::SimpleValueType)VT, Promote);
725       AddPromotedToType (ISD::OR,     (MVT::SimpleValueType)VT, MVT::v2i64);
726       setOperationAction(ISD::XOR,    (MVT::SimpleValueType)VT, Promote);
727       AddPromotedToType (ISD::XOR,    (MVT::SimpleValueType)VT, MVT::v2i64);
728       setOperationAction(ISD::LOAD,   (MVT::SimpleValueType)VT, Promote);
729       AddPromotedToType (ISD::LOAD,   (MVT::SimpleValueType)VT, MVT::v2i64);
730       setOperationAction(ISD::SELECT, (MVT::SimpleValueType)VT, Promote);
731       AddPromotedToType (ISD::SELECT, (MVT::SimpleValueType)VT, MVT::v2i64);
732     }
733
734     setTruncStoreAction(MVT::f64, MVT::f32, Expand);
735
736     // Custom lower v2i64 and v2f64 selects.
737     setOperationAction(ISD::LOAD,               MVT::v2f64, Legal);
738     setOperationAction(ISD::LOAD,               MVT::v2i64, Legal);
739     setOperationAction(ISD::SELECT,             MVT::v2f64, Custom);
740     setOperationAction(ISD::SELECT,             MVT::v2i64, Custom);
741
742     setOperationAction(ISD::FP_TO_SINT,         MVT::v4i32, Legal);
743     setOperationAction(ISD::SINT_TO_FP,         MVT::v4i32, Legal);
744     if (!DisableMMX && Subtarget->hasMMX()) {
745       setOperationAction(ISD::FP_TO_SINT,         MVT::v2i32, Custom);
746       setOperationAction(ISD::SINT_TO_FP,         MVT::v2i32, Custom);
747     }
748   }
749
750   if (Subtarget->hasSSE41()) {
751     // FIXME: Do we need to handle scalar-to-vector here?
752     setOperationAction(ISD::MUL,                MVT::v4i32, Legal);
753
754     // i8 and i16 vectors are custom , because the source register and source
755     // source memory operand types are not the same width.  f32 vectors are
756     // custom since the immediate controlling the insert encodes additional
757     // information.
758     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v16i8, Custom);
759     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v8i16, Custom);
760     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4i32, Custom);
761     setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v4f32, Custom);
762
763     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v16i8, Custom);
764     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v8i16, Custom);
765     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4i32, Custom);
766     setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v4f32, Custom);
767
768     if (Subtarget->is64Bit()) {
769       setOperationAction(ISD::INSERT_VECTOR_ELT,  MVT::v2i64, Legal);
770       setOperationAction(ISD::EXTRACT_VECTOR_ELT, MVT::v2i64, Legal);
771     }
772   }
773
774   if (Subtarget->hasSSE42()) {
775     setOperationAction(ISD::VSETCC,             MVT::v2i64, Custom);
776   }
777
778   // We want to custom lower some of our intrinsics.
779   setOperationAction(ISD::INTRINSIC_WO_CHAIN, MVT::Other, Custom);
780
781   // Add/Sub/Mul with overflow operations are custom lowered.
782   setOperationAction(ISD::SADDO, MVT::i32, Custom);
783   setOperationAction(ISD::SADDO, MVT::i64, Custom);
784   setOperationAction(ISD::UADDO, MVT::i32, Custom);
785   setOperationAction(ISD::UADDO, MVT::i64, Custom);
786   setOperationAction(ISD::SSUBO, MVT::i32, Custom);
787   setOperationAction(ISD::SSUBO, MVT::i64, Custom);
788   setOperationAction(ISD::USUBO, MVT::i32, Custom);
789   setOperationAction(ISD::USUBO, MVT::i64, Custom);
790   setOperationAction(ISD::SMULO, MVT::i32, Custom);
791   setOperationAction(ISD::SMULO, MVT::i64, Custom);
792
793   if (!Subtarget->is64Bit()) {
794     // These libcalls are not available in 32-bit.
795     setLibcallName(RTLIB::SHL_I128, 0);
796     setLibcallName(RTLIB::SRL_I128, 0);
797     setLibcallName(RTLIB::SRA_I128, 0);
798   }
799
800   // We have target-specific dag combine patterns for the following nodes:
801   setTargetDAGCombine(ISD::VECTOR_SHUFFLE);
802   setTargetDAGCombine(ISD::BUILD_VECTOR);
803   setTargetDAGCombine(ISD::SELECT);
804   setTargetDAGCombine(ISD::SHL);
805   setTargetDAGCombine(ISD::SRA);
806   setTargetDAGCombine(ISD::SRL);
807   setTargetDAGCombine(ISD::STORE);
808   if (Subtarget->is64Bit())
809     setTargetDAGCombine(ISD::MUL);
810
811   computeRegisterProperties();
812
813   // FIXME: These should be based on subtarget info. Plus, the values should
814   // be smaller when we are in optimizing for size mode.
815   maxStoresPerMemset = 16; // For @llvm.memset -> sequence of stores
816   maxStoresPerMemcpy = 16; // For @llvm.memcpy -> sequence of stores
817   maxStoresPerMemmove = 3; // For @llvm.memmove -> sequence of stores
818   allowUnalignedMemoryAccesses = true; // x86 supports it!
819   setPrefLoopAlignment(16);
820   benefitFromCodePlacementOpt = true;
821 }
822
823
824 MVT X86TargetLowering::getSetCCResultType(MVT VT) const {
825   return MVT::i8;
826 }
827
828
829 /// getMaxByValAlign - Helper for getByValTypeAlignment to determine
830 /// the desired ByVal argument alignment.
831 static void getMaxByValAlign(const Type *Ty, unsigned &MaxAlign) {
832   if (MaxAlign == 16)
833     return;
834   if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
835     if (VTy->getBitWidth() == 128)
836       MaxAlign = 16;
837   } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
838     unsigned EltAlign = 0;
839     getMaxByValAlign(ATy->getElementType(), EltAlign);
840     if (EltAlign > MaxAlign)
841       MaxAlign = EltAlign;
842   } else if (const StructType *STy = dyn_cast<StructType>(Ty)) {
843     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
844       unsigned EltAlign = 0;
845       getMaxByValAlign(STy->getElementType(i), EltAlign);
846       if (EltAlign > MaxAlign)
847         MaxAlign = EltAlign;
848       if (MaxAlign == 16)
849         break;
850     }
851   }
852   return;
853 }
854
855 /// getByValTypeAlignment - Return the desired alignment for ByVal aggregate
856 /// function arguments in the caller parameter area. For X86, aggregates
857 /// that contain SSE vectors are placed at 16-byte boundaries while the rest
858 /// are at 4-byte boundaries.
859 unsigned X86TargetLowering::getByValTypeAlignment(const Type *Ty) const {
860   if (Subtarget->is64Bit()) {
861     // Max of 8 and alignment of type.
862     unsigned TyAlign = TD->getABITypeAlignment(Ty);
863     if (TyAlign > 8)
864       return TyAlign;
865     return 8;
866   }
867
868   unsigned Align = 4;
869   if (Subtarget->hasSSE1())
870     getMaxByValAlign(Ty, Align);
871   return Align;
872 }
873
874 /// getOptimalMemOpType - Returns the target specific optimal type for load
875 /// and store operations as a result of memset, memcpy, and memmove
876 /// lowering. It returns MVT::iAny if SelectionDAG should be responsible for
877 /// determining it.
878 MVT
879 X86TargetLowering::getOptimalMemOpType(uint64_t Size, unsigned Align,
880                                        bool isSrcConst, bool isSrcStr,
881                                        SelectionDAG &DAG) const {
882   // FIXME: This turns off use of xmm stores for memset/memcpy on targets like
883   // linux.  This is because the stack realignment code can't handle certain
884   // cases like PR2962.  This should be removed when PR2962 is fixed.
885   const Function *F = DAG.getMachineFunction().getFunction();
886   bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
887   if (!NoImplicitFloatOps && Subtarget->getStackAlignment() >= 16) {
888     if ((isSrcConst || isSrcStr) && Subtarget->hasSSE2() && Size >= 16)
889       return MVT::v4i32;
890     if ((isSrcConst || isSrcStr) && Subtarget->hasSSE1() && Size >= 16)
891       return MVT::v4f32;
892   }
893   if (Subtarget->is64Bit() && Size >= 8)
894     return MVT::i64;
895   return MVT::i32;
896 }
897
898 /// getPICJumpTableRelocaBase - Returns relocation base for the given PIC
899 /// jumptable.
900 SDValue X86TargetLowering::getPICJumpTableRelocBase(SDValue Table,
901                                                       SelectionDAG &DAG) const {
902   if (usesGlobalOffsetTable())
903     return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy());
904   if (!Subtarget->isPICStyleRIPRel())
905     // This doesn't have DebugLoc associated with it, but is not really the
906     // same as a Register.
907     return DAG.getNode(X86ISD::GlobalBaseReg, DebugLoc::getUnknownLoc(),
908                        getPointerTy());
909   return Table;
910 }
911
912 //===----------------------------------------------------------------------===//
913 //               Return Value Calling Convention Implementation
914 //===----------------------------------------------------------------------===//
915
916 #include "X86GenCallingConv.inc"
917
918 /// LowerRET - Lower an ISD::RET node.
919 SDValue X86TargetLowering::LowerRET(SDValue Op, SelectionDAG &DAG) {
920   DebugLoc dl = Op.getDebugLoc();
921   assert((Op.getNumOperands() & 1) == 1 && "ISD::RET should have odd # args");
922
923   SmallVector<CCValAssign, 16> RVLocs;
924   unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
925   bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
926   CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
927   CCInfo.AnalyzeReturn(Op.getNode(), RetCC_X86);
928
929   // If this is the first return lowered for this function, add the regs to the
930   // liveout set for the function.
931   if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
932     for (unsigned i = 0; i != RVLocs.size(); ++i)
933       if (RVLocs[i].isRegLoc())
934         DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
935   }
936   SDValue Chain = Op.getOperand(0);
937
938   // Handle tail call return.
939   Chain = GetPossiblePreceedingTailCall(Chain, X86ISD::TAILCALL);
940   if (Chain.getOpcode() == X86ISD::TAILCALL) {
941     SDValue TailCall = Chain;
942     SDValue TargetAddress = TailCall.getOperand(1);
943     SDValue StackAdjustment = TailCall.getOperand(2);
944     assert(((TargetAddress.getOpcode() == ISD::Register &&
945                (cast<RegisterSDNode>(TargetAddress)->getReg() == X86::EAX ||
946                 cast<RegisterSDNode>(TargetAddress)->getReg() == X86::R11)) ||
947               TargetAddress.getOpcode() == ISD::TargetExternalSymbol ||
948               TargetAddress.getOpcode() == ISD::TargetGlobalAddress) &&
949              "Expecting an global address, external symbol, or register");
950     assert(StackAdjustment.getOpcode() == ISD::Constant &&
951            "Expecting a const value");
952
953     SmallVector<SDValue,8> Operands;
954     Operands.push_back(Chain.getOperand(0));
955     Operands.push_back(TargetAddress);
956     Operands.push_back(StackAdjustment);
957     // Copy registers used by the call. Last operand is a flag so it is not
958     // copied.
959     for (unsigned i=3; i < TailCall.getNumOperands()-1; i++) {
960       Operands.push_back(Chain.getOperand(i));
961     }
962     return DAG.getNode(X86ISD::TC_RETURN, dl, MVT::Other, &Operands[0],
963                        Operands.size());
964   }
965
966   // Regular return.
967   SDValue Flag;
968
969   SmallVector<SDValue, 6> RetOps;
970   RetOps.push_back(Chain); // Operand #0 = Chain (updated below)
971   // Operand #1 = Bytes To Pop
972   RetOps.push_back(DAG.getConstant(getBytesToPopOnReturn(), MVT::i16));
973
974   // Copy the result values into the output registers.
975   for (unsigned i = 0; i != RVLocs.size(); ++i) {
976     CCValAssign &VA = RVLocs[i];
977     assert(VA.isRegLoc() && "Can only return in registers!");
978     SDValue ValToCopy = Op.getOperand(i*2+1);
979
980     // Returns in ST0/ST1 are handled specially: these are pushed as operands to
981     // the RET instruction and handled by the FP Stackifier.
982     if (VA.getLocReg() == X86::ST0 ||
983         VA.getLocReg() == X86::ST1) {
984       // If this is a copy from an xmm register to ST(0), use an FPExtend to
985       // change the value to the FP stack register class.
986       if (isScalarFPTypeInSSEReg(VA.getValVT()))
987         ValToCopy = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f80, ValToCopy);
988       RetOps.push_back(ValToCopy);
989       // Don't emit a copytoreg.
990       continue;
991     }
992
993     // 64-bit vector (MMX) values are returned in XMM0 / XMM1 except for v1i64
994     // which is returned in RAX / RDX.
995     if (Subtarget->is64Bit()) {
996       MVT ValVT = ValToCopy.getValueType();
997       if (ValVT.isVector() && ValVT.getSizeInBits() == 64) {
998         ValToCopy = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, ValToCopy);
999         if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1)
1000           ValToCopy = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, ValToCopy);
1001       }
1002     }
1003
1004     Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(), ValToCopy, Flag);
1005     Flag = Chain.getValue(1);
1006   }
1007
1008   // The x86-64 ABI for returning structs by value requires that we copy
1009   // the sret argument into %rax for the return. We saved the argument into
1010   // a virtual register in the entry block, so now we copy the value out
1011   // and into %rax.
1012   if (Subtarget->is64Bit() &&
1013       DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1014     MachineFunction &MF = DAG.getMachineFunction();
1015     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1016     unsigned Reg = FuncInfo->getSRetReturnReg();
1017     if (!Reg) {
1018       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1019       FuncInfo->setSRetReturnReg(Reg);
1020     }
1021     SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
1022
1023     Chain = DAG.getCopyToReg(Chain, dl, X86::RAX, Val, Flag);
1024     Flag = Chain.getValue(1);
1025   }
1026
1027   RetOps[0] = Chain;  // Update chain.
1028
1029   // Add the flag if we have it.
1030   if (Flag.getNode())
1031     RetOps.push_back(Flag);
1032
1033   return DAG.getNode(X86ISD::RET_FLAG, dl,
1034                      MVT::Other, &RetOps[0], RetOps.size());
1035 }
1036
1037
1038 /// LowerCallResult - Lower the result values of an ISD::CALL into the
1039 /// appropriate copies out of appropriate physical registers.  This assumes that
1040 /// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
1041 /// being lowered.  The returns a SDNode with the same number of values as the
1042 /// ISD::CALL.
1043 SDNode *X86TargetLowering::
1044 LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
1045                 unsigned CallingConv, SelectionDAG &DAG) {
1046
1047   DebugLoc dl = TheCall->getDebugLoc();
1048   // Assign locations to each value returned by this call.
1049   SmallVector<CCValAssign, 16> RVLocs;
1050   bool isVarArg = TheCall->isVarArg();
1051   bool Is64Bit = Subtarget->is64Bit();
1052   CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
1053   CCInfo.AnalyzeCallResult(TheCall, RetCC_X86);
1054
1055   SmallVector<SDValue, 8> ResultVals;
1056
1057   // Copy all of the result registers out of their specified physreg.
1058   for (unsigned i = 0; i != RVLocs.size(); ++i) {
1059     CCValAssign &VA = RVLocs[i];
1060     MVT CopyVT = VA.getValVT();
1061
1062     // If this is x86-64, and we disabled SSE, we can't return FP values
1063     if ((CopyVT == MVT::f32 || CopyVT == MVT::f64) &&
1064         ((Is64Bit || TheCall->isInreg()) && !Subtarget->hasSSE1())) {
1065       cerr << "SSE register return with SSE disabled\n";
1066       exit(1);
1067     }
1068
1069     // If this is a call to a function that returns an fp value on the floating
1070     // point stack, but where we prefer to use the value in xmm registers, copy
1071     // it out as F80 and use a truncate to move it from fp stack reg to xmm reg.
1072     if ((VA.getLocReg() == X86::ST0 ||
1073          VA.getLocReg() == X86::ST1) &&
1074         isScalarFPTypeInSSEReg(VA.getValVT())) {
1075       CopyVT = MVT::f80;
1076     }
1077
1078     SDValue Val;
1079     if (Is64Bit && CopyVT.isVector() && CopyVT.getSizeInBits() == 64) {
1080       // For x86-64, MMX values are returned in XMM0 / XMM1 except for v1i64.
1081       if (VA.getLocReg() == X86::XMM0 || VA.getLocReg() == X86::XMM1) {
1082         Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1083                                    MVT::v2i64, InFlag).getValue(1);
1084         Val = Chain.getValue(0);
1085         Val = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1086                           Val, DAG.getConstant(0, MVT::i64));        
1087       } else {
1088         Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1089                                    MVT::i64, InFlag).getValue(1);
1090         Val = Chain.getValue(0);
1091       }
1092       Val = DAG.getNode(ISD::BIT_CONVERT, dl, CopyVT, Val);
1093     } else {
1094       Chain = DAG.getCopyFromReg(Chain, dl, VA.getLocReg(),
1095                                  CopyVT, InFlag).getValue(1);
1096       Val = Chain.getValue(0);
1097     }
1098     InFlag = Chain.getValue(2);
1099
1100     if (CopyVT != VA.getValVT()) {
1101       // Round the F80 the right size, which also moves to the appropriate xmm
1102       // register.
1103       Val = DAG.getNode(ISD::FP_ROUND, dl, VA.getValVT(), Val,
1104                         // This truncation won't change the value.
1105                         DAG.getIntPtrConstant(1));
1106     }
1107
1108     ResultVals.push_back(Val);
1109   }
1110
1111   // Merge everything together with a MERGE_VALUES node.
1112   ResultVals.push_back(Chain);
1113   return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
1114                      &ResultVals[0], ResultVals.size()).getNode();
1115 }
1116
1117
1118 //===----------------------------------------------------------------------===//
1119 //                C & StdCall & Fast Calling Convention implementation
1120 //===----------------------------------------------------------------------===//
1121 //  StdCall calling convention seems to be standard for many Windows' API
1122 //  routines and around. It differs from C calling convention just a little:
1123 //  callee should clean up the stack, not caller. Symbols should be also
1124 //  decorated in some fancy way :) It doesn't support any vector arguments.
1125 //  For info on fast calling convention see Fast Calling Convention (tail call)
1126 //  implementation LowerX86_32FastCCCallTo.
1127
1128 /// CallIsStructReturn - Determines whether a CALL node uses struct return
1129 /// semantics.
1130 static bool CallIsStructReturn(CallSDNode *TheCall) {
1131   unsigned NumOps = TheCall->getNumArgs();
1132   if (!NumOps)
1133     return false;
1134
1135   return TheCall->getArgFlags(0).isSRet();
1136 }
1137
1138 /// ArgsAreStructReturn - Determines whether a FORMAL_ARGUMENTS node uses struct
1139 /// return semantics.
1140 static bool ArgsAreStructReturn(SDValue Op) {
1141   unsigned NumArgs = Op.getNode()->getNumValues() - 1;
1142   if (!NumArgs)
1143     return false;
1144
1145   return cast<ARG_FLAGSSDNode>(Op.getOperand(3))->getArgFlags().isSRet();
1146 }
1147
1148 /// IsCalleePop - Determines whether a CALL or FORMAL_ARGUMENTS node requires
1149 /// the callee to pop its own arguments. Callee pop is necessary to support tail
1150 /// calls.
1151 bool X86TargetLowering::IsCalleePop(bool IsVarArg, unsigned CallingConv) {
1152   if (IsVarArg)
1153     return false;
1154
1155   switch (CallingConv) {
1156   default:
1157     return false;
1158   case CallingConv::X86_StdCall:
1159     return !Subtarget->is64Bit();
1160   case CallingConv::X86_FastCall:
1161     return !Subtarget->is64Bit();
1162   case CallingConv::Fast:
1163     return PerformTailCallOpt;
1164   }
1165 }
1166
1167 /// CCAssignFnForNode - Selects the correct CCAssignFn for a the
1168 /// given CallingConvention value.
1169 CCAssignFn *X86TargetLowering::CCAssignFnForNode(unsigned CC) const {
1170   if (Subtarget->is64Bit()) {
1171     if (Subtarget->isTargetWin64())
1172       return CC_X86_Win64_C;
1173     else
1174       return CC_X86_64_C;
1175   }
1176
1177   if (CC == CallingConv::X86_FastCall)
1178     return CC_X86_32_FastCall;
1179   else if (CC == CallingConv::Fast)
1180     return CC_X86_32_FastCC;
1181   else
1182     return CC_X86_32_C;
1183 }
1184
1185 /// NameDecorationForFORMAL_ARGUMENTS - Selects the appropriate decoration to
1186 /// apply to a MachineFunction containing a given FORMAL_ARGUMENTS node.
1187 NameDecorationStyle
1188 X86TargetLowering::NameDecorationForFORMAL_ARGUMENTS(SDValue Op) {
1189   unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
1190   if (CC == CallingConv::X86_FastCall)
1191     return FastCall;
1192   else if (CC == CallingConv::X86_StdCall)
1193     return StdCall;
1194   return None;
1195 }
1196
1197
1198 /// CallRequiresGOTInRegister - Check whether the call requires the GOT pointer
1199 /// in a register before calling.
1200 bool X86TargetLowering::CallRequiresGOTPtrInReg(bool Is64Bit, bool IsTailCall) {
1201   return !IsTailCall && !Is64Bit &&
1202     getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1203     Subtarget->isPICStyleGOT();
1204 }
1205
1206 /// CallRequiresFnAddressInReg - Check whether the call requires the function
1207 /// address to be loaded in a register.
1208 bool
1209 X86TargetLowering::CallRequiresFnAddressInReg(bool Is64Bit, bool IsTailCall) {
1210   return !Is64Bit && IsTailCall &&
1211     getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1212     Subtarget->isPICStyleGOT();
1213 }
1214
1215 /// CreateCopyOfByValArgument - Make a copy of an aggregate at address specified
1216 /// by "Src" to address "Dst" with size and alignment information specified by
1217 /// the specific parameter attribute. The copy will be passed as a byval
1218 /// function parameter.
1219 static SDValue
1220 CreateCopyOfByValArgument(SDValue Src, SDValue Dst, SDValue Chain,
1221                           ISD::ArgFlagsTy Flags, SelectionDAG &DAG,
1222                           DebugLoc dl) {
1223   SDValue SizeNode     = DAG.getConstant(Flags.getByValSize(), MVT::i32);
1224   return DAG.getMemcpy(Chain, dl, Dst, Src, SizeNode, Flags.getByValAlign(),
1225                        /*AlwaysInline=*/true, NULL, 0, NULL, 0);
1226 }
1227
1228 SDValue X86TargetLowering::LowerMemArgument(SDValue Op, SelectionDAG &DAG,
1229                                               const CCValAssign &VA,
1230                                               MachineFrameInfo *MFI,
1231                                               unsigned CC,
1232                                               SDValue Root, unsigned i) {
1233   // Create the nodes corresponding to a load from this parameter slot.
1234   ISD::ArgFlagsTy Flags =
1235     cast<ARG_FLAGSSDNode>(Op.getOperand(3 + i))->getArgFlags();
1236   bool AlwaysUseMutable = (CC==CallingConv::Fast) && PerformTailCallOpt;
1237   bool isImmutable = !AlwaysUseMutable && !Flags.isByVal();
1238
1239   // FIXME: For now, all byval parameter objects are marked mutable. This can be
1240   // changed with more analysis.
1241   // In case of tail call optimization mark all arguments mutable. Since they
1242   // could be overwritten by lowering of arguments in case of a tail call.
1243   int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
1244                                   VA.getLocMemOffset(), isImmutable);
1245   SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
1246   if (Flags.isByVal())
1247     return FIN;
1248   return DAG.getLoad(VA.getValVT(), Op.getDebugLoc(), Root, FIN,
1249                      PseudoSourceValue::getFixedStack(FI), 0);
1250 }
1251
1252 SDValue
1253 X86TargetLowering::LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG) {
1254   MachineFunction &MF = DAG.getMachineFunction();
1255   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1256   DebugLoc dl = Op.getDebugLoc();
1257
1258   const Function* Fn = MF.getFunction();
1259   if (Fn->hasExternalLinkage() &&
1260       Subtarget->isTargetCygMing() &&
1261       Fn->getName() == "main")
1262     FuncInfo->setForceFramePointer(true);
1263
1264   // Decorate the function name.
1265   FuncInfo->setDecorationStyle(NameDecorationForFORMAL_ARGUMENTS(Op));
1266
1267   MachineFrameInfo *MFI = MF.getFrameInfo();
1268   SDValue Root = Op.getOperand(0);
1269   bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
1270   unsigned CC = MF.getFunction()->getCallingConv();
1271   bool Is64Bit = Subtarget->is64Bit();
1272   bool IsWin64 = Subtarget->isTargetWin64();
1273
1274   assert(!(isVarArg && CC == CallingConv::Fast) &&
1275          "Var args not supported with calling convention fastcc");
1276
1277   // Assign locations to all of the incoming arguments.
1278   SmallVector<CCValAssign, 16> ArgLocs;
1279   CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
1280   CCInfo.AnalyzeFormalArguments(Op.getNode(), CCAssignFnForNode(CC));
1281
1282   SmallVector<SDValue, 8> ArgValues;
1283   unsigned LastVal = ~0U;
1284   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1285     CCValAssign &VA = ArgLocs[i];
1286     // TODO: If an arg is passed in two places (e.g. reg and stack), skip later
1287     // places.
1288     assert(VA.getValNo() != LastVal &&
1289            "Don't support value assigned to multiple locs yet");
1290     LastVal = VA.getValNo();
1291
1292     if (VA.isRegLoc()) {
1293       MVT RegVT = VA.getLocVT();
1294       TargetRegisterClass *RC = NULL;
1295       if (RegVT == MVT::i32)
1296         RC = X86::GR32RegisterClass;
1297       else if (Is64Bit && RegVT == MVT::i64)
1298         RC = X86::GR64RegisterClass;
1299       else if (RegVT == MVT::f32)
1300         RC = X86::FR32RegisterClass;
1301       else if (RegVT == MVT::f64)
1302         RC = X86::FR64RegisterClass;
1303       else if (RegVT.isVector() && RegVT.getSizeInBits() == 128)
1304         RC = X86::VR128RegisterClass;
1305       else if (RegVT.isVector()) {
1306         assert(RegVT.getSizeInBits() == 64);
1307         if (!Is64Bit)
1308           RC = X86::VR64RegisterClass;     // MMX values are passed in MMXs.
1309         else {
1310           // Darwin calling convention passes MMX values in either GPRs or
1311           // XMMs in x86-64. Other targets pass them in memory.
1312           if (RegVT != MVT::v1i64 && Subtarget->hasSSE2()) {
1313             RC = X86::VR128RegisterClass;  // MMX values are passed in XMMs.
1314             RegVT = MVT::v2i64;
1315           } else {
1316             RC = X86::GR64RegisterClass;   // v1i64 values are passed in GPRs.
1317             RegVT = MVT::i64;
1318           }
1319         }
1320       } else {
1321         assert(0 && "Unknown argument type!");
1322       }
1323
1324       unsigned Reg = DAG.getMachineFunction().addLiveIn(VA.getLocReg(), RC);
1325       SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
1326
1327       // If this is an 8 or 16-bit value, it is really passed promoted to 32
1328       // bits.  Insert an assert[sz]ext to capture this, then truncate to the
1329       // right size.
1330       if (VA.getLocInfo() == CCValAssign::SExt)
1331         ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
1332                                DAG.getValueType(VA.getValVT()));
1333       else if (VA.getLocInfo() == CCValAssign::ZExt)
1334         ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
1335                                DAG.getValueType(VA.getValVT()));
1336
1337       if (VA.getLocInfo() != CCValAssign::Full)
1338         ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
1339
1340       // Handle MMX values passed in GPRs.
1341       if (Is64Bit && RegVT != VA.getLocVT()) {
1342         if (RegVT.getSizeInBits() == 64 && RC == X86::GR64RegisterClass)
1343           ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
1344         else if (RC == X86::VR128RegisterClass) {
1345           ArgValue = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i64,
1346                                  ArgValue, DAG.getConstant(0, MVT::i64));
1347           ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, VA.getLocVT(), ArgValue);
1348         }
1349       }
1350
1351       ArgValues.push_back(ArgValue);
1352     } else {
1353       assert(VA.isMemLoc());
1354       ArgValues.push_back(LowerMemArgument(Op, DAG, VA, MFI, CC, Root, i));
1355     }
1356   }
1357
1358   // The x86-64 ABI for returning structs by value requires that we copy
1359   // the sret argument into %rax for the return. Save the argument into
1360   // a virtual register so that we can access it from the return points.
1361   if (Is64Bit && DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1362     MachineFunction &MF = DAG.getMachineFunction();
1363     X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
1364     unsigned Reg = FuncInfo->getSRetReturnReg();
1365     if (!Reg) {
1366       Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i64));
1367       FuncInfo->setSRetReturnReg(Reg);
1368     }
1369     SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
1370     Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
1371   }
1372
1373   unsigned StackSize = CCInfo.getNextStackOffset();
1374   // align stack specially for tail calls
1375   if (PerformTailCallOpt && CC == CallingConv::Fast)
1376     StackSize = GetAlignedArgumentStackSize(StackSize, DAG);
1377
1378   // If the function takes variable number of arguments, make a frame index for
1379   // the start of the first vararg value... for expansion of llvm.va_start.
1380   if (isVarArg) {
1381     if (Is64Bit || CC != CallingConv::X86_FastCall) {
1382       VarArgsFrameIndex = MFI->CreateFixedObject(1, StackSize);
1383     }
1384     if (Is64Bit) {
1385       unsigned TotalNumIntRegs = 0, TotalNumXMMRegs = 0;
1386
1387       // FIXME: We should really autogenerate these arrays
1388       static const unsigned GPR64ArgRegsWin64[] = {
1389         X86::RCX, X86::RDX, X86::R8,  X86::R9
1390       };
1391       static const unsigned XMMArgRegsWin64[] = {
1392         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3
1393       };
1394       static const unsigned GPR64ArgRegs64Bit[] = {
1395         X86::RDI, X86::RSI, X86::RDX, X86::RCX, X86::R8, X86::R9
1396       };
1397       static const unsigned XMMArgRegs64Bit[] = {
1398         X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1399         X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1400       };
1401       const unsigned *GPR64ArgRegs, *XMMArgRegs;
1402
1403       if (IsWin64) {
1404         TotalNumIntRegs = 4; TotalNumXMMRegs = 4;
1405         GPR64ArgRegs = GPR64ArgRegsWin64;
1406         XMMArgRegs = XMMArgRegsWin64;
1407       } else {
1408         TotalNumIntRegs = 6; TotalNumXMMRegs = 8;
1409         GPR64ArgRegs = GPR64ArgRegs64Bit;
1410         XMMArgRegs = XMMArgRegs64Bit;
1411       }
1412       unsigned NumIntRegs = CCInfo.getFirstUnallocated(GPR64ArgRegs,
1413                                                        TotalNumIntRegs);
1414       unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs,
1415                                                        TotalNumXMMRegs);
1416
1417       bool NoImplicitFloatOps = Fn->hasFnAttr(Attribute::NoImplicitFloat);
1418       assert(!(NumXMMRegs && !Subtarget->hasSSE1()) &&
1419              "SSE register cannot be used when SSE is disabled!");
1420       assert(!(NumXMMRegs && UseSoftFloat && NoImplicitFloatOps) &&
1421              "SSE register cannot be used when SSE is disabled!");
1422       if (UseSoftFloat || NoImplicitFloatOps || !Subtarget->hasSSE1())
1423         // Kernel mode asks for SSE to be disabled, so don't push them
1424         // on the stack.
1425         TotalNumXMMRegs = 0;
1426
1427       // For X86-64, if there are vararg parameters that are passed via
1428       // registers, then we must store them to their spots on the stack so they
1429       // may be loaded by deferencing the result of va_next.
1430       VarArgsGPOffset = NumIntRegs * 8;
1431       VarArgsFPOffset = TotalNumIntRegs * 8 + NumXMMRegs * 16;
1432       RegSaveFrameIndex = MFI->CreateStackObject(TotalNumIntRegs * 8 +
1433                                                  TotalNumXMMRegs * 16, 16);
1434
1435       // Store the integer parameter registers.
1436       SmallVector<SDValue, 8> MemOps;
1437       SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
1438       SDValue FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1439                                   DAG.getIntPtrConstant(VarArgsGPOffset));
1440       for (; NumIntRegs != TotalNumIntRegs; ++NumIntRegs) {
1441         unsigned VReg = MF.addLiveIn(GPR64ArgRegs[NumIntRegs],
1442                                      X86::GR64RegisterClass);
1443         SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::i64);
1444         SDValue Store =
1445           DAG.getStore(Val.getValue(1), dl, Val, FIN,
1446                        PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
1447         MemOps.push_back(Store);
1448         FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
1449                           DAG.getIntPtrConstant(8));
1450       }
1451
1452       // Now store the XMM (fp + vector) parameter registers.
1453       FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), RSFIN,
1454                         DAG.getIntPtrConstant(VarArgsFPOffset));
1455       for (; NumXMMRegs != TotalNumXMMRegs; ++NumXMMRegs) {
1456         unsigned VReg = MF.addLiveIn(XMMArgRegs[NumXMMRegs],
1457                                      X86::VR128RegisterClass);
1458         SDValue Val = DAG.getCopyFromReg(Root, dl, VReg, MVT::v4f32);
1459         SDValue Store =
1460           DAG.getStore(Val.getValue(1), dl, Val, FIN,
1461                        PseudoSourceValue::getFixedStack(RegSaveFrameIndex), 0);
1462         MemOps.push_back(Store);
1463         FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(), FIN,
1464                           DAG.getIntPtrConstant(16));
1465       }
1466       if (!MemOps.empty())
1467           Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1468                              &MemOps[0], MemOps.size());
1469     }
1470   }
1471
1472   ArgValues.push_back(Root);
1473
1474   // Some CCs need callee pop.
1475   if (IsCalleePop(isVarArg, CC)) {
1476     BytesToPopOnReturn  = StackSize; // Callee pops everything.
1477     BytesCallerReserves = 0;
1478   } else {
1479     BytesToPopOnReturn  = 0; // Callee pops nothing.
1480     // If this is an sret function, the return should pop the hidden pointer.
1481     if (!Is64Bit && CC != CallingConv::Fast && ArgsAreStructReturn(Op))
1482       BytesToPopOnReturn = 4;
1483     BytesCallerReserves = StackSize;
1484   }
1485
1486   if (!Is64Bit) {
1487     RegSaveFrameIndex = 0xAAAAAAA;   // RegSaveFrameIndex is X86-64 only.
1488     if (CC == CallingConv::X86_FastCall)
1489       VarArgsFrameIndex = 0xAAAAAAA;   // fastcc functions can't have varargs.
1490   }
1491
1492   FuncInfo->setBytesToPopOnReturn(BytesToPopOnReturn);
1493
1494   // Return the new list of results.
1495   return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
1496                      &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
1497 }
1498
1499 SDValue
1500 X86TargetLowering::LowerMemOpCallTo(CallSDNode *TheCall, SelectionDAG &DAG,
1501                                     const SDValue &StackPtr,
1502                                     const CCValAssign &VA,
1503                                     SDValue Chain,
1504                                     SDValue Arg, ISD::ArgFlagsTy Flags) {
1505   DebugLoc dl = TheCall->getDebugLoc();
1506   unsigned LocMemOffset = VA.getLocMemOffset();
1507   SDValue PtrOff = DAG.getIntPtrConstant(LocMemOffset);
1508   PtrOff = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, PtrOff);
1509   if (Flags.isByVal()) {
1510     return CreateCopyOfByValArgument(Arg, PtrOff, Chain, Flags, DAG, dl);
1511   }
1512   return DAG.getStore(Chain, dl, Arg, PtrOff,
1513                       PseudoSourceValue::getStack(), LocMemOffset);
1514 }
1515
1516 /// EmitTailCallLoadRetAddr - Emit a load of return address if tail call
1517 /// optimization is performed and it is required.
1518 SDValue
1519 X86TargetLowering::EmitTailCallLoadRetAddr(SelectionDAG &DAG,
1520                                            SDValue &OutRetAddr,
1521                                            SDValue Chain,
1522                                            bool IsTailCall,
1523                                            bool Is64Bit,
1524                                            int FPDiff,
1525                                            DebugLoc dl) {
1526   if (!IsTailCall || FPDiff==0) return Chain;
1527
1528   // Adjust the Return address stack slot.
1529   MVT VT = getPointerTy();
1530   OutRetAddr = getReturnAddressFrameIndex(DAG);
1531
1532   // Load the "old" Return address.
1533   OutRetAddr = DAG.getLoad(VT, dl, Chain, OutRetAddr, NULL, 0);
1534   return SDValue(OutRetAddr.getNode(), 1);
1535 }
1536
1537 /// EmitTailCallStoreRetAddr - Emit a store of the return adress if tail call
1538 /// optimization is performed and it is required (FPDiff!=0).
1539 static SDValue
1540 EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
1541                          SDValue Chain, SDValue RetAddrFrIdx,
1542                          bool Is64Bit, int FPDiff, DebugLoc dl) {
1543   // Store the return address to the appropriate stack slot.
1544   if (!FPDiff) return Chain;
1545   // Calculate the new stack slot for the return address.
1546   int SlotSize = Is64Bit ? 8 : 4;
1547   int NewReturnAddrFI =
1548     MF.getFrameInfo()->CreateFixedObject(SlotSize, FPDiff-SlotSize);
1549   MVT VT = Is64Bit ? MVT::i64 : MVT::i32;
1550   SDValue NewRetAddrFrIdx = DAG.getFrameIndex(NewReturnAddrFI, VT);
1551   Chain = DAG.getStore(Chain, dl, RetAddrFrIdx, NewRetAddrFrIdx,
1552                        PseudoSourceValue::getFixedStack(NewReturnAddrFI), 0);
1553   return Chain;
1554 }
1555
1556 SDValue X86TargetLowering::LowerCALL(SDValue Op, SelectionDAG &DAG) {
1557   MachineFunction &MF = DAG.getMachineFunction();
1558   CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
1559   SDValue Chain       = TheCall->getChain();
1560   unsigned CC         = TheCall->getCallingConv();
1561   bool isVarArg       = TheCall->isVarArg();
1562   bool IsTailCall     = TheCall->isTailCall() &&
1563                         CC == CallingConv::Fast && PerformTailCallOpt;
1564   SDValue Callee      = TheCall->getCallee();
1565   bool Is64Bit        = Subtarget->is64Bit();
1566   bool IsStructRet    = CallIsStructReturn(TheCall);
1567   DebugLoc dl         = TheCall->getDebugLoc();
1568
1569   assert(!(isVarArg && CC == CallingConv::Fast) &&
1570          "Var args not supported with calling convention fastcc");
1571
1572   // Analyze operands of the call, assigning locations to each operand.
1573   SmallVector<CCValAssign, 16> ArgLocs;
1574   CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
1575   CCInfo.AnalyzeCallOperands(TheCall, CCAssignFnForNode(CC));
1576
1577   // Get a count of how many bytes are to be pushed on the stack.
1578   unsigned NumBytes = CCInfo.getNextStackOffset();
1579   if (PerformTailCallOpt && CC == CallingConv::Fast)
1580     NumBytes = GetAlignedArgumentStackSize(NumBytes, DAG);
1581
1582   int FPDiff = 0;
1583   if (IsTailCall) {
1584     // Lower arguments at fp - stackoffset + fpdiff.
1585     unsigned NumBytesCallerPushed =
1586       MF.getInfo<X86MachineFunctionInfo>()->getBytesToPopOnReturn();
1587     FPDiff = NumBytesCallerPushed - NumBytes;
1588
1589     // Set the delta of movement of the returnaddr stackslot.
1590     // But only set if delta is greater than previous delta.
1591     if (FPDiff < (MF.getInfo<X86MachineFunctionInfo>()->getTCReturnAddrDelta()))
1592       MF.getInfo<X86MachineFunctionInfo>()->setTCReturnAddrDelta(FPDiff);
1593   }
1594
1595   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
1596
1597   SDValue RetAddrFrIdx;
1598   // Load return adress for tail calls.
1599   Chain = EmitTailCallLoadRetAddr(DAG, RetAddrFrIdx, Chain, IsTailCall, Is64Bit,
1600                                   FPDiff, dl);
1601
1602   SmallVector<std::pair<unsigned, SDValue>, 8> RegsToPass;
1603   SmallVector<SDValue, 8> MemOpChains;
1604   SDValue StackPtr;
1605
1606   // Walk the register/memloc assignments, inserting copies/loads.  In the case
1607   // of tail call optimization arguments are handle later.
1608   for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1609     CCValAssign &VA = ArgLocs[i];
1610     SDValue Arg = TheCall->getArg(i);
1611     ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1612     bool isByVal = Flags.isByVal();
1613
1614     // Promote the value if needed.
1615     switch (VA.getLocInfo()) {
1616     default: assert(0 && "Unknown loc info!");
1617     case CCValAssign::Full: break;
1618     case CCValAssign::SExt:
1619       Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
1620       break;
1621     case CCValAssign::ZExt:
1622       Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
1623       break;
1624     case CCValAssign::AExt:
1625       Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
1626       break;
1627     }
1628
1629     if (VA.isRegLoc()) {
1630       if (Is64Bit) {
1631         MVT RegVT = VA.getLocVT();
1632         if (RegVT.isVector() && RegVT.getSizeInBits() == 64)
1633           switch (VA.getLocReg()) {
1634           default:
1635             break;
1636           case X86::RDI: case X86::RSI: case X86::RDX: case X86::RCX:
1637           case X86::R8: {
1638             // Special case: passing MMX values in GPR registers.
1639             Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1640             break;
1641           }
1642           case X86::XMM0: case X86::XMM1: case X86::XMM2: case X86::XMM3:
1643           case X86::XMM4: case X86::XMM5: case X86::XMM6: case X86::XMM7: {
1644             // Special case: passing MMX values in XMM registers.
1645             Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
1646             Arg = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i64, Arg);
1647             Arg = getMOVL(DAG, dl, MVT::v2i64, DAG.getUNDEF(MVT::v2i64), Arg);
1648             break;
1649           }
1650           }
1651       }
1652       RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
1653     } else {
1654       if (!IsTailCall || (IsTailCall && isByVal)) {
1655         assert(VA.isMemLoc());
1656         if (StackPtr.getNode() == 0)
1657           StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr, getPointerTy());
1658
1659         MemOpChains.push_back(LowerMemOpCallTo(TheCall, DAG, StackPtr, VA,
1660                                                Chain, Arg, Flags));
1661       }
1662     }
1663   }
1664
1665   if (!MemOpChains.empty())
1666     Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1667                         &MemOpChains[0], MemOpChains.size());
1668
1669   // Build a sequence of copy-to-reg nodes chained together with token chain
1670   // and flag operands which copy the outgoing args into registers.
1671   SDValue InFlag;
1672   // Tail call byval lowering might overwrite argument registers so in case of
1673   // tail call optimization the copies to registers are lowered later.
1674   if (!IsTailCall)
1675     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1676       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1677                                RegsToPass[i].second, InFlag);
1678       InFlag = Chain.getValue(1);
1679     }
1680
1681   // ELF / PIC requires GOT in the EBX register before function calls via PLT
1682   // GOT pointer.
1683   if (CallRequiresGOTPtrInReg(Is64Bit, IsTailCall)) {
1684     Chain = DAG.getCopyToReg(Chain, dl, X86::EBX,
1685                              DAG.getNode(X86ISD::GlobalBaseReg,
1686                                          DebugLoc::getUnknownLoc(),
1687                                          getPointerTy()),
1688                              InFlag);
1689     InFlag = Chain.getValue(1);
1690   }
1691   // If we are tail calling and generating PIC/GOT style code load the address
1692   // of the callee into ecx. The value in ecx is used as target of the tail
1693   // jump. This is done to circumvent the ebx/callee-saved problem for tail
1694   // calls on PIC/GOT architectures. Normally we would just put the address of
1695   // GOT into ebx and then call target@PLT. But for tail callss ebx would be
1696   // restored (since ebx is callee saved) before jumping to the target@PLT.
1697   if (CallRequiresFnAddressInReg(Is64Bit, IsTailCall)) {
1698     // Note: The actual moving to ecx is done further down.
1699     GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
1700     if (G && !G->getGlobal()->hasHiddenVisibility() &&
1701         !G->getGlobal()->hasProtectedVisibility())
1702       Callee =  LowerGlobalAddress(Callee, DAG);
1703     else if (isa<ExternalSymbolSDNode>(Callee))
1704       Callee = LowerExternalSymbol(Callee,DAG);
1705   }
1706
1707   if (Is64Bit && isVarArg) {
1708     // From AMD64 ABI document:
1709     // For calls that may call functions that use varargs or stdargs
1710     // (prototype-less calls or calls to functions containing ellipsis (...) in
1711     // the declaration) %al is used as hidden argument to specify the number
1712     // of SSE registers used. The contents of %al do not need to match exactly
1713     // the number of registers, but must be an ubound on the number of SSE
1714     // registers used and is in the range 0 - 8 inclusive.
1715
1716     // FIXME: Verify this on Win64
1717     // Count the number of XMM registers allocated.
1718     static const unsigned XMMArgRegs[] = {
1719       X86::XMM0, X86::XMM1, X86::XMM2, X86::XMM3,
1720       X86::XMM4, X86::XMM5, X86::XMM6, X86::XMM7
1721     };
1722     unsigned NumXMMRegs = CCInfo.getFirstUnallocated(XMMArgRegs, 8);
1723     assert((Subtarget->hasSSE1() || !NumXMMRegs)
1724            && "SSE registers cannot be used when SSE is disabled");
1725
1726     Chain = DAG.getCopyToReg(Chain, dl, X86::AL,
1727                              DAG.getConstant(NumXMMRegs, MVT::i8), InFlag);
1728     InFlag = Chain.getValue(1);
1729   }
1730
1731
1732   // For tail calls lower the arguments to the 'real' stack slot.
1733   if (IsTailCall) {
1734     SmallVector<SDValue, 8> MemOpChains2;
1735     SDValue FIN;
1736     int FI = 0;
1737     // Do not flag preceeding copytoreg stuff together with the following stuff.
1738     InFlag = SDValue();
1739     for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
1740       CCValAssign &VA = ArgLocs[i];
1741       if (!VA.isRegLoc()) {
1742         assert(VA.isMemLoc());
1743         SDValue Arg = TheCall->getArg(i);
1744         ISD::ArgFlagsTy Flags = TheCall->getArgFlags(i);
1745         // Create frame index.
1746         int32_t Offset = VA.getLocMemOffset()+FPDiff;
1747         uint32_t OpSize = (VA.getLocVT().getSizeInBits()+7)/8;
1748         FI = MF.getFrameInfo()->CreateFixedObject(OpSize, Offset);
1749         FIN = DAG.getFrameIndex(FI, getPointerTy());
1750
1751         if (Flags.isByVal()) {
1752           // Copy relative to framepointer.
1753           SDValue Source = DAG.getIntPtrConstant(VA.getLocMemOffset());
1754           if (StackPtr.getNode() == 0)
1755             StackPtr = DAG.getCopyFromReg(Chain, dl, X86StackPtr,
1756                                           getPointerTy());
1757           Source = DAG.getNode(ISD::ADD, dl, getPointerTy(), StackPtr, Source);
1758
1759           MemOpChains2.push_back(CreateCopyOfByValArgument(Source, FIN, Chain,
1760                                                            Flags, DAG, dl));
1761         } else {
1762           // Store relative to framepointer.
1763           MemOpChains2.push_back(
1764             DAG.getStore(Chain, dl, Arg, FIN,
1765                          PseudoSourceValue::getFixedStack(FI), 0));
1766         }
1767       }
1768     }
1769
1770     if (!MemOpChains2.empty())
1771       Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
1772                           &MemOpChains2[0], MemOpChains2.size());
1773
1774     // Copy arguments to their registers.
1775     for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
1776       Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
1777                                RegsToPass[i].second, InFlag);
1778       InFlag = Chain.getValue(1);
1779     }
1780     InFlag =SDValue();
1781
1782     // Store the return address to the appropriate stack slot.
1783     Chain = EmitTailCallStoreRetAddr(DAG, MF, Chain, RetAddrFrIdx, Is64Bit,
1784                                      FPDiff, dl);
1785   }
1786
1787   // If the callee is a GlobalAddress node (quite common, every direct call is)
1788   // turn it into a TargetGlobalAddress node so that legalize doesn't hack it.
1789   if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee)) {
1790     // We should use extra load for direct calls to dllimported functions in
1791     // non-JIT mode.
1792     if (!Subtarget->GVRequiresExtraLoad(G->getGlobal(),
1793                                         getTargetMachine(), true))
1794       Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy(),
1795                                           G->getOffset());
1796   } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee)) {
1797     Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
1798   } else if (IsTailCall) {
1799     unsigned Opc = Is64Bit ? X86::R11 : X86::EAX;
1800
1801     Chain = DAG.getCopyToReg(Chain,  dl,
1802                              DAG.getRegister(Opc, getPointerTy()),
1803                              Callee,InFlag);
1804     Callee = DAG.getRegister(Opc, getPointerTy());
1805     // Add register as live out.
1806     DAG.getMachineFunction().getRegInfo().addLiveOut(Opc);
1807   }
1808
1809   // Returns a chain & a flag for retval copy to use.
1810   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1811   SmallVector<SDValue, 8> Ops;
1812
1813   if (IsTailCall) {
1814     Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
1815                            DAG.getIntPtrConstant(0, true), InFlag);
1816     InFlag = Chain.getValue(1);
1817
1818     // Returns a chain & a flag for retval copy to use.
1819     NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
1820     Ops.clear();
1821   }
1822
1823   Ops.push_back(Chain);
1824   Ops.push_back(Callee);
1825
1826   if (IsTailCall)
1827     Ops.push_back(DAG.getConstant(FPDiff, MVT::i32));
1828
1829   // Add argument registers to the end of the list so that they are known live
1830   // into the call.
1831   for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
1832     Ops.push_back(DAG.getRegister(RegsToPass[i].first,
1833                                   RegsToPass[i].second.getValueType()));
1834
1835   // Add an implicit use GOT pointer in EBX.
1836   if (!IsTailCall && !Is64Bit &&
1837       getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
1838       Subtarget->isPICStyleGOT())
1839     Ops.push_back(DAG.getRegister(X86::EBX, getPointerTy()));
1840
1841   // Add an implicit use of AL for x86 vararg functions.
1842   if (Is64Bit && isVarArg)
1843     Ops.push_back(DAG.getRegister(X86::AL, MVT::i8));
1844
1845   if (InFlag.getNode())
1846     Ops.push_back(InFlag);
1847
1848   if (IsTailCall) {
1849     assert(InFlag.getNode() &&
1850            "Flag must be set. Depend on flag being set in LowerRET");
1851     Chain = DAG.getNode(X86ISD::TAILCALL, dl,
1852                         TheCall->getVTList(), &Ops[0], Ops.size());
1853
1854     return SDValue(Chain.getNode(), Op.getResNo());
1855   }
1856
1857   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, &Ops[0], Ops.size());
1858   InFlag = Chain.getValue(1);
1859
1860   // Create the CALLSEQ_END node.
1861   unsigned NumBytesForCalleeToPush;
1862   if (IsCalleePop(isVarArg, CC))
1863     NumBytesForCalleeToPush = NumBytes;    // Callee pops everything
1864   else if (!Is64Bit && CC != CallingConv::Fast && IsStructRet)
1865     // If this is is a call to a struct-return function, the callee
1866     // pops the hidden struct pointer, so we have to push it back.
1867     // This is common for Darwin/X86, Linux & Mingw32 targets.
1868     NumBytesForCalleeToPush = 4;
1869   else
1870     NumBytesForCalleeToPush = 0;  // Callee pops nothing.
1871
1872   // Returns a flag for retval copy to use.
1873   Chain = DAG.getCALLSEQ_END(Chain,
1874                              DAG.getIntPtrConstant(NumBytes, true),
1875                              DAG.getIntPtrConstant(NumBytesForCalleeToPush,
1876                                                    true),
1877                              InFlag);
1878   InFlag = Chain.getValue(1);
1879
1880   // Handle result values, copying them out of physregs into vregs that we
1881   // return.
1882   return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG),
1883                  Op.getResNo());
1884 }
1885
1886
1887 //===----------------------------------------------------------------------===//
1888 //                Fast Calling Convention (tail call) implementation
1889 //===----------------------------------------------------------------------===//
1890
1891 //  Like std call, callee cleans arguments, convention except that ECX is
1892 //  reserved for storing the tail called function address. Only 2 registers are
1893 //  free for argument passing (inreg). Tail call optimization is performed
1894 //  provided:
1895 //                * tailcallopt is enabled
1896 //                * caller/callee are fastcc
1897 //  On X86_64 architecture with GOT-style position independent code only local
1898 //  (within module) calls are supported at the moment.
1899 //  To keep the stack aligned according to platform abi the function
1900 //  GetAlignedArgumentStackSize ensures that argument delta is always multiples
1901 //  of stack alignment. (Dynamic linkers need this - darwin's dyld for example)
1902 //  If a tail called function callee has more arguments than the caller the
1903 //  caller needs to make sure that there is room to move the RETADDR to. This is
1904 //  achieved by reserving an area the size of the argument delta right after the
1905 //  original REtADDR, but before the saved framepointer or the spilled registers
1906 //  e.g. caller(arg1, arg2) calls callee(arg1, arg2,arg3,arg4)
1907 //  stack layout:
1908 //    arg1
1909 //    arg2
1910 //    RETADDR
1911 //    [ new RETADDR
1912 //      move area ]
1913 //    (possible EBP)
1914 //    ESI
1915 //    EDI
1916 //    local1 ..
1917
1918 /// GetAlignedArgumentStackSize - Make the stack size align e.g 16n + 12 aligned
1919 /// for a 16 byte align requirement.
1920 unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
1921                                                         SelectionDAG& DAG) {
1922   MachineFunction &MF = DAG.getMachineFunction();
1923   const TargetMachine &TM = MF.getTarget();
1924   const TargetFrameInfo &TFI = *TM.getFrameInfo();
1925   unsigned StackAlignment = TFI.getStackAlignment();
1926   uint64_t AlignMask = StackAlignment - 1;
1927   int64_t Offset = StackSize;
1928   uint64_t SlotSize = TD->getPointerSize();
1929   if ( (Offset & AlignMask) <= (StackAlignment - SlotSize) ) {
1930     // Number smaller than 12 so just add the difference.
1931     Offset += ((StackAlignment - SlotSize) - (Offset & AlignMask));
1932   } else {
1933     // Mask out lower bits, add stackalignment once plus the 12 bytes.
1934     Offset = ((~AlignMask) & Offset) + StackAlignment +
1935       (StackAlignment-SlotSize);
1936   }
1937   return Offset;
1938 }
1939
1940 /// IsEligibleForTailCallElimination - Check to see whether the next instruction
1941 /// following the call is a return. A function is eligible if caller/callee
1942 /// calling conventions match, currently only fastcc supports tail calls, and
1943 /// the function CALL is immediatly followed by a RET.
1944 bool X86TargetLowering::IsEligibleForTailCallOptimization(CallSDNode *TheCall,
1945                                                       SDValue Ret,
1946                                                       SelectionDAG& DAG) const {
1947   if (!PerformTailCallOpt)
1948     return false;
1949
1950   if (CheckTailCallReturnConstraints(TheCall, Ret)) {
1951     MachineFunction &MF = DAG.getMachineFunction();
1952     unsigned CallerCC = MF.getFunction()->getCallingConv();
1953     unsigned CalleeCC= TheCall->getCallingConv();
1954     if (CalleeCC == CallingConv::Fast && CallerCC == CalleeCC) {
1955       SDValue Callee = TheCall->getCallee();
1956       // On x86/32Bit PIC/GOT  tail calls are supported.
1957       if (getTargetMachine().getRelocationModel() != Reloc::PIC_ ||
1958           !Subtarget->isPICStyleGOT()|| !Subtarget->is64Bit())
1959         return true;
1960
1961       // Can only do local tail calls (in same module, hidden or protected) on
1962       // x86_64 PIC/GOT at the moment.
1963       if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
1964         return G->getGlobal()->hasHiddenVisibility()
1965             || G->getGlobal()->hasProtectedVisibility();
1966     }
1967   }
1968
1969   return false;
1970 }
1971
1972 FastISel *
1973 X86TargetLowering::createFastISel(MachineFunction &mf,
1974                                   MachineModuleInfo *mmo,
1975                                   DwarfWriter *dw,
1976                                   DenseMap<const Value *, unsigned> &vm,
1977                                   DenseMap<const BasicBlock *,
1978                                            MachineBasicBlock *> &bm,
1979                                   DenseMap<const AllocaInst *, int> &am
1980 #ifndef NDEBUG
1981                                   , SmallSet<Instruction*, 8> &cil
1982 #endif
1983                                   ) {
1984   return X86::createFastISel(mf, mmo, dw, vm, bm, am
1985 #ifndef NDEBUG
1986                              , cil
1987 #endif
1988                              );
1989 }
1990
1991
1992 //===----------------------------------------------------------------------===//
1993 //                           Other Lowering Hooks
1994 //===----------------------------------------------------------------------===//
1995
1996
1997 SDValue X86TargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
1998   MachineFunction &MF = DAG.getMachineFunction();
1999   X86MachineFunctionInfo *FuncInfo = MF.getInfo<X86MachineFunctionInfo>();
2000   int ReturnAddrIndex = FuncInfo->getRAIndex();
2001
2002   if (ReturnAddrIndex == 0) {
2003     // Set up a frame object for the return address.
2004     uint64_t SlotSize = TD->getPointerSize();
2005     ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(SlotSize, -SlotSize);
2006     FuncInfo->setRAIndex(ReturnAddrIndex);
2007   }
2008
2009   return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
2010 }
2011
2012
2013 /// TranslateX86CC - do a one to one translation of a ISD::CondCode to the X86
2014 /// specific condition code, returning the condition code and the LHS/RHS of the
2015 /// comparison to make.
2016 static unsigned TranslateX86CC(ISD::CondCode SetCCOpcode, bool isFP,
2017                                SDValue &LHS, SDValue &RHS, SelectionDAG &DAG) {
2018   if (!isFP) {
2019     if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(RHS)) {
2020       if (SetCCOpcode == ISD::SETGT && RHSC->isAllOnesValue()) {
2021         // X > -1   -> X == 0, jump !sign.
2022         RHS = DAG.getConstant(0, RHS.getValueType());
2023         return X86::COND_NS;
2024       } else if (SetCCOpcode == ISD::SETLT && RHSC->isNullValue()) {
2025         // X < 0   -> X == 0, jump on sign.
2026         return X86::COND_S;
2027       } else if (SetCCOpcode == ISD::SETLT && RHSC->getZExtValue() == 1) {
2028         // X < 1   -> X <= 0
2029         RHS = DAG.getConstant(0, RHS.getValueType());
2030         return X86::COND_LE;
2031       }
2032     }
2033
2034     switch (SetCCOpcode) {
2035     default: assert(0 && "Invalid integer condition!");
2036     case ISD::SETEQ:  return X86::COND_E;
2037     case ISD::SETGT:  return X86::COND_G;
2038     case ISD::SETGE:  return X86::COND_GE;
2039     case ISD::SETLT:  return X86::COND_L;
2040     case ISD::SETLE:  return X86::COND_LE;
2041     case ISD::SETNE:  return X86::COND_NE;
2042     case ISD::SETULT: return X86::COND_B;
2043     case ISD::SETUGT: return X86::COND_A;
2044     case ISD::SETULE: return X86::COND_BE;
2045     case ISD::SETUGE: return X86::COND_AE;
2046     }
2047   }
2048
2049   // First determine if it is required or is profitable to flip the operands.
2050
2051   // If LHS is a foldable load, but RHS is not, flip the condition.
2052   if ((ISD::isNON_EXTLoad(LHS.getNode()) && LHS.hasOneUse()) &&
2053       !(ISD::isNON_EXTLoad(RHS.getNode()) && RHS.hasOneUse())) {
2054     SetCCOpcode = getSetCCSwappedOperands(SetCCOpcode);
2055     std::swap(LHS, RHS);
2056   }
2057
2058   switch (SetCCOpcode) {
2059   default: break;
2060   case ISD::SETOLT:
2061   case ISD::SETOLE:
2062   case ISD::SETUGT:
2063   case ISD::SETUGE:
2064     std::swap(LHS, RHS);
2065     break;
2066   }
2067
2068   // On a floating point condition, the flags are set as follows:
2069   // ZF  PF  CF   op
2070   //  0 | 0 | 0 | X > Y
2071   //  0 | 0 | 1 | X < Y
2072   //  1 | 0 | 0 | X == Y
2073   //  1 | 1 | 1 | unordered
2074   switch (SetCCOpcode) {
2075   default: assert(0 && "Condcode should be pre-legalized away");
2076   case ISD::SETUEQ:
2077   case ISD::SETEQ:   return X86::COND_E;
2078   case ISD::SETOLT:              // flipped
2079   case ISD::SETOGT:
2080   case ISD::SETGT:   return X86::COND_A;
2081   case ISD::SETOLE:              // flipped
2082   case ISD::SETOGE:
2083   case ISD::SETGE:   return X86::COND_AE;
2084   case ISD::SETUGT:              // flipped
2085   case ISD::SETULT:
2086   case ISD::SETLT:   return X86::COND_B;
2087   case ISD::SETUGE:              // flipped
2088   case ISD::SETULE:
2089   case ISD::SETLE:   return X86::COND_BE;
2090   case ISD::SETONE:
2091   case ISD::SETNE:   return X86::COND_NE;
2092   case ISD::SETUO:   return X86::COND_P;
2093   case ISD::SETO:    return X86::COND_NP;
2094   }
2095 }
2096
2097 /// hasFPCMov - is there a floating point cmov for the specific X86 condition
2098 /// code. Current x86 isa includes the following FP cmov instructions:
2099 /// fcmovb, fcomvbe, fcomve, fcmovu, fcmovae, fcmova, fcmovne, fcmovnu.
2100 static bool hasFPCMov(unsigned X86CC) {
2101   switch (X86CC) {
2102   default:
2103     return false;
2104   case X86::COND_B:
2105   case X86::COND_BE:
2106   case X86::COND_E:
2107   case X86::COND_P:
2108   case X86::COND_A:
2109   case X86::COND_AE:
2110   case X86::COND_NE:
2111   case X86::COND_NP:
2112     return true;
2113   }
2114 }
2115
2116 /// isUndefOrInRange - Return true if Val is undef or if its value falls within
2117 /// the specified range (L, H].
2118 static bool isUndefOrInRange(int Val, int Low, int Hi) {
2119   return (Val < 0) || (Val >= Low && Val < Hi);
2120 }
2121
2122 /// isUndefOrEqual - Val is either less than zero (undef) or equal to the
2123 /// specified value.
2124 static bool isUndefOrEqual(int Val, int CmpVal) {
2125   if (Val < 0 || Val == CmpVal)
2126     return true;
2127   return false;
2128 }
2129
2130 /// isPSHUFDMask - Return true if the node specifies a shuffle of elements that
2131 /// is suitable for input to PSHUFD or PSHUFW.  That is, it doesn't reference
2132 /// the second operand.
2133 static bool isPSHUFDMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2134   if (VT == MVT::v4f32 || VT == MVT::v4i32 || VT == MVT::v4i16)
2135     return (Mask[0] < 4 && Mask[1] < 4 && Mask[2] < 4 && Mask[3] < 4);
2136   if (VT == MVT::v2f64 || VT == MVT::v2i64)
2137     return (Mask[0] < 2 && Mask[1] < 2);
2138   return false;
2139 }
2140
2141 bool X86::isPSHUFDMask(ShuffleVectorSDNode *N) {
2142   SmallVector<int, 8> M; 
2143   N->getMask(M);
2144   return ::isPSHUFDMask(M, N->getValueType(0));
2145 }
2146
2147 /// isPSHUFHWMask - Return true if the node specifies a shuffle of elements that
2148 /// is suitable for input to PSHUFHW.
2149 static bool isPSHUFHWMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2150   if (VT != MVT::v8i16)
2151     return false;
2152   
2153   // Lower quadword copied in order or undef.
2154   for (int i = 0; i != 4; ++i)
2155     if (Mask[i] >= 0 && Mask[i] != i)
2156       return false;
2157   
2158   // Upper quadword shuffled.
2159   for (int i = 4; i != 8; ++i)
2160     if (Mask[i] >= 0 && (Mask[i] < 4 || Mask[i] > 7))
2161       return false;
2162   
2163   return true;
2164 }
2165
2166 bool X86::isPSHUFHWMask(ShuffleVectorSDNode *N) {
2167   SmallVector<int, 8> M; 
2168   N->getMask(M);
2169   return ::isPSHUFHWMask(M, N->getValueType(0));
2170 }
2171
2172 /// isPSHUFLWMask - Return true if the node specifies a shuffle of elements that
2173 /// is suitable for input to PSHUFLW.
2174 static bool isPSHUFLWMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2175   if (VT != MVT::v8i16)
2176     return false;
2177   
2178   // Upper quadword copied in order.
2179   for (int i = 4; i != 8; ++i)
2180     if (Mask[i] >= 0 && Mask[i] != i)
2181       return false;
2182   
2183   // Lower quadword shuffled.
2184   for (int i = 0; i != 4; ++i)
2185     if (Mask[i] >= 4)
2186       return false;
2187   
2188   return true;
2189 }
2190
2191 bool X86::isPSHUFLWMask(ShuffleVectorSDNode *N) {
2192   SmallVector<int, 8> M; 
2193   N->getMask(M);
2194   return ::isPSHUFLWMask(M, N->getValueType(0));
2195 }
2196
2197 /// isSHUFPMask - Return true if the specified VECTOR_SHUFFLE operand
2198 /// specifies a shuffle of elements that is suitable for input to SHUFP*.
2199 static bool isSHUFPMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2200   int NumElems = VT.getVectorNumElements();
2201   if (NumElems != 2 && NumElems != 4)
2202     return false;
2203   
2204   int Half = NumElems / 2;
2205   for (int i = 0; i < Half; ++i)
2206     if (!isUndefOrInRange(Mask[i], 0, NumElems))
2207       return false;
2208   for (int i = Half; i < NumElems; ++i)
2209     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
2210       return false;
2211   
2212   return true;
2213 }
2214
2215 bool X86::isSHUFPMask(ShuffleVectorSDNode *N) {
2216   SmallVector<int, 8> M;
2217   N->getMask(M);
2218   return ::isSHUFPMask(M, N->getValueType(0));
2219 }
2220
2221 /// isCommutedSHUFP - Returns true if the shuffle mask is exactly
2222 /// the reverse of what x86 shuffles want. x86 shuffles requires the lower
2223 /// half elements to come from vector 1 (which would equal the dest.) and
2224 /// the upper half to come from vector 2.
2225 static bool isCommutedSHUFPMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2226   int NumElems = VT.getVectorNumElements();
2227   
2228   if (NumElems != 2 && NumElems != 4) 
2229     return false;
2230   
2231   int Half = NumElems / 2;
2232   for (int i = 0; i < Half; ++i)
2233     if (!isUndefOrInRange(Mask[i], NumElems, NumElems*2))
2234       return false;
2235   for (int i = Half; i < NumElems; ++i)
2236     if (!isUndefOrInRange(Mask[i], 0, NumElems))
2237       return false;
2238   return true;
2239 }
2240
2241 static bool isCommutedSHUFP(ShuffleVectorSDNode *N) {
2242   SmallVector<int, 8> M;
2243   N->getMask(M);
2244   return isCommutedSHUFPMask(M, N->getValueType(0));
2245 }
2246
2247 /// isMOVHLPSMask - Return true if the specified VECTOR_SHUFFLE operand
2248 /// specifies a shuffle of elements that is suitable for input to MOVHLPS.
2249 bool X86::isMOVHLPSMask(ShuffleVectorSDNode *N) {
2250   if (N->getValueType(0).getVectorNumElements() != 4)
2251     return false;
2252
2253   // Expect bit0 == 6, bit1 == 7, bit2 == 2, bit3 == 3
2254   return isUndefOrEqual(N->getMaskElt(0), 6) &&
2255          isUndefOrEqual(N->getMaskElt(1), 7) &&
2256          isUndefOrEqual(N->getMaskElt(2), 2) &&
2257          isUndefOrEqual(N->getMaskElt(3), 3);
2258 }
2259
2260 /// isMOVLPMask - Return true if the specified VECTOR_SHUFFLE operand
2261 /// specifies a shuffle of elements that is suitable for input to MOVLP{S|D}.
2262 bool X86::isMOVLPMask(ShuffleVectorSDNode *N) {
2263   unsigned NumElems = N->getValueType(0).getVectorNumElements();
2264
2265   if (NumElems != 2 && NumElems != 4)
2266     return false;
2267
2268   for (unsigned i = 0; i < NumElems/2; ++i)
2269     if (!isUndefOrEqual(N->getMaskElt(i), i + NumElems))
2270       return false;
2271
2272   for (unsigned i = NumElems/2; i < NumElems; ++i)
2273     if (!isUndefOrEqual(N->getMaskElt(i), i))
2274       return false;
2275
2276   return true;
2277 }
2278
2279 /// isMOVHPMask - Return true if the specified VECTOR_SHUFFLE operand
2280 /// specifies a shuffle of elements that is suitable for input to MOVHP{S|D}
2281 /// and MOVLHPS.
2282 bool X86::isMOVHPMask(ShuffleVectorSDNode *N) {
2283   unsigned NumElems = N->getValueType(0).getVectorNumElements();
2284
2285   if (NumElems != 2 && NumElems != 4)
2286     return false;
2287
2288   for (unsigned i = 0; i < NumElems/2; ++i)
2289     if (!isUndefOrEqual(N->getMaskElt(i), i))
2290       return false;
2291
2292   for (unsigned i = 0; i < NumElems/2; ++i)
2293     if (!isUndefOrEqual(N->getMaskElt(i + NumElems/2), i + NumElems))
2294       return false;
2295
2296   return true;
2297 }
2298
2299 /// isMOVHLPS_v_undef_Mask - Special case of isMOVHLPSMask for canonical form
2300 /// of vector_shuffle v, v, <2, 3, 2, 3>, i.e. vector_shuffle v, undef,
2301 /// <2, 3, 2, 3>
2302 bool X86::isMOVHLPS_v_undef_Mask(ShuffleVectorSDNode *N) {
2303   unsigned NumElems = N->getValueType(0).getVectorNumElements();
2304   
2305   if (NumElems != 4)
2306     return false;
2307   
2308   return isUndefOrEqual(N->getMaskElt(0), 2) && 
2309          isUndefOrEqual(N->getMaskElt(1), 3) &&
2310          isUndefOrEqual(N->getMaskElt(2), 2) && 
2311          isUndefOrEqual(N->getMaskElt(3), 3);
2312 }
2313
2314 /// isUNPCKLMask - Return true if the specified VECTOR_SHUFFLE operand
2315 /// specifies a shuffle of elements that is suitable for input to UNPCKL.
2316 static bool isUNPCKLMask(const SmallVectorImpl<int> &Mask, MVT VT,
2317                          bool V2IsSplat = false) {
2318   int NumElts = VT.getVectorNumElements();
2319   if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2320     return false;
2321   
2322   for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2323     int BitI  = Mask[i];
2324     int BitI1 = Mask[i+1];
2325     if (!isUndefOrEqual(BitI, j))
2326       return false;
2327     if (V2IsSplat) {
2328       if (!isUndefOrEqual(BitI1, NumElts))
2329         return false;
2330     } else {
2331       if (!isUndefOrEqual(BitI1, j + NumElts))
2332         return false;
2333     }
2334   }
2335   return true;
2336 }
2337
2338 bool X86::isUNPCKLMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2339   SmallVector<int, 8> M;
2340   N->getMask(M);
2341   return ::isUNPCKLMask(M, N->getValueType(0), V2IsSplat);
2342 }
2343
2344 /// isUNPCKHMask - Return true if the specified VECTOR_SHUFFLE operand
2345 /// specifies a shuffle of elements that is suitable for input to UNPCKH.
2346 static bool isUNPCKHMask(const SmallVectorImpl<int> &Mask, MVT VT, 
2347                          bool V2IsSplat = false) {
2348   int NumElts = VT.getVectorNumElements();
2349   if (NumElts != 2 && NumElts != 4 && NumElts != 8 && NumElts != 16)
2350     return false;
2351   
2352   for (int i = 0, j = 0; i != NumElts; i += 2, ++j) {
2353     int BitI  = Mask[i];
2354     int BitI1 = Mask[i+1];
2355     if (!isUndefOrEqual(BitI, j + NumElts/2))
2356       return false;
2357     if (V2IsSplat) {
2358       if (isUndefOrEqual(BitI1, NumElts))
2359         return false;
2360     } else {
2361       if (!isUndefOrEqual(BitI1, j + NumElts/2 + NumElts))
2362         return false;
2363     }
2364   }
2365   return true;
2366 }
2367
2368 bool X86::isUNPCKHMask(ShuffleVectorSDNode *N, bool V2IsSplat) {
2369   SmallVector<int, 8> M;
2370   N->getMask(M);
2371   return ::isUNPCKHMask(M, N->getValueType(0), V2IsSplat);
2372 }
2373
2374 /// isUNPCKL_v_undef_Mask - Special case of isUNPCKLMask for canonical form
2375 /// of vector_shuffle v, v, <0, 4, 1, 5>, i.e. vector_shuffle v, undef,
2376 /// <0, 0, 1, 1>
2377 static bool isUNPCKL_v_undef_Mask(const SmallVectorImpl<int> &Mask, MVT VT) {
2378   int NumElems = VT.getVectorNumElements();
2379   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2380     return false;
2381   
2382   for (int i = 0, j = 0; i != NumElems; i += 2, ++j) {
2383     int BitI  = Mask[i];
2384     int BitI1 = Mask[i+1];
2385     if (!isUndefOrEqual(BitI, j))
2386       return false;
2387     if (!isUndefOrEqual(BitI1, j))
2388       return false;
2389   }
2390   return true;
2391 }
2392
2393 bool X86::isUNPCKL_v_undef_Mask(ShuffleVectorSDNode *N) {
2394   SmallVector<int, 8> M;
2395   N->getMask(M);
2396   return ::isUNPCKL_v_undef_Mask(M, N->getValueType(0));
2397 }
2398
2399 /// isUNPCKH_v_undef_Mask - Special case of isUNPCKHMask for canonical form
2400 /// of vector_shuffle v, v, <2, 6, 3, 7>, i.e. vector_shuffle v, undef,
2401 /// <2, 2, 3, 3>
2402 static bool isUNPCKH_v_undef_Mask(const SmallVectorImpl<int> &Mask, MVT VT) {
2403   int NumElems = VT.getVectorNumElements();
2404   if (NumElems != 2 && NumElems != 4 && NumElems != 8 && NumElems != 16)
2405     return false;
2406   
2407   for (int i = 0, j = NumElems / 2; i != NumElems; i += 2, ++j) {
2408     int BitI  = Mask[i];
2409     int BitI1 = Mask[i+1];
2410     if (!isUndefOrEqual(BitI, j))
2411       return false;
2412     if (!isUndefOrEqual(BitI1, j))
2413       return false;
2414   }
2415   return true;
2416 }
2417
2418 bool X86::isUNPCKH_v_undef_Mask(ShuffleVectorSDNode *N) {
2419   SmallVector<int, 8> M;
2420   N->getMask(M);
2421   return ::isUNPCKH_v_undef_Mask(M, N->getValueType(0));
2422 }
2423
2424 /// isMOVLMask - Return true if the specified VECTOR_SHUFFLE operand
2425 /// specifies a shuffle of elements that is suitable for input to MOVSS,
2426 /// MOVSD, and MOVD, i.e. setting the lowest element.
2427 static bool isMOVLMask(const SmallVectorImpl<int> &Mask, MVT VT) {
2428   if (VT.getVectorElementType().getSizeInBits() < 32)
2429     return false;
2430
2431   int NumElts = VT.getVectorNumElements();
2432   
2433   if (!isUndefOrEqual(Mask[0], NumElts))
2434     return false;
2435   
2436   for (int i = 1; i < NumElts; ++i)
2437     if (!isUndefOrEqual(Mask[i], i))
2438       return false;
2439   
2440   return true;
2441 }
2442
2443 bool X86::isMOVLMask(ShuffleVectorSDNode *N) {
2444   SmallVector<int, 8> M;
2445   N->getMask(M);
2446   return ::isMOVLMask(M, N->getValueType(0));
2447 }
2448
2449 /// isCommutedMOVL - Returns true if the shuffle mask is except the reverse
2450 /// of what x86 movss want. X86 movs requires the lowest  element to be lowest
2451 /// element of vector 2 and the other elements to come from vector 1 in order.
2452 static bool isCommutedMOVLMask(const SmallVectorImpl<int> &Mask, MVT VT,
2453                                bool V2IsSplat = false, bool V2IsUndef = false) {
2454   int NumOps = VT.getVectorNumElements();
2455   if (NumOps != 2 && NumOps != 4 && NumOps != 8 && NumOps != 16)
2456     return false;
2457   
2458   if (!isUndefOrEqual(Mask[0], 0))
2459     return false;
2460   
2461   for (int i = 1; i < NumOps; ++i)
2462     if (!(isUndefOrEqual(Mask[i], i+NumOps) ||
2463           (V2IsUndef && isUndefOrInRange(Mask[i], NumOps, NumOps*2)) ||
2464           (V2IsSplat && isUndefOrEqual(Mask[i], NumOps))))
2465       return false;
2466   
2467   return true;
2468 }
2469
2470 static bool isCommutedMOVL(ShuffleVectorSDNode *N, bool V2IsSplat = false,
2471                            bool V2IsUndef = false) {
2472   SmallVector<int, 8> M;
2473   N->getMask(M);
2474   return isCommutedMOVLMask(M, N->getValueType(0), V2IsSplat, V2IsUndef);
2475 }
2476
2477 /// isMOVSHDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2478 /// specifies a shuffle of elements that is suitable for input to MOVSHDUP.
2479 bool X86::isMOVSHDUPMask(ShuffleVectorSDNode *N) {
2480   if (N->getValueType(0).getVectorNumElements() != 4)
2481     return false;
2482
2483   // Expect 1, 1, 3, 3
2484   for (unsigned i = 0; i < 2; ++i) {
2485     int Elt = N->getMaskElt(i);
2486     if (Elt >= 0 && Elt != 1)
2487       return false;
2488   }
2489
2490   bool HasHi = false;
2491   for (unsigned i = 2; i < 4; ++i) {
2492     int Elt = N->getMaskElt(i);
2493     if (Elt >= 0 && Elt != 3)
2494       return false;
2495     if (Elt == 3)
2496       HasHi = true;
2497   }
2498   // Don't use movshdup if it can be done with a shufps.
2499   // FIXME: verify that matching u, u, 3, 3 is what we want.
2500   return HasHi;
2501 }
2502
2503 /// isMOVSLDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2504 /// specifies a shuffle of elements that is suitable for input to MOVSLDUP.
2505 bool X86::isMOVSLDUPMask(ShuffleVectorSDNode *N) {
2506   if (N->getValueType(0).getVectorNumElements() != 4)
2507     return false;
2508
2509   // Expect 0, 0, 2, 2
2510   for (unsigned i = 0; i < 2; ++i)
2511     if (N->getMaskElt(i) > 0)
2512       return false;
2513
2514   bool HasHi = false;
2515   for (unsigned i = 2; i < 4; ++i) {
2516     int Elt = N->getMaskElt(i);
2517     if (Elt >= 0 && Elt != 2)
2518       return false;
2519     if (Elt == 2)
2520       HasHi = true;
2521   }
2522   // Don't use movsldup if it can be done with a shufps.
2523   return HasHi;
2524 }
2525
2526 /// isMOVDDUPMask - Return true if the specified VECTOR_SHUFFLE operand
2527 /// specifies a shuffle of elements that is suitable for input to MOVDDUP.
2528 bool X86::isMOVDDUPMask(ShuffleVectorSDNode *N) {
2529   int e = N->getValueType(0).getVectorNumElements() / 2;
2530   
2531   for (int i = 0; i < e; ++i)
2532     if (!isUndefOrEqual(N->getMaskElt(i), i))
2533       return false;
2534   for (int i = 0; i < e; ++i)
2535     if (!isUndefOrEqual(N->getMaskElt(e+i), i))
2536       return false;
2537   return true;
2538 }
2539
2540 /// getShuffleSHUFImmediate - Return the appropriate immediate to shuffle
2541 /// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUF* and SHUFP*
2542 /// instructions.
2543 unsigned X86::getShuffleSHUFImmediate(SDNode *N) {
2544   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
2545   int NumOperands = SVOp->getValueType(0).getVectorNumElements();
2546
2547   unsigned Shift = (NumOperands == 4) ? 2 : 1;
2548   unsigned Mask = 0;
2549   for (int i = 0; i < NumOperands; ++i) {
2550     int Val = SVOp->getMaskElt(NumOperands-i-1);
2551     if (Val < 0) Val = 0;
2552     if (Val >= NumOperands) Val -= NumOperands;
2553     Mask |= Val;
2554     if (i != NumOperands - 1)
2555       Mask <<= Shift;
2556   }
2557   return Mask;
2558 }
2559
2560 /// getShufflePSHUFHWImmediate - Return the appropriate immediate to shuffle
2561 /// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFHW
2562 /// instructions.
2563 unsigned X86::getShufflePSHUFHWImmediate(SDNode *N) {
2564   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
2565   unsigned Mask = 0;
2566   // 8 nodes, but we only care about the last 4.
2567   for (unsigned i = 7; i >= 4; --i) {
2568     int Val = SVOp->getMaskElt(i);
2569     if (Val >= 0)
2570       Mask |= (Val - 4);
2571     if (i != 4)
2572       Mask <<= 2;
2573   }
2574   return Mask;
2575 }
2576
2577 /// getShufflePSHUFLWImmediate - Return the appropriate immediate to shuffle
2578 /// the specified isShuffleMask VECTOR_SHUFFLE mask with PSHUFLW
2579 /// instructions.
2580 unsigned X86::getShufflePSHUFLWImmediate(SDNode *N) {
2581   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(N);
2582   unsigned Mask = 0;
2583   // 8 nodes, but we only care about the first 4.
2584   for (int i = 3; i >= 0; --i) {
2585     int Val = SVOp->getMaskElt(i);
2586     if (Val >= 0)
2587       Mask |= Val;
2588     if (i != 0)
2589       Mask <<= 2;
2590   }
2591   return Mask;
2592 }
2593
2594 /// CommuteVectorShuffle - Swap vector_shuffle operands as well as values in
2595 /// their permute mask.
2596 static SDValue CommuteVectorShuffle(ShuffleVectorSDNode *SVOp,
2597                                     SelectionDAG &DAG) {
2598   MVT VT = SVOp->getValueType(0);
2599   unsigned NumElems = VT.getVectorNumElements();
2600   SmallVector<int, 8> MaskVec;
2601   
2602   for (unsigned i = 0; i != NumElems; ++i) {
2603     int idx = SVOp->getMaskElt(i);
2604     if (idx < 0)
2605       MaskVec.push_back(idx);
2606     else if (idx < (int)NumElems)
2607       MaskVec.push_back(idx + NumElems);
2608     else
2609       MaskVec.push_back(idx - NumElems);
2610   }
2611   return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(1),
2612                               SVOp->getOperand(0), &MaskVec[0]);
2613 }
2614
2615 /// CommuteVectorShuffleMask - Change values in a shuffle permute mask assuming
2616 /// the two vector operands have swapped position.
2617 static void CommuteVectorShuffleMask(SmallVectorImpl<int> &Mask, MVT VT) {
2618   unsigned NumElems = VT.getVectorNumElements();
2619   for (unsigned i = 0; i != NumElems; ++i) {
2620     int idx = Mask[i];
2621     if (idx < 0)
2622       continue;
2623     else if (idx < (int)NumElems)
2624       Mask[i] = idx + NumElems;
2625     else
2626       Mask[i] = idx - NumElems;
2627   }
2628 }
2629
2630 /// ShouldXformToMOVHLPS - Return true if the node should be transformed to
2631 /// match movhlps. The lower half elements should come from upper half of
2632 /// V1 (and in order), and the upper half elements should come from the upper
2633 /// half of V2 (and in order).
2634 static bool ShouldXformToMOVHLPS(ShuffleVectorSDNode *Op) {
2635   if (Op->getValueType(0).getVectorNumElements() != 4)
2636     return false;
2637   for (unsigned i = 0, e = 2; i != e; ++i)
2638     if (!isUndefOrEqual(Op->getMaskElt(i), i+2))
2639       return false;
2640   for (unsigned i = 2; i != 4; ++i)
2641     if (!isUndefOrEqual(Op->getMaskElt(i), i+4))
2642       return false;
2643   return true;
2644 }
2645
2646 /// isScalarLoadToVector - Returns true if the node is a scalar load that
2647 /// is promoted to a vector. It also returns the LoadSDNode by reference if
2648 /// required.
2649 static bool isScalarLoadToVector(SDNode *N, LoadSDNode **LD = NULL) {
2650   if (N->getOpcode() != ISD::SCALAR_TO_VECTOR)
2651     return false;
2652   N = N->getOperand(0).getNode();
2653   if (!ISD::isNON_EXTLoad(N))
2654     return false;
2655   if (LD)
2656     *LD = cast<LoadSDNode>(N);
2657   return true;
2658 }
2659
2660 /// ShouldXformToMOVLP{S|D} - Return true if the node should be transformed to
2661 /// match movlp{s|d}. The lower half elements should come from lower half of
2662 /// V1 (and in order), and the upper half elements should come from the upper
2663 /// half of V2 (and in order). And since V1 will become the source of the
2664 /// MOVLP, it must be either a vector load or a scalar load to vector.
2665 static bool ShouldXformToMOVLP(SDNode *V1, SDNode *V2,
2666                                ShuffleVectorSDNode *Op) {
2667   if (!ISD::isNON_EXTLoad(V1) && !isScalarLoadToVector(V1))
2668     return false;
2669   // Is V2 is a vector load, don't do this transformation. We will try to use
2670   // load folding shufps op.
2671   if (ISD::isNON_EXTLoad(V2))
2672     return false;
2673
2674   unsigned NumElems = Op->getValueType(0).getVectorNumElements();
2675   
2676   if (NumElems != 2 && NumElems != 4)
2677     return false;
2678   for (unsigned i = 0, e = NumElems/2; i != e; ++i)
2679     if (!isUndefOrEqual(Op->getMaskElt(i), i))
2680       return false;
2681   for (unsigned i = NumElems/2; i != NumElems; ++i)
2682     if (!isUndefOrEqual(Op->getMaskElt(i), i+NumElems))
2683       return false;
2684   return true;
2685 }
2686
2687 /// isSplatVector - Returns true if N is a BUILD_VECTOR node whose elements are
2688 /// all the same.
2689 static bool isSplatVector(SDNode *N) {
2690   if (N->getOpcode() != ISD::BUILD_VECTOR)
2691     return false;
2692
2693   SDValue SplatValue = N->getOperand(0);
2694   for (unsigned i = 1, e = N->getNumOperands(); i != e; ++i)
2695     if (N->getOperand(i) != SplatValue)
2696       return false;
2697   return true;
2698 }
2699
2700 /// isZeroNode - Returns true if Elt is a constant zero or a floating point
2701 /// constant +0.0.
2702 static inline bool isZeroNode(SDValue Elt) {
2703   return ((isa<ConstantSDNode>(Elt) &&
2704            cast<ConstantSDNode>(Elt)->getZExtValue() == 0) ||
2705           (isa<ConstantFPSDNode>(Elt) &&
2706            cast<ConstantFPSDNode>(Elt)->getValueAPF().isPosZero()));
2707 }
2708
2709 /// isZeroShuffle - Returns true if N is a VECTOR_SHUFFLE that can be resolved
2710 /// to an zero vector. 
2711 /// FIXME: move to dag combiner / method on ShuffleVectorSDNode
2712 static bool isZeroShuffle(ShuffleVectorSDNode *N) {
2713   SDValue V1 = N->getOperand(0);
2714   SDValue V2 = N->getOperand(1);
2715   unsigned NumElems = N->getValueType(0).getVectorNumElements();
2716   for (unsigned i = 0; i != NumElems; ++i) {
2717     int Idx = N->getMaskElt(i);
2718     if (Idx >= (int)NumElems) {
2719       unsigned Opc = V2.getOpcode();
2720       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V2.getNode()))
2721         continue;
2722       if (Opc != ISD::BUILD_VECTOR || !isZeroNode(V2.getOperand(Idx-NumElems)))
2723         return false;
2724     } else if (Idx >= 0) {
2725       unsigned Opc = V1.getOpcode();
2726       if (Opc == ISD::UNDEF || ISD::isBuildVectorAllZeros(V1.getNode()))
2727         continue;
2728       if (Opc != ISD::BUILD_VECTOR || !isZeroNode(V1.getOperand(Idx)))
2729         return false;
2730     }
2731   }
2732   return true;
2733 }
2734
2735 /// getZeroVector - Returns a vector of specified type with all zero elements.
2736 ///
2737 static SDValue getZeroVector(MVT VT, bool HasSSE2, SelectionDAG &DAG,
2738                              DebugLoc dl) {
2739   assert(VT.isVector() && "Expected a vector type");
2740
2741   // Always build zero vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2742   // type.  This ensures they get CSE'd.
2743   SDValue Vec;
2744   if (VT.getSizeInBits() == 64) { // MMX
2745     SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
2746     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
2747   } else if (HasSSE2) {  // SSE2
2748     SDValue Cst = DAG.getTargetConstant(0, MVT::i32);
2749     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
2750   } else { // SSE1
2751     SDValue Cst = DAG.getTargetConstantFP(+0.0, MVT::f32);
2752     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4f32, Cst, Cst, Cst, Cst);
2753   }
2754   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
2755 }
2756
2757 /// getOnesVector - Returns a vector of specified type with all bits set.
2758 ///
2759 static SDValue getOnesVector(MVT VT, SelectionDAG &DAG, DebugLoc dl) {
2760   assert(VT.isVector() && "Expected a vector type");
2761
2762   // Always build ones vectors as <4 x i32> or <2 x i32> bitcasted to their dest
2763   // type.  This ensures they get CSE'd.
2764   SDValue Cst = DAG.getTargetConstant(~0U, MVT::i32);
2765   SDValue Vec;
2766   if (VT.getSizeInBits() == 64)  // MMX
2767     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v2i32, Cst, Cst);
2768   else                                              // SSE
2769     Vec = DAG.getNode(ISD::BUILD_VECTOR, dl, MVT::v4i32, Cst, Cst, Cst, Cst);
2770   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Vec);
2771 }
2772
2773
2774 /// NormalizeMask - V2 is a splat, modify the mask (if needed) so all elements
2775 /// that point to V2 points to its first element.
2776 static SDValue NormalizeMask(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
2777   MVT VT = SVOp->getValueType(0);
2778   unsigned NumElems = VT.getVectorNumElements();
2779   
2780   bool Changed = false;
2781   SmallVector<int, 8> MaskVec;
2782   SVOp->getMask(MaskVec);
2783   
2784   for (unsigned i = 0; i != NumElems; ++i) {
2785     if (MaskVec[i] > (int)NumElems) {
2786       MaskVec[i] = NumElems;
2787       Changed = true;
2788     }
2789   }
2790   if (Changed)
2791     return DAG.getVectorShuffle(VT, SVOp->getDebugLoc(), SVOp->getOperand(0),
2792                                 SVOp->getOperand(1), &MaskVec[0]);
2793   return SDValue(SVOp, 0);
2794 }
2795
2796 /// getMOVLMask - Returns a vector_shuffle mask for an movs{s|d}, movd
2797 /// operation of specified width.
2798 static SDValue getMOVL(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2799                        SDValue V2) {
2800   unsigned NumElems = VT.getVectorNumElements();
2801   SmallVector<int, 8> Mask;
2802   Mask.push_back(NumElems);
2803   for (unsigned i = 1; i != NumElems; ++i)
2804     Mask.push_back(i);
2805   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
2806 }
2807
2808 /// getUnpackl - Returns a vector_shuffle node for an unpackl operation.
2809 static SDValue getUnpackl(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2810                           SDValue V2) {
2811   unsigned NumElems = VT.getVectorNumElements();
2812   SmallVector<int, 8> Mask;
2813   for (unsigned i = 0, e = NumElems/2; i != e; ++i) {
2814     Mask.push_back(i);
2815     Mask.push_back(i + NumElems);
2816   }
2817   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
2818 }
2819
2820 /// getUnpackhMask - Returns a vector_shuffle node for an unpackh operation.
2821 static SDValue getUnpackh(SelectionDAG &DAG, DebugLoc dl, MVT VT, SDValue V1,
2822                           SDValue V2) {
2823   unsigned NumElems = VT.getVectorNumElements();
2824   unsigned Half = NumElems/2;
2825   SmallVector<int, 8> Mask;
2826   for (unsigned i = 0; i != Half; ++i) {
2827     Mask.push_back(i + Half);
2828     Mask.push_back(i + NumElems + Half);
2829   }
2830   return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask[0]);
2831 }
2832
2833 /// PromoteSplat - Promote a splat of v4f32, v8i16 or v16i8 to v4i32.
2834 static SDValue PromoteSplat(ShuffleVectorSDNode *SV, SelectionDAG &DAG, 
2835                             bool HasSSE2) {
2836   if (SV->getValueType(0).getVectorNumElements() <= 4)
2837     return SDValue(SV, 0);
2838   
2839   MVT PVT = MVT::v4f32;
2840   MVT VT = SV->getValueType(0);
2841   DebugLoc dl = SV->getDebugLoc();
2842   SDValue V1 = SV->getOperand(0);
2843   int NumElems = VT.getVectorNumElements();
2844   int EltNo = SV->getSplatIndex();
2845
2846   // unpack elements to the correct location
2847   while (NumElems > 4) {
2848     if (EltNo < NumElems/2) {
2849       V1 = getUnpackl(DAG, dl, VT, V1, V1);
2850     } else {
2851       V1 = getUnpackh(DAG, dl, VT, V1, V1);
2852       EltNo -= NumElems/2;
2853     }
2854     NumElems >>= 1;
2855   }
2856   
2857   // Perform the splat.
2858   int SplatMask[4] = { EltNo, EltNo, EltNo, EltNo };
2859   V1 = DAG.getNode(ISD::BIT_CONVERT, dl, PVT, V1);
2860   V1 = DAG.getVectorShuffle(PVT, dl, V1, DAG.getUNDEF(PVT), &SplatMask[0]);
2861   return DAG.getNode(ISD::BIT_CONVERT, dl, VT, V1);
2862 }
2863
2864 /// getShuffleVectorZeroOrUndef - Return a vector_shuffle of the specified
2865 /// vector of zero or undef vector.  This produces a shuffle where the low
2866 /// element of V2 is swizzled into the zero/undef vector, landing at element
2867 /// Idx.  This produces a shuffle mask like 4,1,2,3 (idx=0) or  0,1,2,4 (idx=3).
2868 static SDValue getShuffleVectorZeroOrUndef(SDValue V2, unsigned Idx,
2869                                              bool isZero, bool HasSSE2,
2870                                              SelectionDAG &DAG) {
2871   MVT VT = V2.getValueType();
2872   SDValue V1 = isZero
2873     ? getZeroVector(VT, HasSSE2, DAG, V2.getDebugLoc()) : DAG.getUNDEF(VT);
2874   unsigned NumElems = VT.getVectorNumElements();
2875   SmallVector<int, 16> MaskVec;
2876   for (unsigned i = 0; i != NumElems; ++i)
2877     // If this is the insertion idx, put the low elt of V2 here.
2878     MaskVec.push_back(i == Idx ? NumElems : i);
2879   return DAG.getVectorShuffle(VT, V2.getDebugLoc(), V1, V2, &MaskVec[0]);
2880 }
2881
2882 /// getNumOfConsecutiveZeros - Return the number of elements in a result of
2883 /// a shuffle that is zero.
2884 static
2885 unsigned getNumOfConsecutiveZeros(ShuffleVectorSDNode *SVOp, int NumElems,
2886                                   bool Low, SelectionDAG &DAG) {
2887   unsigned NumZeros = 0;
2888   for (int i = 0; i < NumElems; ++i) {
2889     unsigned Index = Low ? i : NumElems-i-1;
2890     int Idx = SVOp->getMaskElt(Index);
2891     if (Idx < 0) {
2892       ++NumZeros;
2893       continue;
2894     }
2895     SDValue Elt = DAG.getShuffleScalarElt(SVOp, Index);
2896     if (Elt.getNode() && isZeroNode(Elt))
2897       ++NumZeros;
2898     else
2899       break;
2900   }
2901   return NumZeros;
2902 }
2903
2904 /// isVectorShift - Returns true if the shuffle can be implemented as a
2905 /// logical left or right shift of a vector.
2906 /// FIXME: split into pslldqi, psrldqi, palignr variants.
2907 static bool isVectorShift(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG,
2908                           bool &isLeft, SDValue &ShVal, unsigned &ShAmt) {
2909   int NumElems = SVOp->getValueType(0).getVectorNumElements();
2910
2911   isLeft = true;
2912   unsigned NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, true, DAG);
2913   if (!NumZeros) {
2914     isLeft = false;
2915     NumZeros = getNumOfConsecutiveZeros(SVOp, NumElems, false, DAG);
2916     if (!NumZeros)
2917       return false;
2918   }
2919   bool SeenV1 = false;
2920   bool SeenV2 = false;
2921   for (int i = NumZeros; i < NumElems; ++i) {
2922     int Val = isLeft ? (i - NumZeros) : i;
2923     int Idx = SVOp->getMaskElt(isLeft ? i : (i - NumZeros));
2924     if (Idx < 0)
2925       continue;
2926     if (Idx < NumElems)
2927       SeenV1 = true;
2928     else {
2929       Idx -= NumElems;
2930       SeenV2 = true;
2931     }
2932     if (Idx != Val)
2933       return false;
2934   }
2935   if (SeenV1 && SeenV2)
2936     return false;
2937
2938   ShVal = SeenV1 ? SVOp->getOperand(0) : SVOp->getOperand(1);
2939   ShAmt = NumZeros;
2940   return true;
2941 }
2942
2943
2944 /// LowerBuildVectorv16i8 - Custom lower build_vector of v16i8.
2945 ///
2946 static SDValue LowerBuildVectorv16i8(SDValue Op, unsigned NonZeros,
2947                                        unsigned NumNonZero, unsigned NumZero,
2948                                        SelectionDAG &DAG, TargetLowering &TLI) {
2949   if (NumNonZero > 8)
2950     return SDValue();
2951
2952   DebugLoc dl = Op.getDebugLoc();
2953   SDValue V(0, 0);
2954   bool First = true;
2955   for (unsigned i = 0; i < 16; ++i) {
2956     bool ThisIsNonZero = (NonZeros & (1 << i)) != 0;
2957     if (ThisIsNonZero && First) {
2958       if (NumZero)
2959         V = getZeroVector(MVT::v8i16, true, DAG, dl);
2960       else
2961         V = DAG.getUNDEF(MVT::v8i16);
2962       First = false;
2963     }
2964
2965     if ((i & 1) != 0) {
2966       SDValue ThisElt(0, 0), LastElt(0, 0);
2967       bool LastIsNonZero = (NonZeros & (1 << (i-1))) != 0;
2968       if (LastIsNonZero) {
2969         LastElt = DAG.getNode(ISD::ZERO_EXTEND, dl,
2970                               MVT::i16, Op.getOperand(i-1));
2971       }
2972       if (ThisIsNonZero) {
2973         ThisElt = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i16, Op.getOperand(i));
2974         ThisElt = DAG.getNode(ISD::SHL, dl, MVT::i16,
2975                               ThisElt, DAG.getConstant(8, MVT::i8));
2976         if (LastIsNonZero)
2977           ThisElt = DAG.getNode(ISD::OR, dl, MVT::i16, ThisElt, LastElt);
2978       } else
2979         ThisElt = LastElt;
2980
2981       if (ThisElt.getNode())
2982         V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, V, ThisElt,
2983                         DAG.getIntPtrConstant(i/2));
2984     }
2985   }
2986
2987   return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V);
2988 }
2989
2990 /// LowerBuildVectorv8i16 - Custom lower build_vector of v8i16.
2991 ///
2992 static SDValue LowerBuildVectorv8i16(SDValue Op, unsigned NonZeros,
2993                                        unsigned NumNonZero, unsigned NumZero,
2994                                        SelectionDAG &DAG, TargetLowering &TLI) {
2995   if (NumNonZero > 4)
2996     return SDValue();
2997
2998   DebugLoc dl = Op.getDebugLoc();
2999   SDValue V(0, 0);
3000   bool First = true;
3001   for (unsigned i = 0; i < 8; ++i) {
3002     bool isNonZero = (NonZeros & (1 << i)) != 0;
3003     if (isNonZero) {
3004       if (First) {
3005         if (NumZero)
3006           V = getZeroVector(MVT::v8i16, true, DAG, dl);
3007         else
3008           V = DAG.getUNDEF(MVT::v8i16);
3009         First = false;
3010       }
3011       V = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl,
3012                       MVT::v8i16, V, Op.getOperand(i),
3013                       DAG.getIntPtrConstant(i));
3014     }
3015   }
3016
3017   return V;
3018 }
3019
3020 /// getVShift - Return a vector logical shift node.
3021 ///
3022 static SDValue getVShift(bool isLeft, MVT VT, SDValue SrcOp,
3023                          unsigned NumBits, SelectionDAG &DAG,
3024                          const TargetLowering &TLI, DebugLoc dl) {
3025   bool isMMX = VT.getSizeInBits() == 64;
3026   MVT ShVT = isMMX ? MVT::v1i64 : MVT::v2i64;
3027   unsigned Opc = isLeft ? X86ISD::VSHL : X86ISD::VSRL;
3028   SrcOp = DAG.getNode(ISD::BIT_CONVERT, dl, ShVT, SrcOp);
3029   return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3030                      DAG.getNode(Opc, dl, ShVT, SrcOp,
3031                              DAG.getConstant(NumBits, TLI.getShiftAmountTy())));
3032 }
3033
3034 SDValue
3035 X86TargetLowering::LowerBUILD_VECTOR(SDValue Op, SelectionDAG &DAG) {
3036   DebugLoc dl = Op.getDebugLoc();
3037   // All zero's are handled with pxor, all one's are handled with pcmpeqd.
3038   if (ISD::isBuildVectorAllZeros(Op.getNode())
3039       || ISD::isBuildVectorAllOnes(Op.getNode())) {
3040     // Canonicalize this to either <4 x i32> or <2 x i32> (SSE vs MMX) to
3041     // 1) ensure the zero vectors are CSE'd, and 2) ensure that i64 scalars are
3042     // eliminated on x86-32 hosts.
3043     if (Op.getValueType() == MVT::v4i32 || Op.getValueType() == MVT::v2i32)
3044       return Op;
3045
3046     if (ISD::isBuildVectorAllOnes(Op.getNode()))
3047       return getOnesVector(Op.getValueType(), DAG, dl);
3048     return getZeroVector(Op.getValueType(), Subtarget->hasSSE2(), DAG, dl);
3049   }
3050
3051   MVT VT = Op.getValueType();
3052   MVT EVT = VT.getVectorElementType();
3053   unsigned EVTBits = EVT.getSizeInBits();
3054
3055   unsigned NumElems = Op.getNumOperands();
3056   unsigned NumZero  = 0;
3057   unsigned NumNonZero = 0;
3058   unsigned NonZeros = 0;
3059   bool IsAllConstants = true;
3060   SmallSet<SDValue, 8> Values;
3061   for (unsigned i = 0; i < NumElems; ++i) {
3062     SDValue Elt = Op.getOperand(i);
3063     if (Elt.getOpcode() == ISD::UNDEF)
3064       continue;
3065     Values.insert(Elt);
3066     if (Elt.getOpcode() != ISD::Constant &&
3067         Elt.getOpcode() != ISD::ConstantFP)
3068       IsAllConstants = false;
3069     if (isZeroNode(Elt))
3070       NumZero++;
3071     else {
3072       NonZeros |= (1 << i);
3073       NumNonZero++;
3074     }
3075   }
3076
3077   if (NumNonZero == 0) {
3078     // All undef vector. Return an UNDEF.  All zero vectors were handled above.
3079     return DAG.getUNDEF(VT);
3080   }
3081
3082   // Special case for single non-zero, non-undef, element.
3083   if (NumNonZero == 1) {
3084     unsigned Idx = CountTrailingZeros_32(NonZeros);
3085     SDValue Item = Op.getOperand(Idx);
3086
3087     // If this is an insertion of an i64 value on x86-32, and if the top bits of
3088     // the value are obviously zero, truncate the value to i32 and do the
3089     // insertion that way.  Only do this if the value is non-constant or if the
3090     // value is a constant being inserted into element 0.  It is cheaper to do
3091     // a constant pool load than it is to do a movd + shuffle.
3092     if (EVT == MVT::i64 && !Subtarget->is64Bit() &&
3093         (!IsAllConstants || Idx == 0)) {
3094       if (DAG.MaskedValueIsZero(Item, APInt::getBitsSet(64, 32, 64))) {
3095         // Handle MMX and SSE both.
3096         MVT VecVT = VT == MVT::v2i64 ? MVT::v4i32 : MVT::v2i32;
3097         unsigned VecElts = VT == MVT::v2i64 ? 4 : 2;
3098
3099         // Truncate the value (which may itself be a constant) to i32, and
3100         // convert it to a vector with movd (S2V+shuffle to zero extend).
3101         Item = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Item);
3102         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecVT, Item);
3103         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3104                                            Subtarget->hasSSE2(), DAG);
3105
3106         // Now we have our 32-bit value zero extended in the low element of
3107         // a vector.  If Idx != 0, swizzle it into place.
3108         if (Idx != 0) {
3109           SmallVector<int, 4> Mask;
3110           Mask.push_back(Idx);
3111           for (unsigned i = 1; i != VecElts; ++i)
3112             Mask.push_back(i);
3113           Item = DAG.getVectorShuffle(VecVT, dl, Item,
3114                                       DAG.getUNDEF(Item.getValueType()), 
3115                                       &Mask[0]);
3116         }
3117         return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Item);
3118       }
3119     }
3120
3121     // If we have a constant or non-constant insertion into the low element of
3122     // a vector, we can do this with SCALAR_TO_VECTOR + shuffle of zero into
3123     // the rest of the elements.  This will be matched as movd/movq/movss/movsd
3124     // depending on what the source datatype is.
3125     if (Idx == 0) {
3126       if (NumZero == 0) {
3127         return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3128       } else if (EVT == MVT::i32 || EVT == MVT::f32 || EVT == MVT::f64 ||
3129           (EVT == MVT::i64 && Subtarget->is64Bit())) {
3130         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3131         // Turn it into a MOVL (i.e. movss, movsd, or movd) to a zero vector.
3132         return getShuffleVectorZeroOrUndef(Item, 0, true, Subtarget->hasSSE2(),
3133                                            DAG);
3134       } else if (EVT == MVT::i16 || EVT == MVT::i8) {
3135         Item = DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Item);
3136         MVT MiddleVT = VT.getSizeInBits() == 64 ? MVT::v2i32 : MVT::v4i32;
3137         Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MiddleVT, Item);
3138         Item = getShuffleVectorZeroOrUndef(Item, 0, true,
3139                                            Subtarget->hasSSE2(), DAG);
3140         return DAG.getNode(ISD::BIT_CONVERT, dl, VT, Item);
3141       }
3142     }
3143
3144     // Is it a vector logical left shift?
3145     if (NumElems == 2 && Idx == 1 &&
3146         isZeroNode(Op.getOperand(0)) && !isZeroNode(Op.getOperand(1))) {
3147       unsigned NumBits = VT.getSizeInBits();
3148       return getVShift(true, VT,
3149                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
3150                                    VT, Op.getOperand(1)),
3151                        NumBits/2, DAG, *this, dl);
3152     }
3153
3154     if (IsAllConstants) // Otherwise, it's better to do a constpool load.
3155       return SDValue();
3156
3157     // Otherwise, if this is a vector with i32 or f32 elements, and the element
3158     // is a non-constant being inserted into an element other than the low one,
3159     // we can't use a constant pool load.  Instead, use SCALAR_TO_VECTOR (aka
3160     // movd/movss) to move this into the low element, then shuffle it into
3161     // place.
3162     if (EVTBits == 32) {
3163       Item = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Item);
3164
3165       // Turn it into a shuffle of zero and zero-extended scalar to vector.
3166       Item = getShuffleVectorZeroOrUndef(Item, 0, NumZero > 0,
3167                                          Subtarget->hasSSE2(), DAG);
3168       SmallVector<int, 8> MaskVec;
3169       for (unsigned i = 0; i < NumElems; i++)
3170         MaskVec.push_back(i == Idx ? 0 : 1);
3171       return DAG.getVectorShuffle(VT, dl, Item, DAG.getUNDEF(VT), &MaskVec[0]);
3172     }
3173   }
3174
3175   // Splat is obviously ok. Let legalizer expand it to a shuffle.
3176   if (Values.size() == 1)
3177     return SDValue();
3178
3179   // A vector full of immediates; various special cases are already
3180   // handled, so this is best done with a single constant-pool load.
3181   if (IsAllConstants)
3182     return SDValue();
3183
3184   // Let legalizer expand 2-wide build_vectors.
3185   if (EVTBits == 64) {
3186     if (NumNonZero == 1) {
3187       // One half is zero or undef.
3188       unsigned Idx = CountTrailingZeros_32(NonZeros);
3189       SDValue V2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT,
3190                                  Op.getOperand(Idx));
3191       return getShuffleVectorZeroOrUndef(V2, Idx, true,
3192                                          Subtarget->hasSSE2(), DAG);
3193     }
3194     return SDValue();
3195   }
3196
3197   // If element VT is < 32 bits, convert it to inserts into a zero vector.
3198   if (EVTBits == 8 && NumElems == 16) {
3199     SDValue V = LowerBuildVectorv16i8(Op, NonZeros,NumNonZero,NumZero, DAG,
3200                                         *this);
3201     if (V.getNode()) return V;
3202   }
3203
3204   if (EVTBits == 16 && NumElems == 8) {
3205     SDValue V = LowerBuildVectorv8i16(Op, NonZeros,NumNonZero,NumZero, DAG,
3206                                         *this);
3207     if (V.getNode()) return V;
3208   }
3209
3210   // If element VT is == 32 bits, turn it into a number of shuffles.
3211   SmallVector<SDValue, 8> V;
3212   V.resize(NumElems);
3213   if (NumElems == 4 && NumZero > 0) {
3214     for (unsigned i = 0; i < 4; ++i) {
3215       bool isZero = !(NonZeros & (1 << i));
3216       if (isZero)
3217         V[i] = getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
3218       else
3219         V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
3220     }
3221
3222     for (unsigned i = 0; i < 2; ++i) {
3223       switch ((NonZeros & (0x3 << i*2)) >> (i*2)) {
3224         default: break;
3225         case 0:
3226           V[i] = V[i*2];  // Must be a zero vector.
3227           break;
3228         case 1:
3229           V[i] = getMOVL(DAG, dl, VT, V[i*2+1], V[i*2]);
3230           break;
3231         case 2:
3232           V[i] = getMOVL(DAG, dl, VT, V[i*2], V[i*2+1]);
3233           break;
3234         case 3:
3235           V[i] = getUnpackl(DAG, dl, VT, V[i*2], V[i*2+1]);
3236           break;
3237       }
3238     }
3239
3240     SmallVector<int, 8> MaskVec;
3241     bool Reverse = (NonZeros & 0x3) == 2;
3242     for (unsigned i = 0; i < 2; ++i)
3243       MaskVec.push_back(Reverse ? 1-i : i);
3244     Reverse = ((NonZeros & (0x3 << 2)) >> 2) == 2;
3245     for (unsigned i = 0; i < 2; ++i)
3246       MaskVec.push_back(Reverse ? 1-i+NumElems : i+NumElems);
3247     return DAG.getVectorShuffle(VT, dl, V[0], V[1], &MaskVec[0]);
3248   }
3249
3250   if (Values.size() > 2) {
3251     // If we have SSE 4.1, Expand into a number of inserts unless the number of
3252     // values to be inserted is equal to the number of elements, in which case
3253     // use the unpack code below in the hopes of matching the consecutive elts
3254     // load merge pattern for shuffles. 
3255     // FIXME: We could probably just check that here directly.
3256     if (Values.size() < NumElems && VT.getSizeInBits() == 128 && 
3257         getSubtarget()->hasSSE41()) {
3258       V[0] = DAG.getUNDEF(VT);
3259       for (unsigned i = 0; i < NumElems; ++i)
3260         if (Op.getOperand(i).getOpcode() != ISD::UNDEF)
3261           V[0] = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, V[0],
3262                              Op.getOperand(i), DAG.getIntPtrConstant(i));
3263       return V[0];
3264     }
3265     // Expand into a number of unpckl*.
3266     // e.g. for v4f32
3267     //   Step 1: unpcklps 0, 2 ==> X: <?, ?, 2, 0>
3268     //         : unpcklps 1, 3 ==> Y: <?, ?, 3, 1>
3269     //   Step 2: unpcklps X, Y ==>    <3, 2, 1, 0>
3270     for (unsigned i = 0; i < NumElems; ++i)
3271       V[i] = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Op.getOperand(i));
3272     NumElems >>= 1;
3273     while (NumElems != 0) {
3274       for (unsigned i = 0; i < NumElems; ++i)
3275         V[i] = getUnpackl(DAG, dl, VT, V[i], V[i + NumElems]);
3276       NumElems >>= 1;
3277     }
3278     return V[0];
3279   }
3280
3281   return SDValue();
3282 }
3283
3284 // v8i16 shuffles - Prefer shuffles in the following order:
3285 // 1. [all]   pshuflw, pshufhw, optional move
3286 // 2. [ssse3] 1 x pshufb
3287 // 3. [ssse3] 2 x pshufb + 1 x por
3288 // 4. [all]   mov + pshuflw + pshufhw + N x (pextrw + pinsrw)
3289 static
3290 SDValue LowerVECTOR_SHUFFLEv8i16(ShuffleVectorSDNode *SVOp,
3291                                  SelectionDAG &DAG, X86TargetLowering &TLI) {
3292   SDValue V1 = SVOp->getOperand(0);
3293   SDValue V2 = SVOp->getOperand(1);
3294   DebugLoc dl = SVOp->getDebugLoc();
3295   SmallVector<int, 8> MaskVals;
3296
3297   // Determine if more than 1 of the words in each of the low and high quadwords
3298   // of the result come from the same quadword of one of the two inputs.  Undef
3299   // mask values count as coming from any quadword, for better codegen.
3300   SmallVector<unsigned, 4> LoQuad(4);
3301   SmallVector<unsigned, 4> HiQuad(4);
3302   BitVector InputQuads(4);
3303   for (unsigned i = 0; i < 8; ++i) {
3304     SmallVectorImpl<unsigned> &Quad = i < 4 ? LoQuad : HiQuad;
3305     int EltIdx = SVOp->getMaskElt(i);
3306     MaskVals.push_back(EltIdx);
3307     if (EltIdx < 0) {
3308       ++Quad[0];
3309       ++Quad[1];
3310       ++Quad[2];
3311       ++Quad[3];
3312       continue;
3313     }
3314     ++Quad[EltIdx / 4];
3315     InputQuads.set(EltIdx / 4);
3316   }
3317
3318   int BestLoQuad = -1;
3319   unsigned MaxQuad = 1;
3320   for (unsigned i = 0; i < 4; ++i) {
3321     if (LoQuad[i] > MaxQuad) {
3322       BestLoQuad = i;
3323       MaxQuad = LoQuad[i];
3324     }
3325   }
3326
3327   int BestHiQuad = -1;
3328   MaxQuad = 1;
3329   for (unsigned i = 0; i < 4; ++i) {
3330     if (HiQuad[i] > MaxQuad) {
3331       BestHiQuad = i;
3332       MaxQuad = HiQuad[i];
3333     }
3334   }
3335
3336   // For SSSE3, If all 8 words of the result come from only 1 quadword of each
3337   // of the two input vectors, shuffle them into one input vector so only a 
3338   // single pshufb instruction is necessary. If There are more than 2 input
3339   // quads, disable the next transformation since it does not help SSSE3.
3340   bool V1Used = InputQuads[0] || InputQuads[1];
3341   bool V2Used = InputQuads[2] || InputQuads[3];
3342   if (TLI.getSubtarget()->hasSSSE3()) {
3343     if (InputQuads.count() == 2 && V1Used && V2Used) {
3344       BestLoQuad = InputQuads.find_first();
3345       BestHiQuad = InputQuads.find_next(BestLoQuad);
3346     }
3347     if (InputQuads.count() > 2) {
3348       BestLoQuad = -1;
3349       BestHiQuad = -1;
3350     }
3351   }
3352
3353   // If BestLoQuad or BestHiQuad are set, shuffle the quads together and update
3354   // the shuffle mask.  If a quad is scored as -1, that means that it contains
3355   // words from all 4 input quadwords.
3356   SDValue NewV;
3357   if (BestLoQuad >= 0 || BestHiQuad >= 0) {
3358     SmallVector<int, 8> MaskV;
3359     MaskV.push_back(BestLoQuad < 0 ? 0 : BestLoQuad);
3360     MaskV.push_back(BestHiQuad < 0 ? 1 : BestHiQuad);
3361     NewV = DAG.getVectorShuffle(MVT::v2i64, dl, 
3362                   DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V1),
3363                   DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, V2), &MaskV[0]);
3364     NewV = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, NewV);
3365
3366     // Rewrite the MaskVals and assign NewV to V1 if NewV now contains all the
3367     // source words for the shuffle, to aid later transformations.
3368     bool AllWordsInNewV = true;
3369     bool InOrder[2] = { true, true };
3370     for (unsigned i = 0; i != 8; ++i) {
3371       int idx = MaskVals[i];
3372       if (idx != (int)i)
3373         InOrder[i/4] = false;
3374       if (idx < 0 || (idx/4) == BestLoQuad || (idx/4) == BestHiQuad)
3375         continue;
3376       AllWordsInNewV = false;
3377       break;
3378     }
3379
3380     bool pshuflw = AllWordsInNewV, pshufhw = AllWordsInNewV;
3381     if (AllWordsInNewV) {
3382       for (int i = 0; i != 8; ++i) {
3383         int idx = MaskVals[i];
3384         if (idx < 0)
3385           continue;
3386         idx = MaskVals[i] = (idx / 4) == BestLoQuad ? (idx & 3) : (idx & 3) + 4; 
3387         if ((idx != i) && idx < 4)
3388           pshufhw = false;
3389         if ((idx != i) && idx > 3)
3390           pshuflw = false;
3391       }
3392       V1 = NewV;
3393       V2Used = false;
3394       BestLoQuad = 0;
3395       BestHiQuad = 1;
3396     }
3397
3398     // If we've eliminated the use of V2, and the new mask is a pshuflw or
3399     // pshufhw, that's as cheap as it gets.  Return the new shuffle.
3400     if ((pshufhw && InOrder[0]) || (pshuflw && InOrder[1])) {
3401       return DAG.getVectorShuffle(MVT::v8i16, dl, NewV, 
3402                                   DAG.getUNDEF(MVT::v8i16), &MaskVals[0]);
3403     }
3404   }
3405   
3406   // If we have SSSE3, and all words of the result are from 1 input vector,
3407   // case 2 is generated, otherwise case 3 is generated.  If no SSSE3
3408   // is present, fall back to case 4.
3409   if (TLI.getSubtarget()->hasSSSE3()) {
3410     SmallVector<SDValue,16> pshufbMask;
3411     
3412     // If we have elements from both input vectors, set the high bit of the
3413     // shuffle mask element to zero out elements that come from V2 in the V1 
3414     // mask, and elements that come from V1 in the V2 mask, so that the two
3415     // results can be OR'd together.
3416     bool TwoInputs = V1Used && V2Used;
3417     for (unsigned i = 0; i != 8; ++i) {
3418       int EltIdx = MaskVals[i] * 2;
3419       if (TwoInputs && (EltIdx >= 16)) {
3420         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3421         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3422         continue;
3423       }
3424       pshufbMask.push_back(DAG.getConstant(EltIdx,   MVT::i8));
3425       pshufbMask.push_back(DAG.getConstant(EltIdx+1, MVT::i8));
3426     }
3427     V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V1);
3428     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1, 
3429                      DAG.getNode(ISD::BUILD_VECTOR, dl,
3430                                  MVT::v16i8, &pshufbMask[0], 16));
3431     if (!TwoInputs)
3432       return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3433     
3434     // Calculate the shuffle mask for the second input, shuffle it, and
3435     // OR it with the first shuffled input.
3436     pshufbMask.clear();
3437     for (unsigned i = 0; i != 8; ++i) {
3438       int EltIdx = MaskVals[i] * 2;
3439       if (EltIdx < 16) {
3440         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3441         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3442         continue;
3443       }
3444       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3445       pshufbMask.push_back(DAG.getConstant(EltIdx - 15, MVT::i8));
3446     }
3447     V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, V2);
3448     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2, 
3449                      DAG.getNode(ISD::BUILD_VECTOR, dl,
3450                                  MVT::v16i8, &pshufbMask[0], 16));
3451     V1 = DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3452     return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3453   }
3454
3455   // If BestLoQuad >= 0, generate a pshuflw to put the low elements in order,
3456   // and update MaskVals with new element order.
3457   BitVector InOrder(8);
3458   if (BestLoQuad >= 0) {
3459     SmallVector<int, 8> MaskV;
3460     for (int i = 0; i != 4; ++i) {
3461       int idx = MaskVals[i];
3462       if (idx < 0) {
3463         MaskV.push_back(-1);
3464         InOrder.set(i);
3465       } else if ((idx / 4) == BestLoQuad) {
3466         MaskV.push_back(idx & 3);
3467         InOrder.set(i);
3468       } else {
3469         MaskV.push_back(-1);
3470       }
3471     }
3472     for (unsigned i = 4; i != 8; ++i)
3473       MaskV.push_back(i);
3474     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
3475                                 &MaskV[0]);
3476   }
3477   
3478   // If BestHi >= 0, generate a pshufhw to put the high elements in order,
3479   // and update MaskVals with the new element order.
3480   if (BestHiQuad >= 0) {
3481     SmallVector<int, 8> MaskV;
3482     for (unsigned i = 0; i != 4; ++i)
3483       MaskV.push_back(i);
3484     for (unsigned i = 4; i != 8; ++i) {
3485       int idx = MaskVals[i];
3486       if (idx < 0) {
3487         MaskV.push_back(-1);
3488         InOrder.set(i);
3489       } else if ((idx / 4) == BestHiQuad) {
3490         MaskV.push_back((idx & 3) + 4);
3491         InOrder.set(i);
3492       } else {
3493         MaskV.push_back(-1);
3494       }
3495     }
3496     NewV = DAG.getVectorShuffle(MVT::v8i16, dl, NewV, DAG.getUNDEF(MVT::v8i16),
3497                                 &MaskV[0]);
3498   }
3499   
3500   // In case BestHi & BestLo were both -1, which means each quadword has a word
3501   // from each of the four input quadwords, calculate the InOrder bitvector now
3502   // before falling through to the insert/extract cleanup.
3503   if (BestLoQuad == -1 && BestHiQuad == -1) {
3504     NewV = V1;
3505     for (int i = 0; i != 8; ++i)
3506       if (MaskVals[i] < 0 || MaskVals[i] == i)
3507         InOrder.set(i);
3508   }
3509   
3510   // The other elements are put in the right place using pextrw and pinsrw.
3511   for (unsigned i = 0; i != 8; ++i) {
3512     if (InOrder[i])
3513       continue;
3514     int EltIdx = MaskVals[i];
3515     if (EltIdx < 0)
3516       continue;
3517     SDValue ExtOp = (EltIdx < 8)
3518     ? DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V1,
3519                   DAG.getIntPtrConstant(EltIdx))
3520     : DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, V2,
3521                   DAG.getIntPtrConstant(EltIdx - 8));
3522     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, ExtOp,
3523                        DAG.getIntPtrConstant(i));
3524   }
3525   return NewV;
3526 }
3527
3528 // v16i8 shuffles - Prefer shuffles in the following order:
3529 // 1. [ssse3] 1 x pshufb
3530 // 2. [ssse3] 2 x pshufb + 1 x por
3531 // 3. [all]   v8i16 shuffle + N x pextrw + rotate + pinsrw
3532 static
3533 SDValue LowerVECTOR_SHUFFLEv16i8(ShuffleVectorSDNode *SVOp,
3534                                  SelectionDAG &DAG, X86TargetLowering &TLI) {
3535   SDValue V1 = SVOp->getOperand(0);
3536   SDValue V2 = SVOp->getOperand(1);
3537   DebugLoc dl = SVOp->getDebugLoc();
3538   SmallVector<int, 16> MaskVals;
3539   SVOp->getMask(MaskVals);
3540   
3541   // If we have SSSE3, case 1 is generated when all result bytes come from
3542   // one of  the inputs.  Otherwise, case 2 is generated.  If no SSSE3 is 
3543   // present, fall back to case 3.
3544   // FIXME: kill V2Only once shuffles are canonizalized by getNode.
3545   bool V1Only = true;
3546   bool V2Only = true;
3547   for (unsigned i = 0; i < 16; ++i) {
3548     int EltIdx = MaskVals[i];
3549     if (EltIdx < 0)
3550       continue;
3551     if (EltIdx < 16)
3552       V2Only = false;
3553     else
3554       V1Only = false;
3555   }
3556   
3557   // If SSSE3, use 1 pshufb instruction per vector with elements in the result.
3558   if (TLI.getSubtarget()->hasSSSE3()) {
3559     SmallVector<SDValue,16> pshufbMask;
3560     
3561     // If all result elements are from one input vector, then only translate
3562     // undef mask values to 0x80 (zero out result) in the pshufb mask. 
3563     //
3564     // Otherwise, we have elements from both input vectors, and must zero out
3565     // elements that come from V2 in the first mask, and V1 in the second mask
3566     // so that we can OR them together.
3567     bool TwoInputs = !(V1Only || V2Only);
3568     for (unsigned i = 0; i != 16; ++i) {
3569       int EltIdx = MaskVals[i];
3570       if (EltIdx < 0 || (TwoInputs && EltIdx >= 16)) {
3571         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3572         continue;
3573       }
3574       pshufbMask.push_back(DAG.getConstant(EltIdx, MVT::i8));
3575     }
3576     // If all the elements are from V2, assign it to V1 and return after
3577     // building the first pshufb.
3578     if (V2Only)
3579       V1 = V2;
3580     V1 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V1,
3581                      DAG.getNode(ISD::BUILD_VECTOR, dl,
3582                                  MVT::v16i8, &pshufbMask[0], 16));
3583     if (!TwoInputs)
3584       return V1;
3585     
3586     // Calculate the shuffle mask for the second input, shuffle it, and
3587     // OR it with the first shuffled input.
3588     pshufbMask.clear();
3589     for (unsigned i = 0; i != 16; ++i) {
3590       int EltIdx = MaskVals[i];
3591       if (EltIdx < 16) {
3592         pshufbMask.push_back(DAG.getConstant(0x80, MVT::i8));
3593         continue;
3594       }
3595       pshufbMask.push_back(DAG.getConstant(EltIdx - 16, MVT::i8));
3596     }
3597     V2 = DAG.getNode(X86ISD::PSHUFB, dl, MVT::v16i8, V2,
3598                      DAG.getNode(ISD::BUILD_VECTOR, dl,
3599                                  MVT::v16i8, &pshufbMask[0], 16));
3600     return DAG.getNode(ISD::OR, dl, MVT::v16i8, V1, V2);
3601   }
3602   
3603   // No SSSE3 - Calculate in place words and then fix all out of place words
3604   // With 0-16 extracts & inserts.  Worst case is 16 bytes out of order from
3605   // the 16 different words that comprise the two doublequadword input vectors.
3606   V1 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V1);
3607   V2 = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v8i16, V2);
3608   SDValue NewV = V2Only ? V2 : V1;
3609   for (int i = 0; i != 8; ++i) {
3610     int Elt0 = MaskVals[i*2];
3611     int Elt1 = MaskVals[i*2+1];
3612     
3613     // This word of the result is all undef, skip it.
3614     if (Elt0 < 0 && Elt1 < 0)
3615       continue;
3616     
3617     // This word of the result is already in the correct place, skip it.
3618     if (V1Only && (Elt0 == i*2) && (Elt1 == i*2+1))
3619       continue;
3620     if (V2Only && (Elt0 == i*2+16) && (Elt1 == i*2+17))
3621       continue;
3622     
3623     SDValue Elt0Src = Elt0 < 16 ? V1 : V2;
3624     SDValue Elt1Src = Elt1 < 16 ? V1 : V2;
3625     SDValue InsElt;
3626
3627     // If Elt0 and Elt1 are defined, are consecutive, and can be load
3628     // using a single extract together, load it and store it.
3629     if ((Elt0 >= 0) && ((Elt0 + 1) == Elt1) && ((Elt0 & 1) == 0)) {
3630       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3631                            DAG.getIntPtrConstant(Elt1 / 2));
3632       NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3633                         DAG.getIntPtrConstant(i));
3634       continue;
3635     }
3636
3637     // If Elt1 is defined, extract it from the appropriate source.  If the
3638     // source byte is not also odd, shift the extracted word left 8 bits
3639     // otherwise clear the bottom 8 bits if we need to do an or.
3640     if (Elt1 >= 0) {
3641       InsElt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16, Elt1Src,
3642                            DAG.getIntPtrConstant(Elt1 / 2));
3643       if ((Elt1 & 1) == 0)
3644         InsElt = DAG.getNode(ISD::SHL, dl, MVT::i16, InsElt,
3645                              DAG.getConstant(8, TLI.getShiftAmountTy()));
3646       else if (Elt0 >= 0)
3647         InsElt = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt,
3648                              DAG.getConstant(0xFF00, MVT::i16));
3649     }
3650     // If Elt0 is defined, extract it from the appropriate source.  If the
3651     // source byte is not also even, shift the extracted word right 8 bits. If
3652     // Elt1 was also defined, OR the extracted values together before
3653     // inserting them in the result.
3654     if (Elt0 >= 0) {
3655       SDValue InsElt0 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i16,
3656                                     Elt0Src, DAG.getIntPtrConstant(Elt0 / 2));
3657       if ((Elt0 & 1) != 0)
3658         InsElt0 = DAG.getNode(ISD::SRL, dl, MVT::i16, InsElt0,
3659                               DAG.getConstant(8, TLI.getShiftAmountTy()));
3660       else if (Elt1 >= 0)
3661         InsElt0 = DAG.getNode(ISD::AND, dl, MVT::i16, InsElt0,
3662                              DAG.getConstant(0x00FF, MVT::i16));
3663       InsElt = Elt1 >= 0 ? DAG.getNode(ISD::OR, dl, MVT::i16, InsElt, InsElt0)
3664                          : InsElt0;
3665     }
3666     NewV = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v8i16, NewV, InsElt,
3667                        DAG.getIntPtrConstant(i));
3668   }
3669   return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v16i8, NewV);
3670 }
3671
3672 /// RewriteAsNarrowerShuffle - Try rewriting v8i16 and v16i8 shuffles as 4 wide
3673 /// ones, or rewriting v4i32 / v2f32 as 2 wide ones if possible. This can be
3674 /// done when every pair / quad of shuffle mask elements point to elements in
3675 /// the right sequence. e.g.
3676 /// vector_shuffle <>, <>, < 3, 4, | 10, 11, | 0, 1, | 14, 15>
3677 static
3678 SDValue RewriteAsNarrowerShuffle(ShuffleVectorSDNode *SVOp,
3679                                  SelectionDAG &DAG,
3680                                  TargetLowering &TLI, DebugLoc dl) {
3681   MVT VT = SVOp->getValueType(0);
3682   SDValue V1 = SVOp->getOperand(0);
3683   SDValue V2 = SVOp->getOperand(1);
3684   unsigned NumElems = VT.getVectorNumElements();
3685   unsigned NewWidth = (NumElems == 4) ? 2 : 4;
3686   MVT MaskVT = MVT::getIntVectorWithNumElements(NewWidth);
3687   MVT MaskEltVT = MaskVT.getVectorElementType();
3688   MVT NewVT = MaskVT;
3689   switch (VT.getSimpleVT()) {
3690   default: assert(false && "Unexpected!");
3691   case MVT::v4f32: NewVT = MVT::v2f64; break;
3692   case MVT::v4i32: NewVT = MVT::v2i64; break;
3693   case MVT::v8i16: NewVT = MVT::v4i32; break;
3694   case MVT::v16i8: NewVT = MVT::v4i32; break;
3695   }
3696
3697   if (NewWidth == 2) {
3698     if (VT.isInteger())
3699       NewVT = MVT::v2i64;
3700     else
3701       NewVT = MVT::v2f64;
3702   }
3703   int Scale = NumElems / NewWidth;
3704   SmallVector<int, 8> MaskVec;
3705   for (unsigned i = 0; i < NumElems; i += Scale) {
3706     int StartIdx = -1;
3707     for (int j = 0; j < Scale; ++j) {
3708       int EltIdx = SVOp->getMaskElt(i+j);
3709       if (EltIdx < 0)
3710         continue;
3711       if (StartIdx == -1)
3712         StartIdx = EltIdx - (EltIdx % Scale);
3713       if (EltIdx != StartIdx + j)
3714         return SDValue();
3715     }
3716     if (StartIdx == -1)
3717       MaskVec.push_back(-1);
3718     else
3719       MaskVec.push_back(StartIdx / Scale);
3720   }
3721
3722   V1 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V1);
3723   V2 = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, V2);
3724   return DAG.getVectorShuffle(NewVT, dl, V1, V2, &MaskVec[0]);
3725 }
3726
3727 /// getVZextMovL - Return a zero-extending vector move low node.
3728 ///
3729 static SDValue getVZextMovL(MVT VT, MVT OpVT,
3730                             SDValue SrcOp, SelectionDAG &DAG,
3731                             const X86Subtarget *Subtarget, DebugLoc dl) {
3732   if (VT == MVT::v2f64 || VT == MVT::v4f32) {
3733     LoadSDNode *LD = NULL;
3734     if (!isScalarLoadToVector(SrcOp.getNode(), &LD))
3735       LD = dyn_cast<LoadSDNode>(SrcOp);
3736     if (!LD) {
3737       // movssrr and movsdrr do not clear top bits. Try to use movd, movq
3738       // instead.
3739       MVT EVT = (OpVT == MVT::v2f64) ? MVT::i64 : MVT::i32;
3740       if ((EVT != MVT::i64 || Subtarget->is64Bit()) &&
3741           SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR &&
3742           SrcOp.getOperand(0).getOpcode() == ISD::BIT_CONVERT &&
3743           SrcOp.getOperand(0).getOperand(0).getValueType() == EVT) {
3744         // PR2108
3745         OpVT = (OpVT == MVT::v2f64) ? MVT::v2i64 : MVT::v4i32;
3746         return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3747                            DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
3748                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
3749                                                    OpVT,
3750                                                    SrcOp.getOperand(0)
3751                                                           .getOperand(0))));
3752       }
3753     }
3754   }
3755
3756   return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3757                      DAG.getNode(X86ISD::VZEXT_MOVL, dl, OpVT,
3758                                  DAG.getNode(ISD::BIT_CONVERT, dl,
3759                                              OpVT, SrcOp)));
3760 }
3761
3762 /// LowerVECTOR_SHUFFLE_4wide - Handle all 4 wide cases with a number of
3763 /// shuffles.
3764 static SDValue
3765 LowerVECTOR_SHUFFLE_4wide(ShuffleVectorSDNode *SVOp, SelectionDAG &DAG) {
3766   SDValue V1 = SVOp->getOperand(0);
3767   SDValue V2 = SVOp->getOperand(1);
3768   DebugLoc dl = SVOp->getDebugLoc();
3769   MVT VT = SVOp->getValueType(0);
3770   
3771   SmallVector<std::pair<int, int>, 8> Locs;
3772   Locs.resize(4);
3773   SmallVector<int, 8> Mask1(4U, -1);
3774   SmallVector<int, 8> PermMask;
3775   SVOp->getMask(PermMask);
3776
3777   unsigned NumHi = 0;
3778   unsigned NumLo = 0;
3779   for (unsigned i = 0; i != 4; ++i) {
3780     int Idx = PermMask[i];
3781     if (Idx < 0) {
3782       Locs[i] = std::make_pair(-1, -1);
3783     } else {
3784       assert(Idx < 8 && "Invalid VECTOR_SHUFFLE index!");
3785       if (Idx < 4) {
3786         Locs[i] = std::make_pair(0, NumLo);
3787         Mask1[NumLo] = Idx;
3788         NumLo++;
3789       } else {
3790         Locs[i] = std::make_pair(1, NumHi);
3791         if (2+NumHi < 4)
3792           Mask1[2+NumHi] = Idx;
3793         NumHi++;
3794       }
3795     }
3796   }
3797
3798   if (NumLo <= 2 && NumHi <= 2) {
3799     // If no more than two elements come from either vector. This can be
3800     // implemented with two shuffles. First shuffle gather the elements.
3801     // The second shuffle, which takes the first shuffle as both of its
3802     // vector operands, put the elements into the right order.
3803     V1 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
3804
3805     SmallVector<int, 8> Mask2(4U, -1);
3806     
3807     for (unsigned i = 0; i != 4; ++i) {
3808       if (Locs[i].first == -1)
3809         continue;
3810       else {
3811         unsigned Idx = (i < 2) ? 0 : 4;
3812         Idx += Locs[i].first * 2 + Locs[i].second;
3813         Mask2[i] = Idx;
3814       }
3815     }
3816
3817     return DAG.getVectorShuffle(VT, dl, V1, V1, &Mask2[0]);
3818   } else if (NumLo == 3 || NumHi == 3) {
3819     // Otherwise, we must have three elements from one vector, call it X, and
3820     // one element from the other, call it Y.  First, use a shufps to build an
3821     // intermediate vector with the one element from Y and the element from X
3822     // that will be in the same half in the final destination (the indexes don't
3823     // matter). Then, use a shufps to build the final vector, taking the half
3824     // containing the element from Y from the intermediate, and the other half
3825     // from X.
3826     if (NumHi == 3) {
3827       // Normalize it so the 3 elements come from V1.
3828       CommuteVectorShuffleMask(PermMask, VT);
3829       std::swap(V1, V2);
3830     }
3831
3832     // Find the element from V2.
3833     unsigned HiIndex;
3834     for (HiIndex = 0; HiIndex < 3; ++HiIndex) {
3835       int Val = PermMask[HiIndex];
3836       if (Val < 0)
3837         continue;
3838       if (Val >= 4)
3839         break;
3840     }
3841
3842     Mask1[0] = PermMask[HiIndex];
3843     Mask1[1] = -1;
3844     Mask1[2] = PermMask[HiIndex^1];
3845     Mask1[3] = -1;
3846     V2 = DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
3847
3848     if (HiIndex >= 2) {
3849       Mask1[0] = PermMask[0];
3850       Mask1[1] = PermMask[1];
3851       Mask1[2] = HiIndex & 1 ? 6 : 4;
3852       Mask1[3] = HiIndex & 1 ? 4 : 6;
3853       return DAG.getVectorShuffle(VT, dl, V1, V2, &Mask1[0]);
3854     } else {
3855       Mask1[0] = HiIndex & 1 ? 2 : 0;
3856       Mask1[1] = HiIndex & 1 ? 0 : 2;
3857       Mask1[2] = PermMask[2];
3858       Mask1[3] = PermMask[3];
3859       if (Mask1[2] >= 0)
3860         Mask1[2] += 4;
3861       if (Mask1[3] >= 0)
3862         Mask1[3] += 4;
3863       return DAG.getVectorShuffle(VT, dl, V2, V1, &Mask1[0]);
3864     }
3865   }
3866
3867   // Break it into (shuffle shuffle_hi, shuffle_lo).
3868   Locs.clear();
3869   SmallVector<int,8> LoMask(4U, -1);
3870   SmallVector<int,8> HiMask(4U, -1);
3871
3872   SmallVector<int,8> *MaskPtr = &LoMask;
3873   unsigned MaskIdx = 0;
3874   unsigned LoIdx = 0;
3875   unsigned HiIdx = 2;
3876   for (unsigned i = 0; i != 4; ++i) {
3877     if (i == 2) {
3878       MaskPtr = &HiMask;
3879       MaskIdx = 1;
3880       LoIdx = 0;
3881       HiIdx = 2;
3882     }
3883     int Idx = PermMask[i];
3884     if (Idx < 0) {
3885       Locs[i] = std::make_pair(-1, -1);
3886     } else if (Idx < 4) {
3887       Locs[i] = std::make_pair(MaskIdx, LoIdx);
3888       (*MaskPtr)[LoIdx] = Idx;
3889       LoIdx++;
3890     } else {
3891       Locs[i] = std::make_pair(MaskIdx, HiIdx);
3892       (*MaskPtr)[HiIdx] = Idx;
3893       HiIdx++;
3894     }
3895   }
3896
3897   SDValue LoShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &LoMask[0]);
3898   SDValue HiShuffle = DAG.getVectorShuffle(VT, dl, V1, V2, &HiMask[0]);
3899   SmallVector<int, 8> MaskOps;
3900   for (unsigned i = 0; i != 4; ++i) {
3901     if (Locs[i].first == -1) {
3902       MaskOps.push_back(-1);
3903     } else {
3904       unsigned Idx = Locs[i].first * 4 + Locs[i].second;
3905       MaskOps.push_back(Idx);
3906     }
3907   }
3908   return DAG.getVectorShuffle(VT, dl, LoShuffle, HiShuffle, &MaskOps[0]);
3909 }
3910
3911 SDValue
3912 X86TargetLowering::LowerVECTOR_SHUFFLE(SDValue Op, SelectionDAG &DAG) {
3913   ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Op);
3914   SDValue V1 = Op.getOperand(0);
3915   SDValue V2 = Op.getOperand(1);
3916   MVT VT = Op.getValueType();
3917   DebugLoc dl = Op.getDebugLoc();
3918   unsigned NumElems = VT.getVectorNumElements();
3919   bool isMMX = VT.getSizeInBits() == 64;
3920   bool V1IsUndef = V1.getOpcode() == ISD::UNDEF;
3921   bool V2IsUndef = V2.getOpcode() == ISD::UNDEF;
3922   bool V1IsSplat = false;
3923   bool V2IsSplat = false;
3924
3925   if (isZeroShuffle(SVOp))
3926     return getZeroVector(VT, Subtarget->hasSSE2(), DAG, dl);
3927
3928   // Promote splats to v4f32.
3929   if (SVOp->isSplat()) {
3930     if (isMMX || NumElems < 4) 
3931       return Op;
3932     return PromoteSplat(SVOp, DAG, Subtarget->hasSSE2());
3933   }
3934
3935   // If the shuffle can be profitably rewritten as a narrower shuffle, then
3936   // do it!
3937   if (VT == MVT::v8i16 || VT == MVT::v16i8) {
3938     SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
3939     if (NewOp.getNode())
3940       return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
3941                          LowerVECTOR_SHUFFLE(NewOp, DAG));
3942   } else if ((VT == MVT::v4i32 || (VT == MVT::v4f32 && Subtarget->hasSSE2()))) {
3943     // FIXME: Figure out a cleaner way to do this.
3944     // Try to make use of movq to zero out the top part.
3945     if (ISD::isBuildVectorAllZeros(V2.getNode())) {
3946       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
3947       if (NewOp.getNode()) {
3948         if (isCommutedMOVL(cast<ShuffleVectorSDNode>(NewOp), true, false))
3949           return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(0),
3950                               DAG, Subtarget, dl);
3951       }
3952     } else if (ISD::isBuildVectorAllZeros(V1.getNode())) {
3953       SDValue NewOp = RewriteAsNarrowerShuffle(SVOp, DAG, *this, dl);
3954       if (NewOp.getNode() && X86::isMOVLMask(cast<ShuffleVectorSDNode>(NewOp)))
3955         return getVZextMovL(VT, NewOp.getValueType(), NewOp.getOperand(1),
3956                             DAG, Subtarget, dl);
3957     }
3958   }
3959   
3960   if (X86::isPSHUFDMask(SVOp))
3961     return Op;
3962   
3963   // Check if this can be converted into a logical shift.
3964   bool isLeft = false;
3965   unsigned ShAmt = 0;
3966   SDValue ShVal;
3967   bool isShift = getSubtarget()->hasSSE2() &&
3968   isVectorShift(SVOp, DAG, isLeft, ShVal, ShAmt);
3969   if (isShift && ShVal.hasOneUse()) {
3970     // If the shifted value has multiple uses, it may be cheaper to use
3971     // v_set0 + movlhps or movhlps, etc.
3972     MVT EVT = VT.getVectorElementType();
3973     ShAmt *= EVT.getSizeInBits();
3974     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
3975   }
3976   
3977   if (X86::isMOVLMask(SVOp)) {
3978     if (V1IsUndef)
3979       return V2;
3980     if (ISD::isBuildVectorAllZeros(V1.getNode()))
3981       return getVZextMovL(VT, VT, V2, DAG, Subtarget, dl);
3982     if (!isMMX)
3983       return Op;
3984   }
3985   
3986   // FIXME: fold these into legal mask.
3987   if (!isMMX && (X86::isMOVSHDUPMask(SVOp) ||
3988                  X86::isMOVSLDUPMask(SVOp) ||
3989                  X86::isMOVHLPSMask(SVOp) ||
3990                  X86::isMOVHPMask(SVOp) ||
3991                  X86::isMOVLPMask(SVOp)))
3992     return Op;
3993
3994   if (ShouldXformToMOVHLPS(SVOp) ||
3995       ShouldXformToMOVLP(V1.getNode(), V2.getNode(), SVOp))
3996     return CommuteVectorShuffle(SVOp, DAG);
3997
3998   if (isShift) {
3999     // No better options. Use a vshl / vsrl.
4000     MVT EVT = VT.getVectorElementType();
4001     ShAmt *= EVT.getSizeInBits();
4002     return getVShift(isLeft, VT, ShVal, ShAmt, DAG, *this, dl);
4003   }
4004   
4005   bool Commuted = false;
4006   // FIXME: This should also accept a bitcast of a splat?  Be careful, not
4007   // 1,1,1,1 -> v8i16 though.
4008   V1IsSplat = isSplatVector(V1.getNode());
4009   V2IsSplat = isSplatVector(V2.getNode());
4010
4011   // Canonicalize the splat or undef, if present, to be on the RHS.
4012   if ((V1IsSplat || V1IsUndef) && !(V2IsSplat || V2IsUndef)) {
4013     Op = CommuteVectorShuffle(SVOp, DAG);
4014     SVOp = cast<ShuffleVectorSDNode>(Op);
4015     V1 = SVOp->getOperand(0);
4016     V2 = SVOp->getOperand(1);
4017     std::swap(V1IsSplat, V2IsSplat);
4018     std::swap(V1IsUndef, V2IsUndef);
4019     Commuted = true;
4020   }
4021
4022   if (isCommutedMOVL(SVOp, V2IsSplat, V2IsUndef)) {
4023     // Shuffling low element of v1 into undef, just return v1.
4024     if (V2IsUndef) 
4025       return V1;
4026     // If V2 is a splat, the mask may be malformed such as <4,3,3,3>, which
4027     // the instruction selector will not match, so get a canonical MOVL with
4028     // swapped operands to undo the commute.
4029     return getMOVL(DAG, dl, VT, V2, V1);
4030   }
4031
4032   if (X86::isUNPCKL_v_undef_Mask(SVOp) ||
4033       X86::isUNPCKH_v_undef_Mask(SVOp) ||
4034       X86::isUNPCKLMask(SVOp) ||
4035       X86::isUNPCKHMask(SVOp))
4036     return Op;
4037
4038   if (V2IsSplat) {
4039     // Normalize mask so all entries that point to V2 points to its first
4040     // element then try to match unpck{h|l} again. If match, return a
4041     // new vector_shuffle with the corrected mask.
4042     SDValue NewMask = NormalizeMask(SVOp, DAG);
4043     ShuffleVectorSDNode *NSVOp = cast<ShuffleVectorSDNode>(NewMask);
4044     if (NSVOp != SVOp) {
4045       if (X86::isUNPCKLMask(NSVOp, true)) {
4046         return NewMask;
4047       } else if (X86::isUNPCKHMask(NSVOp, true)) {
4048         return NewMask;
4049       }
4050     }
4051   }
4052
4053   if (Commuted) {
4054     // Commute is back and try unpck* again.
4055     // FIXME: this seems wrong.
4056     SDValue NewOp = CommuteVectorShuffle(SVOp, DAG);
4057     ShuffleVectorSDNode *NewSVOp = cast<ShuffleVectorSDNode>(NewOp);
4058     if (X86::isUNPCKL_v_undef_Mask(NewSVOp) ||
4059         X86::isUNPCKH_v_undef_Mask(NewSVOp) ||
4060         X86::isUNPCKLMask(NewSVOp) ||
4061         X86::isUNPCKHMask(NewSVOp))
4062       return NewOp;
4063   }
4064
4065   // FIXME: for mmx, bitcast v2i32 to v4i16 for shuffle.
4066
4067   // Normalize the node to match x86 shuffle ops if needed
4068   if (!isMMX && V2.getOpcode() != ISD::UNDEF && isCommutedSHUFP(SVOp))
4069     return CommuteVectorShuffle(SVOp, DAG);
4070
4071   // Check for legal shuffle and return?
4072   SmallVector<int, 16> PermMask;
4073   SVOp->getMask(PermMask);
4074   if (isShuffleMaskLegal(PermMask, VT))
4075     return Op;
4076   
4077   // Handle v8i16 specifically since SSE can do byte extraction and insertion.
4078   if (VT == MVT::v8i16) {
4079     SDValue NewOp = LowerVECTOR_SHUFFLEv8i16(SVOp, DAG, *this);
4080     if (NewOp.getNode())
4081       return NewOp;
4082   }
4083
4084   if (VT == MVT::v16i8) {
4085     SDValue NewOp = LowerVECTOR_SHUFFLEv16i8(SVOp, DAG, *this);
4086     if (NewOp.getNode())
4087       return NewOp;
4088   }
4089   
4090   // Handle all 4 wide cases with a number of shuffles except for MMX.
4091   if (NumElems == 4 && !isMMX)
4092     return LowerVECTOR_SHUFFLE_4wide(SVOp, DAG);
4093
4094   return SDValue();
4095 }
4096
4097 SDValue
4098 X86TargetLowering::LowerEXTRACT_VECTOR_ELT_SSE4(SDValue Op,
4099                                                 SelectionDAG &DAG) {
4100   MVT VT = Op.getValueType();
4101   DebugLoc dl = Op.getDebugLoc();
4102   if (VT.getSizeInBits() == 8) {
4103     SDValue Extract = DAG.getNode(X86ISD::PEXTRB, dl, MVT::i32,
4104                                     Op.getOperand(0), Op.getOperand(1));
4105     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
4106                                     DAG.getValueType(VT));
4107     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
4108   } else if (VT.getSizeInBits() == 16) {
4109     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4110     // If Idx is 0, it's cheaper to do a move instead of a pextrw.
4111     if (Idx == 0)
4112       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4113                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4114                                      DAG.getNode(ISD::BIT_CONVERT, dl,
4115                                                  MVT::v4i32,
4116                                                  Op.getOperand(0)),
4117                                      Op.getOperand(1)));
4118     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, MVT::i32,
4119                                     Op.getOperand(0), Op.getOperand(1));
4120     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, MVT::i32, Extract,
4121                                     DAG.getValueType(VT));
4122     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
4123   } else if (VT == MVT::f32) {
4124     // EXTRACTPS outputs to a GPR32 register which will require a movd to copy
4125     // the result back to FR32 register. It's only worth matching if the
4126     // result has a single use which is a store or a bitcast to i32.  And in
4127     // the case of a store, it's not worth it if the index is a constant 0,
4128     // because a MOVSSmr can be used instead, which is smaller and faster.
4129     if (!Op.hasOneUse())
4130       return SDValue();
4131     SDNode *User = *Op.getNode()->use_begin();
4132     if ((User->getOpcode() != ISD::STORE ||
4133          (isa<ConstantSDNode>(Op.getOperand(1)) &&
4134           cast<ConstantSDNode>(Op.getOperand(1))->isNullValue())) &&
4135         (User->getOpcode() != ISD::BIT_CONVERT ||
4136          User->getValueType(0) != MVT::i32))
4137       return SDValue();
4138     SDValue Extract = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4139                                   DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4i32,
4140                                               Op.getOperand(0)),
4141                                               Op.getOperand(1));
4142     return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, Extract);
4143   } else if (VT == MVT::i32) {
4144     // ExtractPS works with constant index.
4145     if (isa<ConstantSDNode>(Op.getOperand(1)))
4146       return Op;
4147   }
4148   return SDValue();
4149 }
4150
4151
4152 SDValue
4153 X86TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
4154   if (!isa<ConstantSDNode>(Op.getOperand(1)))
4155     return SDValue();
4156
4157   if (Subtarget->hasSSE41()) {
4158     SDValue Res = LowerEXTRACT_VECTOR_ELT_SSE4(Op, DAG);
4159     if (Res.getNode())
4160       return Res;
4161   }
4162
4163   MVT VT = Op.getValueType();
4164   DebugLoc dl = Op.getDebugLoc();
4165   // TODO: handle v16i8.
4166   if (VT.getSizeInBits() == 16) {
4167     SDValue Vec = Op.getOperand(0);
4168     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4169     if (Idx == 0)
4170       return DAG.getNode(ISD::TRUNCATE, dl, MVT::i16,
4171                          DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::i32,
4172                                      DAG.getNode(ISD::BIT_CONVERT, dl,
4173                                                  MVT::v4i32, Vec),
4174                                      Op.getOperand(1)));
4175     // Transform it so it match pextrw which produces a 32-bit result.
4176     MVT EVT = (MVT::SimpleValueType)(VT.getSimpleVT()+1);
4177     SDValue Extract = DAG.getNode(X86ISD::PEXTRW, dl, EVT,
4178                                     Op.getOperand(0), Op.getOperand(1));
4179     SDValue Assert  = DAG.getNode(ISD::AssertZext, dl, EVT, Extract,
4180                                     DAG.getValueType(VT));
4181     return DAG.getNode(ISD::TRUNCATE, dl, VT, Assert);
4182   } else if (VT.getSizeInBits() == 32) {
4183     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4184     if (Idx == 0)
4185       return Op;
4186     
4187     // SHUFPS the element to the lowest double word, then movss.
4188     int Mask[4] = { Idx, -1, -1, -1 };
4189     MVT VVT = Op.getOperand(0).getValueType();
4190     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), 
4191                                        DAG.getUNDEF(VVT), Mask);
4192     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
4193                        DAG.getIntPtrConstant(0));
4194   } else if (VT.getSizeInBits() == 64) {
4195     // FIXME: .td only matches this for <2 x f64>, not <2 x i64> on 32b
4196     // FIXME: seems like this should be unnecessary if mov{h,l}pd were taught
4197     //        to match extract_elt for f64.
4198     unsigned Idx = cast<ConstantSDNode>(Op.getOperand(1))->getZExtValue();
4199     if (Idx == 0)
4200       return Op;
4201
4202     // UNPCKHPD the element to the lowest double word, then movsd.
4203     // Note if the lower 64 bits of the result of the UNPCKHPD is then stored
4204     // to a f64mem, the whole operation is folded into a single MOVHPDmr.
4205     int Mask[2] = { 1, -1 };
4206     MVT VVT = Op.getOperand(0).getValueType();
4207     SDValue Vec = DAG.getVectorShuffle(VVT, dl, Op.getOperand(0), 
4208                                        DAG.getUNDEF(VVT), Mask);
4209     return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, VT, Vec,
4210                        DAG.getIntPtrConstant(0));
4211   }
4212
4213   return SDValue();
4214 }
4215
4216 SDValue
4217 X86TargetLowering::LowerINSERT_VECTOR_ELT_SSE4(SDValue Op, SelectionDAG &DAG){
4218   MVT VT = Op.getValueType();
4219   MVT EVT = VT.getVectorElementType();
4220   DebugLoc dl = Op.getDebugLoc();
4221
4222   SDValue N0 = Op.getOperand(0);
4223   SDValue N1 = Op.getOperand(1);
4224   SDValue N2 = Op.getOperand(2);
4225
4226   if ((EVT.getSizeInBits() == 8 || EVT.getSizeInBits() == 16) &&
4227       isa<ConstantSDNode>(N2)) {
4228     unsigned Opc = (EVT.getSizeInBits() == 8) ? X86ISD::PINSRB
4229                                               : X86ISD::PINSRW;
4230     // Transform it so it match pinsr{b,w} which expects a GR32 as its second
4231     // argument.
4232     if (N1.getValueType() != MVT::i32)
4233       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
4234     if (N2.getValueType() != MVT::i32)
4235       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
4236     return DAG.getNode(Opc, dl, VT, N0, N1, N2);
4237   } else if (EVT == MVT::f32 && isa<ConstantSDNode>(N2)) {
4238     // Bits [7:6] of the constant are the source select.  This will always be
4239     //  zero here.  The DAG Combiner may combine an extract_elt index into these
4240     //  bits.  For example (insert (extract, 3), 2) could be matched by putting
4241     //  the '3' into bits [7:6] of X86ISD::INSERTPS.
4242     // Bits [5:4] of the constant are the destination select.  This is the
4243     //  value of the incoming immediate.
4244     // Bits [3:0] of the constant are the zero mask.  The DAG Combiner may
4245     //   combine either bitwise AND or insert of float 0.0 to set these bits.
4246     N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue() << 4);
4247     return DAG.getNode(X86ISD::INSERTPS, dl, VT, N0, N1, N2);
4248   } else if (EVT == MVT::i32) {
4249     // InsertPS works with constant index.
4250     if (isa<ConstantSDNode>(N2))
4251       return Op;
4252   }
4253   return SDValue();
4254 }
4255
4256 SDValue
4257 X86TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op, SelectionDAG &DAG) {
4258   MVT VT = Op.getValueType();
4259   MVT EVT = VT.getVectorElementType();
4260
4261   if (Subtarget->hasSSE41())
4262     return LowerINSERT_VECTOR_ELT_SSE4(Op, DAG);
4263
4264   if (EVT == MVT::i8)
4265     return SDValue();
4266
4267   DebugLoc dl = Op.getDebugLoc();
4268   SDValue N0 = Op.getOperand(0);
4269   SDValue N1 = Op.getOperand(1);
4270   SDValue N2 = Op.getOperand(2);
4271
4272   if (EVT.getSizeInBits() == 16 && isa<ConstantSDNode>(N2)) {
4273     // Transform it so it match pinsrw which expects a 16-bit value in a GR32
4274     // as its second argument.
4275     if (N1.getValueType() != MVT::i32)
4276       N1 = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, N1);
4277     if (N2.getValueType() != MVT::i32)
4278       N2 = DAG.getIntPtrConstant(cast<ConstantSDNode>(N2)->getZExtValue());
4279     return DAG.getNode(X86ISD::PINSRW, dl, VT, N0, N1, N2);
4280   }
4281   return SDValue();
4282 }
4283
4284 SDValue
4285 X86TargetLowering::LowerSCALAR_TO_VECTOR(SDValue Op, SelectionDAG &DAG) {
4286   DebugLoc dl = Op.getDebugLoc();
4287   if (Op.getValueType() == MVT::v2f32)
4288     return DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f32,
4289                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2i32,
4290                                    DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32,
4291                                                Op.getOperand(0))));
4292
4293   SDValue AnyExt = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, Op.getOperand(0));
4294   MVT VT = MVT::v2i32;
4295   switch (Op.getValueType().getSimpleVT()) {
4296   default: break;
4297   case MVT::v16i8:
4298   case MVT::v8i16:
4299     VT = MVT::v4i32;
4300     break;
4301   }
4302   return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(),
4303                      DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, AnyExt));
4304 }
4305
4306 // ConstantPool, JumpTable, GlobalAddress, and ExternalSymbol are lowered as
4307 // their target countpart wrapped in the X86ISD::Wrapper node. Suppose N is
4308 // one of the above mentioned nodes. It has to be wrapped because otherwise
4309 // Select(N) returns N. So the raw TargetGlobalAddress nodes, etc. can only
4310 // be used to form addressing mode. These wrapped nodes will be selected
4311 // into MOV32ri.
4312 SDValue
4313 X86TargetLowering::LowerConstantPool(SDValue Op, SelectionDAG &DAG) {
4314   ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(Op);
4315   
4316   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
4317   // global base reg.
4318   unsigned char OpFlag = 0;
4319   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
4320     if (Subtarget->isPICStyleStub())
4321       OpFlag = X86II::MO_PIC_BASE_OFFSET;
4322     else if (Subtarget->isPICStyleGOT())
4323       OpFlag = X86II::MO_GOTOFF;
4324   }
4325   
4326   SDValue Result = DAG.getTargetConstantPool(CP->getConstVal(), getPointerTy(),
4327                                              CP->getAlignment(),
4328                                              CP->getOffset(), OpFlag);
4329   DebugLoc DL = CP->getDebugLoc();
4330   Result = DAG.getNode(X86ISD::Wrapper, DL, getPointerTy(), Result);
4331   // With PIC, the address is actually $g + Offset.
4332   if (OpFlag) {
4333     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
4334                          DAG.getNode(X86ISD::GlobalBaseReg,
4335                                      DebugLoc::getUnknownLoc(), getPointerTy()),
4336                          Result);
4337   }
4338
4339   return Result;
4340 }
4341
4342 SDValue
4343 X86TargetLowering::LowerGlobalAddress(const GlobalValue *GV, DebugLoc dl,
4344                                       int64_t Offset,
4345                                       SelectionDAG &DAG) const {
4346   bool IsPic = getTargetMachine().getRelocationModel() == Reloc::PIC_;
4347   bool ExtraLoadRequired =
4348     Subtarget->GVRequiresExtraLoad(GV, getTargetMachine(), false);
4349
4350   // Create the TargetGlobalAddress node, folding in the constant
4351   // offset if it is legal.
4352   SDValue Result;
4353   if (!IsPic && !ExtraLoadRequired && isInt32(Offset)) {
4354     Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), Offset);
4355     Offset = 0;
4356   } else
4357     Result = DAG.getTargetGlobalAddress(GV, getPointerTy(), 0);
4358   Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
4359
4360   // With PIC, the address is actually $g + Offset.
4361   if (IsPic && !Subtarget->isPICStyleRIPRel()) {
4362     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4363                          DAG.getNode(X86ISD::GlobalBaseReg, dl, getPointerTy()),
4364                          Result);
4365   }
4366
4367   // For Darwin & Mingw32, external and weak symbols are indirect, so we want to
4368   // load the value at address GV, not the value of GV itself. This means that
4369   // the GlobalAddress must be in the base or index register of the address, not
4370   // the GV offset field. Platform check is inside GVRequiresExtraLoad() call
4371   // The same applies for external symbols during PIC codegen
4372   if (ExtraLoadRequired)
4373     Result = DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(), Result,
4374                          PseudoSourceValue::getGOT(), 0);
4375
4376   // If there was a non-zero offset that we didn't fold, create an explicit
4377   // addition for it.
4378   if (Offset != 0)
4379     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(), Result,
4380                          DAG.getConstant(Offset, getPointerTy()));
4381
4382   return Result;
4383 }
4384
4385 SDValue
4386 X86TargetLowering::LowerGlobalAddress(SDValue Op, SelectionDAG &DAG) {
4387   const GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
4388   int64_t Offset = cast<GlobalAddressSDNode>(Op)->getOffset();
4389   return LowerGlobalAddress(GV, Op.getDebugLoc(), Offset, DAG);
4390 }
4391
4392 static SDValue
4393 GetTLSADDR(SelectionDAG &DAG, SDValue Chain, GlobalAddressSDNode *GA,
4394            SDValue *InFlag, const MVT PtrVT, unsigned ReturnReg,
4395            unsigned char OperandFlags) {
4396   SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
4397   DebugLoc dl = GA->getDebugLoc();
4398   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(),
4399                                            GA->getValueType(0),
4400                                            GA->getOffset(),
4401                                            OperandFlags);
4402   if (InFlag) {
4403     SDValue Ops[] = { Chain,  TGA, *InFlag };
4404     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 3);
4405   } else {
4406     SDValue Ops[]  = { Chain, TGA };
4407     Chain = DAG.getNode(X86ISD::TLSADDR, dl, NodeTys, Ops, 2);
4408   }
4409   SDValue Flag = Chain.getValue(1);
4410   return DAG.getCopyFromReg(Chain, dl, ReturnReg, PtrVT, Flag);
4411 }
4412
4413 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 32 bit
4414 static SDValue
4415 LowerToTLSGeneralDynamicModel32(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4416                                 const MVT PtrVT) {
4417   SDValue InFlag;
4418   DebugLoc dl = GA->getDebugLoc();  // ? function entry point might be better
4419   SDValue Chain = DAG.getCopyToReg(DAG.getEntryNode(), dl, X86::EBX,
4420                                      DAG.getNode(X86ISD::GlobalBaseReg,
4421                                                  DebugLoc::getUnknownLoc(),
4422                                                  PtrVT), InFlag);
4423   InFlag = Chain.getValue(1);
4424
4425   return GetTLSADDR(DAG, Chain, GA, &InFlag, PtrVT, X86::EAX, X86II::MO_TLSGD);
4426 }
4427
4428 // Lower ISD::GlobalTLSAddress using the "general dynamic" model, 64 bit
4429 static SDValue
4430 LowerToTLSGeneralDynamicModel64(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4431                                 const MVT PtrVT) {
4432   return GetTLSADDR(DAG, DAG.getEntryNode(), GA, NULL, PtrVT,
4433                     X86::RAX, X86II::MO_TLSGD);
4434 }
4435
4436 // Lower ISD::GlobalTLSAddress using the "initial exec" (for no-pic) or
4437 // "local exec" model.
4438 static SDValue LowerToTLSExecModel(GlobalAddressSDNode *GA, SelectionDAG &DAG,
4439                                    const MVT PtrVT, TLSModel::Model model,
4440                                    bool is64Bit) {
4441   DebugLoc dl = GA->getDebugLoc();
4442   // Get the Thread Pointer
4443   SDValue Base = DAG.getNode(X86ISD::SegmentBaseAddress,
4444                              DebugLoc::getUnknownLoc(), PtrVT,
4445                              DAG.getRegister(is64Bit? X86::FS : X86::GS,
4446                                              MVT::i32));
4447
4448   SDValue ThreadPointer = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Base,
4449                                       NULL, 0);
4450
4451   unsigned char OperandFlags = 0;
4452   if (model == TLSModel::InitialExec) {
4453     OperandFlags = is64Bit ? X86II::MO_GOTTPOFF : X86II::MO_INDNTPOFF;
4454   } else {
4455     assert(model == TLSModel::LocalExec);
4456     OperandFlags = is64Bit ? X86II::MO_TPOFF : X86II::MO_NTPOFF;
4457   }
4458       
4459   
4460   // emit "addl x@ntpoff,%eax" (local exec) or "addl x@indntpoff,%eax" (initial
4461   // exec)
4462   SDValue TGA = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
4463                                            GA->getOffset(), OperandFlags);
4464   SDValue Offset = DAG.getNode(X86ISD::Wrapper, dl, PtrVT, TGA);
4465
4466   if (model == TLSModel::InitialExec)
4467     Offset = DAG.getLoad(PtrVT, dl, DAG.getEntryNode(), Offset,
4468                          PseudoSourceValue::getGOT(), 0);
4469
4470   // The address of the thread local variable is the add of the thread
4471   // pointer with the offset of the variable.
4472   return DAG.getNode(ISD::ADD, dl, PtrVT, ThreadPointer, Offset);
4473 }
4474
4475 SDValue
4476 X86TargetLowering::LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG) {
4477   // TODO: implement the "local dynamic" model
4478   // TODO: implement the "initial exec"model for pic executables
4479   assert(Subtarget->isTargetELF() &&
4480          "TLS not implemented for non-ELF targets");
4481   GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(Op);
4482   const GlobalValue *GV = GA->getGlobal();
4483   
4484   // If GV is an alias then use the aliasee for determining
4485   // thread-localness.
4486   if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV))
4487     GV = GA->resolveAliasedGlobal(false);
4488   
4489   TLSModel::Model model = getTLSModel(GV,
4490                                       getTargetMachine().getRelocationModel());
4491   
4492   switch (model) {
4493   case TLSModel::GeneralDynamic:
4494   case TLSModel::LocalDynamic: // not implemented
4495     if (Subtarget->is64Bit())
4496       return LowerToTLSGeneralDynamicModel64(GA, DAG, getPointerTy());
4497     return LowerToTLSGeneralDynamicModel32(GA, DAG, getPointerTy());
4498     
4499   case TLSModel::InitialExec:
4500   case TLSModel::LocalExec:
4501     return LowerToTLSExecModel(GA, DAG, getPointerTy(), model,
4502                                Subtarget->is64Bit());
4503   }
4504   
4505   assert(0 && "Unreachable");
4506   return SDValue();
4507 }
4508
4509 SDValue
4510 X86TargetLowering::LowerExternalSymbol(SDValue Op, SelectionDAG &DAG) {
4511   // FIXME there isn't really any debug info here
4512   DebugLoc dl = Op.getDebugLoc();
4513   const char *Sym = cast<ExternalSymbolSDNode>(Op)->getSymbol();
4514   SDValue Result = DAG.getTargetExternalSymbol(Sym, getPointerTy());
4515   Result = DAG.getNode(X86ISD::Wrapper, dl, getPointerTy(), Result);
4516   // With PIC, the address is actually $g + Offset.
4517   if (getTargetMachine().getRelocationModel() == Reloc::PIC_ &&
4518       !Subtarget->isPICStyleRIPRel()) {
4519     Result = DAG.getNode(ISD::ADD, dl, getPointerTy(),
4520                          DAG.getNode(X86ISD::GlobalBaseReg,
4521                                      DebugLoc::getUnknownLoc(),
4522                                      getPointerTy()),
4523                          Result);
4524   }
4525
4526   return Result;
4527 }
4528
4529 SDValue X86TargetLowering::LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
4530   JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
4531
4532   // In PIC mode (unless we're in RIPRel PIC mode) we add an offset to the
4533   // global base reg.
4534   unsigned char OpFlag = 0;
4535   if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
4536     if (Subtarget->isPICStyleStub())
4537       OpFlag = X86II::MO_PIC_BASE_OFFSET;
4538     else if (Subtarget->isPICStyleGOT())
4539       OpFlag = X86II::MO_GOTOFF;
4540   }
4541   
4542   SDValue Result = DAG.getTargetJumpTable(JT->getIndex(), getPointerTy(),
4543                                           OpFlag);
4544   DebugLoc DL = JT->getDebugLoc();
4545   Result = DAG.getNode(X86ISD::Wrapper, DL, getPointerTy(), Result);
4546
4547   // With PIC, the address is actually $g + Offset.
4548   if (OpFlag) {
4549     Result = DAG.getNode(ISD::ADD, DL, getPointerTy(),
4550                          DAG.getNode(X86ISD::GlobalBaseReg,
4551                                      DebugLoc::getUnknownLoc(), getPointerTy()),
4552                          Result);
4553   }
4554
4555   return Result;
4556 }
4557
4558 /// LowerShift - Lower SRA_PARTS and friends, which return two i32 values and
4559 /// take a 2 x i32 value to shift plus a shift amount.
4560 SDValue X86TargetLowering::LowerShift(SDValue Op, SelectionDAG &DAG) {
4561   assert(Op.getNumOperands() == 3 && "Not a double-shift!");
4562   MVT VT = Op.getValueType();
4563   unsigned VTBits = VT.getSizeInBits();
4564   DebugLoc dl = Op.getDebugLoc();
4565   bool isSRA = Op.getOpcode() == ISD::SRA_PARTS;
4566   SDValue ShOpLo = Op.getOperand(0);
4567   SDValue ShOpHi = Op.getOperand(1);
4568   SDValue ShAmt  = Op.getOperand(2);
4569   SDValue Tmp1 = isSRA ?
4570     DAG.getNode(ISD::SRA, dl, VT, ShOpHi,
4571                 DAG.getConstant(VTBits - 1, MVT::i8)) :
4572     DAG.getConstant(0, VT);
4573
4574   SDValue Tmp2, Tmp3;
4575   if (Op.getOpcode() == ISD::SHL_PARTS) {
4576     Tmp2 = DAG.getNode(X86ISD::SHLD, dl, VT, ShOpHi, ShOpLo, ShAmt);
4577     Tmp3 = DAG.getNode(ISD::SHL, dl, VT, ShOpLo, ShAmt);
4578   } else {
4579     Tmp2 = DAG.getNode(X86ISD::SHRD, dl, VT, ShOpLo, ShOpHi, ShAmt);
4580     Tmp3 = DAG.getNode(isSRA ? ISD::SRA : ISD::SRL, dl, VT, ShOpHi, ShAmt);
4581   }
4582
4583   SDValue AndNode = DAG.getNode(ISD::AND, dl, MVT::i8, ShAmt,
4584                                   DAG.getConstant(VTBits, MVT::i8));
4585   SDValue Cond = DAG.getNode(X86ISD::CMP, dl, VT,
4586                                AndNode, DAG.getConstant(0, MVT::i8));
4587
4588   SDValue Hi, Lo;
4589   SDValue CC = DAG.getConstant(X86::COND_NE, MVT::i8);
4590   SDValue Ops0[4] = { Tmp2, Tmp3, CC, Cond };
4591   SDValue Ops1[4] = { Tmp3, Tmp1, CC, Cond };
4592
4593   if (Op.getOpcode() == ISD::SHL_PARTS) {
4594     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4595     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
4596   } else {
4597     Lo = DAG.getNode(X86ISD::CMOV, dl, VT, Ops0, 4);
4598     Hi = DAG.getNode(X86ISD::CMOV, dl, VT, Ops1, 4);
4599   }
4600
4601   SDValue Ops[2] = { Lo, Hi };
4602   return DAG.getMergeValues(Ops, 2, dl);
4603 }
4604
4605 SDValue X86TargetLowering::LowerSINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
4606   MVT SrcVT = Op.getOperand(0).getValueType();
4607
4608   if (SrcVT.isVector()) {
4609     if (SrcVT == MVT::v2i32 && Op.getValueType() == MVT::v2f64) {
4610       return Op;
4611     }
4612     return SDValue();
4613   }
4614
4615   assert(SrcVT.getSimpleVT() <= MVT::i64 && SrcVT.getSimpleVT() >= MVT::i16 &&
4616          "Unknown SINT_TO_FP to lower!");
4617
4618   // These are really Legal; return the operand so the caller accepts it as
4619   // Legal.
4620   if (SrcVT == MVT::i32 && isScalarFPTypeInSSEReg(Op.getValueType()))
4621     return Op;
4622   if (SrcVT == MVT::i64 && isScalarFPTypeInSSEReg(Op.getValueType()) &&
4623       Subtarget->is64Bit()) {
4624     return Op;
4625   }
4626
4627   DebugLoc dl = Op.getDebugLoc();
4628   unsigned Size = SrcVT.getSizeInBits()/8;
4629   MachineFunction &MF = DAG.getMachineFunction();
4630   int SSFI = MF.getFrameInfo()->CreateStackObject(Size, Size);
4631   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4632   SDValue Chain = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
4633                                StackSlot,
4634                                PseudoSourceValue::getFixedStack(SSFI), 0);
4635   return BuildFILD(Op, SrcVT, Chain, StackSlot, DAG);
4636 }
4637
4638 SDValue X86TargetLowering::BuildFILD(SDValue Op, MVT SrcVT, SDValue Chain,
4639                                      SDValue StackSlot,
4640                                      SelectionDAG &DAG) {
4641   // Build the FILD
4642   DebugLoc dl = Op.getDebugLoc();
4643   SDVTList Tys;
4644   bool useSSE = isScalarFPTypeInSSEReg(Op.getValueType());
4645   if (useSSE)
4646     Tys = DAG.getVTList(MVT::f64, MVT::Other, MVT::Flag);
4647   else
4648     Tys = DAG.getVTList(Op.getValueType(), MVT::Other);
4649   SmallVector<SDValue, 8> Ops;
4650   Ops.push_back(Chain);
4651   Ops.push_back(StackSlot);
4652   Ops.push_back(DAG.getValueType(SrcVT));
4653   SDValue Result = DAG.getNode(useSSE ? X86ISD::FILD_FLAG : X86ISD::FILD, dl,
4654                                  Tys, &Ops[0], Ops.size());
4655
4656   if (useSSE) {
4657     Chain = Result.getValue(1);
4658     SDValue InFlag = Result.getValue(2);
4659
4660     // FIXME: Currently the FST is flagged to the FILD_FLAG. This
4661     // shouldn't be necessary except that RFP cannot be live across
4662     // multiple blocks. When stackifier is fixed, they can be uncoupled.
4663     MachineFunction &MF = DAG.getMachineFunction();
4664     int SSFI = MF.getFrameInfo()->CreateStackObject(8, 8);
4665     SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4666     Tys = DAG.getVTList(MVT::Other);
4667     SmallVector<SDValue, 8> Ops;
4668     Ops.push_back(Chain);
4669     Ops.push_back(Result);
4670     Ops.push_back(StackSlot);
4671     Ops.push_back(DAG.getValueType(Op.getValueType()));
4672     Ops.push_back(InFlag);
4673     Chain = DAG.getNode(X86ISD::FST, dl, Tys, &Ops[0], Ops.size());
4674     Result = DAG.getLoad(Op.getValueType(), dl, Chain, StackSlot,
4675                          PseudoSourceValue::getFixedStack(SSFI), 0);
4676   }
4677
4678   return Result;
4679 }
4680
4681 // LowerUINT_TO_FP_i64 - 64-bit unsigned integer to double expansion.
4682 SDValue X86TargetLowering::LowerUINT_TO_FP_i64(SDValue Op, SelectionDAG &DAG) {
4683   // This algorithm is not obvious. Here it is in C code, more or less:
4684   /*
4685     double uint64_to_double( uint32_t hi, uint32_t lo ) {
4686       static const __m128i exp = { 0x4330000045300000ULL, 0 };
4687       static const __m128d bias = { 0x1.0p84, 0x1.0p52 };
4688
4689       // Copy ints to xmm registers.
4690       __m128i xh = _mm_cvtsi32_si128( hi );
4691       __m128i xl = _mm_cvtsi32_si128( lo );
4692
4693       // Combine into low half of a single xmm register.
4694       __m128i x = _mm_unpacklo_epi32( xh, xl );
4695       __m128d d;
4696       double sd;
4697
4698       // Merge in appropriate exponents to give the integer bits the right
4699       // magnitude.
4700       x = _mm_unpacklo_epi32( x, exp );
4701
4702       // Subtract away the biases to deal with the IEEE-754 double precision
4703       // implicit 1.
4704       d = _mm_sub_pd( (__m128d) x, bias );
4705
4706       // All conversions up to here are exact. The correctly rounded result is
4707       // calculated using the current rounding mode using the following
4708       // horizontal add.
4709       d = _mm_add_sd( d, _mm_unpackhi_pd( d, d ) );
4710       _mm_store_sd( &sd, d );   // Because we are returning doubles in XMM, this
4711                                 // store doesn't really need to be here (except
4712                                 // maybe to zero the other double)
4713       return sd;
4714     }
4715   */
4716
4717   DebugLoc dl = Op.getDebugLoc();
4718
4719   // Build some magic constants.
4720   std::vector<Constant*> CV0;
4721   CV0.push_back(ConstantInt::get(APInt(32, 0x45300000)));
4722   CV0.push_back(ConstantInt::get(APInt(32, 0x43300000)));
4723   CV0.push_back(ConstantInt::get(APInt(32, 0)));
4724   CV0.push_back(ConstantInt::get(APInt(32, 0)));
4725   Constant *C0 = ConstantVector::get(CV0);
4726   SDValue CPIdx0 = DAG.getConstantPool(C0, getPointerTy(), 16);
4727
4728   std::vector<Constant*> CV1;
4729   CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4530000000000000ULL))));
4730   CV1.push_back(ConstantFP::get(APFloat(APInt(64, 0x4330000000000000ULL))));
4731   Constant *C1 = ConstantVector::get(CV1);
4732   SDValue CPIdx1 = DAG.getConstantPool(C1, getPointerTy(), 16);
4733
4734   SDValue XR1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4735                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4736                                         Op.getOperand(0),
4737                                         DAG.getIntPtrConstant(1)));
4738   SDValue XR2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4739                             DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4740                                         Op.getOperand(0),
4741                                         DAG.getIntPtrConstant(0)));
4742   SDValue Unpck1 = getUnpackl(DAG, dl, MVT::v4i32, XR1, XR2);
4743   SDValue CLod0 = DAG.getLoad(MVT::v4i32, dl, DAG.getEntryNode(), CPIdx0,
4744                               PseudoSourceValue::getConstantPool(), 0,
4745                               false, 16);
4746   SDValue Unpck2 = getUnpackl(DAG, dl, MVT::v4i32, Unpck1, CLod0);
4747   SDValue XR2F = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Unpck2);
4748   SDValue CLod1 = DAG.getLoad(MVT::v2f64, dl, CLod0.getValue(1), CPIdx1,
4749                               PseudoSourceValue::getConstantPool(), 0,
4750                               false, 16);
4751   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::v2f64, XR2F, CLod1);
4752
4753   // Add the halves; easiest way is to swap them into another reg first.
4754   int ShufMask[2] = { 1, -1 };
4755   SDValue Shuf = DAG.getVectorShuffle(MVT::v2f64, dl, Sub,
4756                                       DAG.getUNDEF(MVT::v2f64), ShufMask);
4757   SDValue Add = DAG.getNode(ISD::FADD, dl, MVT::v2f64, Shuf, Sub);
4758   return DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64, Add,
4759                      DAG.getIntPtrConstant(0));
4760 }
4761
4762 // LowerUINT_TO_FP_i32 - 32-bit unsigned integer to float expansion.
4763 SDValue X86TargetLowering::LowerUINT_TO_FP_i32(SDValue Op, SelectionDAG &DAG) {
4764   DebugLoc dl = Op.getDebugLoc();
4765   // FP constant to bias correct the final result.
4766   SDValue Bias = DAG.getConstantFP(BitsToDouble(0x4330000000000000ULL),
4767                                    MVT::f64);
4768
4769   // Load the 32-bit value into an XMM register.
4770   SDValue Load = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v4i32,
4771                              DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
4772                                          Op.getOperand(0),
4773                                          DAG.getIntPtrConstant(0)));
4774
4775   Load = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4776                      DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Load),
4777                      DAG.getIntPtrConstant(0));
4778
4779   // Or the load with the bias.
4780   SDValue Or = DAG.getNode(ISD::OR, dl, MVT::v2i64,
4781                            DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4782                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4783                                                    MVT::v2f64, Load)),
4784                            DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4785                                        DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
4786                                                    MVT::v2f64, Bias)));
4787   Or = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f64,
4788                    DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2f64, Or),
4789                    DAG.getIntPtrConstant(0));
4790
4791   // Subtract the bias.
4792   SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Or, Bias);
4793
4794   // Handle final rounding.
4795   MVT DestVT = Op.getValueType();
4796
4797   if (DestVT.bitsLT(MVT::f64)) {
4798     return DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
4799                        DAG.getIntPtrConstant(0));
4800   } else if (DestVT.bitsGT(MVT::f64)) {
4801     return DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
4802   }
4803
4804   // Handle final rounding.
4805   return Sub;
4806 }
4807
4808 SDValue X86TargetLowering::LowerUINT_TO_FP(SDValue Op, SelectionDAG &DAG) {
4809   SDValue N0 = Op.getOperand(0);
4810   DebugLoc dl = Op.getDebugLoc();
4811
4812   // Now not UINT_TO_FP is legal (it's marked custom), dag combiner won't
4813   // optimize it to a SINT_TO_FP when the sign bit is known zero. Perform
4814   // the optimization here.
4815   if (DAG.SignBitIsZero(N0))
4816     return DAG.getNode(ISD::SINT_TO_FP, dl, Op.getValueType(), N0);
4817
4818   MVT SrcVT = N0.getValueType();
4819   if (SrcVT == MVT::i64) {
4820     // We only handle SSE2 f64 target here; caller can expand the rest.
4821     if (Op.getValueType() != MVT::f64 || !X86ScalarSSEf64)
4822       return SDValue();
4823
4824     return LowerUINT_TO_FP_i64(Op, DAG);
4825   } else if (SrcVT == MVT::i32 && X86ScalarSSEf64) {
4826     return LowerUINT_TO_FP_i32(Op, DAG);
4827   }
4828
4829   assert(SrcVT == MVT::i32 && "Unknown UINT_TO_FP to lower!");
4830
4831   // Make a 64-bit buffer, and use it to build an FILD.
4832   SDValue StackSlot = DAG.CreateStackTemporary(MVT::i64);
4833   SDValue WordOff = DAG.getConstant(4, getPointerTy());
4834   SDValue OffsetSlot = DAG.getNode(ISD::ADD, dl,
4835                                    getPointerTy(), StackSlot, WordOff);
4836   SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl, Op.getOperand(0),
4837                                 StackSlot, NULL, 0);
4838   SDValue Store2 = DAG.getStore(Store1, dl, DAG.getConstant(0, MVT::i32),
4839                                 OffsetSlot, NULL, 0);
4840   return BuildFILD(Op, MVT::i64, Store2, StackSlot, DAG);
4841 }
4842
4843 std::pair<SDValue,SDValue> X86TargetLowering::
4844 FP_TO_INTHelper(SDValue Op, SelectionDAG &DAG, bool IsSigned) {
4845   DebugLoc dl = Op.getDebugLoc();
4846
4847   MVT DstTy = Op.getValueType();
4848
4849   if (!IsSigned) {
4850     assert(DstTy == MVT::i32 && "Unexpected FP_TO_UINT");
4851     DstTy = MVT::i64;
4852   }
4853
4854   assert(DstTy.getSimpleVT() <= MVT::i64 &&
4855          DstTy.getSimpleVT() >= MVT::i16 &&
4856          "Unknown FP_TO_SINT to lower!");
4857
4858   // These are really Legal.
4859   if (DstTy == MVT::i32 &&
4860       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
4861     return std::make_pair(SDValue(), SDValue());
4862   if (Subtarget->is64Bit() &&
4863       DstTy == MVT::i64 &&
4864       isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType()))
4865     return std::make_pair(SDValue(), SDValue());
4866
4867   // We lower FP->sint64 into FISTP64, followed by a load, all to a temporary
4868   // stack slot.
4869   MachineFunction &MF = DAG.getMachineFunction();
4870   unsigned MemSize = DstTy.getSizeInBits()/8;
4871   int SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4872   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4873   
4874   unsigned Opc;
4875   switch (DstTy.getSimpleVT()) {
4876   default: assert(0 && "Invalid FP_TO_SINT to lower!");
4877   case MVT::i16: Opc = X86ISD::FP_TO_INT16_IN_MEM; break;
4878   case MVT::i32: Opc = X86ISD::FP_TO_INT32_IN_MEM; break;
4879   case MVT::i64: Opc = X86ISD::FP_TO_INT64_IN_MEM; break;
4880   }
4881
4882   SDValue Chain = DAG.getEntryNode();
4883   SDValue Value = Op.getOperand(0);
4884   if (isScalarFPTypeInSSEReg(Op.getOperand(0).getValueType())) {
4885     assert(DstTy == MVT::i64 && "Invalid FP_TO_SINT to lower!");
4886     Chain = DAG.getStore(Chain, dl, Value, StackSlot,
4887                          PseudoSourceValue::getFixedStack(SSFI), 0);
4888     SDVTList Tys = DAG.getVTList(Op.getOperand(0).getValueType(), MVT::Other);
4889     SDValue Ops[] = {
4890       Chain, StackSlot, DAG.getValueType(Op.getOperand(0).getValueType())
4891     };
4892     Value = DAG.getNode(X86ISD::FLD, dl, Tys, Ops, 3);
4893     Chain = Value.getValue(1);
4894     SSFI = MF.getFrameInfo()->CreateStackObject(MemSize, MemSize);
4895     StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
4896   }
4897
4898   // Build the FP_TO_INT*_IN_MEM
4899   SDValue Ops[] = { Chain, Value, StackSlot };
4900   SDValue FIST = DAG.getNode(Opc, dl, MVT::Other, Ops, 3);
4901
4902   return std::make_pair(FIST, StackSlot);
4903 }
4904
4905 SDValue X86TargetLowering::LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG) {
4906   if (Op.getValueType().isVector()) {
4907     if (Op.getValueType() == MVT::v2i32 &&
4908         Op.getOperand(0).getValueType() == MVT::v2f64) {
4909       return Op;
4910     }
4911     return SDValue();
4912   }
4913
4914   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, true);
4915   SDValue FIST = Vals.first, StackSlot = Vals.second;
4916   // If FP_TO_INTHelper failed, the node is actually supposed to be Legal.
4917   if (FIST.getNode() == 0) return Op;
4918
4919   // Load the result.
4920   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
4921                      FIST, StackSlot, NULL, 0);
4922 }
4923
4924 SDValue X86TargetLowering::LowerFP_TO_UINT(SDValue Op, SelectionDAG &DAG) {
4925   std::pair<SDValue,SDValue> Vals = FP_TO_INTHelper(Op, DAG, false);
4926   SDValue FIST = Vals.first, StackSlot = Vals.second;
4927   assert(FIST.getNode() && "Unexpected failure");
4928
4929   // Load the result.
4930   return DAG.getLoad(Op.getValueType(), Op.getDebugLoc(),
4931                      FIST, StackSlot, NULL, 0);
4932 }
4933
4934 SDValue X86TargetLowering::LowerFABS(SDValue Op, SelectionDAG &DAG) {
4935   DebugLoc dl = Op.getDebugLoc();
4936   MVT VT = Op.getValueType();
4937   MVT EltVT = VT;
4938   if (VT.isVector())
4939     EltVT = VT.getVectorElementType();
4940   std::vector<Constant*> CV;
4941   if (EltVT == MVT::f64) {
4942     Constant *C = ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63))));
4943     CV.push_back(C);
4944     CV.push_back(C);
4945   } else {
4946     Constant *C = ConstantFP::get(APFloat(APInt(32, ~(1U << 31))));
4947     CV.push_back(C);
4948     CV.push_back(C);
4949     CV.push_back(C);
4950     CV.push_back(C);
4951   }
4952   Constant *C = ConstantVector::get(CV);
4953   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
4954   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
4955                                PseudoSourceValue::getConstantPool(), 0,
4956                                false, 16);
4957   return DAG.getNode(X86ISD::FAND, dl, VT, Op.getOperand(0), Mask);
4958 }
4959
4960 SDValue X86TargetLowering::LowerFNEG(SDValue Op, SelectionDAG &DAG) {
4961   DebugLoc dl = Op.getDebugLoc();
4962   MVT VT = Op.getValueType();
4963   MVT EltVT = VT;
4964   unsigned EltNum = 1;
4965   if (VT.isVector()) {
4966     EltVT = VT.getVectorElementType();
4967     EltNum = VT.getVectorNumElements();
4968   }
4969   std::vector<Constant*> CV;
4970   if (EltVT == MVT::f64) {
4971     Constant *C = ConstantFP::get(APFloat(APInt(64, 1ULL << 63)));
4972     CV.push_back(C);
4973     CV.push_back(C);
4974   } else {
4975     Constant *C = ConstantFP::get(APFloat(APInt(32, 1U << 31)));
4976     CV.push_back(C);
4977     CV.push_back(C);
4978     CV.push_back(C);
4979     CV.push_back(C);
4980   }
4981   Constant *C = ConstantVector::get(CV);
4982   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
4983   SDValue Mask = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
4984                                PseudoSourceValue::getConstantPool(), 0,
4985                                false, 16);
4986   if (VT.isVector()) {
4987     return DAG.getNode(ISD::BIT_CONVERT, dl, VT,
4988                        DAG.getNode(ISD::XOR, dl, MVT::v2i64,
4989                     DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64,
4990                                 Op.getOperand(0)),
4991                     DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v2i64, Mask)));
4992   } else {
4993     return DAG.getNode(X86ISD::FXOR, dl, VT, Op.getOperand(0), Mask);
4994   }
4995 }
4996
4997 SDValue X86TargetLowering::LowerFCOPYSIGN(SDValue Op, SelectionDAG &DAG) {
4998   SDValue Op0 = Op.getOperand(0);
4999   SDValue Op1 = Op.getOperand(1);
5000   DebugLoc dl = Op.getDebugLoc();
5001   MVT VT = Op.getValueType();
5002   MVT SrcVT = Op1.getValueType();
5003
5004   // If second operand is smaller, extend it first.
5005   if (SrcVT.bitsLT(VT)) {
5006     Op1 = DAG.getNode(ISD::FP_EXTEND, dl, VT, Op1);
5007     SrcVT = VT;
5008   }
5009   // And if it is bigger, shrink it first.
5010   if (SrcVT.bitsGT(VT)) {
5011     Op1 = DAG.getNode(ISD::FP_ROUND, dl, VT, Op1, DAG.getIntPtrConstant(1));
5012     SrcVT = VT;
5013   }
5014
5015   // At this point the operands and the result should have the same
5016   // type, and that won't be f80 since that is not custom lowered.
5017
5018   // First get the sign bit of second operand.
5019   std::vector<Constant*> CV;
5020   if (SrcVT == MVT::f64) {
5021     CV.push_back(ConstantFP::get(APFloat(APInt(64, 1ULL << 63))));
5022     CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
5023   } else {
5024     CV.push_back(ConstantFP::get(APFloat(APInt(32, 1U << 31))));
5025     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5026     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5027     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5028   }
5029   Constant *C = ConstantVector::get(CV);
5030   SDValue CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
5031   SDValue Mask1 = DAG.getLoad(SrcVT, dl, DAG.getEntryNode(), CPIdx,
5032                                 PseudoSourceValue::getConstantPool(), 0,
5033                                 false, 16);
5034   SDValue SignBit = DAG.getNode(X86ISD::FAND, dl, SrcVT, Op1, Mask1);
5035
5036   // Shift sign bit right or left if the two operands have different types.
5037   if (SrcVT.bitsGT(VT)) {
5038     // Op0 is MVT::f32, Op1 is MVT::f64.
5039     SignBit = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, MVT::v2f64, SignBit);
5040     SignBit = DAG.getNode(X86ISD::FSRL, dl, MVT::v2f64, SignBit,
5041                           DAG.getConstant(32, MVT::i32));
5042     SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::v4f32, SignBit);
5043     SignBit = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, MVT::f32, SignBit,
5044                           DAG.getIntPtrConstant(0));
5045   }
5046
5047   // Clear first operand sign bit.
5048   CV.clear();
5049   if (VT == MVT::f64) {
5050     CV.push_back(ConstantFP::get(APFloat(APInt(64, ~(1ULL << 63)))));
5051     CV.push_back(ConstantFP::get(APFloat(APInt(64, 0))));
5052   } else {
5053     CV.push_back(ConstantFP::get(APFloat(APInt(32, ~(1U << 31)))));
5054     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5055     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5056     CV.push_back(ConstantFP::get(APFloat(APInt(32, 0))));
5057   }
5058   C = ConstantVector::get(CV);
5059   CPIdx = DAG.getConstantPool(C, getPointerTy(), 16);
5060   SDValue Mask2 = DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
5061                                 PseudoSourceValue::getConstantPool(), 0,
5062                                 false, 16);
5063   SDValue Val = DAG.getNode(X86ISD::FAND, dl, VT, Op0, Mask2);
5064
5065   // Or the value with the sign bit.
5066   return DAG.getNode(X86ISD::FOR, dl, VT, Val, SignBit);
5067 }
5068
5069 /// Emit nodes that will be selected as "test Op0,Op0", or something
5070 /// equivalent.
5071 SDValue X86TargetLowering::EmitTest(SDValue Op, unsigned X86CC,
5072                                     SelectionDAG &DAG) {
5073   DebugLoc dl = Op.getDebugLoc();
5074
5075   // CF and OF aren't always set the way we want. Determine which
5076   // of these we need.
5077   bool NeedCF = false;
5078   bool NeedOF = false;
5079   switch (X86CC) {
5080   case X86::COND_A: case X86::COND_AE:
5081   case X86::COND_B: case X86::COND_BE:
5082     NeedCF = true;
5083     break;
5084   case X86::COND_G: case X86::COND_GE:
5085   case X86::COND_L: case X86::COND_LE:
5086   case X86::COND_O: case X86::COND_NO:
5087     NeedOF = true;
5088     break;
5089   default: break;
5090   }
5091
5092   // See if we can use the EFLAGS value from the operand instead of
5093   // doing a separate TEST. TEST always sets OF and CF to 0, so unless
5094   // we prove that the arithmetic won't overflow, we can't use OF or CF.
5095   if (Op.getResNo() == 0 && !NeedOF && !NeedCF) {
5096     unsigned Opcode = 0;
5097     unsigned NumOperands = 0;
5098     switch (Op.getNode()->getOpcode()) {
5099     case ISD::ADD:
5100       // Due to an isel shortcoming, be conservative if this add is likely to
5101       // be selected as part of a load-modify-store instruction. When the root
5102       // node in a match is a store, isel doesn't know how to remap non-chain
5103       // non-flag uses of other nodes in the match, such as the ADD in this
5104       // case. This leads to the ADD being left around and reselected, with
5105       // the result being two adds in the output.
5106       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5107            UE = Op.getNode()->use_end(); UI != UE; ++UI)
5108         if (UI->getOpcode() == ISD::STORE)
5109           goto default_case;
5110       if (ConstantSDNode *C =
5111             dyn_cast<ConstantSDNode>(Op.getNode()->getOperand(1))) {
5112         // An add of one will be selected as an INC.
5113         if (C->getAPIntValue() == 1) {
5114           Opcode = X86ISD::INC;
5115           NumOperands = 1;
5116           break;
5117         }
5118         // An add of negative one (subtract of one) will be selected as a DEC.
5119         if (C->getAPIntValue().isAllOnesValue()) {
5120           Opcode = X86ISD::DEC;
5121           NumOperands = 1;
5122           break;
5123         }
5124       }
5125       // Otherwise use a regular EFLAGS-setting add.
5126       Opcode = X86ISD::ADD;
5127       NumOperands = 2;
5128       break;
5129     case ISD::SUB:
5130       // Due to the ISEL shortcoming noted above, be conservative if this sub is
5131       // likely to be selected as part of a load-modify-store instruction.
5132       for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
5133            UE = Op.getNode()->use_end(); UI != UE; ++UI)
5134         if (UI->getOpcode() == ISD::STORE)
5135           goto default_case;
5136       // Otherwise use a regular EFLAGS-setting sub.
5137       Opcode = X86ISD::SUB;
5138       NumOperands = 2;
5139       break;
5140     case X86ISD::ADD:
5141     case X86ISD::SUB:
5142     case X86ISD::INC:
5143     case X86ISD::DEC:
5144       return SDValue(Op.getNode(), 1);
5145     default:
5146     default_case:
5147       break;
5148     }
5149     if (Opcode != 0) {
5150       SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::i32);
5151       SmallVector<SDValue, 4> Ops;
5152       for (unsigned i = 0; i != NumOperands; ++i)
5153         Ops.push_back(Op.getOperand(i));
5154       SDValue New = DAG.getNode(Opcode, dl, VTs, &Ops[0], NumOperands);
5155       DAG.ReplaceAllUsesWith(Op, New);
5156       return SDValue(New.getNode(), 1);
5157     }
5158   }
5159
5160   // Otherwise just emit a CMP with 0, which is the TEST pattern.
5161   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op,
5162                      DAG.getConstant(0, Op.getValueType()));
5163 }
5164
5165 /// Emit nodes that will be selected as "cmp Op0,Op1", or something
5166 /// equivalent.
5167 SDValue X86TargetLowering::EmitCmp(SDValue Op0, SDValue Op1, unsigned X86CC,
5168                                    SelectionDAG &DAG) {
5169   if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op1))
5170     if (C->getAPIntValue() == 0)
5171       return EmitTest(Op0, X86CC, DAG);
5172
5173   DebugLoc dl = Op0.getDebugLoc();
5174   return DAG.getNode(X86ISD::CMP, dl, MVT::i32, Op0, Op1);
5175 }
5176
5177 SDValue X86TargetLowering::LowerSETCC(SDValue Op, SelectionDAG &DAG) {
5178   assert(Op.getValueType() == MVT::i8 && "SetCC type must be 8-bit integer");
5179   SDValue Op0 = Op.getOperand(0);
5180   SDValue Op1 = Op.getOperand(1);
5181   DebugLoc dl = Op.getDebugLoc();
5182   ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
5183
5184   // Lower (X & (1 << N)) == 0 to BT(X, N).
5185   // Lower ((X >>u N) & 1) != 0 to BT(X, N).
5186   // Lower ((X >>s N) & 1) != 0 to BT(X, N).
5187   if (Op0.getOpcode() == ISD::AND &&
5188       Op0.hasOneUse() &&
5189       Op1.getOpcode() == ISD::Constant &&
5190       cast<ConstantSDNode>(Op1)->getZExtValue() == 0 &&
5191       (CC == ISD::SETEQ || CC == ISD::SETNE)) {
5192     SDValue LHS, RHS;
5193     if (Op0.getOperand(1).getOpcode() == ISD::SHL) {
5194       if (ConstantSDNode *Op010C =
5195             dyn_cast<ConstantSDNode>(Op0.getOperand(1).getOperand(0)))
5196         if (Op010C->getZExtValue() == 1) {
5197           LHS = Op0.getOperand(0);
5198           RHS = Op0.getOperand(1).getOperand(1);
5199         }
5200     } else if (Op0.getOperand(0).getOpcode() == ISD::SHL) {
5201       if (ConstantSDNode *Op000C =
5202             dyn_cast<ConstantSDNode>(Op0.getOperand(0).getOperand(0)))
5203         if (Op000C->getZExtValue() == 1) {
5204           LHS = Op0.getOperand(1);
5205           RHS = Op0.getOperand(0).getOperand(1);
5206         }
5207     } else if (Op0.getOperand(1).getOpcode() == ISD::Constant) {
5208       ConstantSDNode *AndRHS = cast<ConstantSDNode>(Op0.getOperand(1));
5209       SDValue AndLHS = Op0.getOperand(0);
5210       if (AndRHS->getZExtValue() == 1 && AndLHS.getOpcode() == ISD::SRL) {
5211         LHS = AndLHS.getOperand(0);
5212         RHS = AndLHS.getOperand(1);
5213       }
5214     }
5215
5216     if (LHS.getNode()) {
5217       // If LHS is i8, promote it to i16 with any_extend.  There is no i8 BT
5218       // instruction.  Since the shift amount is in-range-or-undefined, we know
5219       // that doing a bittest on the i16 value is ok.  We extend to i32 because
5220       // the encoding for the i16 version is larger than the i32 version.
5221       if (LHS.getValueType() == MVT::i8)
5222         LHS = DAG.getNode(ISD::ANY_EXTEND, dl, MVT::i32, LHS);
5223
5224       // If the operand types disagree, extend the shift amount to match.  Since
5225       // BT ignores high bits (like shifts) we can use anyextend.
5226       if (LHS.getValueType() != RHS.getValueType())
5227         RHS = DAG.getNode(ISD::ANY_EXTEND, dl, LHS.getValueType(), RHS);
5228
5229       SDValue BT = DAG.getNode(X86ISD::BT, dl, MVT::i32, LHS, RHS);
5230       unsigned Cond = CC == ISD::SETEQ ? X86::COND_AE : X86::COND_B;
5231       return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
5232                          DAG.getConstant(Cond, MVT::i8), BT);
5233     }
5234   }
5235
5236   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5237   unsigned X86CC = TranslateX86CC(CC, isFP, Op0, Op1, DAG);
5238
5239   SDValue Cond = EmitCmp(Op0, Op1, X86CC, DAG);
5240   return DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
5241                      DAG.getConstant(X86CC, MVT::i8), Cond);
5242 }
5243
5244 SDValue X86TargetLowering::LowerVSETCC(SDValue Op, SelectionDAG &DAG) {
5245   SDValue Cond;
5246   SDValue Op0 = Op.getOperand(0);
5247   SDValue Op1 = Op.getOperand(1);
5248   SDValue CC = Op.getOperand(2);
5249   MVT VT = Op.getValueType();
5250   ISD::CondCode SetCCOpcode = cast<CondCodeSDNode>(CC)->get();
5251   bool isFP = Op.getOperand(1).getValueType().isFloatingPoint();
5252   DebugLoc dl = Op.getDebugLoc();
5253
5254   if (isFP) {
5255     unsigned SSECC = 8;
5256     MVT VT0 = Op0.getValueType();
5257     assert(VT0 == MVT::v4f32 || VT0 == MVT::v2f64);
5258     unsigned Opc = VT0 == MVT::v4f32 ? X86ISD::CMPPS : X86ISD::CMPPD;
5259     bool Swap = false;
5260
5261     switch (SetCCOpcode) {
5262     default: break;
5263     case ISD::SETOEQ:
5264     case ISD::SETEQ:  SSECC = 0; break;
5265     case ISD::SETOGT:
5266     case ISD::SETGT: Swap = true; // Fallthrough
5267     case ISD::SETLT:
5268     case ISD::SETOLT: SSECC = 1; break;
5269     case ISD::SETOGE:
5270     case ISD::SETGE: Swap = true; // Fallthrough
5271     case ISD::SETLE:
5272     case ISD::SETOLE: SSECC = 2; break;
5273     case ISD::SETUO:  SSECC = 3; break;
5274     case ISD::SETUNE:
5275     case ISD::SETNE:  SSECC = 4; break;
5276     case ISD::SETULE: Swap = true;
5277     case ISD::SETUGE: SSECC = 5; break;
5278     case ISD::SETULT: Swap = true;
5279     case ISD::SETUGT: SSECC = 6; break;
5280     case ISD::SETO:   SSECC = 7; break;
5281     }
5282     if (Swap)
5283       std::swap(Op0, Op1);
5284
5285     // In the two special cases we can't handle, emit two comparisons.
5286     if (SSECC == 8) {
5287       if (SetCCOpcode == ISD::SETUEQ) {
5288         SDValue UNORD, EQ;
5289         UNORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(3, MVT::i8));
5290         EQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(0, MVT::i8));
5291         return DAG.getNode(ISD::OR, dl, VT, UNORD, EQ);
5292       }
5293       else if (SetCCOpcode == ISD::SETONE) {
5294         SDValue ORD, NEQ;
5295         ORD = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(7, MVT::i8));
5296         NEQ = DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(4, MVT::i8));
5297         return DAG.getNode(ISD::AND, dl, VT, ORD, NEQ);
5298       }
5299       assert(0 && "Illegal FP comparison");
5300     }
5301     // Handle all other FP comparisons here.
5302     return DAG.getNode(Opc, dl, VT, Op0, Op1, DAG.getConstant(SSECC, MVT::i8));
5303   }
5304
5305   // We are handling one of the integer comparisons here.  Since SSE only has
5306   // GT and EQ comparisons for integer, swapping operands and multiple
5307   // operations may be required for some comparisons.
5308   unsigned Opc = 0, EQOpc = 0, GTOpc = 0;
5309   bool Swap = false, Invert = false, FlipSigns = false;
5310
5311   switch (VT.getSimpleVT()) {
5312   default: break;
5313   case MVT::v16i8: EQOpc = X86ISD::PCMPEQB; GTOpc = X86ISD::PCMPGTB; break;
5314   case MVT::v8i16: EQOpc = X86ISD::PCMPEQW; GTOpc = X86ISD::PCMPGTW; break;
5315   case MVT::v4i32: EQOpc = X86ISD::PCMPEQD; GTOpc = X86ISD::PCMPGTD; break;
5316   case MVT::v2i64: EQOpc = X86ISD::PCMPEQQ; GTOpc = X86ISD::PCMPGTQ; break;
5317   }
5318
5319   switch (SetCCOpcode) {
5320   default: break;
5321   case ISD::SETNE:  Invert = true;
5322   case ISD::SETEQ:  Opc = EQOpc; break;
5323   case ISD::SETLT:  Swap = true;
5324   case ISD::SETGT:  Opc = GTOpc; break;
5325   case ISD::SETGE:  Swap = true;
5326   case ISD::SETLE:  Opc = GTOpc; Invert = true; break;
5327   case ISD::SETULT: Swap = true;
5328   case ISD::SETUGT: Opc = GTOpc; FlipSigns = true; break;
5329   case ISD::SETUGE: Swap = true;
5330   case ISD::SETULE: Opc = GTOpc; FlipSigns = true; Invert = true; break;
5331   }
5332   if (Swap)
5333     std::swap(Op0, Op1);
5334
5335   // Since SSE has no unsigned integer comparisons, we need to flip  the sign
5336   // bits of the inputs before performing those operations.
5337   if (FlipSigns) {
5338     MVT EltVT = VT.getVectorElementType();
5339     SDValue SignBit = DAG.getConstant(APInt::getSignBit(EltVT.getSizeInBits()),
5340                                       EltVT);
5341     std::vector<SDValue> SignBits(VT.getVectorNumElements(), SignBit);
5342     SDValue SignVec = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &SignBits[0],
5343                                     SignBits.size());
5344     Op0 = DAG.getNode(ISD::XOR, dl, VT, Op0, SignVec);
5345     Op1 = DAG.getNode(ISD::XOR, dl, VT, Op1, SignVec);
5346   }
5347
5348   SDValue Result = DAG.getNode(Opc, dl, VT, Op0, Op1);
5349
5350   // If the logical-not of the result is required, perform that now.
5351   if (Invert)
5352     Result = DAG.getNOT(dl, Result, VT);
5353
5354   return Result;
5355 }
5356
5357 // isX86LogicalCmp - Return true if opcode is a X86 logical comparison.
5358 static bool isX86LogicalCmp(SDValue Op) {
5359   unsigned Opc = Op.getNode()->getOpcode();
5360   if (Opc == X86ISD::CMP || Opc == X86ISD::COMI || Opc == X86ISD::UCOMI)
5361     return true;
5362   if (Op.getResNo() == 1 &&
5363       (Opc == X86ISD::ADD ||
5364        Opc == X86ISD::SUB ||
5365        Opc == X86ISD::SMUL ||
5366        Opc == X86ISD::UMUL ||
5367        Opc == X86ISD::INC ||
5368        Opc == X86ISD::DEC))
5369     return true;
5370
5371   return false;
5372 }
5373
5374 SDValue X86TargetLowering::LowerSELECT(SDValue Op, SelectionDAG &DAG) {
5375   bool addTest = true;
5376   SDValue Cond  = Op.getOperand(0);
5377   DebugLoc dl = Op.getDebugLoc();
5378   SDValue CC;
5379
5380   if (Cond.getOpcode() == ISD::SETCC)
5381     Cond = LowerSETCC(Cond, DAG);
5382
5383   // If condition flag is set by a X86ISD::CMP, then use it as the condition
5384   // setting operand in place of the X86ISD::SETCC.
5385   if (Cond.getOpcode() == X86ISD::SETCC) {
5386     CC = Cond.getOperand(0);
5387
5388     SDValue Cmp = Cond.getOperand(1);
5389     unsigned Opc = Cmp.getOpcode();
5390     MVT VT = Op.getValueType();
5391
5392     bool IllegalFPCMov = false;
5393     if (VT.isFloatingPoint() && !VT.isVector() &&
5394         !isScalarFPTypeInSSEReg(VT))  // FPStack?
5395       IllegalFPCMov = !hasFPCMov(cast<ConstantSDNode>(CC)->getSExtValue());
5396
5397     if ((isX86LogicalCmp(Cmp) && !IllegalFPCMov) ||
5398         Opc == X86ISD::BT) { // FIXME
5399       Cond = Cmp;
5400       addTest = false;
5401     }
5402   }
5403
5404   if (addTest) {
5405     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5406     Cond = EmitTest(Cond, X86::COND_NE, DAG);
5407   }
5408
5409   SDVTList VTs = DAG.getVTList(Op.getValueType(), MVT::Flag);
5410   SmallVector<SDValue, 4> Ops;
5411   // X86ISD::CMOV means set the result (which is operand 1) to the RHS if
5412   // condition is true.
5413   Ops.push_back(Op.getOperand(2));
5414   Ops.push_back(Op.getOperand(1));
5415   Ops.push_back(CC);
5416   Ops.push_back(Cond);
5417   return DAG.getNode(X86ISD::CMOV, dl, VTs, &Ops[0], Ops.size());
5418 }
5419
5420 // isAndOrOfSingleUseSetCCs - Return true if node is an ISD::AND or
5421 // ISD::OR of two X86ISD::SETCC nodes each of which has no other use apart
5422 // from the AND / OR.
5423 static bool isAndOrOfSetCCs(SDValue Op, unsigned &Opc) {
5424   Opc = Op.getOpcode();
5425   if (Opc != ISD::OR && Opc != ISD::AND)
5426     return false;
5427   return (Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5428           Op.getOperand(0).hasOneUse() &&
5429           Op.getOperand(1).getOpcode() == X86ISD::SETCC &&
5430           Op.getOperand(1).hasOneUse());
5431 }
5432
5433 // isXor1OfSetCC - Return true if node is an ISD::XOR of a X86ISD::SETCC and
5434 // 1 and that the SETCC node has a single use.
5435 static bool isXor1OfSetCC(SDValue Op) {
5436   if (Op.getOpcode() != ISD::XOR)
5437     return false;
5438   ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(Op.getOperand(1));
5439   if (N1C && N1C->getAPIntValue() == 1) {
5440     return Op.getOperand(0).getOpcode() == X86ISD::SETCC &&
5441       Op.getOperand(0).hasOneUse();
5442   }
5443   return false;
5444 }
5445
5446 SDValue X86TargetLowering::LowerBRCOND(SDValue Op, SelectionDAG &DAG) {
5447   bool addTest = true;
5448   SDValue Chain = Op.getOperand(0);
5449   SDValue Cond  = Op.getOperand(1);
5450   SDValue Dest  = Op.getOperand(2);
5451   DebugLoc dl = Op.getDebugLoc();
5452   SDValue CC;
5453
5454   if (Cond.getOpcode() == ISD::SETCC)
5455     Cond = LowerSETCC(Cond, DAG);
5456 #if 0
5457   // FIXME: LowerXALUO doesn't handle these!!
5458   else if (Cond.getOpcode() == X86ISD::ADD  ||
5459            Cond.getOpcode() == X86ISD::SUB  ||
5460            Cond.getOpcode() == X86ISD::SMUL ||
5461            Cond.getOpcode() == X86ISD::UMUL)
5462     Cond = LowerXALUO(Cond, DAG);
5463 #endif
5464
5465   // If condition flag is set by a X86ISD::CMP, then use it as the condition
5466   // setting operand in place of the X86ISD::SETCC.
5467   if (Cond.getOpcode() == X86ISD::SETCC) {
5468     CC = Cond.getOperand(0);
5469
5470     SDValue Cmp = Cond.getOperand(1);
5471     unsigned Opc = Cmp.getOpcode();
5472     // FIXME: WHY THE SPECIAL CASING OF LogicalCmp??
5473     if (isX86LogicalCmp(Cmp) || Opc == X86ISD::BT) {
5474       Cond = Cmp;
5475       addTest = false;
5476     } else {
5477       switch (cast<ConstantSDNode>(CC)->getZExtValue()) {
5478       default: break;
5479       case X86::COND_O:
5480       case X86::COND_B:
5481         // These can only come from an arithmetic instruction with overflow,
5482         // e.g. SADDO, UADDO.
5483         Cond = Cond.getNode()->getOperand(1);
5484         addTest = false;
5485         break;
5486       }
5487     }
5488   } else {
5489     unsigned CondOpc;
5490     if (Cond.hasOneUse() && isAndOrOfSetCCs(Cond, CondOpc)) {
5491       SDValue Cmp = Cond.getOperand(0).getOperand(1);
5492       if (CondOpc == ISD::OR) {
5493         // Also, recognize the pattern generated by an FCMP_UNE. We can emit
5494         // two branches instead of an explicit OR instruction with a
5495         // separate test.
5496         if (Cmp == Cond.getOperand(1).getOperand(1) &&
5497             isX86LogicalCmp(Cmp)) {
5498           CC = Cond.getOperand(0).getOperand(0);
5499           Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
5500                               Chain, Dest, CC, Cmp);
5501           CC = Cond.getOperand(1).getOperand(0);
5502           Cond = Cmp;
5503           addTest = false;
5504         }
5505       } else { // ISD::AND
5506         // Also, recognize the pattern generated by an FCMP_OEQ. We can emit
5507         // two branches instead of an explicit AND instruction with a
5508         // separate test. However, we only do this if this block doesn't
5509         // have a fall-through edge, because this requires an explicit
5510         // jmp when the condition is false.
5511         if (Cmp == Cond.getOperand(1).getOperand(1) &&
5512             isX86LogicalCmp(Cmp) &&
5513             Op.getNode()->hasOneUse()) {
5514           X86::CondCode CCode =
5515             (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5516           CCode = X86::GetOppositeBranchCondition(CCode);
5517           CC = DAG.getConstant(CCode, MVT::i8);
5518           SDValue User = SDValue(*Op.getNode()->use_begin(), 0);
5519           // Look for an unconditional branch following this conditional branch.
5520           // We need this because we need to reverse the successors in order
5521           // to implement FCMP_OEQ.
5522           if (User.getOpcode() == ISD::BR) {
5523             SDValue FalseBB = User.getOperand(1);
5524             SDValue NewBR =
5525               DAG.UpdateNodeOperands(User, User.getOperand(0), Dest);
5526             assert(NewBR == User);
5527             Dest = FalseBB;
5528
5529             Chain = DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
5530                                 Chain, Dest, CC, Cmp);
5531             X86::CondCode CCode =
5532               (X86::CondCode)Cond.getOperand(1).getConstantOperandVal(0);
5533             CCode = X86::GetOppositeBranchCondition(CCode);
5534             CC = DAG.getConstant(CCode, MVT::i8);
5535             Cond = Cmp;
5536             addTest = false;
5537           }
5538         }
5539       }
5540     } else if (Cond.hasOneUse() && isXor1OfSetCC(Cond)) {
5541       // Recognize for xorb (setcc), 1 patterns. The xor inverts the condition.
5542       // It should be transformed during dag combiner except when the condition
5543       // is set by a arithmetics with overflow node.
5544       X86::CondCode CCode =
5545         (X86::CondCode)Cond.getOperand(0).getConstantOperandVal(0);
5546       CCode = X86::GetOppositeBranchCondition(CCode);
5547       CC = DAG.getConstant(CCode, MVT::i8);
5548       Cond = Cond.getOperand(0).getOperand(1);
5549       addTest = false;
5550     }
5551   }
5552
5553   if (addTest) {
5554     CC = DAG.getConstant(X86::COND_NE, MVT::i8);
5555     Cond = EmitTest(Cond, X86::COND_NE, DAG);
5556   }
5557   return DAG.getNode(X86ISD::BRCOND, dl, Op.getValueType(),
5558                      Chain, Dest, CC, Cond);
5559 }
5560
5561
5562 // Lower dynamic stack allocation to _alloca call for Cygwin/Mingw targets.
5563 // Calls to _alloca is needed to probe the stack when allocating more than 4k
5564 // bytes in one go. Touching the stack at 4K increments is necessary to ensure
5565 // that the guard pages used by the OS virtual memory manager are allocated in
5566 // correct sequence.
5567 SDValue
5568 X86TargetLowering::LowerDYNAMIC_STACKALLOC(SDValue Op,
5569                                            SelectionDAG &DAG) {
5570   assert(Subtarget->isTargetCygMing() &&
5571          "This should be used only on Cygwin/Mingw targets");
5572   DebugLoc dl = Op.getDebugLoc();
5573
5574   // Get the inputs.
5575   SDValue Chain = Op.getOperand(0);
5576   SDValue Size  = Op.getOperand(1);
5577   // FIXME: Ensure alignment here
5578
5579   SDValue Flag;
5580
5581   MVT IntPtr = getPointerTy();
5582   MVT SPTy = Subtarget->is64Bit() ? MVT::i64 : MVT::i32;
5583
5584   Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
5585
5586   Chain = DAG.getCopyToReg(Chain, dl, X86::EAX, Size, Flag);
5587   Flag = Chain.getValue(1);
5588
5589   SDVTList  NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
5590   SDValue Ops[] = { Chain,
5591                       DAG.getTargetExternalSymbol("_alloca", IntPtr),
5592                       DAG.getRegister(X86::EAX, IntPtr),
5593                       DAG.getRegister(X86StackPtr, SPTy),
5594                       Flag };
5595   Chain = DAG.getNode(X86ISD::CALL, dl, NodeTys, Ops, 5);
5596   Flag = Chain.getValue(1);
5597
5598   Chain = DAG.getCALLSEQ_END(Chain,
5599                              DAG.getIntPtrConstant(0, true),
5600                              DAG.getIntPtrConstant(0, true),
5601                              Flag);
5602
5603   Chain = DAG.getCopyFromReg(Chain, dl, X86StackPtr, SPTy).getValue(1);
5604
5605   SDValue Ops1[2] = { Chain.getValue(0), Chain };
5606   return DAG.getMergeValues(Ops1, 2, dl);
5607 }
5608
5609 SDValue
5610 X86TargetLowering::EmitTargetCodeForMemset(SelectionDAG &DAG, DebugLoc dl,
5611                                            SDValue Chain,
5612                                            SDValue Dst, SDValue Src,
5613                                            SDValue Size, unsigned Align,
5614                                            const Value *DstSV,
5615                                            uint64_t DstSVOff) {
5616   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5617
5618   // If not DWORD aligned or size is more than the threshold, call the library.
5619   // The libc version is likely to be faster for these cases. It can use the
5620   // address value and run time information about the CPU.
5621   if ((Align & 3) != 0 ||
5622       !ConstantSize ||
5623       ConstantSize->getZExtValue() >
5624         getSubtarget()->getMaxInlineSizeThreshold()) {
5625     SDValue InFlag(0, 0);
5626
5627     // Check to see if there is a specialized entry-point for memory zeroing.
5628     ConstantSDNode *V = dyn_cast<ConstantSDNode>(Src);
5629
5630     if (const char *bzeroEntry =  V &&
5631         V->isNullValue() ? Subtarget->getBZeroEntry() : 0) {
5632       MVT IntPtr = getPointerTy();
5633       const Type *IntPtrTy = TD->getIntPtrType();
5634       TargetLowering::ArgListTy Args;
5635       TargetLowering::ArgListEntry Entry;
5636       Entry.Node = Dst;
5637       Entry.Ty = IntPtrTy;
5638       Args.push_back(Entry);
5639       Entry.Node = Size;
5640       Args.push_back(Entry);
5641       std::pair<SDValue,SDValue> CallResult =
5642         LowerCallTo(Chain, Type::VoidTy, false, false, false, false,
5643                     CallingConv::C, false,
5644                     DAG.getExternalSymbol(bzeroEntry, IntPtr), Args, DAG, dl);
5645       return CallResult.second;
5646     }
5647
5648     // Otherwise have the target-independent code call memset.
5649     return SDValue();
5650   }
5651
5652   uint64_t SizeVal = ConstantSize->getZExtValue();
5653   SDValue InFlag(0, 0);
5654   MVT AVT;
5655   SDValue Count;
5656   ConstantSDNode *ValC = dyn_cast<ConstantSDNode>(Src);
5657   unsigned BytesLeft = 0;
5658   bool TwoRepStos = false;
5659   if (ValC) {
5660     unsigned ValReg;
5661     uint64_t Val = ValC->getZExtValue() & 255;
5662
5663     // If the value is a constant, then we can potentially use larger sets.
5664     switch (Align & 3) {
5665     case 2:   // WORD aligned
5666       AVT = MVT::i16;
5667       ValReg = X86::AX;
5668       Val = (Val << 8) | Val;
5669       break;
5670     case 0:  // DWORD aligned
5671       AVT = MVT::i32;
5672       ValReg = X86::EAX;
5673       Val = (Val << 8)  | Val;
5674       Val = (Val << 16) | Val;
5675       if (Subtarget->is64Bit() && ((Align & 0x7) == 0)) {  // QWORD aligned
5676         AVT = MVT::i64;
5677         ValReg = X86::RAX;
5678         Val = (Val << 32) | Val;
5679       }
5680       break;
5681     default:  // Byte aligned
5682       AVT = MVT::i8;
5683       ValReg = X86::AL;
5684       Count = DAG.getIntPtrConstant(SizeVal);
5685       break;
5686     }
5687
5688     if (AVT.bitsGT(MVT::i8)) {
5689       unsigned UBytes = AVT.getSizeInBits() / 8;
5690       Count = DAG.getIntPtrConstant(SizeVal / UBytes);
5691       BytesLeft = SizeVal % UBytes;
5692     }
5693
5694     Chain  = DAG.getCopyToReg(Chain, dl, ValReg, DAG.getConstant(Val, AVT),
5695                               InFlag);
5696     InFlag = Chain.getValue(1);
5697   } else {
5698     AVT = MVT::i8;
5699     Count  = DAG.getIntPtrConstant(SizeVal);
5700     Chain  = DAG.getCopyToReg(Chain, dl, X86::AL, Src, InFlag);
5701     InFlag = Chain.getValue(1);
5702   }
5703
5704   Chain  = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
5705                                                               X86::ECX,
5706                             Count, InFlag);
5707   InFlag = Chain.getValue(1);
5708   Chain  = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
5709                                                               X86::EDI,
5710                             Dst, InFlag);
5711   InFlag = Chain.getValue(1);
5712
5713   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5714   SmallVector<SDValue, 8> Ops;
5715   Ops.push_back(Chain);
5716   Ops.push_back(DAG.getValueType(AVT));
5717   Ops.push_back(InFlag);
5718   Chain  = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
5719
5720   if (TwoRepStos) {
5721     InFlag = Chain.getValue(1);
5722     Count  = Size;
5723     MVT CVT = Count.getValueType();
5724     SDValue Left = DAG.getNode(ISD::AND, dl, CVT, Count,
5725                                DAG.getConstant((AVT == MVT::i64) ? 7 : 3, CVT));
5726     Chain  = DAG.getCopyToReg(Chain, dl, (CVT == MVT::i64) ? X86::RCX :
5727                                                              X86::ECX,
5728                               Left, InFlag);
5729     InFlag = Chain.getValue(1);
5730     Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5731     Ops.clear();
5732     Ops.push_back(Chain);
5733     Ops.push_back(DAG.getValueType(MVT::i8));
5734     Ops.push_back(InFlag);
5735     Chain  = DAG.getNode(X86ISD::REP_STOS, dl, Tys, &Ops[0], Ops.size());
5736   } else if (BytesLeft) {
5737     // Handle the last 1 - 7 bytes.
5738     unsigned Offset = SizeVal - BytesLeft;
5739     MVT AddrVT = Dst.getValueType();
5740     MVT SizeVT = Size.getValueType();
5741
5742     Chain = DAG.getMemset(Chain, dl,
5743                           DAG.getNode(ISD::ADD, dl, AddrVT, Dst,
5744                                       DAG.getConstant(Offset, AddrVT)),
5745                           Src,
5746                           DAG.getConstant(BytesLeft, SizeVT),
5747                           Align, DstSV, DstSVOff + Offset);
5748   }
5749
5750   // TODO: Use a Tokenfactor, as in memcpy, instead of a single chain.
5751   return Chain;
5752 }
5753
5754 SDValue
5755 X86TargetLowering::EmitTargetCodeForMemcpy(SelectionDAG &DAG, DebugLoc dl,
5756                                       SDValue Chain, SDValue Dst, SDValue Src,
5757                                       SDValue Size, unsigned Align,
5758                                       bool AlwaysInline,
5759                                       const Value *DstSV, uint64_t DstSVOff,
5760                                       const Value *SrcSV, uint64_t SrcSVOff) {
5761   // This requires the copy size to be a constant, preferrably
5762   // within a subtarget-specific limit.
5763   ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size);
5764   if (!ConstantSize)
5765     return SDValue();
5766   uint64_t SizeVal = ConstantSize->getZExtValue();
5767   if (!AlwaysInline && SizeVal > getSubtarget()->getMaxInlineSizeThreshold())
5768     return SDValue();
5769
5770   /// If not DWORD aligned, call the library.
5771   if ((Align & 3) != 0)
5772     return SDValue();
5773
5774   // DWORD aligned
5775   MVT AVT = MVT::i32;
5776   if (Subtarget->is64Bit() && ((Align & 0x7) == 0))  // QWORD aligned
5777     AVT = MVT::i64;
5778
5779   unsigned UBytes = AVT.getSizeInBits() / 8;
5780   unsigned CountVal = SizeVal / UBytes;
5781   SDValue Count = DAG.getIntPtrConstant(CountVal);
5782   unsigned BytesLeft = SizeVal % UBytes;
5783
5784   SDValue InFlag(0, 0);
5785   Chain  = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RCX :
5786                                                               X86::ECX,
5787                             Count, InFlag);
5788   InFlag = Chain.getValue(1);
5789   Chain  = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RDI :
5790                                                              X86::EDI,
5791                             Dst, InFlag);
5792   InFlag = Chain.getValue(1);
5793   Chain  = DAG.getCopyToReg(Chain, dl, Subtarget->is64Bit() ? X86::RSI :
5794                                                               X86::ESI,
5795                             Src, InFlag);
5796   InFlag = Chain.getValue(1);
5797
5798   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
5799   SmallVector<SDValue, 8> Ops;
5800   Ops.push_back(Chain);
5801   Ops.push_back(DAG.getValueType(AVT));
5802   Ops.push_back(InFlag);
5803   SDValue RepMovs = DAG.getNode(X86ISD::REP_MOVS, dl, Tys, &Ops[0], Ops.size());
5804
5805   SmallVector<SDValue, 4> Results;
5806   Results.push_back(RepMovs);
5807   if (BytesLeft) {
5808     // Handle the last 1 - 7 bytes.
5809     unsigned Offset = SizeVal - BytesLeft;
5810     MVT DstVT = Dst.getValueType();
5811     MVT SrcVT = Src.getValueType();
5812     MVT SizeVT = Size.getValueType();
5813     Results.push_back(DAG.getMemcpy(Chain, dl,
5814                                     DAG.getNode(ISD::ADD, dl, DstVT, Dst,
5815                                                 DAG.getConstant(Offset, DstVT)),
5816                                     DAG.getNode(ISD::ADD, dl, SrcVT, Src,
5817                                                 DAG.getConstant(Offset, SrcVT)),
5818                                     DAG.getConstant(BytesLeft, SizeVT),
5819                                     Align, AlwaysInline,
5820                                     DstSV, DstSVOff + Offset,
5821                                     SrcSV, SrcSVOff + Offset));
5822   }
5823
5824   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5825                      &Results[0], Results.size());
5826 }
5827
5828 SDValue X86TargetLowering::LowerVASTART(SDValue Op, SelectionDAG &DAG) {
5829   const Value *SV = cast<SrcValueSDNode>(Op.getOperand(2))->getValue();
5830   DebugLoc dl = Op.getDebugLoc();
5831
5832   if (!Subtarget->is64Bit()) {
5833     // vastart just stores the address of the VarArgsFrameIndex slot into the
5834     // memory location argument.
5835     SDValue FR = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
5836     return DAG.getStore(Op.getOperand(0), dl, FR, Op.getOperand(1), SV, 0);
5837   }
5838
5839   // __va_list_tag:
5840   //   gp_offset         (0 - 6 * 8)
5841   //   fp_offset         (48 - 48 + 8 * 16)
5842   //   overflow_arg_area (point to parameters coming in memory).
5843   //   reg_save_area
5844   SmallVector<SDValue, 8> MemOps;
5845   SDValue FIN = Op.getOperand(1);
5846   // Store gp_offset
5847   SDValue Store = DAG.getStore(Op.getOperand(0), dl,
5848                                  DAG.getConstant(VarArgsGPOffset, MVT::i32),
5849                                  FIN, SV, 0);
5850   MemOps.push_back(Store);
5851
5852   // Store fp_offset
5853   FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5854                     FIN, DAG.getIntPtrConstant(4));
5855   Store = DAG.getStore(Op.getOperand(0), dl,
5856                        DAG.getConstant(VarArgsFPOffset, MVT::i32),
5857                        FIN, SV, 0);
5858   MemOps.push_back(Store);
5859
5860   // Store ptr to overflow_arg_area
5861   FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5862                     FIN, DAG.getIntPtrConstant(4));
5863   SDValue OVFIN = DAG.getFrameIndex(VarArgsFrameIndex, getPointerTy());
5864   Store = DAG.getStore(Op.getOperand(0), dl, OVFIN, FIN, SV, 0);
5865   MemOps.push_back(Store);
5866
5867   // Store ptr to reg_save_area.
5868   FIN = DAG.getNode(ISD::ADD, dl, getPointerTy(),
5869                     FIN, DAG.getIntPtrConstant(8));
5870   SDValue RSFIN = DAG.getFrameIndex(RegSaveFrameIndex, getPointerTy());
5871   Store = DAG.getStore(Op.getOperand(0), dl, RSFIN, FIN, SV, 0);
5872   MemOps.push_back(Store);
5873   return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
5874                      &MemOps[0], MemOps.size());
5875 }
5876
5877 SDValue X86TargetLowering::LowerVAARG(SDValue Op, SelectionDAG &DAG) {
5878   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5879   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_arg!");
5880   SDValue Chain = Op.getOperand(0);
5881   SDValue SrcPtr = Op.getOperand(1);
5882   SDValue SrcSV = Op.getOperand(2);
5883
5884   assert(0 && "VAArgInst is not yet implemented for x86-64!");
5885   abort();
5886   return SDValue();
5887 }
5888
5889 SDValue X86TargetLowering::LowerVACOPY(SDValue Op, SelectionDAG &DAG) {
5890   // X86-64 va_list is a struct { i32, i32, i8*, i8* }.
5891   assert(Subtarget->is64Bit() && "This code only handles 64-bit va_copy!");
5892   SDValue Chain = Op.getOperand(0);
5893   SDValue DstPtr = Op.getOperand(1);
5894   SDValue SrcPtr = Op.getOperand(2);
5895   const Value *DstSV = cast<SrcValueSDNode>(Op.getOperand(3))->getValue();
5896   const Value *SrcSV = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
5897   DebugLoc dl = Op.getDebugLoc();
5898
5899   return DAG.getMemcpy(Chain, dl, DstPtr, SrcPtr,
5900                        DAG.getIntPtrConstant(24), 8, false,
5901                        DstSV, 0, SrcSV, 0);
5902 }
5903
5904 SDValue
5905 X86TargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, SelectionDAG &DAG) {
5906   DebugLoc dl = Op.getDebugLoc();
5907   unsigned IntNo = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
5908   switch (IntNo) {
5909   default: return SDValue();    // Don't custom lower most intrinsics.
5910   // Comparison intrinsics.
5911   case Intrinsic::x86_sse_comieq_ss:
5912   case Intrinsic::x86_sse_comilt_ss:
5913   case Intrinsic::x86_sse_comile_ss:
5914   case Intrinsic::x86_sse_comigt_ss:
5915   case Intrinsic::x86_sse_comige_ss:
5916   case Intrinsic::x86_sse_comineq_ss:
5917   case Intrinsic::x86_sse_ucomieq_ss:
5918   case Intrinsic::x86_sse_ucomilt_ss:
5919   case Intrinsic::x86_sse_ucomile_ss:
5920   case Intrinsic::x86_sse_ucomigt_ss:
5921   case Intrinsic::x86_sse_ucomige_ss:
5922   case Intrinsic::x86_sse_ucomineq_ss:
5923   case Intrinsic::x86_sse2_comieq_sd:
5924   case Intrinsic::x86_sse2_comilt_sd:
5925   case Intrinsic::x86_sse2_comile_sd:
5926   case Intrinsic::x86_sse2_comigt_sd:
5927   case Intrinsic::x86_sse2_comige_sd:
5928   case Intrinsic::x86_sse2_comineq_sd:
5929   case Intrinsic::x86_sse2_ucomieq_sd:
5930   case Intrinsic::x86_sse2_ucomilt_sd:
5931   case Intrinsic::x86_sse2_ucomile_sd:
5932   case Intrinsic::x86_sse2_ucomigt_sd:
5933   case Intrinsic::x86_sse2_ucomige_sd:
5934   case Intrinsic::x86_sse2_ucomineq_sd: {
5935     unsigned Opc = 0;
5936     ISD::CondCode CC = ISD::SETCC_INVALID;
5937     switch (IntNo) {
5938     default: break;
5939     case Intrinsic::x86_sse_comieq_ss:
5940     case Intrinsic::x86_sse2_comieq_sd:
5941       Opc = X86ISD::COMI;
5942       CC = ISD::SETEQ;
5943       break;
5944     case Intrinsic::x86_sse_comilt_ss:
5945     case Intrinsic::x86_sse2_comilt_sd:
5946       Opc = X86ISD::COMI;
5947       CC = ISD::SETLT;
5948       break;
5949     case Intrinsic::x86_sse_comile_ss:
5950     case Intrinsic::x86_sse2_comile_sd:
5951       Opc = X86ISD::COMI;
5952       CC = ISD::SETLE;
5953       break;
5954     case Intrinsic::x86_sse_comigt_ss:
5955     case Intrinsic::x86_sse2_comigt_sd:
5956       Opc = X86ISD::COMI;
5957       CC = ISD::SETGT;
5958       break;
5959     case Intrinsic::x86_sse_comige_ss:
5960     case Intrinsic::x86_sse2_comige_sd:
5961       Opc = X86ISD::COMI;
5962       CC = ISD::SETGE;
5963       break;
5964     case Intrinsic::x86_sse_comineq_ss:
5965     case Intrinsic::x86_sse2_comineq_sd:
5966       Opc = X86ISD::COMI;
5967       CC = ISD::SETNE;
5968       break;
5969     case Intrinsic::x86_sse_ucomieq_ss:
5970     case Intrinsic::x86_sse2_ucomieq_sd:
5971       Opc = X86ISD::UCOMI;
5972       CC = ISD::SETEQ;
5973       break;
5974     case Intrinsic::x86_sse_ucomilt_ss:
5975     case Intrinsic::x86_sse2_ucomilt_sd:
5976       Opc = X86ISD::UCOMI;
5977       CC = ISD::SETLT;
5978       break;
5979     case Intrinsic::x86_sse_ucomile_ss:
5980     case Intrinsic::x86_sse2_ucomile_sd:
5981       Opc = X86ISD::UCOMI;
5982       CC = ISD::SETLE;
5983       break;
5984     case Intrinsic::x86_sse_ucomigt_ss:
5985     case Intrinsic::x86_sse2_ucomigt_sd:
5986       Opc = X86ISD::UCOMI;
5987       CC = ISD::SETGT;
5988       break;
5989     case Intrinsic::x86_sse_ucomige_ss:
5990     case Intrinsic::x86_sse2_ucomige_sd:
5991       Opc = X86ISD::UCOMI;
5992       CC = ISD::SETGE;
5993       break;
5994     case Intrinsic::x86_sse_ucomineq_ss:
5995     case Intrinsic::x86_sse2_ucomineq_sd:
5996       Opc = X86ISD::UCOMI;
5997       CC = ISD::SETNE;
5998       break;
5999     }
6000
6001     SDValue LHS = Op.getOperand(1);
6002     SDValue RHS = Op.getOperand(2);
6003     unsigned X86CC = TranslateX86CC(CC, true, LHS, RHS, DAG);
6004     SDValue Cond = DAG.getNode(Opc, dl, MVT::i32, LHS, RHS);
6005     SDValue SetCC = DAG.getNode(X86ISD::SETCC, dl, MVT::i8,
6006                                 DAG.getConstant(X86CC, MVT::i8), Cond);
6007     return DAG.getNode(ISD::ZERO_EXTEND, dl, MVT::i32, SetCC);
6008   }
6009
6010   // Fix vector shift instructions where the last operand is a non-immediate
6011   // i32 value.
6012   case Intrinsic::x86_sse2_pslli_w:
6013   case Intrinsic::x86_sse2_pslli_d:
6014   case Intrinsic::x86_sse2_pslli_q:
6015   case Intrinsic::x86_sse2_psrli_w:
6016   case Intrinsic::x86_sse2_psrli_d:
6017   case Intrinsic::x86_sse2_psrli_q:
6018   case Intrinsic::x86_sse2_psrai_w:
6019   case Intrinsic::x86_sse2_psrai_d:
6020   case Intrinsic::x86_mmx_pslli_w:
6021   case Intrinsic::x86_mmx_pslli_d:
6022   case Intrinsic::x86_mmx_pslli_q:
6023   case Intrinsic::x86_mmx_psrli_w:
6024   case Intrinsic::x86_mmx_psrli_d:
6025   case Intrinsic::x86_mmx_psrli_q:
6026   case Intrinsic::x86_mmx_psrai_w:
6027   case Intrinsic::x86_mmx_psrai_d: {
6028     SDValue ShAmt = Op.getOperand(2);
6029     if (isa<ConstantSDNode>(ShAmt))
6030       return SDValue();
6031
6032     unsigned NewIntNo = 0;
6033     MVT ShAmtVT = MVT::v4i32;
6034     switch (IntNo) {
6035     case Intrinsic::x86_sse2_pslli_w:
6036       NewIntNo = Intrinsic::x86_sse2_psll_w;
6037       break;
6038     case Intrinsic::x86_sse2_pslli_d:
6039       NewIntNo = Intrinsic::x86_sse2_psll_d;
6040       break;
6041     case Intrinsic::x86_sse2_pslli_q:
6042       NewIntNo = Intrinsic::x86_sse2_psll_q;
6043       break;
6044     case Intrinsic::x86_sse2_psrli_w:
6045       NewIntNo = Intrinsic::x86_sse2_psrl_w;
6046       break;
6047     case Intrinsic::x86_sse2_psrli_d:
6048       NewIntNo = Intrinsic::x86_sse2_psrl_d;
6049       break;
6050     case Intrinsic::x86_sse2_psrli_q:
6051       NewIntNo = Intrinsic::x86_sse2_psrl_q;
6052       break;
6053     case Intrinsic::x86_sse2_psrai_w:
6054       NewIntNo = Intrinsic::x86_sse2_psra_w;
6055       break;
6056     case Intrinsic::x86_sse2_psrai_d:
6057       NewIntNo = Intrinsic::x86_sse2_psra_d;
6058       break;
6059     default: {
6060       ShAmtVT = MVT::v2i32;
6061       switch (IntNo) {
6062       case Intrinsic::x86_mmx_pslli_w:
6063         NewIntNo = Intrinsic::x86_mmx_psll_w;
6064         break;
6065       case Intrinsic::x86_mmx_pslli_d:
6066         NewIntNo = Intrinsic::x86_mmx_psll_d;
6067         break;
6068       case Intrinsic::x86_mmx_pslli_q:
6069         NewIntNo = Intrinsic::x86_mmx_psll_q;
6070         break;
6071       case Intrinsic::x86_mmx_psrli_w:
6072         NewIntNo = Intrinsic::x86_mmx_psrl_w;
6073         break;
6074       case Intrinsic::x86_mmx_psrli_d:
6075         NewIntNo = Intrinsic::x86_mmx_psrl_d;
6076         break;
6077       case Intrinsic::x86_mmx_psrli_q:
6078         NewIntNo = Intrinsic::x86_mmx_psrl_q;
6079         break;
6080       case Intrinsic::x86_mmx_psrai_w:
6081         NewIntNo = Intrinsic::x86_mmx_psra_w;
6082         break;
6083       case Intrinsic::x86_mmx_psrai_d:
6084         NewIntNo = Intrinsic::x86_mmx_psra_d;
6085         break;
6086       default: abort();  // Can't reach here.
6087       }
6088       break;
6089     }
6090     }
6091     MVT VT = Op.getValueType();
6092     ShAmt = DAG.getNode(ISD::BIT_CONVERT, dl, VT,
6093                         DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, ShAmtVT, ShAmt));
6094     return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6095                        DAG.getConstant(NewIntNo, MVT::i32),
6096                        Op.getOperand(1), ShAmt);
6097   }
6098   }
6099 }
6100
6101 SDValue X86TargetLowering::LowerRETURNADDR(SDValue Op, SelectionDAG &DAG) {
6102   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6103   DebugLoc dl = Op.getDebugLoc();
6104
6105   if (Depth > 0) {
6106     SDValue FrameAddr = LowerFRAMEADDR(Op, DAG);
6107     SDValue Offset =
6108       DAG.getConstant(TD->getPointerSize(),
6109                       Subtarget->is64Bit() ? MVT::i64 : MVT::i32);
6110     return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
6111                        DAG.getNode(ISD::ADD, dl, getPointerTy(),
6112                                    FrameAddr, Offset),
6113                        NULL, 0);
6114   }
6115
6116   // Just load the return address.
6117   SDValue RetAddrFI = getReturnAddressFrameIndex(DAG);
6118   return DAG.getLoad(getPointerTy(), dl, DAG.getEntryNode(),
6119                      RetAddrFI, NULL, 0);
6120 }
6121
6122 SDValue X86TargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
6123   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
6124   MFI->setFrameAddressIsTaken(true);
6125   MVT VT = Op.getValueType();
6126   DebugLoc dl = Op.getDebugLoc();  // FIXME probably not meaningful
6127   unsigned Depth = cast<ConstantSDNode>(Op.getOperand(0))->getZExtValue();
6128   unsigned FrameReg = Subtarget->is64Bit() ? X86::RBP : X86::EBP;
6129   SDValue FrameAddr = DAG.getCopyFromReg(DAG.getEntryNode(), dl, FrameReg, VT);
6130   while (Depth--)
6131     FrameAddr = DAG.getLoad(VT, dl, DAG.getEntryNode(), FrameAddr, NULL, 0);
6132   return FrameAddr;
6133 }
6134
6135 SDValue X86TargetLowering::LowerFRAME_TO_ARGS_OFFSET(SDValue Op,
6136                                                      SelectionDAG &DAG) {
6137   return DAG.getIntPtrConstant(2*TD->getPointerSize());
6138 }
6139
6140 SDValue X86TargetLowering::LowerEH_RETURN(SDValue Op, SelectionDAG &DAG)
6141 {
6142   MachineFunction &MF = DAG.getMachineFunction();
6143   SDValue Chain     = Op.getOperand(0);
6144   SDValue Offset    = Op.getOperand(1);
6145   SDValue Handler   = Op.getOperand(2);
6146   DebugLoc dl       = Op.getDebugLoc();
6147
6148   SDValue Frame = DAG.getRegister(Subtarget->is64Bit() ? X86::RBP : X86::EBP,
6149                                   getPointerTy());
6150   unsigned StoreAddrReg = (Subtarget->is64Bit() ? X86::RCX : X86::ECX);
6151
6152   SDValue StoreAddr = DAG.getNode(ISD::SUB, dl, getPointerTy(), Frame,
6153                                   DAG.getIntPtrConstant(-TD->getPointerSize()));
6154   StoreAddr = DAG.getNode(ISD::ADD, dl, getPointerTy(), StoreAddr, Offset);
6155   Chain = DAG.getStore(Chain, dl, Handler, StoreAddr, NULL, 0);
6156   Chain = DAG.getCopyToReg(Chain, dl, StoreAddrReg, StoreAddr);
6157   MF.getRegInfo().addLiveOut(StoreAddrReg);
6158
6159   return DAG.getNode(X86ISD::EH_RETURN, dl,
6160                      MVT::Other,
6161                      Chain, DAG.getRegister(StoreAddrReg, getPointerTy()));
6162 }
6163
6164 SDValue X86TargetLowering::LowerTRAMPOLINE(SDValue Op,
6165                                              SelectionDAG &DAG) {
6166   SDValue Root = Op.getOperand(0);
6167   SDValue Trmp = Op.getOperand(1); // trampoline
6168   SDValue FPtr = Op.getOperand(2); // nested function
6169   SDValue Nest = Op.getOperand(3); // 'nest' parameter value
6170   DebugLoc dl  = Op.getDebugLoc();
6171
6172   const Value *TrmpAddr = cast<SrcValueSDNode>(Op.getOperand(4))->getValue();
6173
6174   const X86InstrInfo *TII =
6175     ((X86TargetMachine&)getTargetMachine()).getInstrInfo();
6176
6177   if (Subtarget->is64Bit()) {
6178     SDValue OutChains[6];
6179
6180     // Large code-model.
6181
6182     const unsigned char JMP64r  = TII->getBaseOpcodeFor(X86::JMP64r);
6183     const unsigned char MOV64ri = TII->getBaseOpcodeFor(X86::MOV64ri);
6184
6185     const unsigned char N86R10 = RegInfo->getX86RegNum(X86::R10);
6186     const unsigned char N86R11 = RegInfo->getX86RegNum(X86::R11);
6187
6188     const unsigned char REX_WB = 0x40 | 0x08 | 0x01; // REX prefix
6189
6190     // Load the pointer to the nested function into R11.
6191     unsigned OpCode = ((MOV64ri | N86R11) << 8) | REX_WB; // movabsq r11
6192     SDValue Addr = Trmp;
6193     OutChains[0] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6194                                 Addr, TrmpAddr, 0);
6195
6196     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
6197                        DAG.getConstant(2, MVT::i64));
6198     OutChains[1] = DAG.getStore(Root, dl, FPtr, Addr, TrmpAddr, 2, false, 2);
6199
6200     // Load the 'nest' parameter value into R10.
6201     // R10 is specified in X86CallingConv.td
6202     OpCode = ((MOV64ri | N86R10) << 8) | REX_WB; // movabsq r10
6203     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
6204                        DAG.getConstant(10, MVT::i64));
6205     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6206                                 Addr, TrmpAddr, 10);
6207
6208     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
6209                        DAG.getConstant(12, MVT::i64));
6210     OutChains[3] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 12, false, 2);
6211
6212     // Jump to the nested function.
6213     OpCode = (JMP64r << 8) | REX_WB; // jmpq *...
6214     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
6215                        DAG.getConstant(20, MVT::i64));
6216     OutChains[4] = DAG.getStore(Root, dl, DAG.getConstant(OpCode, MVT::i16),
6217                                 Addr, TrmpAddr, 20);
6218
6219     unsigned char ModRM = N86R11 | (4 << 3) | (3 << 6); // ...r11
6220     Addr = DAG.getNode(ISD::ADD, dl, MVT::i64, Trmp,
6221                        DAG.getConstant(22, MVT::i64));
6222     OutChains[5] = DAG.getStore(Root, dl, DAG.getConstant(ModRM, MVT::i8), Addr,
6223                                 TrmpAddr, 22);
6224
6225     SDValue Ops[] =
6226       { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 6) };
6227     return DAG.getMergeValues(Ops, 2, dl);
6228   } else {
6229     const Function *Func =
6230       cast<Function>(cast<SrcValueSDNode>(Op.getOperand(5))->getValue());
6231     unsigned CC = Func->getCallingConv();
6232     unsigned NestReg;
6233
6234     switch (CC) {
6235     default:
6236       assert(0 && "Unsupported calling convention");
6237     case CallingConv::C:
6238     case CallingConv::X86_StdCall: {
6239       // Pass 'nest' parameter in ECX.
6240       // Must be kept in sync with X86CallingConv.td
6241       NestReg = X86::ECX;
6242
6243       // Check that ECX wasn't needed by an 'inreg' parameter.
6244       const FunctionType *FTy = Func->getFunctionType();
6245       const AttrListPtr &Attrs = Func->getAttributes();
6246
6247       if (!Attrs.isEmpty() && !Func->isVarArg()) {
6248         unsigned InRegCount = 0;
6249         unsigned Idx = 1;
6250
6251         for (FunctionType::param_iterator I = FTy->param_begin(),
6252              E = FTy->param_end(); I != E; ++I, ++Idx)
6253           if (Attrs.paramHasAttr(Idx, Attribute::InReg))
6254             // FIXME: should only count parameters that are lowered to integers.
6255             InRegCount += (TD->getTypeSizeInBits(*I) + 31) / 32;
6256
6257         if (InRegCount > 2) {
6258           cerr << "Nest register in use - reduce number of inreg parameters!\n";
6259           abort();
6260         }
6261       }
6262       break;
6263     }
6264     case CallingConv::X86_FastCall:
6265     case CallingConv::Fast:
6266       // Pass 'nest' parameter in EAX.
6267       // Must be kept in sync with X86CallingConv.td
6268       NestReg = X86::EAX;
6269       break;
6270     }
6271
6272     SDValue OutChains[4];
6273     SDValue Addr, Disp;
6274
6275     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
6276                        DAG.getConstant(10, MVT::i32));
6277     Disp = DAG.getNode(ISD::SUB, dl, MVT::i32, FPtr, Addr);
6278
6279     const unsigned char MOV32ri = TII->getBaseOpcodeFor(X86::MOV32ri);
6280     const unsigned char N86Reg = RegInfo->getX86RegNum(NestReg);
6281     OutChains[0] = DAG.getStore(Root, dl,
6282                                 DAG.getConstant(MOV32ri|N86Reg, MVT::i8),
6283                                 Trmp, TrmpAddr, 0);
6284
6285     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
6286                        DAG.getConstant(1, MVT::i32));
6287     OutChains[1] = DAG.getStore(Root, dl, Nest, Addr, TrmpAddr, 1, false, 1);
6288
6289     const unsigned char JMP = TII->getBaseOpcodeFor(X86::JMP);
6290     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
6291                        DAG.getConstant(5, MVT::i32));
6292     OutChains[2] = DAG.getStore(Root, dl, DAG.getConstant(JMP, MVT::i8), Addr,
6293                                 TrmpAddr, 5, false, 1);
6294
6295     Addr = DAG.getNode(ISD::ADD, dl, MVT::i32, Trmp,
6296                        DAG.getConstant(6, MVT::i32));
6297     OutChains[3] = DAG.getStore(Root, dl, Disp, Addr, TrmpAddr, 6, false, 1);
6298
6299     SDValue Ops[] =
6300       { Trmp, DAG.getNode(ISD::TokenFactor, dl, MVT::Other, OutChains, 4) };
6301     return DAG.getMergeValues(Ops, 2, dl);
6302   }
6303 }
6304
6305 SDValue X86TargetLowering::LowerFLT_ROUNDS_(SDValue Op, SelectionDAG &DAG) {
6306   /*
6307    The rounding mode is in bits 11:10 of FPSR, and has the following
6308    settings:
6309      00 Round to nearest
6310      01 Round to -inf
6311      10 Round to +inf
6312      11 Round to 0
6313
6314   FLT_ROUNDS, on the other hand, expects the following:
6315     -1 Undefined
6316      0 Round to 0
6317      1 Round to nearest
6318      2 Round to +inf
6319      3 Round to -inf
6320
6321   To perform the conversion, we do:
6322     (((((FPSR & 0x800) >> 11) | ((FPSR & 0x400) >> 9)) + 1) & 3)
6323   */
6324
6325   MachineFunction &MF = DAG.getMachineFunction();
6326   const TargetMachine &TM = MF.getTarget();
6327   const TargetFrameInfo &TFI = *TM.getFrameInfo();
6328   unsigned StackAlignment = TFI.getStackAlignment();
6329   MVT VT = Op.getValueType();
6330   DebugLoc dl = Op.getDebugLoc();
6331
6332   // Save FP Control Word to stack slot
6333   int SSFI = MF.getFrameInfo()->CreateStackObject(2, StackAlignment);
6334   SDValue StackSlot = DAG.getFrameIndex(SSFI, getPointerTy());
6335
6336   SDValue Chain = DAG.getNode(X86ISD::FNSTCW16m, dl, MVT::Other,
6337                               DAG.getEntryNode(), StackSlot);
6338
6339   // Load FP Control Word from stack slot
6340   SDValue CWD = DAG.getLoad(MVT::i16, dl, Chain, StackSlot, NULL, 0);
6341
6342   // Transform as necessary
6343   SDValue CWD1 =
6344     DAG.getNode(ISD::SRL, dl, MVT::i16,
6345                 DAG.getNode(ISD::AND, dl, MVT::i16,
6346                             CWD, DAG.getConstant(0x800, MVT::i16)),
6347                 DAG.getConstant(11, MVT::i8));
6348   SDValue CWD2 =
6349     DAG.getNode(ISD::SRL, dl, MVT::i16,
6350                 DAG.getNode(ISD::AND, dl, MVT::i16,
6351                             CWD, DAG.getConstant(0x400, MVT::i16)),
6352                 DAG.getConstant(9, MVT::i8));
6353
6354   SDValue RetVal =
6355     DAG.getNode(ISD::AND, dl, MVT::i16,
6356                 DAG.getNode(ISD::ADD, dl, MVT::i16,
6357                             DAG.getNode(ISD::OR, dl, MVT::i16, CWD1, CWD2),
6358                             DAG.getConstant(1, MVT::i16)),
6359                 DAG.getConstant(3, MVT::i16));
6360
6361
6362   return DAG.getNode((VT.getSizeInBits() < 16 ?
6363                       ISD::TRUNCATE : ISD::ZERO_EXTEND), dl, VT, RetVal);
6364 }
6365
6366 SDValue X86TargetLowering::LowerCTLZ(SDValue Op, SelectionDAG &DAG) {
6367   MVT VT = Op.getValueType();
6368   MVT OpVT = VT;
6369   unsigned NumBits = VT.getSizeInBits();
6370   DebugLoc dl = Op.getDebugLoc();
6371
6372   Op = Op.getOperand(0);
6373   if (VT == MVT::i8) {
6374     // Zero extend to i32 since there is not an i8 bsr.
6375     OpVT = MVT::i32;
6376     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
6377   }
6378
6379   // Issue a bsr (scan bits in reverse) which also sets EFLAGS.
6380   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6381   Op = DAG.getNode(X86ISD::BSR, dl, VTs, Op);
6382
6383   // If src is zero (i.e. bsr sets ZF), returns NumBits.
6384   SmallVector<SDValue, 4> Ops;
6385   Ops.push_back(Op);
6386   Ops.push_back(DAG.getConstant(NumBits+NumBits-1, OpVT));
6387   Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6388   Ops.push_back(Op.getValue(1));
6389   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
6390
6391   // Finally xor with NumBits-1.
6392   Op = DAG.getNode(ISD::XOR, dl, OpVT, Op, DAG.getConstant(NumBits-1, OpVT));
6393
6394   if (VT == MVT::i8)
6395     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
6396   return Op;
6397 }
6398
6399 SDValue X86TargetLowering::LowerCTTZ(SDValue Op, SelectionDAG &DAG) {
6400   MVT VT = Op.getValueType();
6401   MVT OpVT = VT;
6402   unsigned NumBits = VT.getSizeInBits();
6403   DebugLoc dl = Op.getDebugLoc();
6404
6405   Op = Op.getOperand(0);
6406   if (VT == MVT::i8) {
6407     OpVT = MVT::i32;
6408     Op = DAG.getNode(ISD::ZERO_EXTEND, dl, OpVT, Op);
6409   }
6410
6411   // Issue a bsf (scan bits forward) which also sets EFLAGS.
6412   SDVTList VTs = DAG.getVTList(OpVT, MVT::i32);
6413   Op = DAG.getNode(X86ISD::BSF, dl, VTs, Op);
6414
6415   // If src is zero (i.e. bsf sets ZF), returns NumBits.
6416   SmallVector<SDValue, 4> Ops;
6417   Ops.push_back(Op);
6418   Ops.push_back(DAG.getConstant(NumBits, OpVT));
6419   Ops.push_back(DAG.getConstant(X86::COND_E, MVT::i8));
6420   Ops.push_back(Op.getValue(1));
6421   Op = DAG.getNode(X86ISD::CMOV, dl, OpVT, &Ops[0], 4);
6422
6423   if (VT == MVT::i8)
6424     Op = DAG.getNode(ISD::TRUNCATE, dl, MVT::i8, Op);
6425   return Op;
6426 }
6427
6428 SDValue X86TargetLowering::LowerMUL_V2I64(SDValue Op, SelectionDAG &DAG) {
6429   MVT VT = Op.getValueType();
6430   assert(VT == MVT::v2i64 && "Only know how to lower V2I64 multiply");
6431   DebugLoc dl = Op.getDebugLoc();
6432
6433   //  ulong2 Ahi = __builtin_ia32_psrlqi128( a, 32);
6434   //  ulong2 Bhi = __builtin_ia32_psrlqi128( b, 32);
6435   //  ulong2 AloBlo = __builtin_ia32_pmuludq128( a, b );
6436   //  ulong2 AloBhi = __builtin_ia32_pmuludq128( a, Bhi );
6437   //  ulong2 AhiBlo = __builtin_ia32_pmuludq128( Ahi, b );
6438   //
6439   //  AloBhi = __builtin_ia32_psllqi128( AloBhi, 32 );
6440   //  AhiBlo = __builtin_ia32_psllqi128( AhiBlo, 32 );
6441   //  return AloBlo + AloBhi + AhiBlo;
6442
6443   SDValue A = Op.getOperand(0);
6444   SDValue B = Op.getOperand(1);
6445
6446   SDValue Ahi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6447                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6448                        A, DAG.getConstant(32, MVT::i32));
6449   SDValue Bhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6450                        DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
6451                        B, DAG.getConstant(32, MVT::i32));
6452   SDValue AloBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6453                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6454                        A, B);
6455   SDValue AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6456                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6457                        A, Bhi);
6458   SDValue AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6459                        DAG.getConstant(Intrinsic::x86_sse2_pmulu_dq, MVT::i32),
6460                        Ahi, B);
6461   AloBhi = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6462                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6463                        AloBhi, DAG.getConstant(32, MVT::i32));
6464   AhiBlo = DAG.getNode(ISD::INTRINSIC_WO_CHAIN, dl, VT,
6465                        DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
6466                        AhiBlo, DAG.getConstant(32, MVT::i32));
6467   SDValue Res = DAG.getNode(ISD::ADD, dl, VT, AloBlo, AloBhi);
6468   Res = DAG.getNode(ISD::ADD, dl, VT, Res, AhiBlo);
6469   return Res;
6470 }
6471
6472
6473 SDValue X86TargetLowering::LowerXALUO(SDValue Op, SelectionDAG &DAG) {
6474   // Lower the "add/sub/mul with overflow" instruction into a regular ins plus
6475   // a "setcc" instruction that checks the overflow flag. The "brcond" lowering
6476   // looks for this combo and may remove the "setcc" instruction if the "setcc"
6477   // has only one use.
6478   SDNode *N = Op.getNode();
6479   SDValue LHS = N->getOperand(0);
6480   SDValue RHS = N->getOperand(1);
6481   unsigned BaseOp = 0;
6482   unsigned Cond = 0;
6483   DebugLoc dl = Op.getDebugLoc();
6484
6485   switch (Op.getOpcode()) {
6486   default: assert(0 && "Unknown ovf instruction!");
6487   case ISD::SADDO:
6488     // A subtract of one will be selected as a INC. Note that INC doesn't
6489     // set CF, so we can't do this for UADDO.
6490     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6491       if (C->getAPIntValue() == 1) {
6492         BaseOp = X86ISD::INC;
6493         Cond = X86::COND_O;
6494         break;
6495       }
6496     BaseOp = X86ISD::ADD;
6497     Cond = X86::COND_O;
6498     break;
6499   case ISD::UADDO:
6500     BaseOp = X86ISD::ADD;
6501     Cond = X86::COND_B;
6502     break;
6503   case ISD::SSUBO:
6504     // A subtract of one will be selected as a DEC. Note that DEC doesn't
6505     // set CF, so we can't do this for USUBO.
6506     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op))
6507       if (C->getAPIntValue() == 1) {
6508         BaseOp = X86ISD::DEC;
6509         Cond = X86::COND_O;
6510         break;
6511       }
6512     BaseOp = X86ISD::SUB;
6513     Cond = X86::COND_O;
6514     break;
6515   case ISD::USUBO:
6516     BaseOp = X86ISD::SUB;
6517     Cond = X86::COND_B;
6518     break;
6519   case ISD::SMULO:
6520     BaseOp = X86ISD::SMUL;
6521     Cond = X86::COND_O;
6522     break;
6523   case ISD::UMULO:
6524     BaseOp = X86ISD::UMUL;
6525     Cond = X86::COND_B;
6526     break;
6527   }
6528
6529   // Also sets EFLAGS.
6530   SDVTList VTs = DAG.getVTList(N->getValueType(0), MVT::i32);
6531   SDValue Sum = DAG.getNode(BaseOp, dl, VTs, LHS, RHS);
6532
6533   SDValue SetCC =
6534     DAG.getNode(X86ISD::SETCC, dl, N->getValueType(1),
6535                 DAG.getConstant(Cond, MVT::i32), SDValue(Sum.getNode(), 1));
6536
6537   DAG.ReplaceAllUsesOfValueWith(SDValue(N, 1), SetCC);
6538   return Sum;
6539 }
6540
6541 SDValue X86TargetLowering::LowerCMP_SWAP(SDValue Op, SelectionDAG &DAG) {
6542   MVT T = Op.getValueType();
6543   DebugLoc dl = Op.getDebugLoc();
6544   unsigned Reg = 0;
6545   unsigned size = 0;
6546   switch(T.getSimpleVT()) {
6547   default:
6548     assert(false && "Invalid value type!");
6549   case MVT::i8:  Reg = X86::AL;  size = 1; break;
6550   case MVT::i16: Reg = X86::AX;  size = 2; break;
6551   case MVT::i32: Reg = X86::EAX; size = 4; break;
6552   case MVT::i64:
6553     assert(Subtarget->is64Bit() && "Node not type legal!");
6554     Reg = X86::RAX; size = 8;
6555     break;
6556   }
6557   SDValue cpIn = DAG.getCopyToReg(Op.getOperand(0), dl, Reg,
6558                                     Op.getOperand(2), SDValue());
6559   SDValue Ops[] = { cpIn.getValue(0),
6560                     Op.getOperand(1),
6561                     Op.getOperand(3),
6562                     DAG.getTargetConstant(size, MVT::i8),
6563                     cpIn.getValue(1) };
6564   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6565   SDValue Result = DAG.getNode(X86ISD::LCMPXCHG_DAG, dl, Tys, Ops, 5);
6566   SDValue cpOut =
6567     DAG.getCopyFromReg(Result.getValue(0), dl, Reg, T, Result.getValue(1));
6568   return cpOut;
6569 }
6570
6571 SDValue X86TargetLowering::LowerREADCYCLECOUNTER(SDValue Op,
6572                                                  SelectionDAG &DAG) {
6573   assert(Subtarget->is64Bit() && "Result not type legalized?");
6574   SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6575   SDValue TheChain = Op.getOperand(0);
6576   DebugLoc dl = Op.getDebugLoc();
6577   SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
6578   SDValue rax = DAG.getCopyFromReg(rd, dl, X86::RAX, MVT::i64, rd.getValue(1));
6579   SDValue rdx = DAG.getCopyFromReg(rax.getValue(1), dl, X86::RDX, MVT::i64,
6580                                    rax.getValue(2));
6581   SDValue Tmp = DAG.getNode(ISD::SHL, dl, MVT::i64, rdx,
6582                             DAG.getConstant(32, MVT::i8));
6583   SDValue Ops[] = {
6584     DAG.getNode(ISD::OR, dl, MVT::i64, rax, Tmp),
6585     rdx.getValue(1)
6586   };
6587   return DAG.getMergeValues(Ops, 2, dl);
6588 }
6589
6590 SDValue X86TargetLowering::LowerLOAD_SUB(SDValue Op, SelectionDAG &DAG) {
6591   SDNode *Node = Op.getNode();
6592   DebugLoc dl = Node->getDebugLoc();
6593   MVT T = Node->getValueType(0);
6594   SDValue negOp = DAG.getNode(ISD::SUB, dl, T,
6595                               DAG.getConstant(0, T), Node->getOperand(2));
6596   return DAG.getAtomic(ISD::ATOMIC_LOAD_ADD, dl,
6597                        cast<AtomicSDNode>(Node)->getMemoryVT(),
6598                        Node->getOperand(0),
6599                        Node->getOperand(1), negOp,
6600                        cast<AtomicSDNode>(Node)->getSrcValue(),
6601                        cast<AtomicSDNode>(Node)->getAlignment());
6602 }
6603
6604 /// LowerOperation - Provide custom lowering hooks for some operations.
6605 ///
6606 SDValue X86TargetLowering::LowerOperation(SDValue Op, SelectionDAG &DAG) {
6607   switch (Op.getOpcode()) {
6608   default: assert(0 && "Should not custom lower this!");
6609   case ISD::ATOMIC_CMP_SWAP:    return LowerCMP_SWAP(Op,DAG);
6610   case ISD::ATOMIC_LOAD_SUB:    return LowerLOAD_SUB(Op,DAG);
6611   case ISD::BUILD_VECTOR:       return LowerBUILD_VECTOR(Op, DAG);
6612   case ISD::VECTOR_SHUFFLE:     return LowerVECTOR_SHUFFLE(Op, DAG);
6613   case ISD::EXTRACT_VECTOR_ELT: return LowerEXTRACT_VECTOR_ELT(Op, DAG);
6614   case ISD::INSERT_VECTOR_ELT:  return LowerINSERT_VECTOR_ELT(Op, DAG);
6615   case ISD::SCALAR_TO_VECTOR:   return LowerSCALAR_TO_VECTOR(Op, DAG);
6616   case ISD::ConstantPool:       return LowerConstantPool(Op, DAG);
6617   case ISD::GlobalAddress:      return LowerGlobalAddress(Op, DAG);
6618   case ISD::GlobalTLSAddress:   return LowerGlobalTLSAddress(Op, DAG);
6619   case ISD::ExternalSymbol:     return LowerExternalSymbol(Op, DAG);
6620   case ISD::SHL_PARTS:
6621   case ISD::SRA_PARTS:
6622   case ISD::SRL_PARTS:          return LowerShift(Op, DAG);
6623   case ISD::SINT_TO_FP:         return LowerSINT_TO_FP(Op, DAG);
6624   case ISD::UINT_TO_FP:         return LowerUINT_TO_FP(Op, DAG);
6625   case ISD::FP_TO_SINT:         return LowerFP_TO_SINT(Op, DAG);
6626   case ISD::FP_TO_UINT:         return LowerFP_TO_UINT(Op, DAG);
6627   case ISD::FABS:               return LowerFABS(Op, DAG);
6628   case ISD::FNEG:               return LowerFNEG(Op, DAG);
6629   case ISD::FCOPYSIGN:          return LowerFCOPYSIGN(Op, DAG);
6630   case ISD::SETCC:              return LowerSETCC(Op, DAG);
6631   case ISD::VSETCC:             return LowerVSETCC(Op, DAG);
6632   case ISD::SELECT:             return LowerSELECT(Op, DAG);
6633   case ISD::BRCOND:             return LowerBRCOND(Op, DAG);
6634   case ISD::JumpTable:          return LowerJumpTable(Op, DAG);
6635   case ISD::CALL:               return LowerCALL(Op, DAG);
6636   case ISD::RET:                return LowerRET(Op, DAG);
6637   case ISD::FORMAL_ARGUMENTS:   return LowerFORMAL_ARGUMENTS(Op, DAG);
6638   case ISD::VASTART:            return LowerVASTART(Op, DAG);
6639   case ISD::VAARG:              return LowerVAARG(Op, DAG);
6640   case ISD::VACOPY:             return LowerVACOPY(Op, DAG);
6641   case ISD::INTRINSIC_WO_CHAIN: return LowerINTRINSIC_WO_CHAIN(Op, DAG);
6642   case ISD::RETURNADDR:         return LowerRETURNADDR(Op, DAG);
6643   case ISD::FRAMEADDR:          return LowerFRAMEADDR(Op, DAG);
6644   case ISD::FRAME_TO_ARGS_OFFSET:
6645                                 return LowerFRAME_TO_ARGS_OFFSET(Op, DAG);
6646   case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
6647   case ISD::EH_RETURN:          return LowerEH_RETURN(Op, DAG);
6648   case ISD::TRAMPOLINE:         return LowerTRAMPOLINE(Op, DAG);
6649   case ISD::FLT_ROUNDS_:        return LowerFLT_ROUNDS_(Op, DAG);
6650   case ISD::CTLZ:               return LowerCTLZ(Op, DAG);
6651   case ISD::CTTZ:               return LowerCTTZ(Op, DAG);
6652   case ISD::MUL:                return LowerMUL_V2I64(Op, DAG);
6653   case ISD::SADDO:
6654   case ISD::UADDO:
6655   case ISD::SSUBO:
6656   case ISD::USUBO:
6657   case ISD::SMULO:
6658   case ISD::UMULO:              return LowerXALUO(Op, DAG);
6659   case ISD::READCYCLECOUNTER:   return LowerREADCYCLECOUNTER(Op, DAG);
6660   }
6661 }
6662
6663 void X86TargetLowering::
6664 ReplaceATOMIC_BINARY_64(SDNode *Node, SmallVectorImpl<SDValue>&Results,
6665                         SelectionDAG &DAG, unsigned NewOp) {
6666   MVT T = Node->getValueType(0);
6667   DebugLoc dl = Node->getDebugLoc();
6668   assert (T == MVT::i64 && "Only know how to expand i64 atomics");
6669
6670   SDValue Chain = Node->getOperand(0);
6671   SDValue In1 = Node->getOperand(1);
6672   SDValue In2L = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
6673                              Node->getOperand(2), DAG.getIntPtrConstant(0));
6674   SDValue In2H = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32,
6675                              Node->getOperand(2), DAG.getIntPtrConstant(1));
6676   // This is a generalized SDNode, not an AtomicSDNode, so it doesn't
6677   // have a MemOperand.  Pass the info through as a normal operand.
6678   SDValue LSI = DAG.getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
6679   SDValue Ops[] = { Chain, In1, In2L, In2H, LSI };
6680   SDVTList Tys = DAG.getVTList(MVT::i32, MVT::i32, MVT::Other);
6681   SDValue Result = DAG.getNode(NewOp, dl, Tys, Ops, 5);
6682   SDValue OpsF[] = { Result.getValue(0), Result.getValue(1)};
6683   Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
6684   Results.push_back(Result.getValue(2));
6685 }
6686
6687 /// ReplaceNodeResults - Replace a node with an illegal result type
6688 /// with a new node built out of custom code.
6689 void X86TargetLowering::ReplaceNodeResults(SDNode *N,
6690                                            SmallVectorImpl<SDValue>&Results,
6691                                            SelectionDAG &DAG) {
6692   DebugLoc dl = N->getDebugLoc();
6693   switch (N->getOpcode()) {
6694   default:
6695     assert(false && "Do not know how to custom type legalize this operation!");
6696     return;
6697   case ISD::FP_TO_SINT: {
6698     std::pair<SDValue,SDValue> Vals =
6699         FP_TO_INTHelper(SDValue(N, 0), DAG, true);
6700     SDValue FIST = Vals.first, StackSlot = Vals.second;
6701     if (FIST.getNode() != 0) {
6702       MVT VT = N->getValueType(0);
6703       // Return a load from the stack slot.
6704       Results.push_back(DAG.getLoad(VT, dl, FIST, StackSlot, NULL, 0));
6705     }
6706     return;
6707   }
6708   case ISD::READCYCLECOUNTER: {
6709     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6710     SDValue TheChain = N->getOperand(0);
6711     SDValue rd = DAG.getNode(X86ISD::RDTSC_DAG, dl, Tys, &TheChain, 1);
6712     SDValue eax = DAG.getCopyFromReg(rd, dl, X86::EAX, MVT::i32,
6713                                      rd.getValue(1));
6714     SDValue edx = DAG.getCopyFromReg(eax.getValue(1), dl, X86::EDX, MVT::i32,
6715                                      eax.getValue(2));
6716     // Use a buildpair to merge the two 32-bit values into a 64-bit one.
6717     SDValue Ops[] = { eax, edx };
6718     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, Ops, 2));
6719     Results.push_back(edx.getValue(1));
6720     return;
6721   }
6722   case ISD::ATOMIC_CMP_SWAP: {
6723     MVT T = N->getValueType(0);
6724     assert (T == MVT::i64 && "Only know how to expand i64 Cmp and Swap");
6725     SDValue cpInL, cpInH;
6726     cpInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
6727                         DAG.getConstant(0, MVT::i32));
6728     cpInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(2),
6729                         DAG.getConstant(1, MVT::i32));
6730     cpInL = DAG.getCopyToReg(N->getOperand(0), dl, X86::EAX, cpInL, SDValue());
6731     cpInH = DAG.getCopyToReg(cpInL.getValue(0), dl, X86::EDX, cpInH,
6732                              cpInL.getValue(1));
6733     SDValue swapInL, swapInH;
6734     swapInL = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
6735                           DAG.getConstant(0, MVT::i32));
6736     swapInH = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, N->getOperand(3),
6737                           DAG.getConstant(1, MVT::i32));
6738     swapInL = DAG.getCopyToReg(cpInH.getValue(0), dl, X86::EBX, swapInL,
6739                                cpInH.getValue(1));
6740     swapInH = DAG.getCopyToReg(swapInL.getValue(0), dl, X86::ECX, swapInH,
6741                                swapInL.getValue(1));
6742     SDValue Ops[] = { swapInH.getValue(0),
6743                       N->getOperand(1),
6744                       swapInH.getValue(1) };
6745     SDVTList Tys = DAG.getVTList(MVT::Other, MVT::Flag);
6746     SDValue Result = DAG.getNode(X86ISD::LCMPXCHG8_DAG, dl, Tys, Ops, 3);
6747     SDValue cpOutL = DAG.getCopyFromReg(Result.getValue(0), dl, X86::EAX,
6748                                         MVT::i32, Result.getValue(1));
6749     SDValue cpOutH = DAG.getCopyFromReg(cpOutL.getValue(1), dl, X86::EDX,
6750                                         MVT::i32, cpOutL.getValue(2));
6751     SDValue OpsF[] = { cpOutL.getValue(0), cpOutH.getValue(0)};
6752     Results.push_back(DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, OpsF, 2));
6753     Results.push_back(cpOutH.getValue(1));
6754     return;
6755   }
6756   case ISD::ATOMIC_LOAD_ADD:
6757     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMADD64_DAG);
6758     return;
6759   case ISD::ATOMIC_LOAD_AND:
6760     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMAND64_DAG);
6761     return;
6762   case ISD::ATOMIC_LOAD_NAND:
6763     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMNAND64_DAG);
6764     return;
6765   case ISD::ATOMIC_LOAD_OR:
6766     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMOR64_DAG);
6767     return;
6768   case ISD::ATOMIC_LOAD_SUB:
6769     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSUB64_DAG);
6770     return;
6771   case ISD::ATOMIC_LOAD_XOR:
6772     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMXOR64_DAG);
6773     return;
6774   case ISD::ATOMIC_SWAP:
6775     ReplaceATOMIC_BINARY_64(N, Results, DAG, X86ISD::ATOMSWAP64_DAG);
6776     return;
6777   }
6778 }
6779
6780 const char *X86TargetLowering::getTargetNodeName(unsigned Opcode) const {
6781   switch (Opcode) {
6782   default: return NULL;
6783   case X86ISD::BSF:                return "X86ISD::BSF";
6784   case X86ISD::BSR:                return "X86ISD::BSR";
6785   case X86ISD::SHLD:               return "X86ISD::SHLD";
6786   case X86ISD::SHRD:               return "X86ISD::SHRD";
6787   case X86ISD::FAND:               return "X86ISD::FAND";
6788   case X86ISD::FOR:                return "X86ISD::FOR";
6789   case X86ISD::FXOR:               return "X86ISD::FXOR";
6790   case X86ISD::FSRL:               return "X86ISD::FSRL";
6791   case X86ISD::FILD:               return "X86ISD::FILD";
6792   case X86ISD::FILD_FLAG:          return "X86ISD::FILD_FLAG";
6793   case X86ISD::FP_TO_INT16_IN_MEM: return "X86ISD::FP_TO_INT16_IN_MEM";
6794   case X86ISD::FP_TO_INT32_IN_MEM: return "X86ISD::FP_TO_INT32_IN_MEM";
6795   case X86ISD::FP_TO_INT64_IN_MEM: return "X86ISD::FP_TO_INT64_IN_MEM";
6796   case X86ISD::FLD:                return "X86ISD::FLD";
6797   case X86ISD::FST:                return "X86ISD::FST";
6798   case X86ISD::CALL:               return "X86ISD::CALL";
6799   case X86ISD::TAILCALL:           return "X86ISD::TAILCALL";
6800   case X86ISD::RDTSC_DAG:          return "X86ISD::RDTSC_DAG";
6801   case X86ISD::BT:                 return "X86ISD::BT";
6802   case X86ISD::CMP:                return "X86ISD::CMP";
6803   case X86ISD::COMI:               return "X86ISD::COMI";
6804   case X86ISD::UCOMI:              return "X86ISD::UCOMI";
6805   case X86ISD::SETCC:              return "X86ISD::SETCC";
6806   case X86ISD::CMOV:               return "X86ISD::CMOV";
6807   case X86ISD::BRCOND:             return "X86ISD::BRCOND";
6808   case X86ISD::RET_FLAG:           return "X86ISD::RET_FLAG";
6809   case X86ISD::REP_STOS:           return "X86ISD::REP_STOS";
6810   case X86ISD::REP_MOVS:           return "X86ISD::REP_MOVS";
6811   case X86ISD::GlobalBaseReg:      return "X86ISD::GlobalBaseReg";
6812   case X86ISD::Wrapper:            return "X86ISD::Wrapper";
6813   case X86ISD::PEXTRB:             return "X86ISD::PEXTRB";
6814   case X86ISD::PEXTRW:             return "X86ISD::PEXTRW";
6815   case X86ISD::INSERTPS:           return "X86ISD::INSERTPS";
6816   case X86ISD::PINSRB:             return "X86ISD::PINSRB";
6817   case X86ISD::PINSRW:             return "X86ISD::PINSRW";
6818   case X86ISD::PSHUFB:             return "X86ISD::PSHUFB";
6819   case X86ISD::FMAX:               return "X86ISD::FMAX";
6820   case X86ISD::FMIN:               return "X86ISD::FMIN";
6821   case X86ISD::FRSQRT:             return "X86ISD::FRSQRT";
6822   case X86ISD::FRCP:               return "X86ISD::FRCP";
6823   case X86ISD::TLSADDR:            return "X86ISD::TLSADDR";
6824   case X86ISD::SegmentBaseAddress: return "X86ISD::SegmentBaseAddress";
6825   case X86ISD::EH_RETURN:          return "X86ISD::EH_RETURN";
6826   case X86ISD::TC_RETURN:          return "X86ISD::TC_RETURN";
6827   case X86ISD::FNSTCW16m:          return "X86ISD::FNSTCW16m";
6828   case X86ISD::LCMPXCHG_DAG:       return "X86ISD::LCMPXCHG_DAG";
6829   case X86ISD::LCMPXCHG8_DAG:      return "X86ISD::LCMPXCHG8_DAG";
6830   case X86ISD::ATOMADD64_DAG:      return "X86ISD::ATOMADD64_DAG";
6831   case X86ISD::ATOMSUB64_DAG:      return "X86ISD::ATOMSUB64_DAG";
6832   case X86ISD::ATOMOR64_DAG:       return "X86ISD::ATOMOR64_DAG";
6833   case X86ISD::ATOMXOR64_DAG:      return "X86ISD::ATOMXOR64_DAG";
6834   case X86ISD::ATOMAND64_DAG:      return "X86ISD::ATOMAND64_DAG";
6835   case X86ISD::ATOMNAND64_DAG:     return "X86ISD::ATOMNAND64_DAG";
6836   case X86ISD::VZEXT_MOVL:         return "X86ISD::VZEXT_MOVL";
6837   case X86ISD::VZEXT_LOAD:         return "X86ISD::VZEXT_LOAD";
6838   case X86ISD::VSHL:               return "X86ISD::VSHL";
6839   case X86ISD::VSRL:               return "X86ISD::VSRL";
6840   case X86ISD::CMPPD:              return "X86ISD::CMPPD";
6841   case X86ISD::CMPPS:              return "X86ISD::CMPPS";
6842   case X86ISD::PCMPEQB:            return "X86ISD::PCMPEQB";
6843   case X86ISD::PCMPEQW:            return "X86ISD::PCMPEQW";
6844   case X86ISD::PCMPEQD:            return "X86ISD::PCMPEQD";
6845   case X86ISD::PCMPEQQ:            return "X86ISD::PCMPEQQ";
6846   case X86ISD::PCMPGTB:            return "X86ISD::PCMPGTB";
6847   case X86ISD::PCMPGTW:            return "X86ISD::PCMPGTW";
6848   case X86ISD::PCMPGTD:            return "X86ISD::PCMPGTD";
6849   case X86ISD::PCMPGTQ:            return "X86ISD::PCMPGTQ";
6850   case X86ISD::ADD:                return "X86ISD::ADD";
6851   case X86ISD::SUB:                return "X86ISD::SUB";
6852   case X86ISD::SMUL:               return "X86ISD::SMUL";
6853   case X86ISD::UMUL:               return "X86ISD::UMUL";
6854   case X86ISD::INC:                return "X86ISD::INC";
6855   case X86ISD::DEC:                return "X86ISD::DEC";
6856   case X86ISD::MUL_IMM:            return "X86ISD::MUL_IMM";
6857   }
6858 }
6859
6860 // isLegalAddressingMode - Return true if the addressing mode represented
6861 // by AM is legal for this target, for a load/store of the specified type.
6862 bool X86TargetLowering::isLegalAddressingMode(const AddrMode &AM,
6863                                               const Type *Ty) const {
6864   // X86 supports extremely general addressing modes.
6865
6866   // X86 allows a sign-extended 32-bit immediate field as a displacement.
6867   if (AM.BaseOffs <= -(1LL << 32) || AM.BaseOffs >= (1LL << 32)-1)
6868     return false;
6869
6870   if (AM.BaseGV) {
6871     // We can only fold this if we don't need an extra load.
6872     if (Subtarget->GVRequiresExtraLoad(AM.BaseGV, getTargetMachine(), false))
6873       return false;
6874     // If BaseGV requires a register, we cannot also have a BaseReg.
6875     if (Subtarget->GVRequiresRegister(AM.BaseGV, getTargetMachine(), false) &&
6876         AM.HasBaseReg)
6877       return false;
6878
6879     // X86-64 only supports addr of globals in small code model.
6880     if (Subtarget->is64Bit()) {
6881       if (getTargetMachine().getCodeModel() != CodeModel::Small)
6882         return false;
6883       // If lower 4G is not available, then we must use rip-relative addressing.
6884       if (AM.BaseOffs || AM.Scale > 1)
6885         return false;
6886     }
6887   }
6888
6889   switch (AM.Scale) {
6890   case 0:
6891   case 1:
6892   case 2:
6893   case 4:
6894   case 8:
6895     // These scales always work.
6896     break;
6897   case 3:
6898   case 5:
6899   case 9:
6900     // These scales are formed with basereg+scalereg.  Only accept if there is
6901     // no basereg yet.
6902     if (AM.HasBaseReg)
6903       return false;
6904     break;
6905   default:  // Other stuff never works.
6906     return false;
6907   }
6908
6909   return true;
6910 }
6911
6912
6913 bool X86TargetLowering::isTruncateFree(const Type *Ty1, const Type *Ty2) const {
6914   if (!Ty1->isInteger() || !Ty2->isInteger())
6915     return false;
6916   unsigned NumBits1 = Ty1->getPrimitiveSizeInBits();
6917   unsigned NumBits2 = Ty2->getPrimitiveSizeInBits();
6918   if (NumBits1 <= NumBits2)
6919     return false;
6920   return Subtarget->is64Bit() || NumBits1 < 64;
6921 }
6922
6923 bool X86TargetLowering::isTruncateFree(MVT VT1, MVT VT2) const {
6924   if (!VT1.isInteger() || !VT2.isInteger())
6925     return false;
6926   unsigned NumBits1 = VT1.getSizeInBits();
6927   unsigned NumBits2 = VT2.getSizeInBits();
6928   if (NumBits1 <= NumBits2)
6929     return false;
6930   return Subtarget->is64Bit() || NumBits1 < 64;
6931 }
6932
6933 bool X86TargetLowering::isZExtFree(const Type *Ty1, const Type *Ty2) const {
6934   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
6935   return Ty1 == Type::Int32Ty && Ty2 == Type::Int64Ty && Subtarget->is64Bit();
6936 }
6937
6938 bool X86TargetLowering::isZExtFree(MVT VT1, MVT VT2) const {
6939   // x86-64 implicitly zero-extends 32-bit results in 64-bit registers.
6940   return VT1 == MVT::i32 && VT2 == MVT::i64 && Subtarget->is64Bit();
6941 }
6942
6943 bool X86TargetLowering::isNarrowingProfitable(MVT VT1, MVT VT2) const {
6944   // i16 instructions are longer (0x66 prefix) and potentially slower.
6945   return !(VT1 == MVT::i32 && VT2 == MVT::i16);
6946 }
6947
6948 /// isShuffleMaskLegal - Targets can use this to indicate that they only
6949 /// support *some* VECTOR_SHUFFLE operations, those with specific masks.
6950 /// By default, if a target supports the VECTOR_SHUFFLE node, all mask values
6951 /// are assumed to be legal.
6952 bool
6953 X86TargetLowering::isShuffleMaskLegal(const SmallVectorImpl<int> &M, 
6954                                       MVT VT) const {
6955   // Only do shuffles on 128-bit vector types for now.
6956   if (VT.getSizeInBits() == 64)
6957     return false;
6958
6959   // FIXME: pshufb, blends, palignr, shifts.
6960   return (VT.getVectorNumElements() == 2 ||
6961           ShuffleVectorSDNode::isSplatMask(&M[0], VT) ||
6962           isMOVLMask(M, VT) ||
6963           isSHUFPMask(M, VT) ||
6964           isPSHUFDMask(M, VT) ||
6965           isPSHUFHWMask(M, VT) ||
6966           isPSHUFLWMask(M, VT) ||
6967           isUNPCKLMask(M, VT) ||
6968           isUNPCKHMask(M, VT) ||
6969           isUNPCKL_v_undef_Mask(M, VT) ||
6970           isUNPCKH_v_undef_Mask(M, VT));
6971 }
6972
6973 bool
6974 X86TargetLowering::isVectorClearMaskLegal(const SmallVectorImpl<int> &Mask,
6975                                           MVT VT) const {
6976   unsigned NumElts = VT.getVectorNumElements();
6977   // FIXME: This collection of masks seems suspect.
6978   if (NumElts == 2)
6979     return true;
6980   if (NumElts == 4 && VT.getSizeInBits() == 128) {
6981     return (isMOVLMask(Mask, VT)  ||
6982             isCommutedMOVLMask(Mask, VT, true) ||
6983             isSHUFPMask(Mask, VT) ||
6984             isCommutedSHUFPMask(Mask, VT));
6985   }
6986   return false;
6987 }
6988
6989 //===----------------------------------------------------------------------===//
6990 //                           X86 Scheduler Hooks
6991 //===----------------------------------------------------------------------===//
6992
6993 // private utility function
6994 MachineBasicBlock *
6995 X86TargetLowering::EmitAtomicBitwiseWithCustomInserter(MachineInstr *bInstr,
6996                                                        MachineBasicBlock *MBB,
6997                                                        unsigned regOpc,
6998                                                        unsigned immOpc,
6999                                                        unsigned LoadOpc,
7000                                                        unsigned CXchgOpc,
7001                                                        unsigned copyOpc,
7002                                                        unsigned notOpc,
7003                                                        unsigned EAXreg,
7004                                                        TargetRegisterClass *RC,
7005                                                        bool invSrc) const {
7006   // For the atomic bitwise operator, we generate
7007   //   thisMBB:
7008   //   newMBB:
7009   //     ld  t1 = [bitinstr.addr]
7010   //     op  t2 = t1, [bitinstr.val]
7011   //     mov EAX = t1
7012   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
7013   //     bz  newMBB
7014   //     fallthrough -->nextMBB
7015   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7016   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7017   MachineFunction::iterator MBBIter = MBB;
7018   ++MBBIter;
7019
7020   /// First build the CFG
7021   MachineFunction *F = MBB->getParent();
7022   MachineBasicBlock *thisMBB = MBB;
7023   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7024   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7025   F->insert(MBBIter, newMBB);
7026   F->insert(MBBIter, nextMBB);
7027
7028   // Move all successors to thisMBB to nextMBB
7029   nextMBB->transferSuccessors(thisMBB);
7030
7031   // Update thisMBB to fall through to newMBB
7032   thisMBB->addSuccessor(newMBB);
7033
7034   // newMBB jumps to itself and fall through to nextMBB
7035   newMBB->addSuccessor(nextMBB);
7036   newMBB->addSuccessor(newMBB);
7037
7038   // Insert instructions into newMBB based on incoming instruction
7039   assert(bInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7040          "unexpected number of operands");
7041   DebugLoc dl = bInstr->getDebugLoc();
7042   MachineOperand& destOper = bInstr->getOperand(0);
7043   MachineOperand* argOpers[2 + X86AddrNumOperands];
7044   int numArgs = bInstr->getNumOperands() - 1;
7045   for (int i=0; i < numArgs; ++i)
7046     argOpers[i] = &bInstr->getOperand(i+1);
7047
7048   // x86 address has 4 operands: base, index, scale, and displacement
7049   int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7050   int valArgIndx = lastAddrIndx + 1;
7051
7052   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
7053   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(LoadOpc), t1);
7054   for (int i=0; i <= lastAddrIndx; ++i)
7055     (*MIB).addOperand(*argOpers[i]);
7056
7057   unsigned tt = F->getRegInfo().createVirtualRegister(RC);
7058   if (invSrc) {
7059     MIB = BuildMI(newMBB, dl, TII->get(notOpc), tt).addReg(t1);
7060   }
7061   else
7062     tt = t1;
7063
7064   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
7065   assert((argOpers[valArgIndx]->isReg() ||
7066           argOpers[valArgIndx]->isImm()) &&
7067          "invalid operand");
7068   if (argOpers[valArgIndx]->isReg())
7069     MIB = BuildMI(newMBB, dl, TII->get(regOpc), t2);
7070   else
7071     MIB = BuildMI(newMBB, dl, TII->get(immOpc), t2);
7072   MIB.addReg(tt);
7073   (*MIB).addOperand(*argOpers[valArgIndx]);
7074
7075   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), EAXreg);
7076   MIB.addReg(t1);
7077
7078   MIB = BuildMI(newMBB, dl, TII->get(CXchgOpc));
7079   for (int i=0; i <= lastAddrIndx; ++i)
7080     (*MIB).addOperand(*argOpers[i]);
7081   MIB.addReg(t2);
7082   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7083   (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7084
7085   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), destOper.getReg());
7086   MIB.addReg(EAXreg);
7087
7088   // insert branch
7089   BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
7090
7091   F->DeleteMachineInstr(bInstr);   // The pseudo instruction is gone now.
7092   return nextMBB;
7093 }
7094
7095 // private utility function:  64 bit atomics on 32 bit host.
7096 MachineBasicBlock *
7097 X86TargetLowering::EmitAtomicBit6432WithCustomInserter(MachineInstr *bInstr,
7098                                                        MachineBasicBlock *MBB,
7099                                                        unsigned regOpcL,
7100                                                        unsigned regOpcH,
7101                                                        unsigned immOpcL,
7102                                                        unsigned immOpcH,
7103                                                        bool invSrc) const {
7104   // For the atomic bitwise operator, we generate
7105   //   thisMBB (instructions are in pairs, except cmpxchg8b)
7106   //     ld t1,t2 = [bitinstr.addr]
7107   //   newMBB:
7108   //     out1, out2 = phi (thisMBB, t1/t2) (newMBB, t3/t4)
7109   //     op  t5, t6 <- out1, out2, [bitinstr.val]
7110   //      (for SWAP, substitute:  mov t5, t6 <- [bitinstr.val])
7111   //     mov ECX, EBX <- t5, t6
7112   //     mov EAX, EDX <- t1, t2
7113   //     cmpxchg8b [bitinstr.addr]  [EAX, EDX, EBX, ECX implicit]
7114   //     mov t3, t4 <- EAX, EDX
7115   //     bz  newMBB
7116   //     result in out1, out2
7117   //     fallthrough -->nextMBB
7118
7119   const TargetRegisterClass *RC = X86::GR32RegisterClass;
7120   const unsigned LoadOpc = X86::MOV32rm;
7121   const unsigned copyOpc = X86::MOV32rr;
7122   const unsigned NotOpc = X86::NOT32r;
7123   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7124   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7125   MachineFunction::iterator MBBIter = MBB;
7126   ++MBBIter;
7127
7128   /// First build the CFG
7129   MachineFunction *F = MBB->getParent();
7130   MachineBasicBlock *thisMBB = MBB;
7131   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7132   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7133   F->insert(MBBIter, newMBB);
7134   F->insert(MBBIter, nextMBB);
7135
7136   // Move all successors to thisMBB to nextMBB
7137   nextMBB->transferSuccessors(thisMBB);
7138
7139   // Update thisMBB to fall through to newMBB
7140   thisMBB->addSuccessor(newMBB);
7141
7142   // newMBB jumps to itself and fall through to nextMBB
7143   newMBB->addSuccessor(nextMBB);
7144   newMBB->addSuccessor(newMBB);
7145
7146   DebugLoc dl = bInstr->getDebugLoc();
7147   // Insert instructions into newMBB based on incoming instruction
7148   // There are 8 "real" operands plus 9 implicit def/uses, ignored here.
7149   assert(bInstr->getNumOperands() < X86AddrNumOperands + 14 &&
7150          "unexpected number of operands");
7151   MachineOperand& dest1Oper = bInstr->getOperand(0);
7152   MachineOperand& dest2Oper = bInstr->getOperand(1);
7153   MachineOperand* argOpers[2 + X86AddrNumOperands];
7154   for (int i=0; i < 2 + X86AddrNumOperands; ++i)
7155     argOpers[i] = &bInstr->getOperand(i+2);
7156
7157   // x86 address has 4 operands: base, index, scale, and displacement
7158   int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7159
7160   unsigned t1 = F->getRegInfo().createVirtualRegister(RC);
7161   MachineInstrBuilder MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t1);
7162   for (int i=0; i <= lastAddrIndx; ++i)
7163     (*MIB).addOperand(*argOpers[i]);
7164   unsigned t2 = F->getRegInfo().createVirtualRegister(RC);
7165   MIB = BuildMI(thisMBB, dl, TII->get(LoadOpc), t2);
7166   // add 4 to displacement.
7167   for (int i=0; i <= lastAddrIndx-2; ++i)
7168     (*MIB).addOperand(*argOpers[i]);
7169   MachineOperand newOp3 = *(argOpers[3]);
7170   if (newOp3.isImm())
7171     newOp3.setImm(newOp3.getImm()+4);
7172   else
7173     newOp3.setOffset(newOp3.getOffset()+4);
7174   (*MIB).addOperand(newOp3);
7175   (*MIB).addOperand(*argOpers[lastAddrIndx]);
7176
7177   // t3/4 are defined later, at the bottom of the loop
7178   unsigned t3 = F->getRegInfo().createVirtualRegister(RC);
7179   unsigned t4 = F->getRegInfo().createVirtualRegister(RC);
7180   BuildMI(newMBB, dl, TII->get(X86::PHI), dest1Oper.getReg())
7181     .addReg(t1).addMBB(thisMBB).addReg(t3).addMBB(newMBB);
7182   BuildMI(newMBB, dl, TII->get(X86::PHI), dest2Oper.getReg())
7183     .addReg(t2).addMBB(thisMBB).addReg(t4).addMBB(newMBB);
7184
7185   unsigned tt1 = F->getRegInfo().createVirtualRegister(RC);
7186   unsigned tt2 = F->getRegInfo().createVirtualRegister(RC);
7187   if (invSrc) {
7188     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt1).addReg(t1);
7189     MIB = BuildMI(newMBB, dl, TII->get(NotOpc), tt2).addReg(t2);
7190   } else {
7191     tt1 = t1;
7192     tt2 = t2;
7193   }
7194
7195   int valArgIndx = lastAddrIndx + 1;
7196   assert((argOpers[valArgIndx]->isReg() ||
7197           argOpers[valArgIndx]->isImm()) &&
7198          "invalid operand");
7199   unsigned t5 = F->getRegInfo().createVirtualRegister(RC);
7200   unsigned t6 = F->getRegInfo().createVirtualRegister(RC);
7201   if (argOpers[valArgIndx]->isReg())
7202     MIB = BuildMI(newMBB, dl, TII->get(regOpcL), t5);
7203   else
7204     MIB = BuildMI(newMBB, dl, TII->get(immOpcL), t5);
7205   if (regOpcL != X86::MOV32rr)
7206     MIB.addReg(tt1);
7207   (*MIB).addOperand(*argOpers[valArgIndx]);
7208   assert(argOpers[valArgIndx + 1]->isReg() ==
7209          argOpers[valArgIndx]->isReg());
7210   assert(argOpers[valArgIndx + 1]->isImm() ==
7211          argOpers[valArgIndx]->isImm());
7212   if (argOpers[valArgIndx + 1]->isReg())
7213     MIB = BuildMI(newMBB, dl, TII->get(regOpcH), t6);
7214   else
7215     MIB = BuildMI(newMBB, dl, TII->get(immOpcH), t6);
7216   if (regOpcH != X86::MOV32rr)
7217     MIB.addReg(tt2);
7218   (*MIB).addOperand(*argOpers[valArgIndx + 1]);
7219
7220   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EAX);
7221   MIB.addReg(t1);
7222   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EDX);
7223   MIB.addReg(t2);
7224
7225   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::EBX);
7226   MIB.addReg(t5);
7227   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), X86::ECX);
7228   MIB.addReg(t6);
7229
7230   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG8B));
7231   for (int i=0; i <= lastAddrIndx; ++i)
7232     (*MIB).addOperand(*argOpers[i]);
7233
7234   assert(bInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7235   (*MIB).addMemOperand(*F, *bInstr->memoperands_begin());
7236
7237   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t3);
7238   MIB.addReg(X86::EAX);
7239   MIB = BuildMI(newMBB, dl, TII->get(copyOpc), t4);
7240   MIB.addReg(X86::EDX);
7241
7242   // insert branch
7243   BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
7244
7245   F->DeleteMachineInstr(bInstr);   // The pseudo instruction is gone now.
7246   return nextMBB;
7247 }
7248
7249 // private utility function
7250 MachineBasicBlock *
7251 X86TargetLowering::EmitAtomicMinMaxWithCustomInserter(MachineInstr *mInstr,
7252                                                       MachineBasicBlock *MBB,
7253                                                       unsigned cmovOpc) const {
7254   // For the atomic min/max operator, we generate
7255   //   thisMBB:
7256   //   newMBB:
7257   //     ld t1 = [min/max.addr]
7258   //     mov t2 = [min/max.val]
7259   //     cmp  t1, t2
7260   //     cmov[cond] t2 = t1
7261   //     mov EAX = t1
7262   //     lcs dest = [bitinstr.addr], t2  [EAX is implicit]
7263   //     bz   newMBB
7264   //     fallthrough -->nextMBB
7265   //
7266   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7267   const BasicBlock *LLVM_BB = MBB->getBasicBlock();
7268   MachineFunction::iterator MBBIter = MBB;
7269   ++MBBIter;
7270
7271   /// First build the CFG
7272   MachineFunction *F = MBB->getParent();
7273   MachineBasicBlock *thisMBB = MBB;
7274   MachineBasicBlock *newMBB = F->CreateMachineBasicBlock(LLVM_BB);
7275   MachineBasicBlock *nextMBB = F->CreateMachineBasicBlock(LLVM_BB);
7276   F->insert(MBBIter, newMBB);
7277   F->insert(MBBIter, nextMBB);
7278
7279   // Move all successors to thisMBB to nextMBB
7280   nextMBB->transferSuccessors(thisMBB);
7281
7282   // Update thisMBB to fall through to newMBB
7283   thisMBB->addSuccessor(newMBB);
7284
7285   // newMBB jumps to newMBB and fall through to nextMBB
7286   newMBB->addSuccessor(nextMBB);
7287   newMBB->addSuccessor(newMBB);
7288
7289   DebugLoc dl = mInstr->getDebugLoc();
7290   // Insert instructions into newMBB based on incoming instruction
7291   assert(mInstr->getNumOperands() < X86AddrNumOperands + 4 &&
7292          "unexpected number of operands");
7293   MachineOperand& destOper = mInstr->getOperand(0);
7294   MachineOperand* argOpers[2 + X86AddrNumOperands];
7295   int numArgs = mInstr->getNumOperands() - 1;
7296   for (int i=0; i < numArgs; ++i)
7297     argOpers[i] = &mInstr->getOperand(i+1);
7298
7299   // x86 address has 4 operands: base, index, scale, and displacement
7300   int lastAddrIndx = X86AddrNumOperands - 1; // [0,3]
7301   int valArgIndx = lastAddrIndx + 1;
7302
7303   unsigned t1 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7304   MachineInstrBuilder MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rm), t1);
7305   for (int i=0; i <= lastAddrIndx; ++i)
7306     (*MIB).addOperand(*argOpers[i]);
7307
7308   // We only support register and immediate values
7309   assert((argOpers[valArgIndx]->isReg() ||
7310           argOpers[valArgIndx]->isImm()) &&
7311          "invalid operand");
7312
7313   unsigned t2 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7314   if (argOpers[valArgIndx]->isReg())
7315     MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
7316   else
7317     MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), t2);
7318   (*MIB).addOperand(*argOpers[valArgIndx]);
7319
7320   MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), X86::EAX);
7321   MIB.addReg(t1);
7322
7323   MIB = BuildMI(newMBB, dl, TII->get(X86::CMP32rr));
7324   MIB.addReg(t1);
7325   MIB.addReg(t2);
7326
7327   // Generate movc
7328   unsigned t3 = F->getRegInfo().createVirtualRegister(X86::GR32RegisterClass);
7329   MIB = BuildMI(newMBB, dl, TII->get(cmovOpc),t3);
7330   MIB.addReg(t2);
7331   MIB.addReg(t1);
7332
7333   // Cmp and exchange if none has modified the memory location
7334   MIB = BuildMI(newMBB, dl, TII->get(X86::LCMPXCHG32));
7335   for (int i=0; i <= lastAddrIndx; ++i)
7336     (*MIB).addOperand(*argOpers[i]);
7337   MIB.addReg(t3);
7338   assert(mInstr->hasOneMemOperand() && "Unexpected number of memoperand");
7339   (*MIB).addMemOperand(*F, *mInstr->memoperands_begin());
7340
7341   MIB = BuildMI(newMBB, dl, TII->get(X86::MOV32rr), destOper.getReg());
7342   MIB.addReg(X86::EAX);
7343
7344   // insert branch
7345   BuildMI(newMBB, dl, TII->get(X86::JNE)).addMBB(newMBB);
7346
7347   F->DeleteMachineInstr(mInstr);   // The pseudo instruction is gone now.
7348   return nextMBB;
7349 }
7350
7351
7352 MachineBasicBlock *
7353 X86TargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
7354                                                MachineBasicBlock *BB) const {
7355   DebugLoc dl = MI->getDebugLoc();
7356   const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
7357   switch (MI->getOpcode()) {
7358   default: assert(false && "Unexpected instr type to insert");
7359   case X86::CMOV_V1I64:
7360   case X86::CMOV_FR32:
7361   case X86::CMOV_FR64:
7362   case X86::CMOV_V4F32:
7363   case X86::CMOV_V2F64:
7364   case X86::CMOV_V2I64: {
7365     // To "insert" a SELECT_CC instruction, we actually have to insert the
7366     // diamond control-flow pattern.  The incoming instruction knows the
7367     // destination vreg to set, the condition code register to branch on, the
7368     // true/false values to select between, and a branch opcode to use.
7369     const BasicBlock *LLVM_BB = BB->getBasicBlock();
7370     MachineFunction::iterator It = BB;
7371     ++It;
7372
7373     //  thisMBB:
7374     //  ...
7375     //   TrueVal = ...
7376     //   cmpTY ccX, r1, r2
7377     //   bCC copy1MBB
7378     //   fallthrough --> copy0MBB
7379     MachineBasicBlock *thisMBB = BB;
7380     MachineFunction *F = BB->getParent();
7381     MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
7382     MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
7383     unsigned Opc =
7384       X86::GetCondBranchFromCond((X86::CondCode)MI->getOperand(3).getImm());
7385     BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
7386     F->insert(It, copy0MBB);
7387     F->insert(It, sinkMBB);
7388     // Update machine-CFG edges by transferring all successors of the current
7389     // block to the new block which will contain the Phi node for the select.
7390     sinkMBB->transferSuccessors(BB);
7391
7392     // Add the true and fallthrough blocks as its successors.
7393     BB->addSuccessor(copy0MBB);
7394     BB->addSuccessor(sinkMBB);
7395
7396     //  copy0MBB:
7397     //   %FalseValue = ...
7398     //   # fallthrough to sinkMBB
7399     BB = copy0MBB;
7400
7401     // Update machine-CFG edges
7402     BB->addSuccessor(sinkMBB);
7403
7404     //  sinkMBB:
7405     //   %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
7406     //  ...
7407     BB = sinkMBB;
7408     BuildMI(BB, dl, TII->get(X86::PHI), MI->getOperand(0).getReg())
7409       .addReg(MI->getOperand(1).getReg()).addMBB(copy0MBB)
7410       .addReg(MI->getOperand(2).getReg()).addMBB(thisMBB);
7411
7412     F->DeleteMachineInstr(MI);   // The pseudo instruction is gone now.
7413     return BB;
7414   }
7415
7416   case X86::FP32_TO_INT16_IN_MEM:
7417   case X86::FP32_TO_INT32_IN_MEM:
7418   case X86::FP32_TO_INT64_IN_MEM:
7419   case X86::FP64_TO_INT16_IN_MEM:
7420   case X86::FP64_TO_INT32_IN_MEM:
7421   case X86::FP64_TO_INT64_IN_MEM:
7422   case X86::FP80_TO_INT16_IN_MEM:
7423   case X86::FP80_TO_INT32_IN_MEM:
7424   case X86::FP80_TO_INT64_IN_MEM: {
7425     // Change the floating point control register to use "round towards zero"
7426     // mode when truncating to an integer value.
7427     MachineFunction *F = BB->getParent();
7428     int CWFrameIdx = F->getFrameInfo()->CreateStackObject(2, 2);
7429     addFrameReference(BuildMI(BB, dl, TII->get(X86::FNSTCW16m)), CWFrameIdx);
7430
7431     // Load the old value of the high byte of the control word...
7432     unsigned OldCW =
7433       F->getRegInfo().createVirtualRegister(X86::GR16RegisterClass);
7434     addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16rm), OldCW),
7435                       CWFrameIdx);
7436
7437     // Set the high part to be round to zero...
7438     addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mi)), CWFrameIdx)
7439       .addImm(0xC7F);
7440
7441     // Reload the modified control word now...
7442     addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
7443
7444     // Restore the memory image of control word to original value
7445     addFrameReference(BuildMI(BB, dl, TII->get(X86::MOV16mr)), CWFrameIdx)
7446       .addReg(OldCW);
7447
7448     // Get the X86 opcode to use.
7449     unsigned Opc;
7450     switch (MI->getOpcode()) {
7451     default: assert(0 && "illegal opcode!");
7452     case X86::FP32_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m32; break;
7453     case X86::FP32_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m32; break;
7454     case X86::FP32_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m32; break;
7455     case X86::FP64_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m64; break;
7456     case X86::FP64_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m64; break;
7457     case X86::FP64_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m64; break;
7458     case X86::FP80_TO_INT16_IN_MEM: Opc = X86::IST_Fp16m80; break;
7459     case X86::FP80_TO_INT32_IN_MEM: Opc = X86::IST_Fp32m80; break;
7460     case X86::FP80_TO_INT64_IN_MEM: Opc = X86::IST_Fp64m80; break;
7461     }
7462
7463     X86AddressMode AM;
7464     MachineOperand &Op = MI->getOperand(0);
7465     if (Op.isReg()) {
7466       AM.BaseType = X86AddressMode::RegBase;
7467       AM.Base.Reg = Op.getReg();
7468     } else {
7469       AM.BaseType = X86AddressMode::FrameIndexBase;
7470       AM.Base.FrameIndex = Op.getIndex();
7471     }
7472     Op = MI->getOperand(1);
7473     if (Op.isImm())
7474       AM.Scale = Op.getImm();
7475     Op = MI->getOperand(2);
7476     if (Op.isImm())
7477       AM.IndexReg = Op.getImm();
7478     Op = MI->getOperand(3);
7479     if (Op.isGlobal()) {
7480       AM.GV = Op.getGlobal();
7481     } else {
7482       AM.Disp = Op.getImm();
7483     }
7484     addFullAddress(BuildMI(BB, dl, TII->get(Opc)), AM)
7485                       .addReg(MI->getOperand(X86AddrNumOperands).getReg());
7486
7487     // Reload the original control word now.
7488     addFrameReference(BuildMI(BB, dl, TII->get(X86::FLDCW16m)), CWFrameIdx);
7489
7490     F->DeleteMachineInstr(MI);   // The pseudo instruction is gone now.
7491     return BB;
7492   }
7493   case X86::ATOMAND32:
7494     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
7495                                                X86::AND32ri, X86::MOV32rm,
7496                                                X86::LCMPXCHG32, X86::MOV32rr,
7497                                                X86::NOT32r, X86::EAX,
7498                                                X86::GR32RegisterClass);
7499   case X86::ATOMOR32:
7500     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR32rr,
7501                                                X86::OR32ri, X86::MOV32rm,
7502                                                X86::LCMPXCHG32, X86::MOV32rr,
7503                                                X86::NOT32r, X86::EAX,
7504                                                X86::GR32RegisterClass);
7505   case X86::ATOMXOR32:
7506     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR32rr,
7507                                                X86::XOR32ri, X86::MOV32rm,
7508                                                X86::LCMPXCHG32, X86::MOV32rr,
7509                                                X86::NOT32r, X86::EAX,
7510                                                X86::GR32RegisterClass);
7511   case X86::ATOMNAND32:
7512     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND32rr,
7513                                                X86::AND32ri, X86::MOV32rm,
7514                                                X86::LCMPXCHG32, X86::MOV32rr,
7515                                                X86::NOT32r, X86::EAX,
7516                                                X86::GR32RegisterClass, true);
7517   case X86::ATOMMIN32:
7518     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL32rr);
7519   case X86::ATOMMAX32:
7520     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG32rr);
7521   case X86::ATOMUMIN32:
7522     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB32rr);
7523   case X86::ATOMUMAX32:
7524     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA32rr);
7525
7526   case X86::ATOMAND16:
7527     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7528                                                X86::AND16ri, X86::MOV16rm,
7529                                                X86::LCMPXCHG16, X86::MOV16rr,
7530                                                X86::NOT16r, X86::AX,
7531                                                X86::GR16RegisterClass);
7532   case X86::ATOMOR16:
7533     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR16rr,
7534                                                X86::OR16ri, X86::MOV16rm,
7535                                                X86::LCMPXCHG16, X86::MOV16rr,
7536                                                X86::NOT16r, X86::AX,
7537                                                X86::GR16RegisterClass);
7538   case X86::ATOMXOR16:
7539     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR16rr,
7540                                                X86::XOR16ri, X86::MOV16rm,
7541                                                X86::LCMPXCHG16, X86::MOV16rr,
7542                                                X86::NOT16r, X86::AX,
7543                                                X86::GR16RegisterClass);
7544   case X86::ATOMNAND16:
7545     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND16rr,
7546                                                X86::AND16ri, X86::MOV16rm,
7547                                                X86::LCMPXCHG16, X86::MOV16rr,
7548                                                X86::NOT16r, X86::AX,
7549                                                X86::GR16RegisterClass, true);
7550   case X86::ATOMMIN16:
7551     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL16rr);
7552   case X86::ATOMMAX16:
7553     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG16rr);
7554   case X86::ATOMUMIN16:
7555     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB16rr);
7556   case X86::ATOMUMAX16:
7557     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA16rr);
7558
7559   case X86::ATOMAND8:
7560     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7561                                                X86::AND8ri, X86::MOV8rm,
7562                                                X86::LCMPXCHG8, X86::MOV8rr,
7563                                                X86::NOT8r, X86::AL,
7564                                                X86::GR8RegisterClass);
7565   case X86::ATOMOR8:
7566     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR8rr,
7567                                                X86::OR8ri, X86::MOV8rm,
7568                                                X86::LCMPXCHG8, X86::MOV8rr,
7569                                                X86::NOT8r, X86::AL,
7570                                                X86::GR8RegisterClass);
7571   case X86::ATOMXOR8:
7572     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR8rr,
7573                                                X86::XOR8ri, X86::MOV8rm,
7574                                                X86::LCMPXCHG8, X86::MOV8rr,
7575                                                X86::NOT8r, X86::AL,
7576                                                X86::GR8RegisterClass);
7577   case X86::ATOMNAND8:
7578     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND8rr,
7579                                                X86::AND8ri, X86::MOV8rm,
7580                                                X86::LCMPXCHG8, X86::MOV8rr,
7581                                                X86::NOT8r, X86::AL,
7582                                                X86::GR8RegisterClass, true);
7583   // FIXME: There are no CMOV8 instructions; MIN/MAX need some other way.
7584   // This group is for 64-bit host.
7585   case X86::ATOMAND64:
7586     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7587                                                X86::AND64ri32, X86::MOV64rm,
7588                                                X86::LCMPXCHG64, X86::MOV64rr,
7589                                                X86::NOT64r, X86::RAX,
7590                                                X86::GR64RegisterClass);
7591   case X86::ATOMOR64:
7592     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::OR64rr,
7593                                                X86::OR64ri32, X86::MOV64rm,
7594                                                X86::LCMPXCHG64, X86::MOV64rr,
7595                                                X86::NOT64r, X86::RAX,
7596                                                X86::GR64RegisterClass);
7597   case X86::ATOMXOR64:
7598     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::XOR64rr,
7599                                                X86::XOR64ri32, X86::MOV64rm,
7600                                                X86::LCMPXCHG64, X86::MOV64rr,
7601                                                X86::NOT64r, X86::RAX,
7602                                                X86::GR64RegisterClass);
7603   case X86::ATOMNAND64:
7604     return EmitAtomicBitwiseWithCustomInserter(MI, BB, X86::AND64rr,
7605                                                X86::AND64ri32, X86::MOV64rm,
7606                                                X86::LCMPXCHG64, X86::MOV64rr,
7607                                                X86::NOT64r, X86::RAX,
7608                                                X86::GR64RegisterClass, true);
7609   case X86::ATOMMIN64:
7610     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVL64rr);
7611   case X86::ATOMMAX64:
7612     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVG64rr);
7613   case X86::ATOMUMIN64:
7614     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVB64rr);
7615   case X86::ATOMUMAX64:
7616     return EmitAtomicMinMaxWithCustomInserter(MI, BB, X86::CMOVA64rr);
7617
7618   // This group does 64-bit operations on a 32-bit host.
7619   case X86::ATOMAND6432:
7620     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7621                                                X86::AND32rr, X86::AND32rr,
7622                                                X86::AND32ri, X86::AND32ri,
7623                                                false);
7624   case X86::ATOMOR6432:
7625     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7626                                                X86::OR32rr, X86::OR32rr,
7627                                                X86::OR32ri, X86::OR32ri,
7628                                                false);
7629   case X86::ATOMXOR6432:
7630     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7631                                                X86::XOR32rr, X86::XOR32rr,
7632                                                X86::XOR32ri, X86::XOR32ri,
7633                                                false);
7634   case X86::ATOMNAND6432:
7635     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7636                                                X86::AND32rr, X86::AND32rr,
7637                                                X86::AND32ri, X86::AND32ri,
7638                                                true);
7639   case X86::ATOMADD6432:
7640     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7641                                                X86::ADD32rr, X86::ADC32rr,
7642                                                X86::ADD32ri, X86::ADC32ri,
7643                                                false);
7644   case X86::ATOMSUB6432:
7645     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7646                                                X86::SUB32rr, X86::SBB32rr,
7647                                                X86::SUB32ri, X86::SBB32ri,
7648                                                false);
7649   case X86::ATOMSWAP6432:
7650     return EmitAtomicBit6432WithCustomInserter(MI, BB,
7651                                                X86::MOV32rr, X86::MOV32rr,
7652                                                X86::MOV32ri, X86::MOV32ri,
7653                                                false);
7654   }
7655 }
7656
7657 //===----------------------------------------------------------------------===//
7658 //                           X86 Optimization Hooks
7659 //===----------------------------------------------------------------------===//
7660
7661 void X86TargetLowering::computeMaskedBitsForTargetNode(const SDValue Op,
7662                                                        const APInt &Mask,
7663                                                        APInt &KnownZero,
7664                                                        APInt &KnownOne,
7665                                                        const SelectionDAG &DAG,
7666                                                        unsigned Depth) const {
7667   unsigned Opc = Op.getOpcode();
7668   assert((Opc >= ISD::BUILTIN_OP_END ||
7669           Opc == ISD::INTRINSIC_WO_CHAIN ||
7670           Opc == ISD::INTRINSIC_W_CHAIN ||
7671           Opc == ISD::INTRINSIC_VOID) &&
7672          "Should use MaskedValueIsZero if you don't know whether Op"
7673          " is a target node!");
7674
7675   KnownZero = KnownOne = APInt(Mask.getBitWidth(), 0);   // Don't know anything.
7676   switch (Opc) {
7677   default: break;
7678   case X86ISD::ADD:
7679   case X86ISD::SUB:
7680   case X86ISD::SMUL:
7681   case X86ISD::UMUL:
7682   case X86ISD::INC:
7683   case X86ISD::DEC:
7684     // These nodes' second result is a boolean.
7685     if (Op.getResNo() == 0)
7686       break;
7687     // Fallthrough
7688   case X86ISD::SETCC:
7689     KnownZero |= APInt::getHighBitsSet(Mask.getBitWidth(),
7690                                        Mask.getBitWidth() - 1);
7691     break;
7692   }
7693 }
7694
7695 /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the
7696 /// node is a GlobalAddress + offset.
7697 bool X86TargetLowering::isGAPlusOffset(SDNode *N,
7698                                        GlobalValue* &GA, int64_t &Offset) const{
7699   if (N->getOpcode() == X86ISD::Wrapper) {
7700     if (isa<GlobalAddressSDNode>(N->getOperand(0))) {
7701       GA = cast<GlobalAddressSDNode>(N->getOperand(0))->getGlobal();
7702       Offset = cast<GlobalAddressSDNode>(N->getOperand(0))->getOffset();
7703       return true;
7704     }
7705   }
7706   return TargetLowering::isGAPlusOffset(N, GA, Offset);
7707 }
7708
7709 static bool isBaseAlignmentOfN(unsigned N, SDNode *Base,
7710                                const TargetLowering &TLI) {
7711   GlobalValue *GV;
7712   int64_t Offset = 0;
7713   if (TLI.isGAPlusOffset(Base, GV, Offset))
7714     return (GV->getAlignment() >= N && (Offset % N) == 0);
7715   // DAG combine handles the stack object case.
7716   return false;
7717 }
7718
7719 static bool EltsFromConsecutiveLoads(ShuffleVectorSDNode *N, unsigned NumElems,
7720                                      MVT EVT, LoadSDNode *&LDBase,
7721                                      unsigned &LastLoadedElt,
7722                                      SelectionDAG &DAG, MachineFrameInfo *MFI,
7723                                      const TargetLowering &TLI) {
7724   LDBase = NULL;
7725   LastLoadedElt = -1U;
7726   for (unsigned i = 0; i < NumElems; ++i) {
7727     if (N->getMaskElt(i) < 0) {
7728       if (!LDBase)
7729         return false;
7730       continue;
7731     }
7732
7733     SDValue Elt = DAG.getShuffleScalarElt(N, i);
7734     if (!Elt.getNode() ||
7735         (Elt.getOpcode() != ISD::UNDEF && !ISD::isNON_EXTLoad(Elt.getNode())))
7736       return false;
7737     if (!LDBase) {
7738       if (Elt.getNode()->getOpcode() == ISD::UNDEF)
7739         return false;
7740       LDBase = cast<LoadSDNode>(Elt.getNode());
7741       LastLoadedElt = i;
7742       continue;
7743     }
7744     if (Elt.getOpcode() == ISD::UNDEF)
7745       continue;
7746
7747     LoadSDNode *LD = cast<LoadSDNode>(Elt);
7748     if (!TLI.isConsecutiveLoad(LD, LDBase, EVT.getSizeInBits()/8, i, MFI))
7749       return false;
7750     LastLoadedElt = i;
7751   }
7752   return true;
7753 }
7754
7755 /// PerformShuffleCombine - Combine a vector_shuffle that is equal to
7756 /// build_vector load1, load2, load3, load4, <0, 1, 2, 3> into a 128-bit load
7757 /// if the load addresses are consecutive, non-overlapping, and in the right
7758 /// order.  In the case of v2i64, it will see if it can rewrite the
7759 /// shuffle to be an appropriate build vector so it can take advantage of
7760 // performBuildVectorCombine.
7761 static SDValue PerformShuffleCombine(SDNode *N, SelectionDAG &DAG,
7762                                      const TargetLowering &TLI) {
7763   DebugLoc dl = N->getDebugLoc();
7764   MVT VT = N->getValueType(0);
7765   MVT EVT = VT.getVectorElementType();
7766   ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N);
7767   unsigned NumElems = VT.getVectorNumElements();
7768
7769   if (VT.getSizeInBits() != 128)
7770     return SDValue();
7771
7772   // Try to combine a vector_shuffle into a 128-bit load.
7773   MachineFrameInfo *MFI = DAG.getMachineFunction().getFrameInfo();
7774   LoadSDNode *LD = NULL;
7775   unsigned LastLoadedElt;
7776   if (!EltsFromConsecutiveLoads(SVN, NumElems, EVT, LD, LastLoadedElt, DAG,
7777                                 MFI, TLI))
7778     return SDValue();
7779
7780   if (LastLoadedElt == NumElems - 1) {
7781     if (isBaseAlignmentOfN(16, LD->getBasePtr().getNode(), TLI))
7782       return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
7783                          LD->getSrcValue(), LD->getSrcValueOffset(),
7784                          LD->isVolatile());
7785     return DAG.getLoad(VT, dl, LD->getChain(), LD->getBasePtr(),
7786                        LD->getSrcValue(), LD->getSrcValueOffset(),
7787                        LD->isVolatile(), LD->getAlignment());
7788   } else if (NumElems == 4 && LastLoadedElt == 1) {
7789     SDVTList Tys = DAG.getVTList(MVT::v2i64, MVT::Other);
7790     SDValue Ops[] = { LD->getChain(), LD->getBasePtr() };
7791     SDValue ResNode = DAG.getNode(X86ISD::VZEXT_LOAD, dl, Tys, Ops, 2);
7792     return DAG.getNode(ISD::BIT_CONVERT, dl, VT, ResNode);
7793   }
7794   return SDValue();
7795 }
7796
7797 /// PerformSELECTCombine - Do target-specific dag combines on SELECT nodes.
7798 static SDValue PerformSELECTCombine(SDNode *N, SelectionDAG &DAG,
7799                                     const X86Subtarget *Subtarget) {
7800   DebugLoc DL = N->getDebugLoc();
7801   SDValue Cond = N->getOperand(0);
7802   // Get the LHS/RHS of the select.
7803   SDValue LHS = N->getOperand(1);
7804   SDValue RHS = N->getOperand(2);
7805   
7806   // If we have SSE[12] support, try to form min/max nodes.
7807   if (Subtarget->hasSSE2() &&
7808       (LHS.getValueType() == MVT::f32 || LHS.getValueType() == MVT::f64) &&
7809       Cond.getOpcode() == ISD::SETCC) {
7810     ISD::CondCode CC = cast<CondCodeSDNode>(Cond.getOperand(2))->get();
7811
7812     unsigned Opcode = 0;
7813     if (LHS == Cond.getOperand(0) && RHS == Cond.getOperand(1)) {
7814       switch (CC) {
7815       default: break;
7816       case ISD::SETOLE: // (X <= Y) ? X : Y -> min
7817       case ISD::SETULE:
7818       case ISD::SETLE:
7819         if (!UnsafeFPMath) break;
7820         // FALL THROUGH.
7821       case ISD::SETOLT:  // (X olt/lt Y) ? X : Y -> min
7822       case ISD::SETLT:
7823         Opcode = X86ISD::FMIN;
7824         break;
7825
7826       case ISD::SETOGT: // (X > Y) ? X : Y -> max
7827       case ISD::SETUGT:
7828       case ISD::SETGT:
7829         if (!UnsafeFPMath) break;
7830         // FALL THROUGH.
7831       case ISD::SETUGE:  // (X uge/ge Y) ? X : Y -> max
7832       case ISD::SETGE:
7833         Opcode = X86ISD::FMAX;
7834         break;
7835       }
7836     } else if (LHS == Cond.getOperand(1) && RHS == Cond.getOperand(0)) {
7837       switch (CC) {
7838       default: break;
7839       case ISD::SETOGT: // (X > Y) ? Y : X -> min
7840       case ISD::SETUGT:
7841       case ISD::SETGT:
7842         if (!UnsafeFPMath) break;
7843         // FALL THROUGH.
7844       case ISD::SETUGE:  // (X uge/ge Y) ? Y : X -> min
7845       case ISD::SETGE:
7846         Opcode = X86ISD::FMIN;
7847         break;
7848
7849       case ISD::SETOLE:   // (X <= Y) ? Y : X -> max
7850       case ISD::SETULE:
7851       case ISD::SETLE:
7852         if (!UnsafeFPMath) break;
7853         // FALL THROUGH.
7854       case ISD::SETOLT:   // (X olt/lt Y) ? Y : X -> max
7855       case ISD::SETLT:
7856         Opcode = X86ISD::FMAX;
7857         break;
7858       }
7859     }
7860
7861     if (Opcode)
7862       return DAG.getNode(Opcode, DL, N->getValueType(0), LHS, RHS);
7863   }
7864   
7865   // If this is a select between two integer constants, try to do some
7866   // optimizations.
7867   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(LHS)) {
7868     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(RHS))
7869       // Don't do this for crazy integer types.
7870       if (DAG.getTargetLoweringInfo().isTypeLegal(LHS.getValueType())) {
7871         // If this is efficiently invertible, canonicalize the LHSC/RHSC values
7872         // so that TrueC (the true value) is larger than FalseC.
7873         bool NeedsCondInvert = false;
7874         
7875         if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue()) &&
7876             // Efficiently invertible.
7877             (Cond.getOpcode() == ISD::SETCC ||  // setcc -> invertible.
7878              (Cond.getOpcode() == ISD::XOR &&   // xor(X, C) -> invertible.
7879               isa<ConstantSDNode>(Cond.getOperand(1))))) {
7880           NeedsCondInvert = true;
7881           std::swap(TrueC, FalseC);
7882         }
7883    
7884         // Optimize C ? 8 : 0 -> zext(C) << 3.  Likewise for any pow2/0.
7885         if (FalseC->getAPIntValue() == 0 &&
7886             TrueC->getAPIntValue().isPowerOf2()) {
7887           if (NeedsCondInvert) // Invert the condition if needed.
7888             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7889                                DAG.getConstant(1, Cond.getValueType()));
7890           
7891           // Zero extend the condition if needed.
7892           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, LHS.getValueType(), Cond);
7893           
7894           unsigned ShAmt = TrueC->getAPIntValue().logBase2();
7895           return DAG.getNode(ISD::SHL, DL, LHS.getValueType(), Cond,
7896                              DAG.getConstant(ShAmt, MVT::i8));
7897         }
7898         
7899         // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.
7900         if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
7901           if (NeedsCondInvert) // Invert the condition if needed.
7902             Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7903                                DAG.getConstant(1, Cond.getValueType()));
7904           
7905           // Zero extend the condition if needed.
7906           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
7907                              FalseC->getValueType(0), Cond);
7908           return DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
7909                              SDValue(FalseC, 0));
7910         }
7911         
7912         // Optimize cases that will turn into an LEA instruction.  This requires
7913         // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
7914         if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
7915           uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
7916           if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
7917           
7918           bool isFastMultiplier = false;
7919           if (Diff < 10) {
7920             switch ((unsigned char)Diff) {
7921               default: break;
7922               case 1:  // result = add base, cond
7923               case 2:  // result = lea base(    , cond*2)
7924               case 3:  // result = lea base(cond, cond*2)
7925               case 4:  // result = lea base(    , cond*4)
7926               case 5:  // result = lea base(cond, cond*4)
7927               case 8:  // result = lea base(    , cond*8)
7928               case 9:  // result = lea base(cond, cond*8)
7929                 isFastMultiplier = true;
7930                 break;
7931             }
7932           }
7933           
7934           if (isFastMultiplier) {
7935             APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
7936             if (NeedsCondInvert) // Invert the condition if needed.
7937               Cond = DAG.getNode(ISD::XOR, DL, Cond.getValueType(), Cond,
7938                                  DAG.getConstant(1, Cond.getValueType()));
7939             
7940             // Zero extend the condition if needed.
7941             Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
7942                                Cond);
7943             // Scale the condition by the difference.
7944             if (Diff != 1)
7945               Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
7946                                  DAG.getConstant(Diff, Cond.getValueType()));
7947             
7948             // Add the base if non-zero.
7949             if (FalseC->getAPIntValue() != 0)
7950               Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
7951                                  SDValue(FalseC, 0));
7952             return Cond;
7953           }
7954         }      
7955       }
7956   }
7957       
7958   return SDValue();
7959 }
7960
7961 /// Optimize X86ISD::CMOV [LHS, RHS, CONDCODE (e.g. X86::COND_NE), CONDVAL]
7962 static SDValue PerformCMOVCombine(SDNode *N, SelectionDAG &DAG,
7963                                   TargetLowering::DAGCombinerInfo &DCI) {
7964   DebugLoc DL = N->getDebugLoc();
7965   
7966   // If the flag operand isn't dead, don't touch this CMOV.
7967   if (N->getNumValues() == 2 && !SDValue(N, 1).use_empty())
7968     return SDValue();
7969   
7970   // If this is a select between two integer constants, try to do some
7971   // optimizations.  Note that the operands are ordered the opposite of SELECT
7972   // operands.
7973   if (ConstantSDNode *TrueC = dyn_cast<ConstantSDNode>(N->getOperand(1))) {
7974     if (ConstantSDNode *FalseC = dyn_cast<ConstantSDNode>(N->getOperand(0))) {
7975       // Canonicalize the TrueC/FalseC values so that TrueC (the true value) is
7976       // larger than FalseC (the false value).
7977       X86::CondCode CC = (X86::CondCode)N->getConstantOperandVal(2);
7978         
7979       if (TrueC->getAPIntValue().ult(FalseC->getAPIntValue())) {
7980         CC = X86::GetOppositeBranchCondition(CC);
7981         std::swap(TrueC, FalseC);
7982       }
7983         
7984       // Optimize C ? 8 : 0 -> zext(setcc(C)) << 3.  Likewise for any pow2/0.
7985       // This is efficient for any integer data type (including i8/i16) and
7986       // shift amount.
7987       if (FalseC->getAPIntValue() == 0 && TrueC->getAPIntValue().isPowerOf2()) {
7988         SDValue Cond = N->getOperand(3);
7989         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
7990                            DAG.getConstant(CC, MVT::i8), Cond);
7991       
7992         // Zero extend the condition if needed.
7993         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, TrueC->getValueType(0), Cond);
7994         
7995         unsigned ShAmt = TrueC->getAPIntValue().logBase2();
7996         Cond = DAG.getNode(ISD::SHL, DL, Cond.getValueType(), Cond,
7997                            DAG.getConstant(ShAmt, MVT::i8));
7998         if (N->getNumValues() == 2)  // Dead flag value?
7999           return DCI.CombineTo(N, Cond, SDValue());
8000         return Cond;
8001       }
8002       
8003       // Optimize Cond ? cst+1 : cst -> zext(setcc(C)+cst.  This is efficient
8004       // for any integer data type, including i8/i16.
8005       if (FalseC->getAPIntValue()+1 == TrueC->getAPIntValue()) {
8006         SDValue Cond = N->getOperand(3);
8007         Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8008                            DAG.getConstant(CC, MVT::i8), Cond);
8009         
8010         // Zero extend the condition if needed.
8011         Cond = DAG.getNode(ISD::ZERO_EXTEND, DL,
8012                            FalseC->getValueType(0), Cond);
8013         Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8014                            SDValue(FalseC, 0));
8015         
8016         if (N->getNumValues() == 2)  // Dead flag value?
8017           return DCI.CombineTo(N, Cond, SDValue());
8018         return Cond;
8019       }
8020       
8021       // Optimize cases that will turn into an LEA instruction.  This requires
8022       // an i32 or i64 and an efficient multiplier (1, 2, 3, 4, 5, 8, 9).
8023       if (N->getValueType(0) == MVT::i32 || N->getValueType(0) == MVT::i64) {
8024         uint64_t Diff = TrueC->getZExtValue()-FalseC->getZExtValue();
8025         if (N->getValueType(0) == MVT::i32) Diff = (unsigned)Diff;
8026        
8027         bool isFastMultiplier = false;
8028         if (Diff < 10) {
8029           switch ((unsigned char)Diff) {
8030           default: break;
8031           case 1:  // result = add base, cond
8032           case 2:  // result = lea base(    , cond*2)
8033           case 3:  // result = lea base(cond, cond*2)
8034           case 4:  // result = lea base(    , cond*4)
8035           case 5:  // result = lea base(cond, cond*4)
8036           case 8:  // result = lea base(    , cond*8)
8037           case 9:  // result = lea base(cond, cond*8)
8038             isFastMultiplier = true;
8039             break;
8040           }
8041         }
8042         
8043         if (isFastMultiplier) {
8044           APInt Diff = TrueC->getAPIntValue()-FalseC->getAPIntValue();
8045           SDValue Cond = N->getOperand(3);
8046           Cond = DAG.getNode(X86ISD::SETCC, DL, MVT::i8,
8047                              DAG.getConstant(CC, MVT::i8), Cond);
8048           // Zero extend the condition if needed.
8049           Cond = DAG.getNode(ISD::ZERO_EXTEND, DL, FalseC->getValueType(0),
8050                              Cond);
8051           // Scale the condition by the difference.
8052           if (Diff != 1)
8053             Cond = DAG.getNode(ISD::MUL, DL, Cond.getValueType(), Cond,
8054                                DAG.getConstant(Diff, Cond.getValueType()));
8055
8056           // Add the base if non-zero.
8057           if (FalseC->getAPIntValue() != 0)
8058             Cond = DAG.getNode(ISD::ADD, DL, Cond.getValueType(), Cond,
8059                                SDValue(FalseC, 0));
8060           if (N->getNumValues() == 2)  // Dead flag value?
8061             return DCI.CombineTo(N, Cond, SDValue());
8062           return Cond;
8063         }
8064       }      
8065     }
8066   }
8067   return SDValue();
8068 }
8069
8070
8071 /// PerformMulCombine - Optimize a single multiply with constant into two
8072 /// in order to implement it with two cheaper instructions, e.g.
8073 /// LEA + SHL, LEA + LEA.
8074 static SDValue PerformMulCombine(SDNode *N, SelectionDAG &DAG,
8075                                  TargetLowering::DAGCombinerInfo &DCI) {
8076   if (DAG.getMachineFunction().
8077       getFunction()->hasFnAttr(Attribute::OptimizeForSize))
8078     return SDValue();
8079
8080   if (DCI.isBeforeLegalize() || DCI.isCalledByLegalizer())
8081     return SDValue();
8082
8083   MVT VT = N->getValueType(0);
8084   if (VT != MVT::i64)
8085     return SDValue();
8086
8087   ConstantSDNode *C = dyn_cast<ConstantSDNode>(N->getOperand(1));
8088   if (!C)
8089     return SDValue();
8090   uint64_t MulAmt = C->getZExtValue();
8091   if (isPowerOf2_64(MulAmt) || MulAmt == 3 || MulAmt == 5 || MulAmt == 9)
8092     return SDValue();
8093
8094   uint64_t MulAmt1 = 0;
8095   uint64_t MulAmt2 = 0;
8096   if ((MulAmt % 9) == 0) {
8097     MulAmt1 = 9;
8098     MulAmt2 = MulAmt / 9;
8099   } else if ((MulAmt % 5) == 0) {
8100     MulAmt1 = 5;
8101     MulAmt2 = MulAmt / 5;
8102   } else if ((MulAmt % 3) == 0) {
8103     MulAmt1 = 3;
8104     MulAmt2 = MulAmt / 3;
8105   }
8106   if (MulAmt2 &&
8107       (isPowerOf2_64(MulAmt2) || MulAmt2 == 3 || MulAmt2 == 5 || MulAmt2 == 9)){
8108     DebugLoc DL = N->getDebugLoc();
8109
8110     if (isPowerOf2_64(MulAmt2) &&
8111         !(N->hasOneUse() && N->use_begin()->getOpcode() == ISD::ADD))
8112       // If second multiplifer is pow2, issue it first. We want the multiply by
8113       // 3, 5, or 9 to be folded into the addressing mode unless the lone use
8114       // is an add.
8115       std::swap(MulAmt1, MulAmt2);
8116
8117     SDValue NewMul;
8118     if (isPowerOf2_64(MulAmt1)) 
8119       NewMul = DAG.getNode(ISD::SHL, DL, VT, N->getOperand(0),
8120                            DAG.getConstant(Log2_64(MulAmt1), MVT::i8));
8121     else
8122       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, N->getOperand(0),
8123                            DAG.getConstant(MulAmt1, VT));
8124
8125     if (isPowerOf2_64(MulAmt2)) 
8126       NewMul = DAG.getNode(ISD::SHL, DL, VT, NewMul,
8127                            DAG.getConstant(Log2_64(MulAmt2), MVT::i8));
8128     else 
8129       NewMul = DAG.getNode(X86ISD::MUL_IMM, DL, VT, NewMul,
8130                            DAG.getConstant(MulAmt2, VT));
8131
8132     // Do not add new nodes to DAG combiner worklist.
8133     DCI.CombineTo(N, NewMul, false);
8134   }
8135   return SDValue();
8136 }
8137
8138
8139 /// PerformShiftCombine - Transforms vector shift nodes to use vector shifts
8140 ///                       when possible.
8141 static SDValue PerformShiftCombine(SDNode* N, SelectionDAG &DAG,
8142                                    const X86Subtarget *Subtarget) {
8143   // On X86 with SSE2 support, we can transform this to a vector shift if
8144   // all elements are shifted by the same amount.  We can't do this in legalize
8145   // because the a constant vector is typically transformed to a constant pool
8146   // so we have no knowledge of the shift amount.
8147   if (!Subtarget->hasSSE2())
8148     return SDValue();
8149
8150   MVT VT = N->getValueType(0);
8151   if (VT != MVT::v2i64 && VT != MVT::v4i32 && VT != MVT::v8i16)
8152     return SDValue();
8153
8154   SDValue ShAmtOp = N->getOperand(1);
8155   MVT EltVT = VT.getVectorElementType();
8156   DebugLoc DL = N->getDebugLoc();
8157   SDValue BaseShAmt;
8158   if (ShAmtOp.getOpcode() == ISD::BUILD_VECTOR) {
8159     unsigned NumElts = VT.getVectorNumElements();
8160     unsigned i = 0;
8161     for (; i != NumElts; ++i) {
8162       SDValue Arg = ShAmtOp.getOperand(i);
8163       if (Arg.getOpcode() == ISD::UNDEF) continue;
8164       BaseShAmt = Arg;
8165       break;
8166     }
8167     for (; i != NumElts; ++i) {
8168       SDValue Arg = ShAmtOp.getOperand(i);
8169       if (Arg.getOpcode() == ISD::UNDEF) continue;
8170       if (Arg != BaseShAmt) {
8171         return SDValue();
8172       }
8173     }
8174   } else if (ShAmtOp.getOpcode() == ISD::VECTOR_SHUFFLE &&
8175              cast<ShuffleVectorSDNode>(ShAmtOp)->isSplat()) {
8176     BaseShAmt = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, ShAmtOp,
8177                             DAG.getIntPtrConstant(0));
8178   } else
8179     return SDValue();
8180
8181   if (EltVT.bitsGT(MVT::i32))
8182     BaseShAmt = DAG.getNode(ISD::TRUNCATE, DL, MVT::i32, BaseShAmt);
8183   else if (EltVT.bitsLT(MVT::i32))
8184     BaseShAmt = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i32, BaseShAmt);
8185
8186   // The shift amount is identical so we can do a vector shift.
8187   SDValue  ValOp = N->getOperand(0);
8188   switch (N->getOpcode()) {
8189   default:
8190     assert(0 && "Unknown shift opcode!");
8191     break;
8192   case ISD::SHL:
8193     if (VT == MVT::v2i64)
8194       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8195                          DAG.getConstant(Intrinsic::x86_sse2_pslli_q, MVT::i32),
8196                          ValOp, BaseShAmt);
8197     if (VT == MVT::v4i32)
8198       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8199                          DAG.getConstant(Intrinsic::x86_sse2_pslli_d, MVT::i32),
8200                          ValOp, BaseShAmt);
8201     if (VT == MVT::v8i16)
8202       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8203                          DAG.getConstant(Intrinsic::x86_sse2_pslli_w, MVT::i32),
8204                          ValOp, BaseShAmt);
8205     break;
8206   case ISD::SRA:
8207     if (VT == MVT::v4i32)
8208       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8209                          DAG.getConstant(Intrinsic::x86_sse2_psrai_d, MVT::i32),
8210                          ValOp, BaseShAmt);
8211     if (VT == MVT::v8i16)
8212       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8213                          DAG.getConstant(Intrinsic::x86_sse2_psrai_w, MVT::i32),
8214                          ValOp, BaseShAmt);
8215     break;
8216   case ISD::SRL:
8217     if (VT == MVT::v2i64)
8218       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8219                          DAG.getConstant(Intrinsic::x86_sse2_psrli_q, MVT::i32),
8220                          ValOp, BaseShAmt);
8221     if (VT == MVT::v4i32)
8222       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8223                          DAG.getConstant(Intrinsic::x86_sse2_psrli_d, MVT::i32),
8224                          ValOp, BaseShAmt);
8225     if (VT ==  MVT::v8i16)
8226       return DAG.getNode(ISD::INTRINSIC_WO_CHAIN, DL, VT,
8227                          DAG.getConstant(Intrinsic::x86_sse2_psrli_w, MVT::i32),
8228                          ValOp, BaseShAmt);
8229     break;
8230   }
8231   return SDValue();
8232 }
8233
8234 /// PerformSTORECombine - Do target-specific dag combines on STORE nodes.
8235 static SDValue PerformSTORECombine(SDNode *N, SelectionDAG &DAG,
8236                                    const X86Subtarget *Subtarget) {
8237   // Turn load->store of MMX types into GPR load/stores.  This avoids clobbering
8238   // the FP state in cases where an emms may be missing.
8239   // A preferable solution to the general problem is to figure out the right
8240   // places to insert EMMS.  This qualifies as a quick hack.
8241
8242   // Similarly, turn load->store of i64 into double load/stores in 32-bit mode.
8243   StoreSDNode *St = cast<StoreSDNode>(N);
8244   MVT VT = St->getValue().getValueType();
8245   if (VT.getSizeInBits() != 64)
8246     return SDValue();
8247
8248   const Function *F = DAG.getMachineFunction().getFunction();
8249   bool NoImplicitFloatOps = F->hasFnAttr(Attribute::NoImplicitFloat);
8250   bool F64IsLegal = !UseSoftFloat && !NoImplicitFloatOps 
8251     && Subtarget->hasSSE2();
8252   if ((VT.isVector() ||
8253        (VT == MVT::i64 && F64IsLegal && !Subtarget->is64Bit())) &&
8254       isa<LoadSDNode>(St->getValue()) &&
8255       !cast<LoadSDNode>(St->getValue())->isVolatile() &&
8256       St->getChain().hasOneUse() && !St->isVolatile()) {
8257     SDNode* LdVal = St->getValue().getNode();
8258     LoadSDNode *Ld = 0;
8259     int TokenFactorIndex = -1;
8260     SmallVector<SDValue, 8> Ops;
8261     SDNode* ChainVal = St->getChain().getNode();
8262     // Must be a store of a load.  We currently handle two cases:  the load
8263     // is a direct child, and it's under an intervening TokenFactor.  It is
8264     // possible to dig deeper under nested TokenFactors.
8265     if (ChainVal == LdVal)
8266       Ld = cast<LoadSDNode>(St->getChain());
8267     else if (St->getValue().hasOneUse() &&
8268              ChainVal->getOpcode() == ISD::TokenFactor) {
8269       for (unsigned i=0, e = ChainVal->getNumOperands(); i != e; ++i) {
8270         if (ChainVal->getOperand(i).getNode() == LdVal) {
8271           TokenFactorIndex = i;
8272           Ld = cast<LoadSDNode>(St->getValue());
8273         } else
8274           Ops.push_back(ChainVal->getOperand(i));
8275       }
8276     }
8277
8278     if (!Ld || !ISD::isNormalLoad(Ld))
8279       return SDValue();
8280
8281     // If this is not the MMX case, i.e. we are just turning i64 load/store
8282     // into f64 load/store, avoid the transformation if there are multiple
8283     // uses of the loaded value.
8284     if (!VT.isVector() && !Ld->hasNUsesOfValue(1, 0))
8285       return SDValue();
8286
8287     DebugLoc LdDL = Ld->getDebugLoc();
8288     DebugLoc StDL = N->getDebugLoc();
8289     // If we are a 64-bit capable x86, lower to a single movq load/store pair.
8290     // Otherwise, if it's legal to use f64 SSE instructions, use f64 load/store
8291     // pair instead.
8292     if (Subtarget->is64Bit() || F64IsLegal) {
8293       MVT LdVT = Subtarget->is64Bit() ? MVT::i64 : MVT::f64;
8294       SDValue NewLd = DAG.getLoad(LdVT, LdDL, Ld->getChain(),
8295                                   Ld->getBasePtr(), Ld->getSrcValue(),
8296                                   Ld->getSrcValueOffset(), Ld->isVolatile(),
8297                                   Ld->getAlignment());
8298       SDValue NewChain = NewLd.getValue(1);
8299       if (TokenFactorIndex != -1) {
8300         Ops.push_back(NewChain);
8301         NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8302                                Ops.size());
8303       }
8304       return DAG.getStore(NewChain, StDL, NewLd, St->getBasePtr(),
8305                           St->getSrcValue(), St->getSrcValueOffset(),
8306                           St->isVolatile(), St->getAlignment());
8307     }
8308
8309     // Otherwise, lower to two pairs of 32-bit loads / stores.
8310     SDValue LoAddr = Ld->getBasePtr();
8311     SDValue HiAddr = DAG.getNode(ISD::ADD, LdDL, MVT::i32, LoAddr,
8312                                  DAG.getConstant(4, MVT::i32));
8313
8314     SDValue LoLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), LoAddr,
8315                                Ld->getSrcValue(), Ld->getSrcValueOffset(),
8316                                Ld->isVolatile(), Ld->getAlignment());
8317     SDValue HiLd = DAG.getLoad(MVT::i32, LdDL, Ld->getChain(), HiAddr,
8318                                Ld->getSrcValue(), Ld->getSrcValueOffset()+4,
8319                                Ld->isVolatile(),
8320                                MinAlign(Ld->getAlignment(), 4));
8321
8322     SDValue NewChain = LoLd.getValue(1);
8323     if (TokenFactorIndex != -1) {
8324       Ops.push_back(LoLd);
8325       Ops.push_back(HiLd);
8326       NewChain = DAG.getNode(ISD::TokenFactor, LdDL, MVT::Other, &Ops[0],
8327                              Ops.size());
8328     }
8329
8330     LoAddr = St->getBasePtr();
8331     HiAddr = DAG.getNode(ISD::ADD, StDL, MVT::i32, LoAddr,
8332                          DAG.getConstant(4, MVT::i32));
8333
8334     SDValue LoSt = DAG.getStore(NewChain, StDL, LoLd, LoAddr,
8335                                 St->getSrcValue(), St->getSrcValueOffset(),
8336                                 St->isVolatile(), St->getAlignment());
8337     SDValue HiSt = DAG.getStore(NewChain, StDL, HiLd, HiAddr,
8338                                 St->getSrcValue(),
8339                                 St->getSrcValueOffset() + 4,
8340                                 St->isVolatile(),
8341                                 MinAlign(St->getAlignment(), 4));
8342     return DAG.getNode(ISD::TokenFactor, StDL, MVT::Other, LoSt, HiSt);
8343   }
8344   return SDValue();
8345 }
8346
8347 /// PerformFORCombine - Do target-specific dag combines on X86ISD::FOR and
8348 /// X86ISD::FXOR nodes.
8349 static SDValue PerformFORCombine(SDNode *N, SelectionDAG &DAG) {
8350   assert(N->getOpcode() == X86ISD::FOR || N->getOpcode() == X86ISD::FXOR);
8351   // F[X]OR(0.0, x) -> x
8352   // F[X]OR(x, 0.0) -> x
8353   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8354     if (C->getValueAPF().isPosZero())
8355       return N->getOperand(1);
8356   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8357     if (C->getValueAPF().isPosZero())
8358       return N->getOperand(0);
8359   return SDValue();
8360 }
8361
8362 /// PerformFANDCombine - Do target-specific dag combines on X86ISD::FAND nodes.
8363 static SDValue PerformFANDCombine(SDNode *N, SelectionDAG &DAG) {
8364   // FAND(0.0, x) -> 0.0
8365   // FAND(x, 0.0) -> 0.0
8366   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(0)))
8367     if (C->getValueAPF().isPosZero())
8368       return N->getOperand(0);
8369   if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(N->getOperand(1)))
8370     if (C->getValueAPF().isPosZero())
8371       return N->getOperand(1);
8372   return SDValue();
8373 }
8374
8375 static SDValue PerformBTCombine(SDNode *N,
8376                                 SelectionDAG &DAG,
8377                                 TargetLowering::DAGCombinerInfo &DCI) {
8378   // BT ignores high bits in the bit index operand.
8379   SDValue Op1 = N->getOperand(1);
8380   if (Op1.hasOneUse()) {
8381     unsigned BitWidth = Op1.getValueSizeInBits();
8382     APInt DemandedMask = APInt::getLowBitsSet(BitWidth, Log2_32(BitWidth));
8383     APInt KnownZero, KnownOne;
8384     TargetLowering::TargetLoweringOpt TLO(DAG);
8385     TargetLowering &TLI = DAG.getTargetLoweringInfo();
8386     if (TLO.ShrinkDemandedConstant(Op1, DemandedMask) ||
8387         TLI.SimplifyDemandedBits(Op1, DemandedMask, KnownZero, KnownOne, TLO))
8388       DCI.CommitTargetLoweringOpt(TLO);
8389   }
8390   return SDValue();
8391 }
8392
8393 static SDValue PerformVZEXT_MOVLCombine(SDNode *N, SelectionDAG &DAG) {
8394   SDValue Op = N->getOperand(0);
8395   if (Op.getOpcode() == ISD::BIT_CONVERT)
8396     Op = Op.getOperand(0);
8397   MVT VT = N->getValueType(0), OpVT = Op.getValueType();
8398   if (Op.getOpcode() == X86ISD::VZEXT_LOAD &&
8399       VT.getVectorElementType().getSizeInBits() == 
8400       OpVT.getVectorElementType().getSizeInBits()) {
8401     return DAG.getNode(ISD::BIT_CONVERT, N->getDebugLoc(), VT, Op);
8402   }
8403   return SDValue();
8404 }
8405
8406 SDValue X86TargetLowering::PerformDAGCombine(SDNode *N,
8407                                              DAGCombinerInfo &DCI) const {
8408   SelectionDAG &DAG = DCI.DAG;
8409   switch (N->getOpcode()) {
8410   default: break;
8411   case ISD::VECTOR_SHUFFLE: return PerformShuffleCombine(N, DAG, *this);
8412   case ISD::SELECT:         return PerformSELECTCombine(N, DAG, Subtarget);
8413   case X86ISD::CMOV:        return PerformCMOVCombine(N, DAG, DCI);
8414   case ISD::MUL:            return PerformMulCombine(N, DAG, DCI);
8415   case ISD::SHL:
8416   case ISD::SRA:
8417   case ISD::SRL:            return PerformShiftCombine(N, DAG, Subtarget);
8418   case ISD::STORE:          return PerformSTORECombine(N, DAG, Subtarget);
8419   case X86ISD::FXOR:
8420   case X86ISD::FOR:         return PerformFORCombine(N, DAG);
8421   case X86ISD::FAND:        return PerformFANDCombine(N, DAG);
8422   case X86ISD::BT:          return PerformBTCombine(N, DAG, DCI);
8423   case X86ISD::VZEXT_MOVL:  return PerformVZEXT_MOVLCombine(N, DAG);
8424   }
8425
8426   return SDValue();
8427 }
8428
8429 //===----------------------------------------------------------------------===//
8430 //                           X86 Inline Assembly Support
8431 //===----------------------------------------------------------------------===//
8432
8433 /// getConstraintType - Given a constraint letter, return the type of
8434 /// constraint it is for this target.
8435 X86TargetLowering::ConstraintType
8436 X86TargetLowering::getConstraintType(const std::string &Constraint) const {
8437   if (Constraint.size() == 1) {
8438     switch (Constraint[0]) {
8439     case 'A':
8440       return C_Register;
8441     case 'f':
8442     case 'r':
8443     case 'R':
8444     case 'l':
8445     case 'q':
8446     case 'Q':
8447     case 'x':
8448     case 'y':
8449     case 'Y':
8450       return C_RegisterClass;
8451     case 'e':
8452     case 'Z':
8453       return C_Other;
8454     default:
8455       break;
8456     }
8457   }
8458   return TargetLowering::getConstraintType(Constraint);
8459 }
8460
8461 /// LowerXConstraint - try to replace an X constraint, which matches anything,
8462 /// with another that has more specific requirements based on the type of the
8463 /// corresponding operand.
8464 const char *X86TargetLowering::
8465 LowerXConstraint(MVT ConstraintVT) const {
8466   // FP X constraints get lowered to SSE1/2 registers if available, otherwise
8467   // 'f' like normal targets.
8468   if (ConstraintVT.isFloatingPoint()) {
8469     if (Subtarget->hasSSE2())
8470       return "Y";
8471     if (Subtarget->hasSSE1())
8472       return "x";
8473   }
8474
8475   return TargetLowering::LowerXConstraint(ConstraintVT);
8476 }
8477
8478 /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops
8479 /// vector.  If it is invalid, don't add anything to Ops.
8480 void X86TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
8481                                                      char Constraint,
8482                                                      bool hasMemory,
8483                                                      std::vector<SDValue>&Ops,
8484                                                      SelectionDAG &DAG) const {
8485   SDValue Result(0, 0);
8486
8487   switch (Constraint) {
8488   default: break;
8489   case 'I':
8490     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8491       if (C->getZExtValue() <= 31) {
8492         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8493         break;
8494       }
8495     }
8496     return;
8497   case 'J':
8498     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8499       if (C->getZExtValue() <= 63) {
8500         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8501         break;
8502       }
8503     }
8504     return;
8505   case 'K':
8506     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8507       if ((int8_t)C->getSExtValue() == C->getSExtValue()) {
8508         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8509         break;
8510       }
8511     }
8512     return;
8513   case 'N':
8514     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8515       if (C->getZExtValue() <= 255) {
8516         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8517         break;
8518       }
8519     }
8520     return;
8521   case 'e': {
8522     // 32-bit signed value
8523     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8524       const ConstantInt *CI = C->getConstantIntValue();
8525       if (CI->isValueValidForType(Type::Int32Ty, C->getSExtValue())) {
8526         // Widen to 64 bits here to get it sign extended.
8527         Result = DAG.getTargetConstant(C->getSExtValue(), MVT::i64);
8528         break;
8529       }
8530     // FIXME gcc accepts some relocatable values here too, but only in certain
8531     // memory models; it's complicated.
8532     }
8533     return;
8534   }
8535   case 'Z': {
8536     // 32-bit unsigned value
8537     if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op)) {
8538       const ConstantInt *CI = C->getConstantIntValue();
8539       if (CI->isValueValidForType(Type::Int32Ty, C->getZExtValue())) {
8540         Result = DAG.getTargetConstant(C->getZExtValue(), Op.getValueType());
8541         break;
8542       }
8543     }
8544     // FIXME gcc accepts some relocatable values here too, but only in certain
8545     // memory models; it's complicated.
8546     return;
8547   }
8548   case 'i': {
8549     // Literal immediates are always ok.
8550     if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(Op)) {
8551       // Widen to 64 bits here to get it sign extended.
8552       Result = DAG.getTargetConstant(CST->getSExtValue(), MVT::i64);
8553       break;
8554     }
8555
8556     // If we are in non-pic codegen mode, we allow the address of a global (with
8557     // an optional displacement) to be used with 'i'.
8558     GlobalAddressSDNode *GA = 0;
8559     int64_t Offset = 0;
8560
8561     // Match either (GA), (GA+C), (GA+C1+C2), etc.
8562     while (1) {
8563       if ((GA = dyn_cast<GlobalAddressSDNode>(Op))) {
8564         Offset += GA->getOffset();
8565         break;
8566       } else if (Op.getOpcode() == ISD::ADD) {
8567         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
8568           Offset += C->getZExtValue();
8569           Op = Op.getOperand(0);
8570           continue;
8571         }
8572       } else if (Op.getOpcode() == ISD::SUB) {
8573         if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) {
8574           Offset += -C->getZExtValue();
8575           Op = Op.getOperand(0);
8576           continue;
8577         }
8578       }
8579       
8580       // Otherwise, this isn't something we can handle, reject it.
8581       return;
8582     }
8583
8584     if (hasMemory)
8585       Op = LowerGlobalAddress(GA->getGlobal(), Op.getDebugLoc(), Offset, DAG);
8586     else
8587       Op = DAG.getTargetGlobalAddress(GA->getGlobal(), GA->getValueType(0),
8588                                       Offset);
8589     Result = Op;
8590     break;
8591   }
8592   }
8593
8594   if (Result.getNode()) {
8595     Ops.push_back(Result);
8596     return;
8597   }
8598   return TargetLowering::LowerAsmOperandForConstraint(Op, Constraint, hasMemory,
8599                                                       Ops, DAG);
8600 }
8601
8602 std::vector<unsigned> X86TargetLowering::
8603 getRegClassForInlineAsmConstraint(const std::string &Constraint,
8604                                   MVT VT) const {
8605   if (Constraint.size() == 1) {
8606     // FIXME: not handling fp-stack yet!
8607     switch (Constraint[0]) {      // GCC X86 Constraint Letters
8608     default: break;  // Unknown constraint letter
8609     case 'q':   // Q_REGS (GENERAL_REGS in 64-bit mode)
8610     case 'Q':   // Q_REGS
8611       if (VT == MVT::i32)
8612         return make_vector<unsigned>(X86::EAX, X86::EDX, X86::ECX, X86::EBX, 0);
8613       else if (VT == MVT::i16)
8614         return make_vector<unsigned>(X86::AX, X86::DX, X86::CX, X86::BX, 0);
8615       else if (VT == MVT::i8)
8616         return make_vector<unsigned>(X86::AL, X86::DL, X86::CL, X86::BL, 0);
8617       else if (VT == MVT::i64)
8618         return make_vector<unsigned>(X86::RAX, X86::RDX, X86::RCX, X86::RBX, 0);
8619       break;
8620     }
8621   }
8622
8623   return std::vector<unsigned>();
8624 }
8625
8626 std::pair<unsigned, const TargetRegisterClass*>
8627 X86TargetLowering::getRegForInlineAsmConstraint(const std::string &Constraint,
8628                                                 MVT VT) const {
8629   // First, see if this is a constraint that directly corresponds to an LLVM
8630   // register class.
8631   if (Constraint.size() == 1) {
8632     // GCC Constraint Letters
8633     switch (Constraint[0]) {
8634     default: break;
8635     case 'r':   // GENERAL_REGS
8636     case 'R':   // LEGACY_REGS
8637     case 'l':   // INDEX_REGS
8638       if (VT == MVT::i8)
8639         return std::make_pair(0U, X86::GR8RegisterClass);
8640       if (VT == MVT::i16)
8641         return std::make_pair(0U, X86::GR16RegisterClass);
8642       if (VT == MVT::i32 || !Subtarget->is64Bit())
8643         return std::make_pair(0U, X86::GR32RegisterClass);
8644       return std::make_pair(0U, X86::GR64RegisterClass);
8645     case 'f':  // FP Stack registers.
8646       // If SSE is enabled for this VT, use f80 to ensure the isel moves the
8647       // value to the correct fpstack register class.
8648       if (VT == MVT::f32 && !isScalarFPTypeInSSEReg(VT))
8649         return std::make_pair(0U, X86::RFP32RegisterClass);
8650       if (VT == MVT::f64 && !isScalarFPTypeInSSEReg(VT))
8651         return std::make_pair(0U, X86::RFP64RegisterClass);
8652       return std::make_pair(0U, X86::RFP80RegisterClass);
8653     case 'y':   // MMX_REGS if MMX allowed.
8654       if (!Subtarget->hasMMX()) break;
8655       return std::make_pair(0U, X86::VR64RegisterClass);
8656     case 'Y':   // SSE_REGS if SSE2 allowed
8657       if (!Subtarget->hasSSE2()) break;
8658       // FALL THROUGH.
8659     case 'x':   // SSE_REGS if SSE1 allowed
8660       if (!Subtarget->hasSSE1()) break;
8661
8662       switch (VT.getSimpleVT()) {
8663       default: break;
8664       // Scalar SSE types.
8665       case MVT::f32:
8666       case MVT::i32:
8667         return std::make_pair(0U, X86::FR32RegisterClass);
8668       case MVT::f64:
8669       case MVT::i64:
8670         return std::make_pair(0U, X86::FR64RegisterClass);
8671       // Vector types.
8672       case MVT::v16i8:
8673       case MVT::v8i16:
8674       case MVT::v4i32:
8675       case MVT::v2i64:
8676       case MVT::v4f32:
8677       case MVT::v2f64:
8678         return std::make_pair(0U, X86::VR128RegisterClass);
8679       }
8680       break;
8681     }
8682   }
8683
8684   // Use the default implementation in TargetLowering to convert the register
8685   // constraint into a member of a register class.
8686   std::pair<unsigned, const TargetRegisterClass*> Res;
8687   Res = TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
8688
8689   // Not found as a standard register?
8690   if (Res.second == 0) {
8691     // GCC calls "st(0)" just plain "st".
8692     if (StringsEqualNoCase("{st}", Constraint)) {
8693       Res.first = X86::ST0;
8694       Res.second = X86::RFP80RegisterClass;
8695     }
8696     // 'A' means EAX + EDX.
8697     if (Constraint == "A") {
8698       Res.first = X86::EAX;
8699       Res.second = X86::GRADRegisterClass;
8700     }
8701     return Res;
8702   }
8703
8704   // Otherwise, check to see if this is a register class of the wrong value
8705   // type.  For example, we want to map "{ax},i32" -> {eax}, we don't want it to
8706   // turn into {ax},{dx}.
8707   if (Res.second->hasType(VT))
8708     return Res;   // Correct type already, nothing to do.
8709
8710   // All of the single-register GCC register classes map their values onto
8711   // 16-bit register pieces "ax","dx","cx","bx","si","di","bp","sp".  If we
8712   // really want an 8-bit or 32-bit register, map to the appropriate register
8713   // class and return the appropriate register.
8714   if (Res.second == X86::GR16RegisterClass) {
8715     if (VT == MVT::i8) {
8716       unsigned DestReg = 0;
8717       switch (Res.first) {
8718       default: break;
8719       case X86::AX: DestReg = X86::AL; break;
8720       case X86::DX: DestReg = X86::DL; break;
8721       case X86::CX: DestReg = X86::CL; break;
8722       case X86::BX: DestReg = X86::BL; break;
8723       }
8724       if (DestReg) {
8725         Res.first = DestReg;
8726         Res.second = X86::GR8RegisterClass;
8727       }
8728     } else if (VT == MVT::i32) {
8729       unsigned DestReg = 0;
8730       switch (Res.first) {
8731       default: break;
8732       case X86::AX: DestReg = X86::EAX; break;
8733       case X86::DX: DestReg = X86::EDX; break;
8734       case X86::CX: DestReg = X86::ECX; break;
8735       case X86::BX: DestReg = X86::EBX; break;
8736       case X86::SI: DestReg = X86::ESI; break;
8737       case X86::DI: DestReg = X86::EDI; break;
8738       case X86::BP: DestReg = X86::EBP; break;
8739       case X86::SP: DestReg = X86::ESP; break;
8740       }
8741       if (DestReg) {
8742         Res.first = DestReg;
8743         Res.second = X86::GR32RegisterClass;
8744       }
8745     } else if (VT == MVT::i64) {
8746       unsigned DestReg = 0;
8747       switch (Res.first) {
8748       default: break;
8749       case X86::AX: DestReg = X86::RAX; break;
8750       case X86::DX: DestReg = X86::RDX; break;
8751       case X86::CX: DestReg = X86::RCX; break;
8752       case X86::BX: DestReg = X86::RBX; break;
8753       case X86::SI: DestReg = X86::RSI; break;
8754       case X86::DI: DestReg = X86::RDI; break;
8755       case X86::BP: DestReg = X86::RBP; break;
8756       case X86::SP: DestReg = X86::RSP; break;
8757       }
8758       if (DestReg) {
8759         Res.first = DestReg;
8760         Res.second = X86::GR64RegisterClass;
8761       }
8762     }
8763   } else if (Res.second == X86::FR32RegisterClass ||
8764              Res.second == X86::FR64RegisterClass ||
8765              Res.second == X86::VR128RegisterClass) {
8766     // Handle references to XMM physical registers that got mapped into the
8767     // wrong class.  This can happen with constraints like {xmm0} where the
8768     // target independent register mapper will just pick the first match it can
8769     // find, ignoring the required type.
8770     if (VT == MVT::f32)
8771       Res.second = X86::FR32RegisterClass;
8772     else if (VT == MVT::f64)
8773       Res.second = X86::FR64RegisterClass;
8774     else if (X86::VR128RegisterClass->hasType(VT))
8775       Res.second = X86::VR128RegisterClass;
8776   }
8777
8778   return Res;
8779 }
8780
8781 //===----------------------------------------------------------------------===//
8782 //                           X86 Widen vector type
8783 //===----------------------------------------------------------------------===//
8784
8785 /// getWidenVectorType: given a vector type, returns the type to widen
8786 /// to (e.g., v7i8 to v8i8). If the vector type is legal, it returns itself.
8787 /// If there is no vector type that we want to widen to, returns MVT::Other
8788 /// When and where to widen is target dependent based on the cost of
8789 /// scalarizing vs using the wider vector type.
8790
8791 MVT X86TargetLowering::getWidenVectorType(MVT VT) const {
8792   assert(VT.isVector());
8793   if (isTypeLegal(VT))
8794     return VT;
8795
8796   // TODO: In computeRegisterProperty, we can compute the list of legal vector
8797   //       type based on element type.  This would speed up our search (though
8798   //       it may not be worth it since the size of the list is relatively
8799   //       small).
8800   MVT EltVT = VT.getVectorElementType();
8801   unsigned NElts = VT.getVectorNumElements();
8802
8803   // On X86, it make sense to widen any vector wider than 1
8804   if (NElts <= 1)
8805     return MVT::Other;
8806
8807   for (unsigned nVT = MVT::FIRST_VECTOR_VALUETYPE;
8808        nVT <= MVT::LAST_VECTOR_VALUETYPE; ++nVT) {
8809     MVT SVT = (MVT::SimpleValueType)nVT;
8810
8811     if (isTypeLegal(SVT) &&
8812         SVT.getVectorElementType() == EltVT &&
8813         SVT.getVectorNumElements() > NElts)
8814       return SVT;
8815   }
8816   return MVT::Other;
8817 }