blob: e162f4e4175eade541ebbbcbdba2411feb362f8f [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc961eea2005-11-16 01:54:32 +00007//
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
Evan Cheng2ef88a02006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000016#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Chengc4c62572006-03-13 23:20:37 +000018#include "X86ISelLowering.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000019#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000020#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000021#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000022#include "X86TargetMachine.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000023#include "llvm/GlobalValue.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000025#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000026#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000027#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000029#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000030#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000033#include "llvm/CodeGen/SelectionDAGISel.h"
34#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000035#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000036#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000037#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000038#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000039#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000040#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000041#include "llvm/ADT/Statistic.h"
42using namespace llvm;
43
Chris Lattner95b2c7d2006-12-19 22:59:26 +000044STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
45
Chris Lattnerc961eea2005-11-16 01:54:32 +000046//===----------------------------------------------------------------------===//
47// Pattern Matcher Implementation
48//===----------------------------------------------------------------------===//
49
50namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000051 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000052 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000053 /// tree.
54 struct X86ISelAddressMode {
55 enum {
56 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000057 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000058 } BaseType;
59
60 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000061 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000062 int FrameIndex;
63 } Base;
64
65 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000067 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000068 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000069 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000070 Constant *CP;
Chris Lattner43f44aa2009-11-01 03:25:03 +000071 BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000072 const char *ES;
73 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000074 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000075 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000076
77 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000078 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000079 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000080 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000081 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000082
83 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000084 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000085 }
Chris Lattner18c59872009-06-27 04:16:01 +000086
87 bool hasBaseOrIndexReg() const {
88 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
89 }
90
91 /// isRIPRelative - Return true if this addressing mode is already RIP
92 /// relative.
93 bool isRIPRelative() const {
94 if (BaseType != RegBase) return false;
95 if (RegisterSDNode *RegNode =
96 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
97 return RegNode->getReg() == X86::RIP;
98 return false;
99 }
100
101 void setBaseReg(SDValue Reg) {
102 BaseType = RegBase;
103 Base.Reg = Reg;
104 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000105
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000106 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000107 dbgs() << "X86ISelAddressMode " << this << '\n';
108 dbgs() << "Base.Reg ";
Bill Wendling12321672009-08-07 21:33:25 +0000109 if (Base.Reg.getNode() != 0)
110 Base.Reg.getNode()->dump();
111 else
David Greened7f4f242010-01-05 01:29:08 +0000112 dbgs() << "nul";
113 dbgs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000114 << " Scale" << Scale << '\n'
115 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000116 if (IndexReg.getNode() != 0)
117 IndexReg.getNode()->dump();
118 else
David Greened7f4f242010-01-05 01:29:08 +0000119 dbgs() << "nul";
120 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000121 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000122 if (GV)
123 GV->dump();
124 else
David Greened7f4f242010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000127 if (CP)
128 CP->dump();
129 else
David Greened7f4f242010-01-05 01:29:08 +0000130 dbgs() << "nul";
131 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000132 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000133 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000134 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000135 else
David Greened7f4f242010-01-05 01:29:08 +0000136 dbgs() << "nul";
137 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000138 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000139 };
140}
141
142namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000143 //===--------------------------------------------------------------------===//
144 /// ISel - X86 specific code to select X86 machine instructions for
145 /// SelectionDAG operations.
146 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000147 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000148 /// X86Lowering - This object fully describes how to lower LLVM code to an
149 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000150 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000151
152 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
153 /// make the right decision when generating code for different targets.
154 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000155
Evan Chengb7a75a52008-09-26 23:41:32 +0000156 /// OptForSize - If true, selector should try to optimize for code size
157 /// instead of performance.
158 bool OptForSize;
159
Chris Lattnerc961eea2005-11-16 01:54:32 +0000160 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000161 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000162 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000163 X86Lowering(*tm.getTargetLowering()),
164 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000165 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000166
167 virtual const char *getPassName() const {
168 return "X86 DAG->DAG Instruction Selection";
169 }
170
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000171 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
172
Evan Cheng014bf212010-02-15 19:41:07 +0000173 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
174
Chris Lattner7c306da2010-03-02 06:34:30 +0000175 virtual void PreprocessISelDAG();
176
Chris Lattnerc961eea2005-11-16 01:54:32 +0000177// Include the pieces autogenerated from the target description.
178#include "X86GenDAGISel.inc"
179
180 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000181 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000182 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000183 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000184
Rafael Espindola094fad32009-04-08 21:14:34 +0000185 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
186 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000187 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000188 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
189 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
190 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000191 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000192 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000193 SDValue &Scale, SDValue &Index, SDValue &Disp,
194 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000195 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000196 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000197 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000198 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000199 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000200 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000201 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000202 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000203 SDValue &NodeWithChain);
204
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000205 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000206 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000207 SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000209
Dan Gohmanf350b272008-08-23 02:25:05 +0000210 void PreprocessForRMW();
211 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000212
Chris Lattnerc0bad572006-06-08 18:03:49 +0000213 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
214 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000215 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000216 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000217 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000218
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000219 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
220
Dan Gohman475871a2008-07-27 21:46:04 +0000221 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
222 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000223 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000224 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000225 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
226 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000227 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000228 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000229 // These are 32-bit even in 64-bit mode since RIP relative offset
230 // is 32-bit.
231 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000232 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000233 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000234 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000236 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000237 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000238 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000239 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000240 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000241 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000242 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
243 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000244 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000246
247 if (AM.Segment.getNode())
248 Segment = AM.Segment;
249 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000251 }
252
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000253 /// getI8Imm - Return a target constant with the specified value, of type
254 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000255 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000256 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000257 }
258
Chris Lattnerc961eea2005-11-16 01:54:32 +0000259 /// getI16Imm - Return a target constant with the specified value, of type
260 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000261 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000263 }
264
265 /// getI32Imm - Return a target constant with the specified value, of type
266 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000267 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000269 }
Evan Chengf597dc72006-02-10 22:24:32 +0000270
Dan Gohman8b746962008-09-23 18:22:58 +0000271 /// getGlobalBaseReg - Return an SDNode that returns the value of
272 /// the global base register. Output instructions required to
273 /// initialize the global base register, if necessary.
274 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000275 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000276
Dan Gohmanc5534622009-06-03 20:20:00 +0000277 /// getTargetMachine - Return a reference to the TargetMachine, casted
278 /// to the target-specific type.
279 const X86TargetMachine &getTargetMachine() {
280 return static_cast<const X86TargetMachine &>(TM);
281 }
282
283 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
284 /// to the target-specific type.
285 const X86InstrInfo *getInstrInfo() {
286 return getTargetMachine().getInstrInfo();
287 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000288 };
289}
290
Evan Chengf4b4c412006-08-08 00:31:00 +0000291
Evan Cheng014bf212010-02-15 19:41:07 +0000292bool
293X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000294 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000295
Evan Cheng014bf212010-02-15 19:41:07 +0000296 if (!N.hasOneUse())
297 return false;
298
299 if (N.getOpcode() != ISD::LOAD)
300 return true;
301
302 // If N is a load, do additional profitability checks.
303 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000304 switch (U->getOpcode()) {
305 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000306 case X86ISD::ADD:
307 case X86ISD::SUB:
308 case X86ISD::AND:
309 case X86ISD::XOR:
310 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000311 case ISD::ADD:
312 case ISD::ADDC:
313 case ISD::ADDE:
314 case ISD::AND:
315 case ISD::OR:
316 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000317 SDValue Op1 = U->getOperand(1);
318
Evan Cheng884c70c2008-11-27 00:49:46 +0000319 // If the other operand is a 8-bit immediate we should fold the immediate
320 // instead. This reduces code size.
321 // e.g.
322 // movl 4(%esp), %eax
323 // addl $4, %eax
324 // vs.
325 // movl $4, %eax
326 // addl 4(%esp), %eax
327 // The former is 2 bytes shorter. In case where the increment is 1, then
328 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000329 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000330 if (Imm->getAPIntValue().isSignedIntN(8))
331 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000332
333 // If the other operand is a TLS address, we should fold it instead.
334 // This produces
335 // movl %gs:0, %eax
336 // leal i@NTPOFF(%eax), %eax
337 // instead of
338 // movl $i@NTPOFF, %eax
339 // addl %gs:0, %eax
340 // if the block also has an access to a second TLS address this will save
341 // a load.
342 // FIXME: This is probably also true for non TLS addresses.
343 if (Op1.getOpcode() == X86ISD::Wrapper) {
344 SDValue Val = Op1.getOperand(0);
345 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
346 return false;
347 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000348 }
349 }
Evan Cheng014bf212010-02-15 19:41:07 +0000350 }
351
352 return true;
353}
354
Evan Cheng70e674e2006-08-28 20:10:17 +0000355/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
356/// and move load below the TokenFactor. Replace store's chain operand with
357/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000358static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000359 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000360 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000361 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
362 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000363 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000364 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000365 Ops.push_back(TF.getOperand(i));
Dan Gohmanaae317a2009-08-06 09:22:57 +0000366 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
367 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
368 Load.getOperand(1),
369 Load.getOperand(2));
370 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohmanf350b272008-08-23 02:25:05 +0000371 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000372}
373
Nate Begeman206a3572009-09-16 03:20:46 +0000374/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
375/// chain produced by the load must only be used by the store's chain operand,
376/// otherwise this may produce a cycle in the DAG.
Evan Chengcd0baf22008-05-23 21:23:16 +0000377///
Dan Gohman475871a2008-07-27 21:46:04 +0000378static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
379 SDValue &Load) {
David Greeneee9c5952010-01-15 23:23:41 +0000380 if (N.getOpcode() == ISD::BIT_CONVERT) {
381 if (!N.hasOneUse())
382 return false;
Evan Chengcd0baf22008-05-23 21:23:16 +0000383 N = N.getOperand(0);
David Greeneee9c5952010-01-15 23:23:41 +0000384 }
Evan Chengcd0baf22008-05-23 21:23:16 +0000385
386 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
387 if (!LD || LD->isVolatile())
388 return false;
389 if (LD->getAddressingMode() != ISD::UNINDEXED)
390 return false;
391
392 ISD::LoadExtType ExtType = LD->getExtensionType();
393 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
394 return false;
395
396 if (N.hasOneUse() &&
Nate Begeman206a3572009-09-16 03:20:46 +0000397 LD->hasNUsesOfValue(1, 1) &&
Evan Chengcd0baf22008-05-23 21:23:16 +0000398 N.getOperand(1) == Address &&
Nate Begeman206a3572009-09-16 03:20:46 +0000399 LD->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000400 Load = N;
401 return true;
402 }
403 return false;
404}
405
Evan Chengab6c3bb2008-08-25 21:27:18 +0000406/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
407/// operand and move load below the call's chain operand.
408static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000409 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000410 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000411 SDValue Chain = CallSeqStart.getOperand(0);
412 if (Chain.getNode() == Load.getNode())
413 Ops.push_back(Load.getOperand(0));
414 else {
415 assert(Chain.getOpcode() == ISD::TokenFactor &&
416 "Unexpected CallSeqStart chain operand");
417 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
418 if (Chain.getOperand(i).getNode() == Load.getNode())
419 Ops.push_back(Load.getOperand(0));
420 else
421 Ops.push_back(Chain.getOperand(i));
422 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000423 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000424 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000425 Ops.clear();
426 Ops.push_back(NewChain);
427 }
428 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
429 Ops.push_back(CallSeqStart.getOperand(i));
430 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000431 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
432 Load.getOperand(1), Load.getOperand(2));
433 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000434 Ops.push_back(SDValue(Load.getNode(), 1));
435 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000436 Ops.push_back(Call.getOperand(i));
437 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
438}
439
440/// isCalleeLoad - Return true if call address is a load and it can be
441/// moved below CALLSEQ_START and the chains leading up to the call.
442/// Return the CALLSEQ_START by reference as a second output.
443static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000444 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000445 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000446 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000447 if (!LD ||
448 LD->isVolatile() ||
449 LD->getAddressingMode() != ISD::UNINDEXED ||
450 LD->getExtensionType() != ISD::NON_EXTLOAD)
451 return false;
452
453 // Now let's find the callseq_start.
454 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
455 if (!Chain.hasOneUse())
456 return false;
457 Chain = Chain.getOperand(0);
458 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000459
460 if (Chain.getOperand(0).getNode() == Callee.getNode())
461 return true;
462 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000463 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
464 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000465 return true;
466 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000467}
468
469
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000470/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000471/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000472/// This allows the instruction selector to pick more read-modify-write
473/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000474///
475/// [Load chain]
476/// ^
477/// |
478/// [Load]
479/// ^ ^
480/// | |
481/// / \-
482/// / |
483/// [TokenFactor] [Op]
484/// ^ ^
485/// | |
486/// \ /
487/// \ /
488/// [Store]
489///
490/// The fact the store's chain operand != load's chain will prevent the
491/// (store (op (load))) instruction from being selected. We can transform it to:
492///
493/// [Load chain]
494/// ^
495/// |
496/// [TokenFactor]
497/// ^
498/// |
499/// [Load]
500/// ^ ^
501/// | |
502/// | \-
503/// | |
504/// | [Op]
505/// | ^
506/// | |
507/// \ /
508/// \ /
509/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000510void X86DAGToDAGISel::PreprocessForRMW() {
511 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
512 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000513 if (I->getOpcode() == X86ISD::CALL) {
514 /// Also try moving call address load from outside callseq_start to just
515 /// before the call to allow it to be folded.
516 ///
517 /// [Load chain]
518 /// ^
519 /// |
520 /// [Load]
521 /// ^ ^
522 /// | |
523 /// / \--
524 /// / |
525 ///[CALLSEQ_START] |
526 /// ^ |
527 /// | |
528 /// [LOAD/C2Reg] |
529 /// | |
530 /// \ /
531 /// \ /
532 /// [CALL]
533 SDValue Chain = I->getOperand(0);
534 SDValue Load = I->getOperand(1);
535 if (!isCalleeLoad(Load, Chain))
536 continue;
537 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
538 ++NumLoadMoved;
539 continue;
540 }
541
Evan Cheng8b2794a2006-10-13 21:14:26 +0000542 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000543 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000544 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000545
Gabor Greifba36cb52008-08-28 21:40:38 +0000546 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000547 continue;
548
Dan Gohman475871a2008-07-27 21:46:04 +0000549 SDValue N1 = I->getOperand(1);
550 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000551 if ((N1.getValueType().isFloatingPoint() &&
552 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000553 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000554 continue;
555
556 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000557 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000558 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000559 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000560 case ISD::ADD:
561 case ISD::MUL:
562 case ISD::AND:
563 case ISD::OR:
564 case ISD::XOR:
565 case ISD::ADDC:
566 case ISD::ADDE:
567 case ISD::VECTOR_SHUFFLE: {
568 SDValue N10 = N1.getOperand(0);
569 SDValue N11 = N1.getOperand(1);
570 RModW = isRMWLoad(N10, Chain, N2, Load);
571 if (!RModW)
572 RModW = isRMWLoad(N11, Chain, N2, Load);
573 break;
574 }
575 case ISD::SUB:
576 case ISD::SHL:
577 case ISD::SRA:
578 case ISD::SRL:
579 case ISD::ROTL:
580 case ISD::ROTR:
581 case ISD::SUBC:
582 case ISD::SUBE:
583 case X86ISD::SHLD:
584 case X86ISD::SHRD: {
585 SDValue N10 = N1.getOperand(0);
586 RModW = isRMWLoad(N10, Chain, N2, Load);
587 break;
588 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000589 }
590
Evan Cheng82a35b32006-08-29 06:44:17 +0000591 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000592 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000593 ++NumLoadMoved;
David Greenecf495bc2010-01-20 20:13:31 +0000594 checkForCycles(I);
Evan Cheng82a35b32006-08-29 06:44:17 +0000595 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000596 }
597}
598
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000599
600/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
601/// nodes that target the FP stack to be store and load to the stack. This is a
602/// gross hack. We would like to simply mark these as being illegal, but when
603/// we do that, legalize produces these when it expands calls, then expands
604/// these in the same legalize pass. We would like dag combine to be able to
605/// hack on these between the call expansion and the node legalization. As such
606/// this pass basically does "really late" legalization of these inline with the
607/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000608void X86DAGToDAGISel::PreprocessForFPConvert() {
609 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
610 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000611 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
612 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
613 continue;
614
615 // If the source and destination are SSE registers, then this is a legal
616 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000617 EVT SrcVT = N->getOperand(0).getValueType();
618 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000619 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
620 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
621 if (SrcIsSSE && DstIsSSE)
622 continue;
623
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000624 if (!SrcIsSSE && !DstIsSSE) {
625 // If this is an FPStack extension, it is a noop.
626 if (N->getOpcode() == ISD::FP_EXTEND)
627 continue;
628 // If this is a value-preserving FPStack truncation, it is a noop.
629 if (N->getConstantOperandVal(1))
630 continue;
631 }
632
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000633 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
634 // FPStack has extload and truncstore. SSE can fold direct loads into other
635 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000636 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000637 if (N->getOpcode() == ISD::FP_ROUND)
638 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
639 else
640 MemVT = SrcIsSSE ? SrcVT : DstVT;
641
Dan Gohmanf350b272008-08-23 02:25:05 +0000642 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000643 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000644
645 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000646 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000647 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000648 MemTmp, NULL, 0, MemVT,
649 false, false, 0);
Dale Johannesend8392542009-02-03 21:48:12 +0000650 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000651 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000652
653 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
654 // extload we created. This will cause general havok on the dag because
655 // anything below the conversion could be folded into other existing nodes.
656 // To avoid invalidating 'I', back it up to the convert node.
657 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000658 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000659
660 // Now that we did that, the node is dead. Increment the iterator to the
661 // next node to process, then delete N.
662 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000663 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000664 }
665}
666
Chris Lattner7c306da2010-03-02 06:34:30 +0000667void X86DAGToDAGISel::PreprocessISelDAG() {
668 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000669
Bill Wendling98a366d2009-04-29 23:29:43 +0000670 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000671 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000672
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000673 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000674 PreprocessForFPConvert();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000675}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000676
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000677/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
678/// the main function.
679void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
680 MachineFrameInfo *MFI) {
681 const TargetInstrInfo *TII = TM.getInstrInfo();
682 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000683 BuildMI(BB, DebugLoc::getUnknownLoc(),
684 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000685}
686
687void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
688 // If this is main, emit special code for main.
689 MachineBasicBlock *BB = MF.begin();
690 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
691 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
692}
693
Rafael Espindola094fad32009-04-08 21:14:34 +0000694
695bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
696 X86ISelAddressMode &AM) {
697 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
698 SDValue Segment = N.getOperand(0);
699
700 if (AM.Segment.getNode() == 0) {
701 AM.Segment = Segment;
702 return false;
703 }
704
705 return true;
706}
707
708bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
709 // This optimization is valid because the GNU TLS model defines that
710 // gs:0 (or fs:0 on X86-64) contains its own address.
711 // For more information see http://people.redhat.com/drepper/tls.pdf
712
713 SDValue Address = N.getOperand(1);
714 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
715 !MatchSegmentBaseAddress (Address, AM))
716 return false;
717
718 return true;
719}
720
Chris Lattner18c59872009-06-27 04:16:01 +0000721/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
722/// into an addressing mode. These wrap things that will resolve down into a
723/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000724/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000725bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000726 // If the addressing mode already has a symbol as the displacement, we can
727 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000728 if (AM.hasSymbolicDisplacement())
729 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000730
731 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000732 CodeModel::Model M = TM.getCodeModel();
733
Chris Lattner18c59872009-06-27 04:16:01 +0000734 // Handle X86-64 rip-relative addresses. We check this before checking direct
735 // folding because RIP is preferable to non-RIP accesses.
736 if (Subtarget->is64Bit() &&
737 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
738 // they cannot be folded into immediate fields.
739 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000740 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000741 // Base and index reg must be 0 in order to use %rip as base and lowering
742 // must allow RIP.
743 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000744 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
745 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000746 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000747 AM.GV = G->getGlobal();
748 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000749 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000750 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
751 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000752 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000753 AM.CP = CP->getConstVal();
754 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000755 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000756 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000757 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
758 AM.ES = S->getSymbol();
759 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000760 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000761 AM.JT = J->getIndex();
762 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000763 } else {
764 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000765 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000766 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000767
Chris Lattner18c59872009-06-27 04:16:01 +0000768 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000769 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000770 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000771 }
772
773 // Handle the case when globals fit in our immediate field: This is true for
774 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
775 // mode, this results in a non-RIP-relative computation.
776 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000777 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000778 TM.getRelocationModel() == Reloc::Static)) {
779 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
780 AM.GV = G->getGlobal();
781 AM.Disp += G->getOffset();
782 AM.SymbolFlags = G->getTargetFlags();
783 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
784 AM.CP = CP->getConstVal();
785 AM.Align = CP->getAlignment();
786 AM.Disp += CP->getOffset();
787 AM.SymbolFlags = CP->getTargetFlags();
788 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
789 AM.ES = S->getSymbol();
790 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000791 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000792 AM.JT = J->getIndex();
793 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000794 } else {
795 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000796 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000797 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000798 return false;
799 }
800
801 return true;
802}
803
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000804/// MatchAddress - Add the specified node to the specified addressing mode,
805/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000806/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000807bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
808 if (MatchAddressRecursively(N, AM, 0))
809 return true;
810
811 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
812 // a smaller encoding and avoids a scaled-index.
813 if (AM.Scale == 2 &&
814 AM.BaseType == X86ISelAddressMode::RegBase &&
815 AM.Base.Reg.getNode() == 0) {
816 AM.Base.Reg = AM.IndexReg;
817 AM.Scale = 1;
818 }
819
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000820 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
821 // because it has a smaller encoding.
822 // TODO: Which other code models can use this?
823 if (TM.getCodeModel() == CodeModel::Small &&
824 Subtarget->is64Bit() &&
825 AM.Scale == 1 &&
826 AM.BaseType == X86ISelAddressMode::RegBase &&
827 AM.Base.Reg.getNode() == 0 &&
828 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000829 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000830 AM.hasSymbolicDisplacement())
831 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
832
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000833 return false;
834}
835
836bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
837 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000838 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000839 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000840 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000841 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000842 AM.dump();
843 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000844 // Limit recursion.
845 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000846 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000847
848 CodeModel::Model M = TM.getCodeModel();
849
Chris Lattner18c59872009-06-27 04:16:01 +0000850 // If this is already a %rip relative address, we can only merge immediates
851 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000852 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000853 if (AM.isRIPRelative()) {
854 // FIXME: JumpTable and ExternalSymbol address currently don't like
855 // displacements. It isn't very important, but this should be fixed for
856 // consistency.
857 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000858
Chris Lattner18c59872009-06-27 04:16:01 +0000859 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
860 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000861 if (X86::isOffsetSuitableForCodeModel(Val, M,
862 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000863 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000864 return false;
865 }
866 }
867 return true;
868 }
869
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000870 switch (N.getOpcode()) {
871 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000872 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000873 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000874 if (!is64Bit ||
875 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
876 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000877 AM.Disp += Val;
878 return false;
879 }
880 break;
881 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000882
Rafael Espindola094fad32009-04-08 21:14:34 +0000883 case X86ISD::SegmentBaseAddress:
884 if (!MatchSegmentBaseAddress(N, AM))
885 return false;
886 break;
887
Rafael Espindola49a168d2009-04-12 21:55:03 +0000888 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000889 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000890 if (!MatchWrapper(N, AM))
891 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000892 break;
893
Rafael Espindola094fad32009-04-08 21:14:34 +0000894 case ISD::LOAD:
895 if (!MatchLoad(N, AM))
896 return false;
897 break;
898
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000899 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000900 if (AM.BaseType == X86ISelAddressMode::RegBase
901 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000902 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
903 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
904 return false;
905 }
906 break;
Evan Chengec693f72005-12-08 02:01:35 +0000907
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000908 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000909 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000910 break;
911
Gabor Greif93c53e52008-08-31 15:37:04 +0000912 if (ConstantSDNode
913 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000914 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000915 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
916 // that the base operand remains free for further matching. If
917 // the base doesn't end up getting used, a post-processing step
918 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000919 if (Val == 1 || Val == 2 || Val == 3) {
920 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000921 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000922
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000923 // Okay, we know that we have a scale by now. However, if the scaled
924 // value is an add of something and a constant, we can fold the
925 // constant into the disp field here.
Dan Gohmana10756e2010-01-21 02:09:26 +0000926 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
928 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000929 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000930 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000931 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000932 if (!is64Bit ||
933 X86::isOffsetSuitableForCodeModel(Disp, M,
934 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000935 AM.Disp = Disp;
936 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000937 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000938 } else {
939 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000940 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000941 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000942 }
943 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000944 }
Evan Chengec693f72005-12-08 02:01:35 +0000945
Dan Gohman83688052007-10-22 20:22:24 +0000946 case ISD::SMUL_LOHI:
947 case ISD::UMUL_LOHI:
948 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000949 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000950 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000951 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000952 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000953 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000954 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000955 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000956 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000957 if (ConstantSDNode
958 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000959 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
960 CN->getZExtValue() == 9) {
961 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000962
Gabor Greifba36cb52008-08-28 21:40:38 +0000963 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000964 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000965
966 // Okay, we know that we have a scale by now. However, if the scaled
967 // value is an add of something and a constant, we can fold the
968 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000969 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
970 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
971 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000972 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000973 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000974 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000975 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000976 if (!is64Bit ||
977 X86::isOffsetSuitableForCodeModel(Disp, M,
978 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000979 AM.Disp = Disp;
980 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000981 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000982 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000983 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000984 }
985
986 AM.IndexReg = AM.Base.Reg = Reg;
987 return false;
988 }
Chris Lattner62412262007-02-04 20:18:17 +0000989 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000990 break;
991
Dan Gohman3cd90a12009-05-11 18:02:53 +0000992 case ISD::SUB: {
993 // Given A-B, if A can be completely folded into the address and
994 // the index field with the index field unused, use -B as the index.
995 // This is a win if a has multiple parts that can be folded into
996 // the address. Also, this saves a mov if the base register has
997 // other uses, since it avoids a two-address sub instruction, however
998 // it costs an additional mov if the index register has other uses.
999
1000 // Test if the LHS of the sub can be folded.
1001 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001002 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001003 AM = Backup;
1004 break;
1005 }
1006 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001007 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001008 AM = Backup;
1009 break;
1010 }
1011 int Cost = 0;
1012 SDValue RHS = N.getNode()->getOperand(1);
1013 // If the RHS involves a register with multiple uses, this
1014 // transformation incurs an extra mov, due to the neg instruction
1015 // clobbering its operand.
1016 if (!RHS.getNode()->hasOneUse() ||
1017 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1018 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1019 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1020 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001021 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001022 ++Cost;
1023 // If the base is a register with multiple uses, this
1024 // transformation may save a mov.
1025 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1026 AM.Base.Reg.getNode() &&
1027 !AM.Base.Reg.getNode()->hasOneUse()) ||
1028 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1029 --Cost;
1030 // If the folded LHS was interesting, this transformation saves
1031 // address arithmetic.
1032 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1033 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1034 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1035 --Cost;
1036 // If it doesn't look like it may be an overall win, don't do it.
1037 if (Cost >= 0) {
1038 AM = Backup;
1039 break;
1040 }
1041
1042 // Ok, the transformation is legal and appears profitable. Go for it.
1043 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1044 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1045 AM.IndexReg = Neg;
1046 AM.Scale = 1;
1047
1048 // Insert the new nodes into the topological ordering.
1049 if (Zero.getNode()->getNodeId() == -1 ||
1050 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1051 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1052 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1053 }
1054 if (Neg.getNode()->getNodeId() == -1 ||
1055 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1056 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1057 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1058 }
1059 return false;
1060 }
1061
Evan Cheng8e278262009-01-17 07:09:27 +00001062 case ISD::ADD: {
1063 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001064 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1065 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001066 return false;
1067 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001068 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1069 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001070 return false;
1071 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001072
1073 // If we couldn't fold both operands into the address at the same time,
1074 // see if we can just put each operand into a register and fold at least
1075 // the add.
1076 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1077 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001078 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001079 AM.Base.Reg = N.getNode()->getOperand(0);
1080 AM.IndexReg = N.getNode()->getOperand(1);
1081 AM.Scale = 1;
1082 return false;
1083 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001084 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001085 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001086
Chris Lattner62412262007-02-04 20:18:17 +00001087 case ISD::OR:
1088 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001089 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1090 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001091 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001092 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001093 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001094 // Address could not have picked a GV address for the displacement.
1095 AM.GV == NULL &&
1096 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001097 (!is64Bit ||
1098 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1099 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001100 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001101 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001102 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001103 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001104 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001105 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001106 }
1107 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001108
1109 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001110 // Perform some heroic transforms on an and of a constant-count shift
1111 // with a constant to enable use of the scaled offset field.
1112
Dan Gohman475871a2008-07-27 21:46:04 +00001113 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001114 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001115
Evan Cheng1314b002007-12-13 00:43:27 +00001116 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001117 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001118
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001119 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001120 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1121 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1122 if (!C1 || !C2) break;
1123
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001124 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1125 // allows us to convert the shift and and into an h-register extract and
1126 // a scaled index.
1127 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1128 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001129 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001130 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001131 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001132 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1133 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1134 X, Eight);
1135 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1136 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001137 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001138 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1139 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001140
1141 // Insert the new nodes into the topological ordering.
1142 if (Eight.getNode()->getNodeId() == -1 ||
1143 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1144 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1145 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1146 }
1147 if (Mask.getNode()->getNodeId() == -1 ||
1148 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1149 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1150 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1151 }
1152 if (Srl.getNode()->getNodeId() == -1 ||
1153 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1154 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1155 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1156 }
1157 if (And.getNode()->getNodeId() == -1 ||
1158 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1159 CurDAG->RepositionNode(N.getNode(), And.getNode());
1160 And.getNode()->setNodeId(N.getNode()->getNodeId());
1161 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001162 if (ShlCount.getNode()->getNodeId() == -1 ||
1163 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1164 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1165 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1166 }
1167 if (Shl.getNode()->getNodeId() == -1 ||
1168 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1169 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1170 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1171 }
1172 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001173 AM.IndexReg = And;
1174 AM.Scale = (1 << ScaleLog);
1175 return false;
1176 }
1177 }
1178
1179 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1180 // allows us to fold the shift into this addressing mode.
1181 if (Shift.getOpcode() != ISD::SHL) break;
1182
Evan Cheng1314b002007-12-13 00:43:27 +00001183 // Not likely to be profitable if either the AND or SHIFT node has more
1184 // than one use (unless all uses are for address computation). Besides,
1185 // isel mechanism requires their node ids to be reused.
1186 if (!N.hasOneUse() || !Shift.hasOneUse())
1187 break;
1188
1189 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001190 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001191 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1192 break;
1193
1194 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001195 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001196 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001197 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1198 NewANDMask);
1199 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001200 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001201
1202 // Insert the new nodes into the topological ordering.
1203 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1204 CurDAG->RepositionNode(X.getNode(), C1);
1205 C1->setNodeId(X.getNode()->getNodeId());
1206 }
1207 if (NewANDMask.getNode()->getNodeId() == -1 ||
1208 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1209 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1210 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1211 }
1212 if (NewAND.getNode()->getNodeId() == -1 ||
1213 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1214 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1215 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1216 }
1217 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1218 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1219 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1220 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1221 }
1222
Dan Gohman7b8e9642008-10-13 20:52:04 +00001223 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001224
1225 AM.Scale = 1 << ShiftCst;
1226 AM.IndexReg = NewAND;
1227 return false;
1228 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001229 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001230
Rafael Espindola523249f2009-03-31 16:16:57 +00001231 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001232}
1233
1234/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1235/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001236bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001237 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001238 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001239 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001240 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001241 AM.IndexReg = N;
1242 AM.Scale = 1;
1243 return false;
1244 }
1245
1246 // Otherwise, we cannot select it.
1247 return true;
1248 }
1249
1250 // Default, generate it as a register.
1251 AM.BaseType = X86ISelAddressMode::RegBase;
1252 AM.Base.Reg = N;
1253 return false;
1254}
1255
Evan Chengec693f72005-12-08 02:01:35 +00001256/// SelectAddr - returns true if it is able pattern match an addressing mode.
1257/// It returns the operands which make up the maximal addressing mode it can
1258/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001259bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001260 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001261 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001262 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001263 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001264 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001265
Owen Andersone50ed302009-08-10 22:56:29 +00001266 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001267 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001268 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001269 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001270 }
Evan Cheng8700e142006-01-11 06:09:51 +00001271
Gabor Greifba36cb52008-08-28 21:40:38 +00001272 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001273 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001274
Rafael Espindola094fad32009-04-08 21:14:34 +00001275 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001276 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001277}
1278
Chris Lattner3a7cd952006-10-07 21:55:32 +00001279/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1280/// match a load whose top elements are either undef or zeros. The load flavor
1281/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001282///
1283/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001284/// PatternChainNode: this is the matched node that has a chain input and
1285/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001286bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001287 SDValue N, SDValue &Base,
1288 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001289 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001290 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001291 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001292 PatternNodeWithChain = N.getOperand(0);
1293 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1294 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001295 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1296 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001297 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001298 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001299 return false;
1300 return true;
1301 }
1302 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001303
1304 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001305 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001306 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001307 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001308 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001309 N.getOperand(0).getNode()->hasOneUse() &&
1310 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001311 N.getOperand(0).getOperand(0).hasOneUse() &&
1312 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1313 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001314 // Okay, this is a zero extending load. Fold it.
1315 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001316 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001317 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001318 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001319 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001320 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001321 return false;
1322}
1323
1324
Evan Cheng51a9ed92006-02-25 10:09:08 +00001325/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1326/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001327bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001328 SDValue &Base, SDValue &Scale,
1329 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001330 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001331
1332 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1333 // segments.
1334 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001335 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001336 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001337 if (MatchAddress(N, AM))
1338 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001339 assert (T == AM.Segment);
1340 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001341
Owen Andersone50ed302009-08-10 22:56:29 +00001342 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001343 unsigned Complexity = 0;
1344 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001345 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001346 Complexity = 1;
1347 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001348 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001349 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1350 Complexity = 4;
1351
Gabor Greifba36cb52008-08-28 21:40:38 +00001352 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001353 Complexity++;
1354 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001355 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001356
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001357 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1358 // a simple shift.
1359 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001360 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001361
1362 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1363 // to a LEA. This is determined with some expermentation but is by no means
1364 // optimal (especially for code size consideration). LEA is nice because of
1365 // its three-address nature. Tweak the cost function again when we can run
1366 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001367 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001368 // For X86-64, we should always use lea to materialize RIP relative
1369 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001370 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001371 Complexity = 4;
1372 else
1373 Complexity += 2;
1374 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001375
Gabor Greifba36cb52008-08-28 21:40:38 +00001376 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001377 Complexity++;
1378
Chris Lattner25142782009-07-11 22:50:33 +00001379 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001380 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001381 return false;
1382
1383 SDValue Segment;
1384 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1385 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001386}
1387
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001388/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001389bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001390 SDValue &Scale, SDValue &Index,
1391 SDValue &Disp) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001392 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1393 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1394
1395 X86ISelAddressMode AM;
1396 AM.GV = GA->getGlobal();
1397 AM.Disp += GA->getOffset();
1398 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001399 AM.SymbolFlags = GA->getTargetFlags();
1400
Owen Anderson825b72b2009-08-11 20:47:22 +00001401 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001402 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001403 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001404 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001405 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001406 }
1407
1408 SDValue Segment;
1409 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1410 return true;
1411}
1412
1413
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001414bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001415 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001416 SDValue &Index, SDValue &Disp,
1417 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001418 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng014bf212010-02-15 19:41:07 +00001419 IsProfitableToFold(N, P, P) &&
1420 IsLegalToFold(N, P, P))
Rafael Espindola094fad32009-04-08 21:14:34 +00001421 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001422 return false;
1423}
1424
Dan Gohman8b746962008-09-23 18:22:58 +00001425/// getGlobalBaseReg - Return an SDNode that returns the value of
1426/// the global base register. Output instructions required to
1427/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001428///
Evan Cheng9ade2182006-08-26 05:34:46 +00001429SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001430 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001431 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001432}
1433
Evan Chengb245d922006-05-20 01:36:52 +00001434static SDNode *FindCallStartFromCall(SDNode *Node) {
1435 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001436 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001437 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001438 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001439}
1440
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001441SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1442 SDValue Chain = Node->getOperand(0);
1443 SDValue In1 = Node->getOperand(1);
1444 SDValue In2L = Node->getOperand(2);
1445 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001446 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001447 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001448 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001449 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1450 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1451 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1452 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1453 MVT::i32, MVT::i32, MVT::Other, Ops,
1454 array_lengthof(Ops));
1455 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1456 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001457}
Christopher Lambc59e5212007-08-10 21:48:46 +00001458
Owen Andersone50ed302009-08-10 22:56:29 +00001459SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001460 if (Node->hasAnyUseOfValue(0))
1461 return 0;
1462
1463 // Optimize common patterns for __sync_add_and_fetch and
1464 // __sync_sub_and_fetch where the result is not used. This allows us
1465 // to use "lock" version of add, sub, inc, dec instructions.
1466 // FIXME: Do not use special instructions but instead add the "lock"
1467 // prefix to the target node somehow. The extra information will then be
1468 // transferred to machine instruction and it denotes the prefix.
1469 SDValue Chain = Node->getOperand(0);
1470 SDValue Ptr = Node->getOperand(1);
1471 SDValue Val = Node->getOperand(2);
1472 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001473 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001474 return 0;
1475
1476 bool isInc = false, isDec = false, isSub = false, isCN = false;
1477 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1478 if (CN) {
1479 isCN = true;
1480 int64_t CNVal = CN->getSExtValue();
1481 if (CNVal == 1)
1482 isInc = true;
1483 else if (CNVal == -1)
1484 isDec = true;
1485 else if (CNVal >= 0)
1486 Val = CurDAG->getTargetConstant(CNVal, NVT);
1487 else {
1488 isSub = true;
1489 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1490 }
1491 } else if (Val.hasOneUse() &&
1492 Val.getOpcode() == ISD::SUB &&
1493 X86::isZeroNode(Val.getOperand(0))) {
1494 isSub = true;
1495 Val = Val.getOperand(1);
1496 }
1497
1498 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001499 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001500 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001501 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001502 if (isInc)
1503 Opc = X86::LOCK_INC8m;
1504 else if (isDec)
1505 Opc = X86::LOCK_DEC8m;
1506 else if (isSub) {
1507 if (isCN)
1508 Opc = X86::LOCK_SUB8mi;
1509 else
1510 Opc = X86::LOCK_SUB8mr;
1511 } else {
1512 if (isCN)
1513 Opc = X86::LOCK_ADD8mi;
1514 else
1515 Opc = X86::LOCK_ADD8mr;
1516 }
1517 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001518 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001519 if (isInc)
1520 Opc = X86::LOCK_INC16m;
1521 else if (isDec)
1522 Opc = X86::LOCK_DEC16m;
1523 else if (isSub) {
1524 if (isCN) {
1525 if (Predicate_i16immSExt8(Val.getNode()))
1526 Opc = X86::LOCK_SUB16mi8;
1527 else
1528 Opc = X86::LOCK_SUB16mi;
1529 } else
1530 Opc = X86::LOCK_SUB16mr;
1531 } else {
1532 if (isCN) {
1533 if (Predicate_i16immSExt8(Val.getNode()))
1534 Opc = X86::LOCK_ADD16mi8;
1535 else
1536 Opc = X86::LOCK_ADD16mi;
1537 } else
1538 Opc = X86::LOCK_ADD16mr;
1539 }
1540 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001541 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001542 if (isInc)
1543 Opc = X86::LOCK_INC32m;
1544 else if (isDec)
1545 Opc = X86::LOCK_DEC32m;
1546 else if (isSub) {
1547 if (isCN) {
1548 if (Predicate_i32immSExt8(Val.getNode()))
1549 Opc = X86::LOCK_SUB32mi8;
1550 else
1551 Opc = X86::LOCK_SUB32mi;
1552 } else
1553 Opc = X86::LOCK_SUB32mr;
1554 } else {
1555 if (isCN) {
1556 if (Predicate_i32immSExt8(Val.getNode()))
1557 Opc = X86::LOCK_ADD32mi8;
1558 else
1559 Opc = X86::LOCK_ADD32mi;
1560 } else
1561 Opc = X86::LOCK_ADD32mr;
1562 }
1563 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001564 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001565 if (isInc)
1566 Opc = X86::LOCK_INC64m;
1567 else if (isDec)
1568 Opc = X86::LOCK_DEC64m;
1569 else if (isSub) {
1570 Opc = X86::LOCK_SUB64mr;
1571 if (isCN) {
1572 if (Predicate_i64immSExt8(Val.getNode()))
1573 Opc = X86::LOCK_SUB64mi8;
1574 else if (Predicate_i64immSExt32(Val.getNode()))
1575 Opc = X86::LOCK_SUB64mi32;
1576 }
1577 } else {
1578 Opc = X86::LOCK_ADD64mr;
1579 if (isCN) {
1580 if (Predicate_i64immSExt8(Val.getNode()))
1581 Opc = X86::LOCK_ADD64mi8;
1582 else if (Predicate_i64immSExt32(Val.getNode()))
1583 Opc = X86::LOCK_ADD64mi32;
1584 }
1585 }
1586 break;
1587 }
1588
1589 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001590 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001591 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001592 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1593 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001594 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001595 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1596 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1597 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001598 SDValue RetVals[] = { Undef, Ret };
1599 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1600 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001601 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1602 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1603 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001604 SDValue RetVals[] = { Undef, Ret };
1605 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1606 }
1607}
1608
Dan Gohman11596ed2009-10-09 20:35:19 +00001609/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1610/// any uses which require the SF or OF bits to be accurate.
1611static bool HasNoSignedComparisonUses(SDNode *N) {
1612 // Examine each user of the node.
1613 for (SDNode::use_iterator UI = N->use_begin(),
1614 UE = N->use_end(); UI != UE; ++UI) {
1615 // Only examine CopyToReg uses.
1616 if (UI->getOpcode() != ISD::CopyToReg)
1617 return false;
1618 // Only examine CopyToReg uses that copy to EFLAGS.
1619 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1620 X86::EFLAGS)
1621 return false;
1622 // Examine each user of the CopyToReg use.
1623 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1624 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1625 // Only examine the Flag result.
1626 if (FlagUI.getUse().getResNo() != 1) continue;
1627 // Anything unusual: assume conservatively.
1628 if (!FlagUI->isMachineOpcode()) return false;
1629 // Examine the opcode of the user.
1630 switch (FlagUI->getMachineOpcode()) {
1631 // These comparisons don't treat the most significant bit specially.
1632 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1633 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1634 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1635 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001636 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1637 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001638 case X86::CMOVA16rr: case X86::CMOVA16rm:
1639 case X86::CMOVA32rr: case X86::CMOVA32rm:
1640 case X86::CMOVA64rr: case X86::CMOVA64rm:
1641 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1642 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1643 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1644 case X86::CMOVB16rr: case X86::CMOVB16rm:
1645 case X86::CMOVB32rr: case X86::CMOVB32rm:
1646 case X86::CMOVB64rr: case X86::CMOVB64rm:
1647 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1648 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1649 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1650 case X86::CMOVE16rr: case X86::CMOVE16rm:
1651 case X86::CMOVE32rr: case X86::CMOVE32rm:
1652 case X86::CMOVE64rr: case X86::CMOVE64rm:
1653 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1654 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1655 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1656 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1657 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1658 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1659 case X86::CMOVP16rr: case X86::CMOVP16rm:
1660 case X86::CMOVP32rr: case X86::CMOVP32rm:
1661 case X86::CMOVP64rr: case X86::CMOVP64rm:
1662 continue;
1663 // Anything else: assume conservatively.
1664 default: return false;
1665 }
1666 }
1667 }
1668 return true;
1669}
1670
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001671SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001672 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001673 unsigned Opc, MOpc;
1674 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001675 DebugLoc dl = Node->getDebugLoc();
1676
Chris Lattner7c306da2010-03-02 06:34:30 +00001677 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001678
Dan Gohmane8be6c62008-07-17 19:10:17 +00001679 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001680 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001681 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001682 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001683
Evan Cheng0114e942006-01-06 20:36:21 +00001684 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001685 default: break;
1686 case X86ISD::GlobalBaseReg:
1687 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001688
Dan Gohman72677342009-08-02 16:10:52 +00001689 case X86ISD::ATOMOR64_DAG:
1690 return SelectAtomic64(Node, X86::ATOMOR6432);
1691 case X86ISD::ATOMXOR64_DAG:
1692 return SelectAtomic64(Node, X86::ATOMXOR6432);
1693 case X86ISD::ATOMADD64_DAG:
1694 return SelectAtomic64(Node, X86::ATOMADD6432);
1695 case X86ISD::ATOMSUB64_DAG:
1696 return SelectAtomic64(Node, X86::ATOMSUB6432);
1697 case X86ISD::ATOMNAND64_DAG:
1698 return SelectAtomic64(Node, X86::ATOMNAND6432);
1699 case X86ISD::ATOMAND64_DAG:
1700 return SelectAtomic64(Node, X86::ATOMAND6432);
1701 case X86ISD::ATOMSWAP64_DAG:
1702 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001703
Dan Gohman72677342009-08-02 16:10:52 +00001704 case ISD::ATOMIC_LOAD_ADD: {
1705 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1706 if (RetVal)
1707 return RetVal;
1708 break;
1709 }
1710
1711 case ISD::SMUL_LOHI:
1712 case ISD::UMUL_LOHI: {
1713 SDValue N0 = Node->getOperand(0);
1714 SDValue N1 = Node->getOperand(1);
1715
1716 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001717 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001718 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001719 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001720 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1721 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1722 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1723 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001724 }
Bill Wendling12321672009-08-07 21:33:25 +00001725 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001726 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001727 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001728 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1729 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1730 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1731 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001732 }
Bill Wendling12321672009-08-07 21:33:25 +00001733 }
Dan Gohman72677342009-08-02 16:10:52 +00001734
1735 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001736 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001737 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001738 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1739 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1740 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1741 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001742 }
1743
1744 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001745 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001746 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001747 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001748 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001749 if (foldedLoad)
1750 std::swap(N0, N1);
1751 }
1752
1753 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1754 N0, SDValue()).getValue(1);
1755
1756 if (foldedLoad) {
1757 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1758 InFlag };
1759 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001760 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1761 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001762 InFlag = SDValue(CNode, 1);
1763 // Update the chain.
1764 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1765 } else {
1766 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001767 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001768 }
1769
1770 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001771 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001772 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1773 LoReg, NVT, InFlag);
1774 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001775 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001776 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001777 }
1778 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001779 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001780 SDValue Result;
1781 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1782 // Prevent use of AH in a REX instruction by referencing AX instead.
1783 // Shift it down 8 bits.
1784 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001785 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001786 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001787 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1788 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001789 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001790 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001791 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1792 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001793 } else {
1794 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1795 HiReg, NVT, InFlag);
1796 InFlag = Result.getValue(2);
1797 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001798 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001799 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001800 }
1801
Dan Gohman72677342009-08-02 16:10:52 +00001802 return NULL;
1803 }
1804
1805 case ISD::SDIVREM:
1806 case ISD::UDIVREM: {
1807 SDValue N0 = Node->getOperand(0);
1808 SDValue N1 = Node->getOperand(1);
1809
1810 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001811 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001812 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001813 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001814 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1815 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1816 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1817 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001818 }
Bill Wendling12321672009-08-07 21:33:25 +00001819 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001820 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001821 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001822 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1823 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1824 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1825 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001826 }
Bill Wendling12321672009-08-07 21:33:25 +00001827 }
Dan Gohman72677342009-08-02 16:10:52 +00001828
Chris Lattner9e323832009-12-23 01:45:04 +00001829 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001830 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001831 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001832 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001833 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001834 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001835 ClrOpcode = 0;
1836 SExtOpcode = X86::CBW;
1837 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001838 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001839 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001840 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001841 SExtOpcode = X86::CWD;
1842 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001843 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001844 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001845 ClrOpcode = X86::MOV32r0;
1846 SExtOpcode = X86::CDQ;
1847 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001848 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001849 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001850 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001851 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001852 break;
1853 }
1854
Dan Gohman72677342009-08-02 16:10:52 +00001855 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001856 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001857 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001858
Dan Gohman72677342009-08-02 16:10:52 +00001859 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001860 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001861 // Special case for div8, just use a move with zero extension to AX to
1862 // clear the upper 8 bits (AH).
1863 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001864 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001865 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1866 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001867 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1868 MVT::Other, Ops,
1869 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001870 Chain = Move.getValue(1);
1871 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001872 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001873 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001874 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001875 Chain = CurDAG->getEntryNode();
1876 }
1877 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1878 InFlag = Chain.getValue(1);
1879 } else {
1880 InFlag =
1881 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1882 LoReg, N0, SDValue()).getValue(1);
1883 if (isSigned && !signBitIsZero) {
1884 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001885 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001886 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001887 } else {
1888 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001889 SDValue ClrNode =
1890 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001891 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001892 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001893 }
Evan Cheng948f3432006-01-06 23:19:29 +00001894 }
Dan Gohman525178c2007-10-08 18:33:35 +00001895
Dan Gohman72677342009-08-02 16:10:52 +00001896 if (foldedLoad) {
1897 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1898 InFlag };
1899 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001900 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1901 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001902 InFlag = SDValue(CNode, 1);
1903 // Update the chain.
1904 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1905 } else {
1906 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001907 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001908 }
Evan Cheng948f3432006-01-06 23:19:29 +00001909
Dan Gohman72677342009-08-02 16:10:52 +00001910 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001911 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001912 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1913 LoReg, NVT, InFlag);
1914 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001915 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001916 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001917 }
1918 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001919 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001920 SDValue Result;
1921 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1922 // Prevent use of AH in a REX instruction by referencing AX instead.
1923 // Shift it down 8 bits.
1924 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001925 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001926 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001927 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00001928 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001929 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00001930 0);
1931 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001932 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1933 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001934 } else {
1935 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1936 HiReg, NVT, InFlag);
1937 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00001938 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001939 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001940 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001941 }
Dan Gohman72677342009-08-02 16:10:52 +00001942 return NULL;
1943 }
1944
Dan Gohman6a402dc2009-08-19 18:16:17 +00001945 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001946 SDValue N0 = Node->getOperand(0);
1947 SDValue N1 = Node->getOperand(1);
1948
1949 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
1950 // use a smaller encoding.
1951 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
1952 N0.getValueType() != MVT::i8 &&
1953 X86::isZeroNode(N1)) {
1954 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
1955 if (!C) break;
1956
1957 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00001958 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
1959 (!(C->getZExtValue() & 0x80) ||
1960 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001961 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
1962 SDValue Reg = N0.getNode()->getOperand(0);
1963
1964 // On x86-32, only the ABCD registers have 8-bit subregisters.
1965 if (!Subtarget->is64Bit()) {
1966 TargetRegisterClass *TRC = 0;
1967 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1968 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1969 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1970 default: llvm_unreachable("Unsupported TEST operand type!");
1971 }
1972 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001973 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1974 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001975 }
1976
1977 // Extract the l-register.
1978 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1979 MVT::i8, Reg);
1980
1981 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00001982 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001983 }
1984
1985 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00001986 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
1987 (!(C->getZExtValue() & 0x8000) ||
1988 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001989 // Shift the immediate right by 8 bits.
1990 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
1991 MVT::i8);
1992 SDValue Reg = N0.getNode()->getOperand(0);
1993
1994 // Put the value in an ABCD register.
1995 TargetRegisterClass *TRC = 0;
1996 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1997 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
1998 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1999 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2000 default: llvm_unreachable("Unsupported TEST operand type!");
2001 }
2002 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002003 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2004 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002005
2006 // Extract the h-register.
2007 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2008 MVT::i8, Reg);
2009
2010 // Emit a testb. No special NOREX tricks are needed since there's
2011 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002012 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2013 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002014 }
2015
2016 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2017 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002018 N0.getValueType() != MVT::i16 &&
2019 (!(C->getZExtValue() & 0x8000) ||
2020 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002021 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2022 SDValue Reg = N0.getNode()->getOperand(0);
2023
2024 // Extract the 16-bit subregister.
2025 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2026 MVT::i16, Reg);
2027
2028 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002029 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002030 }
2031
2032 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2033 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002034 N0.getValueType() == MVT::i64 &&
2035 (!(C->getZExtValue() & 0x80000000) ||
2036 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002037 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2038 SDValue Reg = N0.getNode()->getOperand(0);
2039
2040 // Extract the 32-bit subregister.
2041 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2042 MVT::i32, Reg);
2043
2044 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002045 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002046 }
2047 }
2048 break;
2049 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002050 }
2051
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002052 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002053
Chris Lattner7c306da2010-03-02 06:34:30 +00002054 DEBUG(dbgs() << "=> ";
2055 if (ResNode == NULL || ResNode == Node)
2056 Node->dump(CurDAG);
2057 else
2058 ResNode->dump(CurDAG);
2059 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002060
2061 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002062}
2063
Chris Lattnerc0bad572006-06-08 18:03:49 +00002064bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002065SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002066 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002067 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002068 switch (ConstraintCode) {
2069 case 'o': // offsetable ??
2070 case 'v': // not offsetable ??
2071 default: return true;
2072 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002073 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002074 return true;
2075 break;
2076 }
2077
Evan Cheng04699902006-08-26 01:05:16 +00002078 OutOps.push_back(Op0);
2079 OutOps.push_back(Op1);
2080 OutOps.push_back(Op2);
2081 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002082 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002083 return false;
2084}
2085
Chris Lattnerc961eea2005-11-16 01:54:32 +00002086/// createX86ISelDag - This pass converts a legalized DAG into a
2087/// X86-specific DAG, ready for instruction scheduling.
2088///
Bill Wendling98a366d2009-04-29 23:29:43 +00002089FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2090 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002091 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002092}