blob: 36d16907bfef45b64d14575b569e856842b9bbe8 [file] [log] [blame]
Chris Lattner5930d3d2005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattner655e7df2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-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 Lattner655e7df2005-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 Chengb9d34bd2006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattner655e7df2005-11-16 01:54:32 +000016#include "X86.h"
Evan Chengbc7a0f442006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Chengf55b7382008-01-05 00:41:47 +000018#include "X86MachineFunctionInfo.h"
Chris Lattner7c551262006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/ADT/Statistic.h"
Evan Cheng73a1ad92006-01-10 20:26:56 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner7c551262006-01-11 01:15:34 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000027#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/Type.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000031#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000032#include "llvm/Support/ErrorHandling.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000033#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Target/TargetMachine.h"
36#include "llvm/Target/TargetOptions.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000037using namespace llvm;
38
Chris Lattner1ef9cd42006-12-19 22:59:26 +000039STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
40
Chris Lattner655e7df2005-11-16 01:54:32 +000041//===----------------------------------------------------------------------===//
42// Pattern Matcher Implementation
43//===----------------------------------------------------------------------===//
44
45namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000046 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000047 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattner3f0f71b2005-11-19 02:11:08 +000048 /// tree.
49 struct X86ISelAddressMode {
50 enum {
51 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000052 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000053 } BaseType;
54
Dan Gohman0fd54fb2010-04-29 23:30:41 +000055 // This is really a union, discriminated by BaseType!
56 SDValue Base_Reg;
57 int Base_FrameIndex;
Chris Lattner3f0f71b2005-11-19 02:11:08 +000058
59 unsigned Scale;
Chad Rosier24c19d22012-08-01 18:39:17 +000060 SDValue IndexReg;
Dan Gohman059c4fa2008-11-11 15:52:29 +000061 int32_t Disp;
Rafael Espindola3b2df102009-04-08 21:14:34 +000062 SDValue Segment;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000063 const GlobalValue *GV;
64 const Constant *CP;
65 const BlockAddress *BlockAddr;
Evan Cheng11b0a5d2006-09-08 06:48:29 +000066 const char *ES;
67 int JT;
Evan Cheng77d86ff2006-02-25 10:09:08 +000068 unsigned Align; // CP alignment.
Chris Lattnerbd7e26d2009-06-26 05:51:45 +000069 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattner3f0f71b2005-11-19 02:11:08 +000070
71 X86ISelAddressMode()
Dan Gohman0fd54fb2010-04-29 23:30:41 +000072 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner50ba5c32009-11-01 03:25:03 +000073 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman0f6bf2d2009-08-25 17:47:44 +000074 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000075 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000076
77 bool hasSymbolicDisplacement() const {
Chris Lattner50ba5c32009-11-01 03:25:03 +000078 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman4e3e3de2009-02-07 00:43:41 +000079 }
Chad Rosier24c19d22012-08-01 18:39:17 +000080
Chris Lattnerfea81da2009-06-27 04:16:01 +000081 bool hasBaseOrIndexReg() const {
Tim Northover97347a82013-09-19 11:33:53 +000082 return BaseType == FrameIndexBase ||
83 IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattnerfea81da2009-06-27 04:16:01 +000084 }
Chad Rosier24c19d22012-08-01 18:39:17 +000085
Chris Lattnerfea81da2009-06-27 04:16:01 +000086 /// isRIPRelative - Return true if this addressing mode is already RIP
87 /// relative.
88 bool isRIPRelative() const {
89 if (BaseType != RegBase) return false;
90 if (RegisterSDNode *RegNode =
Dan Gohman0fd54fb2010-04-29 23:30:41 +000091 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattnerfea81da2009-06-27 04:16:01 +000092 return RegNode->getReg() == X86::RIP;
93 return false;
94 }
Chad Rosier24c19d22012-08-01 18:39:17 +000095
Chris Lattnerfea81da2009-06-27 04:16:01 +000096 void setBaseReg(SDValue Reg) {
97 BaseType = RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +000098 Base_Reg = Reg;
Chris Lattnerfea81da2009-06-27 04:16:01 +000099 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +0000100
Manman Ren19f49ac2012-09-11 22:23:19 +0000101#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesendafdbf72008-08-11 23:46:25 +0000102 void dump() {
David Greenedbdb1b22010-01-05 01:29:08 +0000103 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000104 dbgs() << "Base_Reg ";
105 if (Base_Reg.getNode() != 0)
Chad Rosier24c19d22012-08-01 18:39:17 +0000106 Base_Reg.getNode()->dump();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000107 else
David Greenedbdb1b22010-01-05 01:29:08 +0000108 dbgs() << "nul";
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000109 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000110 << " Scale" << Scale << '\n'
111 << "IndexReg ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000112 if (IndexReg.getNode() != 0)
113 IndexReg.getNode()->dump();
114 else
Chad Rosier24c19d22012-08-01 18:39:17 +0000115 dbgs() << "nul";
David Greenedbdb1b22010-01-05 01:29:08 +0000116 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000117 << "GV ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000118 if (GV)
119 GV->dump();
120 else
David Greenedbdb1b22010-01-05 01:29:08 +0000121 dbgs() << "nul";
122 dbgs() << " CP ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000123 if (CP)
124 CP->dump();
125 else
David Greenedbdb1b22010-01-05 01:29:08 +0000126 dbgs() << "nul";
127 dbgs() << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000128 << "ES ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000129 if (ES)
David Greenedbdb1b22010-01-05 01:29:08 +0000130 dbgs() << ES;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000131 else
David Greenedbdb1b22010-01-05 01:29:08 +0000132 dbgs() << "nul";
133 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesendafdbf72008-08-11 23:46:25 +0000134 }
Manman Ren742534c2012-09-06 19:06:06 +0000135#endif
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000136 };
137}
138
139namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +0000140 //===--------------------------------------------------------------------===//
141 /// ISel - X86 specific code to select X86 machine instructions for
142 /// SelectionDAG operations.
143 ///
Nick Lewycky02d5f772009-10-25 06:33:48 +0000144 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattner655e7df2005-11-16 01:54:32 +0000145 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
146 /// make the right decision when generating code for different targets.
147 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +0000148
Evan Cheng7d6fa972008-09-26 23:41:32 +0000149 /// OptForSize - If true, selector should try to optimize for code size
150 /// instead of performance.
151 bool OptForSize;
152
Chris Lattner655e7df2005-11-16 01:54:32 +0000153 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000154 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendling084669a2009-04-29 00:15:41 +0000155 : SelectionDAGISel(tm, OptLevel),
Dan Gohman4751bb92009-06-03 20:20:00 +0000156 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel1b76f2c2008-10-01 23:18:38 +0000157 OptForSize(false) {}
Chris Lattner655e7df2005-11-16 01:54:32 +0000158
159 virtual const char *getPassName() const {
160 return "X86 DAG->DAG Instruction Selection";
161 }
162
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000163 virtual void EmitFunctionEntryCode();
Anton Korobeynikov90910742007-09-25 21:52:30 +0000164
Evan Cheng5e73ff22010-02-15 19:41:07 +0000165 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
166
Chris Lattnerf98f1242010-03-02 06:34:30 +0000167 virtual void PreprocessISelDAG();
168
Jakob Stoklund Olesen08aede22010-09-03 00:35:18 +0000169 inline bool immSext8(SDNode *N) const {
170 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
171 }
172
173 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
174 // sign extended field.
175 inline bool i64immSExt32(SDNode *N) const {
176 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
177 return (int64_t)v == (int32_t)v;
178 }
179
Chris Lattner655e7df2005-11-16 01:54:32 +0000180// Include the pieces autogenerated from the target description.
181#include "X86GenDAGISel.inc"
182
183 private:
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000184 SDNode *Select(SDNode *N);
Manman Rena0982042012-06-26 19:47:59 +0000185 SDNode *SelectGather(SDNode *N, unsigned Opc);
Dale Johannesen867d5492008-10-02 18:53:47 +0000186 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Craig Topper83e042a2013-08-15 05:57:07 +0000187 SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
Chris Lattner655e7df2005-11-16 01:54:32 +0000188
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000189 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattner8a236b62010-09-22 04:39:11 +0000190 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000191 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman824ab402009-07-22 23:26:55 +0000192 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
193 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
194 unsigned Depth);
Rafael Espindola92773792009-03-31 16:16:57 +0000195 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerd58d7c12010-09-21 22:07:31 +0000196 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000197 SDValue &Scale, SDValue &Index, SDValue &Disp,
198 SDValue &Segment);
Tim Northover3a1fd4c2013-06-01 09:55:14 +0000199 bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000200 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000201 SDValue &Scale, SDValue &Index, SDValue &Disp,
202 SDValue &Segment);
Tim Northover6833e3f2013-06-10 20:43:49 +0000203 bool SelectLEA64_32Addr(SDValue N, SDValue &Base,
204 SDValue &Scale, SDValue &Index, SDValue &Disp,
205 SDValue &Segment);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000206 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000207 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Chris Lattnerbd6e1932010-03-01 22:51:11 +0000209 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattnerafac7dad2010-02-16 22:35:06 +0000210 SDValue &Base, SDValue &Scale,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000211 SDValue &Index, SDValue &Disp,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000212 SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +0000213 SDValue &NodeWithChain);
Chad Rosier24c19d22012-08-01 18:39:17 +0000214
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000215 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000216 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000217 SDValue &Index, SDValue &Disp,
218 SDValue &Segment);
Chad Rosier24c19d22012-08-01 18:39:17 +0000219
Chris Lattnerba1ed582006-06-08 18:03:49 +0000220 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
221 /// inline asm expressions.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000222 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerba1ed582006-06-08 18:03:49 +0000223 char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000224 std::vector<SDValue> &OutOps);
Chad Rosier24c19d22012-08-01 18:39:17 +0000225
Anton Korobeynikov90910742007-09-25 21:52:30 +0000226 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
227
Chad Rosier24c19d22012-08-01 18:39:17 +0000228 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000229 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000230 SDValue &Disp, SDValue &Segment) {
Evan Cheng67ed58e2005-12-12 21:49:40 +0000231 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000232 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
233 getTargetLowering()->getPointerTy()) :
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000234 AM.Base_Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000235 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000236 Index = AM.IndexReg;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000237 // These are 32-bit even in 64-bit mode since RIP relative offset
238 // is 32-bit.
239 if (AM.GV)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000240 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
Devang Patela3ca21b2010-07-06 22:08:15 +0000241 MVT::i32, AM.Disp,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000242 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000243 else if (AM.CP)
Owen Anderson9f944592009-08-11 20:47:22 +0000244 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000245 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000246 else if (AM.ES) {
247 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson9f944592009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000249 } else if (AM.JT != -1) {
250 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson9f944592009-08-11 20:47:22 +0000251 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000252 } else if (AM.BlockAddr)
253 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
254 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000255 else
Owen Anderson9f944592009-08-11 20:47:22 +0000256 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000257
258 if (AM.Segment.getNode())
259 Segment = AM.Segment;
260 else
Owen Anderson9f944592009-08-11 20:47:22 +0000261 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000262 }
263
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000264 /// getI8Imm - Return a target constant with the specified value, of type
265 /// i8.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000266 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000267 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000268 }
269
Chris Lattner655e7df2005-11-16 01:54:32 +0000270 /// getI32Imm - Return a target constant with the specified value, of type
271 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000272 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000273 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner655e7df2005-11-16 01:54:32 +0000274 }
Evan Chengd49cc362006-02-10 22:24:32 +0000275
Dan Gohman24300732008-09-23 18:22:58 +0000276 /// getGlobalBaseReg - Return an SDNode that returns the value of
277 /// the global base register. Output instructions required to
278 /// initialize the global base register, if necessary.
279 ///
Evan Cheng61413a32006-08-26 05:34:46 +0000280 SDNode *getGlobalBaseReg();
Evan Cheng5588de92006-02-18 00:15:05 +0000281
Dan Gohman4751bb92009-06-03 20:20:00 +0000282 /// getTargetMachine - Return a reference to the TargetMachine, casted
283 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000284 const X86TargetMachine &getTargetMachine() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000285 return static_cast<const X86TargetMachine &>(TM);
286 }
287
288 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
289 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000290 const X86InstrInfo *getInstrInfo() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000291 return getTargetMachine().getInstrInfo();
292 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000293 };
294}
295
Evan Cheng72bb66a2006-08-08 00:31:00 +0000296
Evan Cheng5e73ff22010-02-15 19:41:07 +0000297bool
298X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000299 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000300
Evan Cheng5e73ff22010-02-15 19:41:07 +0000301 if (!N.hasOneUse())
302 return false;
303
304 if (N.getOpcode() != ISD::LOAD)
305 return true;
306
307 // If N is a load, do additional profitability checks.
308 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000309 switch (U->getOpcode()) {
310 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000311 case X86ISD::ADD:
312 case X86ISD::SUB:
313 case X86ISD::AND:
314 case X86ISD::XOR:
315 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000316 case ISD::ADD:
317 case ISD::ADDC:
318 case ISD::ADDE:
319 case ISD::AND:
320 case ISD::OR:
321 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000322 SDValue Op1 = U->getOperand(1);
323
Evan Cheng83bdb382008-11-27 00:49:46 +0000324 // If the other operand is a 8-bit immediate we should fold the immediate
325 // instead. This reduces code size.
326 // e.g.
327 // movl 4(%esp), %eax
328 // addl $4, %eax
329 // vs.
330 // movl $4, %eax
331 // addl 4(%esp), %eax
332 // The former is 2 bytes shorter. In case where the increment is 1, then
333 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000334 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000335 if (Imm->getAPIntValue().isSignedIntN(8))
336 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000337
338 // If the other operand is a TLS address, we should fold it instead.
339 // This produces
340 // movl %gs:0, %eax
341 // leal i@NTPOFF(%eax), %eax
342 // instead of
343 // movl $i@NTPOFF, %eax
344 // addl %gs:0, %eax
345 // if the block also has an access to a second TLS address this will save
346 // a load.
347 // FIXME: This is probably also true for non TLS addresses.
348 if (Op1.getOpcode() == X86ISD::Wrapper) {
349 SDValue Val = Op1.getOperand(0);
350 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
351 return false;
352 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000353 }
354 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000355 }
356
357 return true;
358}
359
Evan Chengd703df62010-03-14 03:48:46 +0000360/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
361/// load's chain operand and move load below the call's chain operand.
362static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000363 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000364 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000365 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000366 if (Chain.getNode() == Load.getNode())
367 Ops.push_back(Load.getOperand(0));
368 else {
369 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000370 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000371 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
372 if (Chain.getOperand(i).getNode() == Load.getNode())
373 Ops.push_back(Load.getOperand(0));
374 else
375 Ops.push_back(Chain.getOperand(i));
376 SDValue NewChain =
Andrew Trickef9de2a2013-05-25 02:42:55 +0000377 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load),
Owen Anderson9f944592009-08-11 20:47:22 +0000378 MVT::Other, &Ops[0], Ops.size());
Evan Cheng6c7e8512009-01-26 18:43:34 +0000379 Ops.clear();
380 Ops.push_back(NewChain);
381 }
Evan Chengd703df62010-03-14 03:48:46 +0000382 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
383 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman92c11ac2010-06-18 15:30:29 +0000384 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
385 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000386 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000387
Evan Cheng214156c2012-10-02 23:49:13 +0000388 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000389 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000390 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000391 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000392 Ops.push_back(Call.getOperand(i));
Evan Cheng847ad442012-10-05 01:48:22 +0000393 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], NumOps);
Evan Chengf00f1e52008-08-25 21:27:18 +0000394}
395
396/// isCalleeLoad - Return true if call address is a load and it can be
397/// moved below CALLSEQ_START and the chains leading up to the call.
398/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000399/// In the case of a tail call, there isn't a callseq node between the call
400/// chain and the load.
401static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000402 // The transformation is somewhat dangerous if the call's chain was glued to
403 // the call. After MoveBelowOrigChain the load is moved between the call and
404 // the chain, this can create a cycle if the load is not folded. So it is
405 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000406 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000407 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000408 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000409 if (!LD ||
410 LD->isVolatile() ||
411 LD->getAddressingMode() != ISD::UNINDEXED ||
412 LD->getExtensionType() != ISD::NON_EXTLOAD)
413 return false;
414
415 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000416 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000417 if (!Chain.hasOneUse())
418 return false;
419 Chain = Chain.getOperand(0);
420 }
Evan Chengd703df62010-03-14 03:48:46 +0000421
422 if (!Chain.getNumOperands())
423 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000424 // Since we are not checking for AA here, conservatively abort if the chain
425 // writes to memory. It's not safe to move the callee (a load) across a store.
426 if (isa<MemSDNode>(Chain.getNode()) &&
427 cast<MemSDNode>(Chain.getNode())->writeMem())
428 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000429 if (Chain.getOperand(0).getNode() == Callee.getNode())
430 return true;
431 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000432 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
433 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000434 return true;
435 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000436}
437
Chris Lattner8d637042010-03-02 23:12:51 +0000438void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000439 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000440 OptForSize = MF->getFunction()->getAttributes().
441 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000442
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000443 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
444 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000445 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000446
Evan Chengd703df62010-03-14 03:48:46 +0000447 if (OptLevel != CodeGenOpt::None &&
Michael Liao96b42602013-03-28 23:13:21 +0000448 // Only does this when target favors doesn't favor register indirect
449 // call.
450 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng847ad442012-10-05 01:48:22 +0000451 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000452 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000453 (Subtarget->is64Bit() ||
454 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000455 /// Also try moving call address load from outside callseq_start to just
456 /// before the call to allow it to be folded.
457 ///
458 /// [Load chain]
459 /// ^
460 /// |
461 /// [Load]
462 /// ^ ^
463 /// | |
464 /// / \--
465 /// / |
466 ///[CALLSEQ_START] |
467 /// ^ |
468 /// | |
469 /// [LOAD/C2Reg] |
470 /// | |
471 /// \ /
472 /// \ /
473 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000474 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000475 SDValue Chain = N->getOperand(0);
476 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000477 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000478 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000479 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000480 ++NumLoadMoved;
481 continue;
482 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000483
Chris Lattner8d637042010-03-02 23:12:51 +0000484 // Lower fpround and fpextend nodes that target the FP stack to be store and
485 // load to the stack. This is a gross hack. We would like to simply mark
486 // these as being illegal, but when we do that, legalize produces these when
487 // it expands calls, then expands these in the same legalize pass. We would
488 // like dag combine to be able to hack on these between the call expansion
489 // and the node legalization. As such this pass basically does "really
490 // late" legalization of these inline with the X86 isel pass.
491 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000492 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
493 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000494
Craig Topper83e042a2013-08-15 05:57:07 +0000495 MVT SrcVT = N->getOperand(0).getSimpleValueType();
496 MVT DstVT = N->getSimpleValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000497
498 // If any of the sources are vectors, no fp stack involved.
499 if (SrcVT.isVector() || DstVT.isVector())
500 continue;
501
502 // If the source and destination are SSE registers, then this is a legal
503 // conversion that should not be lowered.
Benjamin Kramer02ff1cd2013-06-27 11:07:42 +0000504 const X86TargetLowering *X86Lowering =
505 static_cast<const X86TargetLowering *>(getTargetLowering());
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000506 bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
507 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000508 if (SrcIsSSE && DstIsSSE)
509 continue;
510
Chris Lattnerd587e582008-03-09 07:05:32 +0000511 if (!SrcIsSSE && !DstIsSSE) {
512 // If this is an FPStack extension, it is a noop.
513 if (N->getOpcode() == ISD::FP_EXTEND)
514 continue;
515 // If this is a value-preserving FPStack truncation, it is a noop.
516 if (N->getConstantOperandVal(1))
517 continue;
518 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000519
Chris Lattnera91f77e2008-01-24 08:07:48 +0000520 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
521 // FPStack has extload and truncstore. SSE can fold direct loads into other
522 // operations. Based on this, decide what we want to do.
Craig Topper83e042a2013-08-15 05:57:07 +0000523 MVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000524 if (N->getOpcode() == ISD::FP_ROUND)
525 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
526 else
527 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000528
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000529 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000530 SDLoc dl(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000531
Chris Lattnera91f77e2008-01-24 08:07:48 +0000532 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000533 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000534 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000535 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000536 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000537 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000538 MachinePointerInfo(),
539 MemVT, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000540
541 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
542 // extload we created. This will cause general havok on the dag because
543 // anything below the conversion could be folded into other existing nodes.
544 // To avoid invalidating 'I', back it up to the convert node.
545 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000546 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000547
Chris Lattnera91f77e2008-01-24 08:07:48 +0000548 // Now that we did that, the node is dead. Increment the iterator to the
549 // next node to process, then delete N.
550 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000551 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000552 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000553}
554
Chris Lattner655e7df2005-11-16 01:54:32 +0000555
Anton Korobeynikov90910742007-09-25 21:52:30 +0000556/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
557/// the main function.
558void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
559 MachineFrameInfo *MFI) {
560 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000561 if (Subtarget->isTargetCygMing()) {
562 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000563 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000564 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000565 TII->get(CallOp)).addExternalSymbol("__main");
566 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000567}
568
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000569void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000570 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000571 if (const Function *Fn = MF->getFunction())
572 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
573 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000574}
575
Eli Friedman344ec792011-07-13 21:29:53 +0000576static bool isDispSafeForFrameIndex(int64_t Val) {
577 // On 64-bit platforms, we can run into an issue where a frame index
578 // includes a displacement that, when added to the explicit displacement,
579 // will overflow the displacement field. Assuming that the frame index
580 // displacement fits into a 31-bit integer (which is only slightly more
581 // aggressive than the current fundamental assumption that it fits into
582 // a 32-bit integer), a 31-bit disp should always be safe.
583 return isInt<31>(Val);
584}
585
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000586bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
587 X86ISelAddressMode &AM) {
588 int64_t Val = AM.Disp + Offset;
589 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000590 if (Subtarget->is64Bit()) {
591 if (!X86::isOffsetSuitableForCodeModel(Val, M,
592 AM.hasSymbolicDisplacement()))
593 return true;
594 // In addition to the checks required for a register base, check that
595 // we do not try to use an unsafe Disp with a frame index.
596 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
597 !isDispSafeForFrameIndex(Val))
598 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000599 }
Eli Friedman344ec792011-07-13 21:29:53 +0000600 AM.Disp = Val;
601 return false;
602
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000603}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000604
Chris Lattner8a236b62010-09-22 04:39:11 +0000605bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
606 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000607
Chris Lattner8a236b62010-09-22 04:39:11 +0000608 // load gs:0 -> GS segment register.
609 // load fs:0 -> FS segment register.
610 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000611 // This optimization is valid because the GNU TLS model defines that
612 // gs:0 (or fs:0 on X86-64) contains its own address.
613 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000614 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
615 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000616 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000617 switch (N->getPointerInfo().getAddrSpace()) {
618 case 256:
619 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
620 return false;
621 case 257:
622 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
623 return false;
624 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000625
Rafael Espindola3b2df102009-04-08 21:14:34 +0000626 return true;
627}
628
Chris Lattnerfea81da2009-06-27 04:16:01 +0000629/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
630/// into an addressing mode. These wrap things that will resolve down into a
631/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000632/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000633bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000634 // If the addressing mode already has a symbol as the displacement, we can
635 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000636 if (AM.hasSymbolicDisplacement())
637 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000638
639 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000640 CodeModel::Model M = TM.getCodeModel();
641
Chris Lattnerfea81da2009-06-27 04:16:01 +0000642 // Handle X86-64 rip-relative addresses. We check this before checking direct
643 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000644 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000645 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
646 // they cannot be folded into immediate fields.
647 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000648 (M == CodeModel::Small || M == CodeModel::Kernel)) {
649 // Base and index reg must be 0 in order to use %rip as base.
650 if (AM.hasBaseOrIndexReg())
651 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000652 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000653 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000654 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000655 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000656 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
657 AM = Backup;
658 return true;
659 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000660 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000661 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000662 AM.CP = CP->getConstVal();
663 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000664 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000665 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
666 AM = Backup;
667 return true;
668 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000669 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
670 AM.ES = S->getSymbol();
671 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000672 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000673 AM.JT = J->getIndex();
674 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000675 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
676 X86ISelAddressMode Backup = AM;
677 AM.BlockAddr = BA->getBlockAddress();
678 AM.SymbolFlags = BA->getTargetFlags();
679 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
680 AM = Backup;
681 return true;
682 }
683 } else
684 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000685
Chris Lattnerfea81da2009-06-27 04:16:01 +0000686 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000687 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000688 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000689 }
690
691 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000692 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
693 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000694 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000695 M == CodeModel::Small || M == CodeModel::Kernel) {
696 assert(N.getOpcode() != X86ISD::WrapperRIP &&
697 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000698 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
699 AM.GV = G->getGlobal();
700 AM.Disp += G->getOffset();
701 AM.SymbolFlags = G->getTargetFlags();
702 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
703 AM.CP = CP->getConstVal();
704 AM.Align = CP->getAlignment();
705 AM.Disp += CP->getOffset();
706 AM.SymbolFlags = CP->getTargetFlags();
707 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
708 AM.ES = S->getSymbol();
709 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000710 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000711 AM.JT = J->getIndex();
712 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000713 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
714 AM.BlockAddr = BA->getBlockAddress();
715 AM.Disp += BA->getOffset();
716 AM.SymbolFlags = BA->getTargetFlags();
717 } else
718 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000719 return false;
720 }
721
722 return true;
723}
724
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000725/// MatchAddress - Add the specified node to the specified addressing mode,
726/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000727/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000728bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000729 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000730 return true;
731
732 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
733 // a smaller encoding and avoids a scaled-index.
734 if (AM.Scale == 2 &&
735 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000736 AM.Base_Reg.getNode() == 0) {
737 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000738 AM.Scale = 1;
739 }
740
Dan Gohman05046082009-08-20 18:23:44 +0000741 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
742 // because it has a smaller encoding.
743 // TODO: Which other code models can use this?
744 if (TM.getCodeModel() == CodeModel::Small &&
745 Subtarget->is64Bit() &&
746 AM.Scale == 1 &&
747 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000748 AM.Base_Reg.getNode() == 0 &&
Dan Gohman05046082009-08-20 18:23:44 +0000749 AM.IndexReg.getNode() == 0 &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000750 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000751 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000752 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000753
Dan Gohman824ab402009-07-22 23:26:55 +0000754 return false;
755}
756
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000757// Insert a node into the DAG at least before the Pos node's position. This
758// will reposition the node as needed, and will assign it a node ID that is <=
759// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
760// IDs! The selection DAG must no longer depend on their uniqueness when this
761// is used.
762static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
763 if (N.getNode()->getNodeId() == -1 ||
764 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
765 DAG.RepositionNode(Pos.getNode(), N.getNode());
766 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
767 }
768}
769
Chandler Carruth51d30762012-01-11 08:48:20 +0000770// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
771// allows us to convert the shift and and into an h-register extract and
772// a scaled index. Returns false if the simplification is performed.
773static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
774 uint64_t Mask,
775 SDValue Shift, SDValue X,
776 X86ISelAddressMode &AM) {
777 if (Shift.getOpcode() != ISD::SRL ||
778 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
779 !Shift.hasOneUse())
780 return true;
781
782 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
783 if (ScaleLog <= 0 || ScaleLog >= 4 ||
784 Mask != (0xffu << ScaleLog))
785 return true;
786
Craig Topper83e042a2013-08-15 05:57:07 +0000787 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000788 SDLoc DL(N);
Chandler Carruth51d30762012-01-11 08:48:20 +0000789 SDValue Eight = DAG.getConstant(8, MVT::i8);
790 SDValue NewMask = DAG.getConstant(0xff, VT);
791 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
792 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
793 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
794 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
795
Chandler Carrutheb21da02012-01-12 01:34:44 +0000796 // Insert the new nodes into the topological ordering. We must do this in
797 // a valid topological ordering as nothing is going to go back and re-sort
798 // these nodes. We continually insert before 'N' in sequence as this is
799 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
800 // hierarchy left to express.
801 InsertDAGNode(DAG, N, Eight);
802 InsertDAGNode(DAG, N, Srl);
803 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000804 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000805 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000806 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000807 DAG.ReplaceAllUsesWith(N, Shl);
808 AM.IndexReg = And;
809 AM.Scale = (1 << ScaleLog);
810 return false;
811}
812
Chandler Carruthaa01e662012-01-11 09:35:00 +0000813// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
814// allows us to fold the shift into this addressing mode. Returns false if the
815// transform succeeded.
816static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
817 uint64_t Mask,
818 SDValue Shift, SDValue X,
819 X86ISelAddressMode &AM) {
820 if (Shift.getOpcode() != ISD::SHL ||
821 !isa<ConstantSDNode>(Shift.getOperand(1)))
822 return true;
823
824 // Not likely to be profitable if either the AND or SHIFT node has more
825 // than one use (unless all uses are for address computation). Besides,
826 // isel mechanism requires their node ids to be reused.
827 if (!N.hasOneUse() || !Shift.hasOneUse())
828 return true;
829
830 // Verify that the shift amount is something we can fold.
831 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
832 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
833 return true;
834
Craig Topper83e042a2013-08-15 05:57:07 +0000835 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000836 SDLoc DL(N);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000837 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
838 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
839 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
840
Chandler Carrutheb21da02012-01-12 01:34:44 +0000841 // Insert the new nodes into the topological ordering. We must do this in
842 // a valid topological ordering as nothing is going to go back and re-sort
843 // these nodes. We continually insert before 'N' in sequence as this is
844 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
845 // hierarchy left to express.
846 InsertDAGNode(DAG, N, NewMask);
847 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000848 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000849 DAG.ReplaceAllUsesWith(N, NewShift);
850
851 AM.Scale = 1 << ShiftAmt;
852 AM.IndexReg = NewAnd;
853 return false;
854}
855
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000856// Implement some heroics to detect shifts of masked values where the mask can
857// be replaced by extending the shift and undoing that in the addressing mode
858// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
859// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
860// the addressing mode. This results in code such as:
861//
862// int f(short *y, int *lookup_table) {
863// ...
864// return *y + lookup_table[*y >> 11];
865// }
866//
867// Turning into:
868// movzwl (%rdi), %eax
869// movl %eax, %ecx
870// shrl $11, %ecx
871// addl (%rsi,%rcx,4), %eax
872//
873// Instead of:
874// movzwl (%rdi), %eax
875// movl %eax, %ecx
876// shrl $9, %ecx
877// andl $124, %rcx
878// addl (%rsi,%rcx), %eax
879//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000880// Note that this function assumes the mask is provided as a mask *after* the
881// value is shifted. The input chain may or may not match that, but computing
882// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000883static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000884 uint64_t Mask,
885 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000886 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000887 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
888 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000889 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000890
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000891 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000892 unsigned MaskLZ = countLeadingZeros(Mask);
893 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000894
895 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000896 // from the trailing zeros of the mask.
897 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000898
899 // There is nothing we can do here unless the mask is removing some bits.
900 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
901 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
902
903 // We also need to ensure that mask is a continuous run of bits.
904 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
905
906 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000907 // Also scale it down based on the size of the shift.
Craig Topper83e042a2013-08-15 05:57:07 +0000908 MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000909
910 // The final check is to ensure that any masked out high bits of X are
911 // already known to be zero. Otherwise, the mask has a semantic impact
912 // other than masking out a couple of low bits. Unfortunately, because of
913 // the mask, zero extensions will be removed from operands in some cases.
914 // This code works extra hard to look through extensions because we can
915 // replace them with zero extensions cheaply if necessary.
916 bool ReplacingAnyExtend = false;
917 if (X.getOpcode() == ISD::ANY_EXTEND) {
Craig Topper83e042a2013-08-15 05:57:07 +0000918 unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
919 X.getOperand(0).getSimpleValueType().getSizeInBits();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000920 // Assume that we'll replace the any-extend with a zero-extend, and
921 // narrow the search to the extended value.
922 X = X.getOperand(0);
923 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
924 ReplacingAnyExtend = true;
925 }
Craig Topper83e042a2013-08-15 05:57:07 +0000926 APInt MaskedHighBits =
927 APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000928 APInt KnownZero, KnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +0000929 DAG.ComputeMaskedBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000930 if (MaskedHighBits != KnownZero) return true;
931
932 // We've identified a pattern that can be transformed into a single shift
933 // and an addressing mode. Make it so.
Craig Topper83e042a2013-08-15 05:57:07 +0000934 MVT VT = N.getSimpleValueType();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000935 if (ReplacingAnyExtend) {
936 assert(X.getValueType() != VT);
937 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000938 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000939 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000940 X = NewX;
941 }
Andrew Trickef9de2a2013-05-25 02:42:55 +0000942 SDLoc DL(N);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000943 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
944 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
945 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
946 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000947
948 // Insert the new nodes into the topological ordering. We must do this in
949 // a valid topological ordering as nothing is going to go back and re-sort
950 // these nodes. We continually insert before 'N' in sequence as this is
951 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
952 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000953 InsertDAGNode(DAG, N, NewSRLAmt);
954 InsertDAGNode(DAG, N, NewSRL);
955 InsertDAGNode(DAG, N, NewSHLAmt);
956 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000957 DAG.ReplaceAllUsesWith(N, NewSHL);
958
959 AM.Scale = 1 << AMShiftAmt;
960 AM.IndexReg = NewSRL;
961 return false;
962}
963
Dan Gohman824ab402009-07-22 23:26:55 +0000964bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
965 unsigned Depth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000966 SDLoc dl(N);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000967 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000968 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000969 AM.dump();
970 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000971 // Limit recursion.
972 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000973 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000974
Chris Lattnerfea81da2009-06-27 04:16:01 +0000975 // If this is already a %rip relative address, we can only merge immediates
976 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000977 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000978 if (AM.isRIPRelative()) {
979 // FIXME: JumpTable and ExternalSymbol address currently don't like
980 // displacements. It isn't very important, but this should be fixed for
981 // consistency.
982 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000983
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000984 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
985 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000986 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000987 return true;
988 }
989
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000990 switch (N.getOpcode()) {
991 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000992 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +0000993 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000994 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000995 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000996 break;
997 }
Evan Cheng77d86ff2006-02-25 10:09:08 +0000998
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000999 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001000 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001001 if (!MatchWrapper(N, AM))
1002 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001003 break;
1004
Rafael Espindola3b2df102009-04-08 21:14:34 +00001005 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001006 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001007 return false;
1008 break;
1009
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001010 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001011 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1012 AM.Base_Reg.getNode() == 0 &&
1013 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001014 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001015 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001016 return false;
1017 }
1018 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001019
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001020 case ISD::SHL:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001021 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001022 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001023
Gabor Greif81d6a382008-08-31 15:37:04 +00001024 if (ConstantSDNode
1025 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001026 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001027 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1028 // that the base operand remains free for further matching. If
1029 // the base doesn't end up getting used, a post-processing step
1030 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001031 if (Val == 1 || Val == 2 || Val == 3) {
1032 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001033 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001034
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001035 // Okay, we know that we have a scale by now. However, if the scaled
1036 // value is an add of something and a constant, we can fold the
1037 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001038 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001039 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001040 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001041 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001042 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001043 if (!FoldOffsetIntoAddress(Disp, AM))
1044 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001045 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001046
1047 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001048 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001049 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001050 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001051 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001052
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001053 case ISD::SRL: {
1054 // Scale must not be used already.
1055 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1056
1057 SDValue And = N.getOperand(0);
1058 if (And.getOpcode() != ISD::AND) break;
1059 SDValue X = And.getOperand(0);
1060
1061 // We only handle up to 64-bit values here as those are what matter for
1062 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001063 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001064
1065 // The mask used for the transform is expected to be post-shift, but we
1066 // found the shift first so just apply the shift to the mask before passing
1067 // it down.
1068 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1069 !isa<ConstantSDNode>(And.getOperand(1)))
1070 break;
1071 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1072
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001073 // Try to fold the mask and shift into the scale, and return false if we
1074 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001075 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001076 return false;
1077 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001078 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001079
Dan Gohmanbf474952007-10-22 20:22:24 +00001080 case ISD::SMUL_LOHI:
1081 case ISD::UMUL_LOHI:
1082 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001083 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001084 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001085 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001086 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001087 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001088 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001089 AM.Base_Reg.getNode() == 0 &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001090 AM.IndexReg.getNode() == 0) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001091 if (ConstantSDNode
1092 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001093 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1094 CN->getZExtValue() == 9) {
1095 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001096
Gabor Greiff304a7a2008-08-28 21:40:38 +00001097 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001098 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001099
1100 // Okay, we know that we have a scale by now. However, if the scaled
1101 // value is an add of something and a constant, we can fold the
1102 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001103 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1104 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1105 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001106 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001107 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001108 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1109 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001110 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001111 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001112 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001113 }
1114
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001115 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001116 return false;
1117 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001118 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001119 break;
1120
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001121 case ISD::SUB: {
1122 // Given A-B, if A can be completely folded into the address and
1123 // the index field with the index field unused, use -B as the index.
1124 // This is a win if a has multiple parts that can be folded into
1125 // the address. Also, this saves a mov if the base register has
1126 // other uses, since it avoids a two-address sub instruction, however
1127 // it costs an additional mov if the index register has other uses.
1128
Dan Gohman99ba4da2010-06-18 01:24:29 +00001129 // Add an artificial use to this node so that we can keep track of
1130 // it if it gets CSE'd with a different node.
1131 HandleSDNode Handle(N);
1132
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001133 // Test if the LHS of the sub can be folded.
1134 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001135 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001136 AM = Backup;
1137 break;
1138 }
1139 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001140 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001141 AM = Backup;
1142 break;
1143 }
Evan Cheng68333f52010-03-17 23:58:35 +00001144
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001145 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001146 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001147 // If the RHS involves a register with multiple uses, this
1148 // transformation incurs an extra mov, due to the neg instruction
1149 // clobbering its operand.
1150 if (!RHS.getNode()->hasOneUse() ||
1151 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1152 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1153 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1154 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001155 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001156 ++Cost;
1157 // If the base is a register with multiple uses, this
1158 // transformation may save a mov.
1159 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001160 AM.Base_Reg.getNode() &&
1161 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001162 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1163 --Cost;
1164 // If the folded LHS was interesting, this transformation saves
1165 // address arithmetic.
1166 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1167 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1168 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1169 --Cost;
1170 // If it doesn't look like it may be an overall win, don't do it.
1171 if (Cost >= 0) {
1172 AM = Backup;
1173 break;
1174 }
1175
1176 // Ok, the transformation is legal and appears profitable. Go for it.
1177 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1178 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1179 AM.IndexReg = Neg;
1180 AM.Scale = 1;
1181
1182 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001183 InsertDAGNode(*CurDAG, N, Zero);
1184 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001185 return false;
1186 }
1187
Evan Chengbf38a5e2009-01-17 07:09:27 +00001188 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001189 // Add an artificial use to this node so that we can keep track of
1190 // it if it gets CSE'd with a different node.
1191 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001192
Evan Chengbf38a5e2009-01-17 07:09:27 +00001193 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001194 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1195 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001196 return false;
1197 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001198
Evan Cheng68333f52010-03-17 23:58:35 +00001199 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001200 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1201 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001202 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001203 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001204
1205 // If we couldn't fold both operands into the address at the same time,
1206 // see if we can just put each operand into a register and fold at least
1207 // the add.
1208 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001209 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001210 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001211 N = Handle.getValue();
1212 AM.Base_Reg = N.getOperand(0);
1213 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001214 AM.Scale = 1;
1215 return false;
1216 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001217 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001218 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001219 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001220
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001221 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001222 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001223 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001224 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001225 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001226
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001227 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001228 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001229 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001230 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001231 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001232 }
1233 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001234
Evan Cheng827d30d2007-12-13 00:43:27 +00001235 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001236 // Perform some heroic transforms on an and of a constant-count shift
1237 // with a constant to enable use of the scaled offset field.
1238
Evan Cheng827d30d2007-12-13 00:43:27 +00001239 // Scale must not be used already.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001240 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001241
Chandler Carruthaa01e662012-01-11 09:35:00 +00001242 SDValue Shift = N.getOperand(0);
1243 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001244 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001245
1246 // We only handle up to 64-bit values here as those are what matter for
1247 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001248 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthaa01e662012-01-11 09:35:00 +00001249
Chandler Carruthb0049f42012-01-11 09:35:04 +00001250 if (!isa<ConstantSDNode>(N.getOperand(1)))
1251 break;
1252 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001253
Chandler Carruth51d30762012-01-11 08:48:20 +00001254 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001255 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001256 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001257
Chandler Carruth51d30762012-01-11 08:48:20 +00001258 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001259 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001260 return false;
1261
Chandler Carruthaa01e662012-01-11 09:35:00 +00001262 // Try to swap the mask and shift to place shifts which can be done as
1263 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001264 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001265 return false;
1266 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001267 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001268 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001269
Rafael Espindola92773792009-03-31 16:16:57 +00001270 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001271}
1272
1273/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1274/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001275bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001276 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001277 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001278 // If so, check to see if the scale index register is set.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001279 if (AM.IndexReg.getNode() == 0) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001280 AM.IndexReg = N;
1281 AM.Scale = 1;
1282 return false;
1283 }
1284
1285 // Otherwise, we cannot select it.
1286 return true;
1287 }
1288
1289 // Default, generate it as a register.
1290 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001291 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001292 return false;
1293}
1294
Evan Chengc9fab312005-12-08 02:01:35 +00001295/// SelectAddr - returns true if it is able pattern match an addressing mode.
1296/// It returns the operands which make up the maximal addressing mode it can
1297/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001298///
1299/// Parent is the parent node of the addr operand that is being matched. It
1300/// is always a load, store, atomic node, or null. It is only null when
1301/// checking memory operands for inline asm nodes.
1302bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001303 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001304 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001305 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001306
Chris Lattner8a236b62010-09-22 04:39:11 +00001307 if (Parent &&
1308 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1309 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001310 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001311 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001312 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1313 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1314 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001315 unsigned AddrSpace =
1316 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1317 // AddrSpace 256 -> GS, 257 -> FS.
1318 if (AddrSpace == 256)
1319 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1320 if (AddrSpace == 257)
1321 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1322 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001323
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001324 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001325 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001326
Craig Topper83e042a2013-08-15 05:57:07 +00001327 MVT VT = N.getSimpleValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001328 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001329 if (!AM.Base_Reg.getNode())
1330 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001331 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001332
Gabor Greiff304a7a2008-08-28 21:40:38 +00001333 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001334 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001335
Rafael Espindola3b2df102009-04-08 21:14:34 +00001336 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001337 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001338}
1339
Chris Lattner398195e2006-10-07 21:55:32 +00001340/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1341/// match a load whose top elements are either undef or zeros. The load flavor
1342/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001343///
1344/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001345/// PatternChainNode: this is the matched node that has a chain input and
1346/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001347bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001348 SDValue N, SDValue &Base,
1349 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001350 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001351 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001352 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001353 PatternNodeWithChain = N.getOperand(0);
1354 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1355 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001356 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001357 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001358 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001359 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001360 return false;
1361 return true;
1362 }
1363 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001364
1365 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001366 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001367 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001368 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001369 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001370 N.getOperand(0).getNode()->hasOneUse() &&
1371 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001372 N.getOperand(0).getOperand(0).hasOneUse() &&
1373 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001374 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001375 // Okay, this is a zero extending load. Fold it.
1376 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001377 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001378 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001379 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001380 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001381 }
Chris Lattner398195e2006-10-07 21:55:32 +00001382 return false;
1383}
1384
1385
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001386bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1387 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1388 uint64_t ImmVal = CN->getZExtValue();
1389 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1390 return false;
1391
1392 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1393 return true;
1394 }
1395
1396 // In static codegen with small code model, we can get the address of a label
1397 // into a register with 'movl'. TableGen has already made sure we're looking
1398 // at a label of some kind.
Tim Northover6833e3f2013-06-10 20:43:49 +00001399 assert(N->getOpcode() == X86ISD::Wrapper &&
1400 "Unexpected node type for MOV32ri64");
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001401 N = N.getOperand(0);
1402
1403 if (N->getOpcode() != ISD::TargetConstantPool &&
1404 N->getOpcode() != ISD::TargetJumpTable &&
1405 N->getOpcode() != ISD::TargetGlobalAddress &&
1406 N->getOpcode() != ISD::TargetExternalSymbol &&
1407 N->getOpcode() != ISD::TargetBlockAddress)
1408 return false;
1409
1410 Imm = N;
1411 return TM.getCodeModel() == CodeModel::Small;
1412}
1413
Tim Northover6833e3f2013-06-10 20:43:49 +00001414bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1415 SDValue &Scale, SDValue &Index,
1416 SDValue &Disp, SDValue &Segment) {
1417 if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1418 return false;
1419
1420 SDLoc DL(N);
1421 RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1422 if (RN && RN->getReg() == 0)
1423 Base = CurDAG->getRegister(0, MVT::i64);
1424 else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(N)) {
1425 // Base could already be %rip, particularly in the x32 ABI.
1426 Base = SDValue(CurDAG->getMachineNode(
1427 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1428 CurDAG->getTargetConstant(0, MVT::i64),
1429 Base,
1430 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1431 0);
1432 }
1433
1434 RN = dyn_cast<RegisterSDNode>(Index);
1435 if (RN && RN->getReg() == 0)
1436 Index = CurDAG->getRegister(0, MVT::i64);
1437 else {
1438 assert(Index.getValueType() == MVT::i32 &&
1439 "Expect to be extending 32-bit registers for use in LEA");
1440 Index = SDValue(CurDAG->getMachineNode(
1441 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1442 CurDAG->getTargetConstant(0, MVT::i64),
1443 Index,
1444 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1445 0);
1446 }
1447
1448 return true;
1449}
1450
Evan Cheng77d86ff2006-02-25 10:09:08 +00001451/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1452/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001453bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001454 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001455 SDValue &Index, SDValue &Disp,
1456 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001457 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001458
1459 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1460 // segments.
1461 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001462 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001463 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001464 if (MatchAddress(N, AM))
1465 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001466 assert (T == AM.Segment);
1467 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001468
Craig Topper83e042a2013-08-15 05:57:07 +00001469 MVT VT = N.getSimpleValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001470 unsigned Complexity = 0;
1471 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001472 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001473 Complexity = 1;
1474 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001475 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001476 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1477 Complexity = 4;
1478
Gabor Greiff304a7a2008-08-28 21:40:38 +00001479 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001480 Complexity++;
1481 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001482 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001483
Chris Lattner3e1d9172007-03-20 06:08:29 +00001484 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1485 // a simple shift.
1486 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001487 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001488
1489 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1490 // to a LEA. This is determined with some expermentation but is by no means
1491 // optimal (especially for code size consideration). LEA is nice because of
1492 // its three-address nature. Tweak the cost function again when we can run
1493 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001494 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001495 // For X86-64, we should always use lea to materialize RIP relative
1496 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001497 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001498 Complexity = 4;
1499 else
1500 Complexity += 2;
1501 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001502
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001503 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001504 Complexity++;
1505
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001506 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001507 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001508 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001509
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001510 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1511 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001512}
1513
Chris Lattner7d2b0492009-06-20 20:38:48 +00001514/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001515bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001516 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001517 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001518 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1519 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001520
Chris Lattner7d2b0492009-06-20 20:38:48 +00001521 X86ISelAddressMode AM;
1522 AM.GV = GA->getGlobal();
1523 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001524 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001525 AM.SymbolFlags = GA->getTargetFlags();
1526
Owen Anderson9f944592009-08-11 20:47:22 +00001527 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001528 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001529 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001530 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001531 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001532 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001533
Chris Lattner7d2b0492009-06-20 20:38:48 +00001534 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1535 return true;
1536}
1537
1538
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001539bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001540 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001541 SDValue &Index, SDValue &Disp,
1542 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001543 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1544 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001545 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001546 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001547
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001548 return SelectAddr(N.getNode(),
1549 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001550}
1551
Dan Gohman24300732008-09-23 18:22:58 +00001552/// getGlobalBaseReg - Return an SDNode that returns the value of
1553/// the global base register. Output instructions required to
1554/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001555///
Evan Cheng61413a32006-08-26 05:34:46 +00001556SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001557 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001558 return CurDAG->getRegister(GlobalBaseReg,
1559 getTargetLowering()->getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001560}
1561
Dale Johannesen867d5492008-10-02 18:53:47 +00001562SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1563 SDValue Chain = Node->getOperand(0);
1564 SDValue In1 = Node->getOperand(1);
1565 SDValue In2L = Node->getOperand(2);
1566 SDValue In2H = Node->getOperand(3);
Michael Liao83725392012-09-19 19:36:58 +00001567
Rafael Espindola3b2df102009-04-08 21:14:34 +00001568 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001569 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen867d5492008-10-02 18:53:47 +00001570 return NULL;
Dan Gohman48b185d2009-09-25 20:36:54 +00001571 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1572 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1573 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00001574 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00001575 MVT::i32, MVT::i32, MVT::Other, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00001576 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1577 return ResNode;
Dale Johannesen867d5492008-10-02 18:53:47 +00001578}
Christopher Lambb372aba2007-08-10 21:48:46 +00001579
Michael Liao83725392012-09-19 19:36:58 +00001580/// Atomic opcode table
1581///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001582enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001583 ADD,
1584 SUB,
1585 INC,
1586 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001587 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001588 AND,
1589 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001590 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001591};
1592
1593enum AtomicSz {
1594 ConstantI8,
1595 I8,
1596 SextConstantI16,
1597 ConstantI16,
1598 I16,
1599 SextConstantI32,
1600 ConstantI32,
1601 I32,
1602 SextConstantI64,
1603 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001604 I64,
1605 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001606};
1607
Craig Topper2dac9622012-03-09 07:45:21 +00001608static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001609 {
Michael Liao83725392012-09-19 19:36:58 +00001610 X86::LOCK_ADD8mi,
1611 X86::LOCK_ADD8mr,
1612 X86::LOCK_ADD16mi8,
1613 X86::LOCK_ADD16mi,
1614 X86::LOCK_ADD16mr,
1615 X86::LOCK_ADD32mi8,
1616 X86::LOCK_ADD32mi,
1617 X86::LOCK_ADD32mr,
1618 X86::LOCK_ADD64mi8,
1619 X86::LOCK_ADD64mi32,
1620 X86::LOCK_ADD64mr,
1621 },
1622 {
1623 X86::LOCK_SUB8mi,
1624 X86::LOCK_SUB8mr,
1625 X86::LOCK_SUB16mi8,
1626 X86::LOCK_SUB16mi,
1627 X86::LOCK_SUB16mr,
1628 X86::LOCK_SUB32mi8,
1629 X86::LOCK_SUB32mi,
1630 X86::LOCK_SUB32mr,
1631 X86::LOCK_SUB64mi8,
1632 X86::LOCK_SUB64mi32,
1633 X86::LOCK_SUB64mr,
1634 },
1635 {
1636 0,
1637 X86::LOCK_INC8m,
1638 0,
1639 0,
1640 X86::LOCK_INC16m,
1641 0,
1642 0,
1643 X86::LOCK_INC32m,
1644 0,
1645 0,
1646 X86::LOCK_INC64m,
1647 },
1648 {
1649 0,
1650 X86::LOCK_DEC8m,
1651 0,
1652 0,
1653 X86::LOCK_DEC16m,
1654 0,
1655 0,
1656 X86::LOCK_DEC32m,
1657 0,
1658 0,
1659 X86::LOCK_DEC64m,
1660 },
1661 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001662 X86::LOCK_OR8mi,
1663 X86::LOCK_OR8mr,
1664 X86::LOCK_OR16mi8,
1665 X86::LOCK_OR16mi,
1666 X86::LOCK_OR16mr,
1667 X86::LOCK_OR32mi8,
1668 X86::LOCK_OR32mi,
1669 X86::LOCK_OR32mr,
1670 X86::LOCK_OR64mi8,
1671 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001672 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001673 },
1674 {
1675 X86::LOCK_AND8mi,
1676 X86::LOCK_AND8mr,
1677 X86::LOCK_AND16mi8,
1678 X86::LOCK_AND16mi,
1679 X86::LOCK_AND16mr,
1680 X86::LOCK_AND32mi8,
1681 X86::LOCK_AND32mi,
1682 X86::LOCK_AND32mr,
1683 X86::LOCK_AND64mi8,
1684 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001685 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001686 },
1687 {
1688 X86::LOCK_XOR8mi,
1689 X86::LOCK_XOR8mr,
1690 X86::LOCK_XOR16mi8,
1691 X86::LOCK_XOR16mi,
1692 X86::LOCK_XOR16mr,
1693 X86::LOCK_XOR32mi8,
1694 X86::LOCK_XOR32mi,
1695 X86::LOCK_XOR32mr,
1696 X86::LOCK_XOR64mi8,
1697 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001698 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001699 }
1700};
1701
Michael Liao83725392012-09-19 19:36:58 +00001702// Return the target constant operand for atomic-load-op and do simple
1703// translations, such as from atomic-load-add to lock-sub. The return value is
1704// one of the following 3 cases:
1705// + target-constant, the operand could be supported as a target constant.
1706// + empty, the operand is not needed any more with the new op selected.
1707// + non-empty, otherwise.
1708static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001709 SDLoc dl,
Craig Topper83e042a2013-08-15 05:57:07 +00001710 enum AtomicOpc &Op, MVT NVT,
Michael Liao83725392012-09-19 19:36:58 +00001711 SDValue Val) {
1712 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1713 int64_t CNVal = CN->getSExtValue();
1714 // Quit if not 32-bit imm.
1715 if ((int32_t)CNVal != CNVal)
1716 return Val;
1717 // For atomic-load-add, we could do some optimizations.
1718 if (Op == ADD) {
1719 // Translate to INC/DEC if ADD by 1 or -1.
1720 if ((CNVal == 1) || (CNVal == -1)) {
1721 Op = (CNVal == 1) ? INC : DEC;
1722 // No more constant operand after being translated into INC/DEC.
1723 return SDValue();
1724 }
1725 // Translate to SUB if ADD by negative value.
1726 if (CNVal < 0) {
1727 Op = SUB;
1728 CNVal = -CNVal;
1729 }
1730 }
1731 return CurDAG->getTargetConstant(CNVal, NVT);
1732 }
1733
1734 // If the value operand is single-used, try to optimize it.
1735 if (Op == ADD && Val.hasOneUse()) {
1736 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1737 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1738 Op = SUB;
1739 return Val.getOperand(1);
1740 }
1741 // A special case for i16, which needs truncating as, in most cases, it's
1742 // promoted to i32. We will translate
1743 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1744 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1745 Val.getOperand(0).getOpcode() == ISD::SUB &&
1746 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1747 Op = SUB;
1748 Val = Val.getOperand(0);
1749 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1750 Val.getOperand(1));
1751 }
1752 }
1753
1754 return Val;
1755}
1756
Craig Topper83e042a2013-08-15 05:57:07 +00001757SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001758 if (Node->hasAnyUseOfValue(0))
1759 return 0;
Chad Rosier24c19d22012-08-01 18:39:17 +00001760
Andrew Trickef9de2a2013-05-25 02:42:55 +00001761 SDLoc dl(Node);
Michael Liao83725392012-09-19 19:36:58 +00001762
Eric Christopher56a42eb2011-05-17 08:16:14 +00001763 // Optimize common patterns for __sync_or_and_fetch and similar arith
1764 // operations where the result is not used. This allows us to use the "lock"
1765 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001766 SDValue Chain = Node->getOperand(0);
1767 SDValue Ptr = Node->getOperand(1);
1768 SDValue Val = Node->getOperand(2);
1769 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1770 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1771 return 0;
1772
Eric Christophera1d9e292011-05-17 08:10:18 +00001773 // Which index into the table.
1774 enum AtomicOpc Op;
1775 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001776 default:
1777 return 0;
Eric Christophera1d9e292011-05-17 08:10:18 +00001778 case ISD::ATOMIC_LOAD_OR:
1779 Op = OR;
1780 break;
1781 case ISD::ATOMIC_LOAD_AND:
1782 Op = AND;
1783 break;
1784 case ISD::ATOMIC_LOAD_XOR:
1785 Op = XOR;
1786 break;
Michael Liao83725392012-09-19 19:36:58 +00001787 case ISD::ATOMIC_LOAD_ADD:
1788 Op = ADD;
1789 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001790 }
Andrew Trick52b83872013-04-13 06:07:36 +00001791
Michael Liao83725392012-09-19 19:36:58 +00001792 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1793 bool isUnOp = !Val.getNode();
1794 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001795
Eric Christopher4a34e612011-05-10 23:57:45 +00001796 unsigned Opc = 0;
Craig Topper83e042a2013-08-15 05:57:07 +00001797 switch (NVT.SimpleTy) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001798 default: return 0;
1799 case MVT::i8:
1800 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001801 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001802 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001803 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001804 break;
1805 case MVT::i16:
1806 if (isCN) {
1807 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001808 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001809 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001810 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001811 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001812 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001813 break;
1814 case MVT::i32:
1815 if (isCN) {
1816 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001817 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001818 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001819 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001820 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001821 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001822 break;
1823 case MVT::i64:
Eric Christopherc93217372011-06-30 00:48:30 +00001824 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001825 if (isCN) {
1826 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001827 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001828 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001829 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopherc93217372011-06-30 00:48:30 +00001830 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001831 break;
1832 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001833
Eric Christopherc93217372011-06-30 00:48:30 +00001834 assert(Opc != 0 && "Invalid arith lock transform!");
1835
Michael Liao83725392012-09-19 19:36:58 +00001836 SDValue Ret;
Eric Christopher4a34e612011-05-10 23:57:45 +00001837 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1838 dl, NVT), 0);
1839 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1840 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Michael Liao83725392012-09-19 19:36:58 +00001841 if (isUnOp) {
1842 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001843 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001844 } else {
1845 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001846 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001847 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001848 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1849 SDValue RetVals[] = { Undef, Ret };
1850 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1851}
1852
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001853/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1854/// any uses which require the SF or OF bits to be accurate.
1855static bool HasNoSignedComparisonUses(SDNode *N) {
1856 // Examine each user of the node.
1857 for (SDNode::use_iterator UI = N->use_begin(),
1858 UE = N->use_end(); UI != UE; ++UI) {
1859 // Only examine CopyToReg uses.
1860 if (UI->getOpcode() != ISD::CopyToReg)
1861 return false;
1862 // Only examine CopyToReg uses that copy to EFLAGS.
1863 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1864 X86::EFLAGS)
1865 return false;
1866 // Examine each user of the CopyToReg use.
1867 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1868 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1869 // Only examine the Flag result.
1870 if (FlagUI.getUse().getResNo() != 1) continue;
1871 // Anything unusual: assume conservatively.
1872 if (!FlagUI->isMachineOpcode()) return false;
1873 // Examine the opcode of the user.
1874 switch (FlagUI->getMachineOpcode()) {
1875 // These comparisons don't treat the most significant bit specially.
1876 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1877 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1878 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1879 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattner2b0a7a22010-02-11 19:25:55 +00001880 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1881 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001882 case X86::CMOVA16rr: case X86::CMOVA16rm:
1883 case X86::CMOVA32rr: case X86::CMOVA32rm:
1884 case X86::CMOVA64rr: case X86::CMOVA64rm:
1885 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1886 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1887 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1888 case X86::CMOVB16rr: case X86::CMOVB16rm:
1889 case X86::CMOVB32rr: case X86::CMOVB32rm:
1890 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001891 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1892 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1893 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001894 case X86::CMOVE16rr: case X86::CMOVE16rm:
1895 case X86::CMOVE32rr: case X86::CMOVE32rm:
1896 case X86::CMOVE64rr: case X86::CMOVE64rm:
1897 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1898 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1899 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1900 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1901 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1902 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1903 case X86::CMOVP16rr: case X86::CMOVP16rm:
1904 case X86::CMOVP32rr: case X86::CMOVP32rm:
1905 case X86::CMOVP64rr: case X86::CMOVP64rm:
1906 continue;
1907 // Anything else: assume conservatively.
1908 default: return false;
1909 }
1910 }
1911 }
1912 return true;
1913}
1914
Joel Jones68d59e82012-03-29 05:45:48 +00001915/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1916/// is suitable for doing the {load; increment or decrement; store} to modify
1917/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001918static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001919 SDValue StoredVal, SelectionDAG *CurDAG,
1920 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001921
1922 // is the value stored the result of a DEC or INC?
1923 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1924
Joel Jones68d59e82012-03-29 05:45:48 +00001925 // is the stored value result 0 of the load?
1926 if (StoredVal.getResNo() != 0) return false;
1927
1928 // are there other uses of the loaded value than the inc or dec?
1929 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1930
Joel Jones68d59e82012-03-29 05:45:48 +00001931 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001932 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001933 return false;
1934
Evan Cheng3e869f02012-04-12 19:14:21 +00001935 SDValue Load = StoredVal->getOperand(0);
1936 // Is the stored value a non-extending and non-indexed load?
1937 if (!ISD::isNormalLoad(Load.getNode())) return false;
1938
1939 // Return LoadNode by reference.
1940 LoadNode = cast<LoadSDNode>(Load);
1941 // is the size of the value one that we can handle? (i.e. 64, 32, 16, or 8)
Chad Rosier24c19d22012-08-01 18:39:17 +00001942 EVT LdVT = LoadNode->getMemoryVT();
1943 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001944 LdVT != MVT::i8)
1945 return false;
1946
1947 // Is store the only read of the loaded value?
1948 if (!Load.hasOneUse())
1949 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001950
Evan Cheng3e869f02012-04-12 19:14:21 +00001951 // Is the address of the store the same as the load?
1952 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1953 LoadNode->getOffset() != StoreNode->getOffset())
1954 return false;
1955
1956 // Check if the chain is produced by the load or is a TokenFactor with
1957 // the load output chain as an operand. Return InputChain by reference.
1958 SDValue Chain = StoreNode->getChain();
1959
1960 bool ChainCheck = false;
1961 if (Chain == Load.getValue(1)) {
1962 ChainCheck = true;
1963 InputChain = LoadNode->getChain();
1964 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1965 SmallVector<SDValue, 4> ChainOps;
1966 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1967 SDValue Op = Chain.getOperand(i);
1968 if (Op == Load.getValue(1)) {
1969 ChainCheck = true;
1970 continue;
1971 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001972
1973 // Make sure using Op as part of the chain would not cause a cycle here.
1974 // In theory, we could check whether the chain node is a predecessor of
1975 // the load. But that can be very expensive. Instead visit the uses and
1976 // make sure they all have smaller node id than the load.
1977 int LoadId = LoadNode->getNodeId();
1978 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1979 UE = UI->use_end(); UI != UE; ++UI) {
1980 if (UI.getUse().getResNo() != 0)
1981 continue;
1982 if (UI->getNodeId() > LoadId)
1983 return false;
1984 }
1985
Evan Cheng3e869f02012-04-12 19:14:21 +00001986 ChainOps.push_back(Op);
1987 }
1988
1989 if (ChainCheck)
1990 // Make a new TokenFactor with all the other input chains except
1991 // for the load.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001992 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Evan Cheng3e869f02012-04-12 19:14:21 +00001993 MVT::Other, &ChainOps[0], ChainOps.size());
1994 }
1995 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00001996 return false;
1997
1998 return true;
1999}
2000
Benjamin Kramer8619c372012-03-29 12:37:26 +00002001/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2002/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00002003static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2004 if (Opc == X86ISD::DEC) {
2005 if (LdVT == MVT::i64) return X86::DEC64m;
2006 if (LdVT == MVT::i32) return X86::DEC32m;
2007 if (LdVT == MVT::i16) return X86::DEC16m;
2008 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00002009 } else {
2010 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00002011 if (LdVT == MVT::i64) return X86::INC64m;
2012 if (LdVT == MVT::i32) return X86::INC32m;
2013 if (LdVT == MVT::i16) return X86::INC16m;
2014 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00002015 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00002016 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00002017}
2018
Manman Rena0982042012-06-26 19:47:59 +00002019/// SelectGather - Customized ISel for GATHER operations.
2020///
2021SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2022 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2023 SDValue Chain = Node->getOperand(0);
2024 SDValue VSrc = Node->getOperand(2);
2025 SDValue Base = Node->getOperand(3);
2026 SDValue VIdx = Node->getOperand(4);
2027 SDValue VMask = Node->getOperand(5);
2028 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00002029 if (!Scale)
2030 return 0;
Manman Rena0982042012-06-26 19:47:59 +00002031
Craig Topperf7755df2012-07-12 06:52:41 +00002032 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2033 MVT::Other);
2034
Manman Rena0982042012-06-26 19:47:59 +00002035 // Memory Operands: Base, Scale, Index, Disp, Segment
2036 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
2037 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2038 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
2039 Disp, Segment, VMask, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00002040 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topperf7755df2012-07-12 06:52:41 +00002041 // Node has 2 outputs: VDst and MVT::Other.
2042 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2043 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2044 // of ResNode.
2045 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2046 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00002047 return ResNode;
2048}
2049
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002050SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Craig Topper83e042a2013-08-15 05:57:07 +00002051 MVT NVT = Node->getSimpleValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00002052 unsigned Opc, MOpc;
2053 unsigned Opcode = Node->getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002054 SDLoc dl(Node);
Chad Rosier24c19d22012-08-01 18:39:17 +00002055
Chris Lattnerf98f1242010-03-02 06:34:30 +00002056 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00002057
Dan Gohman17059682008-07-17 19:10:17 +00002058 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00002059 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Tim Northover31d093c2013-09-22 08:21:56 +00002060 Node->setNodeId(-1);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002061 return NULL; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00002062 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00002063
Evan Cheng10d27902006-01-06 20:36:21 +00002064 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00002065 default: break;
Manman Rena0982042012-06-26 19:47:59 +00002066 case ISD::INTRINSIC_W_CHAIN: {
2067 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2068 switch (IntNo) {
2069 default: break;
2070 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002071 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002072 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002073 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002074 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002075 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002076 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002077 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002078 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002079 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002080 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002081 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002082 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002083 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002084 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002085 case Intrinsic::x86_avx2_gather_q_d_256: {
Michael Liao00b20cc2013-06-05 18:12:26 +00002086 if (!Subtarget->hasAVX2())
2087 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002088 unsigned Opc;
2089 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002090 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002091 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2092 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2093 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2094 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2095 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2096 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2097 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2098 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2099 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2100 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2101 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2102 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2103 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2104 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2105 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2106 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2107 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002108 SDNode *RetVal = SelectGather(Node, Opc);
2109 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002110 // We already called ReplaceUses inside SelectGather.
2111 return NULL;
Craig Toppere15e5f72012-07-01 02:18:18 +00002112 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002113 }
Manman Rena0982042012-06-26 19:47:59 +00002114 }
2115 break;
2116 }
Dan Gohman757eee82009-08-02 16:10:52 +00002117 case X86ISD::GlobalBaseReg:
2118 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002119
Craig Topper3af251d2012-07-01 02:55:34 +00002120
Dan Gohman757eee82009-08-02 16:10:52 +00002121 case X86ISD::ATOMOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002122 case X86ISD::ATOMXOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002123 case X86ISD::ATOMADD64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002124 case X86ISD::ATOMSUB64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002125 case X86ISD::ATOMNAND64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002126 case X86ISD::ATOMAND64_DAG:
Michael Liaode51caf2012-09-25 18:08:13 +00002127 case X86ISD::ATOMMAX64_DAG:
2128 case X86ISD::ATOMMIN64_DAG:
2129 case X86ISD::ATOMUMAX64_DAG:
2130 case X86ISD::ATOMUMIN64_DAG:
Craig Topper3af251d2012-07-01 02:55:34 +00002131 case X86ISD::ATOMSWAP64_DAG: {
2132 unsigned Opc;
2133 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002134 default: llvm_unreachable("Impossible opcode");
Craig Topper3af251d2012-07-01 02:55:34 +00002135 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2136 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2137 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2138 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2139 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2140 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
Michael Liaode51caf2012-09-25 18:08:13 +00002141 case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break;
2142 case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break;
2143 case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break;
2144 case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break;
Craig Topper3af251d2012-07-01 02:55:34 +00002145 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2146 }
2147 SDNode *RetVal = SelectAtomic64(Node, Opc);
2148 if (RetVal)
2149 return RetVal;
2150 break;
2151 }
Dale Johannesen867d5492008-10-02 18:53:47 +00002152
Eric Christophera1d9e292011-05-17 08:10:18 +00002153 case ISD::ATOMIC_LOAD_XOR:
2154 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002155 case ISD::ATOMIC_LOAD_OR:
2156 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002157 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002158 if (RetVal)
2159 return RetVal;
2160 break;
2161 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002162 case ISD::AND:
2163 case ISD::OR:
2164 case ISD::XOR: {
2165 // For operations of the form (x << C1) op C2, check if we can use a smaller
2166 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2167 SDValue N0 = Node->getOperand(0);
2168 SDValue N1 = Node->getOperand(1);
2169
2170 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2171 break;
2172
2173 // i8 is unshrinkable, i16 should be promoted to i32.
2174 if (NVT != MVT::i32 && NVT != MVT::i64)
2175 break;
2176
2177 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2178 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2179 if (!Cst || !ShlCst)
2180 break;
2181
2182 int64_t Val = Cst->getSExtValue();
2183 uint64_t ShlVal = ShlCst->getZExtValue();
2184
2185 // Make sure that we don't change the operation by removing bits.
2186 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002187 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2188 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002189 break;
2190
Craig Topper22cb0c52012-08-11 17:44:14 +00002191 unsigned ShlOp, Op;
Craig Topper83e042a2013-08-15 05:57:07 +00002192 MVT CstVT = NVT;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002193
2194 // Check the minimum bitwidth for the new constant.
2195 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2196 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2197 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2198 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2199 CstVT = MVT::i8;
2200 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2201 CstVT = MVT::i32;
2202
2203 // Bail if there is no smaller encoding.
2204 if (NVT == CstVT)
2205 break;
2206
Craig Topper83e042a2013-08-15 05:57:07 +00002207 switch (NVT.SimpleTy) {
Benjamin Kramer4c816242011-04-22 15:30:40 +00002208 default: llvm_unreachable("Unsupported VT!");
2209 case MVT::i32:
2210 assert(CstVT == MVT::i8);
2211 ShlOp = X86::SHL32ri;
2212
2213 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002214 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002215 case ISD::AND: Op = X86::AND32ri8; break;
2216 case ISD::OR: Op = X86::OR32ri8; break;
2217 case ISD::XOR: Op = X86::XOR32ri8; break;
2218 }
2219 break;
2220 case MVT::i64:
2221 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2222 ShlOp = X86::SHL64ri;
2223
2224 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002225 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002226 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2227 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2228 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2229 }
2230 break;
2231 }
2232
2233 // Emit the smaller op and the shift.
2234 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2235 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2236 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2237 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002238 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002239 case X86ISD::UMUL: {
2240 SDValue N0 = Node->getOperand(0);
2241 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002242
Ted Kremenekb5241b22011-01-14 22:34:13 +00002243 unsigned LoReg;
Craig Topper83e042a2013-08-15 05:57:07 +00002244 switch (NVT.SimpleTy) {
Chris Lattner364bb0a2010-12-05 07:30:36 +00002245 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002246 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2247 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2248 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2249 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002250 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002251
Chris Lattner364bb0a2010-12-05 07:30:36 +00002252 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2253 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002254
Chris Lattner364bb0a2010-12-05 07:30:36 +00002255 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2256 SDValue Ops[] = {N1, InFlag};
Michael Liaob53d8962013-04-19 22:22:57 +00002257 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosier24c19d22012-08-01 18:39:17 +00002258
Chris Lattner364bb0a2010-12-05 07:30:36 +00002259 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2260 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2261 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2262 return NULL;
2263 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002264
Dan Gohman757eee82009-08-02 16:10:52 +00002265 case ISD::SMUL_LOHI:
2266 case ISD::UMUL_LOHI: {
2267 SDValue N0 = Node->getOperand(0);
2268 SDValue N1 = Node->getOperand(1);
2269
2270 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002271 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002272 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002273 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002274 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002275 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2276 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002277 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2278 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2279 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2280 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002281 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002282 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002283 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002284 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002285 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2286 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2287 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2288 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002289 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002290 }
Dan Gohman757eee82009-08-02 16:10:52 +00002291
Michael Liaof9f7b552012-09-26 08:22:37 +00002292 unsigned SrcReg, LoReg, HiReg;
2293 switch (Opc) {
2294 default: llvm_unreachable("Unknown MUL opcode!");
2295 case X86::IMUL8r:
2296 case X86::MUL8r:
2297 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2298 break;
2299 case X86::IMUL16r:
2300 case X86::MUL16r:
2301 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2302 break;
2303 case X86::IMUL32r:
2304 case X86::MUL32r:
2305 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2306 break;
2307 case X86::IMUL64r:
2308 case X86::MUL64r:
2309 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2310 break;
2311 case X86::MULX32rr:
2312 SrcReg = X86::EDX; LoReg = HiReg = 0;
2313 break;
2314 case X86::MULX64rr:
2315 SrcReg = X86::RDX; LoReg = HiReg = 0;
2316 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002317 }
2318
2319 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002320 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002321 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002322 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002323 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002324 if (foldedLoad)
2325 std::swap(N0, N1);
2326 }
2327
Michael Liaof9f7b552012-09-26 08:22:37 +00002328 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002329 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002330 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002331
2332 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002333 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002334 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2335 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002336 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2337 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002338 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002339 ResHi = SDValue(CNode, 0);
2340 ResLo = SDValue(CNode, 1);
2341 Chain = SDValue(CNode, 2);
2342 InFlag = SDValue(CNode, 3);
2343 } else {
2344 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002345 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002346 Chain = SDValue(CNode, 0);
2347 InFlag = SDValue(CNode, 1);
2348 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002349
Dan Gohman757eee82009-08-02 16:10:52 +00002350 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002351 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002352 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002353 SDValue Ops[] = { N1, InFlag };
2354 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2355 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002356 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002357 ResHi = SDValue(CNode, 0);
2358 ResLo = SDValue(CNode, 1);
2359 InFlag = SDValue(CNode, 2);
2360 } else {
2361 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002362 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002363 InFlag = SDValue(CNode, 0);
2364 }
Dan Gohman757eee82009-08-02 16:10:52 +00002365 }
2366
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002367 // Prevent use of AH in a REX instruction by referencing AX instead.
2368 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2369 !SDValue(Node, 1).use_empty()) {
2370 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2371 X86::AX, MVT::i16, InFlag);
2372 InFlag = Result.getValue(2);
2373 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2374 // registers.
2375 if (!SDValue(Node, 0).use_empty())
2376 ReplaceUses(SDValue(Node, 1),
2377 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2378
2379 // Shift AX down 8 bits.
2380 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2381 Result,
2382 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2383 // Then truncate it down to i8.
2384 ReplaceUses(SDValue(Node, 1),
2385 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2386 }
Dan Gohman757eee82009-08-02 16:10:52 +00002387 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002388 if (!SDValue(Node, 0).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002389 if (ResLo.getNode() == 0) {
2390 assert(LoReg && "Register for low half is not defined!");
2391 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2392 InFlag);
2393 InFlag = ResLo.getValue(2);
2394 }
2395 ReplaceUses(SDValue(Node, 0), ResLo);
2396 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002397 }
2398 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002399 if (!SDValue(Node, 1).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002400 if (ResHi.getNode() == 0) {
2401 assert(HiReg && "Register for high half is not defined!");
2402 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2403 InFlag);
2404 InFlag = ResHi.getValue(2);
2405 }
2406 ReplaceUses(SDValue(Node, 1), ResHi);
2407 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002408 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002409
Dan Gohman757eee82009-08-02 16:10:52 +00002410 return NULL;
2411 }
2412
2413 case ISD::SDIVREM:
2414 case ISD::UDIVREM: {
2415 SDValue N0 = Node->getOperand(0);
2416 SDValue N1 = Node->getOperand(1);
2417
2418 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002419 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002420 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002421 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002422 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2423 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2424 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2425 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002426 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002427 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002428 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002429 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002430 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2431 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2432 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2433 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002434 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002435 }
Dan Gohman757eee82009-08-02 16:10:52 +00002436
Chris Lattner518b0372009-12-23 01:45:04 +00002437 unsigned LoReg, HiReg, ClrReg;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002438 unsigned SExtOpcode;
Craig Topper83e042a2013-08-15 05:57:07 +00002439 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002440 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002441 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002442 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002443 SExtOpcode = X86::CBW;
2444 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002445 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002446 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002447 ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002448 SExtOpcode = X86::CWD;
2449 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002450 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002451 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002452 SExtOpcode = X86::CDQ;
2453 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002454 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002455 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002456 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002457 break;
2458 }
2459
Dan Gohman757eee82009-08-02 16:10:52 +00002460 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002461 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002462 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002463
Dan Gohman757eee82009-08-02 16:10:52 +00002464 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002465 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002466 // Special case for div8, just use a move with zero extension to AX to
2467 // clear the upper 8 bits (AH).
2468 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002469 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002470 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2471 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002472 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +00002473 MVT::Other, Ops), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002474 Chain = Move.getValue(1);
2475 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002476 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002477 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002478 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002479 Chain = CurDAG->getEntryNode();
2480 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002481 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002482 InFlag = Chain.getValue(1);
2483 } else {
2484 InFlag =
2485 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2486 LoReg, N0, SDValue()).getValue(1);
2487 if (isSigned && !signBitIsZero) {
2488 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002489 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002490 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002491 } else {
2492 // Zero out the high part, effectively zero extending the input.
Tim Northover64ec0ff2013-05-30 13:19:42 +00002493 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
Craig Topper83e042a2013-08-15 05:57:07 +00002494 switch (NVT.SimpleTy) {
Tim Northover64ec0ff2013-05-30 13:19:42 +00002495 case MVT::i16:
2496 ClrNode =
2497 SDValue(CurDAG->getMachineNode(
2498 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2499 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2500 0);
2501 break;
2502 case MVT::i32:
2503 break;
2504 case MVT::i64:
2505 ClrNode =
2506 SDValue(CurDAG->getMachineNode(
2507 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2508 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2509 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2510 0);
2511 break;
2512 default:
2513 llvm_unreachable("Unexpected division source");
2514 }
2515
Chris Lattner518b0372009-12-23 01:45:04 +00002516 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002517 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002518 }
Evan Cheng92e27972006-01-06 23:19:29 +00002519 }
Dan Gohmana1603612007-10-08 18:33:35 +00002520
Dan Gohman757eee82009-08-02 16:10:52 +00002521 if (foldedLoad) {
2522 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2523 InFlag };
2524 SDNode *CNode =
Michael Liaob53d8962013-04-19 22:22:57 +00002525 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman757eee82009-08-02 16:10:52 +00002526 InFlag = SDValue(CNode, 1);
2527 // Update the chain.
2528 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2529 } else {
2530 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002531 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002532 }
Evan Cheng92e27972006-01-06 23:19:29 +00002533
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002534 // Prevent use of AH in a REX instruction by referencing AX instead.
2535 // Shift it down 8 bits.
Jim Grosbach340b6da2013-07-09 02:07:28 +00002536 //
2537 // The current assumption of the register allocator is that isel
2538 // won't generate explicit references to the GPR8_NOREX registers. If
2539 // the allocator and/or the backend get enhanced to be more robust in
2540 // that regard, this can be, and should be, removed.
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002541 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2542 !SDValue(Node, 1).use_empty()) {
2543 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2544 X86::AX, MVT::i16, InFlag);
2545 InFlag = Result.getValue(2);
2546
2547 // If we also need AL (the quotient), get it by extracting a subreg from
2548 // Result. The fast register allocator does not like multiple CopyFromReg
2549 // nodes using aliasing registers.
2550 if (!SDValue(Node, 0).use_empty())
2551 ReplaceUses(SDValue(Node, 0),
2552 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2553
2554 // Shift AX right by 8 bits instead of using AH.
2555 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2556 Result,
2557 CurDAG->getTargetConstant(8, MVT::i8)),
2558 0);
2559 ReplaceUses(SDValue(Node, 1),
2560 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2561 }
Dan Gohman757eee82009-08-02 16:10:52 +00002562 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002563 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002564 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2565 LoReg, NVT, InFlag);
2566 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002567 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002568 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002569 }
2570 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002571 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002572 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2573 HiReg, NVT, InFlag);
2574 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002575 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002576 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002577 }
Dan Gohman757eee82009-08-02 16:10:52 +00002578 return NULL;
2579 }
2580
Manman Ren1be131b2012-08-08 00:51:41 +00002581 case X86ISD::CMP:
2582 case X86ISD::SUB: {
2583 // Sometimes a SUB is used to perform comparison.
2584 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2585 // This node is not a CMP.
2586 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002587 SDValue N0 = Node->getOperand(0);
2588 SDValue N1 = Node->getOperand(1);
2589
2590 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2591 // use a smaller encoding.
Eli Friedman39d0f572010-08-04 22:40:58 +00002592 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2593 HasNoSignedComparisonUses(Node))
Evan Cheng050df1b2010-04-28 08:30:49 +00002594 // Look past the truncate if CMP is the only use of it.
2595 N0 = N0.getOperand(0);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002596 if ((N0.getNode()->getOpcode() == ISD::AND ||
2597 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2598 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002599 N0.getValueType() != MVT::i8 &&
2600 X86::isZeroNode(N1)) {
2601 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2602 if (!C) break;
2603
2604 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002605 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2606 (!(C->getZExtValue() & 0x80) ||
2607 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002608 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2609 SDValue Reg = N0.getNode()->getOperand(0);
2610
2611 // On x86-32, only the ABCD registers have 8-bit subregisters.
2612 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002613 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002614 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002615 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2616 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2617 default: llvm_unreachable("Unsupported TEST operand type!");
2618 }
2619 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002620 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2621 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002622 }
2623
2624 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002625 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002626 MVT::i8, Reg);
2627
2628 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002629 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2630 Subreg, Imm);
2631 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2632 // one, do not call ReplaceAllUsesWith.
2633 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2634 SDValue(NewNode, 0));
2635 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002636 }
2637
2638 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002639 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2640 (!(C->getZExtValue() & 0x8000) ||
2641 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002642 // Shift the immediate right by 8 bits.
2643 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2644 MVT::i8);
2645 SDValue Reg = N0.getNode()->getOperand(0);
2646
2647 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002648 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002649 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002650 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2651 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2652 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2653 default: llvm_unreachable("Unsupported TEST operand type!");
2654 }
2655 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002656 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2657 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002658
2659 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002660 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002661 MVT::i8, Reg);
2662
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002663 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2664 // target GR8_NOREX registers, so make sure the register class is
2665 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002666 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2667 MVT::i32, Subreg, ShiftedImm);
2668 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2669 // one, do not call ReplaceAllUsesWith.
2670 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2671 SDValue(NewNode, 0));
2672 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002673 }
2674
2675 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2676 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002677 N0.getValueType() != MVT::i16 &&
2678 (!(C->getZExtValue() & 0x8000) ||
2679 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002680 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2681 SDValue Reg = N0.getNode()->getOperand(0);
2682
2683 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002684 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002685 MVT::i16, Reg);
2686
2687 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002688 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2689 Subreg, Imm);
2690 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2691 // one, do not call ReplaceAllUsesWith.
2692 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2693 SDValue(NewNode, 0));
2694 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002695 }
2696
2697 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2698 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002699 N0.getValueType() == MVT::i64 &&
2700 (!(C->getZExtValue() & 0x80000000) ||
2701 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002702 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2703 SDValue Reg = N0.getNode()->getOperand(0);
2704
2705 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002706 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002707 MVT::i32, Reg);
2708
2709 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002710 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2711 Subreg, Imm);
2712 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2713 // one, do not call ReplaceAllUsesWith.
2714 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2715 SDValue(NewNode, 0));
2716 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002717 }
2718 }
2719 break;
2720 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002721 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002722 // Change a chain of {load; incr or dec; store} of the same value into
2723 // a simple increment or decrement through memory of that value, if the
2724 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002725 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002726 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002727 // {INC,DEC}X{64,32,16,8}.)
2728 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002729 // node in the pattern to the result node. probably with a new keyword
2730 // for example, we have this
2731 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2732 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2733 // (implicit EFLAGS)]>;
2734 // but maybe need something like this
2735 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2736 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2737 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002738
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002739 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002740 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002741 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002742
Evan Cheng3e869f02012-04-12 19:14:21 +00002743 LoadSDNode *LoadNode = 0;
2744 SDValue InputChain;
2745 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2746 LoadNode, InputChain))
2747 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002748
2749 SDValue Base, Scale, Index, Disp, Segment;
2750 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2751 Base, Scale, Index, Disp, Segment))
2752 break;
2753
2754 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2755 MemOp[0] = StoreNode->getMemOperand();
2756 MemOp[1] = LoadNode->getMemOperand();
2757 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002758 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002759 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2760 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002761 SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00002762 MVT::i32, MVT::Other, Ops);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002763 Result->setMemRefs(MemOp, MemOp + 2);
2764
2765 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2766 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2767
2768 return Result;
2769 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002770 }
2771
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002772 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002773
Chris Lattnerf98f1242010-03-02 06:34:30 +00002774 DEBUG(dbgs() << "=> ";
2775 if (ResNode == NULL || ResNode == Node)
2776 Node->dump(CurDAG);
2777 else
2778 ResNode->dump(CurDAG);
2779 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002780
2781 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002782}
2783
Chris Lattnerba1ed582006-06-08 18:03:49 +00002784bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002785SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002786 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002787 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002788 switch (ConstraintCode) {
2789 case 'o': // offsetable ??
2790 case 'v': // not offsetable ??
2791 default: return true;
2792 case 'm': // memory
Chris Lattnerd58d7c12010-09-21 22:07:31 +00002793 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002794 return true;
2795 break;
2796 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002797
Evan Cheng2d487222006-08-26 01:05:16 +00002798 OutOps.push_back(Op0);
2799 OutOps.push_back(Op1);
2800 OutOps.push_back(Op2);
2801 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002802 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002803 return false;
2804}
2805
Chad Rosier24c19d22012-08-01 18:39:17 +00002806/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002807/// X86-specific DAG, ready for instruction scheduling.
2808///
Bill Wendling026e5d72009-04-29 23:29:43 +00002809FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002810 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002811 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002812}