blob: 59625c61ea5e8991dc8c0b65712e8100b5d36931 [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 Lattner92cb0af2006-01-11 01:15:34 +000023#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000024#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000025#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000026#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000027#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000028#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000030#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000032#include "llvm/CodeGen/SelectionDAGISel.h"
33#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000034#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000035#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000036#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000037#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000039#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000040#include "llvm/ADT/Statistic.h"
41using namespace llvm;
42
Chris Lattner95b2c7d2006-12-19 22:59:26 +000043STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
44
Chris Lattnerc961eea2005-11-16 01:54:32 +000045//===----------------------------------------------------------------------===//
46// Pattern Matcher Implementation
47//===----------------------------------------------------------------------===//
48
49namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000050 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000051 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000052 /// tree.
53 struct X86ISelAddressMode {
54 enum {
55 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000056 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000057 } BaseType;
58
59 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000060 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000061 int FrameIndex;
62 } Base;
63
64 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000065 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000066 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000067 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000068 const GlobalValue *GV;
69 const Constant *CP;
70 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000071 const char *ES;
72 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000073 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000074 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000075
76 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000077 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000078 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000079 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000080 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000081
82 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000083 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000084 }
Chris Lattner18c59872009-06-27 04:16:01 +000085
86 bool hasBaseOrIndexReg() const {
87 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
88 }
89
90 /// isRIPRelative - Return true if this addressing mode is already RIP
91 /// relative.
92 bool isRIPRelative() const {
93 if (BaseType != RegBase) return false;
94 if (RegisterSDNode *RegNode =
95 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
96 return RegNode->getReg() == X86::RIP;
97 return false;
98 }
99
100 void setBaseReg(SDValue Reg) {
101 BaseType = RegBase;
102 Base.Reg = Reg;
103 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000104
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000105 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000106 dbgs() << "X86ISelAddressMode " << this << '\n';
107 dbgs() << "Base.Reg ";
Bill Wendling12321672009-08-07 21:33:25 +0000108 if (Base.Reg.getNode() != 0)
109 Base.Reg.getNode()->dump();
110 else
David Greened7f4f242010-01-05 01:29:08 +0000111 dbgs() << "nul";
112 dbgs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000113 << " Scale" << Scale << '\n'
114 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000115 if (IndexReg.getNode() != 0)
116 IndexReg.getNode()->dump();
117 else
David Greened7f4f242010-01-05 01:29:08 +0000118 dbgs() << "nul";
119 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000120 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000121 if (GV)
122 GV->dump();
123 else
David Greened7f4f242010-01-05 01:29:08 +0000124 dbgs() << "nul";
125 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000126 if (CP)
127 CP->dump();
128 else
David Greened7f4f242010-01-05 01:29:08 +0000129 dbgs() << "nul";
130 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000131 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000132 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000133 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000134 else
David Greened7f4f242010-01-05 01:29:08 +0000135 dbgs() << "nul";
136 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000137 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000138 };
139}
140
141namespace {
Evan Chengf3caa522010-03-17 23:58:35 +0000142 class X86ISelListener : public SelectionDAG::DAGUpdateListener {
143 SmallSet<SDNode*, 4> Deletes;
144 public:
145 explicit X86ISelListener() {}
146 virtual void NodeDeleted(SDNode *N, SDNode *E) {
147 Deletes.insert(N);
148 }
149 virtual void NodeUpdated(SDNode *N) {
150 // Ignore updates.
151 }
152 bool IsDeleted(SDNode *N) {
153 return Deletes.count(N);
154 }
155 };
156
Chris Lattnerc961eea2005-11-16 01:54:32 +0000157 //===--------------------------------------------------------------------===//
158 /// ISel - X86 specific code to select X86 machine instructions for
159 /// SelectionDAG operations.
160 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000161 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000162 /// X86Lowering - This object fully describes how to lower LLVM code to an
163 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000164 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000165
166 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
167 /// make the right decision when generating code for different targets.
168 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000169
Evan Chengb7a75a52008-09-26 23:41:32 +0000170 /// OptForSize - If true, selector should try to optimize for code size
171 /// instead of performance.
172 bool OptForSize;
173
Chris Lattnerc961eea2005-11-16 01:54:32 +0000174 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000175 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000176 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000177 X86Lowering(*tm.getTargetLowering()),
178 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000179 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000180
181 virtual const char *getPassName() const {
182 return "X86 DAG->DAG Instruction Selection";
183 }
184
Dan Gohman64652652010-04-14 20:17:22 +0000185 virtual void EmitFunctionEntryCode();
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000186
Evan Cheng014bf212010-02-15 19:41:07 +0000187 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
188
Chris Lattner7c306da2010-03-02 06:34:30 +0000189 virtual void PreprocessISelDAG();
190
Chris Lattnerc961eea2005-11-16 01:54:32 +0000191// Include the pieces autogenerated from the target description.
192#include "X86GenDAGISel.inc"
193
194 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000195 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000196 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000197 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000198
Rafael Espindola094fad32009-04-08 21:14:34 +0000199 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
200 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000201 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000202 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
203 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
Evan Chengf3caa522010-03-17 23:58:35 +0000204 X86ISelListener &DeadNodes,
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000205 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000206 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000207 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000208 SDValue &Scale, SDValue &Index, SDValue &Disp,
209 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000210 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000211 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000212 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000213 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000214 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000215 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000217 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000218 SDValue &NodeWithChain);
219
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000220 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000221 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000222 SDValue &Index, SDValue &Disp,
223 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000224
Chris Lattnerc0bad572006-06-08 18:03:49 +0000225 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
226 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000227 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000228 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000229 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000230
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000231 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
232
Dan Gohman475871a2008-07-27 21:46:04 +0000233 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
234 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000235 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000236 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000237 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
238 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000239 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000240 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000241 // These are 32-bit even in 64-bit mode since RIP relative offset
242 // is 32-bit.
243 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000244 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000245 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000246 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000248 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000251 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000252 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000253 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000254 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
255 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000256 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000257 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000258
259 if (AM.Segment.getNode())
260 Segment = AM.Segment;
261 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000262 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000263 }
264
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000265 /// getI8Imm - Return a target constant with the specified value, of type
266 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000267 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000268 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000269 }
270
Chris Lattnerc961eea2005-11-16 01:54:32 +0000271 /// getI16Imm - Return a target constant with the specified value, of type
272 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000273 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000274 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000275 }
276
277 /// getI32Imm - Return a target constant with the specified value, of type
278 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000279 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000280 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000281 }
Evan Chengf597dc72006-02-10 22:24:32 +0000282
Dan Gohman8b746962008-09-23 18:22:58 +0000283 /// getGlobalBaseReg - Return an SDNode that returns the value of
284 /// the global base register. Output instructions required to
285 /// initialize the global base register, if necessary.
286 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000287 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000288
Dan Gohmanc5534622009-06-03 20:20:00 +0000289 /// getTargetMachine - Return a reference to the TargetMachine, casted
290 /// to the target-specific type.
291 const X86TargetMachine &getTargetMachine() {
292 return static_cast<const X86TargetMachine &>(TM);
293 }
294
295 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
296 /// to the target-specific type.
297 const X86InstrInfo *getInstrInfo() {
298 return getTargetMachine().getInstrInfo();
299 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000300 };
301}
302
Evan Chengf4b4c412006-08-08 00:31:00 +0000303
Evan Cheng014bf212010-02-15 19:41:07 +0000304bool
305X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000306 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000307
Evan Cheng014bf212010-02-15 19:41:07 +0000308 if (!N.hasOneUse())
309 return false;
310
311 if (N.getOpcode() != ISD::LOAD)
312 return true;
313
314 // If N is a load, do additional profitability checks.
315 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000316 switch (U->getOpcode()) {
317 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000318 case X86ISD::ADD:
319 case X86ISD::SUB:
320 case X86ISD::AND:
321 case X86ISD::XOR:
322 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000323 case ISD::ADD:
324 case ISD::ADDC:
325 case ISD::ADDE:
326 case ISD::AND:
327 case ISD::OR:
328 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000329 SDValue Op1 = U->getOperand(1);
330
Evan Cheng884c70c2008-11-27 00:49:46 +0000331 // If the other operand is a 8-bit immediate we should fold the immediate
332 // instead. This reduces code size.
333 // e.g.
334 // movl 4(%esp), %eax
335 // addl $4, %eax
336 // vs.
337 // movl $4, %eax
338 // addl 4(%esp), %eax
339 // The former is 2 bytes shorter. In case where the increment is 1, then
340 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000341 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000342 if (Imm->getAPIntValue().isSignedIntN(8))
343 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000344
345 // If the other operand is a TLS address, we should fold it instead.
346 // This produces
347 // movl %gs:0, %eax
348 // leal i@NTPOFF(%eax), %eax
349 // instead of
350 // movl $i@NTPOFF, %eax
351 // addl %gs:0, %eax
352 // if the block also has an access to a second TLS address this will save
353 // a load.
354 // FIXME: This is probably also true for non TLS addresses.
355 if (Op1.getOpcode() == X86ISD::Wrapper) {
356 SDValue Val = Op1.getOperand(0);
357 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
358 return false;
359 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000360 }
361 }
Evan Cheng014bf212010-02-15 19:41:07 +0000362 }
363
364 return true;
365}
366
Evan Chengf48ef032010-03-14 03:48:46 +0000367/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
368/// load's chain operand and move load below the call's chain operand.
369static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
370 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000371 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000372 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000373 if (Chain.getNode() == Load.getNode())
374 Ops.push_back(Load.getOperand(0));
375 else {
376 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000377 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000378 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
379 if (Chain.getOperand(i).getNode() == Load.getNode())
380 Ops.push_back(Load.getOperand(0));
381 else
382 Ops.push_back(Chain.getOperand(i));
383 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000384 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000385 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000386 Ops.clear();
387 Ops.push_back(NewChain);
388 }
Evan Chengf48ef032010-03-14 03:48:46 +0000389 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
390 Ops.push_back(OrigChain.getOperand(i));
391 CurDAG->UpdateNodeOperands(OrigChain, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000392 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
393 Load.getOperand(1), Load.getOperand(2));
394 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000395 Ops.push_back(SDValue(Load.getNode(), 1));
396 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000397 Ops.push_back(Call.getOperand(i));
398 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
399}
400
401/// isCalleeLoad - Return true if call address is a load and it can be
402/// moved below CALLSEQ_START and the chains leading up to the call.
403/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000404/// In the case of a tail call, there isn't a callseq node between the call
405/// chain and the load.
406static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000407 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000408 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000409 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000410 if (!LD ||
411 LD->isVolatile() ||
412 LD->getAddressingMode() != ISD::UNINDEXED ||
413 LD->getExtensionType() != ISD::NON_EXTLOAD)
414 return false;
415
416 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000417 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000418 if (!Chain.hasOneUse())
419 return false;
420 Chain = Chain.getOperand(0);
421 }
Evan Chengf48ef032010-03-14 03:48:46 +0000422
423 if (!Chain.getNumOperands())
424 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000425 if (Chain.getOperand(0).getNode() == Callee.getNode())
426 return true;
427 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000428 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
429 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000430 return true;
431 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000432}
433
Chris Lattnerfb444af2010-03-02 23:12:51 +0000434void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000435 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000436 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
437
Dan Gohmanf350b272008-08-23 02:25:05 +0000438 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
439 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000440 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000441
Evan Chengf48ef032010-03-14 03:48:46 +0000442 if (OptLevel != CodeGenOpt::None &&
443 (N->getOpcode() == X86ISD::CALL ||
444 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000445 /// Also try moving call address load from outside callseq_start to just
446 /// before the call to allow it to be folded.
447 ///
448 /// [Load chain]
449 /// ^
450 /// |
451 /// [Load]
452 /// ^ ^
453 /// | |
454 /// / \--
455 /// / |
456 ///[CALLSEQ_START] |
457 /// ^ |
458 /// | |
459 /// [LOAD/C2Reg] |
460 /// | |
461 /// \ /
462 /// \ /
463 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000464 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000465 SDValue Chain = N->getOperand(0);
466 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000467 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000468 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000469 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000470 ++NumLoadMoved;
471 continue;
472 }
473
474 // Lower fpround and fpextend nodes that target the FP stack to be store and
475 // load to the stack. This is a gross hack. We would like to simply mark
476 // these as being illegal, but when we do that, legalize produces these when
477 // it expands calls, then expands these in the same legalize pass. We would
478 // like dag combine to be able to hack on these between the call expansion
479 // and the node legalization. As such this pass basically does "really
480 // late" legalization of these inline with the X86 isel pass.
481 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000482 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
483 continue;
484
485 // If the source and destination are SSE registers, then this is a legal
486 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000487 EVT SrcVT = N->getOperand(0).getValueType();
488 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000489 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
490 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
491 if (SrcIsSSE && DstIsSSE)
492 continue;
493
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000494 if (!SrcIsSSE && !DstIsSSE) {
495 // If this is an FPStack extension, it is a noop.
496 if (N->getOpcode() == ISD::FP_EXTEND)
497 continue;
498 // If this is a value-preserving FPStack truncation, it is a noop.
499 if (N->getConstantOperandVal(1))
500 continue;
501 }
502
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000503 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
504 // FPStack has extload and truncstore. SSE can fold direct loads into other
505 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000506 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000507 if (N->getOpcode() == ISD::FP_ROUND)
508 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
509 else
510 MemVT = SrcIsSSE ? SrcVT : DstVT;
511
Dan Gohmanf350b272008-08-23 02:25:05 +0000512 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000513 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000514
515 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000516 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000517 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000518 MemTmp, NULL, 0, MemVT,
519 false, false, 0);
Dale Johannesend8392542009-02-03 21:48:12 +0000520 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000521 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000522
523 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
524 // extload we created. This will cause general havok on the dag because
525 // anything below the conversion could be folded into other existing nodes.
526 // To avoid invalidating 'I', back it up to the convert node.
527 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000528 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000529
530 // Now that we did that, the node is dead. Increment the iterator to the
531 // next node to process, then delete N.
532 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000533 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000534 }
535}
536
Chris Lattnerc961eea2005-11-16 01:54:32 +0000537
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000538/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
539/// the main function.
540void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
541 MachineFrameInfo *MFI) {
542 const TargetInstrInfo *TII = TM.getInstrInfo();
543 if (Subtarget->isTargetCygMing())
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000544 BuildMI(BB, DebugLoc(),
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000545 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000546}
547
Dan Gohman64652652010-04-14 20:17:22 +0000548void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000549 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000550 if (const Function *Fn = MF->getFunction())
551 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
552 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000553}
554
Rafael Espindola094fad32009-04-08 21:14:34 +0000555
556bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
557 X86ISelAddressMode &AM) {
558 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
559 SDValue Segment = N.getOperand(0);
560
561 if (AM.Segment.getNode() == 0) {
562 AM.Segment = Segment;
563 return false;
564 }
565
566 return true;
567}
568
569bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
570 // This optimization is valid because the GNU TLS model defines that
571 // gs:0 (or fs:0 on X86-64) contains its own address.
572 // For more information see http://people.redhat.com/drepper/tls.pdf
573
574 SDValue Address = N.getOperand(1);
575 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
576 !MatchSegmentBaseAddress (Address, AM))
577 return false;
578
579 return true;
580}
581
Chris Lattner18c59872009-06-27 04:16:01 +0000582/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
583/// into an addressing mode. These wrap things that will resolve down into a
584/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000585/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000586bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000587 // If the addressing mode already has a symbol as the displacement, we can
588 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000589 if (AM.hasSymbolicDisplacement())
590 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000591
592 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000593 CodeModel::Model M = TM.getCodeModel();
594
Chris Lattner18c59872009-06-27 04:16:01 +0000595 // Handle X86-64 rip-relative addresses. We check this before checking direct
596 // folding because RIP is preferable to non-RIP accesses.
597 if (Subtarget->is64Bit() &&
598 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
599 // they cannot be folded into immediate fields.
600 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000601 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000602 // Base and index reg must be 0 in order to use %rip as base and lowering
603 // must allow RIP.
604 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000605 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
606 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000607 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000608 AM.GV = G->getGlobal();
609 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000610 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000611 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
612 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000613 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000614 AM.CP = CP->getConstVal();
615 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000616 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000617 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000618 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
619 AM.ES = S->getSymbol();
620 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000621 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000622 AM.JT = J->getIndex();
623 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000624 } else {
625 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000626 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000627 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000628
Chris Lattner18c59872009-06-27 04:16:01 +0000629 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000630 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000631 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000632 }
633
634 // Handle the case when globals fit in our immediate field: This is true for
635 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
636 // mode, this results in a non-RIP-relative computation.
637 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000638 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000639 TM.getRelocationModel() == Reloc::Static)) {
640 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
641 AM.GV = G->getGlobal();
642 AM.Disp += G->getOffset();
643 AM.SymbolFlags = G->getTargetFlags();
644 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
645 AM.CP = CP->getConstVal();
646 AM.Align = CP->getAlignment();
647 AM.Disp += CP->getOffset();
648 AM.SymbolFlags = CP->getTargetFlags();
649 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
650 AM.ES = S->getSymbol();
651 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000652 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000653 AM.JT = J->getIndex();
654 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000655 } else {
656 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000657 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000658 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000659 return false;
660 }
661
662 return true;
663}
664
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000665/// MatchAddress - Add the specified node to the specified addressing mode,
666/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000667/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000668bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Evan Chengf3caa522010-03-17 23:58:35 +0000669 X86ISelListener DeadNodes;
670 if (MatchAddressRecursively(N, AM, DeadNodes, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000671 return true;
672
673 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
674 // a smaller encoding and avoids a scaled-index.
675 if (AM.Scale == 2 &&
676 AM.BaseType == X86ISelAddressMode::RegBase &&
677 AM.Base.Reg.getNode() == 0) {
678 AM.Base.Reg = AM.IndexReg;
679 AM.Scale = 1;
680 }
681
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000682 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
683 // because it has a smaller encoding.
684 // TODO: Which other code models can use this?
685 if (TM.getCodeModel() == CodeModel::Small &&
686 Subtarget->is64Bit() &&
687 AM.Scale == 1 &&
688 AM.BaseType == X86ISelAddressMode::RegBase &&
689 AM.Base.Reg.getNode() == 0 &&
690 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000691 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000692 AM.hasSymbolicDisplacement())
693 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
694
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000695 return false;
696}
697
698bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
Evan Chengf3caa522010-03-17 23:58:35 +0000699 X86ISelListener &DeadNodes,
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000700 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000701 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000702 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000703 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000704 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000705 AM.dump();
706 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000707 // Limit recursion.
708 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000709 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000710
711 CodeModel::Model M = TM.getCodeModel();
712
Chris Lattner18c59872009-06-27 04:16:01 +0000713 // If this is already a %rip relative address, we can only merge immediates
714 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000715 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000716 if (AM.isRIPRelative()) {
717 // FIXME: JumpTable and ExternalSymbol address currently don't like
718 // displacements. It isn't very important, but this should be fixed for
719 // consistency.
720 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000721
Chris Lattner18c59872009-06-27 04:16:01 +0000722 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
723 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000724 if (X86::isOffsetSuitableForCodeModel(Val, M,
725 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000726 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000727 return false;
728 }
729 }
730 return true;
731 }
732
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000733 switch (N.getOpcode()) {
734 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000735 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000736 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000737 if (!is64Bit ||
738 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
739 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000740 AM.Disp += Val;
741 return false;
742 }
743 break;
744 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000745
Rafael Espindola094fad32009-04-08 21:14:34 +0000746 case X86ISD::SegmentBaseAddress:
747 if (!MatchSegmentBaseAddress(N, AM))
748 return false;
749 break;
750
Rafael Espindola49a168d2009-04-12 21:55:03 +0000751 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000752 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000753 if (!MatchWrapper(N, AM))
754 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000755 break;
756
Rafael Espindola094fad32009-04-08 21:14:34 +0000757 case ISD::LOAD:
758 if (!MatchLoad(N, AM))
759 return false;
760 break;
761
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000762 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000763 if (AM.BaseType == X86ISelAddressMode::RegBase
764 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000765 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
766 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
767 return false;
768 }
769 break;
Evan Chengec693f72005-12-08 02:01:35 +0000770
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000771 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000772 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000773 break;
774
Gabor Greif93c53e52008-08-31 15:37:04 +0000775 if (ConstantSDNode
776 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000777 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000778 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
779 // that the base operand remains free for further matching. If
780 // the base doesn't end up getting used, a post-processing step
781 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000782 if (Val == 1 || Val == 2 || Val == 3) {
783 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000784 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000785
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000786 // Okay, we know that we have a scale by now. However, if the scaled
787 // value is an add of something and a constant, we can fold the
788 // constant into the disp field here.
Dan Gohmana10756e2010-01-21 02:09:26 +0000789 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000790 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
791 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000792 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000793 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000794 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000795 if (!is64Bit ||
796 X86::isOffsetSuitableForCodeModel(Disp, M,
797 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000798 AM.Disp = Disp;
799 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000800 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000801 } else {
802 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000803 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000804 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000805 }
806 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000807 }
Evan Chengec693f72005-12-08 02:01:35 +0000808
Dan Gohman83688052007-10-22 20:22:24 +0000809 case ISD::SMUL_LOHI:
810 case ISD::UMUL_LOHI:
811 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000812 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000813 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000814 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000815 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000816 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000817 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000818 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000819 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000820 if (ConstantSDNode
821 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000822 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
823 CN->getZExtValue() == 9) {
824 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000825
Gabor Greifba36cb52008-08-28 21:40:38 +0000826 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000827 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000828
829 // Okay, we know that we have a scale by now. However, if the scaled
830 // value is an add of something and a constant, we can fold the
831 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000832 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
833 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
834 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000835 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000836 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000837 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000838 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000839 if (!is64Bit ||
840 X86::isOffsetSuitableForCodeModel(Disp, M,
841 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000842 AM.Disp = Disp;
843 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000844 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000845 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000846 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000847 }
848
849 AM.IndexReg = AM.Base.Reg = Reg;
850 return false;
851 }
Chris Lattner62412262007-02-04 20:18:17 +0000852 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000853 break;
854
Dan Gohman3cd90a12009-05-11 18:02:53 +0000855 case ISD::SUB: {
856 // Given A-B, if A can be completely folded into the address and
857 // the index field with the index field unused, use -B as the index.
858 // This is a win if a has multiple parts that can be folded into
859 // the address. Also, this saves a mov if the base register has
860 // other uses, since it avoids a two-address sub instruction, however
861 // it costs an additional mov if the index register has other uses.
862
863 // Test if the LHS of the sub can be folded.
864 X86ISelAddressMode Backup = AM;
Evan Chengf3caa522010-03-17 23:58:35 +0000865 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM,
866 DeadNodes, Depth+1) ||
867 // If it is successful but the recursive update causes N to be deleted,
868 // then it's not safe to continue.
869 DeadNodes.IsDeleted(N.getNode())) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000870 AM = Backup;
871 break;
872 }
873 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000874 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000875 AM = Backup;
876 break;
877 }
Evan Chengf3caa522010-03-17 23:58:35 +0000878
Dan Gohman3cd90a12009-05-11 18:02:53 +0000879 int Cost = 0;
880 SDValue RHS = N.getNode()->getOperand(1);
881 // If the RHS involves a register with multiple uses, this
882 // transformation incurs an extra mov, due to the neg instruction
883 // clobbering its operand.
884 if (!RHS.getNode()->hasOneUse() ||
885 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
886 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
887 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
888 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000889 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000890 ++Cost;
891 // If the base is a register with multiple uses, this
892 // transformation may save a mov.
893 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
894 AM.Base.Reg.getNode() &&
895 !AM.Base.Reg.getNode()->hasOneUse()) ||
896 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
897 --Cost;
898 // If the folded LHS was interesting, this transformation saves
899 // address arithmetic.
900 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
901 ((AM.Disp != 0) && (Backup.Disp == 0)) +
902 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
903 --Cost;
904 // If it doesn't look like it may be an overall win, don't do it.
905 if (Cost >= 0) {
906 AM = Backup;
907 break;
908 }
909
910 // Ok, the transformation is legal and appears profitable. Go for it.
911 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
912 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
913 AM.IndexReg = Neg;
914 AM.Scale = 1;
915
916 // Insert the new nodes into the topological ordering.
917 if (Zero.getNode()->getNodeId() == -1 ||
918 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
919 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
920 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
921 }
922 if (Neg.getNode()->getNodeId() == -1 ||
923 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
924 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
925 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
926 }
927 return false;
928 }
929
Evan Cheng8e278262009-01-17 07:09:27 +0000930 case ISD::ADD: {
931 X86ISelAddressMode Backup = AM;
Evan Chengf3caa522010-03-17 23:58:35 +0000932 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM,
933 DeadNodes, Depth+1)) {
934 if (DeadNodes.IsDeleted(N.getNode()))
935 // If it is successful but the recursive update causes N to be deleted,
936 // then it's not safe to continue.
937 return true;
938 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM,
939 DeadNodes, Depth+1))
940 // If it is successful but the recursive update causes N to be deleted,
941 // then it's not safe to continue.
942 return DeadNodes.IsDeleted(N.getNode());
943 }
944
945 // Try again after commuting the operands.
Evan Cheng8e278262009-01-17 07:09:27 +0000946 AM = Backup;
Evan Chengf3caa522010-03-17 23:58:35 +0000947 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM,
948 DeadNodes, Depth+1)) {
949 if (DeadNodes.IsDeleted(N.getNode()))
950 // If it is successful but the recursive update causes N to be deleted,
951 // then it's not safe to continue.
952 return true;
953 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM,
954 DeadNodes, Depth+1))
955 // If it is successful but the recursive update causes N to be deleted,
956 // then it's not safe to continue.
957 return DeadNodes.IsDeleted(N.getNode());
958 }
Evan Cheng8e278262009-01-17 07:09:27 +0000959 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +0000960
961 // If we couldn't fold both operands into the address at the same time,
962 // see if we can just put each operand into a register and fold at least
963 // the add.
964 if (AM.BaseType == X86ISelAddressMode::RegBase &&
965 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000966 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +0000967 AM.Base.Reg = N.getNode()->getOperand(0);
968 AM.IndexReg = N.getNode()->getOperand(1);
969 AM.Scale = 1;
970 return false;
971 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000972 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000973 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000974
Chris Lattner62412262007-02-04 20:18:17 +0000975 case ISD::OR:
976 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000977 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
978 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +0000979 uint64_t Offset = CN->getSExtValue();
Evan Chengf3caa522010-03-17 23:58:35 +0000980
981 // Check to see if the LHS & C is zero.
982 if (!CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue()))
983 break;
984
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000985 // Start with the LHS as an addr mode.
Evan Chengf3caa522010-03-17 23:58:35 +0000986 if (!MatchAddressRecursively(N.getOperand(0), AM, DeadNodes, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000987 // Address could not have picked a GV address for the displacement.
988 AM.GV == NULL &&
989 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000990 (!is64Bit ||
991 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
Evan Chengf3caa522010-03-17 23:58:35 +0000992 AM.hasSymbolicDisplacement()))) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000993 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000994 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000995 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000996 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000997 }
998 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000999
1000 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001001 // Perform some heroic transforms on an and of a constant-count shift
1002 // with a constant to enable use of the scaled offset field.
1003
Dan Gohman475871a2008-07-27 21:46:04 +00001004 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001005 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001006
Evan Cheng1314b002007-12-13 00:43:27 +00001007 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001008 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001009
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001010 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001011 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1012 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1013 if (!C1 || !C2) break;
1014
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001015 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1016 // allows us to convert the shift and and into an h-register extract and
1017 // a scaled index.
1018 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1019 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001020 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001021 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001022 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001023 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1024 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1025 X, Eight);
1026 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1027 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001028 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001029 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1030 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001031
1032 // Insert the new nodes into the topological ordering.
1033 if (Eight.getNode()->getNodeId() == -1 ||
1034 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1035 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1036 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1037 }
1038 if (Mask.getNode()->getNodeId() == -1 ||
1039 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1040 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1041 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1042 }
1043 if (Srl.getNode()->getNodeId() == -1 ||
1044 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1045 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1046 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1047 }
1048 if (And.getNode()->getNodeId() == -1 ||
1049 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1050 CurDAG->RepositionNode(N.getNode(), And.getNode());
1051 And.getNode()->setNodeId(N.getNode()->getNodeId());
1052 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001053 if (ShlCount.getNode()->getNodeId() == -1 ||
1054 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1055 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1056 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1057 }
1058 if (Shl.getNode()->getNodeId() == -1 ||
1059 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1060 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1061 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1062 }
Evan Chengf3caa522010-03-17 23:58:35 +00001063 CurDAG->ReplaceAllUsesWith(N, Shl, &DeadNodes);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001064 AM.IndexReg = And;
1065 AM.Scale = (1 << ScaleLog);
1066 return false;
1067 }
1068 }
1069
1070 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1071 // allows us to fold the shift into this addressing mode.
1072 if (Shift.getOpcode() != ISD::SHL) break;
1073
Evan Cheng1314b002007-12-13 00:43:27 +00001074 // Not likely to be profitable if either the AND or SHIFT node has more
1075 // than one use (unless all uses are for address computation). Besides,
1076 // isel mechanism requires their node ids to be reused.
1077 if (!N.hasOneUse() || !Shift.hasOneUse())
1078 break;
1079
1080 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001081 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001082 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1083 break;
1084
1085 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001086 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001087 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001088 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1089 NewANDMask);
1090 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001091 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001092
1093 // Insert the new nodes into the topological ordering.
1094 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1095 CurDAG->RepositionNode(X.getNode(), C1);
1096 C1->setNodeId(X.getNode()->getNodeId());
1097 }
1098 if (NewANDMask.getNode()->getNodeId() == -1 ||
1099 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1100 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1101 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1102 }
1103 if (NewAND.getNode()->getNodeId() == -1 ||
1104 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1105 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1106 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1107 }
1108 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1109 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1110 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1111 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1112 }
1113
Evan Chengf3caa522010-03-17 23:58:35 +00001114 CurDAG->ReplaceAllUsesWith(N, NewSHIFT, &DeadNodes);
Evan Cheng1314b002007-12-13 00:43:27 +00001115
1116 AM.Scale = 1 << ShiftCst;
1117 AM.IndexReg = NewAND;
1118 return false;
1119 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001120 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001121
Rafael Espindola523249f2009-03-31 16:16:57 +00001122 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001123}
1124
1125/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1126/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001127bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001128 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001129 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001130 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001131 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001132 AM.IndexReg = N;
1133 AM.Scale = 1;
1134 return false;
1135 }
1136
1137 // Otherwise, we cannot select it.
1138 return true;
1139 }
1140
1141 // Default, generate it as a register.
1142 AM.BaseType = X86ISelAddressMode::RegBase;
1143 AM.Base.Reg = N;
1144 return false;
1145}
1146
Evan Chengec693f72005-12-08 02:01:35 +00001147/// SelectAddr - returns true if it is able pattern match an addressing mode.
1148/// It returns the operands which make up the maximal addressing mode it can
1149/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001150bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001151 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001152 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001153 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001154 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001155 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001156
Owen Andersone50ed302009-08-10 22:56:29 +00001157 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001158 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001159 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001160 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001161 }
Evan Cheng8700e142006-01-11 06:09:51 +00001162
Gabor Greifba36cb52008-08-28 21:40:38 +00001163 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001164 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001165
Rafael Espindola094fad32009-04-08 21:14:34 +00001166 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001167 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001168}
1169
Chris Lattner3a7cd952006-10-07 21:55:32 +00001170/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1171/// match a load whose top elements are either undef or zeros. The load flavor
1172/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001173///
1174/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001175/// PatternChainNode: this is the matched node that has a chain input and
1176/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001177bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001178 SDValue N, SDValue &Base,
1179 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001180 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001181 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001182 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001183 PatternNodeWithChain = N.getOperand(0);
1184 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1185 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001186 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1187 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001188 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001189 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001190 return false;
1191 return true;
1192 }
1193 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001194
1195 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001196 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001197 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001198 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001199 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001200 N.getOperand(0).getNode()->hasOneUse() &&
1201 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001202 N.getOperand(0).getOperand(0).hasOneUse() &&
1203 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1204 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001205 // Okay, this is a zero extending load. Fold it.
1206 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001207 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001208 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001209 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001210 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001211 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001212 return false;
1213}
1214
1215
Evan Cheng51a9ed92006-02-25 10:09:08 +00001216/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1217/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001218bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001219 SDValue &Base, SDValue &Scale,
1220 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001221 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001222
1223 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1224 // segments.
1225 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001226 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001227 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001228 if (MatchAddress(N, AM))
1229 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001230 assert (T == AM.Segment);
1231 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001232
Owen Andersone50ed302009-08-10 22:56:29 +00001233 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001234 unsigned Complexity = 0;
1235 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001236 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001237 Complexity = 1;
1238 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001239 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001240 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1241 Complexity = 4;
1242
Gabor Greifba36cb52008-08-28 21:40:38 +00001243 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001244 Complexity++;
1245 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001246 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001247
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001248 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1249 // a simple shift.
1250 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001251 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001252
1253 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1254 // to a LEA. This is determined with some expermentation but is by no means
1255 // optimal (especially for code size consideration). LEA is nice because of
1256 // its three-address nature. Tweak the cost function again when we can run
1257 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001258 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001259 // For X86-64, we should always use lea to materialize RIP relative
1260 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001261 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001262 Complexity = 4;
1263 else
1264 Complexity += 2;
1265 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001266
Gabor Greifba36cb52008-08-28 21:40:38 +00001267 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001268 Complexity++;
1269
Chris Lattner25142782009-07-11 22:50:33 +00001270 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001271 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001272 return false;
1273
1274 SDValue Segment;
1275 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1276 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001277}
1278
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001279/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001280bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001281 SDValue &Scale, SDValue &Index,
1282 SDValue &Disp) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001283 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1284 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1285
1286 X86ISelAddressMode AM;
1287 AM.GV = GA->getGlobal();
1288 AM.Disp += GA->getOffset();
1289 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001290 AM.SymbolFlags = GA->getTargetFlags();
1291
Owen Anderson825b72b2009-08-11 20:47:22 +00001292 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001293 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001294 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001295 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001296 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001297 }
1298
1299 SDValue Segment;
1300 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1301 return true;
1302}
1303
1304
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001305bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001306 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001307 SDValue &Index, SDValue &Disp,
1308 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001309 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1310 !IsProfitableToFold(N, P, P) ||
1311 !IsLegalToFold(N, P, P))
1312 return false;
1313
1314 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001315}
1316
Dan Gohman8b746962008-09-23 18:22:58 +00001317/// getGlobalBaseReg - Return an SDNode that returns the value of
1318/// the global base register. Output instructions required to
1319/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001320///
Evan Cheng9ade2182006-08-26 05:34:46 +00001321SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001322 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001323 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001324}
1325
Evan Chengb245d922006-05-20 01:36:52 +00001326static SDNode *FindCallStartFromCall(SDNode *Node) {
1327 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001328 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001329 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001330 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001331}
1332
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001333SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1334 SDValue Chain = Node->getOperand(0);
1335 SDValue In1 = Node->getOperand(1);
1336 SDValue In2L = Node->getOperand(2);
1337 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001338 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001339 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001340 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001341 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1342 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1343 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1344 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1345 MVT::i32, MVT::i32, MVT::Other, Ops,
1346 array_lengthof(Ops));
1347 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1348 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001349}
Christopher Lambc59e5212007-08-10 21:48:46 +00001350
Owen Andersone50ed302009-08-10 22:56:29 +00001351SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001352 if (Node->hasAnyUseOfValue(0))
1353 return 0;
1354
1355 // Optimize common patterns for __sync_add_and_fetch and
1356 // __sync_sub_and_fetch where the result is not used. This allows us
1357 // to use "lock" version of add, sub, inc, dec instructions.
1358 // FIXME: Do not use special instructions but instead add the "lock"
1359 // prefix to the target node somehow. The extra information will then be
1360 // transferred to machine instruction and it denotes the prefix.
1361 SDValue Chain = Node->getOperand(0);
1362 SDValue Ptr = Node->getOperand(1);
1363 SDValue Val = Node->getOperand(2);
1364 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001365 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001366 return 0;
1367
1368 bool isInc = false, isDec = false, isSub = false, isCN = false;
1369 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1370 if (CN) {
1371 isCN = true;
1372 int64_t CNVal = CN->getSExtValue();
1373 if (CNVal == 1)
1374 isInc = true;
1375 else if (CNVal == -1)
1376 isDec = true;
1377 else if (CNVal >= 0)
1378 Val = CurDAG->getTargetConstant(CNVal, NVT);
1379 else {
1380 isSub = true;
1381 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1382 }
1383 } else if (Val.hasOneUse() &&
1384 Val.getOpcode() == ISD::SUB &&
1385 X86::isZeroNode(Val.getOperand(0))) {
1386 isSub = true;
1387 Val = Val.getOperand(1);
1388 }
1389
1390 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001391 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001392 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001393 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001394 if (isInc)
1395 Opc = X86::LOCK_INC8m;
1396 else if (isDec)
1397 Opc = X86::LOCK_DEC8m;
1398 else if (isSub) {
1399 if (isCN)
1400 Opc = X86::LOCK_SUB8mi;
1401 else
1402 Opc = X86::LOCK_SUB8mr;
1403 } else {
1404 if (isCN)
1405 Opc = X86::LOCK_ADD8mi;
1406 else
1407 Opc = X86::LOCK_ADD8mr;
1408 }
1409 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001410 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001411 if (isInc)
1412 Opc = X86::LOCK_INC16m;
1413 else if (isDec)
1414 Opc = X86::LOCK_DEC16m;
1415 else if (isSub) {
1416 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001417 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001418 Opc = X86::LOCK_SUB16mi8;
1419 else
1420 Opc = X86::LOCK_SUB16mi;
1421 } else
1422 Opc = X86::LOCK_SUB16mr;
1423 } else {
1424 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001425 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001426 Opc = X86::LOCK_ADD16mi8;
1427 else
1428 Opc = X86::LOCK_ADD16mi;
1429 } else
1430 Opc = X86::LOCK_ADD16mr;
1431 }
1432 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001433 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001434 if (isInc)
1435 Opc = X86::LOCK_INC32m;
1436 else if (isDec)
1437 Opc = X86::LOCK_DEC32m;
1438 else if (isSub) {
1439 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001440 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001441 Opc = X86::LOCK_SUB32mi8;
1442 else
1443 Opc = X86::LOCK_SUB32mi;
1444 } else
1445 Opc = X86::LOCK_SUB32mr;
1446 } else {
1447 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001448 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001449 Opc = X86::LOCK_ADD32mi8;
1450 else
1451 Opc = X86::LOCK_ADD32mi;
1452 } else
1453 Opc = X86::LOCK_ADD32mr;
1454 }
1455 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001456 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001457 if (isInc)
1458 Opc = X86::LOCK_INC64m;
1459 else if (isDec)
1460 Opc = X86::LOCK_DEC64m;
1461 else if (isSub) {
1462 Opc = X86::LOCK_SUB64mr;
1463 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001464 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001465 Opc = X86::LOCK_SUB64mi8;
1466 else if (Predicate_i64immSExt32(Val.getNode()))
1467 Opc = X86::LOCK_SUB64mi32;
1468 }
1469 } else {
1470 Opc = X86::LOCK_ADD64mr;
1471 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001472 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001473 Opc = X86::LOCK_ADD64mi8;
1474 else if (Predicate_i64immSExt32(Val.getNode()))
1475 Opc = X86::LOCK_ADD64mi32;
1476 }
1477 }
1478 break;
1479 }
1480
1481 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001482 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001483 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001484 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1485 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001486 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001487 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1488 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1489 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001490 SDValue RetVals[] = { Undef, Ret };
1491 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1492 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001493 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1494 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1495 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001496 SDValue RetVals[] = { Undef, Ret };
1497 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1498 }
1499}
1500
Dan Gohman11596ed2009-10-09 20:35:19 +00001501/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1502/// any uses which require the SF or OF bits to be accurate.
1503static bool HasNoSignedComparisonUses(SDNode *N) {
1504 // Examine each user of the node.
1505 for (SDNode::use_iterator UI = N->use_begin(),
1506 UE = N->use_end(); UI != UE; ++UI) {
1507 // Only examine CopyToReg uses.
1508 if (UI->getOpcode() != ISD::CopyToReg)
1509 return false;
1510 // Only examine CopyToReg uses that copy to EFLAGS.
1511 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1512 X86::EFLAGS)
1513 return false;
1514 // Examine each user of the CopyToReg use.
1515 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1516 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1517 // Only examine the Flag result.
1518 if (FlagUI.getUse().getResNo() != 1) continue;
1519 // Anything unusual: assume conservatively.
1520 if (!FlagUI->isMachineOpcode()) return false;
1521 // Examine the opcode of the user.
1522 switch (FlagUI->getMachineOpcode()) {
1523 // These comparisons don't treat the most significant bit specially.
1524 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1525 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1526 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1527 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001528 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1529 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001530 case X86::CMOVA16rr: case X86::CMOVA16rm:
1531 case X86::CMOVA32rr: case X86::CMOVA32rm:
1532 case X86::CMOVA64rr: case X86::CMOVA64rm:
1533 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1534 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1535 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1536 case X86::CMOVB16rr: case X86::CMOVB16rm:
1537 case X86::CMOVB32rr: case X86::CMOVB32rm:
1538 case X86::CMOVB64rr: case X86::CMOVB64rm:
1539 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1540 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1541 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1542 case X86::CMOVE16rr: case X86::CMOVE16rm:
1543 case X86::CMOVE32rr: case X86::CMOVE32rm:
1544 case X86::CMOVE64rr: case X86::CMOVE64rm:
1545 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1546 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1547 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1548 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1549 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1550 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1551 case X86::CMOVP16rr: case X86::CMOVP16rm:
1552 case X86::CMOVP32rr: case X86::CMOVP32rm:
1553 case X86::CMOVP64rr: case X86::CMOVP64rm:
1554 continue;
1555 // Anything else: assume conservatively.
1556 default: return false;
1557 }
1558 }
1559 }
1560 return true;
1561}
1562
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001563SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001564 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001565 unsigned Opc, MOpc;
1566 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001567 DebugLoc dl = Node->getDebugLoc();
1568
Chris Lattner7c306da2010-03-02 06:34:30 +00001569 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001570
Dan Gohmane8be6c62008-07-17 19:10:17 +00001571 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001572 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001573 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001574 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001575
Evan Cheng0114e942006-01-06 20:36:21 +00001576 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001577 default: break;
1578 case X86ISD::GlobalBaseReg:
1579 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001580
Dan Gohman72677342009-08-02 16:10:52 +00001581 case X86ISD::ATOMOR64_DAG:
1582 return SelectAtomic64(Node, X86::ATOMOR6432);
1583 case X86ISD::ATOMXOR64_DAG:
1584 return SelectAtomic64(Node, X86::ATOMXOR6432);
1585 case X86ISD::ATOMADD64_DAG:
1586 return SelectAtomic64(Node, X86::ATOMADD6432);
1587 case X86ISD::ATOMSUB64_DAG:
1588 return SelectAtomic64(Node, X86::ATOMSUB6432);
1589 case X86ISD::ATOMNAND64_DAG:
1590 return SelectAtomic64(Node, X86::ATOMNAND6432);
1591 case X86ISD::ATOMAND64_DAG:
1592 return SelectAtomic64(Node, X86::ATOMAND6432);
1593 case X86ISD::ATOMSWAP64_DAG:
1594 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001595
Dan Gohman72677342009-08-02 16:10:52 +00001596 case ISD::ATOMIC_LOAD_ADD: {
1597 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1598 if (RetVal)
1599 return RetVal;
1600 break;
1601 }
1602
1603 case ISD::SMUL_LOHI:
1604 case ISD::UMUL_LOHI: {
1605 SDValue N0 = Node->getOperand(0);
1606 SDValue N1 = Node->getOperand(1);
1607
1608 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001609 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001610 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001611 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001612 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1613 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1614 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1615 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001616 }
Bill Wendling12321672009-08-07 21:33:25 +00001617 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001618 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001619 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001620 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1621 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1622 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1623 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001624 }
Bill Wendling12321672009-08-07 21:33:25 +00001625 }
Dan Gohman72677342009-08-02 16:10:52 +00001626
1627 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001628 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001629 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001630 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1631 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1632 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1633 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001634 }
1635
1636 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001637 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001638 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001639 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001640 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001641 if (foldedLoad)
1642 std::swap(N0, N1);
1643 }
1644
1645 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1646 N0, SDValue()).getValue(1);
1647
1648 if (foldedLoad) {
1649 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1650 InFlag };
1651 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001652 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1653 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001654 InFlag = SDValue(CNode, 1);
1655 // Update the chain.
1656 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1657 } else {
1658 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001659 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001660 }
1661
1662 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001663 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001664 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1665 LoReg, NVT, InFlag);
1666 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001667 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001668 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001669 }
1670 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001671 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001672 SDValue Result;
1673 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1674 // Prevent use of AH in a REX instruction by referencing AX instead.
1675 // Shift it down 8 bits.
1676 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001677 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001678 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001679 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1680 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001681 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001682 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001683 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1684 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001685 } else {
1686 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1687 HiReg, NVT, InFlag);
1688 InFlag = Result.getValue(2);
1689 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001690 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001691 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001692 }
1693
Dan Gohman72677342009-08-02 16:10:52 +00001694 return NULL;
1695 }
1696
1697 case ISD::SDIVREM:
1698 case ISD::UDIVREM: {
1699 SDValue N0 = Node->getOperand(0);
1700 SDValue N1 = Node->getOperand(1);
1701
1702 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001703 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001704 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001705 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001706 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1707 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1708 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1709 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001710 }
Bill Wendling12321672009-08-07 21:33:25 +00001711 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001712 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001713 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001714 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1715 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1716 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1717 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001718 }
Bill Wendling12321672009-08-07 21:33:25 +00001719 }
Dan Gohman72677342009-08-02 16:10:52 +00001720
Chris Lattner9e323832009-12-23 01:45:04 +00001721 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001722 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001723 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001724 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001725 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001726 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001727 ClrOpcode = 0;
1728 SExtOpcode = X86::CBW;
1729 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001730 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001731 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001732 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001733 SExtOpcode = X86::CWD;
1734 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001735 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001736 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001737 ClrOpcode = X86::MOV32r0;
1738 SExtOpcode = X86::CDQ;
1739 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001740 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001741 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001742 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001743 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001744 break;
1745 }
1746
Dan Gohman72677342009-08-02 16:10:52 +00001747 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001748 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001749 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001750
Dan Gohman72677342009-08-02 16:10:52 +00001751 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001752 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001753 // Special case for div8, just use a move with zero extension to AX to
1754 // clear the upper 8 bits (AH).
1755 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001756 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001757 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1758 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001759 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1760 MVT::Other, Ops,
1761 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001762 Chain = Move.getValue(1);
1763 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001764 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001765 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001766 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001767 Chain = CurDAG->getEntryNode();
1768 }
1769 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1770 InFlag = Chain.getValue(1);
1771 } else {
1772 InFlag =
1773 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1774 LoReg, N0, SDValue()).getValue(1);
1775 if (isSigned && !signBitIsZero) {
1776 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001777 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001778 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001779 } else {
1780 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001781 SDValue ClrNode =
1782 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001783 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001784 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001785 }
Evan Cheng948f3432006-01-06 23:19:29 +00001786 }
Dan Gohman525178c2007-10-08 18:33:35 +00001787
Dan Gohman72677342009-08-02 16:10:52 +00001788 if (foldedLoad) {
1789 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1790 InFlag };
1791 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001792 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1793 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001794 InFlag = SDValue(CNode, 1);
1795 // Update the chain.
1796 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1797 } else {
1798 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001799 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001800 }
Evan Cheng948f3432006-01-06 23:19:29 +00001801
Dan Gohman72677342009-08-02 16:10:52 +00001802 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001803 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001804 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1805 LoReg, NVT, InFlag);
1806 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001807 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001808 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001809 }
1810 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001811 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001812 SDValue Result;
1813 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1814 // Prevent use of AH in a REX instruction by referencing AX instead.
1815 // Shift it down 8 bits.
1816 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001817 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001818 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001819 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00001820 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001821 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00001822 0);
1823 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001824 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1825 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001826 } else {
1827 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1828 HiReg, NVT, InFlag);
1829 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00001830 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001831 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001832 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001833 }
Dan Gohman72677342009-08-02 16:10:52 +00001834 return NULL;
1835 }
1836
Dan Gohman6a402dc2009-08-19 18:16:17 +00001837 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001838 SDValue N0 = Node->getOperand(0);
1839 SDValue N1 = Node->getOperand(1);
1840
1841 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
1842 // use a smaller encoding.
1843 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
1844 N0.getValueType() != MVT::i8 &&
1845 X86::isZeroNode(N1)) {
1846 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
1847 if (!C) break;
1848
1849 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00001850 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
1851 (!(C->getZExtValue() & 0x80) ||
1852 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001853 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
1854 SDValue Reg = N0.getNode()->getOperand(0);
1855
1856 // On x86-32, only the ABCD registers have 8-bit subregisters.
1857 if (!Subtarget->is64Bit()) {
1858 TargetRegisterClass *TRC = 0;
1859 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1860 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1861 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1862 default: llvm_unreachable("Unsupported TEST operand type!");
1863 }
1864 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001865 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1866 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001867 }
1868
1869 // Extract the l-register.
1870 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1871 MVT::i8, Reg);
1872
1873 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00001874 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001875 }
1876
1877 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00001878 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
1879 (!(C->getZExtValue() & 0x8000) ||
1880 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001881 // Shift the immediate right by 8 bits.
1882 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
1883 MVT::i8);
1884 SDValue Reg = N0.getNode()->getOperand(0);
1885
1886 // Put the value in an ABCD register.
1887 TargetRegisterClass *TRC = 0;
1888 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1889 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
1890 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1891 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1892 default: llvm_unreachable("Unsupported TEST operand type!");
1893 }
1894 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001895 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1896 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001897
1898 // Extract the h-register.
1899 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
1900 MVT::i8, Reg);
1901
1902 // Emit a testb. No special NOREX tricks are needed since there's
1903 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00001904 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
1905 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001906 }
1907
1908 // For example, "testl %eax, $32776" to "testw %ax, $32776".
1909 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001910 N0.getValueType() != MVT::i16 &&
1911 (!(C->getZExtValue() & 0x8000) ||
1912 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001913 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
1914 SDValue Reg = N0.getNode()->getOperand(0);
1915
1916 // Extract the 16-bit subregister.
1917 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
1918 MVT::i16, Reg);
1919
1920 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00001921 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001922 }
1923
1924 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
1925 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001926 N0.getValueType() == MVT::i64 &&
1927 (!(C->getZExtValue() & 0x80000000) ||
1928 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001929 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
1930 SDValue Reg = N0.getNode()->getOperand(0);
1931
1932 // Extract the 32-bit subregister.
1933 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
1934 MVT::i32, Reg);
1935
1936 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00001937 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001938 }
1939 }
1940 break;
1941 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00001942 }
1943
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001944 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00001945
Chris Lattner7c306da2010-03-02 06:34:30 +00001946 DEBUG(dbgs() << "=> ";
1947 if (ResNode == NULL || ResNode == Node)
1948 Node->dump(CurDAG);
1949 else
1950 ResNode->dump(CurDAG);
1951 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001952
1953 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00001954}
1955
Chris Lattnerc0bad572006-06-08 18:03:49 +00001956bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00001957SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00001958 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00001959 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00001960 switch (ConstraintCode) {
1961 case 'o': // offsetable ??
1962 case 'v': // not offsetable ??
1963 default: return true;
1964 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001965 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00001966 return true;
1967 break;
1968 }
1969
Evan Cheng04699902006-08-26 01:05:16 +00001970 OutOps.push_back(Op0);
1971 OutOps.push_back(Op1);
1972 OutOps.push_back(Op2);
1973 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001974 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00001975 return false;
1976}
1977
Chris Lattnerc961eea2005-11-16 01:54:32 +00001978/// createX86ISelDag - This pass converts a legalized DAG into a
1979/// X86-specific DAG, ready for instruction scheduling.
1980///
Bill Wendling98a366d2009-04-29 23:29:43 +00001981FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
1982 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001983 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00001984}