blob: 2cd6f74f27e0ce18b4d56ff6ed8f8abe4fd09fee [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"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000036#include "llvm/Support/Compiler.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000037#include "llvm/Support/Debug.h"
38#include "llvm/Support/MathExtras.h"
Dale Johannesen50dd1d02008-08-11 23:46:25 +000039#include "llvm/Support/Streams.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
Evan Cheng4d952322009-03-31 01:13:53 +000044#include "llvm/Support/CommandLine.h"
45static cl::opt<bool> AvoidDupAddrCompute("x86-avoid-dup-address", cl::Hidden);
46
Chris Lattner95b2c7d2006-12-19 22:59:26 +000047STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
48
Chris Lattnerc961eea2005-11-16 01:54:32 +000049//===----------------------------------------------------------------------===//
50// Pattern Matcher Implementation
51//===----------------------------------------------------------------------===//
52
53namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000054 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000055 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000056 /// tree.
57 struct X86ISelAddressMode {
58 enum {
59 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000060 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000061 } BaseType;
62
63 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000064 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000065 int FrameIndex;
66 } Base;
67
Evan Chengbe3bf422008-02-07 08:53:49 +000068 bool isRIPRel; // RIP as base?
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000069 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000070 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000071 int32_t Disp;
Rafael Espindola2a6411b2009-04-07 21:37:46 +000072 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000073 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000074 Constant *CP;
Evan Cheng25ab6902006-09-08 06:48:29 +000075 const char *ES;
76 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000077 unsigned Align; // CP alignment.
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078
79 X86ISelAddressMode()
Evan Cheng25ab6902006-09-08 06:48:29 +000080 : BaseType(RegBase), isRIPRel(false), Scale(1), IndexReg(), Disp(0),
Rafael Espindola2a6411b2009-04-07 21:37:46 +000081 Segment(), GV(0), CP(0), ES(0), JT(-1), Align(0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000082 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000083
84 bool hasSymbolicDisplacement() const {
85 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
86 }
87
Dale Johannesen50dd1d02008-08-11 23:46:25 +000088 void dump() {
89 cerr << "X86ISelAddressMode " << this << "\n";
Gabor Greif93c53e52008-08-31 15:37:04 +000090 cerr << "Base.Reg ";
91 if (Base.Reg.getNode() != 0) Base.Reg.getNode()->dump();
92 else cerr << "nul";
Dale Johannesen50dd1d02008-08-11 23:46:25 +000093 cerr << " Base.FrameIndex " << Base.FrameIndex << "\n";
94 cerr << "isRIPRel " << isRIPRel << " Scale" << Scale << "\n";
Gabor Greif93c53e52008-08-31 15:37:04 +000095 cerr << "IndexReg ";
96 if (IndexReg.getNode() != 0) IndexReg.getNode()->dump();
97 else cerr << "nul";
Dale Johannesen50dd1d02008-08-11 23:46:25 +000098 cerr << " Disp " << Disp << "\n";
99 cerr << "GV "; if (GV) GV->dump();
100 else cerr << "nul";
101 cerr << " CP "; if (CP) CP->dump();
102 else cerr << "nul";
103 cerr << "\n";
104 cerr << "ES "; if (ES) cerr << ES; else cerr << "nul";
105 cerr << " JT" << JT << " Align" << Align << "\n";
106 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000107 };
108}
109
110namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000111 //===--------------------------------------------------------------------===//
112 /// ISel - X86 specific code to select X86 machine instructions for
113 /// SelectionDAG operations.
114 ///
Chris Lattner2c79de82006-06-28 23:27:49 +0000115 class VISIBILITY_HIDDEN X86DAGToDAGISel : public SelectionDAGISel {
Evan Cheng25ab6902006-09-08 06:48:29 +0000116 /// TM - Keep a reference to X86TargetMachine.
117 ///
118 X86TargetMachine &TM;
119
Chris Lattnerc961eea2005-11-16 01:54:32 +0000120 /// X86Lowering - This object fully describes how to lower LLVM code to an
121 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000122 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000123
124 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
125 /// make the right decision when generating code for different targets.
126 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000127
Evan Chengdb8d56b2008-06-30 20:45:06 +0000128 /// CurBB - Current BB being isel'd.
129 ///
130 MachineBasicBlock *CurBB;
131
Evan Chengb7a75a52008-09-26 23:41:32 +0000132 /// OptForSize - If true, selector should try to optimize for code size
133 /// instead of performance.
134 bool OptForSize;
135
Chris Lattnerc961eea2005-11-16 01:54:32 +0000136 public:
Evan Cheng25ab6902006-09-08 06:48:29 +0000137 X86DAGToDAGISel(X86TargetMachine &tm, bool fast)
Dan Gohman79ce2762009-01-15 19:20:50 +0000138 : SelectionDAGISel(tm, fast),
Dan Gohman38217fe2008-10-03 16:17:33 +0000139 TM(tm), X86Lowering(*TM.getTargetLowering()),
Evan Chengb7a75a52008-09-26 23:41:32 +0000140 Subtarget(&TM.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000141 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000142
143 virtual const char *getPassName() const {
144 return "X86 DAG->DAG Instruction Selection";
145 }
146
Evan Chengdb8d56b2008-06-30 20:45:06 +0000147 /// InstructionSelect - This callback is invoked by
Chris Lattnerc961eea2005-11-16 01:54:32 +0000148 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000149 virtual void InstructionSelect();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000150
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000151 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
152
Evan Cheng884c70c2008-11-27 00:49:46 +0000153 virtual
154 bool IsLegalAndProfitableToFold(SDNode *N, SDNode *U, SDNode *Root) const;
Evan Chenga8df1b42006-07-27 16:44:36 +0000155
Chris Lattnerc961eea2005-11-16 01:54:32 +0000156// Include the pieces autogenerated from the target description.
157#include "X86GenDAGISel.inc"
158
159 private:
Dan Gohman475871a2008-07-27 21:46:04 +0000160 SDNode *Select(SDValue N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000161 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000162
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000163 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
164 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Dan Gohman475871a2008-07-27 21:46:04 +0000165 bool MatchAddress(SDValue N, X86ISelAddressMode &AM,
Rafael Espindola523249f2009-03-31 16:16:57 +0000166 unsigned Depth = 0);
167 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohman475871a2008-07-27 21:46:04 +0000168 bool SelectAddr(SDValue Op, SDValue N, SDValue &Base,
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000169 SDValue &Scale, SDValue &Index, SDValue &Disp,
170 SDValue &Segment);
Dan Gohman475871a2008-07-27 21:46:04 +0000171 bool SelectLEAAddr(SDValue Op, SDValue N, SDValue &Base,
172 SDValue &Scale, SDValue &Index, SDValue &Disp);
173 bool SelectScalarSSELoad(SDValue Op, SDValue Pred,
174 SDValue N, SDValue &Base, SDValue &Scale,
175 SDValue &Index, SDValue &Disp,
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000176 SDValue &Segment,
Dan Gohman475871a2008-07-27 21:46:04 +0000177 SDValue &InChain, SDValue &OutChain);
178 bool TryFoldLoad(SDValue P, SDValue N,
179 SDValue &Base, SDValue &Scale,
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000180 SDValue &Index, SDValue &Disp,
181 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000182 void PreprocessForRMW();
183 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000184
Chris Lattnerc0bad572006-06-08 18:03:49 +0000185 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
186 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000188 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000189 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000190
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000191 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
192
Dan Gohman475871a2008-07-27 21:46:04 +0000193 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
194 SDValue &Scale, SDValue &Index,
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000195 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000196 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000197 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
198 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000199 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000200 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000201 // These are 32-bit even in 64-bit mode since RIP relative offset
202 // is 32-bit.
203 if (AM.GV)
204 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp);
205 else if (AM.CP)
Gabor Greif93c53e52008-08-31 15:37:04 +0000206 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
207 AM.Align, AM.Disp);
Evan Cheng25ab6902006-09-08 06:48:29 +0000208 else if (AM.ES)
Bill Wendling056292f2008-09-16 21:48:12 +0000209 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32);
Evan Cheng25ab6902006-09-08 06:48:29 +0000210 else if (AM.JT != -1)
211 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32);
212 else
Dan Gohman27cae7b2008-11-11 15:52:29 +0000213 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000214
215 if (AM.Segment.getNode())
216 Segment = AM.Segment;
217 else
218 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000219 }
220
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000221 /// getI8Imm - Return a target constant with the specified value, of type
222 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000223 inline SDValue getI8Imm(unsigned Imm) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000224 return CurDAG->getTargetConstant(Imm, MVT::i8);
225 }
226
Chris Lattnerc961eea2005-11-16 01:54:32 +0000227 /// getI16Imm - Return a target constant with the specified value, of type
228 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000229 inline SDValue getI16Imm(unsigned Imm) {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000230 return CurDAG->getTargetConstant(Imm, MVT::i16);
231 }
232
233 /// getI32Imm - Return a target constant with the specified value, of type
234 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000235 inline SDValue getI32Imm(unsigned Imm) {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000236 return CurDAG->getTargetConstant(Imm, MVT::i32);
237 }
Evan Chengf597dc72006-02-10 22:24:32 +0000238
Dan Gohman8b746962008-09-23 18:22:58 +0000239 /// getGlobalBaseReg - Return an SDNode that returns the value of
240 /// the global base register. Output instructions required to
241 /// initialize the global base register, if necessary.
242 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000243 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000244
Dan Gohman0bfa1bf2008-08-20 21:27:32 +0000245 /// getTruncateTo8Bit - return an SDNode that implements a subreg based
246 /// truncate of the specified operand to i8. This can be done with tablegen,
247 /// except that this code uses MVT::Flag in a tricky way that happens to
248 /// improve scheduling in some cases.
249 SDNode *getTruncateTo8Bit(SDValue N0);
Christopher Lambc59e5212007-08-10 21:48:46 +0000250
Evan Cheng23addc02006-02-10 22:46:26 +0000251#ifndef NDEBUG
252 unsigned Indent;
253#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000254 };
255}
256
Gabor Greif93c53e52008-08-31 15:37:04 +0000257/// findFlagUse - Return use of MVT::Flag value produced by the specified
258/// SDNode.
Evan Chengcdda25d2008-04-25 08:22:20 +0000259///
Evan Chenga275ecb2006-10-10 01:46:56 +0000260static SDNode *findFlagUse(SDNode *N) {
261 unsigned FlagResNo = N->getNumValues()-1;
262 for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) {
Dan Gohmane8ecf482009-01-27 02:37:43 +0000263 SDUse &Use = I.getUse();
264 if (Use.getResNo() == FlagResNo)
265 return Use.getUser();
Evan Chenga275ecb2006-10-10 01:46:56 +0000266 }
267 return NULL;
268}
269
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000270/// findNonImmUse - Return true if "Use" is a non-immediate use of "Def".
271/// This function recursively traverses up the operand chain, ignoring
272/// certain nodes.
273static bool findNonImmUse(SDNode *Use, SDNode* Def, SDNode *ImmedUse,
274 SDNode *Root,
Evan Chengcdda25d2008-04-25 08:22:20 +0000275 SmallPtrSet<SDNode*, 16> &Visited) {
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000276 if (Use->getNodeId() < Def->getNodeId() ||
Evan Chengcdda25d2008-04-25 08:22:20 +0000277 !Visited.insert(Use))
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000278 return false;
279
280 for (unsigned i = 0, e = Use->getNumOperands(); i != e; ++i) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000281 SDNode *N = Use->getOperand(i).getNode();
Evan Cheng27e1fe92006-10-14 08:33:25 +0000282 if (N == Def) {
Dan Gohman682d5a82008-09-17 01:39:10 +0000283 if (Use == ImmedUse || Use == Root)
Evan Cheng419ace92008-04-25 08:55:28 +0000284 continue; // We are not looking for immediate use.
Dan Gohman682d5a82008-09-17 01:39:10 +0000285 assert(N != Root);
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000286 return true;
Evan Chengf4b4c412006-08-08 00:31:00 +0000287 }
Evan Chengcdda25d2008-04-25 08:22:20 +0000288
289 // Traverse up the operand chain.
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000290 if (findNonImmUse(N, Def, ImmedUse, Root, Visited))
291 return true;
Evan Chengf4b4c412006-08-08 00:31:00 +0000292 }
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000293 return false;
Evan Chengf4b4c412006-08-08 00:31:00 +0000294}
295
Evan Cheng27e1fe92006-10-14 08:33:25 +0000296/// isNonImmUse - Start searching from Root up the DAG to check is Def can
297/// be reached. Return true if that's the case. However, ignore direct uses
298/// by ImmedUse (which would be U in the example illustrated in
Evan Cheng884c70c2008-11-27 00:49:46 +0000299/// IsLegalAndProfitableToFold) and by Root (which can happen in the store
300/// case).
Evan Cheng27e1fe92006-10-14 08:33:25 +0000301/// FIXME: to be really generic, we should allow direct use by any node
302/// that is being folded. But realisticly since we only fold loads which
303/// have one non-chain use, we only need to watch out for load/op/store
304/// and load/op/cmp case where the root (store / cmp) may reach the load via
305/// its chain operand.
Dan Gohman682d5a82008-09-17 01:39:10 +0000306static inline bool isNonImmUse(SDNode *Root, SDNode *Def, SDNode *ImmedUse) {
Evan Chengcdda25d2008-04-25 08:22:20 +0000307 SmallPtrSet<SDNode*, 16> Visited;
Dan Gohmanc03e9a12009-01-27 19:04:30 +0000308 return findNonImmUse(Root, Def, ImmedUse, Root, Visited);
Evan Chengf4b4c412006-08-08 00:31:00 +0000309}
310
311
Evan Cheng884c70c2008-11-27 00:49:46 +0000312bool X86DAGToDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
313 SDNode *Root) const {
Dan Gohmanea9587b2008-08-13 19:55:00 +0000314 if (Fast) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000315
Evan Cheng884c70c2008-11-27 00:49:46 +0000316 if (U == Root)
317 switch (U->getOpcode()) {
318 default: break;
319 case ISD::ADD:
320 case ISD::ADDC:
321 case ISD::ADDE:
322 case ISD::AND:
323 case ISD::OR:
324 case ISD::XOR: {
325 // If the other operand is a 8-bit immediate we should fold the immediate
326 // instead. This reduces code size.
327 // e.g.
328 // movl 4(%esp), %eax
329 // addl $4, %eax
330 // vs.
331 // movl $4, %eax
332 // addl 4(%esp), %eax
333 // The former is 2 bytes shorter. In case where the increment is 1, then
334 // the saving can be 4 bytes (by using incl %eax).
Dan Gohman9a49d312009-03-14 02:07:16 +0000335 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(U->getOperand(1)))
336 if (Imm->getAPIntValue().isSignedIntN(8))
337 return false;
Evan Cheng884c70c2008-11-27 00:49:46 +0000338 }
339 }
340
Dan Gohman682d5a82008-09-17 01:39:10 +0000341 // If Root use can somehow reach N through a path that that doesn't contain
342 // U then folding N would create a cycle. e.g. In the following
343 // diagram, Root can reach N through X. If N is folded into into Root, then
344 // X is both a predecessor and a successor of U.
Evan Chenga8df1b42006-07-27 16:44:36 +0000345 //
Dan Gohman682d5a82008-09-17 01:39:10 +0000346 // [N*] //
347 // ^ ^ //
348 // / \ //
349 // [U*] [X]? //
350 // ^ ^ //
351 // \ / //
352 // \ / //
353 // [Root*] //
354 //
355 // * indicates nodes to be folded together.
356 //
357 // If Root produces a flag, then it gets (even more) interesting. Since it
358 // will be "glued" together with its flag use in the scheduler, we need to
359 // check if it might reach N.
360 //
361 // [N*] //
362 // ^ ^ //
363 // / \ //
364 // [U*] [X]? //
365 // ^ ^ //
366 // \ \ //
367 // \ | //
368 // [Root*] | //
369 // ^ | //
370 // f | //
371 // | / //
372 // [Y] / //
373 // ^ / //
374 // f / //
375 // | / //
376 // [FU] //
377 //
378 // If FU (flag use) indirectly reaches N (the load), and Root folds N
379 // (call it Fold), then X is a predecessor of FU and a successor of
380 // Fold. But since Fold and FU are flagged together, this will create
381 // a cycle in the scheduling graph.
Evan Cheng27e1fe92006-10-14 08:33:25 +0000382
Duncan Sands83ec4b62008-06-06 12:08:01 +0000383 MVT VT = Root->getValueType(Root->getNumValues()-1);
Dan Gohman682d5a82008-09-17 01:39:10 +0000384 while (VT == MVT::Flag) {
Evan Cheng27e1fe92006-10-14 08:33:25 +0000385 SDNode *FU = findFlagUse(Root);
386 if (FU == NULL)
387 break;
Dan Gohman682d5a82008-09-17 01:39:10 +0000388 Root = FU;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000389 VT = Root->getValueType(Root->getNumValues()-1);
Evan Chenga275ecb2006-10-10 01:46:56 +0000390 }
Evan Cheng27e1fe92006-10-14 08:33:25 +0000391
Dan Gohman682d5a82008-09-17 01:39:10 +0000392 return !isNonImmUse(Root, N, U);
Evan Chenga8df1b42006-07-27 16:44:36 +0000393}
394
Evan Cheng70e674e2006-08-28 20:10:17 +0000395/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
396/// and move load below the TokenFactor. Replace store's chain operand with
397/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000398static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000399 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000400 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000401 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
402 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000403 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000404 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000405 Ops.push_back(TF.getOperand(i));
Dan Gohmanf350b272008-08-23 02:25:05 +0000406 CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
407 CurDAG->UpdateNodeOperands(Load, TF, Load.getOperand(1), Load.getOperand(2));
408 CurDAG->UpdateNodeOperands(Store, Load.getValue(1), Store.getOperand(1),
409 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000410}
411
Evan Chengcd0baf22008-05-23 21:23:16 +0000412/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG.
413///
Dan Gohman475871a2008-07-27 21:46:04 +0000414static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
415 SDValue &Load) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000416 if (N.getOpcode() == ISD::BIT_CONVERT)
417 N = N.getOperand(0);
418
419 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
420 if (!LD || LD->isVolatile())
421 return false;
422 if (LD->getAddressingMode() != ISD::UNINDEXED)
423 return false;
424
425 ISD::LoadExtType ExtType = LD->getExtensionType();
426 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
427 return false;
428
429 if (N.hasOneUse() &&
430 N.getOperand(1) == Address &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000431 N.getNode()->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000432 Load = N;
433 return true;
434 }
435 return false;
436}
437
Evan Chengab6c3bb2008-08-25 21:27:18 +0000438/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
439/// operand and move load below the call's chain operand.
440static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000441 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000442 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000443 SDValue Chain = CallSeqStart.getOperand(0);
444 if (Chain.getNode() == Load.getNode())
445 Ops.push_back(Load.getOperand(0));
446 else {
447 assert(Chain.getOpcode() == ISD::TokenFactor &&
448 "Unexpected CallSeqStart chain operand");
449 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
450 if (Chain.getOperand(i).getNode() == Load.getNode())
451 Ops.push_back(Load.getOperand(0));
452 else
453 Ops.push_back(Chain.getOperand(i));
454 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000455 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
456 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000457 Ops.clear();
458 Ops.push_back(NewChain);
459 }
460 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
461 Ops.push_back(CallSeqStart.getOperand(i));
462 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000463 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
464 Load.getOperand(1), Load.getOperand(2));
465 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000466 Ops.push_back(SDValue(Load.getNode(), 1));
467 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000468 Ops.push_back(Call.getOperand(i));
469 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
470}
471
472/// isCalleeLoad - Return true if call address is a load and it can be
473/// moved below CALLSEQ_START and the chains leading up to the call.
474/// Return the CALLSEQ_START by reference as a second output.
475static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000476 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000477 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000478 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000479 if (!LD ||
480 LD->isVolatile() ||
481 LD->getAddressingMode() != ISD::UNINDEXED ||
482 LD->getExtensionType() != ISD::NON_EXTLOAD)
483 return false;
484
485 // Now let's find the callseq_start.
486 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
487 if (!Chain.hasOneUse())
488 return false;
489 Chain = Chain.getOperand(0);
490 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000491
492 if (Chain.getOperand(0).getNode() == Callee.getNode())
493 return true;
494 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
495 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()))
496 return true;
497 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000498}
499
500
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000501/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
502/// This is only run if not in -fast mode (aka -O0).
503/// This allows the instruction selector to pick more read-modify-write
504/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000505///
506/// [Load chain]
507/// ^
508/// |
509/// [Load]
510/// ^ ^
511/// | |
512/// / \-
513/// / |
514/// [TokenFactor] [Op]
515/// ^ ^
516/// | |
517/// \ /
518/// \ /
519/// [Store]
520///
521/// The fact the store's chain operand != load's chain will prevent the
522/// (store (op (load))) instruction from being selected. We can transform it to:
523///
524/// [Load chain]
525/// ^
526/// |
527/// [TokenFactor]
528/// ^
529/// |
530/// [Load]
531/// ^ ^
532/// | |
533/// | \-
534/// | |
535/// | [Op]
536/// | ^
537/// | |
538/// \ /
539/// \ /
540/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000541void X86DAGToDAGISel::PreprocessForRMW() {
542 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
543 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000544 if (I->getOpcode() == X86ISD::CALL) {
545 /// Also try moving call address load from outside callseq_start to just
546 /// before the call to allow it to be folded.
547 ///
548 /// [Load chain]
549 /// ^
550 /// |
551 /// [Load]
552 /// ^ ^
553 /// | |
554 /// / \--
555 /// / |
556 ///[CALLSEQ_START] |
557 /// ^ |
558 /// | |
559 /// [LOAD/C2Reg] |
560 /// | |
561 /// \ /
562 /// \ /
563 /// [CALL]
564 SDValue Chain = I->getOperand(0);
565 SDValue Load = I->getOperand(1);
566 if (!isCalleeLoad(Load, Chain))
567 continue;
568 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
569 ++NumLoadMoved;
570 continue;
571 }
572
Evan Cheng8b2794a2006-10-13 21:14:26 +0000573 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000574 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000575 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000576
Gabor Greifba36cb52008-08-28 21:40:38 +0000577 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000578 continue;
579
Dan Gohman475871a2008-07-27 21:46:04 +0000580 SDValue N1 = I->getOperand(1);
581 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000582 if ((N1.getValueType().isFloatingPoint() &&
583 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000584 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000585 continue;
586
587 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000588 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000589 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000590 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000591 case ISD::ADD:
592 case ISD::MUL:
593 case ISD::AND:
594 case ISD::OR:
595 case ISD::XOR:
596 case ISD::ADDC:
597 case ISD::ADDE:
598 case ISD::VECTOR_SHUFFLE: {
599 SDValue N10 = N1.getOperand(0);
600 SDValue N11 = N1.getOperand(1);
601 RModW = isRMWLoad(N10, Chain, N2, Load);
602 if (!RModW)
603 RModW = isRMWLoad(N11, Chain, N2, Load);
604 break;
605 }
606 case ISD::SUB:
607 case ISD::SHL:
608 case ISD::SRA:
609 case ISD::SRL:
610 case ISD::ROTL:
611 case ISD::ROTR:
612 case ISD::SUBC:
613 case ISD::SUBE:
614 case X86ISD::SHLD:
615 case X86ISD::SHRD: {
616 SDValue N10 = N1.getOperand(0);
617 RModW = isRMWLoad(N10, Chain, N2, Load);
618 break;
619 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000620 }
621
Evan Cheng82a35b32006-08-29 06:44:17 +0000622 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000623 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000624 ++NumLoadMoved;
625 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000626 }
627}
628
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000629
630/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
631/// nodes that target the FP stack to be store and load to the stack. This is a
632/// gross hack. We would like to simply mark these as being illegal, but when
633/// we do that, legalize produces these when it expands calls, then expands
634/// these in the same legalize pass. We would like dag combine to be able to
635/// hack on these between the call expansion and the node legalization. As such
636/// this pass basically does "really late" legalization of these inline with the
637/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000638void X86DAGToDAGISel::PreprocessForFPConvert() {
639 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
640 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000641 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
642 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
643 continue;
644
645 // If the source and destination are SSE registers, then this is a legal
646 // conversion that should not be lowered.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000647 MVT SrcVT = N->getOperand(0).getValueType();
648 MVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000649 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
650 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
651 if (SrcIsSSE && DstIsSSE)
652 continue;
653
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000654 if (!SrcIsSSE && !DstIsSSE) {
655 // If this is an FPStack extension, it is a noop.
656 if (N->getOpcode() == ISD::FP_EXTEND)
657 continue;
658 // If this is a value-preserving FPStack truncation, it is a noop.
659 if (N->getConstantOperandVal(1))
660 continue;
661 }
662
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000663 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
664 // FPStack has extload and truncstore. SSE can fold direct loads into other
665 // operations. Based on this, decide what we want to do.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000666 MVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000667 if (N->getOpcode() == ISD::FP_ROUND)
668 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
669 else
670 MemVT = SrcIsSSE ? SrcVT : DstVT;
671
Dan Gohmanf350b272008-08-23 02:25:05 +0000672 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000673 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000674
675 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000676 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000677 N->getOperand(0),
678 MemTmp, NULL, 0, MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000679 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Dan Gohmanf350b272008-08-23 02:25:05 +0000680 NULL, 0, MemVT);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000681
682 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
683 // extload we created. This will cause general havok on the dag because
684 // anything below the conversion could be folded into other existing nodes.
685 // To avoid invalidating 'I', back it up to the convert node.
686 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000687 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000688
689 // Now that we did that, the node is dead. Increment the iterator to the
690 // next node to process, then delete N.
691 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000692 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000693 }
694}
695
Chris Lattnerc961eea2005-11-16 01:54:32 +0000696/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
697/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000698void X86DAGToDAGISel::InstructionSelect() {
Evan Chengdb8d56b2008-06-30 20:45:06 +0000699 CurBB = BB; // BB can change as result of isel.
Devang Patele76225a2008-10-06 18:03:39 +0000700 const Function *F = CurDAG->getMachineFunction().getFunction();
701 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000702
Evan Chengdb8d56b2008-06-30 20:45:06 +0000703 DEBUG(BB->dump());
Dan Gohmanea9587b2008-08-13 19:55:00 +0000704 if (!Fast)
Dan Gohmanf350b272008-08-23 02:25:05 +0000705 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000706
707 // FIXME: This should only happen when not -fast.
Dan Gohmanf350b272008-08-23 02:25:05 +0000708 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000709
Chris Lattnerc961eea2005-11-16 01:54:32 +0000710 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000711#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +0000712 DOUT << "===== Instruction selection begins:\n";
Evan Cheng23addc02006-02-10 22:46:26 +0000713 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000714#endif
David Greene8ad4c002008-10-27 21:56:29 +0000715 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000716#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +0000717 DOUT << "===== Instruction selection ends:\n";
Evan Chengf597dc72006-02-10 22:24:32 +0000718#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000719
Dan Gohmanf350b272008-08-23 02:25:05 +0000720 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000721}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000722
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000723/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
724/// the main function.
725void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
726 MachineFrameInfo *MFI) {
727 const TargetInstrInfo *TII = TM.getInstrInfo();
728 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000729 BuildMI(BB, DebugLoc::getUnknownLoc(),
730 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000731}
732
733void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
734 // If this is main, emit special code for main.
735 MachineBasicBlock *BB = MF.begin();
736 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
737 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
738}
739
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000740
741bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
742 X86ISelAddressMode &AM) {
743 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
744 SDValue Segment = N.getOperand(0);
745
746 if (AM.Segment.getNode() == 0) {
747 AM.Segment = Segment;
748 return false;
749 }
750
751 return true;
752}
753
754bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
755 // This optimization is valid because the GNU TLS model defines that
756 // gs:0 (or fs:0 on X86-64) contains its own address.
757 // For more information see http://people.redhat.com/drepper/tls.pdf
758
759 SDValue Address = N.getOperand(1);
760 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
761 !MatchSegmentBaseAddress (Address, AM))
762 return false;
763
764 return true;
765}
766
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000767/// MatchAddress - Add the specified node to the specified addressing mode,
768/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000769/// addressing mode.
Dan Gohman475871a2008-07-27 21:46:04 +0000770bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM,
Rafael Espindola523249f2009-03-31 16:16:57 +0000771 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000772 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000773 DebugLoc dl = N.getDebugLoc();
Evan Chengda43bcf2008-09-24 00:05:32 +0000774 DOUT << "MatchAddress: "; DEBUG(AM.dump());
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000775 // Limit recursion.
776 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000777 return MatchAddressBase(N, AM);
Anton Korobeynikov33bf8c42007-03-28 18:36:33 +0000778
Evan Cheng25ab6902006-09-08 06:48:29 +0000779 // RIP relative addressing: %rip + 32-bit displacement!
780 if (AM.isRIPRel) {
781 if (!AM.ES && AM.JT != -1 && N.getOpcode() == ISD::Constant) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000782 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Dan Gohman6520e202008-10-18 02:06:02 +0000783 if (!is64Bit || isInt32(AM.Disp + Val)) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000784 AM.Disp += Val;
785 return false;
786 }
787 }
788 return true;
789 }
790
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000791 switch (N.getOpcode()) {
792 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000793 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000794 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Dan Gohman6520e202008-10-18 02:06:02 +0000795 if (!is64Bit || isInt32(AM.Disp + Val)) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000796 AM.Disp += Val;
797 return false;
798 }
799 break;
800 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000801
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000802 case X86ISD::SegmentBaseAddress:
803 if (!MatchSegmentBaseAddress(N, AM))
804 return false;
805 break;
806
Evan Cheng19f2ffc2006-12-05 04:01:03 +0000807 case X86ISD::Wrapper: {
Dan Gohman6520e202008-10-18 02:06:02 +0000808 DOUT << "Wrapper: 64bit " << is64Bit;
809 DOUT << " AM "; DEBUG(AM.dump()); DOUT << "\n";
Evan Cheng0085a282006-11-30 21:55:46 +0000810 // Under X86-64 non-small code model, GV (and friends) are 64-bits.
Evan Chengbe3bf422008-02-07 08:53:49 +0000811 // Also, base and index reg must be 0 in order to use rip as base.
812 if (is64Bit && (TM.getCodeModel() != CodeModel::Small ||
Gabor Greifba36cb52008-08-28 21:40:38 +0000813 AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng0085a282006-11-30 21:55:46 +0000814 break;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000815 if (AM.hasSymbolicDisplacement())
Evan Cheng28b514392006-12-05 19:50:18 +0000816 break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000817 // If value is available in a register both base and index components have
818 // been picked, we can't fit the result available in the register in the
819 // addressing mode. Duplicate GlobalAddress or ConstantPool as displacement.
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000820 {
Dan Gohman475871a2008-07-27 21:46:04 +0000821 SDValue N0 = N.getOperand(0);
Evan Cheng28b514392006-12-05 19:50:18 +0000822 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000823 uint64_t Offset = G->getOffset();
824 if (!is64Bit || isInt32(AM.Disp + Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +0000825 GlobalValue *GV = G->getGlobal();
826 AM.GV = GV;
Dan Gohman27cae7b2008-11-11 15:52:29 +0000827 AM.Disp += Offset;
Dan Gohman6520e202008-10-18 02:06:02 +0000828 AM.isRIPRel = TM.symbolicAddressesAreRIPRel();
829 return false;
830 }
Evan Cheng28b514392006-12-05 19:50:18 +0000831 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000832 uint64_t Offset = CP->getOffset();
833 if (!is64Bit || isInt32(AM.Disp + Offset)) {
Dan Gohman6520e202008-10-18 02:06:02 +0000834 AM.CP = CP->getConstVal();
835 AM.Align = CP->getAlignment();
Dan Gohman27cae7b2008-11-11 15:52:29 +0000836 AM.Disp += Offset;
Dan Gohman6520e202008-10-18 02:06:02 +0000837 AM.isRIPRel = TM.symbolicAddressesAreRIPRel();
838 return false;
839 }
Bill Wendling056292f2008-09-16 21:48:12 +0000840 } else if (ExternalSymbolSDNode *S =dyn_cast<ExternalSymbolSDNode>(N0)) {
Evan Chengbe3bf422008-02-07 08:53:49 +0000841 AM.ES = S->getSymbol();
Dan Gohman97135e12008-09-26 19:15:30 +0000842 AM.isRIPRel = TM.symbolicAddressesAreRIPRel();
Evan Chengbe3bf422008-02-07 08:53:49 +0000843 return false;
Evan Cheng28b514392006-12-05 19:50:18 +0000844 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Evan Chengbe3bf422008-02-07 08:53:49 +0000845 AM.JT = J->getIndex();
Dan Gohman97135e12008-09-26 19:15:30 +0000846 AM.isRIPRel = TM.symbolicAddressesAreRIPRel();
Evan Chengbe3bf422008-02-07 08:53:49 +0000847 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000848 }
849 }
850 break;
Evan Cheng0085a282006-11-30 21:55:46 +0000851 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000852
Rafael Espindola2a6411b2009-04-07 21:37:46 +0000853 case ISD::LOAD:
854 if (!MatchLoad(N, AM))
855 return false;
856 break;
857
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000858 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000859 if (AM.BaseType == X86ISelAddressMode::RegBase
860 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000861 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
862 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
863 return false;
864 }
865 break;
Evan Chengec693f72005-12-08 02:01:35 +0000866
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000867 case ISD::SHL:
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000868 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1 || AM.isRIPRel)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000869 break;
870
Gabor Greif93c53e52008-08-31 15:37:04 +0000871 if (ConstantSDNode
872 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000873 unsigned Val = CN->getZExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000874 if (Val == 1 || Val == 2 || Val == 3) {
875 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000876 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000877
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000878 // Okay, we know that we have a scale by now. However, if the scaled
879 // value is an add of something and a constant, we can fold the
880 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000881 if (ShVal.getNode()->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
882 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
883 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000884 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000885 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000886 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Dan Gohman6520e202008-10-18 02:06:02 +0000887 if (!is64Bit || isInt32(Disp))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000888 AM.Disp = Disp;
889 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000890 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000891 } else {
892 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000893 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000894 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000895 }
896 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000897 }
Evan Chengec693f72005-12-08 02:01:35 +0000898
Dan Gohman83688052007-10-22 20:22:24 +0000899 case ISD::SMUL_LOHI:
900 case ISD::UMUL_LOHI:
901 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000902 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000903 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000904 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000905 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000906 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000907 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000908 AM.Base.Reg.getNode() == 0 &&
909 AM.IndexReg.getNode() == 0 &&
Evan Chengbe3bf422008-02-07 08:53:49 +0000910 !AM.isRIPRel) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000911 if (ConstantSDNode
912 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000913 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
914 CN->getZExtValue() == 9) {
915 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000916
Gabor Greifba36cb52008-08-28 21:40:38 +0000917 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000918 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000919
920 // Okay, we know that we have a scale by now. However, if the scaled
921 // value is an add of something and a constant, we can fold the
922 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000923 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
924 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
925 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000926 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000928 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000929 CN->getZExtValue();
Dan Gohman6520e202008-10-18 02:06:02 +0000930 if (!is64Bit || isInt32(Disp))
Evan Cheng25ab6902006-09-08 06:48:29 +0000931 AM.Disp = Disp;
932 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000933 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000934 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000935 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000936 }
937
938 AM.IndexReg = AM.Base.Reg = Reg;
939 return false;
940 }
Chris Lattner62412262007-02-04 20:18:17 +0000941 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000942 break;
943
Evan Cheng8e278262009-01-17 07:09:27 +0000944 case ISD::ADD: {
945 X86ISelAddressMode Backup = AM;
Rafael Espindola523249f2009-03-31 16:16:57 +0000946 if (!MatchAddress(N.getNode()->getOperand(0), AM, Depth+1) &&
947 !MatchAddress(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +0000948 return false;
949 AM = Backup;
Rafael Espindola523249f2009-03-31 16:16:57 +0000950 if (!MatchAddress(N.getNode()->getOperand(1), AM, Depth+1) &&
951 !MatchAddress(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +0000952 return false;
953 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +0000954
955 // If we couldn't fold both operands into the address at the same time,
956 // see if we can just put each operand into a register and fold at least
957 // the add.
958 if (AM.BaseType == X86ISelAddressMode::RegBase &&
959 !AM.Base.Reg.getNode() &&
960 !AM.IndexReg.getNode() &&
961 !AM.isRIPRel) {
962 AM.Base.Reg = N.getNode()->getOperand(0);
963 AM.IndexReg = N.getNode()->getOperand(1);
964 AM.Scale = 1;
965 return false;
966 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000967 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000968 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000969
Chris Lattner62412262007-02-04 20:18:17 +0000970 case ISD::OR:
971 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000972 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
973 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +0000974 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000975 // Start with the LHS as an addr mode.
Rafael Espindola523249f2009-03-31 16:16:57 +0000976 if (!MatchAddress(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000977 // Address could not have picked a GV address for the displacement.
978 AM.GV == NULL &&
979 // On x86-64, the resultant disp must fit in 32-bits.
Dan Gohman27cae7b2008-11-11 15:52:29 +0000980 (!is64Bit || isInt32(AM.Disp + Offset)) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000981 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +0000982 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000983 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000984 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000985 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000986 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000987 }
988 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000989
990 case ISD::AND: {
991 // Handle "(x << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
992 // allows us to fold the shift into this addressing mode.
Dan Gohman475871a2008-07-27 21:46:04 +0000993 SDValue Shift = N.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +0000994 if (Shift.getOpcode() != ISD::SHL) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000995
Evan Cheng1314b002007-12-13 00:43:27 +0000996 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000997 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000998
999 // Not when RIP is used as the base.
1000 if (AM.isRIPRel) break;
Evan Cheng1314b002007-12-13 00:43:27 +00001001
1002 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1003 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1004 if (!C1 || !C2) break;
1005
1006 // Not likely to be profitable if either the AND or SHIFT node has more
1007 // than one use (unless all uses are for address computation). Besides,
1008 // isel mechanism requires their node ids to be reused.
1009 if (!N.hasOneUse() || !Shift.hasOneUse())
1010 break;
1011
1012 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001013 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001014 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1015 break;
1016
1017 // Get the new AND mask, this folds to a constant.
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001018 SDValue X = Shift.getOperand(0);
Dale Johannesend8392542009-02-03 21:48:12 +00001019 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001020 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001021 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1022 NewANDMask);
1023 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001024 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001025
1026 // Insert the new nodes into the topological ordering.
1027 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1028 CurDAG->RepositionNode(X.getNode(), C1);
1029 C1->setNodeId(X.getNode()->getNodeId());
1030 }
1031 if (NewANDMask.getNode()->getNodeId() == -1 ||
1032 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1033 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1034 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1035 }
1036 if (NewAND.getNode()->getNodeId() == -1 ||
1037 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1038 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1039 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1040 }
1041 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1042 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1043 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1044 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1045 }
1046
Dan Gohman7b8e9642008-10-13 20:52:04 +00001047 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001048
1049 AM.Scale = 1 << ShiftCst;
1050 AM.IndexReg = NewAND;
1051 return false;
1052 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001053 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001054
Rafael Espindola523249f2009-03-31 16:16:57 +00001055 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001056}
1057
1058/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1059/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001060bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001061 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001062 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001063 // If so, check to see if the scale index register is set.
Gabor Greifba36cb52008-08-28 21:40:38 +00001064 if (AM.IndexReg.getNode() == 0 && !AM.isRIPRel) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001065 AM.IndexReg = N;
1066 AM.Scale = 1;
1067 return false;
1068 }
1069
1070 // Otherwise, we cannot select it.
1071 return true;
1072 }
1073
1074 // Default, generate it as a register.
1075 AM.BaseType = X86ISelAddressMode::RegBase;
1076 AM.Base.Reg = N;
1077 return false;
1078}
1079
Evan Chengec693f72005-12-08 02:01:35 +00001080/// SelectAddr - returns true if it is able pattern match an addressing mode.
1081/// It returns the operands which make up the maximal addressing mode it can
1082/// match by reference.
Dan Gohman475871a2008-07-27 21:46:04 +00001083bool X86DAGToDAGISel::SelectAddr(SDValue Op, SDValue N, SDValue &Base,
1084 SDValue &Scale, SDValue &Index,
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001085 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001086 X86ISelAddressMode AM;
Evan Cheng4d952322009-03-31 01:13:53 +00001087 bool Done = false;
1088 if (AvoidDupAddrCompute && !N.hasOneUse()) {
1089 unsigned Opcode = N.getOpcode();
1090 if (Opcode != ISD::Constant && Opcode != ISD::FrameIndex &&
1091 Opcode != X86ISD::Wrapper) {
1092 // If we are able to fold N into addressing mode, then we'll allow it even
1093 // if N has multiple uses. In general, addressing computation is used as
1094 // addresses by all of its uses. But watch out for CopyToReg uses, that
1095 // means the address computation is liveout. It will be computed by a LEA
1096 // so we want to avoid computing the address twice.
1097 for (SDNode::use_iterator UI = N.getNode()->use_begin(),
1098 UE = N.getNode()->use_end(); UI != UE; ++UI) {
1099 if (UI->getOpcode() == ISD::CopyToReg) {
Rafael Espindola523249f2009-03-31 16:16:57 +00001100 MatchAddressBase(N, AM);
Evan Cheng4d952322009-03-31 01:13:53 +00001101 Done = true;
1102 break;
1103 }
1104 }
1105 }
1106 }
1107
1108 if (!Done && MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001109 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001110
Duncan Sands83ec4b62008-06-06 12:08:01 +00001111 MVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001112 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001113 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001114 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001115 }
Evan Cheng8700e142006-01-11 06:09:51 +00001116
Gabor Greifba36cb52008-08-28 21:40:38 +00001117 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001118 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001119
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001120 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001121 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001122}
1123
Chris Lattner3a7cd952006-10-07 21:55:32 +00001124/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1125/// match a load whose top elements are either undef or zeros. The load flavor
1126/// is derived from the type of N, which is either v4f32 or v2f64.
Dan Gohman475871a2008-07-27 21:46:04 +00001127bool X86DAGToDAGISel::SelectScalarSSELoad(SDValue Op, SDValue Pred,
1128 SDValue N, SDValue &Base,
1129 SDValue &Scale, SDValue &Index,
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001130 SDValue &Disp, SDValue &Segment,
1131 SDValue &InChain,
Dan Gohman475871a2008-07-27 21:46:04 +00001132 SDValue &OutChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001133 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner4fe4f252006-10-11 22:09:58 +00001134 InChain = N.getOperand(0).getValue(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001135 if (ISD::isNON_EXTLoad(InChain.getNode()) &&
Evan Cheng07e4b002006-10-16 06:34:55 +00001136 InChain.getValue(0).hasOneUse() &&
Evan Chengd6373bc2006-11-10 21:23:04 +00001137 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001138 IsLegalAndProfitableToFold(N.getNode(), Pred.getNode(), Op.getNode())) {
Evan Cheng82a91642006-10-11 21:06:01 +00001139 LoadSDNode *LD = cast<LoadSDNode>(InChain);
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001140 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001141 return false;
Evan Cheng82a91642006-10-11 21:06:01 +00001142 OutChain = LD->getChain();
Chris Lattner3a7cd952006-10-07 21:55:32 +00001143 return true;
1144 }
1145 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001146
1147 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001148 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001149 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001150 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001151 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001152 N.getOperand(0).getNode()->hasOneUse() &&
1153 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00001154 N.getOperand(0).getOperand(0).hasOneUse()) {
1155 // Okay, this is a zero extending load. Fold it.
1156 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001157 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001158 return false;
1159 OutChain = LD->getChain();
Dan Gohman475871a2008-07-27 21:46:04 +00001160 InChain = SDValue(LD, 1);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001161 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001162 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001163 return false;
1164}
1165
1166
Evan Cheng51a9ed92006-02-25 10:09:08 +00001167/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1168/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00001169bool X86DAGToDAGISel::SelectLEAAddr(SDValue Op, SDValue N,
1170 SDValue &Base, SDValue &Scale,
1171 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001172 X86ISelAddressMode AM;
1173 if (MatchAddress(N, AM))
1174 return false;
1175
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001176 //Is it better to set AM.Segment before calling MatchAddress to
1177 //prevent it from adding a segment?
1178 if (AM.Segment.getNode())
1179 return false;
1180
Duncan Sands83ec4b62008-06-06 12:08:01 +00001181 MVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001182 unsigned Complexity = 0;
1183 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001184 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001185 Complexity = 1;
1186 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001187 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001188 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1189 Complexity = 4;
1190
Gabor Greifba36cb52008-08-28 21:40:38 +00001191 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001192 Complexity++;
1193 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001194 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001195
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001196 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1197 // a simple shift.
1198 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001199 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001200
1201 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1202 // to a LEA. This is determined with some expermentation but is by no means
1203 // optimal (especially for code size consideration). LEA is nice because of
1204 // its three-address nature. Tweak the cost function again when we can run
1205 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001206 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001207 // For X86-64, we should always use lea to materialize RIP relative
1208 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001209 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001210 Complexity = 4;
1211 else
1212 Complexity += 2;
1213 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001214
Gabor Greifba36cb52008-08-28 21:40:38 +00001215 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001216 Complexity++;
1217
1218 if (Complexity > 2) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001219 SDValue Segment;
1220 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001221 return true;
1222 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001223 return false;
1224}
1225
Dan Gohman475871a2008-07-27 21:46:04 +00001226bool X86DAGToDAGISel::TryFoldLoad(SDValue P, SDValue N,
1227 SDValue &Base, SDValue &Scale,
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001228 SDValue &Index, SDValue &Disp,
1229 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001230 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng5e351682006-02-06 06:02:33 +00001231 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001232 IsLegalAndProfitableToFold(N.getNode(), P.getNode(), P.getNode()))
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001233 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001234 return false;
1235}
1236
Dan Gohman8b746962008-09-23 18:22:58 +00001237/// getGlobalBaseReg - Return an SDNode that returns the value of
1238/// the global base register. Output instructions required to
1239/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001240///
Evan Cheng9ade2182006-08-26 05:34:46 +00001241SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman57c3dac2008-09-30 00:58:23 +00001242 MachineFunction *MF = CurBB->getParent();
1243 unsigned GlobalBaseReg = TM.getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001244 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001245}
1246
Evan Chengb245d922006-05-20 01:36:52 +00001247static SDNode *FindCallStartFromCall(SDNode *Node) {
1248 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
1249 assert(Node->getOperand(0).getValueType() == MVT::Other &&
1250 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001251 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001252}
1253
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001254/// getTruncateTo8Bit - return an SDNode that implements a subreg based
1255/// truncate of the specified operand to i8. This can be done with tablegen,
1256/// except that this code uses MVT::Flag in a tricky way that happens to
1257/// improve scheduling in some cases.
1258SDNode *X86DAGToDAGISel::getTruncateTo8Bit(SDValue N0) {
1259 assert(!Subtarget->is64Bit() &&
1260 "getTruncateTo8Bit is only needed on x86-32!");
1261 SDValue SRIdx = CurDAG->getTargetConstant(1, MVT::i32); // SubRegSet 1
Dale Johannesen6f38cb62009-02-07 19:59:05 +00001262 DebugLoc dl = N0.getDebugLoc();
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001263
1264 // Ensure that the source register has an 8-bit subreg on 32-bit targets
1265 unsigned Opc;
1266 MVT N0VT = N0.getValueType();
1267 switch (N0VT.getSimpleVT()) {
1268 default: assert(0 && "Unknown truncate!");
1269 case MVT::i16:
1270 Opc = X86::MOV16to16_;
1271 break;
1272 case MVT::i32:
1273 Opc = X86::MOV32to32_;
1274 break;
1275 }
1276
1277 // The use of MVT::Flag here is not strictly accurate, but it helps
1278 // scheduling in some cases.
Dale Johannesend8392542009-02-03 21:48:12 +00001279 N0 = SDValue(CurDAG->getTargetNode(Opc, dl, N0VT, MVT::Flag, N0), 0);
1280 return CurDAG->getTargetNode(X86::EXTRACT_SUBREG, dl,
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001281 MVT::i8, N0, SRIdx, N0.getValue(1));
Christopher Lambc59e5212007-08-10 21:48:46 +00001282}
1283
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001284SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1285 SDValue Chain = Node->getOperand(0);
1286 SDValue In1 = Node->getOperand(1);
1287 SDValue In2L = Node->getOperand(2);
1288 SDValue In2H = Node->getOperand(3);
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001289 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1290 if (!SelectAddr(In1, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001291 return NULL;
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00001292 SDValue LSI = Node->getOperand(4); // MemOperand
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001293 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, LSI, Chain};
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001294 return CurDAG->getTargetNode(Opc, Node->getDebugLoc(),
1295 MVT::i32, MVT::i32, MVT::Other, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001296 array_lengthof(Ops));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001297}
Christopher Lambc59e5212007-08-10 21:48:46 +00001298
Dan Gohman475871a2008-07-27 21:46:04 +00001299SDNode *X86DAGToDAGISel::Select(SDValue N) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001300 SDNode *Node = N.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001301 MVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001302 unsigned Opc, MOpc;
1303 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001304 DebugLoc dl = Node->getDebugLoc();
1305
Evan Chengf597dc72006-02-10 22:24:32 +00001306#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +00001307 DOUT << std::string(Indent, ' ') << "Selecting: ";
Evan Chengf597dc72006-02-10 22:24:32 +00001308 DEBUG(Node->dump(CurDAG));
Bill Wendling6345d752006-11-17 07:52:03 +00001309 DOUT << "\n";
Evan Cheng23addc02006-02-10 22:46:26 +00001310 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001311#endif
1312
Dan Gohmane8be6c62008-07-17 19:10:17 +00001313 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001314#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +00001315 DOUT << std::string(Indent-2, ' ') << "== ";
Evan Chengf597dc72006-02-10 22:24:32 +00001316 DEBUG(Node->dump(CurDAG));
Bill Wendling6345d752006-11-17 07:52:03 +00001317 DOUT << "\n";
Evan Cheng23addc02006-02-10 22:46:26 +00001318 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001319#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001320 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001321 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001322
Evan Cheng0114e942006-01-06 20:36:21 +00001323 switch (Opcode) {
Chris Lattnerc961eea2005-11-16 01:54:32 +00001324 default: break;
Evan Cheng020d2e82006-02-23 20:41:18 +00001325 case X86ISD::GlobalBaseReg:
Evan Cheng9ade2182006-08-26 05:34:46 +00001326 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001327
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001328 case X86ISD::ATOMOR64_DAG:
1329 return SelectAtomic64(Node, X86::ATOMOR6432);
1330 case X86ISD::ATOMXOR64_DAG:
1331 return SelectAtomic64(Node, X86::ATOMXOR6432);
1332 case X86ISD::ATOMADD64_DAG:
1333 return SelectAtomic64(Node, X86::ATOMADD6432);
1334 case X86ISD::ATOMSUB64_DAG:
1335 return SelectAtomic64(Node, X86::ATOMSUB6432);
1336 case X86ISD::ATOMNAND64_DAG:
1337 return SelectAtomic64(Node, X86::ATOMNAND6432);
1338 case X86ISD::ATOMAND64_DAG:
1339 return SelectAtomic64(Node, X86::ATOMAND6432);
Dale Johannesen880ae362008-10-03 22:25:52 +00001340 case X86ISD::ATOMSWAP64_DAG:
1341 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001342
Dan Gohman525178c2007-10-08 18:33:35 +00001343 case ISD::SMUL_LOHI:
1344 case ISD::UMUL_LOHI: {
Dan Gohman475871a2008-07-27 21:46:04 +00001345 SDValue N0 = Node->getOperand(0);
1346 SDValue N1 = Node->getOperand(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001347
Dan Gohman525178c2007-10-08 18:33:35 +00001348 bool isSigned = Opcode == ISD::SMUL_LOHI;
1349 if (!isSigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001350 switch (NVT.getSimpleVT()) {
Evan Cheng0114e942006-01-06 20:36:21 +00001351 default: assert(0 && "Unsupported VT!");
1352 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1353 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1354 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001355 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Evan Cheng0114e942006-01-06 20:36:21 +00001356 }
1357 else
Duncan Sands83ec4b62008-06-06 12:08:01 +00001358 switch (NVT.getSimpleVT()) {
Evan Cheng0114e942006-01-06 20:36:21 +00001359 default: assert(0 && "Unsupported VT!");
1360 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1361 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1362 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001363 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Evan Cheng0114e942006-01-06 20:36:21 +00001364 }
1365
1366 unsigned LoReg, HiReg;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001367 switch (NVT.getSimpleVT()) {
Evan Cheng0114e942006-01-06 20:36:21 +00001368 default: assert(0 && "Unsupported VT!");
1369 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1370 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1371 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001372 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Evan Cheng0114e942006-01-06 20:36:21 +00001373 }
1374
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001375 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1376 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman525178c2007-10-08 18:33:35 +00001377 // multiplty is commmutative
Evan Cheng948f3432006-01-06 23:19:29 +00001378 if (!foldedLoad) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001379 foldedLoad = TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Evan Cheng7afa1662007-08-02 05:48:35 +00001380 if (foldedLoad)
1381 std::swap(N0, N1);
Evan Cheng948f3432006-01-06 23:19:29 +00001382 }
1383
Dale Johannesendd64c412009-02-04 00:33:20 +00001384 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
Dan Gohman475871a2008-07-27 21:46:04 +00001385 N0, SDValue()).getValue(1);
Evan Cheng0114e942006-01-06 20:36:21 +00001386
1387 if (foldedLoad) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001388 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1389 InFlag };
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001390 SDNode *CNode =
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001391 CurDAG->getTargetNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001392 array_lengthof(Ops));
Dan Gohman475871a2008-07-27 21:46:04 +00001393 InFlag = SDValue(CNode, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00001394 // Update the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00001395 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
Evan Cheng0114e942006-01-06 20:36:21 +00001396 } else {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001397 InFlag =
Dale Johannesend8392542009-02-03 21:48:12 +00001398 SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Evan Cheng0114e942006-01-06 20:36:21 +00001399 }
1400
Dan Gohman525178c2007-10-08 18:33:35 +00001401 // Copy the low half of the result, if it is needed.
1402 if (!N.getValue(0).use_empty()) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001403 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001404 LoReg, NVT, InFlag);
1405 InFlag = Result.getValue(2);
1406 ReplaceUses(N.getValue(0), Result);
1407#ifndef NDEBUG
1408 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001409 DEBUG(Result.getNode()->dump(CurDAG));
Dan Gohman525178c2007-10-08 18:33:35 +00001410 DOUT << "\n";
1411#endif
Evan Chengf7ef26e2007-08-09 21:59:35 +00001412 }
Dan Gohman525178c2007-10-08 18:33:35 +00001413 // Copy the high half of the result, if it is needed.
1414 if (!N.getValue(1).use_empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001415 SDValue Result;
Dan Gohman525178c2007-10-08 18:33:35 +00001416 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1417 // Prevent use of AH in a REX instruction by referencing AX instead.
1418 // Shift it down 8 bits.
Dale Johannesendd64c412009-02-04 00:33:20 +00001419 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001420 X86::AX, MVT::i16, InFlag);
1421 InFlag = Result.getValue(2);
Dale Johannesend8392542009-02-03 21:48:12 +00001422 Result = SDValue(CurDAG->getTargetNode(X86::SHR16ri, dl, MVT::i16,
1423 Result,
Gabor Greif93c53e52008-08-31 15:37:04 +00001424 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00001425 // Then truncate it down to i8.
Dan Gohman475871a2008-07-27 21:46:04 +00001426 SDValue SRIdx = CurDAG->getTargetConstant(1, MVT::i32); // SubRegSet 1
Dale Johannesend8392542009-02-03 21:48:12 +00001427 Result = SDValue(CurDAG->getTargetNode(X86::EXTRACT_SUBREG, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001428 MVT::i8, Result, SRIdx), 0);
1429 } else {
Dale Johannesendd64c412009-02-04 00:33:20 +00001430 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001431 HiReg, NVT, InFlag);
1432 InFlag = Result.getValue(2);
1433 }
1434 ReplaceUses(N.getValue(1), Result);
1435#ifndef NDEBUG
1436 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001437 DEBUG(Result.getNode()->dump(CurDAG));
Dan Gohman525178c2007-10-08 18:33:35 +00001438 DOUT << "\n";
1439#endif
1440 }
Evan Cheng34167212006-02-09 00:37:58 +00001441
Evan Chengf597dc72006-02-10 22:24:32 +00001442#ifndef NDEBUG
Evan Cheng23addc02006-02-10 22:46:26 +00001443 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001444#endif
Dan Gohman525178c2007-10-08 18:33:35 +00001445
Evan Cheng64a752f2006-08-11 09:08:15 +00001446 return NULL;
Evan Cheng948f3432006-01-06 23:19:29 +00001447 }
Evan Cheng7ccced62006-02-18 00:15:05 +00001448
Dan Gohman525178c2007-10-08 18:33:35 +00001449 case ISD::SDIVREM:
1450 case ISD::UDIVREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001451 SDValue N0 = Node->getOperand(0);
1452 SDValue N1 = Node->getOperand(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001453
1454 bool isSigned = Opcode == ISD::SDIVREM;
Evan Cheng948f3432006-01-06 23:19:29 +00001455 if (!isSigned)
Duncan Sands83ec4b62008-06-06 12:08:01 +00001456 switch (NVT.getSimpleVT()) {
Evan Cheng948f3432006-01-06 23:19:29 +00001457 default: assert(0 && "Unsupported VT!");
1458 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1459 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1460 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001461 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Evan Cheng948f3432006-01-06 23:19:29 +00001462 }
1463 else
Duncan Sands83ec4b62008-06-06 12:08:01 +00001464 switch (NVT.getSimpleVT()) {
Evan Cheng948f3432006-01-06 23:19:29 +00001465 default: assert(0 && "Unsupported VT!");
1466 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1467 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1468 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001469 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Evan Cheng948f3432006-01-06 23:19:29 +00001470 }
1471
1472 unsigned LoReg, HiReg;
1473 unsigned ClrOpcode, SExtOpcode;
Duncan Sands83ec4b62008-06-06 12:08:01 +00001474 switch (NVT.getSimpleVT()) {
Evan Cheng948f3432006-01-06 23:19:29 +00001475 default: assert(0 && "Unsupported VT!");
1476 case MVT::i8:
1477 LoReg = X86::AL; HiReg = X86::AH;
Evan Chengb1409ce2006-11-17 22:10:14 +00001478 ClrOpcode = 0;
Evan Cheng948f3432006-01-06 23:19:29 +00001479 SExtOpcode = X86::CBW;
1480 break;
1481 case MVT::i16:
1482 LoReg = X86::AX; HiReg = X86::DX;
Evan Chengaede9b92006-06-02 21:20:34 +00001483 ClrOpcode = X86::MOV16r0;
Evan Cheng948f3432006-01-06 23:19:29 +00001484 SExtOpcode = X86::CWD;
1485 break;
1486 case MVT::i32:
1487 LoReg = X86::EAX; HiReg = X86::EDX;
Evan Chengaede9b92006-06-02 21:20:34 +00001488 ClrOpcode = X86::MOV32r0;
Evan Cheng948f3432006-01-06 23:19:29 +00001489 SExtOpcode = X86::CDQ;
1490 break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001491 case MVT::i64:
1492 LoReg = X86::RAX; HiReg = X86::RDX;
1493 ClrOpcode = X86::MOV64r0;
1494 SExtOpcode = X86::CQO;
1495 break;
Evan Cheng948f3432006-01-06 23:19:29 +00001496 }
1497
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001498 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1499 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman1ef4d8f2009-01-21 14:50:16 +00001500 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001501
Dan Gohman475871a2008-07-27 21:46:04 +00001502 SDValue InFlag;
Dan Gohman1ef4d8f2009-01-21 14:50:16 +00001503 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Evan Chengb1409ce2006-11-17 22:10:14 +00001504 // Special case for div8, just use a move with zero extension to AX to
1505 // clear the upper 8 bits (AH).
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001506 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
1507 if (TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
1508 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
Evan Chengb1409ce2006-11-17 22:10:14 +00001509 Move =
Dale Johannesend8392542009-02-03 21:48:12 +00001510 SDValue(CurDAG->getTargetNode(X86::MOVZX16rm8, dl, MVT::i16,
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001511 MVT::Other, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001512 array_lengthof(Ops)), 0);
Evan Chengb1409ce2006-11-17 22:10:14 +00001513 Chain = Move.getValue(1);
1514 ReplaceUses(N0.getValue(1), Chain);
1515 } else {
Evan Chengb1409ce2006-11-17 22:10:14 +00001516 Move =
Dale Johannesend8392542009-02-03 21:48:12 +00001517 SDValue(CurDAG->getTargetNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Evan Chengb1409ce2006-11-17 22:10:14 +00001518 Chain = CurDAG->getEntryNode();
1519 }
Dale Johannesendd64c412009-02-04 00:33:20 +00001520 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
Evan Cheng948f3432006-01-06 23:19:29 +00001521 InFlag = Chain.getValue(1);
Evan Chengb1409ce2006-11-17 22:10:14 +00001522 } else {
Evan Chengb1409ce2006-11-17 22:10:14 +00001523 InFlag =
Dale Johannesendd64c412009-02-04 00:33:20 +00001524 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
Dan Gohman475871a2008-07-27 21:46:04 +00001525 LoReg, N0, SDValue()).getValue(1);
Dan Gohman1ef4d8f2009-01-21 14:50:16 +00001526 if (isSigned && !signBitIsZero) {
Evan Chengb1409ce2006-11-17 22:10:14 +00001527 // Sign extend the low part into the high part.
1528 InFlag =
Dale Johannesend8392542009-02-03 21:48:12 +00001529 SDValue(CurDAG->getTargetNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Evan Chengb1409ce2006-11-17 22:10:14 +00001530 } else {
1531 // Zero out the high part, effectively zero extending the input.
Dale Johannesend8392542009-02-03 21:48:12 +00001532 SDValue ClrNode = SDValue(CurDAG->getTargetNode(ClrOpcode, dl, NVT),
1533 0);
Dale Johannesendd64c412009-02-04 00:33:20 +00001534 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, HiReg,
Dan Gohman525178c2007-10-08 18:33:35 +00001535 ClrNode, InFlag).getValue(1);
Evan Chengb1409ce2006-11-17 22:10:14 +00001536 }
Evan Cheng948f3432006-01-06 23:19:29 +00001537 }
1538
1539 if (foldedLoad) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001540 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1541 InFlag };
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001542 SDNode *CNode =
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001543 CurDAG->getTargetNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001544 array_lengthof(Ops));
Dan Gohman475871a2008-07-27 21:46:04 +00001545 InFlag = SDValue(CNode, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00001546 // Update the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00001547 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
Evan Cheng948f3432006-01-06 23:19:29 +00001548 } else {
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001549 InFlag =
Dale Johannesend8392542009-02-03 21:48:12 +00001550 SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Evan Cheng948f3432006-01-06 23:19:29 +00001551 }
1552
Dan Gohmana37c9f72007-09-25 18:23:27 +00001553 // Copy the division (low) result, if it is needed.
1554 if (!N.getValue(0).use_empty()) {
Dale Johannesendd64c412009-02-04 00:33:20 +00001555 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001556 LoReg, NVT, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001557 InFlag = Result.getValue(2);
1558 ReplaceUses(N.getValue(0), Result);
1559#ifndef NDEBUG
1560 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001561 DEBUG(Result.getNode()->dump(CurDAG));
Dan Gohmana37c9f72007-09-25 18:23:27 +00001562 DOUT << "\n";
1563#endif
Evan Chengf7ef26e2007-08-09 21:59:35 +00001564 }
Dan Gohmana37c9f72007-09-25 18:23:27 +00001565 // Copy the remainder (high) result, if it is needed.
1566 if (!N.getValue(1).use_empty()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001567 SDValue Result;
Dan Gohmana37c9f72007-09-25 18:23:27 +00001568 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1569 // Prevent use of AH in a REX instruction by referencing AX instead.
1570 // Shift it down 8 bits.
Dale Johannesendd64c412009-02-04 00:33:20 +00001571 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001572 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001573 InFlag = Result.getValue(2);
Dale Johannesend8392542009-02-03 21:48:12 +00001574 Result = SDValue(CurDAG->getTargetNode(X86::SHR16ri, dl, MVT::i16,
1575 Result,
1576 CurDAG->getTargetConstant(8, MVT::i8)),
1577 0);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001578 // Then truncate it down to i8.
Dan Gohman475871a2008-07-27 21:46:04 +00001579 SDValue SRIdx = CurDAG->getTargetConstant(1, MVT::i32); // SubRegSet 1
Dale Johannesend8392542009-02-03 21:48:12 +00001580 Result = SDValue(CurDAG->getTargetNode(X86::EXTRACT_SUBREG, dl,
Dan Gohmana37c9f72007-09-25 18:23:27 +00001581 MVT::i8, Result, SRIdx), 0);
1582 } else {
Dale Johannesendd64c412009-02-04 00:33:20 +00001583 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Dan Gohman525178c2007-10-08 18:33:35 +00001584 HiReg, NVT, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001585 InFlag = Result.getValue(2);
1586 }
1587 ReplaceUses(N.getValue(1), Result);
1588#ifndef NDEBUG
1589 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001590 DEBUG(Result.getNode()->dump(CurDAG));
Dan Gohmana37c9f72007-09-25 18:23:27 +00001591 DOUT << "\n";
1592#endif
1593 }
Evan Chengf597dc72006-02-10 22:24:32 +00001594
1595#ifndef NDEBUG
Evan Cheng23addc02006-02-10 22:46:26 +00001596 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001597#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001598
1599 return NULL;
Evan Cheng0114e942006-01-06 20:36:21 +00001600 }
Christopher Lamba1eb1552007-08-10 22:22:41 +00001601
Christopher Lambc59e5212007-08-10 21:48:46 +00001602 case ISD::SIGN_EXTEND_INREG: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001603 MVT SVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001604 if (SVT == MVT::i8 && !Subtarget->is64Bit()) {
1605 SDValue N0 = Node->getOperand(0);
Christopher Lambc59e5212007-08-10 21:48:46 +00001606
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001607 SDValue TruncOp = SDValue(getTruncateTo8Bit(N0), 0);
1608 unsigned Opc = 0;
1609 switch (NVT.getSimpleVT()) {
1610 default: assert(0 && "Unknown sign_extend_inreg!");
1611 case MVT::i16:
1612 Opc = X86::MOVSX16rr8;
1613 break;
1614 case MVT::i32:
1615 Opc = X86::MOVSX32rr8;
1616 break;
1617 }
1618
Dale Johannesend8392542009-02-03 21:48:12 +00001619 SDNode *ResNode = CurDAG->getTargetNode(Opc, dl, NVT, TruncOp);
Christopher Lambc59e5212007-08-10 21:48:46 +00001620
1621#ifndef NDEBUG
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001622 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001623 DEBUG(TruncOp.getNode()->dump(CurDAG));
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001624 DOUT << "\n";
1625 DOUT << std::string(Indent-2, ' ') << "=> ";
1626 DEBUG(ResNode->dump(CurDAG));
1627 DOUT << "\n";
1628 Indent -= 2;
Christopher Lambc59e5212007-08-10 21:48:46 +00001629#endif
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001630 return ResNode;
1631 }
Christopher Lambc59e5212007-08-10 21:48:46 +00001632 break;
1633 }
1634
1635 case ISD::TRUNCATE: {
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001636 if (NVT == MVT::i8 && !Subtarget->is64Bit()) {
1637 SDValue Input = Node->getOperand(0);
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001638 SDNode *ResNode = getTruncateTo8Bit(Input);
Christopher Lambc59e5212007-08-10 21:48:46 +00001639
Evan Cheng403be7e2006-05-08 08:01:26 +00001640#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +00001641 DOUT << std::string(Indent-2, ' ') << "=> ";
Evan Cheng9ade2182006-08-26 05:34:46 +00001642 DEBUG(ResNode->dump(CurDAG));
Bill Wendling6345d752006-11-17 07:52:03 +00001643 DOUT << "\n";
Evan Cheng403be7e2006-05-08 08:01:26 +00001644 Indent -= 2;
1645#endif
Dan Gohman0bfa1bf2008-08-20 21:27:32 +00001646 return ResNode;
1647 }
Evan Cheng6b2e2542006-05-20 07:44:28 +00001648 break;
Evan Cheng403be7e2006-05-08 08:01:26 +00001649 }
Evan Cheng851bc042008-06-17 02:01:22 +00001650
1651 case ISD::DECLARE: {
1652 // Handle DECLARE nodes here because the second operand may have been
1653 // wrapped in X86ISD::Wrapper.
Dan Gohman475871a2008-07-27 21:46:04 +00001654 SDValue Chain = Node->getOperand(0);
1655 SDValue N1 = Node->getOperand(1);
1656 SDValue N2 = Node->getOperand(2);
Evan Cheng6bb14ca2008-12-10 21:49:05 +00001657 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N1);
Chris Lattner1823c922009-02-12 17:33:11 +00001658
1659 // FIXME: We need to handle this for VLAs.
1660 if (!FINode) {
1661 ReplaceUses(N.getValue(0), Chain);
1662 return NULL;
1663 }
1664
Evan Chengfab83872008-06-18 02:48:27 +00001665 if (N2.getOpcode() == ISD::ADD &&
1666 N2.getOperand(0).getOpcode() == X86ISD::GlobalBaseReg)
1667 N2 = N2.getOperand(1);
Chris Lattner1823c922009-02-12 17:33:11 +00001668
1669 // If N2 is not Wrapper(decriptor) then the llvm.declare is mangled
1670 // somehow, just ignore it.
1671 if (N2.getOpcode() != X86ISD::Wrapper) {
1672 ReplaceUses(N.getValue(0), Chain);
1673 return NULL;
1674 }
Evan Chengf2accb52009-01-10 03:33:22 +00001675 GlobalAddressSDNode *GVNode =
1676 dyn_cast<GlobalAddressSDNode>(N2.getOperand(0));
Chris Lattner1823c922009-02-12 17:33:11 +00001677 if (GVNode == 0) {
1678 ReplaceUses(N.getValue(0), Chain);
1679 return NULL;
1680 }
Evan Cheng6bb14ca2008-12-10 21:49:05 +00001681 SDValue Tmp1 = CurDAG->getTargetFrameIndex(FINode->getIndex(),
1682 TLI.getPointerTy());
1683 SDValue Tmp2 = CurDAG->getTargetGlobalAddress(GVNode->getGlobal(),
1684 TLI.getPointerTy());
1685 SDValue Ops[] = { Tmp1, Tmp2, Chain };
Dale Johannesend8392542009-02-03 21:48:12 +00001686 return CurDAG->getTargetNode(TargetInstrInfo::DECLARE, dl,
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001687 MVT::Other, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001688 array_lengthof(Ops));
Evan Cheng851bc042008-06-17 02:01:22 +00001689 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00001690 }
1691
Evan Cheng9ade2182006-08-26 05:34:46 +00001692 SDNode *ResNode = SelectCode(N);
Evan Cheng64a752f2006-08-11 09:08:15 +00001693
Evan Chengf597dc72006-02-10 22:24:32 +00001694#ifndef NDEBUG
Bill Wendling6345d752006-11-17 07:52:03 +00001695 DOUT << std::string(Indent-2, ' ') << "=> ";
Gabor Greifba36cb52008-08-28 21:40:38 +00001696 if (ResNode == NULL || ResNode == N.getNode())
1697 DEBUG(N.getNode()->dump(CurDAG));
Evan Cheng9ade2182006-08-26 05:34:46 +00001698 else
1699 DEBUG(ResNode->dump(CurDAG));
Bill Wendling6345d752006-11-17 07:52:03 +00001700 DOUT << "\n";
Evan Cheng23addc02006-02-10 22:46:26 +00001701 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001702#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001703
1704 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00001705}
1706
Chris Lattnerc0bad572006-06-08 18:03:49 +00001707bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00001708SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00001709 std::vector<SDValue> &OutOps) {
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001710 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00001711 switch (ConstraintCode) {
1712 case 'o': // offsetable ??
1713 case 'v': // not offsetable ??
1714 default: return true;
1715 case 'm': // memory
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001716 if (!SelectAddr(Op, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00001717 return true;
1718 break;
1719 }
1720
Evan Cheng04699902006-08-26 01:05:16 +00001721 OutOps.push_back(Op0);
1722 OutOps.push_back(Op1);
1723 OutOps.push_back(Op2);
1724 OutOps.push_back(Op3);
Rafael Espindola2a6411b2009-04-07 21:37:46 +00001725 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00001726 return false;
1727}
1728
Chris Lattnerc961eea2005-11-16 01:54:32 +00001729/// createX86ISelDag - This pass converts a legalized DAG into a
1730/// X86-specific DAG, ready for instruction scheduling.
1731///
Evan Chenge50794a2006-08-29 18:28:33 +00001732FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM, bool Fast) {
1733 return new X86DAGToDAGISel(TM, Fast);
Chris Lattnerc961eea2005-11-16 01:54:32 +00001734}