blob: 51ae5054b11adfe0189c9c9074c856af0244859a [file] [log] [blame]
Chris Lattner5930d3d2005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattner655e7df2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner655e7df2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
15#include "X86.h"
Evan Chengbc7a0f442006-01-11 06:09:51 +000016#include "X86InstrBuilder.h"
Evan Chengf55b7382008-01-05 00:41:47 +000017#include "X86MachineFunctionInfo.h"
Chris Lattner7c551262006-01-11 01:15:34 +000018#include "X86RegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000019#include "X86Subtarget.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000020#include "X86TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/ADT/Statistic.h"
Evan Cheng73a1ad92006-01-10 20:26:56 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner7c551262006-01-11 01:15:34 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000026#include "llvm/CodeGen/SelectionDAGISel.h"
Eric Christopher79cc1e32014-09-02 22:28:02 +000027#include "llvm/IR/Function.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/Type.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000031#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000032#include "llvm/Support/ErrorHandling.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000033#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Target/TargetMachine.h"
36#include "llvm/Target/TargetOptions.h"
Robin Morisset880580b2014-10-07 23:53:57 +000037#include <stdint.h>
Chris Lattner655e7df2005-11-16 01:54:32 +000038using namespace llvm;
39
Chandler Carruth84e68b22014-04-22 02:41:26 +000040#define DEBUG_TYPE "x86-isel"
41
Chris Lattner1ef9cd42006-12-19 22:59:26 +000042STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
Chris Lattner655e7df2005-11-16 01:54:32 +000044//===----------------------------------------------------------------------===//
45// Pattern Matcher Implementation
46//===----------------------------------------------------------------------===//
47
48namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000049 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000050 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattner3f0f71b2005-11-19 02:11:08 +000051 /// tree.
52 struct X86ISelAddressMode {
53 enum {
54 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000055 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000056 } BaseType;
57
Dan Gohman0fd54fb2010-04-29 23:30:41 +000058 // This is really a union, discriminated by BaseType!
59 SDValue Base_Reg;
60 int Base_FrameIndex;
Chris Lattner3f0f71b2005-11-19 02:11:08 +000061
62 unsigned Scale;
Chad Rosier24c19d22012-08-01 18:39:17 +000063 SDValue IndexReg;
Dan Gohman059c4fa2008-11-11 15:52:29 +000064 int32_t Disp;
Rafael Espindola3b2df102009-04-08 21:14:34 +000065 SDValue Segment;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000066 const GlobalValue *GV;
67 const Constant *CP;
68 const BlockAddress *BlockAddr;
Evan Cheng11b0a5d2006-09-08 06:48:29 +000069 const char *ES;
70 int JT;
Evan Cheng77d86ff2006-02-25 10:09:08 +000071 unsigned Align; // CP alignment.
Chris Lattnerbd7e26d2009-06-26 05:51:45 +000072 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattner3f0f71b2005-11-19 02:11:08 +000073
74 X86ISelAddressMode()
Dan Gohman0fd54fb2010-04-29 23:30:41 +000075 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Craig Topper062a2ba2014-04-25 05:30:21 +000076 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
77 JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000078 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000079
80 bool hasSymbolicDisplacement() const {
Craig Topper062a2ba2014-04-25 05:30:21 +000081 return GV != nullptr || CP != nullptr || ES != nullptr ||
82 JT != -1 || BlockAddr != nullptr;
Dan Gohman4e3e3de2009-02-07 00:43:41 +000083 }
Chad Rosier24c19d22012-08-01 18:39:17 +000084
Chris Lattnerfea81da2009-06-27 04:16:01 +000085 bool hasBaseOrIndexReg() const {
Tim Northover97347a82013-09-19 11:33:53 +000086 return BaseType == FrameIndexBase ||
Craig Topper062a2ba2014-04-25 05:30:21 +000087 IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr;
Chris Lattnerfea81da2009-06-27 04:16:01 +000088 }
Chad Rosier24c19d22012-08-01 18:39:17 +000089
Chris Lattnerfea81da2009-06-27 04:16:01 +000090 /// isRIPRelative - Return true if this addressing mode is already RIP
91 /// relative.
92 bool isRIPRelative() const {
93 if (BaseType != RegBase) return false;
94 if (RegisterSDNode *RegNode =
Dan Gohman0fd54fb2010-04-29 23:30:41 +000095 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattnerfea81da2009-06-27 04:16:01 +000096 return RegNode->getReg() == X86::RIP;
97 return false;
98 }
Chad Rosier24c19d22012-08-01 18:39:17 +000099
Chris Lattnerfea81da2009-06-27 04:16:01 +0000100 void setBaseReg(SDValue Reg) {
101 BaseType = RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000102 Base_Reg = Reg;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000103 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +0000104
Manman Ren19f49ac2012-09-11 22:23:19 +0000105#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesendafdbf72008-08-11 23:46:25 +0000106 void dump() {
David Greenedbdb1b22010-01-05 01:29:08 +0000107 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000108 dbgs() << "Base_Reg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000109 if (Base_Reg.getNode())
Chad Rosier24c19d22012-08-01 18:39:17 +0000110 Base_Reg.getNode()->dump();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000111 else
David Greenedbdb1b22010-01-05 01:29:08 +0000112 dbgs() << "nul";
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000113 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000114 << " Scale" << Scale << '\n'
115 << "IndexReg ";
Craig Toppere73658d2014-04-28 04:05:08 +0000116 if (IndexReg.getNode())
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000117 IndexReg.getNode()->dump();
118 else
Chad Rosier24c19d22012-08-01 18:39:17 +0000119 dbgs() << "nul";
David Greenedbdb1b22010-01-05 01:29:08 +0000120 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000121 << "GV ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000122 if (GV)
123 GV->dump();
124 else
David Greenedbdb1b22010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << " CP ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000127 if (CP)
128 CP->dump();
129 else
David Greenedbdb1b22010-01-05 01:29:08 +0000130 dbgs() << "nul";
131 dbgs() << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000132 << "ES ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000133 if (ES)
David Greenedbdb1b22010-01-05 01:29:08 +0000134 dbgs() << ES;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000135 else
David Greenedbdb1b22010-01-05 01:29:08 +0000136 dbgs() << "nul";
137 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesendafdbf72008-08-11 23:46:25 +0000138 }
Manman Ren742534c2012-09-06 19:06:06 +0000139#endif
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000140 };
141}
142
143namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +0000144 //===--------------------------------------------------------------------===//
145 /// ISel - X86 specific code to select X86 machine instructions for
146 /// SelectionDAG operations.
147 ///
Craig Topper26eec092014-03-31 06:22:15 +0000148 class X86DAGToDAGISel final : public SelectionDAGISel {
Chris Lattner655e7df2005-11-16 01:54:32 +0000149 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
150 /// make the right decision when generating code for different targets.
151 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +0000152
Evan Cheng7d6fa972008-09-26 23:41:32 +0000153 /// OptForSize - If true, selector should try to optimize for code size
154 /// instead of performance.
155 bool OptForSize;
156
Chris Lattner655e7df2005-11-16 01:54:32 +0000157 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000158 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Eric Christopher05b81972015-02-02 17:38:43 +0000159 : SelectionDAGISel(tm, OptLevel), 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.
Eric Christopher05b81972015-02-02 17:38:43 +0000167 Subtarget = &MF.getSubtarget<X86Subtarget>();
Eric Christopher4f09c592014-05-22 01:53:26 +0000168 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);
Craig Topper83e042a2013-08-15 05:57:07 +0000195 SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
Chris Lattner655e7df2005-11-16 01:54:32 +0000196
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000197 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattner8a236b62010-09-22 04:39:11 +0000198 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000199 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman824ab402009-07-22 23:26:55 +0000200 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
202 unsigned Depth);
Rafael Espindola92773792009-03-31 16:16:57 +0000203 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerd58d7c12010-09-21 22:07:31 +0000204 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Tim Northover3a1fd4c2013-06-01 09:55:14 +0000207 bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000208 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000209 SDValue &Scale, SDValue &Index, SDValue &Disp,
210 SDValue &Segment);
Tim Northover6833e3f2013-06-10 20:43:49 +0000211 bool SelectLEA64_32Addr(SDValue N, SDValue &Base,
212 SDValue &Scale, SDValue &Index, SDValue &Disp,
213 SDValue &Segment);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000214 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000215 SDValue &Scale, SDValue &Index, SDValue &Disp,
216 SDValue &Segment);
Chris Lattnerbd6e1932010-03-01 22:51:11 +0000217 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattnerafac7dad2010-02-16 22:35:06 +0000218 SDValue &Base, SDValue &Scale,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000219 SDValue &Index, SDValue &Disp,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000220 SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +0000221 SDValue &NodeWithChain);
Chad Rosier24c19d22012-08-01 18:39:17 +0000222
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000223 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000224 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000225 SDValue &Index, SDValue &Disp,
226 SDValue &Segment);
Chad Rosier24c19d22012-08-01 18:39:17 +0000227
Chris Lattnerba1ed582006-06-08 18:03:49 +0000228 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
229 /// inline asm expressions.
Craig Topper2d9361e2014-03-09 07:44:38 +0000230 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
231 char ConstraintCode,
232 std::vector<SDValue> &OutOps) override;
Chad Rosier24c19d22012-08-01 18:39:17 +0000233
Anton Korobeynikov90910742007-09-25 21:52:30 +0000234 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
235
Chad Rosier24c19d22012-08-01 18:39:17 +0000236 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000237 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000238 SDValue &Disp, SDValue &Segment) {
Eric Christopherb17140d2014-10-08 07:32:17 +0000239 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
240 ? CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
241 TLI->getPointerTy())
242 : AM.Base_Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000243 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000244 Index = AM.IndexReg;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000245 // These are 32-bit even in 64-bit mode since RIP relative offset
246 // is 32-bit.
247 if (AM.GV)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000248 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
Devang Patela3ca21b2010-07-06 22:08:15 +0000249 MVT::i32, AM.Disp,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000250 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000251 else if (AM.CP)
Owen Anderson9f944592009-08-11 20:47:22 +0000252 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000253 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000254 else if (AM.ES) {
255 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson9f944592009-08-11 20:47:22 +0000256 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000257 } else if (AM.JT != -1) {
258 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson9f944592009-08-11 20:47:22 +0000259 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000260 } else if (AM.BlockAddr)
261 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
262 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000263 else
Owen Anderson9f944592009-08-11 20:47:22 +0000264 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000265
266 if (AM.Segment.getNode())
267 Segment = AM.Segment;
268 else
Owen Anderson9f944592009-08-11 20:47:22 +0000269 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000270 }
271
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000272 /// getI8Imm - Return a target constant with the specified value, of type
273 /// i8.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000274 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000275 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000276 }
277
Chris Lattner655e7df2005-11-16 01:54:32 +0000278 /// getI32Imm - Return a target constant with the specified value, of type
279 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000280 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000281 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner655e7df2005-11-16 01:54:32 +0000282 }
Evan Chengd49cc362006-02-10 22:24:32 +0000283
Dan Gohman24300732008-09-23 18:22:58 +0000284 /// getGlobalBaseReg - Return an SDNode that returns the value of
285 /// the global base register. Output instructions required to
286 /// initialize the global base register, if necessary.
287 ///
Evan Cheng61413a32006-08-26 05:34:46 +0000288 SDNode *getGlobalBaseReg();
Evan Cheng5588de92006-02-18 00:15:05 +0000289
Dan Gohman4751bb92009-06-03 20:20:00 +0000290 /// getTargetMachine - Return a reference to the TargetMachine, casted
291 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000292 const X86TargetMachine &getTargetMachine() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000293 return static_cast<const X86TargetMachine &>(TM);
294 }
295
296 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
297 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000298 const X86InstrInfo *getInstrInfo() const {
Eric Christopher05b81972015-02-02 17:38:43 +0000299 return Subtarget->getInstrInfo();
Dan Gohman4751bb92009-06-03 20:20:00 +0000300 }
Adam Nemetff63a2d2014-10-03 20:00:34 +0000301
302 /// \brief Address-mode matching performs shift-of-and to and-of-shift
303 /// reassociation in order to expose more scaled addressing
304 /// opportunities.
305 bool ComplexPatternFuncMutatesDAG() const override {
306 return true;
307 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000308 };
309}
310
Evan Cheng72bb66a2006-08-08 00:31:00 +0000311
Evan Cheng5e73ff22010-02-15 19:41:07 +0000312bool
313X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000314 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000315
Evan Cheng5e73ff22010-02-15 19:41:07 +0000316 if (!N.hasOneUse())
317 return false;
318
319 if (N.getOpcode() != ISD::LOAD)
320 return true;
321
322 // If N is a load, do additional profitability checks.
323 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000324 switch (U->getOpcode()) {
325 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000326 case X86ISD::ADD:
327 case X86ISD::SUB:
328 case X86ISD::AND:
329 case X86ISD::XOR:
330 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000331 case ISD::ADD:
332 case ISD::ADDC:
333 case ISD::ADDE:
334 case ISD::AND:
335 case ISD::OR:
336 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000337 SDValue Op1 = U->getOperand(1);
338
Evan Cheng83bdb382008-11-27 00:49:46 +0000339 // If the other operand is a 8-bit immediate we should fold the immediate
340 // instead. This reduces code size.
341 // e.g.
342 // movl 4(%esp), %eax
343 // addl $4, %eax
344 // vs.
345 // movl $4, %eax
346 // addl 4(%esp), %eax
347 // The former is 2 bytes shorter. In case where the increment is 1, then
348 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000349 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000350 if (Imm->getAPIntValue().isSignedIntN(8))
351 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000352
353 // If the other operand is a TLS address, we should fold it instead.
354 // This produces
355 // movl %gs:0, %eax
356 // leal i@NTPOFF(%eax), %eax
357 // instead of
358 // movl $i@NTPOFF, %eax
359 // addl %gs:0, %eax
360 // if the block also has an access to a second TLS address this will save
361 // a load.
Alp Tokerf907b892013-12-05 05:44:44 +0000362 // FIXME: This is probably also true for non-TLS addresses.
Rafael Espindolabb834f02009-04-10 10:09:34 +0000363 if (Op1.getOpcode() == X86ISD::Wrapper) {
364 SDValue Val = Op1.getOperand(0);
365 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
366 return false;
367 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000368 }
369 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000370 }
371
372 return true;
373}
374
Evan Chengd703df62010-03-14 03:48:46 +0000375/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
376/// load's chain operand and move load below the call's chain operand.
377static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000378 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000379 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000380 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000381 if (Chain.getNode() == Load.getNode())
382 Ops.push_back(Load.getOperand(0));
383 else {
384 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000385 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000386 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
387 if (Chain.getOperand(i).getNode() == Load.getNode())
388 Ops.push_back(Load.getOperand(0));
389 else
390 Ops.push_back(Chain.getOperand(i));
391 SDValue NewChain =
Craig Topper48d114b2014-04-26 18:35:24 +0000392 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000393 Ops.clear();
394 Ops.push_back(NewChain);
395 }
Evan Chengd703df62010-03-14 03:48:46 +0000396 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
397 Ops.push_back(OrigChain.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000398 CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops);
Dan Gohman92c11ac2010-06-18 15:30:29 +0000399 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000400 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000401
Evan Cheng214156c2012-10-02 23:49:13 +0000402 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000403 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000404 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000405 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000406 Ops.push_back(Call.getOperand(i));
Craig Topper8c0b4d02014-04-28 05:57:50 +0000407 CurDAG->UpdateNodeOperands(Call.getNode(), Ops);
Evan Chengf00f1e52008-08-25 21:27:18 +0000408}
409
410/// isCalleeLoad - Return true if call address is a load and it can be
411/// moved below CALLSEQ_START and the chains leading up to the call.
412/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000413/// In the case of a tail call, there isn't a callseq node between the call
414/// chain and the load.
415static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000416 // The transformation is somewhat dangerous if the call's chain was glued to
417 // the call. After MoveBelowOrigChain the load is moved between the call and
418 // the chain, this can create a cycle if the load is not folded. So it is
419 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000420 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000421 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000422 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000423 if (!LD ||
424 LD->isVolatile() ||
425 LD->getAddressingMode() != ISD::UNINDEXED ||
426 LD->getExtensionType() != ISD::NON_EXTLOAD)
427 return false;
428
429 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000430 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000431 if (!Chain.hasOneUse())
432 return false;
433 Chain = Chain.getOperand(0);
434 }
Evan Chengd703df62010-03-14 03:48:46 +0000435
436 if (!Chain.getNumOperands())
437 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000438 // Since we are not checking for AA here, conservatively abort if the chain
439 // writes to memory. It's not safe to move the callee (a load) across a store.
440 if (isa<MemSDNode>(Chain.getNode()) &&
441 cast<MemSDNode>(Chain.getNode())->writeMem())
442 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000443 if (Chain.getOperand(0).getNode() == Callee.getNode())
444 return true;
445 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000446 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
447 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000448 return true;
449 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000450}
451
Chris Lattner8d637042010-03-02 23:12:51 +0000452void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000453 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000454 OptForSize = MF->getFunction()->getAttributes().
455 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000456
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000457 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
458 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000459 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000460
Evan Chengd703df62010-03-14 03:48:46 +0000461 if (OptLevel != CodeGenOpt::None &&
Michael Liao96b42602013-03-28 23:13:21 +0000462 // Only does this when target favors doesn't favor register indirect
463 // call.
464 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng847ad442012-10-05 01:48:22 +0000465 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000466 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000467 (Subtarget->is64Bit() ||
468 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000469 /// Also try moving call address load from outside callseq_start to just
470 /// before the call to allow it to be folded.
471 ///
472 /// [Load chain]
473 /// ^
474 /// |
475 /// [Load]
476 /// ^ ^
477 /// | |
478 /// / \--
479 /// / |
480 ///[CALLSEQ_START] |
481 /// ^ |
482 /// | |
483 /// [LOAD/C2Reg] |
484 /// | |
485 /// \ /
486 /// \ /
487 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000488 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000489 SDValue Chain = N->getOperand(0);
490 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000491 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000492 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000493 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000494 ++NumLoadMoved;
495 continue;
496 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000497
Chris Lattner8d637042010-03-02 23:12:51 +0000498 // Lower fpround and fpextend nodes that target the FP stack to be store and
499 // load to the stack. This is a gross hack. We would like to simply mark
500 // these as being illegal, but when we do that, legalize produces these when
501 // it expands calls, then expands these in the same legalize pass. We would
502 // like dag combine to be able to hack on these between the call expansion
503 // and the node legalization. As such this pass basically does "really
504 // late" legalization of these inline with the X86 isel pass.
505 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000506 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
507 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000508
Craig Topper83e042a2013-08-15 05:57:07 +0000509 MVT SrcVT = N->getOperand(0).getSimpleValueType();
510 MVT DstVT = N->getSimpleValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000511
512 // If any of the sources are vectors, no fp stack involved.
513 if (SrcVT.isVector() || DstVT.isVector())
514 continue;
515
516 // If the source and destination are SSE registers, then this is a legal
517 // conversion that should not be lowered.
Benjamin Kramer02ff1cd2013-06-27 11:07:42 +0000518 const X86TargetLowering *X86Lowering =
Eric Christopherb17140d2014-10-08 07:32:17 +0000519 static_cast<const X86TargetLowering *>(TLI);
Bill Wendlinga3cd3502013-06-19 21:36:55 +0000520 bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
521 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000522 if (SrcIsSSE && DstIsSSE)
523 continue;
524
Chris Lattnerd587e582008-03-09 07:05:32 +0000525 if (!SrcIsSSE && !DstIsSSE) {
526 // If this is an FPStack extension, it is a noop.
527 if (N->getOpcode() == ISD::FP_EXTEND)
528 continue;
529 // If this is a value-preserving FPStack truncation, it is a noop.
530 if (N->getConstantOperandVal(1))
531 continue;
532 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000533
Chris Lattnera91f77e2008-01-24 08:07:48 +0000534 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
535 // FPStack has extload and truncstore. SSE can fold direct loads into other
536 // operations. Based on this, decide what we want to do.
Craig Topper83e042a2013-08-15 05:57:07 +0000537 MVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000538 if (N->getOpcode() == ISD::FP_ROUND)
539 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
540 else
541 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000542
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000543 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000544 SDLoc dl(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000545
Chris Lattnera91f77e2008-01-24 08:07:48 +0000546 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000547 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000548 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000549 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000550 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000551 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000552 MachinePointerInfo(),
Louis Gerbarg67474e32014-07-31 21:45:05 +0000553 MemVT, false, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000554
555 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
556 // extload we created. This will cause general havok on the dag because
557 // anything below the conversion could be folded into other existing nodes.
558 // To avoid invalidating 'I', back it up to the convert node.
559 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000560 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000561
Chris Lattnera91f77e2008-01-24 08:07:48 +0000562 // Now that we did that, the node is dead. Increment the iterator to the
563 // next node to process, then delete N.
564 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000565 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000566 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000567}
568
Chris Lattner655e7df2005-11-16 01:54:32 +0000569
Anton Korobeynikov90910742007-09-25 21:52:30 +0000570/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
571/// the main function.
572void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
573 MachineFrameInfo *MFI) {
Eric Christopher05b81972015-02-02 17:38:43 +0000574 const TargetInstrInfo *TII = getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000575 if (Subtarget->isTargetCygMing()) {
576 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000577 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000578 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000579 TII->get(CallOp)).addExternalSymbol("__main");
580 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000581}
582
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000583void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000584 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000585 if (const Function *Fn = MF->getFunction())
586 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
587 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000588}
589
Eli Friedman344ec792011-07-13 21:29:53 +0000590static bool isDispSafeForFrameIndex(int64_t Val) {
591 // On 64-bit platforms, we can run into an issue where a frame index
592 // includes a displacement that, when added to the explicit displacement,
593 // will overflow the displacement field. Assuming that the frame index
594 // displacement fits into a 31-bit integer (which is only slightly more
595 // aggressive than the current fundamental assumption that it fits into
596 // a 32-bit integer), a 31-bit disp should always be safe.
597 return isInt<31>(Val);
598}
599
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000600bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
601 X86ISelAddressMode &AM) {
602 int64_t Val = AM.Disp + Offset;
603 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000604 if (Subtarget->is64Bit()) {
605 if (!X86::isOffsetSuitableForCodeModel(Val, M,
606 AM.hasSymbolicDisplacement()))
607 return true;
608 // In addition to the checks required for a register base, check that
609 // we do not try to use an unsafe Disp with a frame index.
610 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
611 !isDispSafeForFrameIndex(Val))
612 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000613 }
Eli Friedman344ec792011-07-13 21:29:53 +0000614 AM.Disp = Val;
615 return false;
616
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000617}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000618
Chris Lattner8a236b62010-09-22 04:39:11 +0000619bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
620 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000621
Chris Lattner8a236b62010-09-22 04:39:11 +0000622 // load gs:0 -> GS segment register.
623 // load fs:0 -> FS segment register.
624 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000625 // This optimization is valid because the GNU TLS model defines that
626 // gs:0 (or fs:0 on X86-64) contains its own address.
627 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000628 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
Craig Topper062a2ba2014-04-25 05:30:21 +0000629 if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000630 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000631 switch (N->getPointerInfo().getAddrSpace()) {
632 case 256:
633 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
634 return false;
635 case 257:
636 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
637 return false;
638 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000639
Rafael Espindola3b2df102009-04-08 21:14:34 +0000640 return true;
641}
642
Chris Lattnerfea81da2009-06-27 04:16:01 +0000643/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
644/// into an addressing mode. These wrap things that will resolve down into a
645/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000646/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000647bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000648 // If the addressing mode already has a symbol as the displacement, we can
649 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000650 if (AM.hasSymbolicDisplacement())
651 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000652
653 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000654 CodeModel::Model M = TM.getCodeModel();
655
Chris Lattnerfea81da2009-06-27 04:16:01 +0000656 // Handle X86-64 rip-relative addresses. We check this before checking direct
657 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000658 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000659 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
660 // they cannot be folded into immediate fields.
661 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000662 (M == CodeModel::Small || M == CodeModel::Kernel)) {
663 // Base and index reg must be 0 in order to use %rip as base.
664 if (AM.hasBaseOrIndexReg())
665 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000666 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000667 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000668 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000669 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000670 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
671 AM = Backup;
672 return true;
673 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000674 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000675 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000676 AM.CP = CP->getConstVal();
677 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000678 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000679 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
680 AM = Backup;
681 return true;
682 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000683 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
684 AM.ES = S->getSymbol();
685 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000686 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000687 AM.JT = J->getIndex();
688 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000689 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
690 X86ISelAddressMode Backup = AM;
691 AM.BlockAddr = BA->getBlockAddress();
692 AM.SymbolFlags = BA->getTargetFlags();
693 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
694 AM = Backup;
695 return true;
696 }
697 } else
698 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000699
Chris Lattnerfea81da2009-06-27 04:16:01 +0000700 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000701 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000702 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000703 }
704
705 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000706 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
707 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000708 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000709 M == CodeModel::Small || M == CodeModel::Kernel) {
710 assert(N.getOpcode() != X86ISD::WrapperRIP &&
711 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000712 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
713 AM.GV = G->getGlobal();
714 AM.Disp += G->getOffset();
715 AM.SymbolFlags = G->getTargetFlags();
716 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
717 AM.CP = CP->getConstVal();
718 AM.Align = CP->getAlignment();
719 AM.Disp += CP->getOffset();
720 AM.SymbolFlags = CP->getTargetFlags();
721 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
722 AM.ES = S->getSymbol();
723 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000724 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000725 AM.JT = J->getIndex();
726 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000727 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
728 AM.BlockAddr = BA->getBlockAddress();
729 AM.Disp += BA->getOffset();
730 AM.SymbolFlags = BA->getTargetFlags();
731 } else
732 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000733 return false;
734 }
735
736 return true;
737}
738
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000739/// MatchAddress - Add the specified node to the specified addressing mode,
740/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000741/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000742bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000743 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000744 return true;
745
746 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
747 // a smaller encoding and avoids a scaled-index.
748 if (AM.Scale == 2 &&
749 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000750 AM.Base_Reg.getNode() == nullptr) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000751 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000752 AM.Scale = 1;
753 }
754
Dan Gohman05046082009-08-20 18:23:44 +0000755 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
756 // because it has a smaller encoding.
757 // TODO: Which other code models can use this?
758 if (TM.getCodeModel() == CodeModel::Small &&
759 Subtarget->is64Bit() &&
760 AM.Scale == 1 &&
761 AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +0000762 AM.Base_Reg.getNode() == nullptr &&
763 AM.IndexReg.getNode() == nullptr &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000764 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000765 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000766 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000767
Dan Gohman824ab402009-07-22 23:26:55 +0000768 return false;
769}
770
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000771// Insert a node into the DAG at least before the Pos node's position. This
772// will reposition the node as needed, and will assign it a node ID that is <=
773// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
774// IDs! The selection DAG must no longer depend on their uniqueness when this
775// is used.
776static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
777 if (N.getNode()->getNodeId() == -1 ||
778 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
779 DAG.RepositionNode(Pos.getNode(), N.getNode());
780 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
781 }
782}
783
Adam Nemet0c7caf42014-09-16 17:14:10 +0000784// Transform "(X >> (8-C1)) & (0xff << C1)" to "((X >> 8) & 0xff) << C1" if
785// safe. This allows us to convert the shift and and into an h-register
786// extract and a scaled index. Returns false if the simplification is
787// performed.
Chandler Carruth51d30762012-01-11 08:48:20 +0000788static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
789 uint64_t Mask,
790 SDValue Shift, SDValue X,
791 X86ISelAddressMode &AM) {
792 if (Shift.getOpcode() != ISD::SRL ||
793 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
794 !Shift.hasOneUse())
795 return true;
796
797 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
798 if (ScaleLog <= 0 || ScaleLog >= 4 ||
799 Mask != (0xffu << ScaleLog))
800 return true;
801
Craig Topper83e042a2013-08-15 05:57:07 +0000802 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000803 SDLoc DL(N);
Chandler Carruth51d30762012-01-11 08:48:20 +0000804 SDValue Eight = DAG.getConstant(8, MVT::i8);
805 SDValue NewMask = DAG.getConstant(0xff, VT);
806 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
807 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
808 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
809 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
810
Chandler Carrutheb21da02012-01-12 01:34:44 +0000811 // Insert the new nodes into the topological ordering. We must do this in
812 // a valid topological ordering as nothing is going to go back and re-sort
813 // these nodes. We continually insert before 'N' in sequence as this is
814 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
815 // hierarchy left to express.
816 InsertDAGNode(DAG, N, Eight);
817 InsertDAGNode(DAG, N, Srl);
818 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000819 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000820 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000821 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000822 DAG.ReplaceAllUsesWith(N, Shl);
823 AM.IndexReg = And;
824 AM.Scale = (1 << ScaleLog);
825 return false;
826}
827
Chandler Carruthaa01e662012-01-11 09:35:00 +0000828// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
829// allows us to fold the shift into this addressing mode. Returns false if the
830// transform succeeded.
831static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
832 uint64_t Mask,
833 SDValue Shift, SDValue X,
834 X86ISelAddressMode &AM) {
835 if (Shift.getOpcode() != ISD::SHL ||
836 !isa<ConstantSDNode>(Shift.getOperand(1)))
837 return true;
838
839 // Not likely to be profitable if either the AND or SHIFT node has more
840 // than one use (unless all uses are for address computation). Besides,
841 // isel mechanism requires their node ids to be reused.
842 if (!N.hasOneUse() || !Shift.hasOneUse())
843 return true;
844
845 // Verify that the shift amount is something we can fold.
846 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
847 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
848 return true;
849
Craig Topper83e042a2013-08-15 05:57:07 +0000850 MVT VT = N.getSimpleValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000851 SDLoc DL(N);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000852 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
853 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
854 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
855
Chandler Carrutheb21da02012-01-12 01:34:44 +0000856 // Insert the new nodes into the topological ordering. We must do this in
857 // a valid topological ordering as nothing is going to go back and re-sort
858 // these nodes. We continually insert before 'N' in sequence as this is
859 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
860 // hierarchy left to express.
861 InsertDAGNode(DAG, N, NewMask);
862 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000863 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000864 DAG.ReplaceAllUsesWith(N, NewShift);
865
866 AM.Scale = 1 << ShiftAmt;
867 AM.IndexReg = NewAnd;
868 return false;
869}
870
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000871// Implement some heroics to detect shifts of masked values where the mask can
872// be replaced by extending the shift and undoing that in the addressing mode
873// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
874// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
875// the addressing mode. This results in code such as:
876//
877// int f(short *y, int *lookup_table) {
878// ...
879// return *y + lookup_table[*y >> 11];
880// }
881//
882// Turning into:
883// movzwl (%rdi), %eax
884// movl %eax, %ecx
885// shrl $11, %ecx
886// addl (%rsi,%rcx,4), %eax
887//
888// Instead of:
889// movzwl (%rdi), %eax
890// movl %eax, %ecx
891// shrl $9, %ecx
892// andl $124, %rcx
893// addl (%rsi,%rcx), %eax
894//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000895// Note that this function assumes the mask is provided as a mask *after* the
896// value is shifted. The input chain may or may not match that, but computing
897// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000898static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000899 uint64_t Mask,
900 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000901 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000902 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
903 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000904 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000905
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000906 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000907 unsigned MaskLZ = countLeadingZeros(Mask);
908 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000909
910 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000911 // from the trailing zeros of the mask.
912 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000913
914 // There is nothing we can do here unless the mask is removing some bits.
915 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
916 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
917
918 // We also need to ensure that mask is a continuous run of bits.
Benjamin Kramer5f6a9072015-02-12 15:35:40 +0000919 if (countTrailingOnes(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000920
921 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000922 // Also scale it down based on the size of the shift.
Craig Topper83e042a2013-08-15 05:57:07 +0000923 MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000924
925 // The final check is to ensure that any masked out high bits of X are
926 // already known to be zero. Otherwise, the mask has a semantic impact
927 // other than masking out a couple of low bits. Unfortunately, because of
928 // the mask, zero extensions will be removed from operands in some cases.
929 // This code works extra hard to look through extensions because we can
930 // replace them with zero extensions cheaply if necessary.
931 bool ReplacingAnyExtend = false;
932 if (X.getOpcode() == ISD::ANY_EXTEND) {
Craig Topper83e042a2013-08-15 05:57:07 +0000933 unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
934 X.getOperand(0).getSimpleValueType().getSizeInBits();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000935 // Assume that we'll replace the any-extend with a zero-extend, and
936 // narrow the search to the extended value.
937 X = X.getOperand(0);
938 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
939 ReplacingAnyExtend = true;
940 }
Craig Topper83e042a2013-08-15 05:57:07 +0000941 APInt MaskedHighBits =
942 APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000943 APInt KnownZero, KnownOne;
Jay Foada0653a32014-05-14 21:14:37 +0000944 DAG.computeKnownBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000945 if (MaskedHighBits != KnownZero) return true;
946
947 // We've identified a pattern that can be transformed into a single shift
948 // and an addressing mode. Make it so.
Craig Topper83e042a2013-08-15 05:57:07 +0000949 MVT VT = N.getSimpleValueType();
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000950 if (ReplacingAnyExtend) {
951 assert(X.getValueType() != VT);
952 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000953 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000954 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000955 X = NewX;
956 }
Andrew Trickef9de2a2013-05-25 02:42:55 +0000957 SDLoc DL(N);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000958 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
959 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
960 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
961 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000962
963 // Insert the new nodes into the topological ordering. We must do this in
964 // a valid topological ordering as nothing is going to go back and re-sort
965 // these nodes. We continually insert before 'N' in sequence as this is
966 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
967 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000968 InsertDAGNode(DAG, N, NewSRLAmt);
969 InsertDAGNode(DAG, N, NewSRL);
970 InsertDAGNode(DAG, N, NewSHLAmt);
971 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000972 DAG.ReplaceAllUsesWith(N, NewSHL);
973
974 AM.Scale = 1 << AMShiftAmt;
975 AM.IndexReg = NewSRL;
976 return false;
977}
978
Dan Gohman824ab402009-07-22 23:26:55 +0000979bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
980 unsigned Depth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000981 SDLoc dl(N);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000982 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000983 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000984 AM.dump();
985 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000986 // Limit recursion.
987 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000988 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000989
Chris Lattnerfea81da2009-06-27 04:16:01 +0000990 // If this is already a %rip relative address, we can only merge immediates
991 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000992 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000993 if (AM.isRIPRelative()) {
994 // FIXME: JumpTable and ExternalSymbol address currently don't like
995 // displacements. It isn't very important, but this should be fixed for
996 // consistency.
997 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000998
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000999 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
1000 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001001 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001002 return true;
1003 }
1004
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001005 switch (N.getOpcode()) {
1006 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001007 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +00001008 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001009 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001010 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001011 break;
1012 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001013
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001014 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001015 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +00001016 if (!MatchWrapper(N, AM))
1017 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001018 break;
1019
Rafael Espindola3b2df102009-04-08 21:14:34 +00001020 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001021 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001022 return false;
1023 break;
1024
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001025 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001026 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001027 AM.Base_Reg.getNode() == nullptr &&
Eli Friedman344ec792011-07-13 21:29:53 +00001028 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001029 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001030 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001031 return false;
1032 }
1033 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001034
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001035 case ISD::SHL:
Craig Topper062a2ba2014-04-25 05:30:21 +00001036 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001037 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001038
Gabor Greif81d6a382008-08-31 15:37:04 +00001039 if (ConstantSDNode
1040 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001041 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001042 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1043 // that the base operand remains free for further matching. If
1044 // the base doesn't end up getting used, a post-processing step
1045 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001046 if (Val == 1 || Val == 2 || Val == 3) {
1047 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001048 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001049
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001050 // Okay, we know that we have a scale by now. However, if the scaled
1051 // value is an add of something and a constant, we can fold the
1052 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001053 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001054 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001055 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001056 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001057 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001058 if (!FoldOffsetIntoAddress(Disp, AM))
1059 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001060 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001061
1062 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001063 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001064 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001065 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001066 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001067
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001068 case ISD::SRL: {
1069 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001070 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001071
1072 SDValue And = N.getOperand(0);
1073 if (And.getOpcode() != ISD::AND) break;
1074 SDValue X = And.getOperand(0);
1075
1076 // We only handle up to 64-bit values here as those are what matter for
1077 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001078 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001079
1080 // The mask used for the transform is expected to be post-shift, but we
1081 // found the shift first so just apply the shift to the mask before passing
1082 // it down.
1083 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1084 !isa<ConstantSDNode>(And.getOperand(1)))
1085 break;
1086 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1087
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001088 // Try to fold the mask and shift into the scale, and return false if we
1089 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001090 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001091 return false;
1092 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001093 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001094
Dan Gohmanbf474952007-10-22 20:22:24 +00001095 case ISD::SMUL_LOHI:
1096 case ISD::UMUL_LOHI:
1097 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001098 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001099 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001100 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001101 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001102 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001103 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Craig Topper062a2ba2014-04-25 05:30:21 +00001104 AM.Base_Reg.getNode() == nullptr &&
1105 AM.IndexReg.getNode() == nullptr) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001106 if (ConstantSDNode
1107 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001108 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1109 CN->getZExtValue() == 9) {
1110 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001111
Gabor Greiff304a7a2008-08-28 21:40:38 +00001112 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001113 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001114
1115 // Okay, we know that we have a scale by now. However, if the scaled
1116 // value is an add of something and a constant, we can fold the
1117 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001118 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1119 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1120 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001121 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001122 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001123 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1124 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001125 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001126 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001127 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001128 }
1129
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001130 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001131 return false;
1132 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001133 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001134 break;
1135
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001136 case ISD::SUB: {
1137 // Given A-B, if A can be completely folded into the address and
1138 // the index field with the index field unused, use -B as the index.
1139 // This is a win if a has multiple parts that can be folded into
1140 // the address. Also, this saves a mov if the base register has
1141 // other uses, since it avoids a two-address sub instruction, however
1142 // it costs an additional mov if the index register has other uses.
1143
Dan Gohman99ba4da2010-06-18 01:24:29 +00001144 // Add an artificial use to this node so that we can keep track of
1145 // it if it gets CSE'd with a different node.
1146 HandleSDNode Handle(N);
1147
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001148 // Test if the LHS of the sub can be folded.
1149 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001150 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001151 AM = Backup;
1152 break;
1153 }
1154 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001155 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001156 AM = Backup;
1157 break;
1158 }
Evan Cheng68333f52010-03-17 23:58:35 +00001159
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001160 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001161 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001162 // If the RHS involves a register with multiple uses, this
1163 // transformation incurs an extra mov, due to the neg instruction
1164 // clobbering its operand.
1165 if (!RHS.getNode()->hasOneUse() ||
1166 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1167 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1168 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1169 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001170 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001171 ++Cost;
1172 // If the base is a register with multiple uses, this
1173 // transformation may save a mov.
1174 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001175 AM.Base_Reg.getNode() &&
1176 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001177 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1178 --Cost;
1179 // If the folded LHS was interesting, this transformation saves
1180 // address arithmetic.
1181 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1182 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1183 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1184 --Cost;
1185 // If it doesn't look like it may be an overall win, don't do it.
1186 if (Cost >= 0) {
1187 AM = Backup;
1188 break;
1189 }
1190
1191 // Ok, the transformation is legal and appears profitable. Go for it.
1192 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1193 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1194 AM.IndexReg = Neg;
1195 AM.Scale = 1;
1196
1197 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001198 InsertDAGNode(*CurDAG, N, Zero);
1199 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001200 return false;
1201 }
1202
Evan Chengbf38a5e2009-01-17 07:09:27 +00001203 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001204 // Add an artificial use to this node so that we can keep track of
1205 // it if it gets CSE'd with a different node.
1206 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001207
Evan Chengbf38a5e2009-01-17 07:09:27 +00001208 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001209 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1210 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001211 return false;
1212 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001213
Evan Cheng68333f52010-03-17 23:58:35 +00001214 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001215 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1216 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001217 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001218 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001219
1220 // If we couldn't fold both operands into the address at the same time,
1221 // see if we can just put each operand into a register and fold at least
1222 // the add.
1223 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001224 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001225 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001226 N = Handle.getValue();
1227 AM.Base_Reg = N.getOperand(0);
1228 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001229 AM.Scale = 1;
1230 return false;
1231 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001232 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001233 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001234 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001235
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001236 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001237 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001238 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001239 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001240 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001241
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001242 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001243 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001244 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001245 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001246 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001247 }
1248 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001249
Evan Cheng827d30d2007-12-13 00:43:27 +00001250 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001251 // Perform some heroic transforms on an and of a constant-count shift
1252 // with a constant to enable use of the scaled offset field.
1253
Evan Cheng827d30d2007-12-13 00:43:27 +00001254 // Scale must not be used already.
Craig Topper062a2ba2014-04-25 05:30:21 +00001255 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001256
Chandler Carruthaa01e662012-01-11 09:35:00 +00001257 SDValue Shift = N.getOperand(0);
1258 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001259 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001260
1261 // We only handle up to 64-bit values here as those are what matter for
1262 // addressing mode optimizations.
Craig Topper83e042a2013-08-15 05:57:07 +00001263 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthaa01e662012-01-11 09:35:00 +00001264
Chandler Carruthb0049f42012-01-11 09:35:04 +00001265 if (!isa<ConstantSDNode>(N.getOperand(1)))
1266 break;
1267 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001268
Chandler Carruth51d30762012-01-11 08:48:20 +00001269 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001270 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001271 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001272
Chandler Carruth51d30762012-01-11 08:48:20 +00001273 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001274 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001275 return false;
1276
Chandler Carruthaa01e662012-01-11 09:35:00 +00001277 // Try to swap the mask and shift to place shifts which can be done as
1278 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001279 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001280 return false;
1281 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001282 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001283 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001284
Rafael Espindola92773792009-03-31 16:16:57 +00001285 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001286}
1287
1288/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1289/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001290bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001291 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001292 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001293 // If so, check to see if the scale index register is set.
Craig Topper062a2ba2014-04-25 05:30:21 +00001294 if (!AM.IndexReg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001295 AM.IndexReg = N;
1296 AM.Scale = 1;
1297 return false;
1298 }
1299
1300 // Otherwise, we cannot select it.
1301 return true;
1302 }
1303
1304 // Default, generate it as a register.
1305 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001306 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001307 return false;
1308}
1309
Evan Chengc9fab312005-12-08 02:01:35 +00001310/// SelectAddr - returns true if it is able pattern match an addressing mode.
1311/// It returns the operands which make up the maximal addressing mode it can
1312/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001313///
1314/// Parent is the parent node of the addr operand that is being matched. It
1315/// is always a load, store, atomic node, or null. It is only null when
1316/// checking memory operands for inline asm nodes.
1317bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001318 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001319 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001320 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001321
Chris Lattner8a236b62010-09-22 04:39:11 +00001322 if (Parent &&
1323 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1324 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001325 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001326 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001327 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1328 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1329 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001330 unsigned AddrSpace =
1331 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1332 // AddrSpace 256 -> GS, 257 -> FS.
1333 if (AddrSpace == 256)
1334 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1335 if (AddrSpace == 257)
1336 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1337 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001338
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001339 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001340 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001341
Craig Topper83e042a2013-08-15 05:57:07 +00001342 MVT VT = N.getSimpleValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001343 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001344 if (!AM.Base_Reg.getNode())
1345 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001346 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001347
Gabor Greiff304a7a2008-08-28 21:40:38 +00001348 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001349 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001350
Rafael Espindola3b2df102009-04-08 21:14:34 +00001351 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001352 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001353}
1354
Chris Lattner398195e2006-10-07 21:55:32 +00001355/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1356/// match a load whose top elements are either undef or zeros. The load flavor
1357/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001358///
1359/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001360/// PatternChainNode: this is the matched node that has a chain input and
1361/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001362bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001363 SDValue N, SDValue &Base,
1364 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001365 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001366 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001367 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001368 PatternNodeWithChain = N.getOperand(0);
1369 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1370 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001371 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001372 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001373 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001374 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001375 return false;
1376 return true;
1377 }
1378 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001379
1380 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001381 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001382 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001383 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001384 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001385 N.getOperand(0).getNode()->hasOneUse() &&
1386 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001387 N.getOperand(0).getOperand(0).hasOneUse() &&
1388 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001389 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001390 // Okay, this is a zero extending load. Fold it.
1391 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001392 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001393 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001394 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001395 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001396 }
Chris Lattner398195e2006-10-07 21:55:32 +00001397 return false;
1398}
1399
1400
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001401bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1402 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1403 uint64_t ImmVal = CN->getZExtValue();
1404 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1405 return false;
1406
1407 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1408 return true;
1409 }
1410
1411 // In static codegen with small code model, we can get the address of a label
1412 // into a register with 'movl'. TableGen has already made sure we're looking
1413 // at a label of some kind.
Tim Northover6833e3f2013-06-10 20:43:49 +00001414 assert(N->getOpcode() == X86ISD::Wrapper &&
1415 "Unexpected node type for MOV32ri64");
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001416 N = N.getOperand(0);
1417
1418 if (N->getOpcode() != ISD::TargetConstantPool &&
1419 N->getOpcode() != ISD::TargetJumpTable &&
1420 N->getOpcode() != ISD::TargetGlobalAddress &&
1421 N->getOpcode() != ISD::TargetExternalSymbol &&
1422 N->getOpcode() != ISD::TargetBlockAddress)
1423 return false;
1424
1425 Imm = N;
1426 return TM.getCodeModel() == CodeModel::Small;
1427}
1428
Tim Northover6833e3f2013-06-10 20:43:49 +00001429bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1430 SDValue &Scale, SDValue &Index,
1431 SDValue &Disp, SDValue &Segment) {
1432 if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1433 return false;
1434
1435 SDLoc DL(N);
1436 RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1437 if (RN && RN->getReg() == 0)
1438 Base = CurDAG->getRegister(0, MVT::i64);
Pavel Chupin01a4e0a2014-08-20 11:59:22 +00001439 else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(Base)) {
Tim Northover6833e3f2013-06-10 20:43:49 +00001440 // Base could already be %rip, particularly in the x32 ABI.
1441 Base = SDValue(CurDAG->getMachineNode(
1442 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1443 CurDAG->getTargetConstant(0, MVT::i64),
1444 Base,
1445 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1446 0);
1447 }
1448
1449 RN = dyn_cast<RegisterSDNode>(Index);
1450 if (RN && RN->getReg() == 0)
1451 Index = CurDAG->getRegister(0, MVT::i64);
1452 else {
1453 assert(Index.getValueType() == MVT::i32 &&
1454 "Expect to be extending 32-bit registers for use in LEA");
1455 Index = SDValue(CurDAG->getMachineNode(
1456 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1457 CurDAG->getTargetConstant(0, MVT::i64),
1458 Index,
1459 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1460 0);
1461 }
1462
1463 return true;
1464}
1465
Evan Cheng77d86ff2006-02-25 10:09:08 +00001466/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1467/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001468bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001469 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001470 SDValue &Index, SDValue &Disp,
1471 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001472 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001473
1474 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1475 // segments.
1476 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001477 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001478 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001479 if (MatchAddress(N, AM))
1480 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001481 assert (T == AM.Segment);
1482 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001483
Craig Topper83e042a2013-08-15 05:57:07 +00001484 MVT VT = N.getSimpleValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001485 unsigned Complexity = 0;
1486 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001487 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001488 Complexity = 1;
1489 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001490 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001491 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1492 Complexity = 4;
1493
Gabor Greiff304a7a2008-08-28 21:40:38 +00001494 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001495 Complexity++;
1496 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001497 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001498
Chris Lattner3e1d9172007-03-20 06:08:29 +00001499 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1500 // a simple shift.
1501 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001502 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001503
1504 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1505 // to a LEA. This is determined with some expermentation but is by no means
1506 // optimal (especially for code size consideration). LEA is nice because of
1507 // its three-address nature. Tweak the cost function again when we can run
1508 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001509 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001510 // For X86-64, we should always use lea to materialize RIP relative
1511 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001512 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001513 Complexity = 4;
1514 else
1515 Complexity += 2;
1516 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001517
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001518 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001519 Complexity++;
1520
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001521 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001522 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001523 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001524
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001525 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1526 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001527}
1528
Chris Lattner7d2b0492009-06-20 20:38:48 +00001529/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001530bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001531 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001532 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001533 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1534 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001535
Chris Lattner7d2b0492009-06-20 20:38:48 +00001536 X86ISelAddressMode AM;
1537 AM.GV = GA->getGlobal();
1538 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001539 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001540 AM.SymbolFlags = GA->getTargetFlags();
1541
Owen Anderson9f944592009-08-11 20:47:22 +00001542 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001543 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001544 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001545 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001546 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001547 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001548
Chris Lattner7d2b0492009-06-20 20:38:48 +00001549 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1550 return true;
1551}
1552
1553
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001554bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001555 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001556 SDValue &Index, SDValue &Disp,
1557 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001558 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1559 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001560 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001561 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001562
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001563 return SelectAddr(N.getNode(),
1564 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001565}
1566
Dan Gohman24300732008-09-23 18:22:58 +00001567/// getGlobalBaseReg - Return an SDNode that returns the value of
1568/// the global base register. Output instructions required to
1569/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001570///
Evan Cheng61413a32006-08-26 05:34:46 +00001571SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001572 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Eric Christopherb17140d2014-10-08 07:32:17 +00001573 return CurDAG->getRegister(GlobalBaseReg, TLI->getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001574}
1575
Michael Liao83725392012-09-19 19:36:58 +00001576/// Atomic opcode table
1577///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001578enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001579 ADD,
1580 SUB,
1581 INC,
1582 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001583 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001584 AND,
1585 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001586 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001587};
1588
1589enum AtomicSz {
1590 ConstantI8,
1591 I8,
1592 SextConstantI16,
1593 ConstantI16,
1594 I16,
1595 SextConstantI32,
1596 ConstantI32,
1597 I32,
1598 SextConstantI64,
1599 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001600 I64,
1601 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001602};
1603
Craig Topper2dac9622012-03-09 07:45:21 +00001604static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001605 {
Michael Liao83725392012-09-19 19:36:58 +00001606 X86::LOCK_ADD8mi,
1607 X86::LOCK_ADD8mr,
1608 X86::LOCK_ADD16mi8,
1609 X86::LOCK_ADD16mi,
1610 X86::LOCK_ADD16mr,
1611 X86::LOCK_ADD32mi8,
1612 X86::LOCK_ADD32mi,
1613 X86::LOCK_ADD32mr,
1614 X86::LOCK_ADD64mi8,
1615 X86::LOCK_ADD64mi32,
1616 X86::LOCK_ADD64mr,
1617 },
1618 {
1619 X86::LOCK_SUB8mi,
1620 X86::LOCK_SUB8mr,
1621 X86::LOCK_SUB16mi8,
1622 X86::LOCK_SUB16mi,
1623 X86::LOCK_SUB16mr,
1624 X86::LOCK_SUB32mi8,
1625 X86::LOCK_SUB32mi,
1626 X86::LOCK_SUB32mr,
1627 X86::LOCK_SUB64mi8,
1628 X86::LOCK_SUB64mi32,
1629 X86::LOCK_SUB64mr,
1630 },
1631 {
1632 0,
1633 X86::LOCK_INC8m,
1634 0,
1635 0,
1636 X86::LOCK_INC16m,
1637 0,
1638 0,
1639 X86::LOCK_INC32m,
1640 0,
1641 0,
1642 X86::LOCK_INC64m,
1643 },
1644 {
1645 0,
1646 X86::LOCK_DEC8m,
1647 0,
1648 0,
1649 X86::LOCK_DEC16m,
1650 0,
1651 0,
1652 X86::LOCK_DEC32m,
1653 0,
1654 0,
1655 X86::LOCK_DEC64m,
1656 },
1657 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001658 X86::LOCK_OR8mi,
1659 X86::LOCK_OR8mr,
1660 X86::LOCK_OR16mi8,
1661 X86::LOCK_OR16mi,
1662 X86::LOCK_OR16mr,
1663 X86::LOCK_OR32mi8,
1664 X86::LOCK_OR32mi,
1665 X86::LOCK_OR32mr,
1666 X86::LOCK_OR64mi8,
1667 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001668 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001669 },
1670 {
1671 X86::LOCK_AND8mi,
1672 X86::LOCK_AND8mr,
1673 X86::LOCK_AND16mi8,
1674 X86::LOCK_AND16mi,
1675 X86::LOCK_AND16mr,
1676 X86::LOCK_AND32mi8,
1677 X86::LOCK_AND32mi,
1678 X86::LOCK_AND32mr,
1679 X86::LOCK_AND64mi8,
1680 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001681 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001682 },
1683 {
1684 X86::LOCK_XOR8mi,
1685 X86::LOCK_XOR8mr,
1686 X86::LOCK_XOR16mi8,
1687 X86::LOCK_XOR16mi,
1688 X86::LOCK_XOR16mr,
1689 X86::LOCK_XOR32mi8,
1690 X86::LOCK_XOR32mi,
1691 X86::LOCK_XOR32mr,
1692 X86::LOCK_XOR64mi8,
1693 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001694 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001695 }
1696};
1697
Michael Liao83725392012-09-19 19:36:58 +00001698// Return the target constant operand for atomic-load-op and do simple
1699// translations, such as from atomic-load-add to lock-sub. The return value is
1700// one of the following 3 cases:
1701// + target-constant, the operand could be supported as a target constant.
1702// + empty, the operand is not needed any more with the new op selected.
1703// + non-empty, otherwise.
1704static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001705 SDLoc dl,
Craig Topper83e042a2013-08-15 05:57:07 +00001706 enum AtomicOpc &Op, MVT NVT,
Robin Morisset6f3d04e2014-10-08 23:16:23 +00001707 SDValue Val,
1708 const X86Subtarget *Subtarget) {
Michael Liao83725392012-09-19 19:36:58 +00001709 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1710 int64_t CNVal = CN->getSExtValue();
1711 // Quit if not 32-bit imm.
1712 if ((int32_t)CNVal != CNVal)
1713 return Val;
Robin Morisset880580b2014-10-07 23:53:57 +00001714 // Quit if INT32_MIN: it would be negated as it is negative and overflow,
1715 // producing an immediate that does not fit in the 32 bits available for
1716 // an immediate operand to sub. However, it still fits in 32 bits for the
1717 // add (since it is not negated) so we can return target-constant.
1718 if (CNVal == INT32_MIN)
1719 return CurDAG->getTargetConstant(CNVal, NVT);
Michael Liao83725392012-09-19 19:36:58 +00001720 // For atomic-load-add, we could do some optimizations.
1721 if (Op == ADD) {
1722 // Translate to INC/DEC if ADD by 1 or -1.
Robin Morisset6f3d04e2014-10-08 23:16:23 +00001723 if (((CNVal == 1) || (CNVal == -1)) && !Subtarget->slowIncDec()) {
Michael Liao83725392012-09-19 19:36:58 +00001724 Op = (CNVal == 1) ? INC : DEC;
1725 // No more constant operand after being translated into INC/DEC.
1726 return SDValue();
1727 }
1728 // Translate to SUB if ADD by negative value.
1729 if (CNVal < 0) {
1730 Op = SUB;
1731 CNVal = -CNVal;
1732 }
1733 }
1734 return CurDAG->getTargetConstant(CNVal, NVT);
1735 }
1736
1737 // If the value operand is single-used, try to optimize it.
1738 if (Op == ADD && Val.hasOneUse()) {
1739 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1740 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1741 Op = SUB;
1742 return Val.getOperand(1);
1743 }
1744 // A special case for i16, which needs truncating as, in most cases, it's
1745 // promoted to i32. We will translate
1746 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1747 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1748 Val.getOperand(0).getOpcode() == ISD::SUB &&
1749 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1750 Op = SUB;
1751 Val = Val.getOperand(0);
1752 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1753 Val.getOperand(1));
1754 }
1755 }
1756
1757 return Val;
1758}
1759
Craig Topper83e042a2013-08-15 05:57:07 +00001760SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001761 if (Node->hasAnyUseOfValue(0))
Craig Topper062a2ba2014-04-25 05:30:21 +00001762 return nullptr;
Chad Rosier24c19d22012-08-01 18:39:17 +00001763
Andrew Trickef9de2a2013-05-25 02:42:55 +00001764 SDLoc dl(Node);
Michael Liao83725392012-09-19 19:36:58 +00001765
Eric Christopher56a42eb2011-05-17 08:16:14 +00001766 // Optimize common patterns for __sync_or_and_fetch and similar arith
1767 // operations where the result is not used. This allows us to use the "lock"
1768 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001769 SDValue Chain = Node->getOperand(0);
1770 SDValue Ptr = Node->getOperand(1);
1771 SDValue Val = Node->getOperand(2);
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001772 SDValue Base, Scale, Index, Disp, Segment;
1773 if (!SelectAddr(Node, Ptr, Base, Scale, Index, Disp, Segment))
Craig Topper062a2ba2014-04-25 05:30:21 +00001774 return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001775
Eric Christophera1d9e292011-05-17 08:10:18 +00001776 // Which index into the table.
1777 enum AtomicOpc Op;
1778 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001779 default:
Craig Topper062a2ba2014-04-25 05:30:21 +00001780 return nullptr;
Eric Christophera1d9e292011-05-17 08:10:18 +00001781 case ISD::ATOMIC_LOAD_OR:
1782 Op = OR;
1783 break;
1784 case ISD::ATOMIC_LOAD_AND:
1785 Op = AND;
1786 break;
1787 case ISD::ATOMIC_LOAD_XOR:
1788 Op = XOR;
1789 break;
Michael Liao83725392012-09-19 19:36:58 +00001790 case ISD::ATOMIC_LOAD_ADD:
1791 Op = ADD;
1792 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001793 }
Andrew Trick52b83872013-04-13 06:07:36 +00001794
Robin Morisset6f3d04e2014-10-08 23:16:23 +00001795 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val, Subtarget);
Michael Liao83725392012-09-19 19:36:58 +00001796 bool isUnOp = !Val.getNode();
1797 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001798
Eric Christopher4a34e612011-05-10 23:57:45 +00001799 unsigned Opc = 0;
Craig Topper83e042a2013-08-15 05:57:07 +00001800 switch (NVT.SimpleTy) {
Craig Topper062a2ba2014-04-25 05:30:21 +00001801 default: return nullptr;
Eric Christopher4a34e612011-05-10 23:57:45 +00001802 case MVT::i8:
1803 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001804 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001805 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001806 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001807 break;
1808 case MVT::i16:
1809 if (isCN) {
1810 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001811 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001812 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001813 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001814 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001815 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001816 break;
1817 case MVT::i32:
1818 if (isCN) {
1819 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001820 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001821 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001822 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001823 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001824 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001825 break;
1826 case MVT::i64:
1827 if (isCN) {
1828 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001829 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001830 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001831 Opc = AtomicOpcTbl[Op][ConstantI64];
Robin Morisset880580b2014-10-07 23:53:57 +00001832 else
1833 llvm_unreachable("True 64 bits constant in SelectAtomicLoadArith");
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001834 } else
1835 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001836 break;
1837 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001838
Eric Christopherc93217372011-06-30 00:48:30 +00001839 assert(Opc != 0 && "Invalid arith lock transform!");
1840
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001841 // Building the new node.
Michael Liao83725392012-09-19 19:36:58 +00001842 SDValue Ret;
Michael Liao83725392012-09-19 19:36:58 +00001843 if (isUnOp) {
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001844 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001845 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001846 } else {
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001847 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Val, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001848 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001849 }
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001850
1851 // Copying the MachineMemOperand.
1852 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1853 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Eric Christopher4a34e612011-05-10 23:57:45 +00001854 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Robin Morisset5ce0ce42014-08-29 20:19:23 +00001855
1856 // We need to have two outputs as that is what the original instruction had.
1857 // So we add a dummy, undefined output. This is safe as we checked first
1858 // that no-one uses our output anyway.
1859 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1860 dl, NVT), 0);
Eric Christopher4a34e612011-05-10 23:57:45 +00001861 SDValue RetVals[] = { Undef, Ret };
Craig Topper64941d92014-04-27 19:20:57 +00001862 return CurDAG->getMergeValues(RetVals, dl).getNode();
Eric Christopher4a34e612011-05-10 23:57:45 +00001863}
1864
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001865/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1866/// any uses which require the SF or OF bits to be accurate.
1867static bool HasNoSignedComparisonUses(SDNode *N) {
1868 // Examine each user of the node.
1869 for (SDNode::use_iterator UI = N->use_begin(),
1870 UE = N->use_end(); UI != UE; ++UI) {
1871 // Only examine CopyToReg uses.
1872 if (UI->getOpcode() != ISD::CopyToReg)
1873 return false;
1874 // Only examine CopyToReg uses that copy to EFLAGS.
1875 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1876 X86::EFLAGS)
1877 return false;
1878 // Examine each user of the CopyToReg use.
1879 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1880 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1881 // Only examine the Flag result.
1882 if (FlagUI.getUse().getResNo() != 1) continue;
1883 // Anything unusual: assume conservatively.
1884 if (!FlagUI->isMachineOpcode()) return false;
1885 // Examine the opcode of the user.
1886 switch (FlagUI->getMachineOpcode()) {
1887 // These comparisons don't treat the most significant bit specially.
1888 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1889 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1890 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1891 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Craig Topper49758aa2015-01-06 04:23:53 +00001892 case X86::JA_1: case X86::JAE_1: case X86::JB_1: case X86::JBE_1:
1893 case X86::JE_1: case X86::JNE_1: case X86::JP_1: case X86::JNP_1:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001894 case X86::CMOVA16rr: case X86::CMOVA16rm:
1895 case X86::CMOVA32rr: case X86::CMOVA32rm:
1896 case X86::CMOVA64rr: case X86::CMOVA64rm:
1897 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1898 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1899 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1900 case X86::CMOVB16rr: case X86::CMOVB16rm:
1901 case X86::CMOVB32rr: case X86::CMOVB32rm:
1902 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001903 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1904 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1905 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001906 case X86::CMOVE16rr: case X86::CMOVE16rm:
1907 case X86::CMOVE32rr: case X86::CMOVE32rm:
1908 case X86::CMOVE64rr: case X86::CMOVE64rm:
1909 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1910 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1911 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1912 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1913 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1914 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1915 case X86::CMOVP16rr: case X86::CMOVP16rm:
1916 case X86::CMOVP32rr: case X86::CMOVP32rm:
1917 case X86::CMOVP64rr: case X86::CMOVP64rm:
1918 continue;
1919 // Anything else: assume conservatively.
1920 default: return false;
1921 }
1922 }
1923 }
1924 return true;
1925}
1926
Joel Jones68d59e82012-03-29 05:45:48 +00001927/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1928/// is suitable for doing the {load; increment or decrement; store} to modify
1929/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001930static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001931 SDValue StoredVal, SelectionDAG *CurDAG,
1932 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001933
1934 // is the value stored the result of a DEC or INC?
1935 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1936
Joel Jones68d59e82012-03-29 05:45:48 +00001937 // is the stored value result 0 of the load?
1938 if (StoredVal.getResNo() != 0) return false;
1939
1940 // are there other uses of the loaded value than the inc or dec?
1941 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1942
Joel Jones68d59e82012-03-29 05:45:48 +00001943 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001944 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001945 return false;
1946
Evan Cheng3e869f02012-04-12 19:14:21 +00001947 SDValue Load = StoredVal->getOperand(0);
1948 // Is the stored value a non-extending and non-indexed load?
1949 if (!ISD::isNormalLoad(Load.getNode())) return false;
1950
1951 // Return LoadNode by reference.
1952 LoadNode = cast<LoadSDNode>(Load);
1953 // 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 +00001954 EVT LdVT = LoadNode->getMemoryVT();
1955 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001956 LdVT != MVT::i8)
1957 return false;
1958
1959 // Is store the only read of the loaded value?
1960 if (!Load.hasOneUse())
1961 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001962
Evan Cheng3e869f02012-04-12 19:14:21 +00001963 // Is the address of the store the same as the load?
1964 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1965 LoadNode->getOffset() != StoreNode->getOffset())
1966 return false;
1967
1968 // Check if the chain is produced by the load or is a TokenFactor with
1969 // the load output chain as an operand. Return InputChain by reference.
1970 SDValue Chain = StoreNode->getChain();
1971
1972 bool ChainCheck = false;
1973 if (Chain == Load.getValue(1)) {
1974 ChainCheck = true;
1975 InputChain = LoadNode->getChain();
1976 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1977 SmallVector<SDValue, 4> ChainOps;
1978 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1979 SDValue Op = Chain.getOperand(i);
1980 if (Op == Load.getValue(1)) {
1981 ChainCheck = true;
1982 continue;
1983 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001984
1985 // Make sure using Op as part of the chain would not cause a cycle here.
1986 // In theory, we could check whether the chain node is a predecessor of
1987 // the load. But that can be very expensive. Instead visit the uses and
1988 // make sure they all have smaller node id than the load.
1989 int LoadId = LoadNode->getNodeId();
1990 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1991 UE = UI->use_end(); UI != UE; ++UI) {
1992 if (UI.getUse().getResNo() != 0)
1993 continue;
1994 if (UI->getNodeId() > LoadId)
1995 return false;
1996 }
1997
Evan Cheng3e869f02012-04-12 19:14:21 +00001998 ChainOps.push_back(Op);
1999 }
2000
2001 if (ChainCheck)
2002 // Make a new TokenFactor with all the other input chains except
2003 // for the load.
Andrew Trickef9de2a2013-05-25 02:42:55 +00002004 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Craig Topper48d114b2014-04-26 18:35:24 +00002005 MVT::Other, ChainOps);
Evan Cheng3e869f02012-04-12 19:14:21 +00002006 }
2007 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00002008 return false;
2009
2010 return true;
2011}
2012
Benjamin Kramer8619c372012-03-29 12:37:26 +00002013/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2014/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00002015static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2016 if (Opc == X86ISD::DEC) {
2017 if (LdVT == MVT::i64) return X86::DEC64m;
2018 if (LdVT == MVT::i32) return X86::DEC32m;
2019 if (LdVT == MVT::i16) return X86::DEC16m;
2020 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00002021 } else {
2022 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00002023 if (LdVT == MVT::i64) return X86::INC64m;
2024 if (LdVT == MVT::i32) return X86::INC32m;
2025 if (LdVT == MVT::i16) return X86::INC16m;
2026 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00002027 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00002028 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00002029}
2030
Manman Rena0982042012-06-26 19:47:59 +00002031/// SelectGather - Customized ISel for GATHER operations.
2032///
2033SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2034 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2035 SDValue Chain = Node->getOperand(0);
2036 SDValue VSrc = Node->getOperand(2);
2037 SDValue Base = Node->getOperand(3);
2038 SDValue VIdx = Node->getOperand(4);
2039 SDValue VMask = Node->getOperand(5);
2040 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00002041 if (!Scale)
Craig Topper062a2ba2014-04-25 05:30:21 +00002042 return nullptr;
Manman Rena0982042012-06-26 19:47:59 +00002043
Craig Topperf7755df2012-07-12 06:52:41 +00002044 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2045 MVT::Other);
2046
Manman Rena0982042012-06-26 19:47:59 +00002047 // Memory Operands: Base, Scale, Index, Disp, Segment
2048 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
2049 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2050 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
2051 Disp, Segment, VMask, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00002052 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topperf7755df2012-07-12 06:52:41 +00002053 // Node has 2 outputs: VDst and MVT::Other.
2054 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2055 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2056 // of ResNode.
2057 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2058 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00002059 return ResNode;
2060}
2061
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002062SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Craig Topper83e042a2013-08-15 05:57:07 +00002063 MVT NVT = Node->getSimpleValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00002064 unsigned Opc, MOpc;
2065 unsigned Opcode = Node->getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002066 SDLoc dl(Node);
Chad Rosier24c19d22012-08-01 18:39:17 +00002067
Chris Lattnerf98f1242010-03-02 06:34:30 +00002068 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00002069
Dan Gohman17059682008-07-17 19:10:17 +00002070 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00002071 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Tim Northover31d093c2013-09-22 08:21:56 +00002072 Node->setNodeId(-1);
Craig Topper062a2ba2014-04-25 05:30:21 +00002073 return nullptr; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00002074 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00002075
Evan Cheng10d27902006-01-06 20:36:21 +00002076 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00002077 default: break;
Manman Rena0982042012-06-26 19:47:59 +00002078 case ISD::INTRINSIC_W_CHAIN: {
2079 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2080 switch (IntNo) {
2081 default: break;
2082 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002083 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002084 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002085 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002086 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002087 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002088 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002089 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002090 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002091 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002092 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002093 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002094 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002095 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002096 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002097 case Intrinsic::x86_avx2_gather_q_d_256: {
Michael Liao00b20cc2013-06-05 18:12:26 +00002098 if (!Subtarget->hasAVX2())
2099 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002100 unsigned Opc;
2101 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002102 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002103 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2104 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2105 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2106 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2107 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2108 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2109 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2110 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2111 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2112 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2113 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2114 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2115 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2116 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2117 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2118 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2119 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002120 SDNode *RetVal = SelectGather(Node, Opc);
2121 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002122 // We already called ReplaceUses inside SelectGather.
Craig Topper062a2ba2014-04-25 05:30:21 +00002123 return nullptr;
Craig Toppere15e5f72012-07-01 02:18:18 +00002124 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002125 }
Manman Rena0982042012-06-26 19:47:59 +00002126 }
2127 break;
2128 }
Dan Gohman757eee82009-08-02 16:10:52 +00002129 case X86ISD::GlobalBaseReg:
2130 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002131
Quentin Colombetdbe33e72014-11-06 02:25:03 +00002132 case X86ISD::SHRUNKBLEND: {
2133 // SHRUNKBLEND selects like a regular VSELECT.
2134 SDValue VSelect = CurDAG->getNode(
2135 ISD::VSELECT, SDLoc(Node), Node->getValueType(0), Node->getOperand(0),
2136 Node->getOperand(1), Node->getOperand(2));
2137 ReplaceUses(SDValue(Node, 0), VSelect);
2138 SelectCode(VSelect.getNode());
2139 // We already called ReplaceUses.
2140 return nullptr;
2141 }
Craig Topper3af251d2012-07-01 02:55:34 +00002142
Eric Christophera1d9e292011-05-17 08:10:18 +00002143 case ISD::ATOMIC_LOAD_XOR:
2144 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002145 case ISD::ATOMIC_LOAD_OR:
2146 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002147 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002148 if (RetVal)
2149 return RetVal;
2150 break;
2151 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002152 case ISD::AND:
2153 case ISD::OR:
2154 case ISD::XOR: {
2155 // For operations of the form (x << C1) op C2, check if we can use a smaller
2156 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2157 SDValue N0 = Node->getOperand(0);
2158 SDValue N1 = Node->getOperand(1);
2159
2160 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2161 break;
2162
2163 // i8 is unshrinkable, i16 should be promoted to i32.
2164 if (NVT != MVT::i32 && NVT != MVT::i64)
2165 break;
2166
2167 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2168 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2169 if (!Cst || !ShlCst)
2170 break;
2171
2172 int64_t Val = Cst->getSExtValue();
2173 uint64_t ShlVal = ShlCst->getZExtValue();
2174
2175 // Make sure that we don't change the operation by removing bits.
2176 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002177 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2178 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002179 break;
2180
Craig Topper22cb0c52012-08-11 17:44:14 +00002181 unsigned ShlOp, Op;
Craig Topper83e042a2013-08-15 05:57:07 +00002182 MVT CstVT = NVT;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002183
2184 // Check the minimum bitwidth for the new constant.
2185 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2186 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2187 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2188 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2189 CstVT = MVT::i8;
2190 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2191 CstVT = MVT::i32;
2192
2193 // Bail if there is no smaller encoding.
2194 if (NVT == CstVT)
2195 break;
2196
Craig Topper83e042a2013-08-15 05:57:07 +00002197 switch (NVT.SimpleTy) {
Benjamin Kramer4c816242011-04-22 15:30:40 +00002198 default: llvm_unreachable("Unsupported VT!");
2199 case MVT::i32:
2200 assert(CstVT == MVT::i8);
2201 ShlOp = X86::SHL32ri;
2202
2203 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002204 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002205 case ISD::AND: Op = X86::AND32ri8; break;
2206 case ISD::OR: Op = X86::OR32ri8; break;
2207 case ISD::XOR: Op = X86::XOR32ri8; break;
2208 }
2209 break;
2210 case MVT::i64:
2211 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2212 ShlOp = X86::SHL64ri;
2213
2214 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002215 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002216 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2217 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2218 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2219 }
2220 break;
2221 }
2222
2223 // Emit the smaller op and the shift.
2224 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2225 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2226 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2227 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002228 }
Ahmed Bougacha5175bcf2014-10-23 21:55:31 +00002229 case X86ISD::UMUL8:
2230 case X86ISD::SMUL8: {
2231 SDValue N0 = Node->getOperand(0);
2232 SDValue N1 = Node->getOperand(1);
2233
2234 Opc = (Opcode == X86ISD::SMUL8 ? X86::IMUL8r : X86::MUL8r);
2235
2236 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, X86::AL,
2237 N0, SDValue()).getValue(1);
2238
2239 SDVTList VTs = CurDAG->getVTList(NVT, MVT::i32);
2240 SDValue Ops[] = {N1, InFlag};
2241 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2242
2243 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2244 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2245 return nullptr;
2246 }
2247
Chris Lattner364bb0a2010-12-05 07:30:36 +00002248 case X86ISD::UMUL: {
2249 SDValue N0 = Node->getOperand(0);
2250 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002251
Ted Kremenekb5241b22011-01-14 22:34:13 +00002252 unsigned LoReg;
Craig Topper83e042a2013-08-15 05:57:07 +00002253 switch (NVT.SimpleTy) {
Chris Lattner364bb0a2010-12-05 07:30:36 +00002254 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002255 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2256 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2257 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2258 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002259 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002260
Chris Lattner364bb0a2010-12-05 07:30:36 +00002261 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2262 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002263
Chris Lattner364bb0a2010-12-05 07:30:36 +00002264 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2265 SDValue Ops[] = {N1, InFlag};
Michael Liaob53d8962013-04-19 22:22:57 +00002266 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosier24c19d22012-08-01 18:39:17 +00002267
Chris Lattner364bb0a2010-12-05 07:30:36 +00002268 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2269 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2270 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
Craig Topper062a2ba2014-04-25 05:30:21 +00002271 return nullptr;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002272 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002273
Dan Gohman757eee82009-08-02 16:10:52 +00002274 case ISD::SMUL_LOHI:
2275 case ISD::UMUL_LOHI: {
2276 SDValue N0 = Node->getOperand(0);
2277 SDValue N1 = Node->getOperand(1);
2278
2279 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002280 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002281 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002282 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002283 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002284 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2285 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002286 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2287 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2288 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2289 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002290 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002291 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002292 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002293 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002294 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2295 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2296 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2297 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002298 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002299 }
Dan Gohman757eee82009-08-02 16:10:52 +00002300
Michael Liaof9f7b552012-09-26 08:22:37 +00002301 unsigned SrcReg, LoReg, HiReg;
2302 switch (Opc) {
2303 default: llvm_unreachable("Unknown MUL opcode!");
2304 case X86::IMUL8r:
2305 case X86::MUL8r:
2306 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2307 break;
2308 case X86::IMUL16r:
2309 case X86::MUL16r:
2310 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2311 break;
2312 case X86::IMUL32r:
2313 case X86::MUL32r:
2314 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2315 break;
2316 case X86::IMUL64r:
2317 case X86::MUL64r:
2318 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2319 break;
2320 case X86::MULX32rr:
2321 SrcReg = X86::EDX; LoReg = HiReg = 0;
2322 break;
2323 case X86::MULX64rr:
2324 SrcReg = X86::RDX; LoReg = HiReg = 0;
2325 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002326 }
2327
2328 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002329 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002330 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002331 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002332 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002333 if (foldedLoad)
2334 std::swap(N0, N1);
2335 }
2336
Michael Liaof9f7b552012-09-26 08:22:37 +00002337 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002338 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002339 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002340
2341 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002342 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002343 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2344 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002345 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2346 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002347 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002348 ResHi = SDValue(CNode, 0);
2349 ResLo = SDValue(CNode, 1);
2350 Chain = SDValue(CNode, 2);
2351 InFlag = SDValue(CNode, 3);
2352 } else {
2353 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002354 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002355 Chain = SDValue(CNode, 0);
2356 InFlag = SDValue(CNode, 1);
2357 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002358
Dan Gohman757eee82009-08-02 16:10:52 +00002359 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002360 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002361 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002362 SDValue Ops[] = { N1, InFlag };
2363 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2364 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002365 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002366 ResHi = SDValue(CNode, 0);
2367 ResLo = SDValue(CNode, 1);
2368 InFlag = SDValue(CNode, 2);
2369 } else {
2370 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002371 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002372 InFlag = SDValue(CNode, 0);
2373 }
Dan Gohman757eee82009-08-02 16:10:52 +00002374 }
2375
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002376 // Prevent use of AH in a REX instruction by referencing AX instead.
2377 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2378 !SDValue(Node, 1).use_empty()) {
2379 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2380 X86::AX, MVT::i16, InFlag);
2381 InFlag = Result.getValue(2);
2382 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2383 // registers.
2384 if (!SDValue(Node, 0).use_empty())
2385 ReplaceUses(SDValue(Node, 1),
2386 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2387
2388 // Shift AX down 8 bits.
2389 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2390 Result,
2391 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2392 // Then truncate it down to i8.
2393 ReplaceUses(SDValue(Node, 1),
2394 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2395 }
Dan Gohman757eee82009-08-02 16:10:52 +00002396 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002397 if (!SDValue(Node, 0).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002398 if (!ResLo.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002399 assert(LoReg && "Register for low half is not defined!");
2400 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2401 InFlag);
2402 InFlag = ResLo.getValue(2);
2403 }
2404 ReplaceUses(SDValue(Node, 0), ResLo);
2405 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002406 }
2407 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002408 if (!SDValue(Node, 1).use_empty()) {
Craig Topper062a2ba2014-04-25 05:30:21 +00002409 if (!ResHi.getNode()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002410 assert(HiReg && "Register for high half is not defined!");
2411 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2412 InFlag);
2413 InFlag = ResHi.getValue(2);
2414 }
2415 ReplaceUses(SDValue(Node, 1), ResHi);
2416 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002417 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002418
Craig Topper062a2ba2014-04-25 05:30:21 +00002419 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002420 }
2421
2422 case ISD::SDIVREM:
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002423 case ISD::UDIVREM:
2424 case X86ISD::SDIVREM8_SEXT_HREG:
2425 case X86ISD::UDIVREM8_ZEXT_HREG: {
Dan Gohman757eee82009-08-02 16:10:52 +00002426 SDValue N0 = Node->getOperand(0);
2427 SDValue N1 = Node->getOperand(1);
2428
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002429 bool isSigned = (Opcode == ISD::SDIVREM ||
2430 Opcode == X86ISD::SDIVREM8_SEXT_HREG);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002431 if (!isSigned) {
Craig Topper83e042a2013-08-15 05:57:07 +00002432 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002433 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002434 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2435 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2436 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2437 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002438 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002439 } else {
Craig Topper83e042a2013-08-15 05:57:07 +00002440 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002441 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002442 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2443 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2444 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2445 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002446 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002447 }
Dan Gohman757eee82009-08-02 16:10:52 +00002448
Chris Lattner518b0372009-12-23 01:45:04 +00002449 unsigned LoReg, HiReg, ClrReg;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002450 unsigned SExtOpcode;
Craig Topper83e042a2013-08-15 05:57:07 +00002451 switch (NVT.SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002452 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002453 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002454 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002455 SExtOpcode = X86::CBW;
2456 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002457 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002458 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002459 ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002460 SExtOpcode = X86::CWD;
2461 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002462 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002463 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002464 SExtOpcode = X86::CDQ;
2465 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002466 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002467 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002468 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002469 break;
2470 }
2471
Dan Gohman757eee82009-08-02 16:10:52 +00002472 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002473 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002474 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002475
Dan Gohman757eee82009-08-02 16:10:52 +00002476 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002477 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002478 // Special case for div8, just use a move with zero extension to AX to
2479 // clear the upper 8 bits (AH).
2480 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002481 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002482 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2483 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002484 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +00002485 MVT::Other, Ops), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002486 Chain = Move.getValue(1);
2487 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002488 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002489 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002490 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002491 Chain = CurDAG->getEntryNode();
2492 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002493 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002494 InFlag = Chain.getValue(1);
2495 } else {
2496 InFlag =
2497 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2498 LoReg, N0, SDValue()).getValue(1);
2499 if (isSigned && !signBitIsZero) {
2500 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002501 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002502 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002503 } else {
2504 // Zero out the high part, effectively zero extending the input.
Michael Liao5bf95782014-12-04 05:20:33 +00002505 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
Craig Topper83e042a2013-08-15 05:57:07 +00002506 switch (NVT.SimpleTy) {
Tim Northover64ec0ff2013-05-30 13:19:42 +00002507 case MVT::i16:
2508 ClrNode =
2509 SDValue(CurDAG->getMachineNode(
2510 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2511 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2512 0);
2513 break;
2514 case MVT::i32:
2515 break;
2516 case MVT::i64:
2517 ClrNode =
2518 SDValue(CurDAG->getMachineNode(
2519 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2520 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2521 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2522 0);
2523 break;
2524 default:
2525 llvm_unreachable("Unexpected division source");
2526 }
2527
Chris Lattner518b0372009-12-23 01:45:04 +00002528 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002529 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002530 }
Evan Cheng92e27972006-01-06 23:19:29 +00002531 }
Dan Gohmana1603612007-10-08 18:33:35 +00002532
Dan Gohman757eee82009-08-02 16:10:52 +00002533 if (foldedLoad) {
2534 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2535 InFlag };
2536 SDNode *CNode =
Michael Liaob53d8962013-04-19 22:22:57 +00002537 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman757eee82009-08-02 16:10:52 +00002538 InFlag = SDValue(CNode, 1);
2539 // Update the chain.
2540 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2541 } else {
2542 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002543 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002544 }
Evan Cheng92e27972006-01-06 23:19:29 +00002545
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002546 // Prevent use of AH in a REX instruction by explicitly copying it to
2547 // an ABCD_L register.
Jim Grosbach340b6da2013-07-09 02:07:28 +00002548 //
2549 // The current assumption of the register allocator is that isel
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002550 // won't generate explicit references to the GR8_ABCD_H registers. If
Jim Grosbach340b6da2013-07-09 02:07:28 +00002551 // the allocator and/or the backend get enhanced to be more robust in
2552 // that regard, this can be, and should be, removed.
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002553 if (HiReg == X86::AH && !SDValue(Node, 1).use_empty()) {
2554 SDValue AHCopy = CurDAG->getRegister(X86::AH, MVT::i8);
2555 unsigned AHExtOpcode =
2556 isSigned ? X86::MOVSX32_NOREXrr8 : X86::MOVZX32_NOREXrr8;
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002557
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002558 SDNode *RNode = CurDAG->getMachineNode(AHExtOpcode, dl, MVT::i32,
2559 MVT::Glue, AHCopy, InFlag);
2560 SDValue Result(RNode, 0);
2561 InFlag = SDValue(RNode, 1);
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002562
Ahmed Bougacha12eb5582014-11-03 20:26:35 +00002563 if (Opcode == X86ISD::UDIVREM8_ZEXT_HREG ||
2564 Opcode == X86ISD::SDIVREM8_SEXT_HREG) {
2565 if (Node->getValueType(1) == MVT::i64) {
2566 // It's not possible to directly movsx AH to a 64bit register, because
2567 // the latter needs the REX prefix, but the former can't have it.
2568 assert(Opcode != X86ISD::SDIVREM8_SEXT_HREG &&
2569 "Unexpected i64 sext of h-register");
2570 Result =
2571 SDValue(CurDAG->getMachineNode(
2572 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2573 CurDAG->getTargetConstant(0, MVT::i64), Result,
2574 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2575 0);
2576 }
2577 } else {
2578 Result =
2579 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result);
2580 }
2581 ReplaceUses(SDValue(Node, 1), Result);
2582 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002583 }
Dan Gohman757eee82009-08-02 16:10:52 +00002584 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002585 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002586 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2587 LoReg, NVT, InFlag);
2588 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002589 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002590 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002591 }
2592 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002593 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002594 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2595 HiReg, NVT, InFlag);
2596 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002597 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002598 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002599 }
Craig Topper062a2ba2014-04-25 05:30:21 +00002600 return nullptr;
Dan Gohman757eee82009-08-02 16:10:52 +00002601 }
2602
Manman Ren1be131b2012-08-08 00:51:41 +00002603 case X86ISD::CMP:
2604 case X86ISD::SUB: {
2605 // Sometimes a SUB is used to perform comparison.
2606 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2607 // This node is not a CMP.
2608 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002609 SDValue N0 = Node->getOperand(0);
2610 SDValue N1 = Node->getOperand(1);
2611
Elena Demikhovsky34d2d762014-08-18 11:59:06 +00002612 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
Elena Demikhovskyd2cb3c82015-02-12 08:40:34 +00002613 HasNoSignedComparisonUses(Node))
Elena Demikhovsky34d2d762014-08-18 11:59:06 +00002614 N0 = N0.getOperand(0);
Elena Demikhovskyd2cb3c82015-02-12 08:40:34 +00002615
Dan Gohmanac33a902009-08-19 18:16:17 +00002616 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2617 // use a smaller encoding.
Elena Demikhovsky34d2d762014-08-18 11:59:06 +00002618 // Look past the truncate if CMP is the only use of it.
Dan Gohman198b7ff2011-11-03 21:49:52 +00002619 if ((N0.getNode()->getOpcode() == ISD::AND ||
2620 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2621 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002622 N0.getValueType() != MVT::i8 &&
2623 X86::isZeroNode(N1)) {
2624 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2625 if (!C) break;
2626
2627 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002628 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2629 (!(C->getZExtValue() & 0x80) ||
2630 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002631 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2632 SDValue Reg = N0.getNode()->getOperand(0);
2633
2634 // On x86-32, only the ABCD registers have 8-bit subregisters.
2635 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002636 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002637 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002638 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2639 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2640 default: llvm_unreachable("Unsupported TEST operand type!");
2641 }
2642 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002643 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2644 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002645 }
2646
2647 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002648 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002649 MVT::i8, Reg);
2650
2651 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002652 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2653 Subreg, Imm);
2654 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2655 // one, do not call ReplaceAllUsesWith.
2656 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2657 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002658 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002659 }
2660
2661 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002662 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2663 (!(C->getZExtValue() & 0x8000) ||
2664 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002665 // Shift the immediate right by 8 bits.
2666 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2667 MVT::i8);
2668 SDValue Reg = N0.getNode()->getOperand(0);
2669
2670 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002671 const TargetRegisterClass *TRC;
Craig Topper56710102013-08-15 02:33:50 +00002672 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002673 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2674 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2675 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2676 default: llvm_unreachable("Unsupported TEST operand type!");
2677 }
2678 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002679 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2680 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002681
2682 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002683 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002684 MVT::i8, Reg);
2685
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002686 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2687 // target GR8_NOREX registers, so make sure the register class is
2688 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002689 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2690 MVT::i32, Subreg, ShiftedImm);
2691 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2692 // one, do not call ReplaceAllUsesWith.
2693 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2694 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002695 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002696 }
2697
2698 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2699 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002700 N0.getValueType() != MVT::i16 &&
2701 (!(C->getZExtValue() & 0x8000) ||
2702 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002703 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2704 SDValue Reg = N0.getNode()->getOperand(0);
2705
2706 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002707 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002708 MVT::i16, Reg);
2709
2710 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002711 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2712 Subreg, Imm);
2713 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2714 // one, do not call ReplaceAllUsesWith.
2715 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2716 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002717 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002718 }
2719
2720 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2721 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002722 N0.getValueType() == MVT::i64 &&
2723 (!(C->getZExtValue() & 0x80000000) ||
2724 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002725 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2726 SDValue Reg = N0.getNode()->getOperand(0);
2727
2728 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002729 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002730 MVT::i32, Reg);
2731
2732 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002733 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2734 Subreg, Imm);
2735 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2736 // one, do not call ReplaceAllUsesWith.
2737 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2738 SDValue(NewNode, 0));
Craig Topper062a2ba2014-04-25 05:30:21 +00002739 return nullptr;
Dan Gohmanac33a902009-08-19 18:16:17 +00002740 }
2741 }
2742 break;
2743 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002744 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002745 // Change a chain of {load; incr or dec; store} of the same value into
2746 // a simple increment or decrement through memory of that value, if the
2747 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002748 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002749 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002750 // {INC,DEC}X{64,32,16,8}.)
2751 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002752 // node in the pattern to the result node. probably with a new keyword
2753 // for example, we have this
2754 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2755 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2756 // (implicit EFLAGS)]>;
2757 // but maybe need something like this
2758 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2759 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2760 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002761
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002762 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002763 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002764 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002765
Craig Topper062a2ba2014-04-25 05:30:21 +00002766 LoadSDNode *LoadNode = nullptr;
Evan Cheng3e869f02012-04-12 19:14:21 +00002767 SDValue InputChain;
2768 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2769 LoadNode, InputChain))
2770 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002771
2772 SDValue Base, Scale, Index, Disp, Segment;
2773 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2774 Base, Scale, Index, Disp, Segment))
2775 break;
2776
2777 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2778 MemOp[0] = StoreNode->getMemOperand();
2779 MemOp[1] = LoadNode->getMemOperand();
2780 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002781 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002782 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2783 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002784 SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00002785 MVT::i32, MVT::Other, Ops);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002786 Result->setMemRefs(MemOp, MemOp + 2);
2787
2788 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2789 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2790
2791 return Result;
2792 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002793 }
2794
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002795 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002796
Chris Lattnerf98f1242010-03-02 06:34:30 +00002797 DEBUG(dbgs() << "=> ";
Craig Toppere73658d2014-04-28 04:05:08 +00002798 if (ResNode == nullptr || ResNode == Node)
Chris Lattnerf98f1242010-03-02 06:34:30 +00002799 Node->dump(CurDAG);
2800 else
2801 ResNode->dump(CurDAG);
2802 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002803
2804 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002805}
2806
Chris Lattnerba1ed582006-06-08 18:03:49 +00002807bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002808SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002809 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002810 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002811 switch (ConstraintCode) {
2812 case 'o': // offsetable ??
2813 case 'v': // not offsetable ??
2814 default: return true;
2815 case 'm': // memory
Craig Topper062a2ba2014-04-25 05:30:21 +00002816 if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002817 return true;
2818 break;
2819 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002820
Evan Cheng2d487222006-08-26 01:05:16 +00002821 OutOps.push_back(Op0);
2822 OutOps.push_back(Op1);
2823 OutOps.push_back(Op2);
2824 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002825 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002826 return false;
2827}
2828
Chad Rosier24c19d22012-08-01 18:39:17 +00002829/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002830/// X86-specific DAG, ready for instruction scheduling.
2831///
Bill Wendling026e5d72009-04-29 23:29:43 +00002832FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002833 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002834 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002835}