blob: 72f2bc11d7cc738bc017112a2d3de34a5185dcda [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,
Chris Lattner599b5312010-07-08 23:46:44 +0000193 SDValue &Scale, SDValue &Index, SDValue &Disp,
194 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000195 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000196 SDValue &Scale, SDValue &Index, SDValue &Disp,
197 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000198 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000199 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000200 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000201 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000202 SDValue &NodeWithChain);
203
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000204 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000206 SDValue &Index, SDValue &Disp,
207 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000208
Chris Lattnerc0bad572006-06-08 18:03:49 +0000209 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
210 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000211 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000212 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000213 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000214
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000215 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
216
Dan Gohman475871a2008-07-27 21:46:04 +0000217 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
218 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000219 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000220 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000221 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
222 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000223 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000224 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000225 // These are 32-bit even in 64-bit mode since RIP relative offset
226 // is 32-bit.
227 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000228 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
229 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000230 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000231 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000232 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000233 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000234 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000235 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000236 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000237 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000238 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000239 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
240 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000241 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000242 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000243
244 if (AM.Segment.getNode())
245 Segment = AM.Segment;
246 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000248 }
249
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000250 /// getI8Imm - Return a target constant with the specified value, of type
251 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000252 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000253 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000254 }
255
Chris Lattnerc961eea2005-11-16 01:54:32 +0000256 /// getI16Imm - Return a target constant with the specified value, of type
257 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000258 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000260 }
261
262 /// getI32Imm - Return a target constant with the specified value, of type
263 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000264 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000266 }
Evan Chengf597dc72006-02-10 22:24:32 +0000267
Dan Gohman8b746962008-09-23 18:22:58 +0000268 /// getGlobalBaseReg - Return an SDNode that returns the value of
269 /// the global base register. Output instructions required to
270 /// initialize the global base register, if necessary.
271 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000272 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000273
Dan Gohmanc5534622009-06-03 20:20:00 +0000274 /// getTargetMachine - Return a reference to the TargetMachine, casted
275 /// to the target-specific type.
276 const X86TargetMachine &getTargetMachine() {
277 return static_cast<const X86TargetMachine &>(TM);
278 }
279
280 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
281 /// to the target-specific type.
282 const X86InstrInfo *getInstrInfo() {
283 return getTargetMachine().getInstrInfo();
284 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000285 };
286}
287
Evan Chengf4b4c412006-08-08 00:31:00 +0000288
Evan Cheng014bf212010-02-15 19:41:07 +0000289bool
290X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000291 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000292
Evan Cheng014bf212010-02-15 19:41:07 +0000293 if (!N.hasOneUse())
294 return false;
295
296 if (N.getOpcode() != ISD::LOAD)
297 return true;
298
299 // If N is a load, do additional profitability checks.
300 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000301 switch (U->getOpcode()) {
302 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000303 case X86ISD::ADD:
304 case X86ISD::SUB:
305 case X86ISD::AND:
306 case X86ISD::XOR:
307 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000308 case ISD::ADD:
309 case ISD::ADDC:
310 case ISD::ADDE:
311 case ISD::AND:
312 case ISD::OR:
313 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000314 SDValue Op1 = U->getOperand(1);
315
Evan Cheng884c70c2008-11-27 00:49:46 +0000316 // If the other operand is a 8-bit immediate we should fold the immediate
317 // instead. This reduces code size.
318 // e.g.
319 // movl 4(%esp), %eax
320 // addl $4, %eax
321 // vs.
322 // movl $4, %eax
323 // addl 4(%esp), %eax
324 // The former is 2 bytes shorter. In case where the increment is 1, then
325 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000326 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000327 if (Imm->getAPIntValue().isSignedIntN(8))
328 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000329
330 // If the other operand is a TLS address, we should fold it instead.
331 // This produces
332 // movl %gs:0, %eax
333 // leal i@NTPOFF(%eax), %eax
334 // instead of
335 // movl $i@NTPOFF, %eax
336 // addl %gs:0, %eax
337 // if the block also has an access to a second TLS address this will save
338 // a load.
339 // FIXME: This is probably also true for non TLS addresses.
340 if (Op1.getOpcode() == X86ISD::Wrapper) {
341 SDValue Val = Op1.getOperand(0);
342 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
343 return false;
344 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000345 }
346 }
Evan Cheng014bf212010-02-15 19:41:07 +0000347 }
348
349 return true;
350}
351
Evan Chengf48ef032010-03-14 03:48:46 +0000352/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
353/// load's chain operand and move load below the call's chain operand.
354static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
355 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000356 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000357 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000358 if (Chain.getNode() == Load.getNode())
359 Ops.push_back(Load.getOperand(0));
360 else {
361 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000362 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000363 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
364 if (Chain.getOperand(i).getNode() == Load.getNode())
365 Ops.push_back(Load.getOperand(0));
366 else
367 Ops.push_back(Chain.getOperand(i));
368 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000369 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000370 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000371 Ops.clear();
372 Ops.push_back(NewChain);
373 }
Evan Chengf48ef032010-03-14 03:48:46 +0000374 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
375 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000376 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
377 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000378 Load.getOperand(1), Load.getOperand(2));
379 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000380 Ops.push_back(SDValue(Load.getNode(), 1));
381 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000382 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000383 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000384}
385
386/// isCalleeLoad - Return true if call address is a load and it can be
387/// moved below CALLSEQ_START and the chains leading up to the call.
388/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000389/// In the case of a tail call, there isn't a callseq node between the call
390/// chain and the load.
391static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000392 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000393 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000394 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000395 if (!LD ||
396 LD->isVolatile() ||
397 LD->getAddressingMode() != ISD::UNINDEXED ||
398 LD->getExtensionType() != ISD::NON_EXTLOAD)
399 return false;
400
401 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000402 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000403 if (!Chain.hasOneUse())
404 return false;
405 Chain = Chain.getOperand(0);
406 }
Evan Chengf48ef032010-03-14 03:48:46 +0000407
408 if (!Chain.getNumOperands())
409 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000410 if (Chain.getOperand(0).getNode() == Callee.getNode())
411 return true;
412 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000413 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
414 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000415 return true;
416 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000417}
418
Chris Lattnerfb444af2010-03-02 23:12:51 +0000419void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000420 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000421 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
422
Dan Gohmanf350b272008-08-23 02:25:05 +0000423 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
424 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000425 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000426
Evan Chengf48ef032010-03-14 03:48:46 +0000427 if (OptLevel != CodeGenOpt::None &&
428 (N->getOpcode() == X86ISD::CALL ||
429 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000430 /// Also try moving call address load from outside callseq_start to just
431 /// before the call to allow it to be folded.
432 ///
433 /// [Load chain]
434 /// ^
435 /// |
436 /// [Load]
437 /// ^ ^
438 /// | |
439 /// / \--
440 /// / |
441 ///[CALLSEQ_START] |
442 /// ^ |
443 /// | |
444 /// [LOAD/C2Reg] |
445 /// | |
446 /// \ /
447 /// \ /
448 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000449 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000450 SDValue Chain = N->getOperand(0);
451 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000452 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000453 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000454 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000455 ++NumLoadMoved;
456 continue;
457 }
458
459 // Lower fpround and fpextend nodes that target the FP stack to be store and
460 // load to the stack. This is a gross hack. We would like to simply mark
461 // these as being illegal, but when we do that, legalize produces these when
462 // it expands calls, then expands these in the same legalize pass. We would
463 // like dag combine to be able to hack on these between the call expansion
464 // and the node legalization. As such this pass basically does "really
465 // late" legalization of these inline with the X86 isel pass.
466 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000467 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
468 continue;
469
470 // If the source and destination are SSE registers, then this is a legal
471 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000472 EVT SrcVT = N->getOperand(0).getValueType();
473 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000474 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
475 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
476 if (SrcIsSSE && DstIsSSE)
477 continue;
478
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000479 if (!SrcIsSSE && !DstIsSSE) {
480 // If this is an FPStack extension, it is a noop.
481 if (N->getOpcode() == ISD::FP_EXTEND)
482 continue;
483 // If this is a value-preserving FPStack truncation, it is a noop.
484 if (N->getConstantOperandVal(1))
485 continue;
486 }
487
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000488 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
489 // FPStack has extload and truncstore. SSE can fold direct loads into other
490 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000491 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000492 if (N->getOpcode() == ISD::FP_ROUND)
493 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
494 else
495 MemVT = SrcIsSSE ? SrcVT : DstVT;
496
Dan Gohmanf350b272008-08-23 02:25:05 +0000497 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000498 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000499
500 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000501 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000502 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000503 MemTmp, NULL, 0, MemVT,
504 false, false, 0);
Evan Chengbcc80172010-07-07 22:15:37 +0000505 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, DstVT, dl, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000506 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000507
508 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
509 // extload we created. This will cause general havok on the dag because
510 // anything below the conversion could be folded into other existing nodes.
511 // To avoid invalidating 'I', back it up to the convert node.
512 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000513 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000514
515 // Now that we did that, the node is dead. Increment the iterator to the
516 // next node to process, then delete N.
517 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000518 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000519 }
520}
521
Chris Lattnerc961eea2005-11-16 01:54:32 +0000522
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000523/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
524/// the main function.
525void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
526 MachineFrameInfo *MFI) {
527 const TargetInstrInfo *TII = TM.getInstrInfo();
528 if (Subtarget->isTargetCygMing())
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000529 BuildMI(BB, DebugLoc(),
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000530 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000531}
532
Dan Gohman64652652010-04-14 20:17:22 +0000533void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000534 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000535 if (const Function *Fn = MF->getFunction())
536 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
537 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000538}
539
Rafael Espindola094fad32009-04-08 21:14:34 +0000540
541bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
542 X86ISelAddressMode &AM) {
543 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
544 SDValue Segment = N.getOperand(0);
545
546 if (AM.Segment.getNode() == 0) {
547 AM.Segment = Segment;
548 return false;
549 }
550
551 return true;
552}
553
554bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
555 // This optimization is valid because the GNU TLS model defines that
556 // gs:0 (or fs:0 on X86-64) contains its own address.
557 // For more information see http://people.redhat.com/drepper/tls.pdf
558
559 SDValue Address = N.getOperand(1);
560 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
561 !MatchSegmentBaseAddress (Address, AM))
562 return false;
563
564 return true;
565}
566
Chris Lattner18c59872009-06-27 04:16:01 +0000567/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
568/// into an addressing mode. These wrap things that will resolve down into a
569/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000570/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000571bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000572 // If the addressing mode already has a symbol as the displacement, we can
573 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000574 if (AM.hasSymbolicDisplacement())
575 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000576
577 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000578 CodeModel::Model M = TM.getCodeModel();
579
Chris Lattner18c59872009-06-27 04:16:01 +0000580 // Handle X86-64 rip-relative addresses. We check this before checking direct
581 // folding because RIP is preferable to non-RIP accesses.
582 if (Subtarget->is64Bit() &&
583 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
584 // they cannot be folded into immediate fields.
585 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000586 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000587 // Base and index reg must be 0 in order to use %rip as base and lowering
588 // must allow RIP.
589 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000590 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
591 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000592 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000593 AM.GV = G->getGlobal();
594 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000595 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000596 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
597 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000598 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000599 AM.CP = CP->getConstVal();
600 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000601 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000602 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000603 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
604 AM.ES = S->getSymbol();
605 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000606 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000607 AM.JT = J->getIndex();
608 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000609 } else {
610 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000611 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000612 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000613
Chris Lattner18c59872009-06-27 04:16:01 +0000614 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000615 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000616 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000617 }
618
619 // Handle the case when globals fit in our immediate field: This is true for
620 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
621 // mode, this results in a non-RIP-relative computation.
622 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000623 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000624 TM.getRelocationModel() == Reloc::Static)) {
625 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
626 AM.GV = G->getGlobal();
627 AM.Disp += G->getOffset();
628 AM.SymbolFlags = G->getTargetFlags();
629 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
630 AM.CP = CP->getConstVal();
631 AM.Align = CP->getAlignment();
632 AM.Disp += CP->getOffset();
633 AM.SymbolFlags = CP->getTargetFlags();
634 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
635 AM.ES = S->getSymbol();
636 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000637 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000638 AM.JT = J->getIndex();
639 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000640 } else {
641 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000642 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000643 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000644 return false;
645 }
646
647 return true;
648}
649
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000650/// MatchAddress - Add the specified node to the specified addressing mode,
651/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000652/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000653bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000654 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000655 return true;
656
657 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
658 // a smaller encoding and avoids a scaled-index.
659 if (AM.Scale == 2 &&
660 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000661 AM.Base_Reg.getNode() == 0) {
662 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000663 AM.Scale = 1;
664 }
665
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000666 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
667 // because it has a smaller encoding.
668 // TODO: Which other code models can use this?
669 if (TM.getCodeModel() == CodeModel::Small &&
670 Subtarget->is64Bit() &&
671 AM.Scale == 1 &&
672 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000673 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000674 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000675 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000676 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000677 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000678
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000679 return false;
680}
681
Chris Lattnerd6139422010-04-20 23:18:40 +0000682/// isLogicallyAddWithConstant - Return true if this node is semantically an
683/// add of a value with a constantint.
684static bool isLogicallyAddWithConstant(SDValue V, SelectionDAG *CurDAG) {
685 // Check for (add x, Cst)
686 if (V->getOpcode() == ISD::ADD)
687 return isa<ConstantSDNode>(V->getOperand(1));
688
689 // Check for (or x, Cst), where Cst & x == 0.
690 if (V->getOpcode() != ISD::OR ||
691 !isa<ConstantSDNode>(V->getOperand(1)))
692 return false;
693
694 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
695 ConstantSDNode *CN = cast<ConstantSDNode>(V->getOperand(1));
696
697 // Check to see if the LHS & C is zero.
698 return CurDAG->MaskedValueIsZero(V->getOperand(0), CN->getAPIntValue());
699}
700
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000701bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
702 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000703 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000704 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000705 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000706 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000707 AM.dump();
708 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000709 // Limit recursion.
710 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000711 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000712
713 CodeModel::Model M = TM.getCodeModel();
714
Chris Lattner18c59872009-06-27 04:16:01 +0000715 // If this is already a %rip relative address, we can only merge immediates
716 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000717 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000718 if (AM.isRIPRelative()) {
719 // FIXME: JumpTable and ExternalSymbol address currently don't like
720 // displacements. It isn't very important, but this should be fixed for
721 // consistency.
722 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000723
Chris Lattner18c59872009-06-27 04:16:01 +0000724 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
725 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000726 if (X86::isOffsetSuitableForCodeModel(Val, M,
727 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000728 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000729 return false;
730 }
731 }
732 return true;
733 }
734
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000735 switch (N.getOpcode()) {
736 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000737 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000738 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000739 if (!is64Bit ||
740 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
741 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000742 AM.Disp += Val;
743 return false;
744 }
745 break;
746 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000747
Rafael Espindola094fad32009-04-08 21:14:34 +0000748 case X86ISD::SegmentBaseAddress:
749 if (!MatchSegmentBaseAddress(N, AM))
750 return false;
751 break;
752
Rafael Espindola49a168d2009-04-12 21:55:03 +0000753 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000754 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000755 if (!MatchWrapper(N, AM))
756 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000757 break;
758
Rafael Espindola094fad32009-04-08 21:14:34 +0000759 case ISD::LOAD:
760 if (!MatchLoad(N, AM))
761 return false;
762 break;
763
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000764 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000765 if (AM.BaseType == X86ISelAddressMode::RegBase
Dan Gohmanffce6f12010-04-29 23:30:41 +0000766 && AM.Base_Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000767 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000768 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000769 return false;
770 }
771 break;
Evan Chengec693f72005-12-08 02:01:35 +0000772
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000773 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000774 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000775 break;
776
Gabor Greif93c53e52008-08-31 15:37:04 +0000777 if (ConstantSDNode
778 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000779 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000780 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
781 // that the base operand remains free for further matching. If
782 // the base doesn't end up getting used, a post-processing step
783 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000784 if (Val == 1 || Val == 2 || Val == 3) {
785 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000786 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000787
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000788 // Okay, we know that we have a scale by now. However, if the scaled
789 // value is an add of something and a constant, we can fold the
790 // constant into the disp field here.
Chris Lattnerd6139422010-04-20 23:18:40 +0000791 if (isLogicallyAddWithConstant(ShVal, CurDAG)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000792 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000793 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000794 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000795 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000796 if (!is64Bit ||
797 X86::isOffsetSuitableForCodeModel(Disp, M,
798 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000799 AM.Disp = Disp;
800 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000801 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000802 } else {
803 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000804 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000805 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000806 }
807 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000808 }
Evan Chengec693f72005-12-08 02:01:35 +0000809
Dan Gohman83688052007-10-22 20:22:24 +0000810 case ISD::SMUL_LOHI:
811 case ISD::UMUL_LOHI:
812 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000813 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000814 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000815 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000816 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000817 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000818 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000819 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000820 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000821 if (ConstantSDNode
822 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000823 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
824 CN->getZExtValue() == 9) {
825 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000826
Gabor Greifba36cb52008-08-28 21:40:38 +0000827 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000828 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000829
830 // Okay, we know that we have a scale by now. However, if the scaled
831 // value is an add of something and a constant, we can fold the
832 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000833 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
834 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
835 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000836 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000837 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000838 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000839 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000840 if (!is64Bit ||
841 X86::isOffsetSuitableForCodeModel(Disp, M,
842 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000843 AM.Disp = Disp;
844 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000845 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000846 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000847 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000848 }
849
Dan Gohmanffce6f12010-04-29 23:30:41 +0000850 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000851 return false;
852 }
Chris Lattner62412262007-02-04 20:18:17 +0000853 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000854 break;
855
Dan Gohman3cd90a12009-05-11 18:02:53 +0000856 case ISD::SUB: {
857 // Given A-B, if A can be completely folded into the address and
858 // the index field with the index field unused, use -B as the index.
859 // This is a win if a has multiple parts that can be folded into
860 // the address. Also, this saves a mov if the base register has
861 // other uses, since it avoids a two-address sub instruction, however
862 // it costs an additional mov if the index register has other uses.
863
Dan Gohmane5408102010-06-18 01:24:29 +0000864 // Add an artificial use to this node so that we can keep track of
865 // it if it gets CSE'd with a different node.
866 HandleSDNode Handle(N);
867
Dan Gohman3cd90a12009-05-11 18:02:53 +0000868 // Test if the LHS of the sub can be folded.
869 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000870 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000871 AM = Backup;
872 break;
873 }
874 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000875 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000876 AM = Backup;
877 break;
878 }
Evan Chengf3caa522010-03-17 23:58:35 +0000879
Dan Gohman3cd90a12009-05-11 18:02:53 +0000880 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +0000881 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +0000882 // If the RHS involves a register with multiple uses, this
883 // transformation incurs an extra mov, due to the neg instruction
884 // clobbering its operand.
885 if (!RHS.getNode()->hasOneUse() ||
886 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
887 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
888 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
889 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000890 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000891 ++Cost;
892 // If the base is a register with multiple uses, this
893 // transformation may save a mov.
894 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000895 AM.Base_Reg.getNode() &&
896 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +0000897 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
898 --Cost;
899 // If the folded LHS was interesting, this transformation saves
900 // address arithmetic.
901 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
902 ((AM.Disp != 0) && (Backup.Disp == 0)) +
903 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
904 --Cost;
905 // If it doesn't look like it may be an overall win, don't do it.
906 if (Cost >= 0) {
907 AM = Backup;
908 break;
909 }
910
911 // Ok, the transformation is legal and appears profitable. Go for it.
912 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
913 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
914 AM.IndexReg = Neg;
915 AM.Scale = 1;
916
917 // Insert the new nodes into the topological ordering.
918 if (Zero.getNode()->getNodeId() == -1 ||
919 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
920 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
921 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
922 }
923 if (Neg.getNode()->getNodeId() == -1 ||
924 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
925 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
926 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
927 }
928 return false;
929 }
930
Evan Cheng8e278262009-01-17 07:09:27 +0000931 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +0000932 // Add an artificial use to this node so that we can keep track of
933 // it if it gets CSE'd with a different node.
934 HandleSDNode Handle(N);
935 SDValue LHS = Handle.getValue().getNode()->getOperand(0);
936 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
937
Evan Cheng8e278262009-01-17 07:09:27 +0000938 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000939 if (!MatchAddressRecursively(LHS, AM, Depth+1) &&
940 !MatchAddressRecursively(RHS, AM, Depth+1))
941 return false;
942 AM = Backup;
943 LHS = Handle.getValue().getNode()->getOperand(0);
944 RHS = Handle.getValue().getNode()->getOperand(1);
Evan Chengf3caa522010-03-17 23:58:35 +0000945
946 // Try again after commuting the operands.
Dan Gohmane5408102010-06-18 01:24:29 +0000947 if (!MatchAddressRecursively(RHS, AM, Depth+1) &&
948 !MatchAddressRecursively(LHS, AM, Depth+1))
949 return false;
Evan Cheng8e278262009-01-17 07:09:27 +0000950 AM = Backup;
Dan Gohmane5408102010-06-18 01:24:29 +0000951 LHS = Handle.getValue().getNode()->getOperand(0);
952 RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +0000953
954 // If we couldn't fold both operands into the address at the same time,
955 // see if we can just put each operand into a register and fold at least
956 // the add.
957 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000958 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000959 !AM.IndexReg.getNode()) {
Dan Gohmane5408102010-06-18 01:24:29 +0000960 AM.Base_Reg = LHS;
961 AM.IndexReg = RHS;
Dan Gohman77502c92009-03-13 02:25:09 +0000962 AM.Scale = 1;
963 return false;
964 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000965 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000966 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000967
Chris Lattner62412262007-02-04 20:18:17 +0000968 case ISD::OR:
969 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattnerd6139422010-04-20 23:18:40 +0000970 if (isLogicallyAddWithConstant(N, CurDAG)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000971 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +0000972 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Dan Gohman27cae7b2008-11-11 15:52:29 +0000973 uint64_t Offset = CN->getSExtValue();
Evan Chengf3caa522010-03-17 23:58:35 +0000974
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000975 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +0000976 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000977 // Address could not have picked a GV address for the displacement.
978 AM.GV == NULL &&
979 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000980 (!is64Bit ||
981 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
Evan Chengf3caa522010-03-17 23:58:35 +0000982 AM.hasSymbolicDisplacement()))) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000983 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000984 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000985 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000986 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000987 }
988 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000989
990 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000991 // Perform some heroic transforms on an and of a constant-count shift
992 // with a constant to enable use of the scaled offset field.
993
Dan Gohman475871a2008-07-27 21:46:04 +0000994 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000995 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000996
Evan Cheng1314b002007-12-13 00:43:27 +0000997 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000998 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000999
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001000 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001001 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1002 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1003 if (!C1 || !C2) break;
1004
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001005 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1006 // allows us to convert the shift and and into an h-register extract and
1007 // a scaled index.
1008 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1009 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001010 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001011 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001012 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001013 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1014 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1015 X, Eight);
1016 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1017 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001018 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001019 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1020 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001021
1022 // Insert the new nodes into the topological ordering.
1023 if (Eight.getNode()->getNodeId() == -1 ||
1024 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1025 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1026 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1027 }
1028 if (Mask.getNode()->getNodeId() == -1 ||
1029 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1030 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1031 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1032 }
1033 if (Srl.getNode()->getNodeId() == -1 ||
1034 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1035 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1036 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1037 }
1038 if (And.getNode()->getNodeId() == -1 ||
1039 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1040 CurDAG->RepositionNode(N.getNode(), And.getNode());
1041 And.getNode()->setNodeId(N.getNode()->getNodeId());
1042 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001043 if (ShlCount.getNode()->getNodeId() == -1 ||
1044 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1045 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1046 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1047 }
1048 if (Shl.getNode()->getNodeId() == -1 ||
1049 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1050 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1051 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1052 }
Dan Gohmane5408102010-06-18 01:24:29 +00001053 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001054 AM.IndexReg = And;
1055 AM.Scale = (1 << ScaleLog);
1056 return false;
1057 }
1058 }
1059
1060 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1061 // allows us to fold the shift into this addressing mode.
1062 if (Shift.getOpcode() != ISD::SHL) break;
1063
Evan Cheng1314b002007-12-13 00:43:27 +00001064 // Not likely to be profitable if either the AND or SHIFT node has more
1065 // than one use (unless all uses are for address computation). Besides,
1066 // isel mechanism requires their node ids to be reused.
1067 if (!N.hasOneUse() || !Shift.hasOneUse())
1068 break;
1069
1070 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001071 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001072 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1073 break;
1074
1075 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001076 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001077 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001078 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1079 NewANDMask);
1080 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001081 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001082
1083 // Insert the new nodes into the topological ordering.
1084 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1085 CurDAG->RepositionNode(X.getNode(), C1);
1086 C1->setNodeId(X.getNode()->getNodeId());
1087 }
1088 if (NewANDMask.getNode()->getNodeId() == -1 ||
1089 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1090 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1091 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1092 }
1093 if (NewAND.getNode()->getNodeId() == -1 ||
1094 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1095 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1096 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1097 }
1098 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1099 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1100 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1101 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1102 }
1103
Dan Gohmane5408102010-06-18 01:24:29 +00001104 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001105
1106 AM.Scale = 1 << ShiftCst;
1107 AM.IndexReg = NewAND;
1108 return false;
1109 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001110 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001111
Rafael Espindola523249f2009-03-31 16:16:57 +00001112 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001113}
1114
1115/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1116/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001117bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001118 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001119 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001120 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001121 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001122 AM.IndexReg = N;
1123 AM.Scale = 1;
1124 return false;
1125 }
1126
1127 // Otherwise, we cannot select it.
1128 return true;
1129 }
1130
1131 // Default, generate it as a register.
1132 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001133 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001134 return false;
1135}
1136
Evan Chengec693f72005-12-08 02:01:35 +00001137/// SelectAddr - returns true if it is able pattern match an addressing mode.
1138/// It returns the operands which make up the maximal addressing mode it can
1139/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001140bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001141 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001142 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001143 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001144 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001145 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001146
Owen Andersone50ed302009-08-10 22:56:29 +00001147 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001148 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001149 if (!AM.Base_Reg.getNode())
1150 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001151 }
Evan Cheng8700e142006-01-11 06:09:51 +00001152
Gabor Greifba36cb52008-08-28 21:40:38 +00001153 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001154 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001155
Rafael Espindola094fad32009-04-08 21:14:34 +00001156 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001157 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001158}
1159
Chris Lattner3a7cd952006-10-07 21:55:32 +00001160/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1161/// match a load whose top elements are either undef or zeros. The load flavor
1162/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001163///
1164/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001165/// PatternChainNode: this is the matched node that has a chain input and
1166/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001167bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001168 SDValue N, SDValue &Base,
1169 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001170 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001171 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001172 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001173 PatternNodeWithChain = N.getOperand(0);
1174 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1175 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001176 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001177 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001178 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001179 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001180 return false;
1181 return true;
1182 }
1183 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001184
1185 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001186 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001187 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001188 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001189 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001190 N.getOperand(0).getNode()->hasOneUse() &&
1191 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001192 N.getOperand(0).getOperand(0).hasOneUse() &&
1193 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001194 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001195 // Okay, this is a zero extending load. Fold it.
1196 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001197 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001198 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001199 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001200 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001201 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001202 return false;
1203}
1204
1205
Evan Cheng51a9ed92006-02-25 10:09:08 +00001206/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1207/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001208bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001209 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001210 SDValue &Index, SDValue &Disp,
1211 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001212 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001213
1214 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1215 // segments.
1216 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001217 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001218 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001219 if (MatchAddress(N, AM))
1220 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001221 assert (T == AM.Segment);
1222 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001223
Owen Andersone50ed302009-08-10 22:56:29 +00001224 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001225 unsigned Complexity = 0;
1226 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001227 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001228 Complexity = 1;
1229 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001230 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001231 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1232 Complexity = 4;
1233
Gabor Greifba36cb52008-08-28 21:40:38 +00001234 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001235 Complexity++;
1236 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001237 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001238
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001239 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1240 // a simple shift.
1241 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001242 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001243
1244 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1245 // to a LEA. This is determined with some expermentation but is by no means
1246 // optimal (especially for code size consideration). LEA is nice because of
1247 // its three-address nature. Tweak the cost function again when we can run
1248 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001249 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001250 // For X86-64, we should always use lea to materialize RIP relative
1251 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001252 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001253 Complexity = 4;
1254 else
1255 Complexity += 2;
1256 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001257
Dan Gohmanffce6f12010-04-29 23:30:41 +00001258 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001259 Complexity++;
1260
Chris Lattner25142782009-07-11 22:50:33 +00001261 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001262 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001263 return false;
1264
Chris Lattner25142782009-07-11 22:50:33 +00001265 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1266 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001267}
1268
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001269/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001270bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001271 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001272 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001273 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1274 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001275
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001276 X86ISelAddressMode AM;
1277 AM.GV = GA->getGlobal();
1278 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001279 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001280 AM.SymbolFlags = GA->getTargetFlags();
1281
Owen Anderson825b72b2009-08-11 20:47:22 +00001282 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001283 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001284 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001285 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001286 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001287 }
1288
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001289 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1290 return true;
1291}
1292
1293
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001294bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001295 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001296 SDValue &Index, SDValue &Disp,
1297 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001298 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1299 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001300 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001301 return false;
1302
1303 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001304}
1305
Dan Gohman8b746962008-09-23 18:22:58 +00001306/// getGlobalBaseReg - Return an SDNode that returns the value of
1307/// the global base register. Output instructions required to
1308/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001309///
Evan Cheng9ade2182006-08-26 05:34:46 +00001310SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001311 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001312 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001313}
1314
Evan Chengb245d922006-05-20 01:36:52 +00001315static SDNode *FindCallStartFromCall(SDNode *Node) {
1316 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001317 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001318 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001319 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001320}
1321
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001322SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1323 SDValue Chain = Node->getOperand(0);
1324 SDValue In1 = Node->getOperand(1);
1325 SDValue In2L = Node->getOperand(2);
1326 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001327 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001328 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001329 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001330 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1331 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1332 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1333 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1334 MVT::i32, MVT::i32, MVT::Other, Ops,
1335 array_lengthof(Ops));
1336 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1337 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001338}
Christopher Lambc59e5212007-08-10 21:48:46 +00001339
Owen Andersone50ed302009-08-10 22:56:29 +00001340SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001341 if (Node->hasAnyUseOfValue(0))
1342 return 0;
1343
1344 // Optimize common patterns for __sync_add_and_fetch and
1345 // __sync_sub_and_fetch where the result is not used. This allows us
1346 // to use "lock" version of add, sub, inc, dec instructions.
1347 // FIXME: Do not use special instructions but instead add the "lock"
1348 // prefix to the target node somehow. The extra information will then be
1349 // transferred to machine instruction and it denotes the prefix.
1350 SDValue Chain = Node->getOperand(0);
1351 SDValue Ptr = Node->getOperand(1);
1352 SDValue Val = Node->getOperand(2);
1353 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001354 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001355 return 0;
1356
1357 bool isInc = false, isDec = false, isSub = false, isCN = false;
1358 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1359 if (CN) {
1360 isCN = true;
1361 int64_t CNVal = CN->getSExtValue();
1362 if (CNVal == 1)
1363 isInc = true;
1364 else if (CNVal == -1)
1365 isDec = true;
1366 else if (CNVal >= 0)
1367 Val = CurDAG->getTargetConstant(CNVal, NVT);
1368 else {
1369 isSub = true;
1370 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1371 }
1372 } else if (Val.hasOneUse() &&
1373 Val.getOpcode() == ISD::SUB &&
1374 X86::isZeroNode(Val.getOperand(0))) {
1375 isSub = true;
1376 Val = Val.getOperand(1);
1377 }
1378
1379 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001380 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001381 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001382 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001383 if (isInc)
1384 Opc = X86::LOCK_INC8m;
1385 else if (isDec)
1386 Opc = X86::LOCK_DEC8m;
1387 else if (isSub) {
1388 if (isCN)
1389 Opc = X86::LOCK_SUB8mi;
1390 else
1391 Opc = X86::LOCK_SUB8mr;
1392 } else {
1393 if (isCN)
1394 Opc = X86::LOCK_ADD8mi;
1395 else
1396 Opc = X86::LOCK_ADD8mr;
1397 }
1398 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001399 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001400 if (isInc)
1401 Opc = X86::LOCK_INC16m;
1402 else if (isDec)
1403 Opc = X86::LOCK_DEC16m;
1404 else if (isSub) {
1405 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001406 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001407 Opc = X86::LOCK_SUB16mi8;
1408 else
1409 Opc = X86::LOCK_SUB16mi;
1410 } else
1411 Opc = X86::LOCK_SUB16mr;
1412 } else {
1413 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001414 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001415 Opc = X86::LOCK_ADD16mi8;
1416 else
1417 Opc = X86::LOCK_ADD16mi;
1418 } else
1419 Opc = X86::LOCK_ADD16mr;
1420 }
1421 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001422 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001423 if (isInc)
1424 Opc = X86::LOCK_INC32m;
1425 else if (isDec)
1426 Opc = X86::LOCK_DEC32m;
1427 else if (isSub) {
1428 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001429 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001430 Opc = X86::LOCK_SUB32mi8;
1431 else
1432 Opc = X86::LOCK_SUB32mi;
1433 } else
1434 Opc = X86::LOCK_SUB32mr;
1435 } else {
1436 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001437 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001438 Opc = X86::LOCK_ADD32mi8;
1439 else
1440 Opc = X86::LOCK_ADD32mi;
1441 } else
1442 Opc = X86::LOCK_ADD32mr;
1443 }
1444 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001445 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001446 if (isInc)
1447 Opc = X86::LOCK_INC64m;
1448 else if (isDec)
1449 Opc = X86::LOCK_DEC64m;
1450 else if (isSub) {
1451 Opc = X86::LOCK_SUB64mr;
1452 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001453 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001454 Opc = X86::LOCK_SUB64mi8;
1455 else if (Predicate_i64immSExt32(Val.getNode()))
1456 Opc = X86::LOCK_SUB64mi32;
1457 }
1458 } else {
1459 Opc = X86::LOCK_ADD64mr;
1460 if (isCN) {
Chris Lattner18409912010-03-03 01:45:01 +00001461 if (Predicate_immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001462 Opc = X86::LOCK_ADD64mi8;
1463 else if (Predicate_i64immSExt32(Val.getNode()))
1464 Opc = X86::LOCK_ADD64mi32;
1465 }
1466 }
1467 break;
1468 }
1469
1470 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001471 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001472 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001473 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1474 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001475 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001476 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1477 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1478 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001479 SDValue RetVals[] = { Undef, Ret };
1480 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1481 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001482 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1483 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1484 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001485 SDValue RetVals[] = { Undef, Ret };
1486 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1487 }
1488}
1489
Dan Gohman11596ed2009-10-09 20:35:19 +00001490/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1491/// any uses which require the SF or OF bits to be accurate.
1492static bool HasNoSignedComparisonUses(SDNode *N) {
1493 // Examine each user of the node.
1494 for (SDNode::use_iterator UI = N->use_begin(),
1495 UE = N->use_end(); UI != UE; ++UI) {
1496 // Only examine CopyToReg uses.
1497 if (UI->getOpcode() != ISD::CopyToReg)
1498 return false;
1499 // Only examine CopyToReg uses that copy to EFLAGS.
1500 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1501 X86::EFLAGS)
1502 return false;
1503 // Examine each user of the CopyToReg use.
1504 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1505 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1506 // Only examine the Flag result.
1507 if (FlagUI.getUse().getResNo() != 1) continue;
1508 // Anything unusual: assume conservatively.
1509 if (!FlagUI->isMachineOpcode()) return false;
1510 // Examine the opcode of the user.
1511 switch (FlagUI->getMachineOpcode()) {
1512 // These comparisons don't treat the most significant bit specially.
1513 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1514 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1515 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1516 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001517 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1518 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001519 case X86::CMOVA16rr: case X86::CMOVA16rm:
1520 case X86::CMOVA32rr: case X86::CMOVA32rm:
1521 case X86::CMOVA64rr: case X86::CMOVA64rm:
1522 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1523 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1524 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1525 case X86::CMOVB16rr: case X86::CMOVB16rm:
1526 case X86::CMOVB32rr: case X86::CMOVB32rm:
1527 case X86::CMOVB64rr: case X86::CMOVB64rm:
1528 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1529 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1530 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1531 case X86::CMOVE16rr: case X86::CMOVE16rm:
1532 case X86::CMOVE32rr: case X86::CMOVE32rm:
1533 case X86::CMOVE64rr: case X86::CMOVE64rm:
1534 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1535 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1536 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1537 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1538 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1539 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1540 case X86::CMOVP16rr: case X86::CMOVP16rm:
1541 case X86::CMOVP32rr: case X86::CMOVP32rm:
1542 case X86::CMOVP64rr: case X86::CMOVP64rm:
1543 continue;
1544 // Anything else: assume conservatively.
1545 default: return false;
1546 }
1547 }
1548 }
1549 return true;
1550}
1551
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001552SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001553 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001554 unsigned Opc, MOpc;
1555 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001556 DebugLoc dl = Node->getDebugLoc();
1557
Chris Lattner7c306da2010-03-02 06:34:30 +00001558 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001559
Dan Gohmane8be6c62008-07-17 19:10:17 +00001560 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001561 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001562 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001563 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001564
Evan Cheng0114e942006-01-06 20:36:21 +00001565 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001566 default: break;
1567 case X86ISD::GlobalBaseReg:
1568 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001569
Dan Gohman72677342009-08-02 16:10:52 +00001570 case X86ISD::ATOMOR64_DAG:
1571 return SelectAtomic64(Node, X86::ATOMOR6432);
1572 case X86ISD::ATOMXOR64_DAG:
1573 return SelectAtomic64(Node, X86::ATOMXOR6432);
1574 case X86ISD::ATOMADD64_DAG:
1575 return SelectAtomic64(Node, X86::ATOMADD6432);
1576 case X86ISD::ATOMSUB64_DAG:
1577 return SelectAtomic64(Node, X86::ATOMSUB6432);
1578 case X86ISD::ATOMNAND64_DAG:
1579 return SelectAtomic64(Node, X86::ATOMNAND6432);
1580 case X86ISD::ATOMAND64_DAG:
1581 return SelectAtomic64(Node, X86::ATOMAND6432);
1582 case X86ISD::ATOMSWAP64_DAG:
1583 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001584
Dan Gohman72677342009-08-02 16:10:52 +00001585 case ISD::ATOMIC_LOAD_ADD: {
1586 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1587 if (RetVal)
1588 return RetVal;
1589 break;
1590 }
1591
1592 case ISD::SMUL_LOHI:
1593 case ISD::UMUL_LOHI: {
1594 SDValue N0 = Node->getOperand(0);
1595 SDValue N1 = Node->getOperand(1);
1596
1597 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001598 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001599 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001600 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001601 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1602 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1603 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1604 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001605 }
Bill Wendling12321672009-08-07 21:33:25 +00001606 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001607 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001608 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001609 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1610 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1611 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1612 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001613 }
Bill Wendling12321672009-08-07 21:33:25 +00001614 }
Dan Gohman72677342009-08-02 16:10:52 +00001615
1616 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001617 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001618 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001619 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1620 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1621 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1622 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001623 }
1624
1625 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001626 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001627 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001628 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001629 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001630 if (foldedLoad)
1631 std::swap(N0, N1);
1632 }
1633
1634 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1635 N0, SDValue()).getValue(1);
1636
1637 if (foldedLoad) {
1638 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1639 InFlag };
1640 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001641 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1642 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001643 InFlag = SDValue(CNode, 1);
1644 // Update the chain.
1645 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1646 } else {
1647 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001648 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001649 }
1650
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001651 // Prevent use of AH in a REX instruction by referencing AX instead.
1652 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1653 !SDValue(Node, 1).use_empty()) {
1654 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1655 X86::AX, MVT::i16, InFlag);
1656 InFlag = Result.getValue(2);
1657 // Get the low part if needed. Don't use getCopyFromReg for aliasing
1658 // registers.
1659 if (!SDValue(Node, 0).use_empty())
1660 ReplaceUses(SDValue(Node, 1),
1661 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1662
1663 // Shift AX down 8 bits.
1664 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1665 Result,
1666 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1667 // Then truncate it down to i8.
1668 ReplaceUses(SDValue(Node, 1),
1669 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1670 }
Dan Gohman72677342009-08-02 16:10:52 +00001671 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001672 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001673 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1674 LoReg, NVT, InFlag);
1675 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001676 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001677 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001678 }
1679 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001680 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001681 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1682 HiReg, NVT, InFlag);
1683 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001684 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001685 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001686 }
1687
Dan Gohman72677342009-08-02 16:10:52 +00001688 return NULL;
1689 }
1690
1691 case ISD::SDIVREM:
1692 case ISD::UDIVREM: {
1693 SDValue N0 = Node->getOperand(0);
1694 SDValue N1 = Node->getOperand(1);
1695
1696 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001697 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001698 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001699 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001700 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1701 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1702 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1703 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001704 }
Bill Wendling12321672009-08-07 21:33:25 +00001705 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001706 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001707 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001708 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1709 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1710 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1711 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001712 }
Bill Wendling12321672009-08-07 21:33:25 +00001713 }
Dan Gohman72677342009-08-02 16:10:52 +00001714
Chris Lattner9e323832009-12-23 01:45:04 +00001715 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001716 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001717 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001718 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001719 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001720 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001721 ClrOpcode = 0;
1722 SExtOpcode = X86::CBW;
1723 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001724 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001725 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001726 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001727 SExtOpcode = X86::CWD;
1728 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001729 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001730 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001731 ClrOpcode = X86::MOV32r0;
1732 SExtOpcode = X86::CDQ;
1733 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001734 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001735 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001736 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001737 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001738 break;
1739 }
1740
Dan Gohman72677342009-08-02 16:10:52 +00001741 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001742 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001743 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001744
Dan Gohman72677342009-08-02 16:10:52 +00001745 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001746 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001747 // Special case for div8, just use a move with zero extension to AX to
1748 // clear the upper 8 bits (AH).
1749 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001750 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001751 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1752 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001753 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1754 MVT::Other, Ops,
1755 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001756 Chain = Move.getValue(1);
1757 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001758 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001759 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001760 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001761 Chain = CurDAG->getEntryNode();
1762 }
1763 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1764 InFlag = Chain.getValue(1);
1765 } else {
1766 InFlag =
1767 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1768 LoReg, N0, SDValue()).getValue(1);
1769 if (isSigned && !signBitIsZero) {
1770 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001771 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001772 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001773 } else {
1774 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001775 SDValue ClrNode =
1776 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001777 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001778 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001779 }
Evan Cheng948f3432006-01-06 23:19:29 +00001780 }
Dan Gohman525178c2007-10-08 18:33:35 +00001781
Dan Gohman72677342009-08-02 16:10:52 +00001782 if (foldedLoad) {
1783 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1784 InFlag };
1785 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001786 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1787 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001788 InFlag = SDValue(CNode, 1);
1789 // Update the chain.
1790 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1791 } else {
1792 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001793 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001794 }
Evan Cheng948f3432006-01-06 23:19:29 +00001795
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001796 // Prevent use of AH in a REX instruction by referencing AX instead.
1797 // Shift it down 8 bits.
1798 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1799 !SDValue(Node, 1).use_empty()) {
1800 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1801 X86::AX, MVT::i16, InFlag);
1802 InFlag = Result.getValue(2);
1803
1804 // If we also need AL (the quotient), get it by extracting a subreg from
1805 // Result. The fast register allocator does not like multiple CopyFromReg
1806 // nodes using aliasing registers.
1807 if (!SDValue(Node, 0).use_empty())
1808 ReplaceUses(SDValue(Node, 0),
1809 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1810
1811 // Shift AX right by 8 bits instead of using AH.
1812 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1813 Result,
1814 CurDAG->getTargetConstant(8, MVT::i8)),
1815 0);
1816 ReplaceUses(SDValue(Node, 1),
1817 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1818 }
Dan Gohman72677342009-08-02 16:10:52 +00001819 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001820 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001821 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1822 LoReg, NVT, InFlag);
1823 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001824 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001825 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001826 }
1827 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001828 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001829 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1830 HiReg, NVT, InFlag);
1831 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001832 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001833 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001834 }
Dan Gohman72677342009-08-02 16:10:52 +00001835 return NULL;
1836 }
1837
Dan Gohman6a402dc2009-08-19 18:16:17 +00001838 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001839 SDValue N0 = Node->getOperand(0);
1840 SDValue N1 = Node->getOperand(1);
1841
1842 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
1843 // use a smaller encoding.
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00001844 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse())
1845 // Look past the truncate if CMP is the only use of it.
1846 N0 = N0.getOperand(0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001847 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
1848 N0.getValueType() != MVT::i8 &&
1849 X86::isZeroNode(N1)) {
1850 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
1851 if (!C) break;
1852
1853 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00001854 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
1855 (!(C->getZExtValue() & 0x80) ||
1856 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001857 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
1858 SDValue Reg = N0.getNode()->getOperand(0);
1859
1860 // On x86-32, only the ABCD registers have 8-bit subregisters.
1861 if (!Subtarget->is64Bit()) {
1862 TargetRegisterClass *TRC = 0;
1863 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1864 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1865 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1866 default: llvm_unreachable("Unsupported TEST operand type!");
1867 }
1868 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001869 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1870 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001871 }
1872
1873 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001874 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001875 MVT::i8, Reg);
1876
1877 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00001878 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001879 }
1880
1881 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00001882 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
1883 (!(C->getZExtValue() & 0x8000) ||
1884 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001885 // Shift the immediate right by 8 bits.
1886 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
1887 MVT::i8);
1888 SDValue Reg = N0.getNode()->getOperand(0);
1889
1890 // Put the value in an ABCD register.
1891 TargetRegisterClass *TRC = 0;
1892 switch (N0.getValueType().getSimpleVT().SimpleTy) {
1893 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
1894 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
1895 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
1896 default: llvm_unreachable("Unsupported TEST operand type!");
1897 }
1898 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00001899 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
1900 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001901
1902 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001903 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001904 MVT::i8, Reg);
1905
1906 // Emit a testb. No special NOREX tricks are needed since there's
1907 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00001908 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
1909 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001910 }
1911
1912 // For example, "testl %eax, $32776" to "testw %ax, $32776".
1913 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001914 N0.getValueType() != MVT::i16 &&
1915 (!(C->getZExtValue() & 0x8000) ||
1916 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001917 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
1918 SDValue Reg = N0.getNode()->getOperand(0);
1919
1920 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001921 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001922 MVT::i16, Reg);
1923
1924 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00001925 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001926 }
1927
1928 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
1929 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00001930 N0.getValueType() == MVT::i64 &&
1931 (!(C->getZExtValue() & 0x80000000) ||
1932 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00001933 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
1934 SDValue Reg = N0.getNode()->getOperand(0);
1935
1936 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00001937 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00001938 MVT::i32, Reg);
1939
1940 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00001941 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00001942 }
1943 }
1944 break;
1945 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00001946 }
1947
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001948 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00001949
Chris Lattner7c306da2010-03-02 06:34:30 +00001950 DEBUG(dbgs() << "=> ";
1951 if (ResNode == NULL || ResNode == Node)
1952 Node->dump(CurDAG);
1953 else
1954 ResNode->dump(CurDAG);
1955 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001956
1957 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00001958}
1959
Chris Lattnerc0bad572006-06-08 18:03:49 +00001960bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00001961SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00001962 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00001963 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00001964 switch (ConstraintCode) {
1965 case 'o': // offsetable ??
1966 case 'v': // not offsetable ??
1967 default: return true;
1968 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001969 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00001970 return true;
1971 break;
1972 }
1973
Evan Cheng04699902006-08-26 01:05:16 +00001974 OutOps.push_back(Op0);
1975 OutOps.push_back(Op1);
1976 OutOps.push_back(Op2);
1977 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001978 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00001979 return false;
1980}
1981
Chris Lattnerc961eea2005-11-16 01:54:32 +00001982/// createX86ISelDag - This pass converts a legalized DAG into a
1983/// X86-specific DAG, ready for instruction scheduling.
1984///
Bill Wendling98a366d2009-04-29 23:29:43 +00001985FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
1986 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001987 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00001988}