blob: 74386d33990ddacfdb15ca0536270608a78b1173 [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"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Instructions.h"
28#include "llvm/IR/Intrinsics.h"
29#include "llvm/IR/Type.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000030#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000031#include "llvm/Support/ErrorHandling.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000032#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000033#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Target/TargetMachine.h"
35#include "llvm/Target/TargetOptions.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000036using namespace llvm;
37
Chandler Carruth84e68b22014-04-22 02:41:26 +000038#define DEBUG_TYPE "x86-isel"
39
Chris Lattner1ef9cd42006-12-19 22:59:26 +000040STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
41
Chris Lattner655e7df2005-11-16 01:54:32 +000042//===----------------------------------------------------------------------===//
43// Pattern Matcher Implementation
44//===----------------------------------------------------------------------===//
45
46namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000047 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000048 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattner3f0f71b2005-11-19 02:11:08 +000049 /// tree.
50 struct X86ISelAddressMode {
51 enum {
52 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000053 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000054 } BaseType;
55
Dan Gohman0fd54fb2010-04-29 23:30:41 +000056 // This is really a union, discriminated by BaseType!
57 SDValue Base_Reg;
58 int Base_FrameIndex;
Chris Lattner3f0f71b2005-11-19 02:11:08 +000059
60 unsigned Scale;
Chad Rosier24c19d22012-08-01 18:39:17 +000061 SDValue IndexReg;
Dan Gohman059c4fa2008-11-11 15:52:29 +000062 int32_t Disp;
Rafael Espindola3b2df102009-04-08 21:14:34 +000063 SDValue Segment;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000064 const GlobalValue *GV;
65 const Constant *CP;
66 const BlockAddress *BlockAddr;
Evan Cheng11b0a5d2006-09-08 06:48:29 +000067 const char *ES;
68 int JT;
Evan Cheng77d86ff2006-02-25 10:09:08 +000069 unsigned Align; // CP alignment.
Chris Lattnerbd7e26d2009-06-26 05:51:45 +000070 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattner3f0f71b2005-11-19 02:11:08 +000071
72 X86ISelAddressMode()
Dan Gohman0fd54fb2010-04-29 23:30:41 +000073 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Craig Topper062a2ba2014-04-25 05:30:21 +000074 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
75 JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000076 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000077
78 bool hasSymbolicDisplacement() const {
Craig Topper062a2ba2014-04-25 05:30:21 +000079 return GV != nullptr || CP != nullptr || ES != nullptr ||
80 JT != -1 || BlockAddr != nullptr;
Dan Gohman4e3e3de2009-02-07 00:43:41 +000081 }
Chad Rosier24c19d22012-08-01 18:39:17 +000082
Chris Lattnerfea81da2009-06-27 04:16:01 +000083 bool hasBaseOrIndexReg() const {
Tim Northover97347a82013-09-19 11:33:53 +000084 return BaseType == FrameIndexBase ||
Craig Topper062a2ba2014-04-25 05:30:21 +000085 IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr;
Chris Lattnerfea81da2009-06-27 04:16:01 +000086 }
Chad Rosier24c19d22012-08-01 18:39:17 +000087
Chris Lattnerfea81da2009-06-27 04:16:01 +000088 /// isRIPRelative - Return true if this addressing mode is already RIP
89 /// relative.
90 bool isRIPRelative() const {
91 if (BaseType != RegBase) return false;
92 if (RegisterSDNode *RegNode =
Dan Gohman0fd54fb2010-04-29 23:30:41 +000093 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattnerfea81da2009-06-27 04:16:01 +000094 return RegNode->getReg() == X86::RIP;
95 return false;
96 }
Chad Rosier24c19d22012-08-01 18:39:17 +000097
Chris Lattnerfea81da2009-06-27 04:16:01 +000098 void setBaseReg(SDValue Reg) {
99 BaseType = RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000100 Base_Reg = Reg;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000101 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +0000102
Manman Ren19f49ac2012-09-11 22:23:19 +0000103#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesendafdbf72008-08-11 23:46:25 +0000104 void dump() {
David Greenedbdb1b22010-01-05 01:29:08 +0000105 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000106 dbgs() << "Base_Reg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000107 if (Base_Reg.getNode())
Chad Rosier24c19d22012-08-01 18:39:17 +0000108 Base_Reg.getNode()->dump();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000109 else
David Greenedbdb1b22010-01-05 01:29:08 +0000110 dbgs() << "nul";
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000111 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000112 << " Scale" << Scale << '\n'
113 << "IndexReg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000114 if (IndexReg.getNode())
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000115 IndexReg.getNode()->dump();
116 else
Chad Rosier24c19d22012-08-01 18:39:17 +0000117 dbgs() << "nul";
David Greenedbdb1b22010-01-05 01:29:08 +0000118 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000119 << "GV ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000120 if (GV)
121 GV->dump();
122 else
David Greenedbdb1b22010-01-05 01:29:08 +0000123 dbgs() << "nul";
124 dbgs() << " CP ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000125 if (CP)
126 CP->dump();
127 else
David Greenedbdb1b22010-01-05 01:29:08 +0000128 dbgs() << "nul";
129 dbgs() << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000130 << "ES ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000131 if (ES)
David Greenedbdb1b22010-01-05 01:29:08 +0000132 dbgs() << ES;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000133 else
David Greenedbdb1b22010-01-05 01:29:08 +0000134 dbgs() << "nul";
135 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesendafdbf72008-08-11 23:46:25 +0000136 }
Manman Ren742534c2012-09-06 19:06:06 +0000137#endif
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000138 };
139}
140
141namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +0000142 //===--------------------------------------------------------------------===//
143 /// ISel - X86 specific code to select X86 machine instructions for
144 /// SelectionDAG operations.
145 ///
Craig Topper26eec092014-03-31 06:22:15 +0000146 class X86DAGToDAGISel final : public SelectionDAGISel {
Chris Lattner655e7df2005-11-16 01:54:32 +0000147 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
148 /// make the right decision when generating code for different targets.
149 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +0000150
Evan Cheng7d6fa972008-09-26 23:41:32 +0000151 /// OptForSize - If true, selector should try to optimize for code size
152 /// instead of performance.
153 bool OptForSize;
154
Chris Lattner655e7df2005-11-16 01:54:32 +0000155 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000156 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendling084669a2009-04-29 00:15:41 +0000157 : SelectionDAGISel(tm, OptLevel),
Dan Gohman4751bb92009-06-03 20:20:00 +0000158 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel1b76f2c2008-10-01 23:18:38 +0000159 OptForSize(false) {}
Chris Lattner655e7df2005-11-16 01:54:32 +0000160
Craig Topper2d9361e2014-03-09 07:44:38 +0000161 const char *getPassName() const override {
Chris Lattner655e7df2005-11-16 01:54:32 +0000162 return "X86 DAG->DAG Instruction Selection";
163 }
164
Eric Christopher4f09c592014-05-22 01:53:26 +0000165 bool runOnMachineFunction(MachineFunction &MF) override {
166 // Reset the subtarget each time through.
167 Subtarget = &TM.getSubtarget<X86Subtarget>();
168 SelectionDAGISel::runOnMachineFunction(MF);
169 return true;
170 }
171
Craig Topper2d9361e2014-03-09 07:44:38 +0000172 void EmitFunctionEntryCode() override;
Anton Korobeynikov90910742007-09-25 21:52:30 +0000173
Craig Topper2d9361e2014-03-09 07:44:38 +0000174 bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const override;
Evan Cheng5e73ff22010-02-15 19:41:07 +0000175
Craig Topper2d9361e2014-03-09 07:44:38 +0000176 void PreprocessISelDAG() override;
Chris Lattnerf98f1242010-03-02 06:34:30 +0000177
Jakob Stoklund Olesen08aede22010-09-03 00:35:18 +0000178 inline bool immSext8(SDNode *N) const {
179 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
180 }
181
182 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
183 // sign extended field.
184 inline bool i64immSExt32(SDNode *N) const {
185 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
186 return (int64_t)v == (int32_t)v;
187 }
188
Chris Lattner655e7df2005-11-16 01:54:32 +0000189// Include the pieces autogenerated from the target description.
190#include "X86GenDAGISel.inc"
191
192 private:
Craig Topper2d9361e2014-03-09 07:44:38 +0000193 SDNode *Select(SDNode *N) override;
Manman Rena0982042012-06-26 19:47:59 +0000194 SDNode *SelectGather(SDNode *N, unsigned Opc);
Dale Johannesen867d5492008-10-02 18:53:47 +0000195 SDNode *SelectAtomic64(SDNode *Node, 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 {
Dan Gohman4751bb92009-06-03 20:20:00 +0000300 return getTargetMachine().getInstrInfo();
301 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000302 };
303}
304
Evan Cheng72bb66a2006-08-08 00:31:00 +0000305
Evan Cheng5e73ff22010-02-15 19:41:07 +0000306bool
307X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000308 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000309
Evan Cheng5e73ff22010-02-15 19:41:07 +0000310 if (!N.hasOneUse())
311 return false;
312
313 if (N.getOpcode() != ISD::LOAD)
314 return true;
315
316 // If N is a load, do additional profitability checks.
317 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000318 switch (U->getOpcode()) {
319 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000320 case X86ISD::ADD:
321 case X86ISD::SUB:
322 case X86ISD::AND:
323 case X86ISD::XOR:
324 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000325 case ISD::ADD:
326 case ISD::ADDC:
327 case ISD::ADDE:
328 case ISD::AND:
329 case ISD::OR:
330 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000331 SDValue Op1 = U->getOperand(1);
332
Evan Cheng83bdb382008-11-27 00:49:46 +0000333 // If the other operand is a 8-bit immediate we should fold the immediate
334 // instead. This reduces code size.
335 // e.g.
336 // movl 4(%esp), %eax
337 // addl $4, %eax
338 // vs.
339 // movl $4, %eax
340 // addl 4(%esp), %eax
341 // The former is 2 bytes shorter. In case where the increment is 1, then
342 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000343 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000344 if (Imm->getAPIntValue().isSignedIntN(8))
345 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000346
347 // If the other operand is a TLS address, we should fold it instead.
348 // This produces
349 // movl %gs:0, %eax
350 // leal i@NTPOFF(%eax), %eax
351 // instead of
352 // movl $i@NTPOFF, %eax
353 // addl %gs:0, %eax
354 // if the block also has an access to a second TLS address this will save
355 // a load.
Alp Tokerf907b892013-12-05 05:44:44 +0000356 // FIXME: This is probably also true for non-TLS addresses.
Rafael Espindolabb834f02009-04-10 10:09:34 +0000357 if (Op1.getOpcode() == X86ISD::Wrapper) {
358 SDValue Val = Op1.getOperand(0);
359 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
360 return false;
361 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000362 }
363 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000364 }
365
366 return true;
367}
368
Evan Chengd703df62010-03-14 03:48:46 +0000369/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
370/// load's chain operand and move load below the call's chain operand.
371static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000372 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000373 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000374 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000375 if (Chain.getNode() == Load.getNode())
376 Ops.push_back(Load.getOperand(0));
377 else {
378 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000379 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000380 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
381 if (Chain.getOperand(i).getNode() == Load.getNode())
382 Ops.push_back(Load.getOperand(0));
383 else
384 Ops.push_back(Chain.getOperand(i));
385 SDValue NewChain =
Craig Topper48d114b2014-04-26 18:35:24 +0000386 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000387 Ops.clear();
388 Ops.push_back(NewChain);
389 }
Evan Chengd703df62010-03-14 03:48:46 +0000390 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
391 Ops.push_back(OrigChain.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000392 CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops);
Dan Gohman92c11ac2010-06-18 15:30:29 +0000393 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000394 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000395
Evan Cheng214156c2012-10-02 23:49:13 +0000396 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000397 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000398 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000399 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000400 Ops.push_back(Call.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000401 CurDAG->UpdateNodeOperands(Call.getNode(), Ops);
Evan Chengf00f1e52008-08-25 21:27:18 +0000402}
403
404/// isCalleeLoad - Return true if call address is a load and it can be
405/// moved below CALLSEQ_START and the chains leading up to the call.
406/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000407/// In the case of a tail call, there isn't a callseq node between the call
408/// chain and the load.
409static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000410 // The transformation is somewhat dangerous if the call's chain was glued to
411 // the call. After MoveBelowOrigChain the load is moved between the call and
412 // the chain, this can create a cycle if the load is not folded. So it is
413 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000414 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000415 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000416 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000417 if (!LD ||
418 LD->isVolatile() ||
419 LD->getAddressingMode() != ISD::UNINDEXED ||
420 LD->getExtensionType() != ISD::NON_EXTLOAD)
421 return false;
422
423 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000424 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000425 if (!Chain.hasOneUse())
426 return false;
427 Chain = Chain.getOperand(0);
428 }
Evan Chengd703df62010-03-14 03:48:46 +0000429
430 if (!Chain.getNumOperands())
431 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000432 // Since we are not checking for AA here, conservatively abort if the chain
433 // writes to memory. It's not safe to move the callee (a load) across a store.
434 if (isa<MemSDNode>(Chain.getNode()) &&
435 cast<MemSDNode>(Chain.getNode())->writeMem())
436 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000437 if (Chain.getOperand(0).getNode() == Callee.getNode())
438 return true;
439 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000440 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
441 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000442 return true;
443 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000444}
445
Chris Lattner8d637042010-03-02 23:12:51 +0000446void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000447 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000448 OptForSize = MF->getFunction()->getAttributes().
449 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000450
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000451 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
452 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000453 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000454
Evan Chengd703df62010-03-14 03:48:46 +0000455 if (OptLevel != CodeGenOpt::None &&
Michael Liao96b42602013-03-28 23:13:21 +0000456 // Only does this when target favors doesn't favor register indirect
457 // call.
458 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng847ad442012-10-05 01:48:22 +0000459 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000460 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000461 (Subtarget->is64Bit() ||
462 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000463 /// Also try moving call address load from outside callseq_start to just
464 /// before the call to allow it to be folded.
465 ///
466 /// [Load chain]
467 /// ^
468 /// |
469 /// [Load]
470 /// ^ ^
471 /// | |
472 /// / \--
473 /// / |
474 ///[CALLSEQ_START] |
475 /// ^ |
476 /// | |
477 /// [LOAD/C2Reg] |
478 /// | |
479 /// \ /
480 /// \ /
481 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000482 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000483 SDValue Chain = N->getOperand(0);
484 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000485 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000486 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000487 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000488 ++NumLoadMoved;
489 continue;
490 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000491
Chris Lattner8d637042010-03-02 23:12:51 +0000492 // Lower fpround and fpextend nodes that target the FP stack to be store and
493 // load to the stack. This is a gross hack. We would like to simply mark
494 // these as being illegal, but when we do that, legalize produces these when
495 // it expands calls, then expands these in the same legalize pass. We would
496 // like dag combine to be able to hack on these between the call expansion
497 // and the node legalization. As such this pass basically does "really
498 // late" legalization of these inline with the X86 isel pass.
499 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000500 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
501 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000502
Craig Topper83e042a2013-08-15 05:57:07 +0000503 MVT SrcVT = N->getOperand(0).getSimpleValueType();
504 MVT DstVT = N->getSimpleValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000505
506 // If any of the sources are vectors, no fp stack involved.
507 if (SrcVT.isVector() || DstVT.isVector())
508 continue;
509
510 // If the source and destination are SSE registers, then this is a legal
511 // conversion that should not be lowered.
Benjamin Kramer02ff1cd2013-06-27 11:07:42 +0000512 const X86TargetLowering *X86Lowering =
513 static_cast<const X86TargetLowering *>(getTargetLowering());
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000514 bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
515 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000516 if (SrcIsSSE && DstIsSSE)
517 continue;
518
Chris Lattnerd587e582008-03-09 07:05:32 +0000519 if (!SrcIsSSE && !DstIsSSE) {
520 // If this is an FPStack extension, it is a noop.
521 if (N->getOpcode() == ISD::FP_EXTEND)
522 continue;
523 // If this is a value-preserving FPStack truncation, it is a noop.
524 if (N->getConstantOperandVal(1))
525 continue;
526 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000527
Chris Lattnera91f77e2008-01-24 08:07:48 +0000528 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
529 // FPStack has extload and truncstore. SSE can fold direct loads into other
530 // operations. Based on this, decide what we want to do.
Craig Topper83e042a2013-08-15 05:57:07 +0000531 MVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000532 if (N->getOpcode() == ISD::FP_ROUND)
533 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
534 else
535 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000536
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000537 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000538 SDLoc dl(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000539
Chris Lattnera91f77e2008-01-24 08:07:48 +0000540 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000541 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000542 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000543 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000544 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000545 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000546 MachinePointerInfo(),
547 MemVT, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000548
549 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
550 // extload we created. This will cause general havok on the dag because
551 // anything below the conversion could be folded into other existing nodes.
552 // To avoid invalidating 'I', back it up to the convert node.
553 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000554 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000555
Chris Lattnera91f77e2008-01-24 08:07:48 +0000556 // Now that we did that, the node is dead. Increment the iterator to the
557 // next node to process, then delete N.
558 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000559 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000560 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000561}
562
Chris Lattner655e7df2005-11-16 01:54:32 +0000563
Anton Korobeynikov90910742007-09-25 21:52:30 +0000564/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
565/// the main function.
566void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
567 MachineFrameInfo *MFI) {
568 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000569 if (Subtarget->isTargetCygMing()) {
570 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000571 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000572 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000573 TII->get(CallOp)).addExternalSymbol("__main");
574 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000575}
576
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000577void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000578 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000579 if (const Function *Fn = MF->getFunction())
580 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
581 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000582}
583
Eli Friedman344ec792011-07-13 21:29:53 +0000584static bool isDispSafeForFrameIndex(int64_t Val) {
585 // On 64-bit platforms, we can run into an issue where a frame index
586 // includes a displacement that, when added to the explicit displacement,
587 // will overflow the displacement field. Assuming that the frame index
588 // displacement fits into a 31-bit integer (which is only slightly more
589 // aggressive than the current fundamental assumption that it fits into
590 // a 32-bit integer), a 31-bit disp should always be safe.
591 return isInt<31>(Val);
592}
593
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000594bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
595 X86ISelAddressMode &AM) {
596 int64_t Val = AM.Disp + Offset;
597 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000598 if (Subtarget->is64Bit()) {
599 if (!X86::isOffsetSuitableForCodeModel(Val, M,
600 AM.hasSymbolicDisplacement()))
601 return true;
602 // In addition to the checks required for a register base, check that
603 // we do not try to use an unsafe Disp with a frame index.
604 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
605 !isDispSafeForFrameIndex(Val))
606 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000607 }
Eli Friedman344ec792011-07-13 21:29:53 +0000608 AM.Disp = Val;
609 return false;
610
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000611}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000612
Chris Lattner8a236b62010-09-22 04:39:11 +0000613bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
614 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000615
Chris Lattner8a236b62010-09-22 04:39:11 +0000616 // load gs:0 -> GS segment register.
617 // load fs:0 -> FS segment register.
618 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000619 // This optimization is valid because the GNU TLS model defines that
620 // gs:0 (or fs:0 on X86-64) contains its own address.
621 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000622 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
Craig Topper062a2ba2014-04-25 05:30:21 +0000623 if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000624 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000625 switch (N->getPointerInfo().getAddrSpace()) {
626 case 256:
627 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
628 return false;
629 case 257:
630 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
631 return false;
632 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000633
Rafael Espindola3b2df102009-04-08 21:14:34 +0000634 return true;
635}
636
Chris Lattnerfea81da2009-06-27 04:16:01 +0000637/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
638/// into an addressing mode. These wrap things that will resolve down into a
639/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000640/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000641bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000642 // If the addressing mode already has a symbol as the displacement, we can
643 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000644 if (AM.hasSymbolicDisplacement())
645 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000646
647 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000648 CodeModel::Model M = TM.getCodeModel();
649
Chris Lattnerfea81da2009-06-27 04:16:01 +0000650 // Handle X86-64 rip-relative addresses. We check this before checking direct
651 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000652 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000653 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
654 // they cannot be folded into immediate fields.
655 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000656 (M == CodeModel::Small || M == CodeModel::Kernel)) {
657 // Base and index reg must be 0 in order to use %rip as base.
658 if (AM.hasBaseOrIndexReg())
659 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000660 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000661 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000662 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000663 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000664 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
665 AM = Backup;
666 return true;
667 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000668 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000669 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000670 AM.CP = CP->getConstVal();
671 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000672 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000673 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
674 AM = Backup;
675 return true;
676 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000677 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
678 AM.ES = S->getSymbol();
679 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000680 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000681 AM.JT = J->getIndex();
682 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000683 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
684 X86ISelAddressMode Backup = AM;
685 AM.BlockAddr = BA->getBlockAddress();
686 AM.SymbolFlags = BA->getTargetFlags();
687 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
688 AM = Backup;
689 return true;
690 }
691 } else
692 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000693
Chris Lattnerfea81da2009-06-27 04:16:01 +0000694 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000695 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000696 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000697 }
698
699 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000700 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
701 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000702 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000703 M == CodeModel::Small || M == CodeModel::Kernel) {
704 assert(N.getOpcode() != X86ISD::WrapperRIP &&
705 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000706 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
707 AM.GV = G->getGlobal();
708 AM.Disp += G->getOffset();
709 AM.SymbolFlags = G->getTargetFlags();
710 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
711 AM.CP = CP->getConstVal();
712 AM.Align = CP->getAlignment();
713 AM.Disp += CP->getOffset();
714 AM.SymbolFlags = CP->getTargetFlags();
715 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
716 AM.ES = S->getSymbol();
717 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000718 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000719 AM.JT = J->getIndex();
720 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000721 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
722 AM.BlockAddr = BA->getBlockAddress();
723 AM.Disp += BA->getOffset();
724 AM.SymbolFlags = BA->getTargetFlags();
725 } else
726 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000727 return false;
728 }
729
730 return true;
731}
732
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000733/// MatchAddress - Add the specified node to the specified addressing mode,
734/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000735/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000736bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000737 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000738 return true;
739
740 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
741 // a smaller encoding and avoids a scaled-index.
742 if (AM.Scale == 2 &&
743 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000744 AM.Base_Reg.getNode() == nullptr) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000745 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000746 AM.Scale = 1;
747 }
748
Dan Gohman05046082009-08-20 18:23:44 +0000749 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
750 // because it has a smaller encoding.
751 // TODO: Which other code models can use this?
752 if (TM.getCodeModel() == CodeModel::Small &&
753 Subtarget->is64Bit() &&
754 AM.Scale == 1 &&
755 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000756 AM.Base_Reg.getNode() == nullptr &&
757 AM.IndexReg.getNode() == nullptr &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000758 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000759 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000760 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000761
Dan Gohman824ab402009-07-22 23:26:55 +0000762 return false;
763}
764
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000765// Insert a node into the DAG at least before the Pos node's position. This
766// will reposition the node as needed, and will assign it a node ID that is <=
767// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
768// IDs! The selection DAG must no longer depend on their uniqueness when this
769// is used.
770static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
771 if (N.getNode()->getNodeId() == -1 ||
772 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
773 DAG.RepositionNode(Pos.getNode(), N.getNode());
774 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
775 }
776}
777
Chandler Carruth51d30762012-01-11 08:48:20 +0000778// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
779// allows us to convert the shift and and into an h-register extract and
780// a scaled index. Returns false if the simplification is performed.
781static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
782 uint64_t Mask,
783 SDValue Shift, SDValue X,
784 X86ISelAddressMode &AM) {
785 if (Shift.getOpcode() != ISD::SRL ||
786 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
787 !Shift.hasOneUse())
788 return true;
789
790 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
791 if (ScaleLog <= 0 || ScaleLog >= 4 ||
792 Mask != (0xffu << ScaleLog))
793 return true;
794
Craig Topper83e042a2013-08-15 05:57:07 +0000795 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000796 SDLoc DL(N);
Chandler Carruth51d30762012-01-11 08:48:20 +0000797 SDValue Eight = DAG.getConstant(8, MVT::i8);
798 SDValue NewMask = DAG.getConstant(0xff, VT);
799 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
800 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
801 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
802 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
803
Chandler Carrutheb21da02012-01-12 01:34:44 +0000804 // Insert the new nodes into the topological ordering. We must do this in
805 // a valid topological ordering as nothing is going to go back and re-sort
806 // these nodes. We continually insert before 'N' in sequence as this is
807 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
808 // hierarchy left to express.
809 InsertDAGNode(DAG, N, Eight);
810 InsertDAGNode(DAG, N, Srl);
811 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000812 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000813 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000814 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000815 DAG.ReplaceAllUsesWith(N, Shl);
816 AM.IndexReg = And;
817 AM.Scale = (1 << ScaleLog);
818 return false;
819}
820
Chandler Carruthaa01e662012-01-11 09:35:00 +0000821// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
822// allows us to fold the shift into this addressing mode. Returns false if the
823// transform succeeded.
824static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
825 uint64_t Mask,
826 SDValue Shift, SDValue X,
827 X86ISelAddressMode &AM) {
828 if (Shift.getOpcode() != ISD::SHL ||
829 !isa<ConstantSDNode>(Shift.getOperand(1)))
830 return true;
831
832 // Not likely to be profitable if either the AND or SHIFT node has more
833 // than one use (unless all uses are for address computation). Besides,
834 // isel mechanism requires their node ids to be reused.
835 if (!N.hasOneUse() || !Shift.hasOneUse())
836 return true;
837
838 // Verify that the shift amount is something we can fold.
839 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
840 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
841 return true;
842
Craig Topper83e042a2013-08-15 05:57:07 +0000843 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000844 SDLoc DL(N);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000845 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
846 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
847 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
848
Chandler Carrutheb21da02012-01-12 01:34:44 +0000849 // Insert the new nodes into the topological ordering. We must do this in
850 // a valid topological ordering as nothing is going to go back and re-sort
851 // these nodes. We continually insert before 'N' in sequence as this is
852 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
853 // hierarchy left to express.
854 InsertDAGNode(DAG, N, NewMask);
855 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000856 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000857 DAG.ReplaceAllUsesWith(N, NewShift);
858
859 AM.Scale = 1 << ShiftAmt;
860 AM.IndexReg = NewAnd;
861 return false;
862}
863
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000864// Implement some heroics to detect shifts of masked values where the mask can
865// be replaced by extending the shift and undoing that in the addressing mode
866// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
867// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
868// the addressing mode. This results in code such as:
869//
870// int f(short *y, int *lookup_table) {
871// ...
872// return *y + lookup_table[*y >> 11];
873// }
874//
875// Turning into:
876// movzwl (%rdi), %eax
877// movl %eax, %ecx
878// shrl $11, %ecx
879// addl (%rsi,%rcx,4), %eax
880//
881// Instead of:
882// movzwl (%rdi), %eax
883// movl %eax, %ecx
884// shrl $9, %ecx
885// andl $124, %rcx
886// addl (%rsi,%rcx), %eax
887//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000888// Note that this function assumes the mask is provided as a mask *after* the
889// value is shifted. The input chain may or may not match that, but computing
890// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000891static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000892 uint64_t Mask,
893 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000894 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000895 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
896 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000897 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000898
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000899 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000900 unsigned MaskLZ = countLeadingZeros(Mask);
901 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000902
903 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000904 // from the trailing zeros of the mask.
905 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000906
907 // There is nothing we can do here unless the mask is removing some bits.
908 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
909 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
910
911 // We also need to ensure that mask is a continuous run of bits.
912 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
913
914 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000915 // Also scale it down based on the size of the shift.
Craig Topper83e042a2013-08-15 05:57:07 +0000916 MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000917
918 // The final check is to ensure that any masked out high bits of X are
919 // already known to be zero. Otherwise, the mask has a semantic impact
920 // other than masking out a couple of low bits. Unfortunately, because of
921 // the mask, zero extensions will be removed from operands in some cases.
922 // This code works extra hard to look through extensions because we can
923 // replace them with zero extensions cheaply if necessary.
924 bool ReplacingAnyExtend = false;
925 if (X.getOpcode() == ISD::ANY_EXTEND) {
Craig Topper83e042a2013-08-15 05:57:07 +0000926 unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
927 X.getOperand(0).getSimpleValueType().getSizeInBits();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000928 // Assume that we'll replace the any-extend with a zero-extend, and
929 // narrow the search to the extended value.
930 X = X.getOperand(0);
931 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
932 ReplacingAnyExtend = true;
933 }
Craig Topper83e042a2013-08-15 05:57:07 +0000934 APInt MaskedHighBits =
935 APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000936 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000937 DAG.computeKnownBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000938 if (MaskedHighBits != KnownZero) return true;
939
940 // We've identified a pattern that can be transformed into a single shift
941 // and an addressing mode. Make it so.
Craig Topper83e042a2013-08-15 05:57:07 +0000942 MVT VT = N.getSimpleValueType();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000943 if (ReplacingAnyExtend) {
944 assert(X.getValueType() != VT);
945 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000946 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000947 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000948 X = NewX;
949 }
Andrew Trickef9de2a2013-05-25 02:42:55 +0000950 SDLoc DL(N);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000951 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
952 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
953 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
954 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000955
956 // Insert the new nodes into the topological ordering. We must do this in
957 // a valid topological ordering as nothing is going to go back and re-sort
958 // these nodes. We continually insert before 'N' in sequence as this is
959 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
960 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000961 InsertDAGNode(DAG, N, NewSRLAmt);
962 InsertDAGNode(DAG, N, NewSRL);
963 InsertDAGNode(DAG, N, NewSHLAmt);
964 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000965 DAG.ReplaceAllUsesWith(N, NewSHL);
966
967 AM.Scale = 1 << AMShiftAmt;
968 AM.IndexReg = NewSRL;
969 return false;
970}
971
Dan Gohman824ab402009-07-22 23:26:55 +0000972bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
973 unsigned Depth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000974 SDLoc dl(N);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000975 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000976 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000977 AM.dump();
978 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000979 // Limit recursion.
980 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000981 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000982
Chris Lattnerfea81da2009-06-27 04:16:01 +0000983 // If this is already a %rip relative address, we can only merge immediates
984 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000985 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000986 if (AM.isRIPRelative()) {
987 // FIXME: JumpTable and ExternalSymbol address currently don't like
988 // displacements. It isn't very important, but this should be fixed for
989 // consistency.
990 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000991
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000992 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
993 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000994 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000995 return true;
996 }
997
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000998 switch (N.getOpcode()) {
999 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001000 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +00001001 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001002 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001003 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001004 break;
1005 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001006
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001007 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001008 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001009 if (!MatchWrapper(N, AM))
1010 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001011 break;
1012
Rafael Espindola3b2df102009-04-08 21:14:34 +00001013 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001014 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001015 return false;
1016 break;
1017
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001018 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001019 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001020 AM.Base_Reg.getNode() == nullptr &&
Eli Friedman344ec792011-07-13 21:29:53 +00001021 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001022 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001023 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001024 return false;
1025 }
1026 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001027
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001028 case ISD::SHL:
Craig Topper062a2ba2014-04-25 05:30:21 +00001029 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001030 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001031
Gabor Greif81d6a382008-08-31 15:37:04 +00001032 if (ConstantSDNode
1033 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001034 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001035 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1036 // that the base operand remains free for further matching. If
1037 // the base doesn't end up getting used, a post-processing step
1038 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001039 if (Val == 1 || Val == 2 || Val == 3) {
1040 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001041 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001042
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001043 // Okay, we know that we have a scale by now. However, if the scaled
1044 // value is an add of something and a constant, we can fold the
1045 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001046 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001047 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001048 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001049 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001050 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001051 if (!FoldOffsetIntoAddress(Disp, AM))
1052 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001053 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001054
1055 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001056 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001057 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001058 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001059 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001060
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001061 case ISD::SRL: {
1062 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001063 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001064
1065 SDValue And = N.getOperand(0);
1066 if (And.getOpcode() != ISD::AND) break;
1067 SDValue X = And.getOperand(0);
1068
1069 // We only handle up to 64-bit values here as those are what matter for
1070 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001071 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001072
1073 // The mask used for the transform is expected to be post-shift, but we
1074 // found the shift first so just apply the shift to the mask before passing
1075 // it down.
1076 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1077 !isa<ConstantSDNode>(And.getOperand(1)))
1078 break;
1079 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1080
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001081 // Try to fold the mask and shift into the scale, and return false if we
1082 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001083 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001084 return false;
1085 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001086 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001087
Dan Gohmanbf474952007-10-22 20:22:24 +00001088 case ISD::SMUL_LOHI:
1089 case ISD::UMUL_LOHI:
1090 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001091 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001092 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001093 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001094 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001095 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001096 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001097 AM.Base_Reg.getNode() == nullptr &&
1098 AM.IndexReg.getNode() == nullptr) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001099 if (ConstantSDNode
1100 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001101 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1102 CN->getZExtValue() == 9) {
1103 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001104
Gabor Greiff304a7a2008-08-28 21:40:38 +00001105 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001106 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001107
1108 // Okay, we know that we have a scale by now. However, if the scaled
1109 // value is an add of something and a constant, we can fold the
1110 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001111 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1112 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1113 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001114 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001115 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001116 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1117 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001118 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001119 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001120 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001121 }
1122
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001123 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001124 return false;
1125 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001126 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001127 break;
1128
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001129 case ISD::SUB: {
1130 // Given A-B, if A can be completely folded into the address and
1131 // the index field with the index field unused, use -B as the index.
1132 // This is a win if a has multiple parts that can be folded into
1133 // the address. Also, this saves a mov if the base register has
1134 // other uses, since it avoids a two-address sub instruction, however
1135 // it costs an additional mov if the index register has other uses.
1136
Dan Gohman99ba4da2010-06-18 01:24:29 +00001137 // Add an artificial use to this node so that we can keep track of
1138 // it if it gets CSE'd with a different node.
1139 HandleSDNode Handle(N);
1140
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001141 // Test if the LHS of the sub can be folded.
1142 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001143 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001144 AM = Backup;
1145 break;
1146 }
1147 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001148 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001149 AM = Backup;
1150 break;
1151 }
Evan Cheng68333f52010-03-17 23:58:35 +00001152
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001153 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001154 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001155 // If the RHS involves a register with multiple uses, this
1156 // transformation incurs an extra mov, due to the neg instruction
1157 // clobbering its operand.
1158 if (!RHS.getNode()->hasOneUse() ||
1159 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1160 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1161 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1162 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001163 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001164 ++Cost;
1165 // If the base is a register with multiple uses, this
1166 // transformation may save a mov.
1167 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001168 AM.Base_Reg.getNode() &&
1169 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001170 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1171 --Cost;
1172 // If the folded LHS was interesting, this transformation saves
1173 // address arithmetic.
1174 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1175 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1176 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1177 --Cost;
1178 // If it doesn't look like it may be an overall win, don't do it.
1179 if (Cost >= 0) {
1180 AM = Backup;
1181 break;
1182 }
1183
1184 // Ok, the transformation is legal and appears profitable. Go for it.
1185 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1186 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1187 AM.IndexReg = Neg;
1188 AM.Scale = 1;
1189
1190 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001191 InsertDAGNode(*CurDAG, N, Zero);
1192 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001193 return false;
1194 }
1195
Evan Chengbf38a5e2009-01-17 07:09:27 +00001196 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001197 // Add an artificial use to this node so that we can keep track of
1198 // it if it gets CSE'd with a different node.
1199 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001200
Evan Chengbf38a5e2009-01-17 07:09:27 +00001201 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001202 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1203 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001204 return false;
1205 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001206
Evan Cheng68333f52010-03-17 23:58:35 +00001207 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001208 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1209 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001210 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001211 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001212
1213 // If we couldn't fold both operands into the address at the same time,
1214 // see if we can just put each operand into a register and fold at least
1215 // the add.
1216 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001217 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001218 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001219 N = Handle.getValue();
1220 AM.Base_Reg = N.getOperand(0);
1221 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001222 AM.Scale = 1;
1223 return false;
1224 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001225 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001226 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001227 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001228
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001229 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001230 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001231 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001232 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001233 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001234
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001235 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001236 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001237 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001238 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001239 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001240 }
1241 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001242
Evan Cheng827d30d2007-12-13 00:43:27 +00001243 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001244 // Perform some heroic transforms on an and of a constant-count shift
1245 // with a constant to enable use of the scaled offset field.
1246
Evan Cheng827d30d2007-12-13 00:43:27 +00001247 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001248 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001249
Chandler Carruthaa01e662012-01-11 09:35:00 +00001250 SDValue Shift = N.getOperand(0);
1251 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001252 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001253
1254 // We only handle up to 64-bit values here as those are what matter for
1255 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001256 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthaa01e662012-01-11 09:35:00 +00001257
Chandler Carruthb0049f42012-01-11 09:35:04 +00001258 if (!isa<ConstantSDNode>(N.getOperand(1)))
1259 break;
1260 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001261
Chandler Carruth51d30762012-01-11 08:48:20 +00001262 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001263 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001264 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001265
Chandler Carruth51d30762012-01-11 08:48:20 +00001266 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001267 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001268 return false;
1269
Chandler Carruthaa01e662012-01-11 09:35:00 +00001270 // Try to swap the mask and shift to place shifts which can be done as
1271 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001272 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001273 return false;
1274 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001275 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001276 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001277
Rafael Espindola92773792009-03-31 16:16:57 +00001278 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001279}
1280
1281/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1282/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001283bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001284 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001285 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001286 // If so, check to see if the scale index register is set.
Craig Topper062a2ba2014-04-25 05:30:21 +00001287 if (!AM.IndexReg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001288 AM.IndexReg = N;
1289 AM.Scale = 1;
1290 return false;
1291 }
1292
1293 // Otherwise, we cannot select it.
1294 return true;
1295 }
1296
1297 // Default, generate it as a register.
1298 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001299 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001300 return false;
1301}
1302
Evan Chengc9fab312005-12-08 02:01:35 +00001303/// SelectAddr - returns true if it is able pattern match an addressing mode.
1304/// It returns the operands which make up the maximal addressing mode it can
1305/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001306///
1307/// Parent is the parent node of the addr operand that is being matched. It
1308/// is always a load, store, atomic node, or null. It is only null when
1309/// checking memory operands for inline asm nodes.
1310bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001311 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001312 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001313 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001314
Chris Lattner8a236b62010-09-22 04:39:11 +00001315 if (Parent &&
1316 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1317 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001318 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001319 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001320 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1321 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1322 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001323 unsigned AddrSpace =
1324 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1325 // AddrSpace 256 -> GS, 257 -> FS.
1326 if (AddrSpace == 256)
1327 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1328 if (AddrSpace == 257)
1329 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1330 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001331
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001332 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001333 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001334
Craig Topper83e042a2013-08-15 05:57:07 +00001335 MVT VT = N.getSimpleValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001336 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001337 if (!AM.Base_Reg.getNode())
1338 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001339 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001340
Gabor Greiff304a7a2008-08-28 21:40:38 +00001341 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001342 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001343
Rafael Espindola3b2df102009-04-08 21:14:34 +00001344 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001345 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001346}
1347
Chris Lattner398195e2006-10-07 21:55:32 +00001348/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1349/// match a load whose top elements are either undef or zeros. The load flavor
1350/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001351///
1352/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001353/// PatternChainNode: this is the matched node that has a chain input and
1354/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001355bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001356 SDValue N, SDValue &Base,
1357 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001358 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001359 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001360 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001361 PatternNodeWithChain = N.getOperand(0);
1362 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1363 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001364 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001365 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001366 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001367 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001368 return false;
1369 return true;
1370 }
1371 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001372
1373 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001374 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001375 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001376 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001377 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001378 N.getOperand(0).getNode()->hasOneUse() &&
1379 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001380 N.getOperand(0).getOperand(0).hasOneUse() &&
1381 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001382 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001383 // Okay, this is a zero extending load. Fold it.
1384 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001385 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001386 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001387 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001388 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001389 }
Chris Lattner398195e2006-10-07 21:55:32 +00001390 return false;
1391}
1392
1393
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001394bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1395 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1396 uint64_t ImmVal = CN->getZExtValue();
1397 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1398 return false;
1399
1400 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1401 return true;
1402 }
1403
1404 // In static codegen with small code model, we can get the address of a label
1405 // into a register with 'movl'. TableGen has already made sure we're looking
1406 // at a label of some kind.
Tim Northover6833e3f2013-06-10 20:43:49 +00001407 assert(N->getOpcode() == X86ISD::Wrapper &&
1408 "Unexpected node type for MOV32ri64");
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001409 N = N.getOperand(0);
1410
1411 if (N->getOpcode() != ISD::TargetConstantPool &&
1412 N->getOpcode() != ISD::TargetJumpTable &&
1413 N->getOpcode() != ISD::TargetGlobalAddress &&
1414 N->getOpcode() != ISD::TargetExternalSymbol &&
1415 N->getOpcode() != ISD::TargetBlockAddress)
1416 return false;
1417
1418 Imm = N;
1419 return TM.getCodeModel() == CodeModel::Small;
1420}
1421
Tim Northover6833e3f2013-06-10 20:43:49 +00001422bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1423 SDValue &Scale, SDValue &Index,
1424 SDValue &Disp, SDValue &Segment) {
1425 if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1426 return false;
1427
1428 SDLoc DL(N);
1429 RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1430 if (RN && RN->getReg() == 0)
1431 Base = CurDAG->getRegister(0, MVT::i64);
1432 else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(N)) {
1433 // Base could already be %rip, particularly in the x32 ABI.
1434 Base = SDValue(CurDAG->getMachineNode(
1435 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1436 CurDAG->getTargetConstant(0, MVT::i64),
1437 Base,
1438 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1439 0);
1440 }
1441
1442 RN = dyn_cast<RegisterSDNode>(Index);
1443 if (RN && RN->getReg() == 0)
1444 Index = CurDAG->getRegister(0, MVT::i64);
1445 else {
1446 assert(Index.getValueType() == MVT::i32 &&
1447 "Expect to be extending 32-bit registers for use in LEA");
1448 Index = SDValue(CurDAG->getMachineNode(
1449 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1450 CurDAG->getTargetConstant(0, MVT::i64),
1451 Index,
1452 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1453 0);
1454 }
1455
1456 return true;
1457}
1458
Evan Cheng77d86ff2006-02-25 10:09:08 +00001459/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1460/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001461bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001462 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001463 SDValue &Index, SDValue &Disp,
1464 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001465 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001466
1467 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1468 // segments.
1469 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001470 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001471 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001472 if (MatchAddress(N, AM))
1473 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001474 assert (T == AM.Segment);
1475 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001476
Craig Topper83e042a2013-08-15 05:57:07 +00001477 MVT VT = N.getSimpleValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001478 unsigned Complexity = 0;
1479 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001480 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001481 Complexity = 1;
1482 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001483 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001484 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1485 Complexity = 4;
1486
Gabor Greiff304a7a2008-08-28 21:40:38 +00001487 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001488 Complexity++;
1489 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001490 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001491
Chris Lattner3e1d9172007-03-20 06:08:29 +00001492 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1493 // a simple shift.
1494 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001495 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001496
1497 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1498 // to a LEA. This is determined with some expermentation but is by no means
1499 // optimal (especially for code size consideration). LEA is nice because of
1500 // its three-address nature. Tweak the cost function again when we can run
1501 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001502 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001503 // For X86-64, we should always use lea to materialize RIP relative
1504 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001505 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001506 Complexity = 4;
1507 else
1508 Complexity += 2;
1509 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001510
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001511 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001512 Complexity++;
1513
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001514 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001515 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001516 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001517
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001518 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1519 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001520}
1521
Chris Lattner7d2b0492009-06-20 20:38:48 +00001522/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001523bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001524 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001525 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001526 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1527 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001528
Chris Lattner7d2b0492009-06-20 20:38:48 +00001529 X86ISelAddressMode AM;
1530 AM.GV = GA->getGlobal();
1531 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001532 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001533 AM.SymbolFlags = GA->getTargetFlags();
1534
Owen Anderson9f944592009-08-11 20:47:22 +00001535 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001536 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001537 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001538 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001539 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001540 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001541
Chris Lattner7d2b0492009-06-20 20:38:48 +00001542 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1543 return true;
1544}
1545
1546
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001547bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001548 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001549 SDValue &Index, SDValue &Disp,
1550 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001551 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1552 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001553 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001554 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001555
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001556 return SelectAddr(N.getNode(),
1557 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001558}
1559
Dan Gohman24300732008-09-23 18:22:58 +00001560/// getGlobalBaseReg - Return an SDNode that returns the value of
1561/// the global base register. Output instructions required to
1562/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001563///
Evan Cheng61413a32006-08-26 05:34:46 +00001564SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001565 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Bill Wendlinga3cd3502013-06-19 21:36:55 +00001566 return CurDAG->getRegister(GlobalBaseReg,
1567 getTargetLowering()->getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001568}
1569
Dale Johannesen867d5492008-10-02 18:53:47 +00001570SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1571 SDValue Chain = Node->getOperand(0);
1572 SDValue In1 = Node->getOperand(1);
1573 SDValue In2L = Node->getOperand(2);
1574 SDValue In2H = Node->getOperand(3);
Michael Liao83725392012-09-19 19:36:58 +00001575
Rafael Espindola3b2df102009-04-08 21:14:34 +00001576 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001577 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Craig Topper062a2ba2014-04-25 05:30:21 +00001578 return nullptr;
Dan Gohman48b185d2009-09-25 20:36:54 +00001579 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1580 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1581 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00001582 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00001583 MVT::i32, MVT::i32, MVT::Other, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00001584 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1585 return ResNode;
Dale Johannesen867d5492008-10-02 18:53:47 +00001586}
Christopher Lambb372aba2007-08-10 21:48:46 +00001587
Michael Liao83725392012-09-19 19:36:58 +00001588/// Atomic opcode table
1589///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001590enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001591 ADD,
1592 SUB,
1593 INC,
1594 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001595 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001596 AND,
1597 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001598 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001599};
1600
1601enum AtomicSz {
1602 ConstantI8,
1603 I8,
1604 SextConstantI16,
1605 ConstantI16,
1606 I16,
1607 SextConstantI32,
1608 ConstantI32,
1609 I32,
1610 SextConstantI64,
1611 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001612 I64,
1613 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001614};
1615
Craig Topper2dac9622012-03-09 07:45:21 +00001616static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001617 {
Michael Liao83725392012-09-19 19:36:58 +00001618 X86::LOCK_ADD8mi,
1619 X86::LOCK_ADD8mr,
1620 X86::LOCK_ADD16mi8,
1621 X86::LOCK_ADD16mi,
1622 X86::LOCK_ADD16mr,
1623 X86::LOCK_ADD32mi8,
1624 X86::LOCK_ADD32mi,
1625 X86::LOCK_ADD32mr,
1626 X86::LOCK_ADD64mi8,
1627 X86::LOCK_ADD64mi32,
1628 X86::LOCK_ADD64mr,
1629 },
1630 {
1631 X86::LOCK_SUB8mi,
1632 X86::LOCK_SUB8mr,
1633 X86::LOCK_SUB16mi8,
1634 X86::LOCK_SUB16mi,
1635 X86::LOCK_SUB16mr,
1636 X86::LOCK_SUB32mi8,
1637 X86::LOCK_SUB32mi,
1638 X86::LOCK_SUB32mr,
1639 X86::LOCK_SUB64mi8,
1640 X86::LOCK_SUB64mi32,
1641 X86::LOCK_SUB64mr,
1642 },
1643 {
1644 0,
1645 X86::LOCK_INC8m,
1646 0,
1647 0,
1648 X86::LOCK_INC16m,
1649 0,
1650 0,
1651 X86::LOCK_INC32m,
1652 0,
1653 0,
1654 X86::LOCK_INC64m,
1655 },
1656 {
1657 0,
1658 X86::LOCK_DEC8m,
1659 0,
1660 0,
1661 X86::LOCK_DEC16m,
1662 0,
1663 0,
1664 X86::LOCK_DEC32m,
1665 0,
1666 0,
1667 X86::LOCK_DEC64m,
1668 },
1669 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001670 X86::LOCK_OR8mi,
1671 X86::LOCK_OR8mr,
1672 X86::LOCK_OR16mi8,
1673 X86::LOCK_OR16mi,
1674 X86::LOCK_OR16mr,
1675 X86::LOCK_OR32mi8,
1676 X86::LOCK_OR32mi,
1677 X86::LOCK_OR32mr,
1678 X86::LOCK_OR64mi8,
1679 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001680 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001681 },
1682 {
1683 X86::LOCK_AND8mi,
1684 X86::LOCK_AND8mr,
1685 X86::LOCK_AND16mi8,
1686 X86::LOCK_AND16mi,
1687 X86::LOCK_AND16mr,
1688 X86::LOCK_AND32mi8,
1689 X86::LOCK_AND32mi,
1690 X86::LOCK_AND32mr,
1691 X86::LOCK_AND64mi8,
1692 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001693 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001694 },
1695 {
1696 X86::LOCK_XOR8mi,
1697 X86::LOCK_XOR8mr,
1698 X86::LOCK_XOR16mi8,
1699 X86::LOCK_XOR16mi,
1700 X86::LOCK_XOR16mr,
1701 X86::LOCK_XOR32mi8,
1702 X86::LOCK_XOR32mi,
1703 X86::LOCK_XOR32mr,
1704 X86::LOCK_XOR64mi8,
1705 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001706 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001707 }
1708};
1709
Michael Liao83725392012-09-19 19:36:58 +00001710// Return the target constant operand for atomic-load-op and do simple
1711// translations, such as from atomic-load-add to lock-sub. The return value is
1712// one of the following 3 cases:
1713// + target-constant, the operand could be supported as a target constant.
1714// + empty, the operand is not needed any more with the new op selected.
1715// + non-empty, otherwise.
1716static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001717 SDLoc dl,
Craig Topper83e042a2013-08-15 05:57:07 +00001718 enum AtomicOpc &Op, MVT NVT,
Michael Liao83725392012-09-19 19:36:58 +00001719 SDValue Val) {
1720 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1721 int64_t CNVal = CN->getSExtValue();
1722 // Quit if not 32-bit imm.
1723 if ((int32_t)CNVal != CNVal)
1724 return Val;
1725 // For atomic-load-add, we could do some optimizations.
1726 if (Op == ADD) {
1727 // Translate to INC/DEC if ADD by 1 or -1.
1728 if ((CNVal == 1) || (CNVal == -1)) {
1729 Op = (CNVal == 1) ? INC : DEC;
1730 // No more constant operand after being translated into INC/DEC.
1731 return SDValue();
1732 }
1733 // Translate to SUB if ADD by negative value.
1734 if (CNVal < 0) {
1735 Op = SUB;
1736 CNVal = -CNVal;
1737 }
1738 }
1739 return CurDAG->getTargetConstant(CNVal, NVT);
1740 }
1741
1742 // If the value operand is single-used, try to optimize it.
1743 if (Op == ADD && Val.hasOneUse()) {
1744 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1745 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1746 Op = SUB;
1747 return Val.getOperand(1);
1748 }
1749 // A special case for i16, which needs truncating as, in most cases, it's
1750 // promoted to i32. We will translate
1751 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1752 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1753 Val.getOperand(0).getOpcode() == ISD::SUB &&
1754 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1755 Op = SUB;
1756 Val = Val.getOperand(0);
1757 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1758 Val.getOperand(1));
1759 }
1760 }
1761
1762 return Val;
1763}
1764
Craig Topper83e042a2013-08-15 05:57:07 +00001765SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001766 if (Node->hasAnyUseOfValue(0))
Craig Topper062a2ba2014-04-25 05:30:21 +00001767 return nullptr;
Chad Rosier24c19d22012-08-01 18:39:17 +00001768
Andrew Trickef9de2a2013-05-25 02:42:55 +00001769 SDLoc dl(Node);
Michael Liao83725392012-09-19 19:36:58 +00001770
Eric Christopher56a42eb2011-05-17 08:16:14 +00001771 // Optimize common patterns for __sync_or_and_fetch and similar arith
1772 // operations where the result is not used. This allows us to use the "lock"
1773 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001774 SDValue Chain = Node->getOperand(0);
1775 SDValue Ptr = Node->getOperand(1);
1776 SDValue Val = Node->getOperand(2);
1777 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1778 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Craig Topper062a2ba2014-04-25 05:30:21 +00001779 return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001780
Eric Christophera1d9e292011-05-17 08:10:18 +00001781 // Which index into the table.
1782 enum AtomicOpc Op;
1783 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001784 default:
Craig Topper062a2ba2014-04-25 05:30:21 +00001785 return nullptr;
Eric Christophera1d9e292011-05-17 08:10:18 +00001786 case ISD::ATOMIC_LOAD_OR:
1787 Op = OR;
1788 break;
1789 case ISD::ATOMIC_LOAD_AND:
1790 Op = AND;
1791 break;
1792 case ISD::ATOMIC_LOAD_XOR:
1793 Op = XOR;
1794 break;
Michael Liao83725392012-09-19 19:36:58 +00001795 case ISD::ATOMIC_LOAD_ADD:
1796 Op = ADD;
1797 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001798 }
Andrew Trick52b83872013-04-13 06:07:36 +00001799
Michael Liao83725392012-09-19 19:36:58 +00001800 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1801 bool isUnOp = !Val.getNode();
1802 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001803
Eric Christopher4a34e612011-05-10 23:57:45 +00001804 unsigned Opc = 0;
Craig Topper83e042a2013-08-15 05:57:07 +00001805 switch (NVT.SimpleTy) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001806 default: return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001807 case MVT::i8:
1808 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001809 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001810 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001811 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001812 break;
1813 case MVT::i16:
1814 if (isCN) {
1815 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001816 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001817 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001818 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001819 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001820 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001821 break;
1822 case MVT::i32:
1823 if (isCN) {
1824 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001825 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001826 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001827 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001828 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001829 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001830 break;
1831 case MVT::i64:
Eric Christopherc93217372011-06-30 00:48:30 +00001832 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001833 if (isCN) {
1834 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001835 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001836 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001837 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopherc93217372011-06-30 00:48:30 +00001838 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001839 break;
1840 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001841
Eric Christopherc93217372011-06-30 00:48:30 +00001842 assert(Opc != 0 && "Invalid arith lock transform!");
1843
Michael Liao83725392012-09-19 19:36:58 +00001844 SDValue Ret;
Eric Christopher4a34e612011-05-10 23:57:45 +00001845 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1846 dl, NVT), 0);
1847 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1848 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Michael Liao83725392012-09-19 19:36:58 +00001849 if (isUnOp) {
1850 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001851 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001852 } else {
1853 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001854 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001855 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001856 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1857 SDValue RetVals[] = { Undef, Ret };
Craig Topper64941d92014-04-27 19:20:57 +00001858 return CurDAG->getMergeValues(RetVals, dl).getNode();
Eric Christopher4a34e612011-05-10 23:57:45 +00001859}
1860
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001861/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1862/// any uses which require the SF or OF bits to be accurate.
1863static bool HasNoSignedComparisonUses(SDNode *N) {
1864 // Examine each user of the node.
1865 for (SDNode::use_iterator UI = N->use_begin(),
1866 UE = N->use_end(); UI != UE; ++UI) {
1867 // Only examine CopyToReg uses.
1868 if (UI->getOpcode() != ISD::CopyToReg)
1869 return false;
1870 // Only examine CopyToReg uses that copy to EFLAGS.
1871 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1872 X86::EFLAGS)
1873 return false;
1874 // Examine each user of the CopyToReg use.
1875 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1876 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1877 // Only examine the Flag result.
1878 if (FlagUI.getUse().getResNo() != 1) continue;
1879 // Anything unusual: assume conservatively.
1880 if (!FlagUI->isMachineOpcode()) return false;
1881 // Examine the opcode of the user.
1882 switch (FlagUI->getMachineOpcode()) {
1883 // These comparisons don't treat the most significant bit specially.
1884 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1885 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1886 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1887 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattner2b0a7a22010-02-11 19:25:55 +00001888 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1889 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001890 case X86::CMOVA16rr: case X86::CMOVA16rm:
1891 case X86::CMOVA32rr: case X86::CMOVA32rm:
1892 case X86::CMOVA64rr: case X86::CMOVA64rm:
1893 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1894 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1895 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1896 case X86::CMOVB16rr: case X86::CMOVB16rm:
1897 case X86::CMOVB32rr: case X86::CMOVB32rm:
1898 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001899 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1900 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1901 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001902 case X86::CMOVE16rr: case X86::CMOVE16rm:
1903 case X86::CMOVE32rr: case X86::CMOVE32rm:
1904 case X86::CMOVE64rr: case X86::CMOVE64rm:
1905 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1906 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1907 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1908 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1909 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1910 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1911 case X86::CMOVP16rr: case X86::CMOVP16rm:
1912 case X86::CMOVP32rr: case X86::CMOVP32rm:
1913 case X86::CMOVP64rr: case X86::CMOVP64rm:
1914 continue;
1915 // Anything else: assume conservatively.
1916 default: return false;
1917 }
1918 }
1919 }
1920 return true;
1921}
1922
Joel Jones68d59e82012-03-29 05:45:48 +00001923/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1924/// is suitable for doing the {load; increment or decrement; store} to modify
1925/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001926static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001927 SDValue StoredVal, SelectionDAG *CurDAG,
1928 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001929
1930 // is the value stored the result of a DEC or INC?
1931 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1932
Joel Jones68d59e82012-03-29 05:45:48 +00001933 // is the stored value result 0 of the load?
1934 if (StoredVal.getResNo() != 0) return false;
1935
1936 // are there other uses of the loaded value than the inc or dec?
1937 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1938
Joel Jones68d59e82012-03-29 05:45:48 +00001939 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001940 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001941 return false;
1942
Evan Cheng3e869f02012-04-12 19:14:21 +00001943 SDValue Load = StoredVal->getOperand(0);
1944 // Is the stored value a non-extending and non-indexed load?
1945 if (!ISD::isNormalLoad(Load.getNode())) return false;
1946
1947 // Return LoadNode by reference.
1948 LoadNode = cast<LoadSDNode>(Load);
1949 // 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 +00001950 EVT LdVT = LoadNode->getMemoryVT();
1951 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001952 LdVT != MVT::i8)
1953 return false;
1954
1955 // Is store the only read of the loaded value?
1956 if (!Load.hasOneUse())
1957 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001958
Evan Cheng3e869f02012-04-12 19:14:21 +00001959 // Is the address of the store the same as the load?
1960 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1961 LoadNode->getOffset() != StoreNode->getOffset())
1962 return false;
1963
1964 // Check if the chain is produced by the load or is a TokenFactor with
1965 // the load output chain as an operand. Return InputChain by reference.
1966 SDValue Chain = StoreNode->getChain();
1967
1968 bool ChainCheck = false;
1969 if (Chain == Load.getValue(1)) {
1970 ChainCheck = true;
1971 InputChain = LoadNode->getChain();
1972 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1973 SmallVector<SDValue, 4> ChainOps;
1974 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1975 SDValue Op = Chain.getOperand(i);
1976 if (Op == Load.getValue(1)) {
1977 ChainCheck = true;
1978 continue;
1979 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001980
1981 // Make sure using Op as part of the chain would not cause a cycle here.
1982 // In theory, we could check whether the chain node is a predecessor of
1983 // the load. But that can be very expensive. Instead visit the uses and
1984 // make sure they all have smaller node id than the load.
1985 int LoadId = LoadNode->getNodeId();
1986 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1987 UE = UI->use_end(); UI != UE; ++UI) {
1988 if (UI.getUse().getResNo() != 0)
1989 continue;
1990 if (UI->getNodeId() > LoadId)
1991 return false;
1992 }
1993
Evan Cheng3e869f02012-04-12 19:14:21 +00001994 ChainOps.push_back(Op);
1995 }
1996
1997 if (ChainCheck)
1998 // Make a new TokenFactor with all the other input chains except
1999 // for the load.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002000 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Craig Topper48d114b2014-04-26 18:35:24 +00002001 MVT::Other, ChainOps);
Evan Cheng3e869f02012-04-12 19:14:21 +00002002 }
2003 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00002004 return false;
2005
2006 return true;
2007}
2008
Benjamin Kramer8619c372012-03-29 12:37:26 +00002009/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2010/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00002011static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2012 if (Opc == X86ISD::DEC) {
2013 if (LdVT == MVT::i64) return X86::DEC64m;
2014 if (LdVT == MVT::i32) return X86::DEC32m;
2015 if (LdVT == MVT::i16) return X86::DEC16m;
2016 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00002017 } else {
2018 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00002019 if (LdVT == MVT::i64) return X86::INC64m;
2020 if (LdVT == MVT::i32) return X86::INC32m;
2021 if (LdVT == MVT::i16) return X86::INC16m;
2022 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00002023 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00002024 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00002025}
2026
Manman Rena0982042012-06-26 19:47:59 +00002027/// SelectGather - Customized ISel for GATHER operations.
2028///
2029SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2030 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2031 SDValue Chain = Node->getOperand(0);
2032 SDValue VSrc = Node->getOperand(2);
2033 SDValue Base = Node->getOperand(3);
2034 SDValue VIdx = Node->getOperand(4);
2035 SDValue VMask = Node->getOperand(5);
2036 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00002037 if (!Scale)
Craig Topper062a2ba2014-04-25 05:30:21 +00002038 return nullptr;
Manman Rena0982042012-06-26 19:47:59 +00002039
Craig Topperf7755df2012-07-12 06:52:41 +00002040 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2041 MVT::Other);
2042
Manman Rena0982042012-06-26 19:47:59 +00002043 // Memory Operands: Base, Scale, Index, Disp, Segment
2044 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
2045 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2046 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
2047 Disp, Segment, VMask, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00002048 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topperf7755df2012-07-12 06:52:41 +00002049 // Node has 2 outputs: VDst and MVT::Other.
2050 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2051 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2052 // of ResNode.
2053 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2054 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00002055 return ResNode;
2056}
2057
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002058SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Craig Topper83e042a2013-08-15 05:57:07 +00002059 MVT NVT = Node->getSimpleValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00002060 unsigned Opc, MOpc;
2061 unsigned Opcode = Node->getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002062 SDLoc dl(Node);
Chad Rosier24c19d22012-08-01 18:39:17 +00002063
Chris Lattnerf98f1242010-03-02 06:34:30 +00002064 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00002065
Dan Gohman17059682008-07-17 19:10:17 +00002066 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00002067 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Tim Northover31d093c2013-09-22 08:21:56 +00002068 Node->setNodeId(-1);
Craig Topper062a2ba2014-04-25 05:30:21 +00002069 return nullptr; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00002070 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00002071
Evan Cheng10d27902006-01-06 20:36:21 +00002072 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00002073 default: break;
Manman Rena0982042012-06-26 19:47:59 +00002074 case ISD::INTRINSIC_W_CHAIN: {
2075 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2076 switch (IntNo) {
2077 default: break;
2078 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002079 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002080 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002081 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002082 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002083 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002084 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002085 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002086 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002087 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002088 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002089 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002090 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002091 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002092 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002093 case Intrinsic::x86_avx2_gather_q_d_256: {
Michael Liao00b20cc2013-06-05 18:12:26 +00002094 if (!Subtarget->hasAVX2())
2095 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002096 unsigned Opc;
2097 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002098 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002099 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2100 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2101 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2102 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2103 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2104 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2105 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2106 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2107 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2108 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2109 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2110 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2111 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2112 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2113 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2114 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2115 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002116 SDNode *RetVal = SelectGather(Node, Opc);
2117 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002118 // We already called ReplaceUses inside SelectGather.
Craig Topper062a2ba2014-04-25 05:30:21 +00002119 return nullptr;
Craig Toppere15e5f72012-07-01 02:18:18 +00002120 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002121 }
Manman Rena0982042012-06-26 19:47:59 +00002122 }
2123 break;
2124 }
Dan Gohman757eee82009-08-02 16:10:52 +00002125 case X86ISD::GlobalBaseReg:
2126 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002127
Craig Topper3af251d2012-07-01 02:55:34 +00002128
Dan Gohman757eee82009-08-02 16:10:52 +00002129 case X86ISD::ATOMOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002130 case X86ISD::ATOMXOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002131 case X86ISD::ATOMADD64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002132 case X86ISD::ATOMSUB64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002133 case X86ISD::ATOMNAND64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002134 case X86ISD::ATOMAND64_DAG:
Michael Liaode51caf2012-09-25 18:08:13 +00002135 case X86ISD::ATOMMAX64_DAG:
2136 case X86ISD::ATOMMIN64_DAG:
2137 case X86ISD::ATOMUMAX64_DAG:
2138 case X86ISD::ATOMUMIN64_DAG:
Craig Topper3af251d2012-07-01 02:55:34 +00002139 case X86ISD::ATOMSWAP64_DAG: {
2140 unsigned Opc;
2141 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002142 default: llvm_unreachable("Impossible opcode");
Craig Topper3af251d2012-07-01 02:55:34 +00002143 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2144 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2145 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2146 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2147 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2148 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
Michael Liaode51caf2012-09-25 18:08:13 +00002149 case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break;
2150 case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break;
2151 case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break;
2152 case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break;
Craig Topper3af251d2012-07-01 02:55:34 +00002153 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2154 }
2155 SDNode *RetVal = SelectAtomic64(Node, Opc);
2156 if (RetVal)
2157 return RetVal;
2158 break;
2159 }
Dale Johannesen867d5492008-10-02 18:53:47 +00002160
Eric Christophera1d9e292011-05-17 08:10:18 +00002161 case ISD::ATOMIC_LOAD_XOR:
2162 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002163 case ISD::ATOMIC_LOAD_OR:
2164 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002165 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002166 if (RetVal)
2167 return RetVal;
2168 break;
2169 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002170 case ISD::AND:
2171 case ISD::OR:
2172 case ISD::XOR: {
2173 // For operations of the form (x << C1) op C2, check if we can use a smaller
2174 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2175 SDValue N0 = Node->getOperand(0);
2176 SDValue N1 = Node->getOperand(1);
2177
2178 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2179 break;
2180
2181 // i8 is unshrinkable, i16 should be promoted to i32.
2182 if (NVT != MVT::i32 && NVT != MVT::i64)
2183 break;
2184
2185 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2186 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2187 if (!Cst || !ShlCst)
2188 break;
2189
2190 int64_t Val = Cst->getSExtValue();
2191 uint64_t ShlVal = ShlCst->getZExtValue();
2192
2193 // Make sure that we don't change the operation by removing bits.
2194 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002195 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2196 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002197 break;
2198
Craig Topper22cb0c52012-08-11 17:44:14 +00002199 unsigned ShlOp, Op;
Craig Topper83e042a2013-08-15 05:57:07 +00002200 MVT CstVT = NVT;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002201
2202 // Check the minimum bitwidth for the new constant.
2203 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2204 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2205 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2206 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2207 CstVT = MVT::i8;
2208 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2209 CstVT = MVT::i32;
2210
2211 // Bail if there is no smaller encoding.
2212 if (NVT == CstVT)
2213 break;
2214
Craig Topper83e042a2013-08-15 05:57:07 +00002215 switch (NVT.SimpleTy) {
Benjamin Kramer4c816242011-04-22 15:30:40 +00002216 default: llvm_unreachable("Unsupported VT!");
2217 case MVT::i32:
2218 assert(CstVT == MVT::i8);
2219 ShlOp = X86::SHL32ri;
2220
2221 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002222 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002223 case ISD::AND: Op = X86::AND32ri8; break;
2224 case ISD::OR: Op = X86::OR32ri8; break;
2225 case ISD::XOR: Op = X86::XOR32ri8; break;
2226 }
2227 break;
2228 case MVT::i64:
2229 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2230 ShlOp = X86::SHL64ri;
2231
2232 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002233 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002234 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2235 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2236 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2237 }
2238 break;
2239 }
2240
2241 // Emit the smaller op and the shift.
2242 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2243 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2244 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2245 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002246 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002247 case X86ISD::UMUL: {
2248 SDValue N0 = Node->getOperand(0);
2249 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002250
Ted Kremenekb5241b22011-01-14 22:34:13 +00002251 unsigned LoReg;
Craig Topper83e042a2013-08-15 05:57:07 +00002252 switch (NVT.SimpleTy) {
Chris Lattner364bb0a2010-12-05 07:30:36 +00002253 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002254 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2255 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2256 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2257 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002258 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002259
Chris Lattner364bb0a2010-12-05 07:30:36 +00002260 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2261 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002262
Chris Lattner364bb0a2010-12-05 07:30:36 +00002263 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2264 SDValue Ops[] = {N1, InFlag};
Michael Liaob53d8962013-04-19 22:22:57 +00002265 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosier24c19d22012-08-01 18:39:17 +00002266
Chris Lattner364bb0a2010-12-05 07:30:36 +00002267 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2268 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2269 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
Craig Topper062a2ba2014-04-25 05:30:21 +00002270 return nullptr;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002271 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002272
Dan Gohman757eee82009-08-02 16:10:52 +00002273 case ISD::SMUL_LOHI:
2274 case ISD::UMUL_LOHI: {
2275 SDValue N0 = Node->getOperand(0);
2276 SDValue N1 = Node->getOperand(1);
2277
2278 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002279 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002280 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002281 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002282 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002283 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2284 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002285 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2286 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2287 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2288 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002289 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002290 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002291 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002292 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002293 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2294 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2295 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2296 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002297 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002298 }
Dan Gohman757eee82009-08-02 16:10:52 +00002299
Michael Liaof9f7b552012-09-26 08:22:37 +00002300 unsigned SrcReg, LoReg, HiReg;
2301 switch (Opc) {
2302 default: llvm_unreachable("Unknown MUL opcode!");
2303 case X86::IMUL8r:
2304 case X86::MUL8r:
2305 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2306 break;
2307 case X86::IMUL16r:
2308 case X86::MUL16r:
2309 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2310 break;
2311 case X86::IMUL32r:
2312 case X86::MUL32r:
2313 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2314 break;
2315 case X86::IMUL64r:
2316 case X86::MUL64r:
2317 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2318 break;
2319 case X86::MULX32rr:
2320 SrcReg = X86::EDX; LoReg = HiReg = 0;
2321 break;
2322 case X86::MULX64rr:
2323 SrcReg = X86::RDX; LoReg = HiReg = 0;
2324 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002325 }
2326
2327 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002328 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002329 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002330 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002331 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002332 if (foldedLoad)
2333 std::swap(N0, N1);
2334 }
2335
Michael Liaof9f7b552012-09-26 08:22:37 +00002336 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002337 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002338 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002339
2340 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002341 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002342 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2343 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002344 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2345 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002346 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002347 ResHi = SDValue(CNode, 0);
2348 ResLo = SDValue(CNode, 1);
2349 Chain = SDValue(CNode, 2);
2350 InFlag = SDValue(CNode, 3);
2351 } else {
2352 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002353 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002354 Chain = SDValue(CNode, 0);
2355 InFlag = SDValue(CNode, 1);
2356 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002357
Dan Gohman757eee82009-08-02 16:10:52 +00002358 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002359 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002360 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002361 SDValue Ops[] = { N1, InFlag };
2362 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2363 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002364 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002365 ResHi = SDValue(CNode, 0);
2366 ResLo = SDValue(CNode, 1);
2367 InFlag = SDValue(CNode, 2);
2368 } else {
2369 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002370 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002371 InFlag = SDValue(CNode, 0);
2372 }
Dan Gohman757eee82009-08-02 16:10:52 +00002373 }
2374
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002375 // Prevent use of AH in a REX instruction by referencing AX instead.
2376 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2377 !SDValue(Node, 1).use_empty()) {
2378 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2379 X86::AX, MVT::i16, InFlag);
2380 InFlag = Result.getValue(2);
2381 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2382 // registers.
2383 if (!SDValue(Node, 0).use_empty())
2384 ReplaceUses(SDValue(Node, 1),
2385 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2386
2387 // Shift AX down 8 bits.
2388 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2389 Result,
2390 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2391 // Then truncate it down to i8.
2392 ReplaceUses(SDValue(Node, 1),
2393 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2394 }
Dan Gohman757eee82009-08-02 16:10:52 +00002395 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002396 if (!SDValue(Node, 0).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002397 if (!ResLo.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002398 assert(LoReg && "Register for low half is not defined!");
2399 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2400 InFlag);
2401 InFlag = ResLo.getValue(2);
2402 }
2403 ReplaceUses(SDValue(Node, 0), ResLo);
2404 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002405 }
2406 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002407 if (!SDValue(Node, 1).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002408 if (!ResHi.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002409 assert(HiReg && "Register for high half is not defined!");
2410 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2411 InFlag);
2412 InFlag = ResHi.getValue(2);
2413 }
2414 ReplaceUses(SDValue(Node, 1), ResHi);
2415 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002416 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002417
Craig Topper062a2ba2014-04-25 05:30:21 +00002418 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002419 }
2420
2421 case ISD::SDIVREM:
2422 case ISD::UDIVREM: {
2423 SDValue N0 = Node->getOperand(0);
2424 SDValue N1 = Node->getOperand(1);
2425
2426 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002427 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002428 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002429 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002430 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2431 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2432 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2433 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002434 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002435 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002436 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002437 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002438 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2439 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2440 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2441 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002442 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002443 }
Dan Gohman757eee82009-08-02 16:10:52 +00002444
Chris Lattner518b0372009-12-23 01:45:04 +00002445 unsigned LoReg, HiReg, ClrReg;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002446 unsigned SExtOpcode;
Craig Topper83e042a2013-08-15 05:57:07 +00002447 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002448 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002449 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002450 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002451 SExtOpcode = X86::CBW;
2452 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002453 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002454 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002455 ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002456 SExtOpcode = X86::CWD;
2457 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002458 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002459 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002460 SExtOpcode = X86::CDQ;
2461 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002462 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002463 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002464 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002465 break;
2466 }
2467
Dan Gohman757eee82009-08-02 16:10:52 +00002468 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002469 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002470 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002471
Dan Gohman757eee82009-08-02 16:10:52 +00002472 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002473 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002474 // Special case for div8, just use a move with zero extension to AX to
2475 // clear the upper 8 bits (AH).
2476 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002477 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002478 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2479 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002480 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +00002481 MVT::Other, Ops), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002482 Chain = Move.getValue(1);
2483 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002484 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002485 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002486 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002487 Chain = CurDAG->getEntryNode();
2488 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002489 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002490 InFlag = Chain.getValue(1);
2491 } else {
2492 InFlag =
2493 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2494 LoReg, N0, SDValue()).getValue(1);
2495 if (isSigned && !signBitIsZero) {
2496 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002497 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002498 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002499 } else {
2500 // Zero out the high part, effectively zero extending the input.
Tim Northover64ec0ff2013-05-30 13:19:42 +00002501 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
Craig Topper83e042a2013-08-15 05:57:07 +00002502 switch (NVT.SimpleTy) {
Tim Northover64ec0ff2013-05-30 13:19:42 +00002503 case MVT::i16:
2504 ClrNode =
2505 SDValue(CurDAG->getMachineNode(
2506 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2507 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2508 0);
2509 break;
2510 case MVT::i32:
2511 break;
2512 case MVT::i64:
2513 ClrNode =
2514 SDValue(CurDAG->getMachineNode(
2515 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2516 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2517 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2518 0);
2519 break;
2520 default:
2521 llvm_unreachable("Unexpected division source");
2522 }
2523
Chris Lattner518b0372009-12-23 01:45:04 +00002524 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002525 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002526 }
Evan Cheng92e27972006-01-06 23:19:29 +00002527 }
Dan Gohmana1603612007-10-08 18:33:35 +00002528
Dan Gohman757eee82009-08-02 16:10:52 +00002529 if (foldedLoad) {
2530 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2531 InFlag };
2532 SDNode *CNode =
Michael Liaob53d8962013-04-19 22:22:57 +00002533 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman757eee82009-08-02 16:10:52 +00002534 InFlag = SDValue(CNode, 1);
2535 // Update the chain.
2536 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2537 } else {
2538 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002539 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002540 }
Evan Cheng92e27972006-01-06 23:19:29 +00002541
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002542 // Prevent use of AH in a REX instruction by referencing AX instead.
2543 // Shift it down 8 bits.
Jim Grosbach340b6da2013-07-09 02:07:28 +00002544 //
2545 // The current assumption of the register allocator is that isel
2546 // won't generate explicit references to the GPR8_NOREX registers. If
2547 // the allocator and/or the backend get enhanced to be more robust in
2548 // that regard, this can be, and should be, removed.
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002549 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2550 !SDValue(Node, 1).use_empty()) {
2551 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2552 X86::AX, MVT::i16, InFlag);
2553 InFlag = Result.getValue(2);
2554
2555 // If we also need AL (the quotient), get it by extracting a subreg from
2556 // Result. The fast register allocator does not like multiple CopyFromReg
2557 // nodes using aliasing registers.
2558 if (!SDValue(Node, 0).use_empty())
2559 ReplaceUses(SDValue(Node, 0),
2560 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2561
2562 // Shift AX right by 8 bits instead of using AH.
2563 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2564 Result,
2565 CurDAG->getTargetConstant(8, MVT::i8)),
2566 0);
2567 ReplaceUses(SDValue(Node, 1),
2568 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2569 }
Dan Gohman757eee82009-08-02 16:10:52 +00002570 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002571 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002572 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2573 LoReg, NVT, InFlag);
2574 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002575 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002576 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002577 }
2578 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002579 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002580 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2581 HiReg, NVT, InFlag);
2582 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002583 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002584 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002585 }
Craig Topper062a2ba2014-04-25 05:30:21 +00002586 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002587 }
2588
Manman Ren1be131b2012-08-08 00:51:41 +00002589 case X86ISD::CMP:
2590 case X86ISD::SUB: {
2591 // Sometimes a SUB is used to perform comparison.
2592 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2593 // This node is not a CMP.
2594 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002595 SDValue N0 = Node->getOperand(0);
2596 SDValue N1 = Node->getOperand(1);
2597
2598 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2599 // use a smaller encoding.
Eli Friedman39d0f572010-08-04 22:40:58 +00002600 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2601 HasNoSignedComparisonUses(Node))
Evan Cheng050df1b2010-04-28 08:30:49 +00002602 // Look past the truncate if CMP is the only use of it.
2603 N0 = N0.getOperand(0);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002604 if ((N0.getNode()->getOpcode() == ISD::AND ||
2605 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2606 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002607 N0.getValueType() != MVT::i8 &&
2608 X86::isZeroNode(N1)) {
2609 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2610 if (!C) break;
2611
2612 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002613 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2614 (!(C->getZExtValue() & 0x80) ||
2615 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002616 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2617 SDValue Reg = N0.getNode()->getOperand(0);
2618
2619 // On x86-32, only the ABCD registers have 8-bit subregisters.
2620 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002621 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002622 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002623 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2624 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2625 default: llvm_unreachable("Unsupported TEST operand type!");
2626 }
2627 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002628 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2629 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002630 }
2631
2632 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002633 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002634 MVT::i8, Reg);
2635
2636 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002637 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2638 Subreg, Imm);
2639 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2640 // one, do not call ReplaceAllUsesWith.
2641 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2642 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002643 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002644 }
2645
2646 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002647 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2648 (!(C->getZExtValue() & 0x8000) ||
2649 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002650 // Shift the immediate right by 8 bits.
2651 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2652 MVT::i8);
2653 SDValue Reg = N0.getNode()->getOperand(0);
2654
2655 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002656 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002657 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002658 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2659 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2660 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2661 default: llvm_unreachable("Unsupported TEST operand type!");
2662 }
2663 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002664 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2665 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002666
2667 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002668 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002669 MVT::i8, Reg);
2670
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002671 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2672 // target GR8_NOREX registers, so make sure the register class is
2673 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002674 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2675 MVT::i32, Subreg, ShiftedImm);
2676 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2677 // one, do not call ReplaceAllUsesWith.
2678 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2679 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002680 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002681 }
2682
2683 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2684 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002685 N0.getValueType() != MVT::i16 &&
2686 (!(C->getZExtValue() & 0x8000) ||
2687 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002688 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2689 SDValue Reg = N0.getNode()->getOperand(0);
2690
2691 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002692 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002693 MVT::i16, Reg);
2694
2695 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002696 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2697 Subreg, Imm);
2698 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2699 // one, do not call ReplaceAllUsesWith.
2700 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2701 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002702 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002703 }
2704
2705 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2706 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002707 N0.getValueType() == MVT::i64 &&
2708 (!(C->getZExtValue() & 0x80000000) ||
2709 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002710 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2711 SDValue Reg = N0.getNode()->getOperand(0);
2712
2713 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002714 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002715 MVT::i32, Reg);
2716
2717 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002718 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2719 Subreg, Imm);
2720 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2721 // one, do not call ReplaceAllUsesWith.
2722 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2723 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002724 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002725 }
2726 }
2727 break;
2728 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002729 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002730 // Change a chain of {load; incr or dec; store} of the same value into
2731 // a simple increment or decrement through memory of that value, if the
2732 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002733 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002734 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002735 // {INC,DEC}X{64,32,16,8}.)
2736 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002737 // node in the pattern to the result node. probably with a new keyword
2738 // for example, we have this
2739 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2740 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2741 // (implicit EFLAGS)]>;
2742 // but maybe need something like this
2743 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2744 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2745 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002746
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002747 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002748 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002749 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002750
Craig Topper062a2ba2014-04-25 05:30:21 +00002751 LoadSDNode *LoadNode = nullptr;
Evan Cheng3e869f02012-04-12 19:14:21 +00002752 SDValue InputChain;
2753 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2754 LoadNode, InputChain))
2755 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002756
2757 SDValue Base, Scale, Index, Disp, Segment;
2758 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2759 Base, Scale, Index, Disp, Segment))
2760 break;
2761
2762 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2763 MemOp[0] = StoreNode->getMemOperand();
2764 MemOp[1] = LoadNode->getMemOperand();
2765 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002766 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002767 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2768 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002769 SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00002770 MVT::i32, MVT::Other, Ops);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002771 Result->setMemRefs(MemOp, MemOp + 2);
2772
2773 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2774 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2775
2776 return Result;
2777 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002778 }
2779
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002780 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002781
Chris Lattnerf98f1242010-03-02 06:34:30 +00002782 DEBUG(dbgs() << "=> ";
Craig Toppere73658d2014-04-28 04:05:08 +00002783 if (ResNode == nullptr || ResNode == Node)
Chris Lattnerf98f1242010-03-02 06:34:30 +00002784 Node->dump(CurDAG);
2785 else
2786 ResNode->dump(CurDAG);
2787 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002788
2789 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002790}
2791
Chris Lattnerba1ed582006-06-08 18:03:49 +00002792bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002793SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002794 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002795 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002796 switch (ConstraintCode) {
2797 case 'o': // offsetable ??
2798 case 'v': // not offsetable ??
2799 default: return true;
2800 case 'm': // memory
Craig Topper062a2ba2014-04-25 05:30:21 +00002801 if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002802 return true;
2803 break;
2804 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002805
Evan Cheng2d487222006-08-26 01:05:16 +00002806 OutOps.push_back(Op0);
2807 OutOps.push_back(Op1);
2808 OutOps.push_back(Op2);
2809 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002810 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002811 return false;
2812}
2813
Chad Rosier24c19d22012-08-01 18:39:17 +00002814/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002815/// X86-specific DAG, ready for instruction scheduling.
2816///
Bill Wendling026e5d72009-04-29 23:29:43 +00002817FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002818 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002819 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002820}