give VZEXT_LOAD a memory operand, it now works with segment registers.
[oota-llvm.git] / lib / Target / X86 / X86ISelDAGToDAG.cpp
1 //===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
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 a DAG pattern matching instruction selector for X86,
11 // converting from a legalized dag to a X86 dag.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "x86-isel"
16 #include "X86.h"
17 #include "X86InstrBuilder.h"
18 #include "X86MachineFunctionInfo.h"
19 #include "X86RegisterInfo.h"
20 #include "X86Subtarget.h"
21 #include "X86TargetMachine.h"
22 #include "llvm/Instructions.h"
23 #include "llvm/Intrinsics.h"
24 #include "llvm/Support/CFG.h"
25 #include "llvm/Type.h"
26 #include "llvm/CodeGen/MachineConstantPool.h"
27 #include "llvm/CodeGen/MachineFunction.h"
28 #include "llvm/CodeGen/MachineFrameInfo.h"
29 #include "llvm/CodeGen/MachineInstrBuilder.h"
30 #include "llvm/CodeGen/MachineRegisterInfo.h"
31 #include "llvm/CodeGen/SelectionDAGISel.h"
32 #include "llvm/Target/TargetMachine.h"
33 #include "llvm/Target/TargetOptions.h"
34 #include "llvm/Support/Debug.h"
35 #include "llvm/Support/ErrorHandling.h"
36 #include "llvm/Support/MathExtras.h"
37 #include "llvm/Support/raw_ostream.h"
38 #include "llvm/ADT/SmallPtrSet.h"
39 #include "llvm/ADT/Statistic.h"
40 using namespace llvm;
41
42 STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
44 //===----------------------------------------------------------------------===//
45 //                      Pattern Matcher Implementation
46 //===----------------------------------------------------------------------===//
47
48 namespace {
49   /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
50   /// SDValue's instead of register numbers for the leaves of the matched
51   /// tree.
52   struct X86ISelAddressMode {
53     enum {
54       RegBase,
55       FrameIndexBase
56     } BaseType;
57
58     // This is really a union, discriminated by BaseType!
59     SDValue Base_Reg;
60     int Base_FrameIndex;
61
62     unsigned Scale;
63     SDValue IndexReg; 
64     int32_t Disp;
65     SDValue Segment;
66     const GlobalValue *GV;
67     const Constant *CP;
68     const BlockAddress *BlockAddr;
69     const char *ES;
70     int JT;
71     unsigned Align;    // CP alignment.
72     unsigned char SymbolFlags;  // X86II::MO_*
73
74     X86ISelAddressMode()
75       : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
76         Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
77         SymbolFlags(X86II::MO_NO_FLAG) {
78     }
79
80     bool hasSymbolicDisplacement() const {
81       return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
82     }
83     
84     bool hasBaseOrIndexReg() const {
85       return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
86     }
87     
88     /// isRIPRelative - Return true if this addressing mode is already RIP
89     /// relative.
90     bool isRIPRelative() const {
91       if (BaseType != RegBase) return false;
92       if (RegisterSDNode *RegNode =
93             dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
94         return RegNode->getReg() == X86::RIP;
95       return false;
96     }
97     
98     void setBaseReg(SDValue Reg) {
99       BaseType = RegBase;
100       Base_Reg = Reg;
101     }
102
103     void dump() {
104       dbgs() << "X86ISelAddressMode " << this << '\n';
105       dbgs() << "Base_Reg ";
106       if (Base_Reg.getNode() != 0)
107         Base_Reg.getNode()->dump(); 
108       else
109         dbgs() << "nul";
110       dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
111              << " Scale" << Scale << '\n'
112              << "IndexReg ";
113       if (IndexReg.getNode() != 0)
114         IndexReg.getNode()->dump();
115       else
116         dbgs() << "nul"; 
117       dbgs() << " Disp " << Disp << '\n'
118              << "GV ";
119       if (GV)
120         GV->dump();
121       else
122         dbgs() << "nul";
123       dbgs() << " CP ";
124       if (CP)
125         CP->dump();
126       else
127         dbgs() << "nul";
128       dbgs() << '\n'
129              << "ES ";
130       if (ES)
131         dbgs() << ES;
132       else
133         dbgs() << "nul";
134       dbgs() << " JT" << JT << " Align" << Align << '\n';
135     }
136   };
137 }
138
139 namespace {
140   //===--------------------------------------------------------------------===//
141   /// ISel - X86 specific code to select X86 machine instructions for
142   /// SelectionDAG operations.
143   ///
144   class X86DAGToDAGISel : public SelectionDAGISel {
145     /// X86Lowering - This object fully describes how to lower LLVM code to an
146     /// X86-specific SelectionDAG.
147     const X86TargetLowering &X86Lowering;
148
149     /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
150     /// make the right decision when generating code for different targets.
151     const X86Subtarget *Subtarget;
152
153     /// OptForSize - If true, selector should try to optimize for code size
154     /// instead of performance.
155     bool OptForSize;
156
157   public:
158     explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
159       : SelectionDAGISel(tm, OptLevel),
160         X86Lowering(*tm.getTargetLowering()),
161         Subtarget(&tm.getSubtarget<X86Subtarget>()),
162         OptForSize(false) {}
163
164     virtual const char *getPassName() const {
165       return "X86 DAG->DAG Instruction Selection";
166     }
167
168     virtual void EmitFunctionEntryCode();
169
170     virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
171
172     virtual void PreprocessISelDAG();
173
174     inline bool immSext8(SDNode *N) const {
175       return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
176     }
177
178     // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
179     // sign extended field.
180     inline bool i64immSExt32(SDNode *N) const {
181       uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
182       return (int64_t)v == (int32_t)v;
183     }
184
185 // Include the pieces autogenerated from the target description.
186 #include "X86GenDAGISel.inc"
187
188   private:
189     SDNode *Select(SDNode *N);
190     SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
191     SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
192
193     bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
194     bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
195     bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
196     bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
197     bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
198                                  unsigned Depth);
199     bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
200     bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
201                     SDValue &Scale, SDValue &Index, SDValue &Disp,
202                     SDValue &Segment);
203     bool SelectLEAAddr(SDValue N, SDValue &Base,
204                        SDValue &Scale, SDValue &Index, SDValue &Disp,
205                        SDValue &Segment);
206     bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
207                            SDValue &Scale, SDValue &Index, SDValue &Disp,
208                            SDValue &Segment);
209     bool SelectScalarSSELoad(SDNode *Root, SDValue N,
210                              SDValue &Base, SDValue &Scale,
211                              SDValue &Index, SDValue &Disp,
212                              SDValue &Segment,
213                              SDValue &NodeWithChain);
214     
215     bool TryFoldLoad(SDNode *P, SDValue N,
216                      SDValue &Base, SDValue &Scale,
217                      SDValue &Index, SDValue &Disp,
218                      SDValue &Segment);
219     
220     /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
221     /// inline asm expressions.
222     virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
223                                               char ConstraintCode,
224                                               std::vector<SDValue> &OutOps);
225     
226     void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
227
228     inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base, 
229                                    SDValue &Scale, SDValue &Index,
230                                    SDValue &Disp, SDValue &Segment) {
231       Base  = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
232         CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
233         AM.Base_Reg;
234       Scale = getI8Imm(AM.Scale);
235       Index = AM.IndexReg;
236       // These are 32-bit even in 64-bit mode since RIP relative offset
237       // is 32-bit.
238       if (AM.GV)
239         Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
240                                               MVT::i32, AM.Disp,
241                                               AM.SymbolFlags);
242       else if (AM.CP)
243         Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
244                                              AM.Align, AM.Disp, AM.SymbolFlags);
245       else if (AM.ES)
246         Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
247       else if (AM.JT != -1)
248         Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
249       else if (AM.BlockAddr)
250         Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
251                                        true, AM.SymbolFlags);
252       else
253         Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
254
255       if (AM.Segment.getNode())
256         Segment = AM.Segment;
257       else
258         Segment = CurDAG->getRegister(0, MVT::i32);
259     }
260
261     /// getI8Imm - Return a target constant with the specified value, of type
262     /// i8.
263     inline SDValue getI8Imm(unsigned Imm) {
264       return CurDAG->getTargetConstant(Imm, MVT::i8);
265     }
266
267     /// getI32Imm - Return a target constant with the specified value, of type
268     /// i32.
269     inline SDValue getI32Imm(unsigned Imm) {
270       return CurDAG->getTargetConstant(Imm, MVT::i32);
271     }
272
273     /// getGlobalBaseReg - Return an SDNode that returns the value of
274     /// the global base register. Output instructions required to
275     /// initialize the global base register, if necessary.
276     ///
277     SDNode *getGlobalBaseReg();
278
279     /// getTargetMachine - Return a reference to the TargetMachine, casted
280     /// to the target-specific type.
281     const X86TargetMachine &getTargetMachine() {
282       return static_cast<const X86TargetMachine &>(TM);
283     }
284
285     /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
286     /// to the target-specific type.
287     const X86InstrInfo *getInstrInfo() {
288       return getTargetMachine().getInstrInfo();
289     }
290   };
291 }
292
293
294 bool
295 X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
296   if (OptLevel == CodeGenOpt::None) return false;
297
298   if (!N.hasOneUse())
299     return false;
300
301   if (N.getOpcode() != ISD::LOAD)
302     return true;
303
304   // If N is a load, do additional profitability checks.
305   if (U == Root) {
306     switch (U->getOpcode()) {
307     default: break;
308     case X86ISD::ADD:
309     case X86ISD::SUB:
310     case X86ISD::AND:
311     case X86ISD::XOR:
312     case X86ISD::OR:
313     case ISD::ADD:
314     case ISD::ADDC:
315     case ISD::ADDE:
316     case ISD::AND:
317     case ISD::OR:
318     case ISD::XOR: {
319       SDValue Op1 = U->getOperand(1);
320
321       // If the other operand is a 8-bit immediate we should fold the immediate
322       // instead. This reduces code size.
323       // e.g.
324       // movl 4(%esp), %eax
325       // addl $4, %eax
326       // vs.
327       // movl $4, %eax
328       // addl 4(%esp), %eax
329       // The former is 2 bytes shorter. In case where the increment is 1, then
330       // the saving can be 4 bytes (by using incl %eax).
331       if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
332         if (Imm->getAPIntValue().isSignedIntN(8))
333           return false;
334
335       // If the other operand is a TLS address, we should fold it instead.
336       // This produces
337       // movl    %gs:0, %eax
338       // leal    i@NTPOFF(%eax), %eax
339       // instead of
340       // movl    $i@NTPOFF, %eax
341       // addl    %gs:0, %eax
342       // if the block also has an access to a second TLS address this will save
343       // a load.
344       // FIXME: This is probably also true for non TLS addresses.
345       if (Op1.getOpcode() == X86ISD::Wrapper) {
346         SDValue Val = Op1.getOperand(0);
347         if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
348           return false;
349       }
350     }
351     }
352   }
353
354   return true;
355 }
356
357 /// MoveBelowCallOrigChain - Replace the original chain operand of the call with
358 /// load's chain operand and move load below the call's chain operand.
359 static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
360                                   SDValue Call, SDValue OrigChain) {
361   SmallVector<SDValue, 8> Ops;
362   SDValue Chain = OrigChain.getOperand(0);
363   if (Chain.getNode() == Load.getNode())
364     Ops.push_back(Load.getOperand(0));
365   else {
366     assert(Chain.getOpcode() == ISD::TokenFactor &&
367            "Unexpected chain operand");
368     for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
369       if (Chain.getOperand(i).getNode() == Load.getNode())
370         Ops.push_back(Load.getOperand(0));
371       else
372         Ops.push_back(Chain.getOperand(i));
373     SDValue NewChain =
374       CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
375                       MVT::Other, &Ops[0], Ops.size());
376     Ops.clear();
377     Ops.push_back(NewChain);
378   }
379   for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
380     Ops.push_back(OrigChain.getOperand(i));
381   CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
382   CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
383                              Load.getOperand(1), Load.getOperand(2));
384   Ops.clear();
385   Ops.push_back(SDValue(Load.getNode(), 1));
386   for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
387     Ops.push_back(Call.getOperand(i));
388   CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
389 }
390
391 /// isCalleeLoad - Return true if call address is a load and it can be
392 /// moved below CALLSEQ_START and the chains leading up to the call.
393 /// Return the CALLSEQ_START by reference as a second output.
394 /// In the case of a tail call, there isn't a callseq node between the call
395 /// chain and the load.
396 static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
397   if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
398     return false;
399   LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
400   if (!LD ||
401       LD->isVolatile() ||
402       LD->getAddressingMode() != ISD::UNINDEXED ||
403       LD->getExtensionType() != ISD::NON_EXTLOAD)
404     return false;
405
406   // Now let's find the callseq_start.
407   while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
408     if (!Chain.hasOneUse())
409       return false;
410     Chain = Chain.getOperand(0);
411   }
412
413   if (!Chain.getNumOperands())
414     return false;
415   if (Chain.getOperand(0).getNode() == Callee.getNode())
416     return true;
417   if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
418       Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
419       Callee.getValue(1).hasOneUse())
420     return true;
421   return false;
422 }
423
424 void X86DAGToDAGISel::PreprocessISelDAG() {
425   // OptForSize is used in pattern predicates that isel is matching.
426   OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
427   
428   for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
429        E = CurDAG->allnodes_end(); I != E; ) {
430     SDNode *N = I++;  // Preincrement iterator to avoid invalidation issues.
431
432     if (OptLevel != CodeGenOpt::None &&
433         (N->getOpcode() == X86ISD::CALL ||
434          N->getOpcode() == X86ISD::TC_RETURN)) {
435       /// Also try moving call address load from outside callseq_start to just
436       /// before the call to allow it to be folded.
437       ///
438       ///     [Load chain]
439       ///         ^
440       ///         |
441       ///       [Load]
442       ///       ^    ^
443       ///       |    |
444       ///      /      \--
445       ///     /          |
446       ///[CALLSEQ_START] |
447       ///     ^          |
448       ///     |          |
449       /// [LOAD/C2Reg]   |
450       ///     |          |
451       ///      \        /
452       ///       \      /
453       ///       [CALL]
454       bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
455       SDValue Chain = N->getOperand(0);
456       SDValue Load  = N->getOperand(1);
457       if (!isCalleeLoad(Load, Chain, HasCallSeq))
458         continue;
459       MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
460       ++NumLoadMoved;
461       continue;
462     }
463     
464     // Lower fpround and fpextend nodes that target the FP stack to be store and
465     // load to the stack.  This is a gross hack.  We would like to simply mark
466     // these as being illegal, but when we do that, legalize produces these when
467     // it expands calls, then expands these in the same legalize pass.  We would
468     // like dag combine to be able to hack on these between the call expansion
469     // and the node legalization.  As such this pass basically does "really
470     // late" legalization of these inline with the X86 isel pass.
471     // FIXME: This should only happen when not compiled with -O0.
472     if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
473       continue;
474     
475     // If the source and destination are SSE registers, then this is a legal
476     // conversion that should not be lowered.
477     EVT SrcVT = N->getOperand(0).getValueType();
478     EVT DstVT = N->getValueType(0);
479     bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
480     bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
481     if (SrcIsSSE && DstIsSSE)
482       continue;
483
484     if (!SrcIsSSE && !DstIsSSE) {
485       // If this is an FPStack extension, it is a noop.
486       if (N->getOpcode() == ISD::FP_EXTEND)
487         continue;
488       // If this is a value-preserving FPStack truncation, it is a noop.
489       if (N->getConstantOperandVal(1))
490         continue;
491     }
492    
493     // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
494     // FPStack has extload and truncstore.  SSE can fold direct loads into other
495     // operations.  Based on this, decide what we want to do.
496     EVT MemVT;
497     if (N->getOpcode() == ISD::FP_ROUND)
498       MemVT = DstVT;  // FP_ROUND must use DstVT, we can't do a 'trunc load'.
499     else
500       MemVT = SrcIsSSE ? SrcVT : DstVT;
501     
502     SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
503     DebugLoc dl = N->getDebugLoc();
504     
505     // FIXME: optimize the case where the src/dest is a load or store?
506     SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
507                                           N->getOperand(0),
508                                           MemTmp, MachinePointerInfo(), MemVT,
509                                           false, false, 0);
510     SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, DstVT, dl, Store, MemTmp,
511                                         MachinePointerInfo(),
512                                         MemVT, false, false, 0);
513
514     // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
515     // extload we created.  This will cause general havok on the dag because
516     // anything below the conversion could be folded into other existing nodes.
517     // To avoid invalidating 'I', back it up to the convert node.
518     --I;
519     CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
520     
521     // Now that we did that, the node is dead.  Increment the iterator to the
522     // next node to process, then delete N.
523     ++I;
524     CurDAG->DeleteNode(N);
525   }  
526 }
527
528
529 /// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
530 /// the main function.
531 void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
532                                              MachineFrameInfo *MFI) {
533   const TargetInstrInfo *TII = TM.getInstrInfo();
534   if (Subtarget->isTargetCygMing())
535     BuildMI(BB, DebugLoc(),
536             TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
537 }
538
539 void X86DAGToDAGISel::EmitFunctionEntryCode() {
540   // If this is main, emit special code for main.
541   if (const Function *Fn = MF->getFunction())
542     if (Fn->hasExternalLinkage() && Fn->getName() == "main")
543       EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
544 }
545
546
547 bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
548                                               X86ISelAddressMode &AM) {
549   assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
550   SDValue Segment = N.getOperand(0);
551
552   if (AM.Segment.getNode() == 0) {
553     AM.Segment = Segment;
554     return false;
555   }
556
557   return true;
558 }
559
560 bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
561   // This optimization is valid because the GNU TLS model defines that
562   // gs:0 (or fs:0 on X86-64) contains its own address.
563   // For more information see http://people.redhat.com/drepper/tls.pdf
564
565   SDValue Address = N.getOperand(1);
566   if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
567       !MatchSegmentBaseAddress(Address, AM))
568     return false;
569
570   return true;
571 }
572
573 /// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
574 /// into an addressing mode.  These wrap things that will resolve down into a
575 /// symbol reference.  If no match is possible, this returns true, otherwise it
576 /// returns false.
577 bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
578   // If the addressing mode already has a symbol as the displacement, we can
579   // never match another symbol.
580   if (AM.hasSymbolicDisplacement())
581     return true;
582
583   SDValue N0 = N.getOperand(0);
584   CodeModel::Model M = TM.getCodeModel();
585
586   // Handle X86-64 rip-relative addresses.  We check this before checking direct
587   // folding because RIP is preferable to non-RIP accesses.
588   if (Subtarget->is64Bit() &&
589       // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
590       // they cannot be folded into immediate fields.
591       // FIXME: This can be improved for kernel and other models?
592       (M == CodeModel::Small || M == CodeModel::Kernel) &&
593       // Base and index reg must be 0 in order to use %rip as base and lowering
594       // must allow RIP.
595       !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
596     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
597       int64_t Offset = AM.Disp + G->getOffset();
598       if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
599       AM.GV = G->getGlobal();
600       AM.Disp = Offset;
601       AM.SymbolFlags = G->getTargetFlags();
602     } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
603       int64_t Offset = AM.Disp + CP->getOffset();
604       if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
605       AM.CP = CP->getConstVal();
606       AM.Align = CP->getAlignment();
607       AM.Disp = Offset;
608       AM.SymbolFlags = CP->getTargetFlags();
609     } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
610       AM.ES = S->getSymbol();
611       AM.SymbolFlags = S->getTargetFlags();
612     } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
613       AM.JT = J->getIndex();
614       AM.SymbolFlags = J->getTargetFlags();
615     } else {
616       AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
617       AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
618     }
619
620     if (N.getOpcode() == X86ISD::WrapperRIP)
621       AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
622     return false;
623   }
624
625   // Handle the case when globals fit in our immediate field: This is true for
626   // X86-32 always and X86-64 when in -static -mcmodel=small mode.  In 64-bit
627   // mode, this results in a non-RIP-relative computation.
628   if (!Subtarget->is64Bit() ||
629       ((M == CodeModel::Small || M == CodeModel::Kernel) &&
630        TM.getRelocationModel() == Reloc::Static)) {
631     if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
632       AM.GV = G->getGlobal();
633       AM.Disp += G->getOffset();
634       AM.SymbolFlags = G->getTargetFlags();
635     } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
636       AM.CP = CP->getConstVal();
637       AM.Align = CP->getAlignment();
638       AM.Disp += CP->getOffset();
639       AM.SymbolFlags = CP->getTargetFlags();
640     } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
641       AM.ES = S->getSymbol();
642       AM.SymbolFlags = S->getTargetFlags();
643     } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
644       AM.JT = J->getIndex();
645       AM.SymbolFlags = J->getTargetFlags();
646     } else {
647       AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
648       AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
649     }
650     return false;
651   }
652
653   return true;
654 }
655
656 /// MatchAddress - Add the specified node to the specified addressing mode,
657 /// returning true if it cannot be done.  This just pattern matches for the
658 /// addressing mode.
659 bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
660   if (MatchAddressRecursively(N, AM, 0))
661     return true;
662
663   // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
664   // a smaller encoding and avoids a scaled-index.
665   if (AM.Scale == 2 &&
666       AM.BaseType == X86ISelAddressMode::RegBase &&
667       AM.Base_Reg.getNode() == 0) {
668     AM.Base_Reg = AM.IndexReg;
669     AM.Scale = 1;
670   }
671
672   // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
673   // because it has a smaller encoding.
674   // TODO: Which other code models can use this?
675   if (TM.getCodeModel() == CodeModel::Small &&
676       Subtarget->is64Bit() &&
677       AM.Scale == 1 &&
678       AM.BaseType == X86ISelAddressMode::RegBase &&
679       AM.Base_Reg.getNode() == 0 &&
680       AM.IndexReg.getNode() == 0 &&
681       AM.SymbolFlags == X86II::MO_NO_FLAG &&
682       AM.hasSymbolicDisplacement())
683     AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
684
685   return false;
686 }
687
688 /// isLogicallyAddWithConstant - Return true if this node is semantically an
689 /// add of a value with a constantint.
690 static bool isLogicallyAddWithConstant(SDValue V, SelectionDAG *CurDAG) {
691   // Check for (add x, Cst)
692   if (V->getOpcode() == ISD::ADD)
693     return isa<ConstantSDNode>(V->getOperand(1));
694
695   // Check for (or x, Cst), where Cst & x == 0.
696   if (V->getOpcode() != ISD::OR ||
697       !isa<ConstantSDNode>(V->getOperand(1)))
698     return false;
699   
700   // Handle "X | C" as "X + C" iff X is known to have C bits clear.
701   ConstantSDNode *CN = cast<ConstantSDNode>(V->getOperand(1));
702     
703   // Check to see if the LHS & C is zero.
704   return CurDAG->MaskedValueIsZero(V->getOperand(0), CN->getAPIntValue());
705 }
706
707 bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
708                                               unsigned Depth) {
709   bool is64Bit = Subtarget->is64Bit();
710   DebugLoc dl = N.getDebugLoc();
711   DEBUG({
712       dbgs() << "MatchAddress: ";
713       AM.dump();
714     });
715   // Limit recursion.
716   if (Depth > 5)
717     return MatchAddressBase(N, AM);
718
719   CodeModel::Model M = TM.getCodeModel();
720
721   // If this is already a %rip relative address, we can only merge immediates
722   // into it.  Instead of handling this in every case, we handle it here.
723   // RIP relative addressing: %rip + 32-bit displacement!
724   if (AM.isRIPRelative()) {
725     // FIXME: JumpTable and ExternalSymbol address currently don't like
726     // displacements.  It isn't very important, but this should be fixed for
727     // consistency.
728     if (!AM.ES && AM.JT != -1) return true;
729
730     if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
731       int64_t Val = AM.Disp + Cst->getSExtValue();
732       if (X86::isOffsetSuitableForCodeModel(Val, M,
733                                             AM.hasSymbolicDisplacement())) {
734         AM.Disp = Val;
735         return false;
736       }
737     }
738     return true;
739   }
740
741   switch (N.getOpcode()) {
742   default: break;
743   case ISD::Constant: {
744     uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
745     if (!is64Bit ||
746         X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
747                                           AM.hasSymbolicDisplacement())) {
748       AM.Disp += Val;
749       return false;
750     }
751     break;
752   }
753
754   case X86ISD::SegmentBaseAddress:
755     if (!MatchSegmentBaseAddress(N, AM))
756       return false;
757     break;
758
759   case X86ISD::Wrapper:
760   case X86ISD::WrapperRIP:
761     if (!MatchWrapper(N, AM))
762       return false;
763     break;
764
765   case ISD::LOAD:
766     if (!MatchLoad(N, AM))
767       return false;
768     break;
769
770   case ISD::FrameIndex:
771     if (AM.BaseType == X86ISelAddressMode::RegBase
772         && AM.Base_Reg.getNode() == 0) {
773       AM.BaseType = X86ISelAddressMode::FrameIndexBase;
774       AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
775       return false;
776     }
777     break;
778
779   case ISD::SHL:
780     if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
781       break;
782       
783     if (ConstantSDNode
784           *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
785       unsigned Val = CN->getZExtValue();
786       // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
787       // that the base operand remains free for further matching. If
788       // the base doesn't end up getting used, a post-processing step
789       // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
790       if (Val == 1 || Val == 2 || Val == 3) {
791         AM.Scale = 1 << Val;
792         SDValue ShVal = N.getNode()->getOperand(0);
793
794         // Okay, we know that we have a scale by now.  However, if the scaled
795         // value is an add of something and a constant, we can fold the
796         // constant into the disp field here.
797         if (isLogicallyAddWithConstant(ShVal, CurDAG)) {
798           AM.IndexReg = ShVal.getNode()->getOperand(0);
799           ConstantSDNode *AddVal =
800             cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
801           uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
802           if (!is64Bit ||
803               X86::isOffsetSuitableForCodeModel(Disp, M,
804                                                 AM.hasSymbolicDisplacement()))
805             AM.Disp = Disp;
806           else
807             AM.IndexReg = ShVal;
808         } else {
809           AM.IndexReg = ShVal;
810         }
811         return false;
812       }
813     break;
814     }
815
816   case ISD::SMUL_LOHI:
817   case ISD::UMUL_LOHI:
818     // A mul_lohi where we need the low part can be folded as a plain multiply.
819     if (N.getResNo() != 0) break;
820     // FALL THROUGH
821   case ISD::MUL:
822   case X86ISD::MUL_IMM:
823     // X*[3,5,9] -> X+X*[2,4,8]
824     if (AM.BaseType == X86ISelAddressMode::RegBase &&
825         AM.Base_Reg.getNode() == 0 &&
826         AM.IndexReg.getNode() == 0) {
827       if (ConstantSDNode
828             *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
829         if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
830             CN->getZExtValue() == 9) {
831           AM.Scale = unsigned(CN->getZExtValue())-1;
832
833           SDValue MulVal = N.getNode()->getOperand(0);
834           SDValue Reg;
835
836           // Okay, we know that we have a scale by now.  However, if the scaled
837           // value is an add of something and a constant, we can fold the
838           // constant into the disp field here.
839           if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
840               isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
841             Reg = MulVal.getNode()->getOperand(0);
842             ConstantSDNode *AddVal =
843               cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
844             uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
845                                       CN->getZExtValue();
846             if (!is64Bit ||
847                 X86::isOffsetSuitableForCodeModel(Disp, M,
848                                                   AM.hasSymbolicDisplacement()))
849               AM.Disp = Disp;
850             else
851               Reg = N.getNode()->getOperand(0);
852           } else {
853             Reg = N.getNode()->getOperand(0);
854           }
855
856           AM.IndexReg = AM.Base_Reg = Reg;
857           return false;
858         }
859     }
860     break;
861
862   case ISD::SUB: {
863     // Given A-B, if A can be completely folded into the address and
864     // the index field with the index field unused, use -B as the index.
865     // This is a win if a has multiple parts that can be folded into
866     // the address. Also, this saves a mov if the base register has
867     // other uses, since it avoids a two-address sub instruction, however
868     // it costs an additional mov if the index register has other uses.
869
870     // Add an artificial use to this node so that we can keep track of
871     // it if it gets CSE'd with a different node.
872     HandleSDNode Handle(N);
873
874     // Test if the LHS of the sub can be folded.
875     X86ISelAddressMode Backup = AM;
876     if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
877       AM = Backup;
878       break;
879     }
880     // Test if the index field is free for use.
881     if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
882       AM = Backup;
883       break;
884     }
885
886     int Cost = 0;
887     SDValue RHS = Handle.getValue().getNode()->getOperand(1);
888     // If the RHS involves a register with multiple uses, this
889     // transformation incurs an extra mov, due to the neg instruction
890     // clobbering its operand.
891     if (!RHS.getNode()->hasOneUse() ||
892         RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
893         RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
894         RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
895         (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
896          RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
897       ++Cost;
898     // If the base is a register with multiple uses, this
899     // transformation may save a mov.
900     if ((AM.BaseType == X86ISelAddressMode::RegBase &&
901          AM.Base_Reg.getNode() &&
902          !AM.Base_Reg.getNode()->hasOneUse()) ||
903         AM.BaseType == X86ISelAddressMode::FrameIndexBase)
904       --Cost;
905     // If the folded LHS was interesting, this transformation saves
906     // address arithmetic.
907     if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
908         ((AM.Disp != 0) && (Backup.Disp == 0)) +
909         (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
910       --Cost;
911     // If it doesn't look like it may be an overall win, don't do it.
912     if (Cost >= 0) {
913       AM = Backup;
914       break;
915     }
916
917     // Ok, the transformation is legal and appears profitable. Go for it.
918     SDValue Zero = CurDAG->getConstant(0, N.getValueType());
919     SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
920     AM.IndexReg = Neg;
921     AM.Scale = 1;
922
923     // Insert the new nodes into the topological ordering.
924     if (Zero.getNode()->getNodeId() == -1 ||
925         Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
926       CurDAG->RepositionNode(N.getNode(), Zero.getNode());
927       Zero.getNode()->setNodeId(N.getNode()->getNodeId());
928     }
929     if (Neg.getNode()->getNodeId() == -1 ||
930         Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
931       CurDAG->RepositionNode(N.getNode(), Neg.getNode());
932       Neg.getNode()->setNodeId(N.getNode()->getNodeId());
933     }
934     return false;
935   }
936
937   case ISD::ADD: {
938     // Add an artificial use to this node so that we can keep track of
939     // it if it gets CSE'd with a different node.
940     HandleSDNode Handle(N);
941     SDValue LHS = Handle.getValue().getNode()->getOperand(0);
942     SDValue RHS = Handle.getValue().getNode()->getOperand(1);
943
944     X86ISelAddressMode Backup = AM;
945     if (!MatchAddressRecursively(LHS, AM, Depth+1) &&
946         !MatchAddressRecursively(RHS, AM, Depth+1))
947       return false;
948     AM = Backup;
949     LHS = Handle.getValue().getNode()->getOperand(0);
950     RHS = Handle.getValue().getNode()->getOperand(1);
951
952     // Try again after commuting the operands.
953     if (!MatchAddressRecursively(RHS, AM, Depth+1) &&
954         !MatchAddressRecursively(LHS, AM, Depth+1))
955       return false;
956     AM = Backup;
957     LHS = Handle.getValue().getNode()->getOperand(0);
958     RHS = Handle.getValue().getNode()->getOperand(1);
959
960     // If we couldn't fold both operands into the address at the same time,
961     // see if we can just put each operand into a register and fold at least
962     // the add.
963     if (AM.BaseType == X86ISelAddressMode::RegBase &&
964         !AM.Base_Reg.getNode() &&
965         !AM.IndexReg.getNode()) {
966       AM.Base_Reg = LHS;
967       AM.IndexReg = RHS;
968       AM.Scale = 1;
969       return false;
970     }
971     break;
972   }
973
974   case ISD::OR:
975     // Handle "X | C" as "X + C" iff X is known to have C bits clear.
976     if (isLogicallyAddWithConstant(N, CurDAG)) {
977       X86ISelAddressMode Backup = AM;
978       ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
979       uint64_t Offset = CN->getSExtValue();
980
981       // Start with the LHS as an addr mode.
982       if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
983           // Address could not have picked a GV address for the displacement.
984           AM.GV == NULL &&
985           // On x86-64, the resultant disp must fit in 32-bits.
986           (!is64Bit ||
987            X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
988                                              AM.hasSymbolicDisplacement()))) {
989         AM.Disp += Offset;
990         return false;
991       }
992       AM = Backup;
993     }
994     break;
995       
996   case ISD::AND: {
997     // Perform some heroic transforms on an and of a constant-count shift
998     // with a constant to enable use of the scaled offset field.
999
1000     SDValue Shift = N.getOperand(0);
1001     if (Shift.getNumOperands() != 2) break;
1002
1003     // Scale must not be used already.
1004     if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1005
1006     SDValue X = Shift.getOperand(0);
1007     ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1008     ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1009     if (!C1 || !C2) break;
1010
1011     // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1012     // allows us to convert the shift and and into an h-register extract and
1013     // a scaled index.
1014     if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1015       unsigned ScaleLog = 8 - C1->getZExtValue();
1016       if (ScaleLog > 0 && ScaleLog < 4 &&
1017           C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
1018         SDValue Eight = CurDAG->getConstant(8, MVT::i8);
1019         SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1020         SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1021                                       X, Eight);
1022         SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1023                                       Srl, Mask);
1024         SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
1025         SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1026                                       And, ShlCount);
1027
1028         // Insert the new nodes into the topological ordering.
1029         if (Eight.getNode()->getNodeId() == -1 ||
1030             Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1031           CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1032           Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1033         }
1034         if (Mask.getNode()->getNodeId() == -1 ||
1035             Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1036           CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1037           Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1038         }
1039         if (Srl.getNode()->getNodeId() == -1 ||
1040             Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1041           CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1042           Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1043         }
1044         if (And.getNode()->getNodeId() == -1 ||
1045             And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1046           CurDAG->RepositionNode(N.getNode(), And.getNode());
1047           And.getNode()->setNodeId(N.getNode()->getNodeId());
1048         }
1049         if (ShlCount.getNode()->getNodeId() == -1 ||
1050             ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1051           CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1052           ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1053         }
1054         if (Shl.getNode()->getNodeId() == -1 ||
1055             Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1056           CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1057           Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1058         }
1059         CurDAG->ReplaceAllUsesWith(N, Shl);
1060         AM.IndexReg = And;
1061         AM.Scale = (1 << ScaleLog);
1062         return false;
1063       }
1064     }
1065
1066     // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1067     // allows us to fold the shift into this addressing mode.
1068     if (Shift.getOpcode() != ISD::SHL) break;
1069
1070     // Not likely to be profitable if either the AND or SHIFT node has more
1071     // than one use (unless all uses are for address computation). Besides,
1072     // isel mechanism requires their node ids to be reused.
1073     if (!N.hasOneUse() || !Shift.hasOneUse())
1074       break;
1075     
1076     // Verify that the shift amount is something we can fold.
1077     unsigned ShiftCst = C1->getZExtValue();
1078     if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1079       break;
1080     
1081     // Get the new AND mask, this folds to a constant.
1082     SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1083                                          SDValue(C2, 0), SDValue(C1, 0));
1084     SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X, 
1085                                      NewANDMask);
1086     SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1087                                        NewAND, SDValue(C1, 0));
1088
1089     // Insert the new nodes into the topological ordering.
1090     if (C1->getNodeId() > X.getNode()->getNodeId()) {
1091       CurDAG->RepositionNode(X.getNode(), C1);
1092       C1->setNodeId(X.getNode()->getNodeId());
1093     }
1094     if (NewANDMask.getNode()->getNodeId() == -1 ||
1095         NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1096       CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1097       NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1098     }
1099     if (NewAND.getNode()->getNodeId() == -1 ||
1100         NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1101       CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1102       NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1103     }
1104     if (NewSHIFT.getNode()->getNodeId() == -1 ||
1105         NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1106       CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1107       NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1108     }
1109
1110     CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
1111     
1112     AM.Scale = 1 << ShiftCst;
1113     AM.IndexReg = NewAND;
1114     return false;
1115   }
1116   }
1117
1118   return MatchAddressBase(N, AM);
1119 }
1120
1121 /// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1122 /// specified addressing mode without any further recursion.
1123 bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
1124   // Is the base register already occupied?
1125   if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
1126     // If so, check to see if the scale index register is set.
1127     if (AM.IndexReg.getNode() == 0) {
1128       AM.IndexReg = N;
1129       AM.Scale = 1;
1130       return false;
1131     }
1132
1133     // Otherwise, we cannot select it.
1134     return true;
1135   }
1136
1137   // Default, generate it as a register.
1138   AM.BaseType = X86ISelAddressMode::RegBase;
1139   AM.Base_Reg = N;
1140   return false;
1141 }
1142
1143 /// SelectAddr - returns true if it is able pattern match an addressing mode.
1144 /// It returns the operands which make up the maximal addressing mode it can
1145 /// match by reference.
1146 ///
1147 /// Parent is the parent node of the addr operand that is being matched.  It
1148 /// is always a load, store, atomic node, or null.  It is only null when
1149 /// checking memory operands for inline asm nodes.
1150 bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
1151                                  SDValue &Scale, SDValue &Index,
1152                                  SDValue &Disp, SDValue &Segment) {
1153   X86ISelAddressMode AM;
1154   if (MatchAddress(N, AM))
1155     return false;
1156
1157   EVT VT = N.getValueType();
1158   if (AM.BaseType == X86ISelAddressMode::RegBase) {
1159     if (!AM.Base_Reg.getNode())
1160       AM.Base_Reg = CurDAG->getRegister(0, VT);
1161   }
1162
1163   if (!AM.IndexReg.getNode())
1164     AM.IndexReg = CurDAG->getRegister(0, VT);
1165
1166   if (Parent &&
1167       // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1168       // that are not a MemSDNode, and thus don't have proper addrspace info.
1169       Parent->getOpcode() != ISD::PREFETCH &&
1170       Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
1171       Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores.
1172       Parent->getOpcode() != X86ISD::FLD &&
1173       Parent->getOpcode() != X86ISD::FILD &&
1174       Parent->getOpcode() != X86ISD::FILD_FLAG &&
1175       Parent->getOpcode() != X86ISD::FP_TO_INT16_IN_MEM &&
1176       Parent->getOpcode() != X86ISD::FP_TO_INT32_IN_MEM &&
1177       Parent->getOpcode() != X86ISD::FP_TO_INT64_IN_MEM &&
1178       Parent->getOpcode() != X86ISD::FST) {
1179     unsigned AddrSpace =
1180       cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1181     // AddrSpace 256 -> GS, 257 -> FS.
1182     if (AddrSpace == 256)
1183       AM.Segment = CurDAG->getRegister(X86::GS, VT);
1184     if (AddrSpace == 257)
1185       AM.Segment = CurDAG->getRegister(X86::FS, VT);
1186   }
1187   
1188   
1189   getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1190   return true;
1191 }
1192
1193 /// SelectScalarSSELoad - Match a scalar SSE load.  In particular, we want to
1194 /// match a load whose top elements are either undef or zeros.  The load flavor
1195 /// is derived from the type of N, which is either v4f32 or v2f64.
1196 ///
1197 /// We also return:
1198 ///   PatternChainNode: this is the matched node that has a chain input and
1199 ///   output.
1200 bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
1201                                           SDValue N, SDValue &Base,
1202                                           SDValue &Scale, SDValue &Index,
1203                                           SDValue &Disp, SDValue &Segment,
1204                                           SDValue &PatternNodeWithChain) {
1205   if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
1206     PatternNodeWithChain = N.getOperand(0);
1207     if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1208         PatternNodeWithChain.hasOneUse() &&
1209         IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1210         IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
1211       LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
1212       if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
1213         return false;
1214       return true;
1215     }
1216   }
1217
1218   // Also handle the case where we explicitly require zeros in the top
1219   // elements.  This is a vector shuffle from the zero vector.
1220   if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
1221       // Check to see if the top elements are all zeros (or bitcast of zeros).
1222       N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR && 
1223       N.getOperand(0).getNode()->hasOneUse() &&
1224       ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
1225       N.getOperand(0).getOperand(0).hasOneUse() &&
1226       IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1227       IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
1228     // Okay, this is a zero extending load.  Fold it.
1229     LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
1230     if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
1231       return false;
1232     PatternNodeWithChain = SDValue(LD, 0);
1233     return true;
1234   }
1235   return false;
1236 }
1237
1238
1239 /// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1240 /// mode it matches can be cost effectively emitted as an LEA instruction.
1241 bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
1242                                     SDValue &Base, SDValue &Scale,
1243                                     SDValue &Index, SDValue &Disp,
1244                                     SDValue &Segment) {
1245   X86ISelAddressMode AM;
1246
1247   // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1248   // segments.
1249   SDValue Copy = AM.Segment;
1250   SDValue T = CurDAG->getRegister(0, MVT::i32);
1251   AM.Segment = T;
1252   if (MatchAddress(N, AM))
1253     return false;
1254   assert (T == AM.Segment);
1255   AM.Segment = Copy;
1256
1257   EVT VT = N.getValueType();
1258   unsigned Complexity = 0;
1259   if (AM.BaseType == X86ISelAddressMode::RegBase)
1260     if (AM.Base_Reg.getNode())
1261       Complexity = 1;
1262     else
1263       AM.Base_Reg = CurDAG->getRegister(0, VT);
1264   else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1265     Complexity = 4;
1266
1267   if (AM.IndexReg.getNode())
1268     Complexity++;
1269   else
1270     AM.IndexReg = CurDAG->getRegister(0, VT);
1271
1272   // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1273   // a simple shift.
1274   if (AM.Scale > 1)
1275     Complexity++;
1276
1277   // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1278   // to a LEA. This is determined with some expermentation but is by no means
1279   // optimal (especially for code size consideration). LEA is nice because of
1280   // its three-address nature. Tweak the cost function again when we can run
1281   // convertToThreeAddress() at register allocation time.
1282   if (AM.hasSymbolicDisplacement()) {
1283     // For X86-64, we should always use lea to materialize RIP relative
1284     // addresses.
1285     if (Subtarget->is64Bit())
1286       Complexity = 4;
1287     else
1288       Complexity += 2;
1289   }
1290
1291   if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
1292     Complexity++;
1293
1294   // If it isn't worth using an LEA, reject it.
1295   if (Complexity <= 2)
1296     return false;
1297   
1298   getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1299   return true;
1300 }
1301
1302 /// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
1303 bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
1304                                         SDValue &Scale, SDValue &Index,
1305                                         SDValue &Disp, SDValue &Segment) {
1306   assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1307   const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1308     
1309   X86ISelAddressMode AM;
1310   AM.GV = GA->getGlobal();
1311   AM.Disp += GA->getOffset();
1312   AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
1313   AM.SymbolFlags = GA->getTargetFlags();
1314
1315   if (N.getValueType() == MVT::i32) {
1316     AM.Scale = 1;
1317     AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
1318   } else {
1319     AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
1320   }
1321   
1322   getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1323   return true;
1324 }
1325
1326
1327 bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
1328                                   SDValue &Base, SDValue &Scale,
1329                                   SDValue &Index, SDValue &Disp,
1330                                   SDValue &Segment) {
1331   if (!ISD::isNON_EXTLoad(N.getNode()) ||
1332       !IsProfitableToFold(N, P, P) ||
1333       !IsLegalToFold(N, P, P, OptLevel))
1334     return false;
1335   
1336   return SelectAddr(N.getNode(),
1337                     N.getOperand(1), Base, Scale, Index, Disp, Segment);
1338 }
1339
1340 /// getGlobalBaseReg - Return an SDNode that returns the value of
1341 /// the global base register. Output instructions required to
1342 /// initialize the global base register, if necessary.
1343 ///
1344 SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
1345   unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
1346   return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
1347 }
1348
1349 SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1350   SDValue Chain = Node->getOperand(0);
1351   SDValue In1 = Node->getOperand(1);
1352   SDValue In2L = Node->getOperand(2);
1353   SDValue In2H = Node->getOperand(3);
1354   SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1355   if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1356     return NULL;
1357   MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1358   MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1359   const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1360   SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1361                                            MVT::i32, MVT::i32, MVT::Other, Ops,
1362                                            array_lengthof(Ops));
1363   cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1364   return ResNode;
1365 }
1366
1367 SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
1368   if (Node->hasAnyUseOfValue(0))
1369     return 0;
1370
1371   // Optimize common patterns for __sync_add_and_fetch and
1372   // __sync_sub_and_fetch where the result is not used. This allows us
1373   // to use "lock" version of add, sub, inc, dec instructions.
1374   // FIXME: Do not use special instructions but instead add the "lock"
1375   // prefix to the target node somehow. The extra information will then be
1376   // transferred to machine instruction and it denotes the prefix.
1377   SDValue Chain = Node->getOperand(0);
1378   SDValue Ptr = Node->getOperand(1);
1379   SDValue Val = Node->getOperand(2);
1380   SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1381   if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1382     return 0;
1383
1384   bool isInc = false, isDec = false, isSub = false, isCN = false;
1385   ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1386   if (CN) {
1387     isCN = true;
1388     int64_t CNVal = CN->getSExtValue();
1389     if (CNVal == 1)
1390       isInc = true;
1391     else if (CNVal == -1)
1392       isDec = true;
1393     else if (CNVal >= 0)
1394       Val = CurDAG->getTargetConstant(CNVal, NVT);
1395     else {
1396       isSub = true;
1397       Val = CurDAG->getTargetConstant(-CNVal, NVT);
1398     }
1399   } else if (Val.hasOneUse() &&
1400              Val.getOpcode() == ISD::SUB &&
1401              X86::isZeroNode(Val.getOperand(0))) {
1402     isSub = true;
1403     Val = Val.getOperand(1);
1404   }
1405
1406   unsigned Opc = 0;
1407   switch (NVT.getSimpleVT().SimpleTy) {
1408   default: return 0;
1409   case MVT::i8:
1410     if (isInc)
1411       Opc = X86::LOCK_INC8m;
1412     else if (isDec)
1413       Opc = X86::LOCK_DEC8m;
1414     else if (isSub) {
1415       if (isCN)
1416         Opc = X86::LOCK_SUB8mi;
1417       else
1418         Opc = X86::LOCK_SUB8mr;
1419     } else {
1420       if (isCN)
1421         Opc = X86::LOCK_ADD8mi;
1422       else
1423         Opc = X86::LOCK_ADD8mr;
1424     }
1425     break;
1426   case MVT::i16:
1427     if (isInc)
1428       Opc = X86::LOCK_INC16m;
1429     else if (isDec)
1430       Opc = X86::LOCK_DEC16m;
1431     else if (isSub) {
1432       if (isCN) {
1433         if (immSext8(Val.getNode()))
1434           Opc = X86::LOCK_SUB16mi8;
1435         else
1436           Opc = X86::LOCK_SUB16mi;
1437       } else
1438         Opc = X86::LOCK_SUB16mr;
1439     } else {
1440       if (isCN) {
1441         if (immSext8(Val.getNode()))
1442           Opc = X86::LOCK_ADD16mi8;
1443         else
1444           Opc = X86::LOCK_ADD16mi;
1445       } else
1446         Opc = X86::LOCK_ADD16mr;
1447     }
1448     break;
1449   case MVT::i32:
1450     if (isInc)
1451       Opc = X86::LOCK_INC32m;
1452     else if (isDec)
1453       Opc = X86::LOCK_DEC32m;
1454     else if (isSub) {
1455       if (isCN) {
1456         if (immSext8(Val.getNode()))
1457           Opc = X86::LOCK_SUB32mi8;
1458         else
1459           Opc = X86::LOCK_SUB32mi;
1460       } else
1461         Opc = X86::LOCK_SUB32mr;
1462     } else {
1463       if (isCN) {
1464         if (immSext8(Val.getNode()))
1465           Opc = X86::LOCK_ADD32mi8;
1466         else
1467           Opc = X86::LOCK_ADD32mi;
1468       } else
1469         Opc = X86::LOCK_ADD32mr;
1470     }
1471     break;
1472   case MVT::i64:
1473     if (isInc)
1474       Opc = X86::LOCK_INC64m;
1475     else if (isDec)
1476       Opc = X86::LOCK_DEC64m;
1477     else if (isSub) {
1478       Opc = X86::LOCK_SUB64mr;
1479       if (isCN) {
1480         if (immSext8(Val.getNode()))
1481           Opc = X86::LOCK_SUB64mi8;
1482         else if (i64immSExt32(Val.getNode()))
1483           Opc = X86::LOCK_SUB64mi32;
1484       }
1485     } else {
1486       Opc = X86::LOCK_ADD64mr;
1487       if (isCN) {
1488         if (immSext8(Val.getNode()))
1489           Opc = X86::LOCK_ADD64mi8;
1490         else if (i64immSExt32(Val.getNode()))
1491           Opc = X86::LOCK_ADD64mi32;
1492       }
1493     }
1494     break;
1495   }
1496
1497   DebugLoc dl = Node->getDebugLoc();
1498   SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1499                                                  dl, NVT), 0);
1500   MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1501   MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1502   if (isInc || isDec) {
1503     SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1504     SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1505     cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1506     SDValue RetVals[] = { Undef, Ret };
1507     return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1508   } else {
1509     SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1510     SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1511     cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1512     SDValue RetVals[] = { Undef, Ret };
1513     return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1514   }
1515 }
1516
1517 /// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1518 /// any uses which require the SF or OF bits to be accurate.
1519 static bool HasNoSignedComparisonUses(SDNode *N) {
1520   // Examine each user of the node.
1521   for (SDNode::use_iterator UI = N->use_begin(),
1522          UE = N->use_end(); UI != UE; ++UI) {
1523     // Only examine CopyToReg uses.
1524     if (UI->getOpcode() != ISD::CopyToReg)
1525       return false;
1526     // Only examine CopyToReg uses that copy to EFLAGS.
1527     if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1528           X86::EFLAGS)
1529       return false;
1530     // Examine each user of the CopyToReg use.
1531     for (SDNode::use_iterator FlagUI = UI->use_begin(),
1532            FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1533       // Only examine the Flag result.
1534       if (FlagUI.getUse().getResNo() != 1) continue;
1535       // Anything unusual: assume conservatively.
1536       if (!FlagUI->isMachineOpcode()) return false;
1537       // Examine the opcode of the user.
1538       switch (FlagUI->getMachineOpcode()) {
1539       // These comparisons don't treat the most significant bit specially.
1540       case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1541       case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1542       case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1543       case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
1544       case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1545       case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
1546       case X86::CMOVA16rr: case X86::CMOVA16rm:
1547       case X86::CMOVA32rr: case X86::CMOVA32rm:
1548       case X86::CMOVA64rr: case X86::CMOVA64rm:
1549       case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1550       case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1551       case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1552       case X86::CMOVB16rr: case X86::CMOVB16rm:
1553       case X86::CMOVB32rr: case X86::CMOVB32rm:
1554       case X86::CMOVB64rr: case X86::CMOVB64rm:
1555       case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1556       case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1557       case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1558       case X86::CMOVE16rr: case X86::CMOVE16rm:
1559       case X86::CMOVE32rr: case X86::CMOVE32rm:
1560       case X86::CMOVE64rr: case X86::CMOVE64rm:
1561       case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1562       case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1563       case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1564       case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1565       case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1566       case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1567       case X86::CMOVP16rr: case X86::CMOVP16rm:
1568       case X86::CMOVP32rr: case X86::CMOVP32rm:
1569       case X86::CMOVP64rr: case X86::CMOVP64rm:
1570         continue;
1571       // Anything else: assume conservatively.
1572       default: return false;
1573       }
1574     }
1575   }
1576   return true;
1577 }
1578
1579 SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
1580   EVT NVT = Node->getValueType(0);
1581   unsigned Opc, MOpc;
1582   unsigned Opcode = Node->getOpcode();
1583   DebugLoc dl = Node->getDebugLoc();
1584   
1585   DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
1586
1587   if (Node->isMachineOpcode()) {
1588     DEBUG(dbgs() << "== ";  Node->dump(CurDAG); dbgs() << '\n');
1589     return NULL;   // Already selected.
1590   }
1591
1592   switch (Opcode) {
1593   default: break;
1594   case X86ISD::GlobalBaseReg:
1595     return getGlobalBaseReg();
1596
1597   case X86ISD::ATOMOR64_DAG:
1598     return SelectAtomic64(Node, X86::ATOMOR6432);
1599   case X86ISD::ATOMXOR64_DAG:
1600     return SelectAtomic64(Node, X86::ATOMXOR6432);
1601   case X86ISD::ATOMADD64_DAG:
1602     return SelectAtomic64(Node, X86::ATOMADD6432);
1603   case X86ISD::ATOMSUB64_DAG:
1604     return SelectAtomic64(Node, X86::ATOMSUB6432);
1605   case X86ISD::ATOMNAND64_DAG:
1606     return SelectAtomic64(Node, X86::ATOMNAND6432);
1607   case X86ISD::ATOMAND64_DAG:
1608     return SelectAtomic64(Node, X86::ATOMAND6432);
1609   case X86ISD::ATOMSWAP64_DAG:
1610     return SelectAtomic64(Node, X86::ATOMSWAP6432);
1611
1612   case ISD::ATOMIC_LOAD_ADD: {
1613     SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1614     if (RetVal)
1615       return RetVal;
1616     break;
1617   }
1618
1619   case ISD::SMUL_LOHI:
1620   case ISD::UMUL_LOHI: {
1621     SDValue N0 = Node->getOperand(0);
1622     SDValue N1 = Node->getOperand(1);
1623
1624     bool isSigned = Opcode == ISD::SMUL_LOHI;
1625     if (!isSigned) {
1626       switch (NVT.getSimpleVT().SimpleTy) {
1627       default: llvm_unreachable("Unsupported VT!");
1628       case MVT::i8:  Opc = X86::MUL8r;  MOpc = X86::MUL8m;  break;
1629       case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1630       case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1631       case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
1632       }
1633     } else {
1634       switch (NVT.getSimpleVT().SimpleTy) {
1635       default: llvm_unreachable("Unsupported VT!");
1636       case MVT::i8:  Opc = X86::IMUL8r;  MOpc = X86::IMUL8m;  break;
1637       case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1638       case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1639       case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
1640       }
1641     }
1642
1643     unsigned LoReg, HiReg;
1644     switch (NVT.getSimpleVT().SimpleTy) {
1645     default: llvm_unreachable("Unsupported VT!");
1646     case MVT::i8:  LoReg = X86::AL;  HiReg = X86::AH;  break;
1647     case MVT::i16: LoReg = X86::AX;  HiReg = X86::DX;  break;
1648     case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1649     case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
1650     }
1651
1652     SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1653     bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1654     // Multiply is commmutative.
1655     if (!foldedLoad) {
1656       foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1657       if (foldedLoad)
1658         std::swap(N0, N1);
1659     }
1660
1661     SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1662                                             N0, SDValue()).getValue(1);
1663
1664     if (foldedLoad) {
1665       SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1666                         InFlag };
1667       SDNode *CNode =
1668         CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1669                                array_lengthof(Ops));
1670       InFlag = SDValue(CNode, 1);
1671       // Update the chain.
1672       ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1673     } else {
1674       InFlag =
1675         SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
1676     }
1677
1678     // Prevent use of AH in a REX instruction by referencing AX instead.
1679     if (HiReg == X86::AH && Subtarget->is64Bit() &&
1680         !SDValue(Node, 1).use_empty()) {
1681       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1682                                               X86::AX, MVT::i16, InFlag);
1683       InFlag = Result.getValue(2);
1684       // Get the low part if needed. Don't use getCopyFromReg for aliasing
1685       // registers.
1686       if (!SDValue(Node, 0).use_empty())
1687         ReplaceUses(SDValue(Node, 1),
1688           CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1689
1690       // Shift AX down 8 bits.
1691       Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1692                                               Result,
1693                                      CurDAG->getTargetConstant(8, MVT::i8)), 0);
1694       // Then truncate it down to i8.
1695       ReplaceUses(SDValue(Node, 1),
1696         CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1697     }
1698     // Copy the low half of the result, if it is needed.
1699     if (!SDValue(Node, 0).use_empty()) {
1700       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1701                                                 LoReg, NVT, InFlag);
1702       InFlag = Result.getValue(2);
1703       ReplaceUses(SDValue(Node, 0), Result);
1704       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
1705     }
1706     // Copy the high half of the result, if it is needed.
1707     if (!SDValue(Node, 1).use_empty()) {
1708       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1709                                               HiReg, NVT, InFlag);
1710       InFlag = Result.getValue(2);
1711       ReplaceUses(SDValue(Node, 1), Result);
1712       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
1713     }
1714
1715     return NULL;
1716   }
1717
1718   case ISD::SDIVREM:
1719   case ISD::UDIVREM: {
1720     SDValue N0 = Node->getOperand(0);
1721     SDValue N1 = Node->getOperand(1);
1722
1723     bool isSigned = Opcode == ISD::SDIVREM;
1724     if (!isSigned) {
1725       switch (NVT.getSimpleVT().SimpleTy) {
1726       default: llvm_unreachable("Unsupported VT!");
1727       case MVT::i8:  Opc = X86::DIV8r;  MOpc = X86::DIV8m;  break;
1728       case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1729       case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1730       case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
1731       }
1732     } else {
1733       switch (NVT.getSimpleVT().SimpleTy) {
1734       default: llvm_unreachable("Unsupported VT!");
1735       case MVT::i8:  Opc = X86::IDIV8r;  MOpc = X86::IDIV8m;  break;
1736       case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1737       case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1738       case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
1739       }
1740     }
1741
1742     unsigned LoReg, HiReg, ClrReg;
1743     unsigned ClrOpcode, SExtOpcode;
1744     switch (NVT.getSimpleVT().SimpleTy) {
1745     default: llvm_unreachable("Unsupported VT!");
1746     case MVT::i8:
1747       LoReg = X86::AL;  ClrReg = HiReg = X86::AH;
1748       ClrOpcode  = 0;
1749       SExtOpcode = X86::CBW;
1750       break;
1751     case MVT::i16:
1752       LoReg = X86::AX;  HiReg = X86::DX;
1753       ClrOpcode  = X86::MOV16r0; ClrReg = X86::DX;
1754       SExtOpcode = X86::CWD;
1755       break;
1756     case MVT::i32:
1757       LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
1758       ClrOpcode  = X86::MOV32r0;
1759       SExtOpcode = X86::CDQ;
1760       break;
1761     case MVT::i64:
1762       LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
1763       ClrOpcode  = X86::MOV64r0;
1764       SExtOpcode = X86::CQO;
1765       break;
1766     }
1767
1768     SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1769     bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1770     bool signBitIsZero = CurDAG->SignBitIsZero(N0);
1771
1772     SDValue InFlag;
1773     if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
1774       // Special case for div8, just use a move with zero extension to AX to
1775       // clear the upper 8 bits (AH).
1776       SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
1777       if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
1778         SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1779         Move =
1780           SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1781                                          MVT::Other, Ops,
1782                                          array_lengthof(Ops)), 0);
1783         Chain = Move.getValue(1);
1784         ReplaceUses(N0.getValue(1), Chain);
1785       } else {
1786         Move =
1787           SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
1788         Chain = CurDAG->getEntryNode();
1789       }
1790       Chain  = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1791       InFlag = Chain.getValue(1);
1792     } else {
1793       InFlag =
1794         CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1795                              LoReg, N0, SDValue()).getValue(1);
1796       if (isSigned && !signBitIsZero) {
1797         // Sign extend the low part into the high part.
1798         InFlag =
1799           SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
1800       } else {
1801         // Zero out the high part, effectively zero extending the input.
1802         SDValue ClrNode =
1803           SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
1804         InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
1805                                       ClrNode, InFlag).getValue(1);
1806       }
1807     }
1808
1809     if (foldedLoad) {
1810       SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1811                         InFlag };
1812       SDNode *CNode =
1813         CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1814                                array_lengthof(Ops));
1815       InFlag = SDValue(CNode, 1);
1816       // Update the chain.
1817       ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1818     } else {
1819       InFlag =
1820         SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
1821     }
1822
1823     // Prevent use of AH in a REX instruction by referencing AX instead.
1824     // Shift it down 8 bits.
1825     if (HiReg == X86::AH && Subtarget->is64Bit() &&
1826         !SDValue(Node, 1).use_empty()) {
1827       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1828                                               X86::AX, MVT::i16, InFlag);
1829       InFlag = Result.getValue(2);
1830
1831       // If we also need AL (the quotient), get it by extracting a subreg from
1832       // Result. The fast register allocator does not like multiple CopyFromReg
1833       // nodes using aliasing registers.
1834       if (!SDValue(Node, 0).use_empty())
1835         ReplaceUses(SDValue(Node, 0),
1836           CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1837
1838       // Shift AX right by 8 bits instead of using AH.
1839       Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1840                                          Result,
1841                                          CurDAG->getTargetConstant(8, MVT::i8)),
1842                        0);
1843       ReplaceUses(SDValue(Node, 1),
1844         CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1845     }
1846     // Copy the division (low) result, if it is needed.
1847     if (!SDValue(Node, 0).use_empty()) {
1848       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1849                                                 LoReg, NVT, InFlag);
1850       InFlag = Result.getValue(2);
1851       ReplaceUses(SDValue(Node, 0), Result);
1852       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
1853     }
1854     // Copy the remainder (high) result, if it is needed.
1855     if (!SDValue(Node, 1).use_empty()) {
1856       SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1857                                               HiReg, NVT, InFlag);
1858       InFlag = Result.getValue(2);
1859       ReplaceUses(SDValue(Node, 1), Result);
1860       DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
1861     }
1862     return NULL;
1863   }
1864
1865   case X86ISD::CMP: {
1866     SDValue N0 = Node->getOperand(0);
1867     SDValue N1 = Node->getOperand(1);
1868
1869     // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
1870     // use a smaller encoding.
1871     if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
1872         HasNoSignedComparisonUses(Node))
1873       // Look past the truncate if CMP is the only use of it.
1874       N0 = N0.getOperand(0);
1875     if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
1876         N0.getValueType() != MVT::i8 &&
1877         X86::isZeroNode(N1)) {
1878       ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
1879       if (!C) break;
1880
1881       // For example, convert "testl %eax, $8" to "testb %al, $8"
1882       if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
1883           (!(C->getZExtValue() & 0x80) ||
1884            HasNoSignedComparisonUses(Node))) {
1885         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
1886         SDValue Reg = N0.getNode()->getOperand(0);
1887
1888         // On x86-32, only the ABCD registers have 8-bit subregisters.
1889         if (!Subtarget->is64Bit()) {
1890           TargetRegisterClass *TRC = 0;
1891           switch (N0.getValueType().getSimpleVT().SimpleTy) {
1892           case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1893           case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1894           default: llvm_unreachable("Unsupported TEST operand type!");
1895           }
1896           SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
1897           Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1898                                                Reg.getValueType(), Reg, RC), 0);
1899         }
1900
1901         // Extract the l-register.
1902         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
1903                                                         MVT::i8, Reg);
1904
1905         // Emit a testb.
1906         return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
1907       }
1908
1909       // For example, "testl %eax, $2048" to "testb %ah, $8".
1910       if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
1911           (!(C->getZExtValue() & 0x8000) ||
1912            HasNoSignedComparisonUses(Node))) {
1913         // Shift the immediate right by 8 bits.
1914         SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
1915                                                        MVT::i8);
1916         SDValue Reg = N0.getNode()->getOperand(0);
1917
1918         // Put the value in an ABCD register.
1919         TargetRegisterClass *TRC = 0;
1920         switch (N0.getValueType().getSimpleVT().SimpleTy) {
1921         case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
1922         case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1923         case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1924         default: llvm_unreachable("Unsupported TEST operand type!");
1925         }
1926         SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
1927         Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1928                                              Reg.getValueType(), Reg, RC), 0);
1929
1930         // Extract the h-register.
1931         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
1932                                                         MVT::i8, Reg);
1933
1934         // Emit a testb. No special NOREX tricks are needed since there's
1935         // only one GPR operand!
1936         return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
1937                                       Subreg, ShiftedImm);
1938       }
1939
1940       // For example, "testl %eax, $32776" to "testw %ax, $32776".
1941       if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
1942           N0.getValueType() != MVT::i16 &&
1943           (!(C->getZExtValue() & 0x8000) ||
1944            HasNoSignedComparisonUses(Node))) {
1945         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
1946         SDValue Reg = N0.getNode()->getOperand(0);
1947
1948         // Extract the 16-bit subregister.
1949         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
1950                                                         MVT::i16, Reg);
1951
1952         // Emit a testw.
1953         return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
1954       }
1955
1956       // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
1957       if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
1958           N0.getValueType() == MVT::i64 &&
1959           (!(C->getZExtValue() & 0x80000000) ||
1960            HasNoSignedComparisonUses(Node))) {
1961         SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
1962         SDValue Reg = N0.getNode()->getOperand(0);
1963
1964         // Extract the 32-bit subregister.
1965         SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
1966                                                         MVT::i32, Reg);
1967
1968         // Emit a testl.
1969         return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
1970       }
1971     }
1972     break;
1973   }
1974   }
1975
1976   SDNode *ResNode = SelectCode(Node);
1977
1978   DEBUG(dbgs() << "=> ";
1979         if (ResNode == NULL || ResNode == Node)
1980           Node->dump(CurDAG);
1981         else
1982           ResNode->dump(CurDAG);
1983         dbgs() << '\n');
1984
1985   return ResNode;
1986 }
1987
1988 bool X86DAGToDAGISel::
1989 SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
1990                              std::vector<SDValue> &OutOps) {
1991   SDValue Op0, Op1, Op2, Op3, Op4;
1992   switch (ConstraintCode) {
1993   case 'o':   // offsetable        ??
1994   case 'v':   // not offsetable    ??
1995   default: return true;
1996   case 'm':   // memory
1997     if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
1998       return true;
1999     break;
2000   }
2001   
2002   OutOps.push_back(Op0);
2003   OutOps.push_back(Op1);
2004   OutOps.push_back(Op2);
2005   OutOps.push_back(Op3);
2006   OutOps.push_back(Op4);
2007   return false;
2008 }
2009
2010 /// createX86ISelDag - This pass converts a legalized DAG into a 
2011 /// X86-specific DAG, ready for instruction scheduling.
2012 ///
2013 FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2014                                      llvm::CodeGenOpt::Level OptLevel) {
2015   return new X86DAGToDAGISel(TM, OptLevel);
2016 }