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