blob: 89d5f7b863348c3b49539938bcb71de4f6cbf408 [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
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000174 inline bool immSext8(SDNode *N) const {
175 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
176 }
177
178 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
179 // sign extended field.
180 inline bool i64immSExt32(SDNode *N) const {
181 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
182 return (int64_t)v == (int32_t)v;
183 }
184
Chris Lattnerc961eea2005-11-16 01:54:32 +0000185// Include the pieces autogenerated from the target description.
186#include "X86GenDAGISel.inc"
187
188 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000189 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000190 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000191 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Eric Christopherc324f722011-05-17 08:10:18 +0000192 SDNode *SelectAtomicLoadArith(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000193
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000194 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000195 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000196 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
197 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
198 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000199 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000200 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000201 SDValue &Scale, SDValue &Index, SDValue &Disp,
202 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000203 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000204 SDValue &Scale, SDValue &Index, SDValue &Disp,
205 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000206 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000207 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000209 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000210 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000211 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000212 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000213 SDValue &NodeWithChain);
214
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000215 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000217 SDValue &Index, SDValue &Disp,
218 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000219
Chris Lattnerc0bad572006-06-08 18:03:49 +0000220 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
221 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000222 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000223 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000224 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000225
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000226 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
227
Dan Gohman475871a2008-07-27 21:46:04 +0000228 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
229 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000230 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000231 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000232 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
233 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000234 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000235 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000236 // These are 32-bit even in 64-bit mode since RIP relative offset
237 // is 32-bit.
238 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000239 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
240 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000241 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000242 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000243 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000244 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000245 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000249 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000250 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
251 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000252 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000253 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000254
255 if (AM.Segment.getNode())
256 Segment = AM.Segment;
257 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000259 }
260
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000261 /// getI8Imm - Return a target constant with the specified value, of type
262 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000263 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000264 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000265 }
266
Chris Lattnerc961eea2005-11-16 01:54:32 +0000267 /// getI32Imm - Return a target constant with the specified value, of type
268 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000269 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000270 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000271 }
Evan Chengf597dc72006-02-10 22:24:32 +0000272
Dan Gohman8b746962008-09-23 18:22:58 +0000273 /// getGlobalBaseReg - Return an SDNode that returns the value of
274 /// the global base register. Output instructions required to
275 /// initialize the global base register, if necessary.
276 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000277 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000278
Dan Gohmanc5534622009-06-03 20:20:00 +0000279 /// getTargetMachine - Return a reference to the TargetMachine, casted
280 /// to the target-specific type.
281 const X86TargetMachine &getTargetMachine() {
282 return static_cast<const X86TargetMachine &>(TM);
283 }
284
285 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
286 /// to the target-specific type.
287 const X86InstrInfo *getInstrInfo() {
288 return getTargetMachine().getInstrInfo();
289 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000290 };
291}
292
Evan Chengf4b4c412006-08-08 00:31:00 +0000293
Evan Cheng014bf212010-02-15 19:41:07 +0000294bool
295X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000296 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000297
Evan Cheng014bf212010-02-15 19:41:07 +0000298 if (!N.hasOneUse())
299 return false;
300
301 if (N.getOpcode() != ISD::LOAD)
302 return true;
303
304 // If N is a load, do additional profitability checks.
305 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000306 switch (U->getOpcode()) {
307 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000308 case X86ISD::ADD:
309 case X86ISD::SUB:
310 case X86ISD::AND:
311 case X86ISD::XOR:
312 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000313 case ISD::ADD:
314 case ISD::ADDC:
315 case ISD::ADDE:
316 case ISD::AND:
317 case ISD::OR:
318 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000319 SDValue Op1 = U->getOperand(1);
320
Evan Cheng884c70c2008-11-27 00:49:46 +0000321 // If the other operand is a 8-bit immediate we should fold the immediate
322 // instead. This reduces code size.
323 // e.g.
324 // movl 4(%esp), %eax
325 // addl $4, %eax
326 // vs.
327 // movl $4, %eax
328 // addl 4(%esp), %eax
329 // The former is 2 bytes shorter. In case where the increment is 1, then
330 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000331 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000332 if (Imm->getAPIntValue().isSignedIntN(8))
333 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000334
335 // If the other operand is a TLS address, we should fold it instead.
336 // This produces
337 // movl %gs:0, %eax
338 // leal i@NTPOFF(%eax), %eax
339 // instead of
340 // movl $i@NTPOFF, %eax
341 // addl %gs:0, %eax
342 // if the block also has an access to a second TLS address this will save
343 // a load.
344 // FIXME: This is probably also true for non TLS addresses.
345 if (Op1.getOpcode() == X86ISD::Wrapper) {
346 SDValue Val = Op1.getOperand(0);
347 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
348 return false;
349 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000350 }
351 }
Evan Cheng014bf212010-02-15 19:41:07 +0000352 }
353
354 return true;
355}
356
Evan Chengf48ef032010-03-14 03:48:46 +0000357/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
358/// load's chain operand and move load below the call's chain operand.
359static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
360 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000361 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000362 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000363 if (Chain.getNode() == Load.getNode())
364 Ops.push_back(Load.getOperand(0));
365 else {
366 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000367 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000368 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
369 if (Chain.getOperand(i).getNode() == Load.getNode())
370 Ops.push_back(Load.getOperand(0));
371 else
372 Ops.push_back(Chain.getOperand(i));
373 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000374 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000375 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000376 Ops.clear();
377 Ops.push_back(NewChain);
378 }
Evan Chengf48ef032010-03-14 03:48:46 +0000379 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
380 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000381 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
382 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000383 Load.getOperand(1), Load.getOperand(2));
384 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000385 Ops.push_back(SDValue(Load.getNode(), 1));
386 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000387 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000388 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000389}
390
391/// isCalleeLoad - Return true if call address is a load and it can be
392/// moved below CALLSEQ_START and the chains leading up to the call.
393/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000394/// In the case of a tail call, there isn't a callseq node between the call
395/// chain and the load.
396static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000397 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000398 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000399 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000400 if (!LD ||
401 LD->isVolatile() ||
402 LD->getAddressingMode() != ISD::UNINDEXED ||
403 LD->getExtensionType() != ISD::NON_EXTLOAD)
404 return false;
405
406 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000407 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000408 if (!Chain.hasOneUse())
409 return false;
410 Chain = Chain.getOperand(0);
411 }
Evan Chengf48ef032010-03-14 03:48:46 +0000412
413 if (!Chain.getNumOperands())
414 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000415 if (Chain.getOperand(0).getNode() == Callee.getNode())
416 return true;
417 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000418 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
419 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000420 return true;
421 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000422}
423
Chris Lattnerfb444af2010-03-02 23:12:51 +0000424void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000425 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000426 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
427
Dan Gohmanf350b272008-08-23 02:25:05 +0000428 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
429 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000430 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000431
Evan Chengf48ef032010-03-14 03:48:46 +0000432 if (OptLevel != CodeGenOpt::None &&
433 (N->getOpcode() == X86ISD::CALL ||
434 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000435 /// Also try moving call address load from outside callseq_start to just
436 /// before the call to allow it to be folded.
437 ///
438 /// [Load chain]
439 /// ^
440 /// |
441 /// [Load]
442 /// ^ ^
443 /// | |
444 /// / \--
445 /// / |
446 ///[CALLSEQ_START] |
447 /// ^ |
448 /// | |
449 /// [LOAD/C2Reg] |
450 /// | |
451 /// \ /
452 /// \ /
453 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000454 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000455 SDValue Chain = N->getOperand(0);
456 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000457 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000458 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000459 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000460 ++NumLoadMoved;
461 continue;
462 }
463
464 // Lower fpround and fpextend nodes that target the FP stack to be store and
465 // load to the stack. This is a gross hack. We would like to simply mark
466 // these as being illegal, but when we do that, legalize produces these when
467 // it expands calls, then expands these in the same legalize pass. We would
468 // like dag combine to be able to hack on these between the call expansion
469 // and the node legalization. As such this pass basically does "really
470 // late" legalization of these inline with the X86 isel pass.
471 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000472 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
473 continue;
474
475 // If the source and destination are SSE registers, then this is a legal
476 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000477 EVT SrcVT = N->getOperand(0).getValueType();
478 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000479 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
480 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
481 if (SrcIsSSE && DstIsSSE)
482 continue;
483
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000484 if (!SrcIsSSE && !DstIsSSE) {
485 // If this is an FPStack extension, it is a noop.
486 if (N->getOpcode() == ISD::FP_EXTEND)
487 continue;
488 // If this is a value-preserving FPStack truncation, it is a noop.
489 if (N->getConstantOperandVal(1))
490 continue;
491 }
492
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000493 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
494 // FPStack has extload and truncstore. SSE can fold direct loads into other
495 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000496 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000497 if (N->getOpcode() == ISD::FP_ROUND)
498 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
499 else
500 MemVT = SrcIsSSE ? SrcVT : DstVT;
501
Dan Gohmanf350b272008-08-23 02:25:05 +0000502 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000503 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000504
505 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000506 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000507 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000508 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000509 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000510 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000511 MachinePointerInfo(),
512 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000513
514 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
515 // extload we created. This will cause general havok on the dag because
516 // anything below the conversion could be folded into other existing nodes.
517 // To avoid invalidating 'I', back it up to the convert node.
518 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000519 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000520
521 // Now that we did that, the node is dead. Increment the iterator to the
522 // next node to process, then delete N.
523 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000524 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000525 }
526}
527
Chris Lattnerc961eea2005-11-16 01:54:32 +0000528
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000529/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
530/// the main function.
531void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
532 MachineFrameInfo *MFI) {
533 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000534 if (Subtarget->isTargetCygMing()) {
535 unsigned CallOp =
NAKAMURA Takumi40ccb792011-01-27 03:20:19 +0000536 Subtarget->is64Bit() ? X86::WINCALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000537 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000538 TII->get(CallOp)).addExternalSymbol("__main");
539 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000540}
541
Dan Gohman64652652010-04-14 20:17:22 +0000542void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000543 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000544 if (const Function *Fn = MF->getFunction())
545 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
546 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000547}
548
Rafael Espindola094fad32009-04-08 21:14:34 +0000549
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000550bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
551 SDValue Address = N->getOperand(1);
552
553 // load gs:0 -> GS segment register.
554 // load fs:0 -> FS segment register.
555 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000556 // This optimization is valid because the GNU TLS model defines that
557 // gs:0 (or fs:0 on X86-64) contains its own address.
558 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000559 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
560 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
561 Subtarget->isTargetELF())
562 switch (N->getPointerInfo().getAddrSpace()) {
563 case 256:
564 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
565 return false;
566 case 257:
567 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
568 return false;
569 }
570
Rafael Espindola094fad32009-04-08 21:14:34 +0000571 return true;
572}
573
Chris Lattner18c59872009-06-27 04:16:01 +0000574/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
575/// into an addressing mode. These wrap things that will resolve down into a
576/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000577/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000578bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000579 // If the addressing mode already has a symbol as the displacement, we can
580 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000581 if (AM.hasSymbolicDisplacement())
582 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000583
584 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000585 CodeModel::Model M = TM.getCodeModel();
586
Chris Lattner18c59872009-06-27 04:16:01 +0000587 // Handle X86-64 rip-relative addresses. We check this before checking direct
588 // folding because RIP is preferable to non-RIP accesses.
589 if (Subtarget->is64Bit() &&
590 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
591 // they cannot be folded into immediate fields.
592 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000593 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000594 // Base and index reg must be 0 in order to use %rip as base and lowering
595 // must allow RIP.
596 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000597 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
598 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000599 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000600 AM.GV = G->getGlobal();
601 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000602 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000603 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
604 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000605 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000606 AM.CP = CP->getConstVal();
607 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000608 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000609 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000610 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
611 AM.ES = S->getSymbol();
612 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000613 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000614 AM.JT = J->getIndex();
615 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000616 } else {
617 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000618 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000619 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000620
Chris Lattner18c59872009-06-27 04:16:01 +0000621 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000622 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000623 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000624 }
625
626 // Handle the case when globals fit in our immediate field: This is true for
627 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
628 // mode, this results in a non-RIP-relative computation.
629 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000630 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000631 TM.getRelocationModel() == Reloc::Static)) {
632 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
633 AM.GV = G->getGlobal();
634 AM.Disp += G->getOffset();
635 AM.SymbolFlags = G->getTargetFlags();
636 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
637 AM.CP = CP->getConstVal();
638 AM.Align = CP->getAlignment();
639 AM.Disp += CP->getOffset();
640 AM.SymbolFlags = CP->getTargetFlags();
641 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
642 AM.ES = S->getSymbol();
643 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000644 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000645 AM.JT = J->getIndex();
646 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000647 } else {
648 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000649 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000650 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000651 return false;
652 }
653
654 return true;
655}
656
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000657/// MatchAddress - Add the specified node to the specified addressing mode,
658/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000659/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000660bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000661 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000662 return true;
663
664 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
665 // a smaller encoding and avoids a scaled-index.
666 if (AM.Scale == 2 &&
667 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000668 AM.Base_Reg.getNode() == 0) {
669 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000670 AM.Scale = 1;
671 }
672
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000673 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
674 // because it has a smaller encoding.
675 // TODO: Which other code models can use this?
676 if (TM.getCodeModel() == CodeModel::Small &&
677 Subtarget->is64Bit() &&
678 AM.Scale == 1 &&
679 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000680 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000681 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000682 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000683 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000684 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000685
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000686 return false;
687}
688
689bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
690 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000691 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000692 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000693 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000694 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000695 AM.dump();
696 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000697 // Limit recursion.
698 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000699 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000700
701 CodeModel::Model M = TM.getCodeModel();
702
Chris Lattner18c59872009-06-27 04:16:01 +0000703 // If this is already a %rip relative address, we can only merge immediates
704 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000705 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000706 if (AM.isRIPRelative()) {
707 // FIXME: JumpTable and ExternalSymbol address currently don't like
708 // displacements. It isn't very important, but this should be fixed for
709 // consistency.
710 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000711
Chris Lattner18c59872009-06-27 04:16:01 +0000712 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
713 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000714 if (X86::isOffsetSuitableForCodeModel(Val, M,
715 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000716 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000717 return false;
718 }
719 }
720 return true;
721 }
722
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000723 switch (N.getOpcode()) {
724 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000725 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000726 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000727 if (!is64Bit ||
728 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
729 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000730 AM.Disp += Val;
731 return false;
732 }
733 break;
734 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000735
Rafael Espindola49a168d2009-04-12 21:55:03 +0000736 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000737 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000738 if (!MatchWrapper(N, AM))
739 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000740 break;
741
Rafael Espindola094fad32009-04-08 21:14:34 +0000742 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000743 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000744 return false;
745 break;
746
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000747 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000748 if (AM.BaseType == X86ISelAddressMode::RegBase
Dan Gohmanffce6f12010-04-29 23:30:41 +0000749 && AM.Base_Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000750 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000751 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000752 return false;
753 }
754 break;
Evan Chengec693f72005-12-08 02:01:35 +0000755
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000756 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000757 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000758 break;
759
Gabor Greif93c53e52008-08-31 15:37:04 +0000760 if (ConstantSDNode
761 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000762 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000763 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
764 // that the base operand remains free for further matching. If
765 // the base doesn't end up getting used, a post-processing step
766 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000767 if (Val == 1 || Val == 2 || Val == 3) {
768 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000769 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000770
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000771 // Okay, we know that we have a scale by now. However, if the scaled
772 // value is an add of something and a constant, we can fold the
773 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000774 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000775 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000776 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000777 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000778 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000779 if (!is64Bit ||
780 X86::isOffsetSuitableForCodeModel(Disp, M,
781 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000782 AM.Disp = Disp;
783 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000784 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000785 } else {
786 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000787 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000788 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000789 }
790 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000791 }
Evan Chengec693f72005-12-08 02:01:35 +0000792
Dan Gohman83688052007-10-22 20:22:24 +0000793 case ISD::SMUL_LOHI:
794 case ISD::UMUL_LOHI:
795 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000796 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000797 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000798 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000799 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000800 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000801 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000802 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000803 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000804 if (ConstantSDNode
805 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000806 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
807 CN->getZExtValue() == 9) {
808 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000809
Gabor Greifba36cb52008-08-28 21:40:38 +0000810 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000811 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000812
813 // Okay, we know that we have a scale by now. However, if the scaled
814 // value is an add of something and a constant, we can fold the
815 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000816 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
817 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
818 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000819 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000820 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000821 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000822 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000823 if (!is64Bit ||
824 X86::isOffsetSuitableForCodeModel(Disp, M,
825 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000826 AM.Disp = Disp;
827 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000828 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000829 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000830 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000831 }
832
Dan Gohmanffce6f12010-04-29 23:30:41 +0000833 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000834 return false;
835 }
Chris Lattner62412262007-02-04 20:18:17 +0000836 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000837 break;
838
Dan Gohman3cd90a12009-05-11 18:02:53 +0000839 case ISD::SUB: {
840 // Given A-B, if A can be completely folded into the address and
841 // the index field with the index field unused, use -B as the index.
842 // This is a win if a has multiple parts that can be folded into
843 // the address. Also, this saves a mov if the base register has
844 // other uses, since it avoids a two-address sub instruction, however
845 // it costs an additional mov if the index register has other uses.
846
Dan Gohmane5408102010-06-18 01:24:29 +0000847 // Add an artificial use to this node so that we can keep track of
848 // it if it gets CSE'd with a different node.
849 HandleSDNode Handle(N);
850
Dan Gohman3cd90a12009-05-11 18:02:53 +0000851 // Test if the LHS of the sub can be folded.
852 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000853 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000854 AM = Backup;
855 break;
856 }
857 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000858 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000859 AM = Backup;
860 break;
861 }
Evan Chengf3caa522010-03-17 23:58:35 +0000862
Dan Gohman3cd90a12009-05-11 18:02:53 +0000863 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +0000864 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +0000865 // If the RHS involves a register with multiple uses, this
866 // transformation incurs an extra mov, due to the neg instruction
867 // clobbering its operand.
868 if (!RHS.getNode()->hasOneUse() ||
869 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
870 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
871 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
872 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000873 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000874 ++Cost;
875 // If the base is a register with multiple uses, this
876 // transformation may save a mov.
877 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000878 AM.Base_Reg.getNode() &&
879 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +0000880 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
881 --Cost;
882 // If the folded LHS was interesting, this transformation saves
883 // address arithmetic.
884 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
885 ((AM.Disp != 0) && (Backup.Disp == 0)) +
886 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
887 --Cost;
888 // If it doesn't look like it may be an overall win, don't do it.
889 if (Cost >= 0) {
890 AM = Backup;
891 break;
892 }
893
894 // Ok, the transformation is legal and appears profitable. Go for it.
895 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
896 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
897 AM.IndexReg = Neg;
898 AM.Scale = 1;
899
900 // Insert the new nodes into the topological ordering.
901 if (Zero.getNode()->getNodeId() == -1 ||
902 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
903 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
904 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
905 }
906 if (Neg.getNode()->getNodeId() == -1 ||
907 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
908 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
909 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
910 }
911 return false;
912 }
913
Evan Cheng8e278262009-01-17 07:09:27 +0000914 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +0000915 // Add an artificial use to this node so that we can keep track of
916 // it if it gets CSE'd with a different node.
917 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +0000918
Evan Cheng8e278262009-01-17 07:09:27 +0000919 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000920 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
921 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000922 return false;
923 AM = Backup;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000924
Evan Chengf3caa522010-03-17 23:58:35 +0000925 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000926 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
927 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000928 return false;
Evan Cheng8e278262009-01-17 07:09:27 +0000929 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +0000930
931 // If we couldn't fold both operands into the address at the same time,
932 // see if we can just put each operand into a register and fold at least
933 // the add.
934 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000935 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000936 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000937 N = Handle.getValue();
938 AM.Base_Reg = N.getOperand(0);
939 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +0000940 AM.Scale = 1;
941 return false;
942 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000943 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000944 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000945 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000946
Chris Lattner62412262007-02-04 20:18:17 +0000947 case ISD::OR:
948 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000949 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000950 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +0000951 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Dan Gohman27cae7b2008-11-11 15:52:29 +0000952 uint64_t Offset = CN->getSExtValue();
Evan Chengf3caa522010-03-17 23:58:35 +0000953
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000954 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +0000955 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000956 // Address could not have picked a GV address for the displacement.
957 AM.GV == NULL &&
958 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000959 (!is64Bit ||
960 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
Evan Chengf3caa522010-03-17 23:58:35 +0000961 AM.hasSymbolicDisplacement()))) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000962 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000963 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000964 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000965 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000966 }
967 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000968
969 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000970 // Perform some heroic transforms on an and of a constant-count shift
971 // with a constant to enable use of the scaled offset field.
972
Dan Gohman475871a2008-07-27 21:46:04 +0000973 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000974 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000975
Evan Cheng1314b002007-12-13 00:43:27 +0000976 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000977 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000978
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000979 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +0000980 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
981 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
982 if (!C1 || !C2) break;
983
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000984 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
985 // allows us to convert the shift and and into an h-register extract and
986 // a scaled index.
987 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
988 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +0000989 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000990 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000991 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000992 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
993 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
994 X, Eight);
995 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
996 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +0000997 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +0000998 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
999 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001000
1001 // Insert the new nodes into the topological ordering.
1002 if (Eight.getNode()->getNodeId() == -1 ||
1003 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1004 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1005 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1006 }
1007 if (Mask.getNode()->getNodeId() == -1 ||
1008 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1009 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1010 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1011 }
1012 if (Srl.getNode()->getNodeId() == -1 ||
1013 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1014 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1015 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1016 }
1017 if (And.getNode()->getNodeId() == -1 ||
1018 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1019 CurDAG->RepositionNode(N.getNode(), And.getNode());
1020 And.getNode()->setNodeId(N.getNode()->getNodeId());
1021 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001022 if (ShlCount.getNode()->getNodeId() == -1 ||
1023 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1024 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1025 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1026 }
1027 if (Shl.getNode()->getNodeId() == -1 ||
1028 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1029 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1030 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1031 }
Dan Gohmane5408102010-06-18 01:24:29 +00001032 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001033 AM.IndexReg = And;
1034 AM.Scale = (1 << ScaleLog);
1035 return false;
1036 }
1037 }
1038
1039 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1040 // allows us to fold the shift into this addressing mode.
1041 if (Shift.getOpcode() != ISD::SHL) break;
1042
Evan Cheng1314b002007-12-13 00:43:27 +00001043 // Not likely to be profitable if either the AND or SHIFT node has more
1044 // than one use (unless all uses are for address computation). Besides,
1045 // isel mechanism requires their node ids to be reused.
1046 if (!N.hasOneUse() || !Shift.hasOneUse())
1047 break;
1048
1049 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001050 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001051 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1052 break;
1053
1054 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001055 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001056 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001057 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1058 NewANDMask);
1059 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001060 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001061
1062 // Insert the new nodes into the topological ordering.
1063 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1064 CurDAG->RepositionNode(X.getNode(), C1);
1065 C1->setNodeId(X.getNode()->getNodeId());
1066 }
1067 if (NewANDMask.getNode()->getNodeId() == -1 ||
1068 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1069 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1070 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1071 }
1072 if (NewAND.getNode()->getNodeId() == -1 ||
1073 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1074 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1075 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1076 }
1077 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1078 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1079 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1080 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1081 }
1082
Dan Gohmane5408102010-06-18 01:24:29 +00001083 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001084
1085 AM.Scale = 1 << ShiftCst;
1086 AM.IndexReg = NewAND;
1087 return false;
1088 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001089 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001090
Rafael Espindola523249f2009-03-31 16:16:57 +00001091 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001092}
1093
1094/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1095/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001096bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001097 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001098 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001099 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001100 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001101 AM.IndexReg = N;
1102 AM.Scale = 1;
1103 return false;
1104 }
1105
1106 // Otherwise, we cannot select it.
1107 return true;
1108 }
1109
1110 // Default, generate it as a register.
1111 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001112 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001113 return false;
1114}
1115
Evan Chengec693f72005-12-08 02:01:35 +00001116/// SelectAddr - returns true if it is able pattern match an addressing mode.
1117/// It returns the operands which make up the maximal addressing mode it can
1118/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001119///
1120/// Parent is the parent node of the addr operand that is being matched. It
1121/// is always a load, store, atomic node, or null. It is only null when
1122/// checking memory operands for inline asm nodes.
1123bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001124 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001125 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001126 X86ISelAddressMode AM;
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001127
1128 if (Parent &&
1129 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1130 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001131 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001132 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1133 Parent->getOpcode() != X86ISD::TLSCALL) { // Fixme
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001134 unsigned AddrSpace =
1135 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1136 // AddrSpace 256 -> GS, 257 -> FS.
1137 if (AddrSpace == 256)
1138 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1139 if (AddrSpace == 257)
1140 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1141 }
1142
Evan Chengc7928f82009-12-18 01:59:21 +00001143 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001144 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001145
Owen Andersone50ed302009-08-10 22:56:29 +00001146 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001147 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001148 if (!AM.Base_Reg.getNode())
1149 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001150 }
Evan Cheng8700e142006-01-11 06:09:51 +00001151
Gabor Greifba36cb52008-08-28 21:40:38 +00001152 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001153 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001154
Rafael Espindola094fad32009-04-08 21:14:34 +00001155 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001156 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001157}
1158
Chris Lattner3a7cd952006-10-07 21:55:32 +00001159/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1160/// match a load whose top elements are either undef or zeros. The load flavor
1161/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001162///
1163/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001164/// PatternChainNode: this is the matched node that has a chain input and
1165/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001166bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001167 SDValue N, SDValue &Base,
1168 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001169 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001170 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001171 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001172 PatternNodeWithChain = N.getOperand(0);
1173 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1174 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001175 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001176 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001177 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001178 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001179 return false;
1180 return true;
1181 }
1182 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001183
1184 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001185 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001186 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001187 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001188 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001189 N.getOperand(0).getNode()->hasOneUse() &&
1190 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001191 N.getOperand(0).getOperand(0).hasOneUse() &&
1192 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001193 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001194 // Okay, this is a zero extending load. Fold it.
1195 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001196 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001197 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001198 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001199 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001200 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001201 return false;
1202}
1203
1204
Evan Cheng51a9ed92006-02-25 10:09:08 +00001205/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1206/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001207bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001208 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001209 SDValue &Index, SDValue &Disp,
1210 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001211 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001212
1213 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1214 // segments.
1215 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001216 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001217 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001218 if (MatchAddress(N, AM))
1219 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001220 assert (T == AM.Segment);
1221 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001222
Owen Andersone50ed302009-08-10 22:56:29 +00001223 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001224 unsigned Complexity = 0;
1225 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001226 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001227 Complexity = 1;
1228 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001229 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001230 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1231 Complexity = 4;
1232
Gabor Greifba36cb52008-08-28 21:40:38 +00001233 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001234 Complexity++;
1235 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001236 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001237
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001238 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1239 // a simple shift.
1240 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001241 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001242
1243 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1244 // to a LEA. This is determined with some expermentation but is by no means
1245 // optimal (especially for code size consideration). LEA is nice because of
1246 // its three-address nature. Tweak the cost function again when we can run
1247 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001248 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001249 // For X86-64, we should always use lea to materialize RIP relative
1250 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001251 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001252 Complexity = 4;
1253 else
1254 Complexity += 2;
1255 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001256
Dan Gohmanffce6f12010-04-29 23:30:41 +00001257 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001258 Complexity++;
1259
Chris Lattner25142782009-07-11 22:50:33 +00001260 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001261 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001262 return false;
1263
Chris Lattner25142782009-07-11 22:50:33 +00001264 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1265 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001266}
1267
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001268/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001269bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001270 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001271 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001272 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1273 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001274
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001275 X86ISelAddressMode AM;
1276 AM.GV = GA->getGlobal();
1277 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001278 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001279 AM.SymbolFlags = GA->getTargetFlags();
1280
Owen Anderson825b72b2009-08-11 20:47:22 +00001281 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001282 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001283 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001284 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001285 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001286 }
1287
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001288 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1289 return true;
1290}
1291
1292
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001293bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001294 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001295 SDValue &Index, SDValue &Disp,
1296 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001297 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1298 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001299 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001300 return false;
1301
Chris Lattnerb86faa12010-09-21 22:07:31 +00001302 return SelectAddr(N.getNode(),
1303 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
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001315SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1316 SDValue Chain = Node->getOperand(0);
1317 SDValue In1 = Node->getOperand(1);
1318 SDValue In2L = Node->getOperand(2);
1319 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001320 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001321 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001322 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001323 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1324 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1325 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1326 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1327 MVT::i32, MVT::i32, MVT::Other, Ops,
1328 array_lengthof(Ops));
1329 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1330 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001331}
Christopher Lambc59e5212007-08-10 21:48:46 +00001332
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001333// FIXME: Figure out some way to unify this with the 'or' and other code
1334// below.
Owen Andersone50ed302009-08-10 22:56:29 +00001335SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001336 if (Node->hasAnyUseOfValue(0))
1337 return 0;
1338
1339 // Optimize common patterns for __sync_add_and_fetch and
1340 // __sync_sub_and_fetch where the result is not used. This allows us
1341 // to use "lock" version of add, sub, inc, dec instructions.
1342 // FIXME: Do not use special instructions but instead add the "lock"
1343 // prefix to the target node somehow. The extra information will then be
1344 // transferred to machine instruction and it denotes the prefix.
1345 SDValue Chain = Node->getOperand(0);
1346 SDValue Ptr = Node->getOperand(1);
1347 SDValue Val = Node->getOperand(2);
1348 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001349 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001350 return 0;
1351
1352 bool isInc = false, isDec = false, isSub = false, isCN = false;
1353 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1354 if (CN) {
1355 isCN = true;
1356 int64_t CNVal = CN->getSExtValue();
1357 if (CNVal == 1)
1358 isInc = true;
1359 else if (CNVal == -1)
1360 isDec = true;
1361 else if (CNVal >= 0)
1362 Val = CurDAG->getTargetConstant(CNVal, NVT);
1363 else {
1364 isSub = true;
1365 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1366 }
1367 } else if (Val.hasOneUse() &&
1368 Val.getOpcode() == ISD::SUB &&
1369 X86::isZeroNode(Val.getOperand(0))) {
1370 isSub = true;
1371 Val = Val.getOperand(1);
1372 }
1373
1374 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001375 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001376 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001377 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001378 if (isInc)
1379 Opc = X86::LOCK_INC8m;
1380 else if (isDec)
1381 Opc = X86::LOCK_DEC8m;
1382 else if (isSub) {
1383 if (isCN)
1384 Opc = X86::LOCK_SUB8mi;
1385 else
1386 Opc = X86::LOCK_SUB8mr;
1387 } else {
1388 if (isCN)
1389 Opc = X86::LOCK_ADD8mi;
1390 else
1391 Opc = X86::LOCK_ADD8mr;
1392 }
1393 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001394 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001395 if (isInc)
1396 Opc = X86::LOCK_INC16m;
1397 else if (isDec)
1398 Opc = X86::LOCK_DEC16m;
1399 else if (isSub) {
1400 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001401 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001402 Opc = X86::LOCK_SUB16mi8;
1403 else
1404 Opc = X86::LOCK_SUB16mi;
1405 } else
1406 Opc = X86::LOCK_SUB16mr;
1407 } else {
1408 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001409 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001410 Opc = X86::LOCK_ADD16mi8;
1411 else
1412 Opc = X86::LOCK_ADD16mi;
1413 } else
1414 Opc = X86::LOCK_ADD16mr;
1415 }
1416 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001417 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001418 if (isInc)
1419 Opc = X86::LOCK_INC32m;
1420 else if (isDec)
1421 Opc = X86::LOCK_DEC32m;
1422 else if (isSub) {
1423 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001424 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001425 Opc = X86::LOCK_SUB32mi8;
1426 else
1427 Opc = X86::LOCK_SUB32mi;
1428 } else
1429 Opc = X86::LOCK_SUB32mr;
1430 } else {
1431 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001432 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001433 Opc = X86::LOCK_ADD32mi8;
1434 else
1435 Opc = X86::LOCK_ADD32mi;
1436 } else
1437 Opc = X86::LOCK_ADD32mr;
1438 }
1439 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001440 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001441 if (isInc)
1442 Opc = X86::LOCK_INC64m;
1443 else if (isDec)
1444 Opc = X86::LOCK_DEC64m;
1445 else if (isSub) {
1446 Opc = X86::LOCK_SUB64mr;
1447 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001448 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001449 Opc = X86::LOCK_SUB64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001450 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001451 Opc = X86::LOCK_SUB64mi32;
1452 }
1453 } else {
1454 Opc = X86::LOCK_ADD64mr;
1455 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001456 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001457 Opc = X86::LOCK_ADD64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001458 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001459 Opc = X86::LOCK_ADD64mi32;
1460 }
1461 }
1462 break;
1463 }
1464
1465 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001466 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001467 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001468 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1469 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001470 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001471 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1472 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1473 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001474 SDValue RetVals[] = { Undef, Ret };
1475 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1476 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001477 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1478 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1479 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001480 SDValue RetVals[] = { Undef, Ret };
1481 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1482 }
1483}
1484
Eric Christopher8102bf02011-05-17 07:47:55 +00001485enum AtomicOpc {
Eric Christopher811c2b72011-05-17 07:50:41 +00001486 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001487 AND,
1488 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001489 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001490};
1491
1492enum AtomicSz {
1493 ConstantI8,
1494 I8,
1495 SextConstantI16,
1496 ConstantI16,
1497 I16,
1498 SextConstantI32,
1499 ConstantI32,
1500 I32,
1501 SextConstantI64,
1502 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001503 I64,
1504 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001505};
1506
Eric Christopher811c2b72011-05-17 07:50:41 +00001507static const unsigned int AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001508 {
1509 X86::LOCK_OR8mi,
1510 X86::LOCK_OR8mr,
1511 X86::LOCK_OR16mi8,
1512 X86::LOCK_OR16mi,
1513 X86::LOCK_OR16mr,
1514 X86::LOCK_OR32mi8,
1515 X86::LOCK_OR32mi,
1516 X86::LOCK_OR32mr,
1517 X86::LOCK_OR64mi8,
1518 X86::LOCK_OR64mi32,
1519 X86::LOCK_OR64mr
Eric Christopherc324f722011-05-17 08:10:18 +00001520 },
1521 {
1522 X86::LOCK_AND8mi,
1523 X86::LOCK_AND8mr,
1524 X86::LOCK_AND16mi8,
1525 X86::LOCK_AND16mi,
1526 X86::LOCK_AND16mr,
1527 X86::LOCK_AND32mi8,
1528 X86::LOCK_AND32mi,
1529 X86::LOCK_AND32mr,
1530 X86::LOCK_AND64mi8,
1531 X86::LOCK_AND64mi32,
1532 X86::LOCK_AND64mr
1533 },
1534 {
1535 X86::LOCK_XOR8mi,
1536 X86::LOCK_XOR8mr,
1537 X86::LOCK_XOR16mi8,
1538 X86::LOCK_XOR16mi,
1539 X86::LOCK_XOR16mr,
1540 X86::LOCK_XOR32mi8,
1541 X86::LOCK_XOR32mi,
1542 X86::LOCK_XOR32mr,
1543 X86::LOCK_XOR64mi8,
1544 X86::LOCK_XOR64mi32,
1545 X86::LOCK_XOR64mr
Eric Christopherc493a1f2011-05-11 21:44:58 +00001546 }
1547};
1548
Eric Christopherc324f722011-05-17 08:10:18 +00001549SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001550 if (Node->hasAnyUseOfValue(0))
1551 return 0;
1552
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001553 // Optimize common patterns for __sync_or_and_fetch and similar arith
1554 // operations where the result is not used. This allows us to use the "lock"
1555 // version of the arithmetic instruction.
1556 // FIXME: Same as for 'add' and 'sub', try to merge those down here.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001557 SDValue Chain = Node->getOperand(0);
1558 SDValue Ptr = Node->getOperand(1);
1559 SDValue Val = Node->getOperand(2);
1560 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1561 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1562 return 0;
1563
Eric Christopherc324f722011-05-17 08:10:18 +00001564 // Which index into the table.
1565 enum AtomicOpc Op;
1566 switch (Node->getOpcode()) {
1567 case ISD::ATOMIC_LOAD_OR:
1568 Op = OR;
1569 break;
1570 case ISD::ATOMIC_LOAD_AND:
1571 Op = AND;
1572 break;
1573 case ISD::ATOMIC_LOAD_XOR:
1574 Op = XOR;
1575 break;
1576 default:
1577 return 0;
1578 }
1579
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001580 bool isCN = false;
1581 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1582 if (CN) {
1583 isCN = true;
1584 Val = CurDAG->getTargetConstant(CN->getSExtValue(), NVT);
1585 }
1586
1587 unsigned Opc = 0;
1588 switch (NVT.getSimpleVT().SimpleTy) {
1589 default: return 0;
1590 case MVT::i8:
1591 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001592 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001593 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001594 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001595 break;
1596 case MVT::i16:
1597 if (isCN) {
1598 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001599 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001600 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001601 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001602 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001603 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001604 break;
1605 case MVT::i32:
1606 if (isCN) {
1607 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001608 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001609 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001610 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001611 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001612 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001613 break;
1614 case MVT::i64:
1615 if (isCN) {
1616 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001617 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001618 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001619 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001620 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001621 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001622 break;
1623 }
1624
1625 DebugLoc dl = Node->getDebugLoc();
1626 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1627 dl, NVT), 0);
1628 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1629 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1630 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1631 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1632 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1633 SDValue RetVals[] = { Undef, Ret };
1634 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1635}
1636
Dan Gohman11596ed2009-10-09 20:35:19 +00001637/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1638/// any uses which require the SF or OF bits to be accurate.
1639static bool HasNoSignedComparisonUses(SDNode *N) {
1640 // Examine each user of the node.
1641 for (SDNode::use_iterator UI = N->use_begin(),
1642 UE = N->use_end(); UI != UE; ++UI) {
1643 // Only examine CopyToReg uses.
1644 if (UI->getOpcode() != ISD::CopyToReg)
1645 return false;
1646 // Only examine CopyToReg uses that copy to EFLAGS.
1647 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1648 X86::EFLAGS)
1649 return false;
1650 // Examine each user of the CopyToReg use.
1651 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1652 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1653 // Only examine the Flag result.
1654 if (FlagUI.getUse().getResNo() != 1) continue;
1655 // Anything unusual: assume conservatively.
1656 if (!FlagUI->isMachineOpcode()) return false;
1657 // Examine the opcode of the user.
1658 switch (FlagUI->getMachineOpcode()) {
1659 // These comparisons don't treat the most significant bit specially.
1660 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1661 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1662 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1663 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001664 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1665 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001666 case X86::CMOVA16rr: case X86::CMOVA16rm:
1667 case X86::CMOVA32rr: case X86::CMOVA32rm:
1668 case X86::CMOVA64rr: case X86::CMOVA64rm:
1669 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1670 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1671 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1672 case X86::CMOVB16rr: case X86::CMOVB16rm:
1673 case X86::CMOVB32rr: case X86::CMOVB32rm:
1674 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001675 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1676 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1677 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001678 case X86::CMOVE16rr: case X86::CMOVE16rm:
1679 case X86::CMOVE32rr: case X86::CMOVE32rm:
1680 case X86::CMOVE64rr: case X86::CMOVE64rm:
1681 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1682 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1683 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1684 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1685 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1686 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1687 case X86::CMOVP16rr: case X86::CMOVP16rm:
1688 case X86::CMOVP32rr: case X86::CMOVP32rm:
1689 case X86::CMOVP64rr: case X86::CMOVP64rm:
1690 continue;
1691 // Anything else: assume conservatively.
1692 default: return false;
1693 }
1694 }
1695 }
1696 return true;
1697}
1698
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001699SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001700 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001701 unsigned Opc, MOpc;
1702 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001703 DebugLoc dl = Node->getDebugLoc();
1704
Chris Lattner7c306da2010-03-02 06:34:30 +00001705 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001706
Dan Gohmane8be6c62008-07-17 19:10:17 +00001707 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001708 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001709 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001710 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001711
Evan Cheng0114e942006-01-06 20:36:21 +00001712 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001713 default: break;
1714 case X86ISD::GlobalBaseReg:
1715 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001716
Dan Gohman72677342009-08-02 16:10:52 +00001717 case X86ISD::ATOMOR64_DAG:
1718 return SelectAtomic64(Node, X86::ATOMOR6432);
1719 case X86ISD::ATOMXOR64_DAG:
1720 return SelectAtomic64(Node, X86::ATOMXOR6432);
1721 case X86ISD::ATOMADD64_DAG:
1722 return SelectAtomic64(Node, X86::ATOMADD6432);
1723 case X86ISD::ATOMSUB64_DAG:
1724 return SelectAtomic64(Node, X86::ATOMSUB6432);
1725 case X86ISD::ATOMNAND64_DAG:
1726 return SelectAtomic64(Node, X86::ATOMNAND6432);
1727 case X86ISD::ATOMAND64_DAG:
1728 return SelectAtomic64(Node, X86::ATOMAND6432);
1729 case X86ISD::ATOMSWAP64_DAG:
1730 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001731
Dan Gohman72677342009-08-02 16:10:52 +00001732 case ISD::ATOMIC_LOAD_ADD: {
1733 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1734 if (RetVal)
1735 return RetVal;
1736 break;
1737 }
Eric Christopherc324f722011-05-17 08:10:18 +00001738 case ISD::ATOMIC_LOAD_XOR:
1739 case ISD::ATOMIC_LOAD_AND:
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001740 case ISD::ATOMIC_LOAD_OR: {
Eric Christopherc324f722011-05-17 08:10:18 +00001741 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001742 if (RetVal)
1743 return RetVal;
1744 break;
1745 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001746 case ISD::AND:
1747 case ISD::OR:
1748 case ISD::XOR: {
1749 // For operations of the form (x << C1) op C2, check if we can use a smaller
1750 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
1751 SDValue N0 = Node->getOperand(0);
1752 SDValue N1 = Node->getOperand(1);
1753
1754 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
1755 break;
1756
1757 // i8 is unshrinkable, i16 should be promoted to i32.
1758 if (NVT != MVT::i32 && NVT != MVT::i64)
1759 break;
1760
1761 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
1762 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
1763 if (!Cst || !ShlCst)
1764 break;
1765
1766 int64_t Val = Cst->getSExtValue();
1767 uint64_t ShlVal = ShlCst->getZExtValue();
1768
1769 // Make sure that we don't change the operation by removing bits.
1770 // This only matters for OR and XOR, AND is unaffected.
1771 if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
1772 break;
1773
Benjamin Kramer20115612011-04-23 08:21:06 +00001774 unsigned ShlOp, Op = 0;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001775 EVT CstVT = NVT;
1776
1777 // Check the minimum bitwidth for the new constant.
1778 // TODO: AND32ri is the same as AND64ri32 with zext imm.
1779 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
1780 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
1781 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
1782 CstVT = MVT::i8;
1783 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
1784 CstVT = MVT::i32;
1785
1786 // Bail if there is no smaller encoding.
1787 if (NVT == CstVT)
1788 break;
1789
1790 switch (NVT.getSimpleVT().SimpleTy) {
1791 default: llvm_unreachable("Unsupported VT!");
1792 case MVT::i32:
1793 assert(CstVT == MVT::i8);
1794 ShlOp = X86::SHL32ri;
1795
1796 switch (Opcode) {
1797 case ISD::AND: Op = X86::AND32ri8; break;
1798 case ISD::OR: Op = X86::OR32ri8; break;
1799 case ISD::XOR: Op = X86::XOR32ri8; break;
1800 }
1801 break;
1802 case MVT::i64:
1803 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
1804 ShlOp = X86::SHL64ri;
1805
1806 switch (Opcode) {
1807 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
1808 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
1809 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
1810 }
1811 break;
1812 }
1813
1814 // Emit the smaller op and the shift.
1815 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
1816 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
1817 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
1818 getI8Imm(ShlVal));
1819 break;
1820 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001821 case X86ISD::UMUL: {
1822 SDValue N0 = Node->getOperand(0);
1823 SDValue N1 = Node->getOperand(1);
1824
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001825 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001826 switch (NVT.getSimpleVT().SimpleTy) {
1827 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001828 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
1829 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
1830 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
1831 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001832 }
1833
1834 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1835 N0, SDValue()).getValue(1);
1836
1837 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
1838 SDValue Ops[] = {N1, InFlag};
1839 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
1840
1841 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
1842 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
1843 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
1844 return NULL;
1845 }
1846
Dan Gohman72677342009-08-02 16:10:52 +00001847 case ISD::SMUL_LOHI:
1848 case ISD::UMUL_LOHI: {
1849 SDValue N0 = Node->getOperand(0);
1850 SDValue N1 = Node->getOperand(1);
1851
1852 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001853 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001854 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001855 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001856 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1857 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1858 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1859 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001860 }
Bill Wendling12321672009-08-07 21:33:25 +00001861 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001862 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001863 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001864 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1865 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1866 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1867 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001868 }
Bill Wendling12321672009-08-07 21:33:25 +00001869 }
Dan Gohman72677342009-08-02 16:10:52 +00001870
1871 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001872 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001873 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001874 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1875 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1876 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1877 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001878 }
1879
1880 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001881 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001882 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001883 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001884 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001885 if (foldedLoad)
1886 std::swap(N0, N1);
1887 }
1888
1889 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1890 N0, SDValue()).getValue(1);
1891
1892 if (foldedLoad) {
1893 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1894 InFlag };
1895 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001896 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00001897 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001898 InFlag = SDValue(CNode, 1);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001899
Dan Gohman72677342009-08-02 16:10:52 +00001900 // Update the chain.
1901 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1902 } else {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001903 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001904 InFlag = SDValue(CNode, 0);
Dan Gohman72677342009-08-02 16:10:52 +00001905 }
1906
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001907 // Prevent use of AH in a REX instruction by referencing AX instead.
1908 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1909 !SDValue(Node, 1).use_empty()) {
1910 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1911 X86::AX, MVT::i16, InFlag);
1912 InFlag = Result.getValue(2);
1913 // Get the low part if needed. Don't use getCopyFromReg for aliasing
1914 // registers.
1915 if (!SDValue(Node, 0).use_empty())
1916 ReplaceUses(SDValue(Node, 1),
1917 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1918
1919 // Shift AX down 8 bits.
1920 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1921 Result,
1922 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1923 // Then truncate it down to i8.
1924 ReplaceUses(SDValue(Node, 1),
1925 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1926 }
Dan Gohman72677342009-08-02 16:10:52 +00001927 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001928 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001929 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1930 LoReg, NVT, InFlag);
1931 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001932 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001933 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001934 }
1935 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001936 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001937 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1938 HiReg, NVT, InFlag);
1939 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001940 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001941 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001942 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001943
Dan Gohman72677342009-08-02 16:10:52 +00001944 return NULL;
1945 }
1946
1947 case ISD::SDIVREM:
1948 case ISD::UDIVREM: {
1949 SDValue N0 = Node->getOperand(0);
1950 SDValue N1 = Node->getOperand(1);
1951
1952 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001953 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001954 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001955 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001956 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1957 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1958 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1959 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001960 }
Bill Wendling12321672009-08-07 21:33:25 +00001961 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001962 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001963 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001964 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1965 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1966 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1967 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001968 }
Bill Wendling12321672009-08-07 21:33:25 +00001969 }
Dan Gohman72677342009-08-02 16:10:52 +00001970
Chris Lattner9e323832009-12-23 01:45:04 +00001971 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001972 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001973 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001974 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001975 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001976 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001977 ClrOpcode = 0;
1978 SExtOpcode = X86::CBW;
1979 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001980 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001981 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001982 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001983 SExtOpcode = X86::CWD;
1984 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001985 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001986 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001987 ClrOpcode = X86::MOV32r0;
1988 SExtOpcode = X86::CDQ;
1989 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001990 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001991 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001992 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001993 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001994 break;
1995 }
1996
Dan Gohman72677342009-08-02 16:10:52 +00001997 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001998 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001999 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002000
Dan Gohman72677342009-08-02 16:10:52 +00002001 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002003 // Special case for div8, just use a move with zero extension to AX to
2004 // clear the upper 8 bits (AH).
2005 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002006 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002007 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2008 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00002009 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
2010 MVT::Other, Ops,
2011 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002012 Chain = Move.getValue(1);
2013 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002014 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002015 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00002016 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002017 Chain = CurDAG->getEntryNode();
2018 }
2019 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
2020 InFlag = Chain.getValue(1);
2021 } else {
2022 InFlag =
2023 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2024 LoReg, N0, SDValue()).getValue(1);
2025 if (isSigned && !signBitIsZero) {
2026 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002027 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002028 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002029 } else {
2030 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002031 SDValue ClrNode =
2032 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002033 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002034 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002035 }
Evan Cheng948f3432006-01-06 23:19:29 +00002036 }
Dan Gohman525178c2007-10-08 18:33:35 +00002037
Dan Gohman72677342009-08-02 16:10:52 +00002038 if (foldedLoad) {
2039 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2040 InFlag };
2041 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002042 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002043 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002044 InFlag = SDValue(CNode, 1);
2045 // Update the chain.
2046 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2047 } else {
2048 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002049 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002050 }
Evan Cheng948f3432006-01-06 23:19:29 +00002051
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002052 // Prevent use of AH in a REX instruction by referencing AX instead.
2053 // Shift it down 8 bits.
2054 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2055 !SDValue(Node, 1).use_empty()) {
2056 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2057 X86::AX, MVT::i16, InFlag);
2058 InFlag = Result.getValue(2);
2059
2060 // If we also need AL (the quotient), get it by extracting a subreg from
2061 // Result. The fast register allocator does not like multiple CopyFromReg
2062 // nodes using aliasing registers.
2063 if (!SDValue(Node, 0).use_empty())
2064 ReplaceUses(SDValue(Node, 0),
2065 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2066
2067 // Shift AX right by 8 bits instead of using AH.
2068 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2069 Result,
2070 CurDAG->getTargetConstant(8, MVT::i8)),
2071 0);
2072 ReplaceUses(SDValue(Node, 1),
2073 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2074 }
Dan Gohman72677342009-08-02 16:10:52 +00002075 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002076 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002077 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2078 LoReg, NVT, InFlag);
2079 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002080 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002081 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002082 }
2083 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002084 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002085 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2086 HiReg, NVT, InFlag);
2087 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002088 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002089 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002090 }
Dan Gohman72677342009-08-02 16:10:52 +00002091 return NULL;
2092 }
2093
Dan Gohman6a402dc2009-08-19 18:16:17 +00002094 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002095 SDValue N0 = Node->getOperand(0);
2096 SDValue N1 = Node->getOperand(1);
2097
2098 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2099 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002100 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2101 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002102 // Look past the truncate if CMP is the only use of it.
2103 N0 = N0.getOperand(0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002104 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2105 N0.getValueType() != MVT::i8 &&
2106 X86::isZeroNode(N1)) {
2107 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2108 if (!C) break;
2109
2110 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002111 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2112 (!(C->getZExtValue() & 0x80) ||
2113 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002114 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2115 SDValue Reg = N0.getNode()->getOperand(0);
2116
2117 // On x86-32, only the ABCD registers have 8-bit subregisters.
2118 if (!Subtarget->is64Bit()) {
2119 TargetRegisterClass *TRC = 0;
2120 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2121 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2122 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2123 default: llvm_unreachable("Unsupported TEST operand type!");
2124 }
2125 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002126 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2127 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002128 }
2129
2130 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002131 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002132 MVT::i8, Reg);
2133
2134 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002135 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002136 }
2137
2138 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002139 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2140 (!(C->getZExtValue() & 0x8000) ||
2141 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002142 // Shift the immediate right by 8 bits.
2143 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2144 MVT::i8);
2145 SDValue Reg = N0.getNode()->getOperand(0);
2146
2147 // Put the value in an ABCD register.
2148 TargetRegisterClass *TRC = 0;
2149 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2150 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2151 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2152 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2153 default: llvm_unreachable("Unsupported TEST operand type!");
2154 }
2155 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002156 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2157 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002158
2159 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002160 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002161 MVT::i8, Reg);
2162
2163 // Emit a testb. No special NOREX tricks are needed since there's
2164 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002165 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2166 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002167 }
2168
2169 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2170 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002171 N0.getValueType() != MVT::i16 &&
2172 (!(C->getZExtValue() & 0x8000) ||
2173 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002174 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2175 SDValue Reg = N0.getNode()->getOperand(0);
2176
2177 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002178 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002179 MVT::i16, Reg);
2180
2181 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002182 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002183 }
2184
2185 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2186 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002187 N0.getValueType() == MVT::i64 &&
2188 (!(C->getZExtValue() & 0x80000000) ||
2189 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002190 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2191 SDValue Reg = N0.getNode()->getOperand(0);
2192
2193 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002194 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002195 MVT::i32, Reg);
2196
2197 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002198 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002199 }
2200 }
2201 break;
2202 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002203 }
2204
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002205 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002206
Chris Lattner7c306da2010-03-02 06:34:30 +00002207 DEBUG(dbgs() << "=> ";
2208 if (ResNode == NULL || ResNode == Node)
2209 Node->dump(CurDAG);
2210 else
2211 ResNode->dump(CurDAG);
2212 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002213
2214 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002215}
2216
Chris Lattnerc0bad572006-06-08 18:03:49 +00002217bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002218SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002219 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002220 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002221 switch (ConstraintCode) {
2222 case 'o': // offsetable ??
2223 case 'v': // not offsetable ??
2224 default: return true;
2225 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002226 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002227 return true;
2228 break;
2229 }
2230
Evan Cheng04699902006-08-26 01:05:16 +00002231 OutOps.push_back(Op0);
2232 OutOps.push_back(Op1);
2233 OutOps.push_back(Op2);
2234 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002235 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002236 return false;
2237}
2238
Chris Lattnerc961eea2005-11-16 01:54:32 +00002239/// createX86ISelDag - This pass converts a legalized DAG into a
2240/// X86-specific DAG, ready for instruction scheduling.
2241///
Bill Wendling98a366d2009-04-29 23:29:43 +00002242FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2243 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002244 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002245}