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