blob: 4f11a9d354d800155aadf6ebf701006ff1d51f45 [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 Cheng0475ab52008-01-05 00:41:47 +000018#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000022#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000023#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000025#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000026#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000027#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000031#include "llvm/CodeGen/SelectionDAGISel.h"
32#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000033#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000034#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000035#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000036#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000037#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000038#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000039#include "llvm/ADT/Statistic.h"
40using namespace llvm;
41
Chris Lattner95b2c7d2006-12-19 22:59:26 +000042STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
Chris Lattnerc961eea2005-11-16 01:54:32 +000044//===----------------------------------------------------------------------===//
45// Pattern Matcher Implementation
46//===----------------------------------------------------------------------===//
47
48namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000049 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000050 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000051 /// tree.
52 struct X86ISelAddressMode {
53 enum {
54 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000055 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000056 } BaseType;
57
Dan Gohmanffce6f12010-04-29 23:30:41 +000058 // This is really a union, discriminated by BaseType!
59 SDValue Base_Reg;
60 int Base_FrameIndex;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000061
62 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000063 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000064 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000065 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000066 const GlobalValue *GV;
67 const Constant *CP;
68 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000069 const char *ES;
70 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000071 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000072 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000073
74 X86ISelAddressMode()
Dan Gohmanffce6f12010-04-29 23:30:41 +000075 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000076 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000077 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000079
80 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000081 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000082 }
Chris Lattner18c59872009-06-27 04:16:01 +000083
84 bool hasBaseOrIndexReg() const {
Dan Gohmanffce6f12010-04-29 23:30:41 +000085 return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattner18c59872009-06-27 04:16:01 +000086 }
87
88 /// isRIPRelative - Return true if this addressing mode is already RIP
89 /// relative.
90 bool isRIPRelative() const {
91 if (BaseType != RegBase) return false;
92 if (RegisterSDNode *RegNode =
Dan Gohmanffce6f12010-04-29 23:30:41 +000093 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattner18c59872009-06-27 04:16:01 +000094 return RegNode->getReg() == X86::RIP;
95 return false;
96 }
97
98 void setBaseReg(SDValue Reg) {
99 BaseType = RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000100 Base_Reg = Reg;
Chris Lattner18c59872009-06-27 04:16:01 +0000101 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000102
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000103 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000104 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohmanffce6f12010-04-29 23:30:41 +0000105 dbgs() << "Base_Reg ";
106 if (Base_Reg.getNode() != 0)
107 Base_Reg.getNode()->dump();
Bill Wendling12321672009-08-07 21:33:25 +0000108 else
David Greened7f4f242010-01-05 01:29:08 +0000109 dbgs() << "nul";
Dan Gohmanffce6f12010-04-29 23:30:41 +0000110 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000111 << " Scale" << Scale << '\n'
112 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000113 if (IndexReg.getNode() != 0)
114 IndexReg.getNode()->dump();
115 else
David Greened7f4f242010-01-05 01:29:08 +0000116 dbgs() << "nul";
117 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000118 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000119 if (GV)
120 GV->dump();
121 else
David Greened7f4f242010-01-05 01:29:08 +0000122 dbgs() << "nul";
123 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000124 if (CP)
125 CP->dump();
126 else
David Greened7f4f242010-01-05 01:29:08 +0000127 dbgs() << "nul";
128 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000129 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000130 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000131 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000132 else
David Greened7f4f242010-01-05 01:29:08 +0000133 dbgs() << "nul";
134 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000135 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000136 };
137}
138
139namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000140 //===--------------------------------------------------------------------===//
141 /// ISel - X86 specific code to select X86 machine instructions for
142 /// SelectionDAG operations.
143 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000144 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000145 /// X86Lowering - This object fully describes how to lower LLVM code to an
146 /// X86-specific SelectionDAG.
Dan Gohmand858e902010-04-17 15:26:15 +0000147 const X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000148
149 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
150 /// make the right decision when generating code for different targets.
151 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000152
Evan Chengb7a75a52008-09-26 23:41:32 +0000153 /// OptForSize - If true, selector should try to optimize for code size
154 /// instead of performance.
155 bool OptForSize;
156
Chris Lattnerc961eea2005-11-16 01:54:32 +0000157 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000158 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000159 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000160 X86Lowering(*tm.getTargetLowering()),
161 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000162 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000163
164 virtual const char *getPassName() const {
165 return "X86 DAG->DAG Instruction Selection";
166 }
167
Dan Gohman64652652010-04-14 20:17:22 +0000168 virtual void EmitFunctionEntryCode();
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000169
Evan Cheng014bf212010-02-15 19:41:07 +0000170 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
171
Chris Lattner7c306da2010-03-02 06:34:30 +0000172 virtual void PreprocessISelDAG();
173
Chris Lattnerc961eea2005-11-16 01:54:32 +0000174// Include the pieces autogenerated from the target description.
175#include "X86GenDAGISel.inc"
176
177 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000178 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000179 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000180 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000181
Rafael Espindola094fad32009-04-08 21:14:34 +0000182 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
183 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000184 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000185 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
186 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
187 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000188 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000189 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000190 SDValue &Scale, SDValue &Index, SDValue &Disp,
191 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000192 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000193 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000194 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000195 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000196 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000197 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000198 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000199 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000200 SDValue &NodeWithChain);
201
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000202 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000203 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000204 SDValue &Index, SDValue &Disp,
205 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000206
Chris Lattnerc0bad572006-06-08 18:03:49 +0000207 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
208 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000209 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000210 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000211 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000212
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000213 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
214
Dan Gohman475871a2008-07-27 21:46:04 +0000215 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
216 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000217 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000218 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000219 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
220 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000221 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000222 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000223 // These are 32-bit even in 64-bit mode since RIP relative offset
224 // is 32-bit.
225 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000226 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
227 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000228 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000229 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000230 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000231 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000232 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000233 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000234 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000236 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000237 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
238 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000239 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000240 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000241
242 if (AM.Segment.getNode())
243 Segment = AM.Segment;
244 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000246 }
247
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000248 /// getI8Imm - Return a target constant with the specified value, of type
249 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000250 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000251 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000252 }
253
Chris Lattnerc961eea2005-11-16 01:54:32 +0000254 /// getI16Imm - Return a target constant with the specified value, of type
255 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000256 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000257 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000258 }
259
260 /// getI32Imm - Return a target constant with the specified value, of type
261 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000262 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000263 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000264 }
Evan Chengf597dc72006-02-10 22:24:32 +0000265
Dan Gohman8b746962008-09-23 18:22:58 +0000266 /// getGlobalBaseReg - Return an SDNode that returns the value of
267 /// the global base register. Output instructions required to
268 /// initialize the global base register, if necessary.
269 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000270 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000271
Dan Gohmanc5534622009-06-03 20:20:00 +0000272 /// getTargetMachine - Return a reference to the TargetMachine, casted
273 /// to the target-specific type.
274 const X86TargetMachine &getTargetMachine() {
275 return static_cast<const X86TargetMachine &>(TM);
276 }
277
278 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
279 /// to the target-specific type.
280 const X86InstrInfo *getInstrInfo() {
281 return getTargetMachine().getInstrInfo();
282 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000283 };
284}
285
Evan Chengf4b4c412006-08-08 00:31:00 +0000286
Evan Cheng014bf212010-02-15 19:41:07 +0000287bool
288X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000289 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000290
Evan Cheng014bf212010-02-15 19:41:07 +0000291 if (!N.hasOneUse())
292 return false;
293
294 if (N.getOpcode() != ISD::LOAD)
295 return true;
296
297 // If N is a load, do additional profitability checks.
298 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000299 switch (U->getOpcode()) {
300 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000301 case X86ISD::ADD:
302 case X86ISD::SUB:
303 case X86ISD::AND:
304 case X86ISD::XOR:
305 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000306 case ISD::ADD:
307 case ISD::ADDC:
308 case ISD::ADDE:
309 case ISD::AND:
310 case ISD::OR:
311 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000312 SDValue Op1 = U->getOperand(1);
313
Evan Cheng884c70c2008-11-27 00:49:46 +0000314 // If the other operand is a 8-bit immediate we should fold the immediate
315 // instead. This reduces code size.
316 // e.g.
317 // movl 4(%esp), %eax
318 // addl $4, %eax
319 // vs.
320 // movl $4, %eax
321 // addl 4(%esp), %eax
322 // The former is 2 bytes shorter. In case where the increment is 1, then
323 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000324 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000325 if (Imm->getAPIntValue().isSignedIntN(8))
326 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000327
328 // If the other operand is a TLS address, we should fold it instead.
329 // This produces
330 // movl %gs:0, %eax
331 // leal i@NTPOFF(%eax), %eax
332 // instead of
333 // movl $i@NTPOFF, %eax
334 // addl %gs:0, %eax
335 // if the block also has an access to a second TLS address this will save
336 // a load.
337 // FIXME: This is probably also true for non TLS addresses.
338 if (Op1.getOpcode() == X86ISD::Wrapper) {
339 SDValue Val = Op1.getOperand(0);
340 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
341 return false;
342 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000343 }
344 }
Evan Cheng014bf212010-02-15 19:41:07 +0000345 }
346
347 return true;
348}
349
Evan Chengf48ef032010-03-14 03:48:46 +0000350/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
351/// load's chain operand and move load below the call's chain operand.
352static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
353 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000354 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000355 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000356 if (Chain.getNode() == Load.getNode())
357 Ops.push_back(Load.getOperand(0));
358 else {
359 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000360 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000361 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
362 if (Chain.getOperand(i).getNode() == Load.getNode())
363 Ops.push_back(Load.getOperand(0));
364 else
365 Ops.push_back(Chain.getOperand(i));
366 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000367 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000368 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000369 Ops.clear();
370 Ops.push_back(NewChain);
371 }
Evan Chengf48ef032010-03-14 03:48:46 +0000372 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
373 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000374 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
375 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000376 Load.getOperand(1), Load.getOperand(2));
377 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000378 Ops.push_back(SDValue(Load.getNode(), 1));
379 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000380 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000381 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000382}
383
384/// isCalleeLoad - Return true if call address is a load and it can be
385/// moved below CALLSEQ_START and the chains leading up to the call.
386/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000387/// In the case of a tail call, there isn't a callseq node between the call
388/// chain and the load.
389static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000390 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000391 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000392 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000393 if (!LD ||
394 LD->isVolatile() ||
395 LD->getAddressingMode() != ISD::UNINDEXED ||
396 LD->getExtensionType() != ISD::NON_EXTLOAD)
397 return false;
398
399 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000400 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000401 if (!Chain.hasOneUse())
402 return false;
403 Chain = Chain.getOperand(0);
404 }
Evan Chengf48ef032010-03-14 03:48:46 +0000405
406 if (!Chain.getNumOperands())
407 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000408 if (Chain.getOperand(0).getNode() == Callee.getNode())
409 return true;
410 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000411 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
412 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000413 return true;
414 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000415}
416
Chris Lattnerfb444af2010-03-02 23:12:51 +0000417void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000418 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000419 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
420
Dan Gohmanf350b272008-08-23 02:25:05 +0000421 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
422 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000423 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000424
Evan Chengf48ef032010-03-14 03:48:46 +0000425 if (OptLevel != CodeGenOpt::None &&
426 (N->getOpcode() == X86ISD::CALL ||
427 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000428 /// Also try moving call address load from outside callseq_start to just
429 /// before the call to allow it to be folded.
430 ///
431 /// [Load chain]
432 /// ^
433 /// |
434 /// [Load]
435 /// ^ ^
436 /// | |
437 /// / \--
438 /// / |
439 ///[CALLSEQ_START] |
440 /// ^ |
441 /// | |
442 /// [LOAD/C2Reg] |
443 /// | |
444 /// \ /
445 /// \ /
446 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000447 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000448 SDValue Chain = N->getOperand(0);
449 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000450 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000451 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000452 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000453 ++NumLoadMoved;
454 continue;
455 }
456
457 // Lower fpround and fpextend nodes that target the FP stack to be store and
458 // load to the stack. This is a gross hack. We would like to simply mark
459 // these as being illegal, but when we do that, legalize produces these when
460 // it expands calls, then expands these in the same legalize pass. We would
461 // like dag combine to be able to hack on these between the call expansion
462 // and the node legalization. As such this pass basically does "really
463 // late" legalization of these inline with the X86 isel pass.
464 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000465 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
466 continue;
467
468 // If the source and destination are SSE registers, then this is a legal
469 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000470 EVT SrcVT = N->getOperand(0).getValueType();
471 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000472 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
473 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
474 if (SrcIsSSE && DstIsSSE)
475 continue;
476
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000477 if (!SrcIsSSE && !DstIsSSE) {
478 // If this is an FPStack extension, it is a noop.
479 if (N->getOpcode() == ISD::FP_EXTEND)
480 continue;
481 // If this is a value-preserving FPStack truncation, it is a noop.
482 if (N->getConstantOperandVal(1))
483 continue;
484 }
485
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000486 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
487 // FPStack has extload and truncstore. SSE can fold direct loads into other
488 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000489 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000490 if (N->getOpcode() == ISD::FP_ROUND)
491 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
492 else
493 MemVT = SrcIsSSE ? SrcVT : DstVT;
494
Dan Gohmanf350b272008-08-23 02:25:05 +0000495 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000496 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000497
498 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000499 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000500 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000501 MemTmp, NULL, 0, MemVT,
502 false, false, 0);
Dale Johannesend8392542009-02-03 21:48:12 +0000503 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000504 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000505
506 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
507 // extload we created. This will cause general havok on the dag because
508 // anything below the conversion could be folded into other existing nodes.
509 // To avoid invalidating 'I', back it up to the convert node.
510 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000511 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000512
513 // Now that we did that, the node is dead. Increment the iterator to the
514 // next node to process, then delete N.
515 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000516 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000517 }
518}
519
Chris Lattnerc961eea2005-11-16 01:54:32 +0000520
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000521/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
522/// the main function.
523void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
524 MachineFrameInfo *MFI) {
525 const TargetInstrInfo *TII = TM.getInstrInfo();
526 if (Subtarget->isTargetCygMing())
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000527 BuildMI(BB, DebugLoc(),
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000528 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000529}
530
Dan Gohman64652652010-04-14 20:17:22 +0000531void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000532 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000533 if (const Function *Fn = MF->getFunction())
534 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
535 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000536}
537
Rafael Espindola094fad32009-04-08 21:14:34 +0000538
539bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
540 X86ISelAddressMode &AM) {
541 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
542 SDValue Segment = N.getOperand(0);
543
544 if (AM.Segment.getNode() == 0) {
545 AM.Segment = Segment;
546 return false;
547 }
548
549 return true;
550}
551
552bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
553 // This optimization is valid because the GNU TLS model defines that
554 // gs:0 (or fs:0 on X86-64) contains its own address.
555 // For more information see http://people.redhat.com/drepper/tls.pdf
556
557 SDValue Address = N.getOperand(1);
558 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
559 !MatchSegmentBaseAddress (Address, AM))
560 return false;
561
562 return true;
563}
564
Chris Lattner18c59872009-06-27 04:16:01 +0000565/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
566/// into an addressing mode. These wrap things that will resolve down into a
567/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000568/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000569bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000570 // If the addressing mode already has a symbol as the displacement, we can
571 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000572 if (AM.hasSymbolicDisplacement())
573 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000574
575 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000576 CodeModel::Model M = TM.getCodeModel();
577
Chris Lattner18c59872009-06-27 04:16:01 +0000578 // Handle X86-64 rip-relative addresses. We check this before checking direct
579 // folding because RIP is preferable to non-RIP accesses.
580 if (Subtarget->is64Bit() &&
581 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
582 // they cannot be folded into immediate fields.
583 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000584 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000585 // Base and index reg must be 0 in order to use %rip as base and lowering
586 // must allow RIP.
587 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000588 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
589 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000590 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000591 AM.GV = G->getGlobal();
592 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000593 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000594 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
595 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000596 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000597 AM.CP = CP->getConstVal();
598 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000599 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000600 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000601 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
602 AM.ES = S->getSymbol();
603 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000604 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000605 AM.JT = J->getIndex();
606 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000607 } else {
608 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000609 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000610 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000611
Chris Lattner18c59872009-06-27 04:16:01 +0000612 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000613 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000614 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000615 }
616
617 // Handle the case when globals fit in our immediate field: This is true for
618 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
619 // mode, this results in a non-RIP-relative computation.
620 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000621 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000622 TM.getRelocationModel() == Reloc::Static)) {
623 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
624 AM.GV = G->getGlobal();
625 AM.Disp += G->getOffset();
626 AM.SymbolFlags = G->getTargetFlags();
627 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
628 AM.CP = CP->getConstVal();
629 AM.Align = CP->getAlignment();
630 AM.Disp += CP->getOffset();
631 AM.SymbolFlags = CP->getTargetFlags();
632 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
633 AM.ES = S->getSymbol();
634 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000635 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000636 AM.JT = J->getIndex();
637 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000638 } else {
639 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000640 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000641 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000642 return false;
643 }
644
645 return true;
646}
647
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000648/// MatchAddress - Add the specified node to the specified addressing mode,
649/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000650/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000651bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000652 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000653 return true;
654
655 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
656 // a smaller encoding and avoids a scaled-index.
657 if (AM.Scale == 2 &&
658 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000659 AM.Base_Reg.getNode() == 0) {
660 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000661 AM.Scale = 1;
662 }
663
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000664 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
665 // because it has a smaller encoding.
666 // TODO: Which other code models can use this?
667 if (TM.getCodeModel() == CodeModel::Small &&
668 Subtarget->is64Bit() &&
669 AM.Scale == 1 &&
670 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000671 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000672 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000673 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000674 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000675 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000676
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000677 return false;
678}
679
Chris Lattnerd6139422010-04-20 23:18:40 +0000680/// isLogicallyAddWithConstant - Return true if this node is semantically an
681/// add of a value with a constantint.
682static bool isLogicallyAddWithConstant(SDValue V, SelectionDAG *CurDAG) {
683 // Check for (add x, Cst)
684 if (V->getOpcode() == ISD::ADD)
685 return isa<ConstantSDNode>(V->getOperand(1));
686
687 // Check for (or x, Cst), where Cst & x == 0.
688 if (V->getOpcode() != ISD::OR ||
689 !isa<ConstantSDNode>(V->getOperand(1)))
690 return false;
691
692 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
693 ConstantSDNode *CN = cast<ConstantSDNode>(V->getOperand(1));
694
695 // Check to see if the LHS & C is zero.
696 return CurDAG->MaskedValueIsZero(V->getOperand(0), CN->getAPIntValue());
697}
698
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000699bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
700 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
Dan Gohmanffce6f12010-04-29 23:30:41 +0000764 && AM.Base_Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000765 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000766 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000767 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.
Chris Lattnerd6139422010-04-20 23:18:40 +0000789 if (isLogicallyAddWithConstant(ShVal, CurDAG)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000790 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000791 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000792 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000793 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000794 if (!is64Bit ||
795 X86::isOffsetSuitableForCodeModel(Disp, M,
796 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000797 AM.Disp = Disp;
798 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000799 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000800 } else {
801 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000802 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000803 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000804 }
805 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000806 }
Evan Chengec693f72005-12-08 02:01:35 +0000807
Dan Gohman83688052007-10-22 20:22:24 +0000808 case ISD::SMUL_LOHI:
809 case ISD::UMUL_LOHI:
810 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000811 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000812 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000813 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000814 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000815 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000816 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000817 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000818 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000819 if (ConstantSDNode
820 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000821 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
822 CN->getZExtValue() == 9) {
823 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000824
Gabor Greifba36cb52008-08-28 21:40:38 +0000825 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000826 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000827
828 // Okay, we know that we have a scale by now. However, if the scaled
829 // value is an add of something and a constant, we can fold the
830 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000831 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
832 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
833 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000834 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000835 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000836 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000837 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000838 if (!is64Bit ||
839 X86::isOffsetSuitableForCodeModel(Disp, M,
840 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000841 AM.Disp = Disp;
842 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000843 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000844 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000845 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000846 }
847
Dan Gohmanffce6f12010-04-29 23:30:41 +0000848 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000849 return false;
850 }
Chris Lattner62412262007-02-04 20:18:17 +0000851 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000852 break;
853
Dan Gohman3cd90a12009-05-11 18:02:53 +0000854 case ISD::SUB: {
855 // Given A-B, if A can be completely folded into the address and
856 // the index field with the index field unused, use -B as the index.
857 // This is a win if a has multiple parts that can be folded into
858 // the address. Also, this saves a mov if the base register has
859 // other uses, since it avoids a two-address sub instruction, however
860 // it costs an additional mov if the index register has other uses.
861
Dan Gohmane5408102010-06-18 01:24:29 +0000862 // Add an artificial use to this node so that we can keep track of
863 // it if it gets CSE'd with a different node.
864 HandleSDNode Handle(N);
865
Dan Gohman3cd90a12009-05-11 18:02:53 +0000866 // Test if the LHS of the sub can be folded.
867 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000868 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000869 AM = Backup;
870 break;
871 }
872 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000873 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000874 AM = Backup;
875 break;
876 }
Evan Chengf3caa522010-03-17 23:58:35 +0000877
Dan Gohman3cd90a12009-05-11 18:02:53 +0000878 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +0000879 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +0000880 // If the RHS involves a register with multiple uses, this
881 // transformation incurs an extra mov, due to the neg instruction
882 // clobbering its operand.
883 if (!RHS.getNode()->hasOneUse() ||
884 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
885 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
886 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
887 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000888 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000889 ++Cost;
890 // If the base is a register with multiple uses, this
891 // transformation may save a mov.
892 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000893 AM.Base_Reg.getNode() &&
894 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +0000895 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
896 --Cost;
897 // If the folded LHS was interesting, this transformation saves
898 // address arithmetic.
899 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
900 ((AM.Disp != 0) && (Backup.Disp == 0)) +
901 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
902 --Cost;
903 // If it doesn't look like it may be an overall win, don't do it.
904 if (Cost >= 0) {
905 AM = Backup;
906 break;
907 }
908
909 // Ok, the transformation is legal and appears profitable. Go for it.
910 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
911 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
912 AM.IndexReg = Neg;
913 AM.Scale = 1;
914
915 // Insert the new nodes into the topological ordering.
916 if (Zero.getNode()->getNodeId() == -1 ||
917 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
918 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
919 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
920 }
921 if (Neg.getNode()->getNodeId() == -1 ||
922 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
923 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
924 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
925 }
926 return false;
927 }
928
Evan Cheng8e278262009-01-17 07:09:27 +0000929 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +0000930 // Add an artificial use to this node so that we can keep track of
931 // it if it gets CSE'd with a different node.
932 HandleSDNode Handle(N);
933 SDValue LHS = Handle.getValue().getNode()->getOperand(0);
934 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
935
Evan Cheng8e278262009-01-17 07:09:27 +0000936 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000937 if (!MatchAddressRecursively(LHS, AM, Depth+1) &&
938 !MatchAddressRecursively(RHS, AM, Depth+1))
939 return false;
940 AM = Backup;
941 LHS = Handle.getValue().getNode()->getOperand(0);
942 RHS = Handle.getValue().getNode()->getOperand(1);
Evan Chengf3caa522010-03-17 23:58:35 +0000943
944 // Try again after commuting the operands.
Dan Gohmane5408102010-06-18 01:24:29 +0000945 if (!MatchAddressRecursively(RHS, AM, Depth+1) &&
946 !MatchAddressRecursively(LHS, AM, Depth+1))
947 return false;
Evan Cheng8e278262009-01-17 07:09:27 +0000948 AM = Backup;
Dan Gohmane5408102010-06-18 01:24:29 +0000949 LHS = Handle.getValue().getNode()->getOperand(0);
950 RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +0000951
952 // If we couldn't fold both operands into the address at the same time,
953 // see if we can just put each operand into a register and fold at least
954 // the add.
955 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000956 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000957 !AM.IndexReg.getNode()) {
Dan Gohmane5408102010-06-18 01:24:29 +0000958 AM.Base_Reg = LHS;
959 AM.IndexReg = RHS;
Dan Gohman77502c92009-03-13 02:25:09 +0000960 AM.Scale = 1;
961 return false;
962 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000963 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000964 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000965
Chris Lattner62412262007-02-04 20:18:17 +0000966 case ISD::OR:
967 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattnerd6139422010-04-20 23:18:40 +0000968 if (isLogicallyAddWithConstant(N, CurDAG)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000969 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +0000970 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Dan Gohman27cae7b2008-11-11 15:52:29 +0000971 uint64_t Offset = CN->getSExtValue();
Evan Chengf3caa522010-03-17 23:58:35 +0000972
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000973 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +0000974 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000975 // Address could not have picked a GV address for the displacement.
976 AM.GV == NULL &&
977 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000978 (!is64Bit ||
979 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
Evan Chengf3caa522010-03-17 23:58:35 +0000980 AM.hasSymbolicDisplacement()))) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000981 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000982 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000983 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000984 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000985 }
986 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000987
988 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000989 // Perform some heroic transforms on an and of a constant-count shift
990 // with a constant to enable use of the scaled offset field.
991
Dan Gohman475871a2008-07-27 21:46:04 +0000992 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000993 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000994
Evan Cheng1314b002007-12-13 00:43:27 +0000995 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000996 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000997
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000998 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +0000999 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1000 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1001 if (!C1 || !C2) break;
1002
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001003 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1004 // allows us to convert the shift and and into an h-register extract and
1005 // a scaled index.
1006 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1007 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001008 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001009 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001010 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001011 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1012 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1013 X, Eight);
1014 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1015 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001016 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001017 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1018 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001019
1020 // Insert the new nodes into the topological ordering.
1021 if (Eight.getNode()->getNodeId() == -1 ||
1022 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1023 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1024 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1025 }
1026 if (Mask.getNode()->getNodeId() == -1 ||
1027 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1028 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1029 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1030 }
1031 if (Srl.getNode()->getNodeId() == -1 ||
1032 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1033 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1034 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1035 }
1036 if (And.getNode()->getNodeId() == -1 ||
1037 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1038 CurDAG->RepositionNode(N.getNode(), And.getNode());
1039 And.getNode()->setNodeId(N.getNode()->getNodeId());
1040 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001041 if (ShlCount.getNode()->getNodeId() == -1 ||
1042 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1043 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1044 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1045 }
1046 if (Shl.getNode()->getNodeId() == -1 ||
1047 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1048 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1049 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1050 }
Dan Gohmane5408102010-06-18 01:24:29 +00001051 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001052 AM.IndexReg = And;
1053 AM.Scale = (1 << ScaleLog);
1054 return false;
1055 }
1056 }
1057
1058 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1059 // allows us to fold the shift into this addressing mode.
1060 if (Shift.getOpcode() != ISD::SHL) break;
1061
Evan Cheng1314b002007-12-13 00:43:27 +00001062 // Not likely to be profitable if either the AND or SHIFT node has more
1063 // than one use (unless all uses are for address computation). Besides,
1064 // isel mechanism requires their node ids to be reused.
1065 if (!N.hasOneUse() || !Shift.hasOneUse())
1066 break;
1067
1068 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001069 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001070 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1071 break;
1072
1073 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001074 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001075 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001076 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1077 NewANDMask);
1078 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001079 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001080
1081 // Insert the new nodes into the topological ordering.
1082 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1083 CurDAG->RepositionNode(X.getNode(), C1);
1084 C1->setNodeId(X.getNode()->getNodeId());
1085 }
1086 if (NewANDMask.getNode()->getNodeId() == -1 ||
1087 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1088 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1089 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1090 }
1091 if (NewAND.getNode()->getNodeId() == -1 ||
1092 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1093 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1094 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1095 }
1096 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1097 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1098 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1099 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1100 }
1101
Dan Gohmane5408102010-06-18 01:24:29 +00001102 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001103
1104 AM.Scale = 1 << ShiftCst;
1105 AM.IndexReg = NewAND;
1106 return false;
1107 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001108 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001109
Rafael Espindola523249f2009-03-31 16:16:57 +00001110 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001111}
1112
1113/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1114/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001115bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001116 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001117 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001118 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001119 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001120 AM.IndexReg = N;
1121 AM.Scale = 1;
1122 return false;
1123 }
1124
1125 // Otherwise, we cannot select it.
1126 return true;
1127 }
1128
1129 // Default, generate it as a register.
1130 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001131 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001132 return false;
1133}
1134
Evan Chengec693f72005-12-08 02:01:35 +00001135/// SelectAddr - returns true if it is able pattern match an addressing mode.
1136/// It returns the operands which make up the maximal addressing mode it can
1137/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001138bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001139 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001140 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001141 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001142 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001143 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001144
Owen Andersone50ed302009-08-10 22:56:29 +00001145 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001146 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001147 if (!AM.Base_Reg.getNode())
1148 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001149 }
Evan Cheng8700e142006-01-11 06:09:51 +00001150
Gabor Greifba36cb52008-08-28 21:40:38 +00001151 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001152 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001153
Rafael Espindola094fad32009-04-08 21:14:34 +00001154 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001155 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001156}
1157
Chris Lattner3a7cd952006-10-07 21:55:32 +00001158/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1159/// match a load whose top elements are either undef or zeros. The load flavor
1160/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001161///
1162/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001163/// PatternChainNode: this is the matched node that has a chain input and
1164/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001165bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001166 SDValue N, SDValue &Base,
1167 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001168 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001169 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001170 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001171 PatternNodeWithChain = N.getOperand(0);
1172 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1173 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001174 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001175 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001176 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001177 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001178 return false;
1179 return true;
1180 }
1181 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001182
1183 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001184 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001185 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001186 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001187 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001188 N.getOperand(0).getNode()->hasOneUse() &&
1189 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001190 N.getOperand(0).getOperand(0).hasOneUse() &&
1191 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001192 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001193 // Okay, this is a zero extending load. Fold it.
1194 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001195 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001196 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001197 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001198 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001199 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001200 return false;
1201}
1202
1203
Evan Cheng51a9ed92006-02-25 10:09:08 +00001204/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1205/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001206bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001207 SDValue &Base, SDValue &Scale,
1208 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001209 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001210
1211 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1212 // segments.
1213 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001214 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001215 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001216 if (MatchAddress(N, AM))
1217 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001218 assert (T == AM.Segment);
1219 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001220
Owen Andersone50ed302009-08-10 22:56:29 +00001221 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001222 unsigned Complexity = 0;
1223 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001224 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001225 Complexity = 1;
1226 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001227 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001228 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1229 Complexity = 4;
1230
Gabor Greifba36cb52008-08-28 21:40:38 +00001231 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001232 Complexity++;
1233 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001234 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001235
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001236 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1237 // a simple shift.
1238 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001239 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001240
1241 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1242 // to a LEA. This is determined with some expermentation but is by no means
1243 // optimal (especially for code size consideration). LEA is nice because of
1244 // its three-address nature. Tweak the cost function again when we can run
1245 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001246 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001247 // For X86-64, we should always use lea to materialize RIP relative
1248 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001249 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001250 Complexity = 4;
1251 else
1252 Complexity += 2;
1253 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001254
Dan Gohmanffce6f12010-04-29 23:30:41 +00001255 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001256 Complexity++;
1257
Chris Lattner25142782009-07-11 22:50:33 +00001258 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001259 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001260 return false;
1261
1262 SDValue Segment;
1263 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1264 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001265}
1266
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001267/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001268bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001269 SDValue &Scale, SDValue &Index,
1270 SDValue &Disp) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001271 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1272 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001273
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001274 X86ISelAddressMode AM;
1275 AM.GV = GA->getGlobal();
1276 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001277 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001278 AM.SymbolFlags = GA->getTargetFlags();
1279
Owen Anderson825b72b2009-08-11 20:47:22 +00001280 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001281 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001282 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001283 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001284 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001285 }
1286
1287 SDValue Segment;
1288 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1289 return true;
1290}
1291
1292
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001293bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001294 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001295 SDValue &Index, SDValue &Disp,
1296 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001297 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1298 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001299 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001300 return false;
1301
1302 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001303}
1304
Dan Gohman8b746962008-09-23 18:22:58 +00001305/// getGlobalBaseReg - Return an SDNode that returns the value of
1306/// the global base register. Output instructions required to
1307/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001308///
Evan Cheng9ade2182006-08-26 05:34:46 +00001309SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001310 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001311 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001312}
1313
Evan Chengb245d922006-05-20 01:36:52 +00001314static SDNode *FindCallStartFromCall(SDNode *Node) {
1315 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001316 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001317 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001318 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001319}
1320
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001321SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1322 SDValue Chain = Node->getOperand(0);
1323 SDValue In1 = Node->getOperand(1);
1324 SDValue In2L = Node->getOperand(2);
1325 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001326 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001327 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001328 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001329 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1330 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1331 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1332 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1333 MVT::i32, MVT::i32, MVT::Other, Ops,
1334 array_lengthof(Ops));
1335 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1336 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001337}
Christopher Lambc59e5212007-08-10 21:48:46 +00001338
Owen Andersone50ed302009-08-10 22:56:29 +00001339SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001340 if (Node->hasAnyUseOfValue(0))
1341 return 0;
1342
1343 // Optimize common patterns for __sync_add_and_fetch and
1344 // __sync_sub_and_fetch where the result is not used. This allows us
1345 // to use "lock" version of add, sub, inc, dec instructions.
1346 // FIXME: Do not use special instructions but instead add the "lock"
1347 // prefix to the target node somehow. The extra information will then be
1348 // transferred to machine instruction and it denotes the prefix.
1349 SDValue Chain = Node->getOperand(0);
1350 SDValue Ptr = Node->getOperand(1);
1351 SDValue Val = Node->getOperand(2);
1352 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001353 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001354 return 0;
1355
1356 bool isInc = false, isDec = false, isSub = false, isCN = false;
1357 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1358 if (CN) {
1359 isCN = true;
1360 int64_t CNVal = CN->getSExtValue();
1361 if (CNVal == 1)
1362 isInc = true;
1363 else if (CNVal == -1)
1364 isDec = true;
1365 else if (CNVal >= 0)
1366 Val = CurDAG->getTargetConstant(CNVal, NVT);
1367 else {
1368 isSub = true;
1369 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1370 }
1371 } else if (Val.hasOneUse() &&
1372 Val.getOpcode() == ISD::SUB &&
1373 X86::isZeroNode(Val.getOperand(0))) {
1374 isSub = true;
1375 Val = Val.getOperand(1);
1376 }
1377
1378 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001379 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001380 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001381 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001382 if (isInc)
1383 Opc = X86::LOCK_INC8m;
1384 else if (isDec)
1385 Opc = X86::LOCK_DEC8m;
1386 else if (isSub) {
1387 if (isCN)
1388 Opc = X86::LOCK_SUB8mi;
1389 else
1390 Opc = X86::LOCK_SUB8mr;
1391 } else {
1392 if (isCN)
1393 Opc = X86::LOCK_ADD8mi;
1394 else
1395 Opc = X86::LOCK_ADD8mr;
1396 }
1397 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001398 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001399 if (isInc)
1400 Opc = X86::LOCK_INC16m;
1401 else if (isDec)
1402 Opc = X86::LOCK_DEC16m;
1403 else if (isSub) {
1404 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001405 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001406 Opc = X86::LOCK_SUB16mi8;
1407 else
1408 Opc = X86::LOCK_SUB16mi;
1409 } else
1410 Opc = X86::LOCK_SUB16mr;
1411 } else {
1412 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001413 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001414 Opc = X86::LOCK_ADD16mi8;
1415 else
1416 Opc = X86::LOCK_ADD16mi;
1417 } else
1418 Opc = X86::LOCK_ADD16mr;
1419 }
1420 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001421 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001422 if (isInc)
1423 Opc = X86::LOCK_INC32m;
1424 else if (isDec)
1425 Opc = X86::LOCK_DEC32m;
1426 else if (isSub) {
1427 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001428 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001429 Opc = X86::LOCK_SUB32mi8;
1430 else
1431 Opc = X86::LOCK_SUB32mi;
1432 } else
1433 Opc = X86::LOCK_SUB32mr;
1434 } else {
1435 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001436 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001437 Opc = X86::LOCK_ADD32mi8;
1438 else
1439 Opc = X86::LOCK_ADD32mi;
1440 } else
1441 Opc = X86::LOCK_ADD32mr;
1442 }
1443 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001444 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001445 if (isInc)
1446 Opc = X86::LOCK_INC64m;
1447 else if (isDec)
1448 Opc = X86::LOCK_DEC64m;
1449 else if (isSub) {
1450 Opc = X86::LOCK_SUB64mr;
1451 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001452 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001453 Opc = X86::LOCK_SUB64mi8;
1454 else if (Predicate_i64immSExt32(Val.getNode()))
1455 Opc = X86::LOCK_SUB64mi32;
1456 }
1457 } else {
1458 Opc = X86::LOCK_ADD64mr;
1459 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001460 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001461 Opc = X86::LOCK_ADD64mi8;
1462 else if (Predicate_i64immSExt32(Val.getNode()))
1463 Opc = X86::LOCK_ADD64mi32;
1464 }
1465 }
1466 break;
1467 }
1468
1469 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001470 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001471 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001472 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1473 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001474 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001475 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1476 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1477 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001478 SDValue RetVals[] = { Undef, Ret };
1479 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1480 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001481 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1482 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1483 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001484 SDValue RetVals[] = { Undef, Ret };
1485 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1486 }
1487}
1488
Dan Gohman11596ed2009-10-09 20:35:19 +00001489/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1490/// any uses which require the SF or OF bits to be accurate.
1491static bool HasNoSignedComparisonUses(SDNode *N) {
1492 // Examine each user of the node.
1493 for (SDNode::use_iterator UI = N->use_begin(),
1494 UE = N->use_end(); UI != UE; ++UI) {
1495 // Only examine CopyToReg uses.
1496 if (UI->getOpcode() != ISD::CopyToReg)
1497 return false;
1498 // Only examine CopyToReg uses that copy to EFLAGS.
1499 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1500 X86::EFLAGS)
1501 return false;
1502 // Examine each user of the CopyToReg use.
1503 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1504 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1505 // Only examine the Flag result.
1506 if (FlagUI.getUse().getResNo() != 1) continue;
1507 // Anything unusual: assume conservatively.
1508 if (!FlagUI->isMachineOpcode()) return false;
1509 // Examine the opcode of the user.
1510 switch (FlagUI->getMachineOpcode()) {
1511 // These comparisons don't treat the most significant bit specially.
1512 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1513 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1514 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1515 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001516 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1517 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001518 case X86::CMOVA16rr: case X86::CMOVA16rm:
1519 case X86::CMOVA32rr: case X86::CMOVA32rm:
1520 case X86::CMOVA64rr: case X86::CMOVA64rm:
1521 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1522 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1523 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1524 case X86::CMOVB16rr: case X86::CMOVB16rm:
1525 case X86::CMOVB32rr: case X86::CMOVB32rm:
1526 case X86::CMOVB64rr: case X86::CMOVB64rm:
1527 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1528 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1529 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1530 case X86::CMOVE16rr: case X86::CMOVE16rm:
1531 case X86::CMOVE32rr: case X86::CMOVE32rm:
1532 case X86::CMOVE64rr: case X86::CMOVE64rm:
1533 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1534 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1535 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1536 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1537 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1538 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1539 case X86::CMOVP16rr: case X86::CMOVP16rm:
1540 case X86::CMOVP32rr: case X86::CMOVP32rm:
1541 case X86::CMOVP64rr: case X86::CMOVP64rm:
1542 continue;
1543 // Anything else: assume conservatively.
1544 default: return false;
1545 }
1546 }
1547 }
1548 return true;
1549}
1550
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001551SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001552 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001553 unsigned Opc, MOpc;
1554 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001555 DebugLoc dl = Node->getDebugLoc();
1556
Chris Lattner7c306da2010-03-02 06:34:30 +00001557 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001558
Dan Gohmane8be6c62008-07-17 19:10:17 +00001559 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001560 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001561 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001562 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001563
Evan Cheng0114e942006-01-06 20:36:21 +00001564 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001565 default: break;
1566 case X86ISD::GlobalBaseReg:
1567 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001568
Dan Gohman72677342009-08-02 16:10:52 +00001569 case X86ISD::ATOMOR64_DAG:
1570 return SelectAtomic64(Node, X86::ATOMOR6432);
1571 case X86ISD::ATOMXOR64_DAG:
1572 return SelectAtomic64(Node, X86::ATOMXOR6432);
1573 case X86ISD::ATOMADD64_DAG:
1574 return SelectAtomic64(Node, X86::ATOMADD6432);
1575 case X86ISD::ATOMSUB64_DAG:
1576 return SelectAtomic64(Node, X86::ATOMSUB6432);
1577 case X86ISD::ATOMNAND64_DAG:
1578 return SelectAtomic64(Node, X86::ATOMNAND6432);
1579 case X86ISD::ATOMAND64_DAG:
1580 return SelectAtomic64(Node, X86::ATOMAND6432);
1581 case X86ISD::ATOMSWAP64_DAG:
1582 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001583
Dan Gohman72677342009-08-02 16:10:52 +00001584 case ISD::ATOMIC_LOAD_ADD: {
1585 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1586 if (RetVal)
1587 return RetVal;
1588 break;
1589 }
1590
1591 case ISD::SMUL_LOHI:
1592 case ISD::UMUL_LOHI: {
1593 SDValue N0 = Node->getOperand(0);
1594 SDValue N1 = Node->getOperand(1);
1595
1596 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001597 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001598 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001599 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001600 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1601 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1602 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1603 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001604 }
Bill Wendling12321672009-08-07 21:33:25 +00001605 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001606 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001607 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001608 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1609 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1610 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1611 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001612 }
Bill Wendling12321672009-08-07 21:33:25 +00001613 }
Dan Gohman72677342009-08-02 16:10:52 +00001614
1615 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001616 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001617 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001618 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1619 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1620 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1621 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001622 }
1623
1624 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001625 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001626 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001627 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001628 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001629 if (foldedLoad)
1630 std::swap(N0, N1);
1631 }
1632
1633 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1634 N0, SDValue()).getValue(1);
1635
1636 if (foldedLoad) {
1637 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1638 InFlag };
1639 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001640 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1641 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001642 InFlag = SDValue(CNode, 1);
1643 // Update the chain.
1644 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1645 } else {
1646 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001647 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001648 }
1649
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001650 // Prevent use of AH in a REX instruction by referencing AX instead.
1651 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1652 !SDValue(Node, 1).use_empty()) {
1653 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1654 X86::AX, MVT::i16, InFlag);
1655 InFlag = Result.getValue(2);
1656 // Get the low part if needed. Don't use getCopyFromReg for aliasing
1657 // registers.
1658 if (!SDValue(Node, 0).use_empty())
1659 ReplaceUses(SDValue(Node, 1),
1660 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1661
1662 // Shift AX down 8 bits.
1663 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1664 Result,
1665 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1666 // Then truncate it down to i8.
1667 ReplaceUses(SDValue(Node, 1),
1668 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1669 }
Dan Gohman72677342009-08-02 16:10:52 +00001670 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001671 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001672 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1673 LoReg, NVT, InFlag);
1674 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001675 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001676 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001677 }
1678 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001679 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001680 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1681 HiReg, NVT, InFlag);
1682 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001683 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001684 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001685 }
1686
Dan Gohman72677342009-08-02 16:10:52 +00001687 return NULL;
1688 }
1689
1690 case ISD::SDIVREM:
1691 case ISD::UDIVREM: {
1692 SDValue N0 = Node->getOperand(0);
1693 SDValue N1 = Node->getOperand(1);
1694
1695 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001696 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001697 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001698 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001699 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1700 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1701 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1702 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001703 }
Bill Wendling12321672009-08-07 21:33:25 +00001704 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001705 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001706 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001707 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1708 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1709 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1710 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001711 }
Bill Wendling12321672009-08-07 21:33:25 +00001712 }
Dan Gohman72677342009-08-02 16:10:52 +00001713
Chris Lattner9e323832009-12-23 01:45:04 +00001714 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001715 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001716 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001717 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001718 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001719 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001720 ClrOpcode = 0;
1721 SExtOpcode = X86::CBW;
1722 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001723 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001724 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001725 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001726 SExtOpcode = X86::CWD;
1727 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001728 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001729 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001730 ClrOpcode = X86::MOV32r0;
1731 SExtOpcode = X86::CDQ;
1732 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001733 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001734 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001735 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001736 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001737 break;
1738 }
1739
Dan Gohman72677342009-08-02 16:10:52 +00001740 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001741 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001742 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001743
Dan Gohman72677342009-08-02 16:10:52 +00001744 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001745 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001746 // Special case for div8, just use a move with zero extension to AX to
1747 // clear the upper 8 bits (AH).
1748 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001749 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001750 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1751 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001752 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1753 MVT::Other, Ops,
1754 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001755 Chain = Move.getValue(1);
1756 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001757 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001758 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001759 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001760 Chain = CurDAG->getEntryNode();
1761 }
1762 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1763 InFlag = Chain.getValue(1);
1764 } else {
1765 InFlag =
1766 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1767 LoReg, N0, SDValue()).getValue(1);
1768 if (isSigned && !signBitIsZero) {
1769 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001770 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001771 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001772 } else {
1773 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001774 SDValue ClrNode =
1775 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001776 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001777 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001778 }
Evan Cheng948f3432006-01-06 23:19:29 +00001779 }
Dan Gohman525178c2007-10-08 18:33:35 +00001780
Dan Gohman72677342009-08-02 16:10:52 +00001781 if (foldedLoad) {
1782 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1783 InFlag };
1784 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001785 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1786 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001787 InFlag = SDValue(CNode, 1);
1788 // Update the chain.
1789 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1790 } else {
1791 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001792 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001793 }
Evan Cheng948f3432006-01-06 23:19:29 +00001794
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001795 // Prevent use of AH in a REX instruction by referencing AX instead.
1796 // Shift it down 8 bits.
1797 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1798 !SDValue(Node, 1).use_empty()) {
1799 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1800 X86::AX, MVT::i16, InFlag);
1801 InFlag = Result.getValue(2);
1802
1803 // If we also need AL (the quotient), get it by extracting a subreg from
1804 // Result. The fast register allocator does not like multiple CopyFromReg
1805 // nodes using aliasing registers.
1806 if (!SDValue(Node, 0).use_empty())
1807 ReplaceUses(SDValue(Node, 0),
1808 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1809
1810 // Shift AX right by 8 bits instead of using AH.
1811 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1812 Result,
1813 CurDAG->getTargetConstant(8, MVT::i8)),
1814 0);
1815 ReplaceUses(SDValue(Node, 1),
1816 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1817 }
Dan Gohman72677342009-08-02 16:10:52 +00001818 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001819 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001820 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1821 LoReg, NVT, InFlag);
1822 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001823 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001824 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001825 }
1826 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001827 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001828 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1829 HiReg, NVT, InFlag);
1830 InFlag = Result.getValue(2);
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.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00001843 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse())
1844 // Look past the truncate if CMP is the only use of it.
1845 N0 = N0.getOperand(0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001846 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
1847 N0.getValueType() != MVT::i8 &&
1848 X86::isZeroNode(N1)) {
1849 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
1850 if (!C) break;
1851
1852 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00001853 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
1854 (!(C->getZExtValue() & 0x80) ||
1855 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001856 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
1857 SDValue Reg = N0.getNode()->getOperand(0);
1858
1859 // On x86-32, only the ABCD registers have 8-bit subregisters.
1860 if (!Subtarget->is64Bit()) {
1861 TargetRegisterClass *TRC = 0;
1862 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1863 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1864 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1865 default: llvm_unreachable("Unsupported TEST operand type!");
1866 }
1867 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001868 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1869 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001870 }
1871
1872 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001873 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001874 MVT::i8, Reg);
1875
1876 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00001877 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001878 }
1879
1880 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00001881 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
1882 (!(C->getZExtValue() & 0x8000) ||
1883 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001884 // Shift the immediate right by 8 bits.
1885 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
1886 MVT::i8);
1887 SDValue Reg = N0.getNode()->getOperand(0);
1888
1889 // Put the value in an ABCD register.
1890 TargetRegisterClass *TRC = 0;
1891 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1892 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
1893 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1894 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1895 default: llvm_unreachable("Unsupported TEST operand type!");
1896 }
1897 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001898 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1899 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001900
1901 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001902 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001903 MVT::i8, Reg);
1904
1905 // Emit a testb. No special NOREX tricks are needed since there's
1906 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00001907 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
1908 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001909 }
1910
1911 // For example, "testl %eax, $32776" to "testw %ax, $32776".
1912 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001913 N0.getValueType() != MVT::i16 &&
1914 (!(C->getZExtValue() & 0x8000) ||
1915 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001916 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
1917 SDValue Reg = N0.getNode()->getOperand(0);
1918
1919 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001920 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001921 MVT::i16, Reg);
1922
1923 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00001924 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001925 }
1926
1927 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
1928 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001929 N0.getValueType() == MVT::i64 &&
1930 (!(C->getZExtValue() & 0x80000000) ||
1931 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001932 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
1933 SDValue Reg = N0.getNode()->getOperand(0);
1934
1935 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001936 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001937 MVT::i32, Reg);
1938
1939 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00001940 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001941 }
1942 }
1943 break;
1944 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00001945 }
1946
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001947 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00001948
Chris Lattner7c306da2010-03-02 06:34:30 +00001949 DEBUG(dbgs() << "=> ";
1950 if (ResNode == NULL || ResNode == Node)
1951 Node->dump(CurDAG);
1952 else
1953 ResNode->dump(CurDAG);
1954 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001955
1956 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00001957}
1958
Chris Lattnerc0bad572006-06-08 18:03:49 +00001959bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00001960SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00001961 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00001962 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00001963 switch (ConstraintCode) {
1964 case 'o': // offsetable ??
1965 case 'v': // not offsetable ??
1966 default: return true;
1967 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001968 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00001969 return true;
1970 break;
1971 }
1972
Evan Cheng04699902006-08-26 01:05:16 +00001973 OutOps.push_back(Op0);
1974 OutOps.push_back(Op1);
1975 OutOps.push_back(Op2);
1976 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001977 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00001978 return false;
1979}
1980
Chris Lattnerc961eea2005-11-16 01:54:32 +00001981/// createX86ISelDag - This pass converts a legalized DAG into a
1982/// X86-specific DAG, ready for instruction scheduling.
1983///
Bill Wendling98a366d2009-04-29 23:29:43 +00001984FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
1985 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001986 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00001987}