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