blob: 429c8bdbdf0a503b41e8a2d9f2f7e95b47e052a2 [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
15#include "X86.h"
Evan Chengbc7a0f442006-01-11 06:09:51 +000016#include "X86InstrBuilder.h"
Evan Chengf55b7382008-01-05 00:41:47 +000017#include "X86MachineFunctionInfo.h"
Chris Lattner7c551262006-01-11 01:15:34 +000018#include "X86RegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000019#include "X86Subtarget.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000020#include "X86TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/Statistic.h"
Evan Cheng73a1ad92006-01-10 20:26:56 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner7c551262006-01-11 01:15:34 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000026#include "llvm/CodeGen/SelectionDAGISel.h"
Eric Christopher79cc1e32014-09-02 22:28:02 +000027#include "llvm/IR/Function.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
Chandler Carruth84e68b22014-04-22 02:41:26 +000039#define DEBUG_TYPE "x86-isel"
40
Chris Lattner1ef9cd42006-12-19 22:59:26 +000041STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
42
Chris Lattner655e7df2005-11-16 01:54:32 +000043//===----------------------------------------------------------------------===//
44// Pattern Matcher Implementation
45//===----------------------------------------------------------------------===//
46
47namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000048 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000049 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattner3f0f71b2005-11-19 02:11:08 +000050 /// tree.
51 struct X86ISelAddressMode {
52 enum {
53 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000054 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000055 } BaseType;
56
Dan Gohman0fd54fb2010-04-29 23:30:41 +000057 // This is really a union, discriminated by BaseType!
58 SDValue Base_Reg;
59 int Base_FrameIndex;
Chris Lattner3f0f71b2005-11-19 02:11:08 +000060
61 unsigned Scale;
Chad Rosier24c19d22012-08-01 18:39:17 +000062 SDValue IndexReg;
Dan Gohman059c4fa2008-11-11 15:52:29 +000063 int32_t Disp;
Rafael Espindola3b2df102009-04-08 21:14:34 +000064 SDValue Segment;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000065 const GlobalValue *GV;
66 const Constant *CP;
67 const BlockAddress *BlockAddr;
Evan Cheng11b0a5d2006-09-08 06:48:29 +000068 const char *ES;
69 int JT;
Evan Cheng77d86ff2006-02-25 10:09:08 +000070 unsigned Align; // CP alignment.
Chris Lattnerbd7e26d2009-06-26 05:51:45 +000071 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattner3f0f71b2005-11-19 02:11:08 +000072
73 X86ISelAddressMode()
Dan Gohman0fd54fb2010-04-29 23:30:41 +000074 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Craig Topper062a2ba2014-04-25 05:30:21 +000075 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
76 JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000077 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000078
79 bool hasSymbolicDisplacement() const {
Craig Topper062a2ba2014-04-25 05:30:21 +000080 return GV != nullptr || CP != nullptr || ES != nullptr ||
81 JT != -1 || BlockAddr != nullptr;
Dan Gohman4e3e3de2009-02-07 00:43:41 +000082 }
Chad Rosier24c19d22012-08-01 18:39:17 +000083
Chris Lattnerfea81da2009-06-27 04:16:01 +000084 bool hasBaseOrIndexReg() const {
Tim Northover97347a82013-09-19 11:33:53 +000085 return BaseType == FrameIndexBase ||
Craig Topper062a2ba2014-04-25 05:30:21 +000086 IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr;
Chris Lattnerfea81da2009-06-27 04:16:01 +000087 }
Chad Rosier24c19d22012-08-01 18:39:17 +000088
Chris Lattnerfea81da2009-06-27 04:16:01 +000089 /// isRIPRelative - Return true if this addressing mode is already RIP
90 /// relative.
91 bool isRIPRelative() const {
92 if (BaseType != RegBase) return false;
93 if (RegisterSDNode *RegNode =
Dan Gohman0fd54fb2010-04-29 23:30:41 +000094 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattnerfea81da2009-06-27 04:16:01 +000095 return RegNode->getReg() == X86::RIP;
96 return false;
97 }
Chad Rosier24c19d22012-08-01 18:39:17 +000098
Chris Lattnerfea81da2009-06-27 04:16:01 +000099 void setBaseReg(SDValue Reg) {
100 BaseType = RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000101 Base_Reg = Reg;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000102 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +0000103
Manman Ren19f49ac2012-09-11 22:23:19 +0000104#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesendafdbf72008-08-11 23:46:25 +0000105 void dump() {
David Greenedbdb1b22010-01-05 01:29:08 +0000106 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000107 dbgs() << "Base_Reg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000108 if (Base_Reg.getNode())
Chad Rosier24c19d22012-08-01 18:39:17 +0000109 Base_Reg.getNode()->dump();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000110 else
David Greenedbdb1b22010-01-05 01:29:08 +0000111 dbgs() << "nul";
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000112 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000113 << " Scale" << Scale << '\n'
114 << "IndexReg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000115 if (IndexReg.getNode())
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000116 IndexReg.getNode()->dump();
117 else
Chad Rosier24c19d22012-08-01 18:39:17 +0000118 dbgs() << "nul";
David Greenedbdb1b22010-01-05 01:29:08 +0000119 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000120 << "GV ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000121 if (GV)
122 GV->dump();
123 else
David Greenedbdb1b22010-01-05 01:29:08 +0000124 dbgs() << "nul";
125 dbgs() << " CP ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000126 if (CP)
127 CP->dump();
128 else
David Greenedbdb1b22010-01-05 01:29:08 +0000129 dbgs() << "nul";
130 dbgs() << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000131 << "ES ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000132 if (ES)
David Greenedbdb1b22010-01-05 01:29:08 +0000133 dbgs() << ES;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000134 else
David Greenedbdb1b22010-01-05 01:29:08 +0000135 dbgs() << "nul";
136 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesendafdbf72008-08-11 23:46:25 +0000137 }
Manman Ren742534c2012-09-06 19:06:06 +0000138#endif
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000139 };
140}
141
142namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +0000143 //===--------------------------------------------------------------------===//
144 /// ISel - X86 specific code to select X86 machine instructions for
145 /// SelectionDAG operations.
146 ///
Craig Topper26eec092014-03-31 06:22:15 +0000147 class X86DAGToDAGISel final : public SelectionDAGISel {
Chris Lattner655e7df2005-11-16 01:54:32 +0000148 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
149 /// make the right decision when generating code for different targets.
150 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +0000151
Evan Cheng7d6fa972008-09-26 23:41:32 +0000152 /// OptForSize - If true, selector should try to optimize for code size
153 /// instead of performance.
154 bool OptForSize;
155
Chris Lattner655e7df2005-11-16 01:54:32 +0000156 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000157 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendling084669a2009-04-29 00:15:41 +0000158 : SelectionDAGISel(tm, OptLevel),
Dan Gohman4751bb92009-06-03 20:20:00 +0000159 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel1b76f2c2008-10-01 23:18:38 +0000160 OptForSize(false) {}
Chris Lattner655e7df2005-11-16 01:54:32 +0000161
Craig Topper2d9361e2014-03-09 07:44:38 +0000162 const char *getPassName() const override {
Chris Lattner655e7df2005-11-16 01:54:32 +0000163 return "X86 DAG->DAG Instruction Selection";
164 }
165
Eric Christopher4f09c592014-05-22 01:53:26 +0000166 bool runOnMachineFunction(MachineFunction &MF) override {
167 // Reset the subtarget each time through.
168 Subtarget = &TM.getSubtarget<X86Subtarget>();
169 SelectionDAGISel::runOnMachineFunction(MF);
170 return true;
171 }
172
Craig Topper2d9361e2014-03-09 07:44:38 +0000173 void EmitFunctionEntryCode() override;
Anton Korobeynikov90910742007-09-25 21:52:30 +0000174
Craig Topper2d9361e2014-03-09 07:44:38 +0000175 bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const override;
Evan Cheng5e73ff22010-02-15 19:41:07 +0000176
Craig Topper2d9361e2014-03-09 07:44:38 +0000177 void PreprocessISelDAG() override;
Chris Lattnerf98f1242010-03-02 06:34:30 +0000178
Jakob Stoklund Olesen08aede22010-09-03 00:35:18 +0000179 inline bool immSext8(SDNode *N) const {
180 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
181 }
182
183 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
184 // sign extended field.
185 inline bool i64immSExt32(SDNode *N) const {
186 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
187 return (int64_t)v == (int32_t)v;
188 }
189
Chris Lattner655e7df2005-11-16 01:54:32 +0000190// Include the pieces autogenerated from the target description.
191#include "X86GenDAGISel.inc"
192
193 private:
Craig Topper2d9361e2014-03-09 07:44:38 +0000194 SDNode *Select(SDNode *N) override;
Manman Rena0982042012-06-26 19:47:59 +0000195 SDNode *SelectGather(SDNode *N, unsigned Opc);
Craig Topper83e042a2013-08-15 05:57:07 +0000196 SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
Chris Lattner655e7df2005-11-16 01:54:32 +0000197
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000198 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattner8a236b62010-09-22 04:39:11 +0000199 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000200 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman824ab402009-07-22 23:26:55 +0000201 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
202 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
203 unsigned Depth);
Rafael Espindola92773792009-03-31 16:16:57 +0000204 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerd58d7c12010-09-21 22:07:31 +0000205 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000206 SDValue &Scale, SDValue &Index, SDValue &Disp,
207 SDValue &Segment);
Tim Northover3a1fd4c2013-06-01 09:55:14 +0000208 bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000209 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000210 SDValue &Scale, SDValue &Index, SDValue &Disp,
211 SDValue &Segment);
Tim Northover6833e3f2013-06-10 20:43:49 +0000212 bool SelectLEA64_32Addr(SDValue N, SDValue &Base,
213 SDValue &Scale, SDValue &Index, SDValue &Disp,
214 SDValue &Segment);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000215 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000216 SDValue &Scale, SDValue &Index, SDValue &Disp,
217 SDValue &Segment);
Chris Lattnerbd6e1932010-03-01 22:51:11 +0000218 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattnerafac7dad2010-02-16 22:35:06 +0000219 SDValue &Base, SDValue &Scale,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000220 SDValue &Index, SDValue &Disp,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000221 SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +0000222 SDValue &NodeWithChain);
Chad Rosier24c19d22012-08-01 18:39:17 +0000223
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000224 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000225 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000226 SDValue &Index, SDValue &Disp,
227 SDValue &Segment);
Chad Rosier24c19d22012-08-01 18:39:17 +0000228
Chris Lattnerba1ed582006-06-08 18:03:49 +0000229 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
230 /// inline asm expressions.
Craig Topper2d9361e2014-03-09 07:44:38 +0000231 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
232 char ConstraintCode,
233 std::vector<SDValue> &OutOps) override;
Chad Rosier24c19d22012-08-01 18:39:17 +0000234
Anton Korobeynikov90910742007-09-25 21:52:30 +0000235 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
236
Chad Rosier24c19d22012-08-01 18:39:17 +0000237 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000238 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000239 SDValue &Disp, SDValue &Segment) {
Evan Cheng67ed58e2005-12-12 21:49:40 +0000240 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000241 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
242 getTargetLowering()->getPointerTy()) :
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000243 AM.Base_Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000244 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000245 Index = AM.IndexReg;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000246 // These are 32-bit even in 64-bit mode since RIP relative offset
247 // is 32-bit.
248 if (AM.GV)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000249 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
Devang Patela3ca21b2010-07-06 22:08:15 +0000250 MVT::i32, AM.Disp,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000251 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000252 else if (AM.CP)
Owen Anderson9f944592009-08-11 20:47:22 +0000253 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000254 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000255 else if (AM.ES) {
256 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson9f944592009-08-11 20:47:22 +0000257 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000258 } else if (AM.JT != -1) {
259 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson9f944592009-08-11 20:47:22 +0000260 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000261 } else if (AM.BlockAddr)
262 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
263 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000264 else
Owen Anderson9f944592009-08-11 20:47:22 +0000265 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000266
267 if (AM.Segment.getNode())
268 Segment = AM.Segment;
269 else
Owen Anderson9f944592009-08-11 20:47:22 +0000270 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000271 }
272
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000273 /// getI8Imm - Return a target constant with the specified value, of type
274 /// i8.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000275 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000276 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000277 }
278
Chris Lattner655e7df2005-11-16 01:54:32 +0000279 /// getI32Imm - Return a target constant with the specified value, of type
280 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000281 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000282 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner655e7df2005-11-16 01:54:32 +0000283 }
Evan Chengd49cc362006-02-10 22:24:32 +0000284
Dan Gohman24300732008-09-23 18:22:58 +0000285 /// getGlobalBaseReg - Return an SDNode that returns the value of
286 /// the global base register. Output instructions required to
287 /// initialize the global base register, if necessary.
288 ///
Evan Cheng61413a32006-08-26 05:34:46 +0000289 SDNode *getGlobalBaseReg();
Evan Cheng5588de92006-02-18 00:15:05 +0000290
Dan Gohman4751bb92009-06-03 20:20:00 +0000291 /// getTargetMachine - Return a reference to the TargetMachine, casted
292 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000293 const X86TargetMachine &getTargetMachine() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000294 return static_cast<const X86TargetMachine &>(TM);
295 }
296
297 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
298 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000299 const X86InstrInfo *getInstrInfo() const {
Eric Christopherd9134482014-08-04 21:25:23 +0000300 return getTargetMachine().getSubtargetImpl()->getInstrInfo();
Dan Gohman4751bb92009-06-03 20:20:00 +0000301 }
Adam Nemetff63a2d2014-10-03 20:00:34 +0000302
303 /// \brief Address-mode matching performs shift-of-and to and-of-shift
304 /// reassociation in order to expose more scaled addressing
305 /// opportunities.
306 bool ComplexPatternFuncMutatesDAG() const override {
307 return true;
308 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000309 };
310}
311
Evan Cheng72bb66a2006-08-08 00:31:00 +0000312
Evan Cheng5e73ff22010-02-15 19:41:07 +0000313bool
314X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000315 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000316
Evan Cheng5e73ff22010-02-15 19:41:07 +0000317 if (!N.hasOneUse())
318 return false;
319
320 if (N.getOpcode() != ISD::LOAD)
321 return true;
322
323 // If N is a load, do additional profitability checks.
324 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000325 switch (U->getOpcode()) {
326 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000327 case X86ISD::ADD:
328 case X86ISD::SUB:
329 case X86ISD::AND:
330 case X86ISD::XOR:
331 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000332 case ISD::ADD:
333 case ISD::ADDC:
334 case ISD::ADDE:
335 case ISD::AND:
336 case ISD::OR:
337 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000338 SDValue Op1 = U->getOperand(1);
339
Evan Cheng83bdb382008-11-27 00:49:46 +0000340 // If the other operand is a 8-bit immediate we should fold the immediate
341 // instead. This reduces code size.
342 // e.g.
343 // movl 4(%esp), %eax
344 // addl $4, %eax
345 // vs.
346 // movl $4, %eax
347 // addl 4(%esp), %eax
348 // The former is 2 bytes shorter. In case where the increment is 1, then
349 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000350 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000351 if (Imm->getAPIntValue().isSignedIntN(8))
352 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000353
354 // If the other operand is a TLS address, we should fold it instead.
355 // This produces
356 // movl %gs:0, %eax
357 // leal i@NTPOFF(%eax), %eax
358 // instead of
359 // movl $i@NTPOFF, %eax
360 // addl %gs:0, %eax
361 // if the block also has an access to a second TLS address this will save
362 // a load.
Alp Tokerf907b892013-12-05 05:44:44 +0000363 // FIXME: This is probably also true for non-TLS addresses.
Rafael Espindolabb834f02009-04-10 10:09:34 +0000364 if (Op1.getOpcode() == X86ISD::Wrapper) {
365 SDValue Val = Op1.getOperand(0);
366 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
367 return false;
368 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000369 }
370 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000371 }
372
373 return true;
374}
375
Evan Chengd703df62010-03-14 03:48:46 +0000376/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
377/// load's chain operand and move load below the call's chain operand.
378static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000379 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000380 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000381 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000382 if (Chain.getNode() == Load.getNode())
383 Ops.push_back(Load.getOperand(0));
384 else {
385 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000386 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000387 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
388 if (Chain.getOperand(i).getNode() == Load.getNode())
389 Ops.push_back(Load.getOperand(0));
390 else
391 Ops.push_back(Chain.getOperand(i));
392 SDValue NewChain =
Craig Topper48d114b2014-04-26 18:35:24 +0000393 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000394 Ops.clear();
395 Ops.push_back(NewChain);
396 }
Evan Chengd703df62010-03-14 03:48:46 +0000397 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
398 Ops.push_back(OrigChain.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000399 CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops);
Dan Gohman92c11ac2010-06-18 15:30:29 +0000400 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000401 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000402
Evan Cheng214156c2012-10-02 23:49:13 +0000403 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000404 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000405 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000406 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000407 Ops.push_back(Call.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000408 CurDAG->UpdateNodeOperands(Call.getNode(), Ops);
Evan Chengf00f1e52008-08-25 21:27:18 +0000409}
410
411/// isCalleeLoad - Return true if call address is a load and it can be
412/// moved below CALLSEQ_START and the chains leading up to the call.
413/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000414/// In the case of a tail call, there isn't a callseq node between the call
415/// chain and the load.
416static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000417 // The transformation is somewhat dangerous if the call's chain was glued to
418 // the call. After MoveBelowOrigChain the load is moved between the call and
419 // the chain, this can create a cycle if the load is not folded. So it is
420 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000421 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000422 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000423 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000424 if (!LD ||
425 LD->isVolatile() ||
426 LD->getAddressingMode() != ISD::UNINDEXED ||
427 LD->getExtensionType() != ISD::NON_EXTLOAD)
428 return false;
429
430 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000431 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000432 if (!Chain.hasOneUse())
433 return false;
434 Chain = Chain.getOperand(0);
435 }
Evan Chengd703df62010-03-14 03:48:46 +0000436
437 if (!Chain.getNumOperands())
438 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000439 // Since we are not checking for AA here, conservatively abort if the chain
440 // writes to memory. It's not safe to move the callee (a load) across a store.
441 if (isa<MemSDNode>(Chain.getNode()) &&
442 cast<MemSDNode>(Chain.getNode())->writeMem())
443 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000444 if (Chain.getOperand(0).getNode() == Callee.getNode())
445 return true;
446 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000447 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
448 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000449 return true;
450 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000451}
452
Chris Lattner8d637042010-03-02 23:12:51 +0000453void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000454 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000455 OptForSize = MF->getFunction()->getAttributes().
456 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000457
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000458 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
459 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000460 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000461
Evan Chengd703df62010-03-14 03:48:46 +0000462 if (OptLevel != CodeGenOpt::None &&
Michael Liao96b42602013-03-28 23:13:21 +0000463 // Only does this when target favors doesn't favor register indirect
464 // call.
465 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng847ad442012-10-05 01:48:22 +0000466 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000467 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000468 (Subtarget->is64Bit() ||
469 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000470 /// Also try moving call address load from outside callseq_start to just
471 /// before the call to allow it to be folded.
472 ///
473 /// [Load chain]
474 /// ^
475 /// |
476 /// [Load]
477 /// ^ ^
478 /// | |
479 /// / \--
480 /// / |
481 ///[CALLSEQ_START] |
482 /// ^ |
483 /// | |
484 /// [LOAD/C2Reg] |
485 /// | |
486 /// \ /
487 /// \ /
488 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000489 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000490 SDValue Chain = N->getOperand(0);
491 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000492 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000493 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000494 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000495 ++NumLoadMoved;
496 continue;
497 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000498
Chris Lattner8d637042010-03-02 23:12:51 +0000499 // Lower fpround and fpextend nodes that target the FP stack to be store and
500 // load to the stack. This is a gross hack. We would like to simply mark
501 // these as being illegal, but when we do that, legalize produces these when
502 // it expands calls, then expands these in the same legalize pass. We would
503 // like dag combine to be able to hack on these between the call expansion
504 // and the node legalization. As such this pass basically does "really
505 // late" legalization of these inline with the X86 isel pass.
506 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000507 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
508 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000509
Craig Topper83e042a2013-08-15 05:57:07 +0000510 MVT SrcVT = N->getOperand(0).getSimpleValueType();
511 MVT DstVT = N->getSimpleValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000512
513 // If any of the sources are vectors, no fp stack involved.
514 if (SrcVT.isVector() || DstVT.isVector())
515 continue;
516
517 // If the source and destination are SSE registers, then this is a legal
518 // conversion that should not be lowered.
Benjamin Kramer02ff1cd2013-06-27 11:07:42 +0000519 const X86TargetLowering *X86Lowering =
520 static_cast<const X86TargetLowering *>(getTargetLowering());
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000521 bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
522 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000523 if (SrcIsSSE && DstIsSSE)
524 continue;
525
Chris Lattnerd587e582008-03-09 07:05:32 +0000526 if (!SrcIsSSE && !DstIsSSE) {
527 // If this is an FPStack extension, it is a noop.
528 if (N->getOpcode() == ISD::FP_EXTEND)
529 continue;
530 // If this is a value-preserving FPStack truncation, it is a noop.
531 if (N->getConstantOperandVal(1))
532 continue;
533 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000534
Chris Lattnera91f77e2008-01-24 08:07:48 +0000535 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
536 // FPStack has extload and truncstore. SSE can fold direct loads into other
537 // operations. Based on this, decide what we want to do.
Craig Topper83e042a2013-08-15 05:57:07 +0000538 MVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000539 if (N->getOpcode() == ISD::FP_ROUND)
540 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
541 else
542 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000543
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000544 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000545 SDLoc dl(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000546
Chris Lattnera91f77e2008-01-24 08:07:48 +0000547 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000548 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000549 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000550 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000551 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000552 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000553 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000554 MemVT, false, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000555
556 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
557 // extload we created. This will cause general havok on the dag because
558 // anything below the conversion could be folded into other existing nodes.
559 // To avoid invalidating 'I', back it up to the convert node.
560 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000561 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000562
Chris Lattnera91f77e2008-01-24 08:07:48 +0000563 // Now that we did that, the node is dead. Increment the iterator to the
564 // next node to process, then delete N.
565 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000566 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000567 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000568}
569
Chris Lattner655e7df2005-11-16 01:54:32 +0000570
Anton Korobeynikov90910742007-09-25 21:52:30 +0000571/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
572/// the main function.
573void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
574 MachineFrameInfo *MFI) {
Eric Christopherd9134482014-08-04 21:25:23 +0000575 const TargetInstrInfo *TII = TM.getSubtargetImpl()->getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000576 if (Subtarget->isTargetCygMing()) {
577 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000578 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000579 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000580 TII->get(CallOp)).addExternalSymbol("__main");
581 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000582}
583
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000584void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000585 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000586 if (const Function *Fn = MF->getFunction())
587 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
588 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000589}
590
Eli Friedman344ec792011-07-13 21:29:53 +0000591static bool isDispSafeForFrameIndex(int64_t Val) {
592 // On 64-bit platforms, we can run into an issue where a frame index
593 // includes a displacement that, when added to the explicit displacement,
594 // will overflow the displacement field. Assuming that the frame index
595 // displacement fits into a 31-bit integer (which is only slightly more
596 // aggressive than the current fundamental assumption that it fits into
597 // a 32-bit integer), a 31-bit disp should always be safe.
598 return isInt<31>(Val);
599}
600
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000601bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
602 X86ISelAddressMode &AM) {
603 int64_t Val = AM.Disp + Offset;
604 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000605 if (Subtarget->is64Bit()) {
606 if (!X86::isOffsetSuitableForCodeModel(Val, M,
607 AM.hasSymbolicDisplacement()))
608 return true;
609 // In addition to the checks required for a register base, check that
610 // we do not try to use an unsafe Disp with a frame index.
611 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
612 !isDispSafeForFrameIndex(Val))
613 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000614 }
Eli Friedman344ec792011-07-13 21:29:53 +0000615 AM.Disp = Val;
616 return false;
617
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000618}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000619
Chris Lattner8a236b62010-09-22 04:39:11 +0000620bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
621 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000622
Chris Lattner8a236b62010-09-22 04:39:11 +0000623 // load gs:0 -> GS segment register.
624 // load fs:0 -> FS segment register.
625 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000626 // This optimization is valid because the GNU TLS model defines that
627 // gs:0 (or fs:0 on X86-64) contains its own address.
628 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000629 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
Craig Topper062a2ba2014-04-25 05:30:21 +0000630 if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000631 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000632 switch (N->getPointerInfo().getAddrSpace()) {
633 case 256:
634 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
635 return false;
636 case 257:
637 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
638 return false;
639 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000640
Rafael Espindola3b2df102009-04-08 21:14:34 +0000641 return true;
642}
643
Chris Lattnerfea81da2009-06-27 04:16:01 +0000644/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
645/// into an addressing mode. These wrap things that will resolve down into a
646/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000647/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000648bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000649 // If the addressing mode already has a symbol as the displacement, we can
650 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000651 if (AM.hasSymbolicDisplacement())
652 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000653
654 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000655 CodeModel::Model M = TM.getCodeModel();
656
Chris Lattnerfea81da2009-06-27 04:16:01 +0000657 // Handle X86-64 rip-relative addresses. We check this before checking direct
658 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000659 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000660 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
661 // they cannot be folded into immediate fields.
662 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000663 (M == CodeModel::Small || M == CodeModel::Kernel)) {
664 // Base and index reg must be 0 in order to use %rip as base.
665 if (AM.hasBaseOrIndexReg())
666 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000667 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000668 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000669 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000670 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000671 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
672 AM = Backup;
673 return true;
674 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000675 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000676 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000677 AM.CP = CP->getConstVal();
678 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000679 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000680 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
681 AM = Backup;
682 return true;
683 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000684 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
685 AM.ES = S->getSymbol();
686 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000687 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000688 AM.JT = J->getIndex();
689 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000690 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
691 X86ISelAddressMode Backup = AM;
692 AM.BlockAddr = BA->getBlockAddress();
693 AM.SymbolFlags = BA->getTargetFlags();
694 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
695 AM = Backup;
696 return true;
697 }
698 } else
699 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000700
Chris Lattnerfea81da2009-06-27 04:16:01 +0000701 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000702 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000703 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000704 }
705
706 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000707 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
708 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000709 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000710 M == CodeModel::Small || M == CodeModel::Kernel) {
711 assert(N.getOpcode() != X86ISD::WrapperRIP &&
712 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000713 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
714 AM.GV = G->getGlobal();
715 AM.Disp += G->getOffset();
716 AM.SymbolFlags = G->getTargetFlags();
717 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
718 AM.CP = CP->getConstVal();
719 AM.Align = CP->getAlignment();
720 AM.Disp += CP->getOffset();
721 AM.SymbolFlags = CP->getTargetFlags();
722 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
723 AM.ES = S->getSymbol();
724 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000725 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000726 AM.JT = J->getIndex();
727 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000728 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
729 AM.BlockAddr = BA->getBlockAddress();
730 AM.Disp += BA->getOffset();
731 AM.SymbolFlags = BA->getTargetFlags();
732 } else
733 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000734 return false;
735 }
736
737 return true;
738}
739
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000740/// MatchAddress - Add the specified node to the specified addressing mode,
741/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000742/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000743bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000744 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000745 return true;
746
747 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
748 // a smaller encoding and avoids a scaled-index.
749 if (AM.Scale == 2 &&
750 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000751 AM.Base_Reg.getNode() == nullptr) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000752 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000753 AM.Scale = 1;
754 }
755
Dan Gohman05046082009-08-20 18:23:44 +0000756 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
757 // because it has a smaller encoding.
758 // TODO: Which other code models can use this?
759 if (TM.getCodeModel() == CodeModel::Small &&
760 Subtarget->is64Bit() &&
761 AM.Scale == 1 &&
762 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000763 AM.Base_Reg.getNode() == nullptr &&
764 AM.IndexReg.getNode() == nullptr &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000765 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000766 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000767 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000768
Dan Gohman824ab402009-07-22 23:26:55 +0000769 return false;
770}
771
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000772// Insert a node into the DAG at least before the Pos node's position. This
773// will reposition the node as needed, and will assign it a node ID that is <=
774// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
775// IDs! The selection DAG must no longer depend on their uniqueness when this
776// is used.
777static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
778 if (N.getNode()->getNodeId() == -1 ||
779 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
780 DAG.RepositionNode(Pos.getNode(), N.getNode());
781 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
782 }
783}
784
Adam Nemet0c7caf42014-09-16 17:14:10 +0000785// Transform "(X >> (8-C1)) & (0xff << C1)" to "((X >> 8) & 0xff) << C1" if
786// safe. This allows us to convert the shift and and into an h-register
787// extract and a scaled index. Returns false if the simplification is
788// performed.
Chandler Carruth51d30762012-01-11 08:48:20 +0000789static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
790 uint64_t Mask,
791 SDValue Shift, SDValue X,
792 X86ISelAddressMode &AM) {
793 if (Shift.getOpcode() != ISD::SRL ||
794 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
795 !Shift.hasOneUse())
796 return true;
797
798 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
799 if (ScaleLog <= 0 || ScaleLog >= 4 ||
800 Mask != (0xffu << ScaleLog))
801 return true;
802
Craig Topper83e042a2013-08-15 05:57:07 +0000803 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000804 SDLoc DL(N);
Chandler Carruth51d30762012-01-11 08:48:20 +0000805 SDValue Eight = DAG.getConstant(8, MVT::i8);
806 SDValue NewMask = DAG.getConstant(0xff, VT);
807 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
808 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
809 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
810 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
811
Chandler Carrutheb21da02012-01-12 01:34:44 +0000812 // Insert the new nodes into the topological ordering. We must do this in
813 // a valid topological ordering as nothing is going to go back and re-sort
814 // these nodes. We continually insert before 'N' in sequence as this is
815 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
816 // hierarchy left to express.
817 InsertDAGNode(DAG, N, Eight);
818 InsertDAGNode(DAG, N, Srl);
819 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000820 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000821 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000822 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000823 DAG.ReplaceAllUsesWith(N, Shl);
824 AM.IndexReg = And;
825 AM.Scale = (1 << ScaleLog);
826 return false;
827}
828
Chandler Carruthaa01e662012-01-11 09:35:00 +0000829// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
830// allows us to fold the shift into this addressing mode. Returns false if the
831// transform succeeded.
832static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
833 uint64_t Mask,
834 SDValue Shift, SDValue X,
835 X86ISelAddressMode &AM) {
836 if (Shift.getOpcode() != ISD::SHL ||
837 !isa<ConstantSDNode>(Shift.getOperand(1)))
838 return true;
839
840 // Not likely to be profitable if either the AND or SHIFT node has more
841 // than one use (unless all uses are for address computation). Besides,
842 // isel mechanism requires their node ids to be reused.
843 if (!N.hasOneUse() || !Shift.hasOneUse())
844 return true;
845
846 // Verify that the shift amount is something we can fold.
847 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
848 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
849 return true;
850
Craig Topper83e042a2013-08-15 05:57:07 +0000851 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000852 SDLoc DL(N);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000853 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
854 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
855 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
856
Chandler Carrutheb21da02012-01-12 01:34:44 +0000857 // Insert the new nodes into the topological ordering. We must do this in
858 // a valid topological ordering as nothing is going to go back and re-sort
859 // these nodes. We continually insert before 'N' in sequence as this is
860 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
861 // hierarchy left to express.
862 InsertDAGNode(DAG, N, NewMask);
863 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000864 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000865 DAG.ReplaceAllUsesWith(N, NewShift);
866
867 AM.Scale = 1 << ShiftAmt;
868 AM.IndexReg = NewAnd;
869 return false;
870}
871
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000872// Implement some heroics to detect shifts of masked values where the mask can
873// be replaced by extending the shift and undoing that in the addressing mode
874// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
875// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
876// the addressing mode. This results in code such as:
877//
878// int f(short *y, int *lookup_table) {
879// ...
880// return *y + lookup_table[*y >> 11];
881// }
882//
883// Turning into:
884// movzwl (%rdi), %eax
885// movl %eax, %ecx
886// shrl $11, %ecx
887// addl (%rsi,%rcx,4), %eax
888//
889// Instead of:
890// movzwl (%rdi), %eax
891// movl %eax, %ecx
892// shrl $9, %ecx
893// andl $124, %rcx
894// addl (%rsi,%rcx), %eax
895//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000896// Note that this function assumes the mask is provided as a mask *after* the
897// value is shifted. The input chain may or may not match that, but computing
898// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000899static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000900 uint64_t Mask,
901 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000902 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000903 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
904 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000905 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000906
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000907 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000908 unsigned MaskLZ = countLeadingZeros(Mask);
909 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000910
911 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000912 // from the trailing zeros of the mask.
913 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000914
915 // There is nothing we can do here unless the mask is removing some bits.
916 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
917 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
918
919 // We also need to ensure that mask is a continuous run of bits.
920 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
921
922 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000923 // Also scale it down based on the size of the shift.
Craig Topper83e042a2013-08-15 05:57:07 +0000924 MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000925
926 // The final check is to ensure that any masked out high bits of X are
927 // already known to be zero. Otherwise, the mask has a semantic impact
928 // other than masking out a couple of low bits. Unfortunately, because of
929 // the mask, zero extensions will be removed from operands in some cases.
930 // This code works extra hard to look through extensions because we can
931 // replace them with zero extensions cheaply if necessary.
932 bool ReplacingAnyExtend = false;
933 if (X.getOpcode() == ISD::ANY_EXTEND) {
Craig Topper83e042a2013-08-15 05:57:07 +0000934 unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
935 X.getOperand(0).getSimpleValueType().getSizeInBits();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000936 // Assume that we'll replace the any-extend with a zero-extend, and
937 // narrow the search to the extended value.
938 X = X.getOperand(0);
939 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
940 ReplacingAnyExtend = true;
941 }
Craig Topper83e042a2013-08-15 05:57:07 +0000942 APInt MaskedHighBits =
943 APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000944 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000945 DAG.computeKnownBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000946 if (MaskedHighBits != KnownZero) return true;
947
948 // We've identified a pattern that can be transformed into a single shift
949 // and an addressing mode. Make it so.
Craig Topper83e042a2013-08-15 05:57:07 +0000950 MVT VT = N.getSimpleValueType();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000951 if (ReplacingAnyExtend) {
952 assert(X.getValueType() != VT);
953 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000954 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000955 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000956 X = NewX;
957 }
Andrew Trickef9de2a2013-05-25 02:42:55 +0000958 SDLoc DL(N);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000959 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
960 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
961 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
962 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000963
964 // Insert the new nodes into the topological ordering. We must do this in
965 // a valid topological ordering as nothing is going to go back and re-sort
966 // these nodes. We continually insert before 'N' in sequence as this is
967 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
968 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000969 InsertDAGNode(DAG, N, NewSRLAmt);
970 InsertDAGNode(DAG, N, NewSRL);
971 InsertDAGNode(DAG, N, NewSHLAmt);
972 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000973 DAG.ReplaceAllUsesWith(N, NewSHL);
974
975 AM.Scale = 1 << AMShiftAmt;
976 AM.IndexReg = NewSRL;
977 return false;
978}
979
Dan Gohman824ab402009-07-22 23:26:55 +0000980bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
981 unsigned Depth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000982 SDLoc dl(N);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000983 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000984 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000985 AM.dump();
986 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000987 // Limit recursion.
988 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000989 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000990
Chris Lattnerfea81da2009-06-27 04:16:01 +0000991 // If this is already a %rip relative address, we can only merge immediates
992 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000993 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000994 if (AM.isRIPRelative()) {
995 // FIXME: JumpTable and ExternalSymbol address currently don't like
996 // displacements. It isn't very important, but this should be fixed for
997 // consistency.
998 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000999
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001000 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
1001 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001002 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001003 return true;
1004 }
1005
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001006 switch (N.getOpcode()) {
1007 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001008 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +00001009 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001010 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001011 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001012 break;
1013 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001014
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001015 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001016 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001017 if (!MatchWrapper(N, AM))
1018 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001019 break;
1020
Rafael Espindola3b2df102009-04-08 21:14:34 +00001021 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001022 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001023 return false;
1024 break;
1025
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001026 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001027 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001028 AM.Base_Reg.getNode() == nullptr &&
Eli Friedman344ec792011-07-13 21:29:53 +00001029 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001030 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001031 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001032 return false;
1033 }
1034 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001035
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001036 case ISD::SHL:
Craig Topper062a2ba2014-04-25 05:30:21 +00001037 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001038 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001039
Gabor Greif81d6a382008-08-31 15:37:04 +00001040 if (ConstantSDNode
1041 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001042 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001043 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1044 // that the base operand remains free for further matching. If
1045 // the base doesn't end up getting used, a post-processing step
1046 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001047 if (Val == 1 || Val == 2 || Val == 3) {
1048 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001049 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001050
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001051 // Okay, we know that we have a scale by now. However, if the scaled
1052 // value is an add of something and a constant, we can fold the
1053 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001054 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001055 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001056 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001057 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001058 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001059 if (!FoldOffsetIntoAddress(Disp, AM))
1060 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001061 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001062
1063 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001064 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001065 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001066 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001067 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001068
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001069 case ISD::SRL: {
1070 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001071 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001072
1073 SDValue And = N.getOperand(0);
1074 if (And.getOpcode() != ISD::AND) break;
1075 SDValue X = And.getOperand(0);
1076
1077 // We only handle up to 64-bit values here as those are what matter for
1078 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001079 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001080
1081 // The mask used for the transform is expected to be post-shift, but we
1082 // found the shift first so just apply the shift to the mask before passing
1083 // it down.
1084 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1085 !isa<ConstantSDNode>(And.getOperand(1)))
1086 break;
1087 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1088
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001089 // Try to fold the mask and shift into the scale, and return false if we
1090 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001091 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001092 return false;
1093 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001094 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001095
Dan Gohmanbf474952007-10-22 20:22:24 +00001096 case ISD::SMUL_LOHI:
1097 case ISD::UMUL_LOHI:
1098 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001099 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001100 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001101 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001102 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001103 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001104 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001105 AM.Base_Reg.getNode() == nullptr &&
1106 AM.IndexReg.getNode() == nullptr) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001107 if (ConstantSDNode
1108 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001109 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1110 CN->getZExtValue() == 9) {
1111 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001112
Gabor Greiff304a7a2008-08-28 21:40:38 +00001113 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001114 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001115
1116 // Okay, we know that we have a scale by now. However, if the scaled
1117 // value is an add of something and a constant, we can fold the
1118 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001119 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1120 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1121 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001122 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001123 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001124 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1125 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001126 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001127 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001128 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001129 }
1130
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001131 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001132 return false;
1133 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001134 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001135 break;
1136
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001137 case ISD::SUB: {
1138 // Given A-B, if A can be completely folded into the address and
1139 // the index field with the index field unused, use -B as the index.
1140 // This is a win if a has multiple parts that can be folded into
1141 // the address. Also, this saves a mov if the base register has
1142 // other uses, since it avoids a two-address sub instruction, however
1143 // it costs an additional mov if the index register has other uses.
1144
Dan Gohman99ba4da2010-06-18 01:24:29 +00001145 // Add an artificial use to this node so that we can keep track of
1146 // it if it gets CSE'd with a different node.
1147 HandleSDNode Handle(N);
1148
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001149 // Test if the LHS of the sub can be folded.
1150 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001151 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001152 AM = Backup;
1153 break;
1154 }
1155 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001156 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001157 AM = Backup;
1158 break;
1159 }
Evan Cheng68333f52010-03-17 23:58:35 +00001160
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001161 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001162 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001163 // If the RHS involves a register with multiple uses, this
1164 // transformation incurs an extra mov, due to the neg instruction
1165 // clobbering its operand.
1166 if (!RHS.getNode()->hasOneUse() ||
1167 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1168 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1169 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1170 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001171 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001172 ++Cost;
1173 // If the base is a register with multiple uses, this
1174 // transformation may save a mov.
1175 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001176 AM.Base_Reg.getNode() &&
1177 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001178 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1179 --Cost;
1180 // If the folded LHS was interesting, this transformation saves
1181 // address arithmetic.
1182 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1183 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1184 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1185 --Cost;
1186 // If it doesn't look like it may be an overall win, don't do it.
1187 if (Cost >= 0) {
1188 AM = Backup;
1189 break;
1190 }
1191
1192 // Ok, the transformation is legal and appears profitable. Go for it.
1193 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1194 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1195 AM.IndexReg = Neg;
1196 AM.Scale = 1;
1197
1198 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001199 InsertDAGNode(*CurDAG, N, Zero);
1200 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001201 return false;
1202 }
1203
Evan Chengbf38a5e2009-01-17 07:09:27 +00001204 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001205 // Add an artificial use to this node so that we can keep track of
1206 // it if it gets CSE'd with a different node.
1207 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001208
Evan Chengbf38a5e2009-01-17 07:09:27 +00001209 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001210 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1211 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001212 return false;
1213 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001214
Evan Cheng68333f52010-03-17 23:58:35 +00001215 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001216 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1217 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001218 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001219 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001220
1221 // If we couldn't fold both operands into the address at the same time,
1222 // see if we can just put each operand into a register and fold at least
1223 // the add.
1224 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001225 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001226 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001227 N = Handle.getValue();
1228 AM.Base_Reg = N.getOperand(0);
1229 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001230 AM.Scale = 1;
1231 return false;
1232 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001233 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001234 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001235 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001236
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001237 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001238 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001239 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001240 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001241 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001242
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001243 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001244 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001245 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001246 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001247 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001248 }
1249 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001250
Evan Cheng827d30d2007-12-13 00:43:27 +00001251 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001252 // Perform some heroic transforms on an and of a constant-count shift
1253 // with a constant to enable use of the scaled offset field.
1254
Evan Cheng827d30d2007-12-13 00:43:27 +00001255 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001256 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001257
Chandler Carruthaa01e662012-01-11 09:35:00 +00001258 SDValue Shift = N.getOperand(0);
1259 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001260 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001261
1262 // We only handle up to 64-bit values here as those are what matter for
1263 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001264 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthaa01e662012-01-11 09:35:00 +00001265
Chandler Carruthb0049f42012-01-11 09:35:04 +00001266 if (!isa<ConstantSDNode>(N.getOperand(1)))
1267 break;
1268 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001269
Chandler Carruth51d30762012-01-11 08:48:20 +00001270 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001271 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001272 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001273
Chandler Carruth51d30762012-01-11 08:48:20 +00001274 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001275 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001276 return false;
1277
Chandler Carruthaa01e662012-01-11 09:35:00 +00001278 // Try to swap the mask and shift to place shifts which can be done as
1279 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001280 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001281 return false;
1282 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001283 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001284 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001285
Rafael Espindola92773792009-03-31 16:16:57 +00001286 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001287}
1288
1289/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1290/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001291bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001292 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001293 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001294 // If so, check to see if the scale index register is set.
Craig Topper062a2ba2014-04-25 05:30:21 +00001295 if (!AM.IndexReg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001296 AM.IndexReg = N;
1297 AM.Scale = 1;
1298 return false;
1299 }
1300
1301 // Otherwise, we cannot select it.
1302 return true;
1303 }
1304
1305 // Default, generate it as a register.
1306 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001307 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001308 return false;
1309}
1310
Evan Chengc9fab312005-12-08 02:01:35 +00001311/// SelectAddr - returns true if it is able pattern match an addressing mode.
1312/// It returns the operands which make up the maximal addressing mode it can
1313/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001314///
1315/// Parent is the parent node of the addr operand that is being matched. It
1316/// is always a load, store, atomic node, or null. It is only null when
1317/// checking memory operands for inline asm nodes.
1318bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001319 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001320 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001321 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001322
Chris Lattner8a236b62010-09-22 04:39:11 +00001323 if (Parent &&
1324 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1325 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001326 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001327 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001328 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1329 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1330 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001331 unsigned AddrSpace =
1332 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1333 // AddrSpace 256 -> GS, 257 -> FS.
1334 if (AddrSpace == 256)
1335 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1336 if (AddrSpace == 257)
1337 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1338 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001339
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001340 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001341 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001342
Craig Topper83e042a2013-08-15 05:57:07 +00001343 MVT VT = N.getSimpleValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001344 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001345 if (!AM.Base_Reg.getNode())
1346 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001347 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001348
Gabor Greiff304a7a2008-08-28 21:40:38 +00001349 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001350 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001351
Rafael Espindola3b2df102009-04-08 21:14:34 +00001352 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001353 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001354}
1355
Chris Lattner398195e2006-10-07 21:55:32 +00001356/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1357/// match a load whose top elements are either undef or zeros. The load flavor
1358/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001359///
1360/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001361/// PatternChainNode: this is the matched node that has a chain input and
1362/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001363bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001364 SDValue N, SDValue &Base,
1365 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001366 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001367 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001368 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001369 PatternNodeWithChain = N.getOperand(0);
1370 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1371 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001372 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001373 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001374 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001375 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001376 return false;
1377 return true;
1378 }
1379 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001380
1381 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001382 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001383 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001384 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001385 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001386 N.getOperand(0).getNode()->hasOneUse() &&
1387 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001388 N.getOperand(0).getOperand(0).hasOneUse() &&
1389 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001390 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001391 // Okay, this is a zero extending load. Fold it.
1392 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001393 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001394 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001395 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001396 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001397 }
Chris Lattner398195e2006-10-07 21:55:32 +00001398 return false;
1399}
1400
1401
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001402bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1403 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1404 uint64_t ImmVal = CN->getZExtValue();
1405 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1406 return false;
1407
1408 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1409 return true;
1410 }
1411
1412 // In static codegen with small code model, we can get the address of a label
1413 // into a register with 'movl'. TableGen has already made sure we're looking
1414 // at a label of some kind.
Tim Northover6833e3f2013-06-10 20:43:49 +00001415 assert(N->getOpcode() == X86ISD::Wrapper &&
1416 "Unexpected node type for MOV32ri64");
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001417 N = N.getOperand(0);
1418
1419 if (N->getOpcode() != ISD::TargetConstantPool &&
1420 N->getOpcode() != ISD::TargetJumpTable &&
1421 N->getOpcode() != ISD::TargetGlobalAddress &&
1422 N->getOpcode() != ISD::TargetExternalSymbol &&
1423 N->getOpcode() != ISD::TargetBlockAddress)
1424 return false;
1425
1426 Imm = N;
1427 return TM.getCodeModel() == CodeModel::Small;
1428}
1429
Tim Northover6833e3f2013-06-10 20:43:49 +00001430bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1431 SDValue &Scale, SDValue &Index,
1432 SDValue &Disp, SDValue &Segment) {
1433 if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1434 return false;
1435
1436 SDLoc DL(N);
1437 RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1438 if (RN && RN->getReg() == 0)
1439 Base = CurDAG->getRegister(0, MVT::i64);
Pavel Chupin01a4e0a2014-08-20 11:59:22 +00001440 else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(Base)) {
Tim Northover6833e3f2013-06-10 20:43:49 +00001441 // Base could already be %rip, particularly in the x32 ABI.
1442 Base = SDValue(CurDAG->getMachineNode(
1443 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1444 CurDAG->getTargetConstant(0, MVT::i64),
1445 Base,
1446 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1447 0);
1448 }
1449
1450 RN = dyn_cast<RegisterSDNode>(Index);
1451 if (RN && RN->getReg() == 0)
1452 Index = CurDAG->getRegister(0, MVT::i64);
1453 else {
1454 assert(Index.getValueType() == MVT::i32 &&
1455 "Expect to be extending 32-bit registers for use in LEA");
1456 Index = SDValue(CurDAG->getMachineNode(
1457 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1458 CurDAG->getTargetConstant(0, MVT::i64),
1459 Index,
1460 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1461 0);
1462 }
1463
1464 return true;
1465}
1466
Evan Cheng77d86ff2006-02-25 10:09:08 +00001467/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1468/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001469bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001470 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001471 SDValue &Index, SDValue &Disp,
1472 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001473 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001474
1475 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1476 // segments.
1477 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001478 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001479 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001480 if (MatchAddress(N, AM))
1481 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001482 assert (T == AM.Segment);
1483 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001484
Craig Topper83e042a2013-08-15 05:57:07 +00001485 MVT VT = N.getSimpleValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001486 unsigned Complexity = 0;
1487 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001488 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001489 Complexity = 1;
1490 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001491 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001492 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1493 Complexity = 4;
1494
Gabor Greiff304a7a2008-08-28 21:40:38 +00001495 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001496 Complexity++;
1497 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001498 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001499
Chris Lattner3e1d9172007-03-20 06:08:29 +00001500 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1501 // a simple shift.
1502 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001503 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001504
1505 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1506 // to a LEA. This is determined with some expermentation but is by no means
1507 // optimal (especially for code size consideration). LEA is nice because of
1508 // its three-address nature. Tweak the cost function again when we can run
1509 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001510 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001511 // For X86-64, we should always use lea to materialize RIP relative
1512 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001513 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001514 Complexity = 4;
1515 else
1516 Complexity += 2;
1517 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001518
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001519 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001520 Complexity++;
1521
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001522 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001523 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001524 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001525
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001526 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1527 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001528}
1529
Chris Lattner7d2b0492009-06-20 20:38:48 +00001530/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001531bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001532 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001533 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001534 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1535 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001536
Chris Lattner7d2b0492009-06-20 20:38:48 +00001537 X86ISelAddressMode AM;
1538 AM.GV = GA->getGlobal();
1539 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001540 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001541 AM.SymbolFlags = GA->getTargetFlags();
1542
Owen Anderson9f944592009-08-11 20:47:22 +00001543 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001544 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001545 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001546 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001547 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001548 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001549
Chris Lattner7d2b0492009-06-20 20:38:48 +00001550 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1551 return true;
1552}
1553
1554
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001555bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001556 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001557 SDValue &Index, SDValue &Disp,
1558 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001559 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1560 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001561 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001562 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001563
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001564 return SelectAddr(N.getNode(),
1565 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001566}
1567
Dan Gohman24300732008-09-23 18:22:58 +00001568/// getGlobalBaseReg - Return an SDNode that returns the value of
1569/// the global base register. Output instructions required to
1570/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001571///
Evan Cheng61413a32006-08-26 05:34:46 +00001572SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001573 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001574 return CurDAG->getRegister(GlobalBaseReg,
1575 getTargetLowering()->getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001576}
1577
Michael Liao83725392012-09-19 19:36:58 +00001578/// Atomic opcode table
1579///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001580enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001581 ADD,
1582 SUB,
1583 INC,
1584 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001585 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001586 AND,
1587 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001588 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001589};
1590
1591enum AtomicSz {
1592 ConstantI8,
1593 I8,
1594 SextConstantI16,
1595 ConstantI16,
1596 I16,
1597 SextConstantI32,
1598 ConstantI32,
1599 I32,
1600 SextConstantI64,
1601 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001602 I64,
1603 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001604};
1605
Craig Topper2dac9622012-03-09 07:45:21 +00001606static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001607 {
Michael Liao83725392012-09-19 19:36:58 +00001608 X86::LOCK_ADD8mi,
1609 X86::LOCK_ADD8mr,
1610 X86::LOCK_ADD16mi8,
1611 X86::LOCK_ADD16mi,
1612 X86::LOCK_ADD16mr,
1613 X86::LOCK_ADD32mi8,
1614 X86::LOCK_ADD32mi,
1615 X86::LOCK_ADD32mr,
1616 X86::LOCK_ADD64mi8,
1617 X86::LOCK_ADD64mi32,
1618 X86::LOCK_ADD64mr,
1619 },
1620 {
1621 X86::LOCK_SUB8mi,
1622 X86::LOCK_SUB8mr,
1623 X86::LOCK_SUB16mi8,
1624 X86::LOCK_SUB16mi,
1625 X86::LOCK_SUB16mr,
1626 X86::LOCK_SUB32mi8,
1627 X86::LOCK_SUB32mi,
1628 X86::LOCK_SUB32mr,
1629 X86::LOCK_SUB64mi8,
1630 X86::LOCK_SUB64mi32,
1631 X86::LOCK_SUB64mr,
1632 },
1633 {
1634 0,
1635 X86::LOCK_INC8m,
1636 0,
1637 0,
1638 X86::LOCK_INC16m,
1639 0,
1640 0,
1641 X86::LOCK_INC32m,
1642 0,
1643 0,
1644 X86::LOCK_INC64m,
1645 },
1646 {
1647 0,
1648 X86::LOCK_DEC8m,
1649 0,
1650 0,
1651 X86::LOCK_DEC16m,
1652 0,
1653 0,
1654 X86::LOCK_DEC32m,
1655 0,
1656 0,
1657 X86::LOCK_DEC64m,
1658 },
1659 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001660 X86::LOCK_OR8mi,
1661 X86::LOCK_OR8mr,
1662 X86::LOCK_OR16mi8,
1663 X86::LOCK_OR16mi,
1664 X86::LOCK_OR16mr,
1665 X86::LOCK_OR32mi8,
1666 X86::LOCK_OR32mi,
1667 X86::LOCK_OR32mr,
1668 X86::LOCK_OR64mi8,
1669 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001670 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001671 },
1672 {
1673 X86::LOCK_AND8mi,
1674 X86::LOCK_AND8mr,
1675 X86::LOCK_AND16mi8,
1676 X86::LOCK_AND16mi,
1677 X86::LOCK_AND16mr,
1678 X86::LOCK_AND32mi8,
1679 X86::LOCK_AND32mi,
1680 X86::LOCK_AND32mr,
1681 X86::LOCK_AND64mi8,
1682 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001683 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001684 },
1685 {
1686 X86::LOCK_XOR8mi,
1687 X86::LOCK_XOR8mr,
1688 X86::LOCK_XOR16mi8,
1689 X86::LOCK_XOR16mi,
1690 X86::LOCK_XOR16mr,
1691 X86::LOCK_XOR32mi8,
1692 X86::LOCK_XOR32mi,
1693 X86::LOCK_XOR32mr,
1694 X86::LOCK_XOR64mi8,
1695 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001696 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001697 }
1698};
1699
Michael Liao83725392012-09-19 19:36:58 +00001700// Return the target constant operand for atomic-load-op and do simple
1701// translations, such as from atomic-load-add to lock-sub. The return value is
1702// one of the following 3 cases:
1703// + target-constant, the operand could be supported as a target constant.
1704// + empty, the operand is not needed any more with the new op selected.
1705// + non-empty, otherwise.
1706static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001707 SDLoc dl,
Craig Topper83e042a2013-08-15 05:57:07 +00001708 enum AtomicOpc &Op, MVT NVT,
Michael Liao83725392012-09-19 19:36:58 +00001709 SDValue Val) {
1710 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1711 int64_t CNVal = CN->getSExtValue();
1712 // Quit if not 32-bit imm.
1713 if ((int32_t)CNVal != CNVal)
1714 return Val;
1715 // For atomic-load-add, we could do some optimizations.
1716 if (Op == ADD) {
1717 // Translate to INC/DEC if ADD by 1 or -1.
1718 if ((CNVal == 1) || (CNVal == -1)) {
1719 Op = (CNVal == 1) ? INC : DEC;
1720 // No more constant operand after being translated into INC/DEC.
1721 return SDValue();
1722 }
1723 // Translate to SUB if ADD by negative value.
1724 if (CNVal < 0) {
1725 Op = SUB;
1726 CNVal = -CNVal;
1727 }
1728 }
1729 return CurDAG->getTargetConstant(CNVal, NVT);
1730 }
1731
1732 // If the value operand is single-used, try to optimize it.
1733 if (Op == ADD && Val.hasOneUse()) {
1734 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1735 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1736 Op = SUB;
1737 return Val.getOperand(1);
1738 }
1739 // A special case for i16, which needs truncating as, in most cases, it's
1740 // promoted to i32. We will translate
1741 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1742 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1743 Val.getOperand(0).getOpcode() == ISD::SUB &&
1744 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1745 Op = SUB;
1746 Val = Val.getOperand(0);
1747 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1748 Val.getOperand(1));
1749 }
1750 }
1751
1752 return Val;
1753}
1754
Craig Topper83e042a2013-08-15 05:57:07 +00001755SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001756 if (Node->hasAnyUseOfValue(0))
Craig Topper062a2ba2014-04-25 05:30:21 +00001757 return nullptr;
Chad Rosier24c19d22012-08-01 18:39:17 +00001758
Andrew Trickef9de2a2013-05-25 02:42:55 +00001759 SDLoc dl(Node);
Michael Liao83725392012-09-19 19:36:58 +00001760
Eric Christopher56a42eb2011-05-17 08:16:14 +00001761 // Optimize common patterns for __sync_or_and_fetch and similar arith
1762 // operations where the result is not used. This allows us to use the "lock"
1763 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001764 SDValue Chain = Node->getOperand(0);
1765 SDValue Ptr = Node->getOperand(1);
1766 SDValue Val = Node->getOperand(2);
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001767 SDValue Base, Scale, Index, Disp, Segment;
1768 if (!SelectAddr(Node, Ptr, Base, Scale, Index, Disp, Segment))
Craig Topper062a2ba2014-04-25 05:30:21 +00001769 return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001770
Eric Christophera1d9e292011-05-17 08:10:18 +00001771 // Which index into the table.
1772 enum AtomicOpc Op;
1773 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001774 default:
Craig Topper062a2ba2014-04-25 05:30:21 +00001775 return nullptr;
Eric Christophera1d9e292011-05-17 08:10:18 +00001776 case ISD::ATOMIC_LOAD_OR:
1777 Op = OR;
1778 break;
1779 case ISD::ATOMIC_LOAD_AND:
1780 Op = AND;
1781 break;
1782 case ISD::ATOMIC_LOAD_XOR:
1783 Op = XOR;
1784 break;
Michael Liao83725392012-09-19 19:36:58 +00001785 case ISD::ATOMIC_LOAD_ADD:
1786 Op = ADD;
1787 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001788 }
Andrew Trick52b83872013-04-13 06:07:36 +00001789
Michael Liao83725392012-09-19 19:36:58 +00001790 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1791 bool isUnOp = !Val.getNode();
1792 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001793
Eric Christopher4a34e612011-05-10 23:57:45 +00001794 unsigned Opc = 0;
Craig Topper83e042a2013-08-15 05:57:07 +00001795 switch (NVT.SimpleTy) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001796 default: return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001797 case MVT::i8:
1798 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001799 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001800 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001801 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001802 break;
1803 case MVT::i16:
1804 if (isCN) {
1805 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001806 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001807 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001808 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001809 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001810 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001811 break;
1812 case MVT::i32:
1813 if (isCN) {
1814 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001815 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001816 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001817 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001818 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001819 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001820 break;
1821 case MVT::i64:
1822 if (isCN) {
1823 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001824 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001825 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001826 Opc = AtomicOpcTbl[Op][ConstantI64];
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001827 } else
1828 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001829 break;
1830 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001831
Eric Christopherc93217372011-06-30 00:48:30 +00001832 assert(Opc != 0 && "Invalid arith lock transform!");
1833
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001834 // Building the new node.
Michael Liao83725392012-09-19 19:36:58 +00001835 SDValue Ret;
Michael Liao83725392012-09-19 19:36:58 +00001836 if (isUnOp) {
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001837 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001838 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001839 } else {
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001840 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Val, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001841 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001842 }
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001843
1844 // Copying the MachineMemOperand.
1845 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1846 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Eric Christopher4a34e612011-05-10 23:57:45 +00001847 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001848
1849 // We need to have two outputs as that is what the original instruction had.
1850 // So we add a dummy, undefined output. This is safe as we checked first
1851 // that no-one uses our output anyway.
1852 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1853 dl, NVT), 0);
Eric Christopher4a34e612011-05-10 23:57:45 +00001854 SDValue RetVals[] = { Undef, Ret };
Craig Topper64941d92014-04-27 19:20:57 +00001855 return CurDAG->getMergeValues(RetVals, dl).getNode();
Eric Christopher4a34e612011-05-10 23:57:45 +00001856}
1857
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001858/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1859/// any uses which require the SF or OF bits to be accurate.
1860static bool HasNoSignedComparisonUses(SDNode *N) {
1861 // Examine each user of the node.
1862 for (SDNode::use_iterator UI = N->use_begin(),
1863 UE = N->use_end(); UI != UE; ++UI) {
1864 // Only examine CopyToReg uses.
1865 if (UI->getOpcode() != ISD::CopyToReg)
1866 return false;
1867 // Only examine CopyToReg uses that copy to EFLAGS.
1868 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1869 X86::EFLAGS)
1870 return false;
1871 // Examine each user of the CopyToReg use.
1872 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1873 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1874 // Only examine the Flag result.
1875 if (FlagUI.getUse().getResNo() != 1) continue;
1876 // Anything unusual: assume conservatively.
1877 if (!FlagUI->isMachineOpcode()) return false;
1878 // Examine the opcode of the user.
1879 switch (FlagUI->getMachineOpcode()) {
1880 // These comparisons don't treat the most significant bit specially.
1881 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1882 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1883 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1884 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattner2b0a7a22010-02-11 19:25:55 +00001885 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1886 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001887 case X86::CMOVA16rr: case X86::CMOVA16rm:
1888 case X86::CMOVA32rr: case X86::CMOVA32rm:
1889 case X86::CMOVA64rr: case X86::CMOVA64rm:
1890 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1891 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1892 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1893 case X86::CMOVB16rr: case X86::CMOVB16rm:
1894 case X86::CMOVB32rr: case X86::CMOVB32rm:
1895 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001896 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1897 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1898 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001899 case X86::CMOVE16rr: case X86::CMOVE16rm:
1900 case X86::CMOVE32rr: case X86::CMOVE32rm:
1901 case X86::CMOVE64rr: case X86::CMOVE64rm:
1902 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1903 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1904 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1905 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1906 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1907 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1908 case X86::CMOVP16rr: case X86::CMOVP16rm:
1909 case X86::CMOVP32rr: case X86::CMOVP32rm:
1910 case X86::CMOVP64rr: case X86::CMOVP64rm:
1911 continue;
1912 // Anything else: assume conservatively.
1913 default: return false;
1914 }
1915 }
1916 }
1917 return true;
1918}
1919
Joel Jones68d59e82012-03-29 05:45:48 +00001920/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1921/// is suitable for doing the {load; increment or decrement; store} to modify
1922/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001923static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001924 SDValue StoredVal, SelectionDAG *CurDAG,
1925 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001926
1927 // is the value stored the result of a DEC or INC?
1928 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1929
Joel Jones68d59e82012-03-29 05:45:48 +00001930 // is the stored value result 0 of the load?
1931 if (StoredVal.getResNo() != 0) return false;
1932
1933 // are there other uses of the loaded value than the inc or dec?
1934 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1935
Joel Jones68d59e82012-03-29 05:45:48 +00001936 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001937 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001938 return false;
1939
Evan Cheng3e869f02012-04-12 19:14:21 +00001940 SDValue Load = StoredVal->getOperand(0);
1941 // Is the stored value a non-extending and non-indexed load?
1942 if (!ISD::isNormalLoad(Load.getNode())) return false;
1943
1944 // Return LoadNode by reference.
1945 LoadNode = cast<LoadSDNode>(Load);
1946 // 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 +00001947 EVT LdVT = LoadNode->getMemoryVT();
1948 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001949 LdVT != MVT::i8)
1950 return false;
1951
1952 // Is store the only read of the loaded value?
1953 if (!Load.hasOneUse())
1954 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001955
Evan Cheng3e869f02012-04-12 19:14:21 +00001956 // Is the address of the store the same as the load?
1957 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1958 LoadNode->getOffset() != StoreNode->getOffset())
1959 return false;
1960
1961 // Check if the chain is produced by the load or is a TokenFactor with
1962 // the load output chain as an operand. Return InputChain by reference.
1963 SDValue Chain = StoreNode->getChain();
1964
1965 bool ChainCheck = false;
1966 if (Chain == Load.getValue(1)) {
1967 ChainCheck = true;
1968 InputChain = LoadNode->getChain();
1969 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1970 SmallVector<SDValue, 4> ChainOps;
1971 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1972 SDValue Op = Chain.getOperand(i);
1973 if (Op == Load.getValue(1)) {
1974 ChainCheck = true;
1975 continue;
1976 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001977
1978 // Make sure using Op as part of the chain would not cause a cycle here.
1979 // In theory, we could check whether the chain node is a predecessor of
1980 // the load. But that can be very expensive. Instead visit the uses and
1981 // make sure they all have smaller node id than the load.
1982 int LoadId = LoadNode->getNodeId();
1983 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1984 UE = UI->use_end(); UI != UE; ++UI) {
1985 if (UI.getUse().getResNo() != 0)
1986 continue;
1987 if (UI->getNodeId() > LoadId)
1988 return false;
1989 }
1990
Evan Cheng3e869f02012-04-12 19:14:21 +00001991 ChainOps.push_back(Op);
1992 }
1993
1994 if (ChainCheck)
1995 // Make a new TokenFactor with all the other input chains except
1996 // for the load.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001997 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Craig Topper48d114b2014-04-26 18:35:24 +00001998 MVT::Other, ChainOps);
Evan Cheng3e869f02012-04-12 19:14:21 +00001999 }
2000 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00002001 return false;
2002
2003 return true;
2004}
2005
Benjamin Kramer8619c372012-03-29 12:37:26 +00002006/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2007/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00002008static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2009 if (Opc == X86ISD::DEC) {
2010 if (LdVT == MVT::i64) return X86::DEC64m;
2011 if (LdVT == MVT::i32) return X86::DEC32m;
2012 if (LdVT == MVT::i16) return X86::DEC16m;
2013 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00002014 } else {
2015 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00002016 if (LdVT == MVT::i64) return X86::INC64m;
2017 if (LdVT == MVT::i32) return X86::INC32m;
2018 if (LdVT == MVT::i16) return X86::INC16m;
2019 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00002020 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00002021 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00002022}
2023
Manman Rena0982042012-06-26 19:47:59 +00002024/// SelectGather - Customized ISel for GATHER operations.
2025///
2026SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2027 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2028 SDValue Chain = Node->getOperand(0);
2029 SDValue VSrc = Node->getOperand(2);
2030 SDValue Base = Node->getOperand(3);
2031 SDValue VIdx = Node->getOperand(4);
2032 SDValue VMask = Node->getOperand(5);
2033 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00002034 if (!Scale)
Craig Topper062a2ba2014-04-25 05:30:21 +00002035 return nullptr;
Manman Rena0982042012-06-26 19:47:59 +00002036
Craig Topperf7755df2012-07-12 06:52:41 +00002037 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2038 MVT::Other);
2039
Manman Rena0982042012-06-26 19:47:59 +00002040 // Memory Operands: Base, Scale, Index, Disp, Segment
2041 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
2042 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2043 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
2044 Disp, Segment, VMask, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00002045 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topperf7755df2012-07-12 06:52:41 +00002046 // Node has 2 outputs: VDst and MVT::Other.
2047 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2048 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2049 // of ResNode.
2050 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2051 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00002052 return ResNode;
2053}
2054
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002055SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Craig Topper83e042a2013-08-15 05:57:07 +00002056 MVT NVT = Node->getSimpleValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00002057 unsigned Opc, MOpc;
2058 unsigned Opcode = Node->getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002059 SDLoc dl(Node);
Chad Rosier24c19d22012-08-01 18:39:17 +00002060
Chris Lattnerf98f1242010-03-02 06:34:30 +00002061 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00002062
Dan Gohman17059682008-07-17 19:10:17 +00002063 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00002064 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Tim Northover31d093c2013-09-22 08:21:56 +00002065 Node->setNodeId(-1);
Craig Topper062a2ba2014-04-25 05:30:21 +00002066 return nullptr; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00002067 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00002068
Evan Cheng10d27902006-01-06 20:36:21 +00002069 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00002070 default: break;
Manman Rena0982042012-06-26 19:47:59 +00002071 case ISD::INTRINSIC_W_CHAIN: {
2072 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2073 switch (IntNo) {
2074 default: break;
2075 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002076 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002077 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002078 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002079 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002080 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002081 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002082 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002083 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002084 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002085 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002086 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002087 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002088 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002089 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002090 case Intrinsic::x86_avx2_gather_q_d_256: {
Michael Liao00b20cc2013-06-05 18:12:26 +00002091 if (!Subtarget->hasAVX2())
2092 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002093 unsigned Opc;
2094 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002095 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002096 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2097 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2098 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2099 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2100 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2101 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2102 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2103 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2104 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2105 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2106 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2107 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2108 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2109 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2110 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2111 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2112 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002113 SDNode *RetVal = SelectGather(Node, Opc);
2114 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002115 // We already called ReplaceUses inside SelectGather.
Craig Topper062a2ba2014-04-25 05:30:21 +00002116 return nullptr;
Craig Toppere15e5f72012-07-01 02:18:18 +00002117 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002118 }
Manman Rena0982042012-06-26 19:47:59 +00002119 }
2120 break;
2121 }
Dan Gohman757eee82009-08-02 16:10:52 +00002122 case X86ISD::GlobalBaseReg:
2123 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002124
Craig Topper3af251d2012-07-01 02:55:34 +00002125
Eric Christophera1d9e292011-05-17 08:10:18 +00002126 case ISD::ATOMIC_LOAD_XOR:
2127 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002128 case ISD::ATOMIC_LOAD_OR:
2129 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002130 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002131 if (RetVal)
2132 return RetVal;
2133 break;
2134 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002135 case ISD::AND:
2136 case ISD::OR:
2137 case ISD::XOR: {
2138 // For operations of the form (x << C1) op C2, check if we can use a smaller
2139 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2140 SDValue N0 = Node->getOperand(0);
2141 SDValue N1 = Node->getOperand(1);
2142
2143 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2144 break;
2145
2146 // i8 is unshrinkable, i16 should be promoted to i32.
2147 if (NVT != MVT::i32 && NVT != MVT::i64)
2148 break;
2149
2150 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2151 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2152 if (!Cst || !ShlCst)
2153 break;
2154
2155 int64_t Val = Cst->getSExtValue();
2156 uint64_t ShlVal = ShlCst->getZExtValue();
2157
2158 // Make sure that we don't change the operation by removing bits.
2159 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002160 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2161 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002162 break;
2163
Craig Topper22cb0c52012-08-11 17:44:14 +00002164 unsigned ShlOp, Op;
Craig Topper83e042a2013-08-15 05:57:07 +00002165 MVT CstVT = NVT;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002166
2167 // Check the minimum bitwidth for the new constant.
2168 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2169 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2170 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2171 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2172 CstVT = MVT::i8;
2173 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2174 CstVT = MVT::i32;
2175
2176 // Bail if there is no smaller encoding.
2177 if (NVT == CstVT)
2178 break;
2179
Craig Topper83e042a2013-08-15 05:57:07 +00002180 switch (NVT.SimpleTy) {
Benjamin Kramer4c816242011-04-22 15:30:40 +00002181 default: llvm_unreachable("Unsupported VT!");
2182 case MVT::i32:
2183 assert(CstVT == MVT::i8);
2184 ShlOp = X86::SHL32ri;
2185
2186 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002187 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002188 case ISD::AND: Op = X86::AND32ri8; break;
2189 case ISD::OR: Op = X86::OR32ri8; break;
2190 case ISD::XOR: Op = X86::XOR32ri8; break;
2191 }
2192 break;
2193 case MVT::i64:
2194 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2195 ShlOp = X86::SHL64ri;
2196
2197 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002198 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002199 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2200 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2201 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2202 }
2203 break;
2204 }
2205
2206 // Emit the smaller op and the shift.
2207 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2208 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2209 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2210 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002211 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002212 case X86ISD::UMUL: {
2213 SDValue N0 = Node->getOperand(0);
2214 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002215
Ted Kremenekb5241b22011-01-14 22:34:13 +00002216 unsigned LoReg;
Craig Topper83e042a2013-08-15 05:57:07 +00002217 switch (NVT.SimpleTy) {
Chris Lattner364bb0a2010-12-05 07:30:36 +00002218 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002219 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2220 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2221 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2222 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002223 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002224
Chris Lattner364bb0a2010-12-05 07:30:36 +00002225 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2226 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002227
Chris Lattner364bb0a2010-12-05 07:30:36 +00002228 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2229 SDValue Ops[] = {N1, InFlag};
Michael Liaob53d8962013-04-19 22:22:57 +00002230 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosier24c19d22012-08-01 18:39:17 +00002231
Chris Lattner364bb0a2010-12-05 07:30:36 +00002232 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2233 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2234 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
Craig Topper062a2ba2014-04-25 05:30:21 +00002235 return nullptr;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002236 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002237
Dan Gohman757eee82009-08-02 16:10:52 +00002238 case ISD::SMUL_LOHI:
2239 case ISD::UMUL_LOHI: {
2240 SDValue N0 = Node->getOperand(0);
2241 SDValue N1 = Node->getOperand(1);
2242
2243 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002244 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002245 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002246 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002247 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002248 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2249 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002250 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2251 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2252 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2253 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002254 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002255 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002256 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002257 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002258 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2259 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2260 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2261 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002262 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002263 }
Dan Gohman757eee82009-08-02 16:10:52 +00002264
Michael Liaof9f7b552012-09-26 08:22:37 +00002265 unsigned SrcReg, LoReg, HiReg;
2266 switch (Opc) {
2267 default: llvm_unreachable("Unknown MUL opcode!");
2268 case X86::IMUL8r:
2269 case X86::MUL8r:
2270 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2271 break;
2272 case X86::IMUL16r:
2273 case X86::MUL16r:
2274 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2275 break;
2276 case X86::IMUL32r:
2277 case X86::MUL32r:
2278 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2279 break;
2280 case X86::IMUL64r:
2281 case X86::MUL64r:
2282 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2283 break;
2284 case X86::MULX32rr:
2285 SrcReg = X86::EDX; LoReg = HiReg = 0;
2286 break;
2287 case X86::MULX64rr:
2288 SrcReg = X86::RDX; LoReg = HiReg = 0;
2289 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002290 }
2291
2292 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002293 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002294 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002295 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002296 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002297 if (foldedLoad)
2298 std::swap(N0, N1);
2299 }
2300
Michael Liaof9f7b552012-09-26 08:22:37 +00002301 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002302 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002303 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002304
2305 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002306 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002307 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2308 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002309 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2310 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002311 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002312 ResHi = SDValue(CNode, 0);
2313 ResLo = SDValue(CNode, 1);
2314 Chain = SDValue(CNode, 2);
2315 InFlag = SDValue(CNode, 3);
2316 } else {
2317 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002318 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002319 Chain = SDValue(CNode, 0);
2320 InFlag = SDValue(CNode, 1);
2321 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002322
Dan Gohman757eee82009-08-02 16:10:52 +00002323 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002324 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002325 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002326 SDValue Ops[] = { N1, InFlag };
2327 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2328 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002329 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002330 ResHi = SDValue(CNode, 0);
2331 ResLo = SDValue(CNode, 1);
2332 InFlag = SDValue(CNode, 2);
2333 } else {
2334 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002335 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002336 InFlag = SDValue(CNode, 0);
2337 }
Dan Gohman757eee82009-08-02 16:10:52 +00002338 }
2339
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002340 // Prevent use of AH in a REX instruction by referencing AX instead.
2341 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2342 !SDValue(Node, 1).use_empty()) {
2343 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2344 X86::AX, MVT::i16, InFlag);
2345 InFlag = Result.getValue(2);
2346 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2347 // registers.
2348 if (!SDValue(Node, 0).use_empty())
2349 ReplaceUses(SDValue(Node, 1),
2350 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2351
2352 // Shift AX down 8 bits.
2353 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2354 Result,
2355 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2356 // Then truncate it down to i8.
2357 ReplaceUses(SDValue(Node, 1),
2358 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2359 }
Dan Gohman757eee82009-08-02 16:10:52 +00002360 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002361 if (!SDValue(Node, 0).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002362 if (!ResLo.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002363 assert(LoReg && "Register for low half is not defined!");
2364 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2365 InFlag);
2366 InFlag = ResLo.getValue(2);
2367 }
2368 ReplaceUses(SDValue(Node, 0), ResLo);
2369 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002370 }
2371 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002372 if (!SDValue(Node, 1).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002373 if (!ResHi.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002374 assert(HiReg && "Register for high half is not defined!");
2375 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2376 InFlag);
2377 InFlag = ResHi.getValue(2);
2378 }
2379 ReplaceUses(SDValue(Node, 1), ResHi);
2380 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002381 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002382
Craig Topper062a2ba2014-04-25 05:30:21 +00002383 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002384 }
2385
2386 case ISD::SDIVREM:
2387 case ISD::UDIVREM: {
2388 SDValue N0 = Node->getOperand(0);
2389 SDValue N1 = Node->getOperand(1);
2390
2391 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002392 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002393 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002394 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002395 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2396 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2397 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2398 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002399 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002400 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002401 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002402 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002403 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2404 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2405 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2406 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002407 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002408 }
Dan Gohman757eee82009-08-02 16:10:52 +00002409
Chris Lattner518b0372009-12-23 01:45:04 +00002410 unsigned LoReg, HiReg, ClrReg;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002411 unsigned SExtOpcode;
Craig Topper83e042a2013-08-15 05:57:07 +00002412 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002413 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002414 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002415 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002416 SExtOpcode = X86::CBW;
2417 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002418 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002419 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002420 ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002421 SExtOpcode = X86::CWD;
2422 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002423 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002424 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002425 SExtOpcode = X86::CDQ;
2426 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002427 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002428 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002429 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002430 break;
2431 }
2432
Dan Gohman757eee82009-08-02 16:10:52 +00002433 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002434 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002435 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002436
Dan Gohman757eee82009-08-02 16:10:52 +00002437 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002438 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002439 // Special case for div8, just use a move with zero extension to AX to
2440 // clear the upper 8 bits (AH).
2441 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002442 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002443 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2444 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002445 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +00002446 MVT::Other, Ops), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002447 Chain = Move.getValue(1);
2448 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002449 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002450 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002451 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002452 Chain = CurDAG->getEntryNode();
2453 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002454 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002455 InFlag = Chain.getValue(1);
2456 } else {
2457 InFlag =
2458 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2459 LoReg, N0, SDValue()).getValue(1);
2460 if (isSigned && !signBitIsZero) {
2461 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002462 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002463 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002464 } else {
2465 // Zero out the high part, effectively zero extending the input.
Tim Northover64ec0ff2013-05-30 13:19:42 +00002466 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
Craig Topper83e042a2013-08-15 05:57:07 +00002467 switch (NVT.SimpleTy) {
Tim Northover64ec0ff2013-05-30 13:19:42 +00002468 case MVT::i16:
2469 ClrNode =
2470 SDValue(CurDAG->getMachineNode(
2471 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2472 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2473 0);
2474 break;
2475 case MVT::i32:
2476 break;
2477 case MVT::i64:
2478 ClrNode =
2479 SDValue(CurDAG->getMachineNode(
2480 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2481 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2482 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2483 0);
2484 break;
2485 default:
2486 llvm_unreachable("Unexpected division source");
2487 }
2488
Chris Lattner518b0372009-12-23 01:45:04 +00002489 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002490 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002491 }
Evan Cheng92e27972006-01-06 23:19:29 +00002492 }
Dan Gohmana1603612007-10-08 18:33:35 +00002493
Dan Gohman757eee82009-08-02 16:10:52 +00002494 if (foldedLoad) {
2495 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2496 InFlag };
2497 SDNode *CNode =
Michael Liaob53d8962013-04-19 22:22:57 +00002498 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman757eee82009-08-02 16:10:52 +00002499 InFlag = SDValue(CNode, 1);
2500 // Update the chain.
2501 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2502 } else {
2503 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002504 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002505 }
Evan Cheng92e27972006-01-06 23:19:29 +00002506
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002507 // Prevent use of AH in a REX instruction by referencing AX instead.
2508 // Shift it down 8 bits.
Jim Grosbach340b6da2013-07-09 02:07:28 +00002509 //
2510 // The current assumption of the register allocator is that isel
2511 // won't generate explicit references to the GPR8_NOREX registers. If
2512 // the allocator and/or the backend get enhanced to be more robust in
2513 // that regard, this can be, and should be, removed.
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002514 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2515 !SDValue(Node, 1).use_empty()) {
2516 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2517 X86::AX, MVT::i16, InFlag);
2518 InFlag = Result.getValue(2);
2519
2520 // If we also need AL (the quotient), get it by extracting a subreg from
2521 // Result. The fast register allocator does not like multiple CopyFromReg
2522 // nodes using aliasing registers.
2523 if (!SDValue(Node, 0).use_empty())
2524 ReplaceUses(SDValue(Node, 0),
2525 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2526
2527 // Shift AX right by 8 bits instead of using AH.
2528 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2529 Result,
2530 CurDAG->getTargetConstant(8, MVT::i8)),
2531 0);
2532 ReplaceUses(SDValue(Node, 1),
2533 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2534 }
Dan Gohman757eee82009-08-02 16:10:52 +00002535 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002536 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002537 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2538 LoReg, NVT, InFlag);
2539 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002540 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002541 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002542 }
2543 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002544 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002545 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2546 HiReg, NVT, InFlag);
2547 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002548 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002549 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002550 }
Craig Topper062a2ba2014-04-25 05:30:21 +00002551 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002552 }
2553
Manman Ren1be131b2012-08-08 00:51:41 +00002554 case X86ISD::CMP:
2555 case X86ISD::SUB: {
2556 // Sometimes a SUB is used to perform comparison.
2557 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2558 // This node is not a CMP.
2559 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002560 SDValue N0 = Node->getOperand(0);
2561 SDValue N1 = Node->getOperand(1);
2562
Elena Demikhovsky34d2d762014-08-18 11:59:06 +00002563 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2564 HasNoSignedComparisonUses(Node)) {
2565 // Look for (X86cmp (truncate $op, i1), 0) and try to convert to a
2566 // smaller encoding
2567 if (Opcode == X86ISD::CMP && N0.getValueType() == MVT::i1 &&
2568 X86::isZeroNode(N1)) {
2569 SDValue Reg = N0.getOperand(0);
2570 SDValue Imm = CurDAG->getTargetConstant(1, MVT::i8);
2571
2572 // Emit testb
2573 if (Reg.getScalarValueSizeInBits() > 8)
2574 Reg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Reg);
2575 // Emit a testb.
2576 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2577 Reg, Imm);
2578 ReplaceUses(SDValue(Node, 0), SDValue(NewNode, 0));
2579 return nullptr;
2580 }
2581
2582 N0 = N0.getOperand(0);
2583 }
Dan Gohmanac33a902009-08-19 18:16:17 +00002584 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2585 // use a smaller encoding.
Elena Demikhovsky34d2d762014-08-18 11:59:06 +00002586 // Look past the truncate if CMP is the only use of it.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002587 if ((N0.getNode()->getOpcode() == ISD::AND ||
2588 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2589 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002590 N0.getValueType() != MVT::i8 &&
2591 X86::isZeroNode(N1)) {
2592 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2593 if (!C) break;
2594
2595 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002596 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2597 (!(C->getZExtValue() & 0x80) ||
2598 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002599 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2600 SDValue Reg = N0.getNode()->getOperand(0);
2601
2602 // On x86-32, only the ABCD registers have 8-bit subregisters.
2603 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002604 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002605 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002606 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2607 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2608 default: llvm_unreachable("Unsupported TEST operand type!");
2609 }
2610 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002611 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2612 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002613 }
2614
2615 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002616 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002617 MVT::i8, Reg);
2618
2619 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002620 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2621 Subreg, Imm);
2622 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2623 // one, do not call ReplaceAllUsesWith.
2624 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2625 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002626 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002627 }
2628
2629 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002630 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2631 (!(C->getZExtValue() & 0x8000) ||
2632 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002633 // Shift the immediate right by 8 bits.
2634 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2635 MVT::i8);
2636 SDValue Reg = N0.getNode()->getOperand(0);
2637
2638 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002639 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002640 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002641 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2642 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2643 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2644 default: llvm_unreachable("Unsupported TEST operand type!");
2645 }
2646 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002647 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2648 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002649
2650 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002651 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002652 MVT::i8, Reg);
2653
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002654 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2655 // target GR8_NOREX registers, so make sure the register class is
2656 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002657 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2658 MVT::i32, Subreg, ShiftedImm);
2659 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2660 // one, do not call ReplaceAllUsesWith.
2661 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2662 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002663 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002664 }
2665
2666 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2667 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002668 N0.getValueType() != MVT::i16 &&
2669 (!(C->getZExtValue() & 0x8000) ||
2670 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002671 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2672 SDValue Reg = N0.getNode()->getOperand(0);
2673
2674 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002675 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002676 MVT::i16, Reg);
2677
2678 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002679 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2680 Subreg, Imm);
2681 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2682 // one, do not call ReplaceAllUsesWith.
2683 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2684 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002685 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002686 }
2687
2688 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2689 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002690 N0.getValueType() == MVT::i64 &&
2691 (!(C->getZExtValue() & 0x80000000) ||
2692 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002693 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2694 SDValue Reg = N0.getNode()->getOperand(0);
2695
2696 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002697 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002698 MVT::i32, Reg);
2699
2700 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002701 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2702 Subreg, Imm);
2703 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2704 // one, do not call ReplaceAllUsesWith.
2705 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2706 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002707 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002708 }
2709 }
2710 break;
2711 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002712 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002713 // Change a chain of {load; incr or dec; store} of the same value into
2714 // a simple increment or decrement through memory of that value, if the
2715 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002716 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002717 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002718 // {INC,DEC}X{64,32,16,8}.)
2719 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002720 // node in the pattern to the result node. probably with a new keyword
2721 // for example, we have this
2722 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2723 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2724 // (implicit EFLAGS)]>;
2725 // but maybe need something like this
2726 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2727 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2728 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002729
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002730 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002731 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002732 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002733
Craig Topper062a2ba2014-04-25 05:30:21 +00002734 LoadSDNode *LoadNode = nullptr;
Evan Cheng3e869f02012-04-12 19:14:21 +00002735 SDValue InputChain;
2736 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2737 LoadNode, InputChain))
2738 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002739
2740 SDValue Base, Scale, Index, Disp, Segment;
2741 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2742 Base, Scale, Index, Disp, Segment))
2743 break;
2744
2745 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2746 MemOp[0] = StoreNode->getMemOperand();
2747 MemOp[1] = LoadNode->getMemOperand();
2748 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002749 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002750 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2751 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002752 SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00002753 MVT::i32, MVT::Other, Ops);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002754 Result->setMemRefs(MemOp, MemOp + 2);
2755
2756 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2757 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2758
2759 return Result;
2760 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002761 }
2762
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002763 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002764
Chris Lattnerf98f1242010-03-02 06:34:30 +00002765 DEBUG(dbgs() << "=> ";
Craig Toppere73658d2014-04-28 04:05:08 +00002766 if (ResNode == nullptr || ResNode == Node)
Chris Lattnerf98f1242010-03-02 06:34:30 +00002767 Node->dump(CurDAG);
2768 else
2769 ResNode->dump(CurDAG);
2770 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002771
2772 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002773}
2774
Chris Lattnerba1ed582006-06-08 18:03:49 +00002775bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002776SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002777 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002778 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002779 switch (ConstraintCode) {
2780 case 'o': // offsetable ??
2781 case 'v': // not offsetable ??
2782 default: return true;
2783 case 'm': // memory
Craig Topper062a2ba2014-04-25 05:30:21 +00002784 if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002785 return true;
2786 break;
2787 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002788
Evan Cheng2d487222006-08-26 01:05:16 +00002789 OutOps.push_back(Op0);
2790 OutOps.push_back(Op1);
2791 OutOps.push_back(Op2);
2792 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002793 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002794 return false;
2795}
2796
Chad Rosier24c19d22012-08-01 18:39:17 +00002797/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002798/// X86-specific DAG, ready for instruction scheduling.
2799///
Bill Wendling026e5d72009-04-29 23:29:43 +00002800FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002801 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002802 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002803}