blob: 02f5fe495254633d870faebfbf76a8a2b3bd4f3a [file] [log] [blame]
Chris Lattner5930d3d2005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattner655e7df2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattner655e7df2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Evan Chengb9d34bd2006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattner655e7df2005-11-16 01:54:32 +000016#include "X86.h"
Evan Chengbc7a0f442006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Chengf55b7382008-01-05 00:41:47 +000018#include "X86MachineFunctionInfo.h"
Chris Lattner7c551262006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Cheng2dd2c652006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/ADT/Statistic.h"
Evan Cheng73a1ad92006-01-10 20:26:56 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner7c551262006-01-11 01:15:34 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattnera10fff52007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000027#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/Type.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000031#include "llvm/Support/Debug.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000032#include "llvm/Support/ErrorHandling.h"
Evan Cheng11b0a5d2006-09-08 06:48:29 +000033#include "llvm/Support/MathExtras.h"
Torok Edwinfb8d6d52009-07-08 20:53:28 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Target/TargetMachine.h"
36#include "llvm/Target/TargetOptions.h"
Chris Lattner655e7df2005-11-16 01:54:32 +000037using namespace llvm;
38
Chris Lattner1ef9cd42006-12-19 22:59:26 +000039STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
40
Chris Lattner655e7df2005-11-16 01:54:32 +000041//===----------------------------------------------------------------------===//
42// Pattern Matcher Implementation
43//===----------------------------------------------------------------------===//
44
45namespace {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000046 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman2ce6f2a2008-07-27 21:46:04 +000047 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattner3f0f71b2005-11-19 02:11:08 +000048 /// tree.
49 struct X86ISelAddressMode {
50 enum {
51 RegBase,
Chris Lattneraa2372562006-05-24 17:04:05 +000052 FrameIndexBase
Chris Lattner3f0f71b2005-11-19 02:11:08 +000053 } BaseType;
54
Dan Gohman0fd54fb2010-04-29 23:30:41 +000055 // This is really a union, discriminated by BaseType!
56 SDValue Base_Reg;
57 int Base_FrameIndex;
Chris Lattner3f0f71b2005-11-19 02:11:08 +000058
59 unsigned Scale;
Chad Rosier24c19d22012-08-01 18:39:17 +000060 SDValue IndexReg;
Dan Gohman059c4fa2008-11-11 15:52:29 +000061 int32_t Disp;
Rafael Espindola3b2df102009-04-08 21:14:34 +000062 SDValue Segment;
Dan Gohmanbcaf6812010-04-15 01:51:59 +000063 const GlobalValue *GV;
64 const Constant *CP;
65 const BlockAddress *BlockAddr;
Evan Cheng11b0a5d2006-09-08 06:48:29 +000066 const char *ES;
67 int JT;
Evan Cheng77d86ff2006-02-25 10:09:08 +000068 unsigned Align; // CP alignment.
Chris Lattnerbd7e26d2009-06-26 05:51:45 +000069 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattner3f0f71b2005-11-19 02:11:08 +000070
71 X86ISelAddressMode()
Dan Gohman0fd54fb2010-04-29 23:30:41 +000072 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner50ba5c32009-11-01 03:25:03 +000073 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman0f6bf2d2009-08-25 17:47:44 +000074 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +000075 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000076
77 bool hasSymbolicDisplacement() const {
Chris Lattner50ba5c32009-11-01 03:25:03 +000078 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman4e3e3de2009-02-07 00:43:41 +000079 }
Chad Rosier24c19d22012-08-01 18:39:17 +000080
Chris Lattnerfea81da2009-06-27 04:16:01 +000081 bool hasBaseOrIndexReg() const {
Dan Gohman0fd54fb2010-04-29 23:30:41 +000082 return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattnerfea81da2009-06-27 04:16:01 +000083 }
Chad Rosier24c19d22012-08-01 18:39:17 +000084
Chris Lattnerfea81da2009-06-27 04:16:01 +000085 /// isRIPRelative - Return true if this addressing mode is already RIP
86 /// relative.
87 bool isRIPRelative() const {
88 if (BaseType != RegBase) return false;
89 if (RegisterSDNode *RegNode =
Dan Gohman0fd54fb2010-04-29 23:30:41 +000090 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattnerfea81da2009-06-27 04:16:01 +000091 return RegNode->getReg() == X86::RIP;
92 return false;
93 }
Chad Rosier24c19d22012-08-01 18:39:17 +000094
Chris Lattnerfea81da2009-06-27 04:16:01 +000095 void setBaseReg(SDValue Reg) {
96 BaseType = RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +000097 Base_Reg = Reg;
Chris Lattnerfea81da2009-06-27 04:16:01 +000098 }
Dan Gohman4e3e3de2009-02-07 00:43:41 +000099
Manman Ren19f49ac2012-09-11 22:23:19 +0000100#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesendafdbf72008-08-11 23:46:25 +0000101 void dump() {
David Greenedbdb1b22010-01-05 01:29:08 +0000102 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000103 dbgs() << "Base_Reg ";
104 if (Base_Reg.getNode() != 0)
Chad Rosier24c19d22012-08-01 18:39:17 +0000105 Base_Reg.getNode()->dump();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000106 else
David Greenedbdb1b22010-01-05 01:29:08 +0000107 dbgs() << "nul";
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000108 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000109 << " Scale" << Scale << '\n'
110 << "IndexReg ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000111 if (IndexReg.getNode() != 0)
112 IndexReg.getNode()->dump();
113 else
Chad Rosier24c19d22012-08-01 18:39:17 +0000114 dbgs() << "nul";
David Greenedbdb1b22010-01-05 01:29:08 +0000115 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000116 << "GV ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000117 if (GV)
118 GV->dump();
119 else
David Greenedbdb1b22010-01-05 01:29:08 +0000120 dbgs() << "nul";
121 dbgs() << " CP ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000122 if (CP)
123 CP->dump();
124 else
David Greenedbdb1b22010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << '\n'
Benjamin Kramer940fbb02009-08-23 11:52:17 +0000127 << "ES ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000128 if (ES)
David Greenedbdb1b22010-01-05 01:29:08 +0000129 dbgs() << ES;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000130 else
David Greenedbdb1b22010-01-05 01:29:08 +0000131 dbgs() << "nul";
132 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesendafdbf72008-08-11 23:46:25 +0000133 }
Manman Ren742534c2012-09-06 19:06:06 +0000134#endif
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000135 };
136}
137
138namespace {
Chris Lattner655e7df2005-11-16 01:54:32 +0000139 //===--------------------------------------------------------------------===//
140 /// ISel - X86 specific code to select X86 machine instructions for
141 /// SelectionDAG operations.
142 ///
Nick Lewycky02d5f772009-10-25 06:33:48 +0000143 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattner655e7df2005-11-16 01:54:32 +0000144 /// X86Lowering - This object fully describes how to lower LLVM code to an
145 /// X86-specific SelectionDAG.
Dan Gohman21cea8a2010-04-17 15:26:15 +0000146 const X86TargetLowering &X86Lowering;
Chris Lattner655e7df2005-11-16 01:54:32 +0000147
148 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
149 /// make the right decision when generating code for different targets.
150 const X86Subtarget *Subtarget;
Evan Cheng5588de92006-02-18 00:15:05 +0000151
Evan Cheng7d6fa972008-09-26 23:41:32 +0000152 /// OptForSize - If true, selector should try to optimize for code size
153 /// instead of performance.
154 bool OptForSize;
155
Chris Lattner655e7df2005-11-16 01:54:32 +0000156 public:
Bill Wendling026e5d72009-04-29 23:29:43 +0000157 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendling084669a2009-04-29 00:15:41 +0000158 : SelectionDAGISel(tm, OptLevel),
Dan Gohman4751bb92009-06-03 20:20:00 +0000159 X86Lowering(*tm.getTargetLowering()),
160 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel1b76f2c2008-10-01 23:18:38 +0000161 OptForSize(false) {}
Chris Lattner655e7df2005-11-16 01:54:32 +0000162
163 virtual const char *getPassName() const {
164 return "X86 DAG->DAG Instruction Selection";
165 }
166
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000167 virtual void EmitFunctionEntryCode();
Anton Korobeynikov90910742007-09-25 21:52:30 +0000168
Evan Cheng5e73ff22010-02-15 19:41:07 +0000169 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
170
Chris Lattnerf98f1242010-03-02 06:34:30 +0000171 virtual void PreprocessISelDAG();
172
Jakob Stoklund Olesen08aede22010-09-03 00:35:18 +0000173 inline bool immSext8(SDNode *N) const {
174 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
175 }
176
177 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
178 // sign extended field.
179 inline bool i64immSExt32(SDNode *N) const {
180 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
181 return (int64_t)v == (int32_t)v;
182 }
183
Chris Lattner655e7df2005-11-16 01:54:32 +0000184// Include the pieces autogenerated from the target description.
185#include "X86GenDAGISel.inc"
186
187 private:
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000188 SDNode *Select(SDNode *N);
Manman Rena0982042012-06-26 19:47:59 +0000189 SDNode *SelectGather(SDNode *N, unsigned Opc);
Dale Johannesen867d5492008-10-02 18:53:47 +0000190 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Eric Christophera1d9e292011-05-17 08:10:18 +0000191 SDNode *SelectAtomicLoadArith(SDNode *Node, EVT NVT);
Chris Lattner655e7df2005-11-16 01:54:32 +0000192
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000193 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattner8a236b62010-09-22 04:39:11 +0000194 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000195 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman824ab402009-07-22 23:26:55 +0000196 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
197 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
198 unsigned Depth);
Rafael Espindola92773792009-03-31 16:16:57 +0000199 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerd58d7c12010-09-21 22:07:31 +0000200 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000201 SDValue &Scale, SDValue &Index, SDValue &Disp,
202 SDValue &Segment);
Tim Northover3a1fd4c2013-06-01 09:55:14 +0000203 bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000204 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000207 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000208 SDValue &Scale, SDValue &Index, SDValue &Disp,
209 SDValue &Segment);
Chris Lattnerbd6e1932010-03-01 22:51:11 +0000210 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattnerafac7dad2010-02-16 22:35:06 +0000211 SDValue &Base, SDValue &Scale,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000212 SDValue &Index, SDValue &Disp,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000213 SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +0000214 SDValue &NodeWithChain);
Chad Rosier24c19d22012-08-01 18:39:17 +0000215
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000216 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000217 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000218 SDValue &Index, SDValue &Disp,
219 SDValue &Segment);
Chad Rosier24c19d22012-08-01 18:39:17 +0000220
Chris Lattnerba1ed582006-06-08 18:03:49 +0000221 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
222 /// inline asm expressions.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000223 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerba1ed582006-06-08 18:03:49 +0000224 char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000225 std::vector<SDValue> &OutOps);
Chad Rosier24c19d22012-08-01 18:39:17 +0000226
Anton Korobeynikov90910742007-09-25 21:52:30 +0000227 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
228
Chad Rosier24c19d22012-08-01 18:39:17 +0000229 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000230 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000231 SDValue &Disp, SDValue &Segment) {
Evan Cheng67ed58e2005-12-12 21:49:40 +0000232 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000233 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
234 AM.Base_Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000235 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000236 Index = AM.IndexReg;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000237 // These are 32-bit even in 64-bit mode since RIP relative offset
238 // is 32-bit.
239 if (AM.GV)
Andrew Trickef9de2a2013-05-25 02:42:55 +0000240 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
Devang Patela3ca21b2010-07-06 22:08:15 +0000241 MVT::i32, AM.Disp,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000242 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000243 else if (AM.CP)
Owen Anderson9f944592009-08-11 20:47:22 +0000244 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000245 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000246 else if (AM.ES) {
247 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson9f944592009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000249 } else if (AM.JT != -1) {
250 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson9f944592009-08-11 20:47:22 +0000251 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000252 } else if (AM.BlockAddr)
253 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
254 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000255 else
Owen Anderson9f944592009-08-11 20:47:22 +0000256 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000257
258 if (AM.Segment.getNode())
259 Segment = AM.Segment;
260 else
Owen Anderson9f944592009-08-11 20:47:22 +0000261 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000262 }
263
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000264 /// getI8Imm - Return a target constant with the specified value, of type
265 /// i8.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000266 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000267 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000268 }
269
Chris Lattner655e7df2005-11-16 01:54:32 +0000270 /// getI32Imm - Return a target constant with the specified value, of type
271 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000272 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000273 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner655e7df2005-11-16 01:54:32 +0000274 }
Evan Chengd49cc362006-02-10 22:24:32 +0000275
Dan Gohman24300732008-09-23 18:22:58 +0000276 /// getGlobalBaseReg - Return an SDNode that returns the value of
277 /// the global base register. Output instructions required to
278 /// initialize the global base register, if necessary.
279 ///
Evan Cheng61413a32006-08-26 05:34:46 +0000280 SDNode *getGlobalBaseReg();
Evan Cheng5588de92006-02-18 00:15:05 +0000281
Dan Gohman4751bb92009-06-03 20:20:00 +0000282 /// getTargetMachine - Return a reference to the TargetMachine, casted
283 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000284 const X86TargetMachine &getTargetMachine() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000285 return static_cast<const X86TargetMachine &>(TM);
286 }
287
288 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
289 /// to the target-specific type.
Jakub Staszake167cf52013-02-19 21:54:59 +0000290 const X86InstrInfo *getInstrInfo() const {
Dan Gohman4751bb92009-06-03 20:20:00 +0000291 return getTargetMachine().getInstrInfo();
292 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000293 };
294}
295
Evan Cheng72bb66a2006-08-08 00:31:00 +0000296
Evan Cheng5e73ff22010-02-15 19:41:07 +0000297bool
298X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000299 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000300
Evan Cheng5e73ff22010-02-15 19:41:07 +0000301 if (!N.hasOneUse())
302 return false;
303
304 if (N.getOpcode() != ISD::LOAD)
305 return true;
306
307 // If N is a load, do additional profitability checks.
308 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000309 switch (U->getOpcode()) {
310 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000311 case X86ISD::ADD:
312 case X86ISD::SUB:
313 case X86ISD::AND:
314 case X86ISD::XOR:
315 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000316 case ISD::ADD:
317 case ISD::ADDC:
318 case ISD::ADDE:
319 case ISD::AND:
320 case ISD::OR:
321 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000322 SDValue Op1 = U->getOperand(1);
323
Evan Cheng83bdb382008-11-27 00:49:46 +0000324 // If the other operand is a 8-bit immediate we should fold the immediate
325 // instead. This reduces code size.
326 // e.g.
327 // movl 4(%esp), %eax
328 // addl $4, %eax
329 // vs.
330 // movl $4, %eax
331 // addl 4(%esp), %eax
332 // The former is 2 bytes shorter. In case where the increment is 1, then
333 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000334 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000335 if (Imm->getAPIntValue().isSignedIntN(8))
336 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000337
338 // If the other operand is a TLS address, we should fold it instead.
339 // This produces
340 // movl %gs:0, %eax
341 // leal i@NTPOFF(%eax), %eax
342 // instead of
343 // movl $i@NTPOFF, %eax
344 // addl %gs:0, %eax
345 // if the block also has an access to a second TLS address this will save
346 // a load.
347 // FIXME: This is probably also true for non TLS addresses.
348 if (Op1.getOpcode() == X86ISD::Wrapper) {
349 SDValue Val = Op1.getOperand(0);
350 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
351 return false;
352 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000353 }
354 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000355 }
356
357 return true;
358}
359
Evan Chengd703df62010-03-14 03:48:46 +0000360/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
361/// load's chain operand and move load below the call's chain operand.
362static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000363 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000364 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000365 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000366 if (Chain.getNode() == Load.getNode())
367 Ops.push_back(Load.getOperand(0));
368 else {
369 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000370 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000371 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
372 if (Chain.getOperand(i).getNode() == Load.getNode())
373 Ops.push_back(Load.getOperand(0));
374 else
375 Ops.push_back(Chain.getOperand(i));
376 SDValue NewChain =
Andrew Trickef9de2a2013-05-25 02:42:55 +0000377 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load),
Owen Anderson9f944592009-08-11 20:47:22 +0000378 MVT::Other, &Ops[0], Ops.size());
Evan Cheng6c7e8512009-01-26 18:43:34 +0000379 Ops.clear();
380 Ops.push_back(NewChain);
381 }
Evan Chengd703df62010-03-14 03:48:46 +0000382 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
383 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman92c11ac2010-06-18 15:30:29 +0000384 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
385 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000386 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000387
Evan Cheng214156c2012-10-02 23:49:13 +0000388 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000389 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000390 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000391 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000392 Ops.push_back(Call.getOperand(i));
Evan Cheng847ad442012-10-05 01:48:22 +0000393 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], NumOps);
Evan Chengf00f1e52008-08-25 21:27:18 +0000394}
395
396/// isCalleeLoad - Return true if call address is a load and it can be
397/// moved below CALLSEQ_START and the chains leading up to the call.
398/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000399/// In the case of a tail call, there isn't a callseq node between the call
400/// chain and the load.
401static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000402 // The transformation is somewhat dangerous if the call's chain was glued to
403 // the call. After MoveBelowOrigChain the load is moved between the call and
404 // the chain, this can create a cycle if the load is not folded. So it is
405 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000406 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000407 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000408 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000409 if (!LD ||
410 LD->isVolatile() ||
411 LD->getAddressingMode() != ISD::UNINDEXED ||
412 LD->getExtensionType() != ISD::NON_EXTLOAD)
413 return false;
414
415 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000416 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000417 if (!Chain.hasOneUse())
418 return false;
419 Chain = Chain.getOperand(0);
420 }
Evan Chengd703df62010-03-14 03:48:46 +0000421
422 if (!Chain.getNumOperands())
423 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000424 // Since we are not checking for AA here, conservatively abort if the chain
425 // writes to memory. It's not safe to move the callee (a load) across a store.
426 if (isa<MemSDNode>(Chain.getNode()) &&
427 cast<MemSDNode>(Chain.getNode())->writeMem())
428 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000429 if (Chain.getOperand(0).getNode() == Callee.getNode())
430 return true;
431 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000432 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
433 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000434 return true;
435 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000436}
437
Chris Lattner8d637042010-03-02 23:12:51 +0000438void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000439 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000440 OptForSize = MF->getFunction()->getAttributes().
441 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000442
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000443 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
444 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000445 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000446
Evan Chengd703df62010-03-14 03:48:46 +0000447 if (OptLevel != CodeGenOpt::None &&
Michael Liao96b42602013-03-28 23:13:21 +0000448 // Only does this when target favors doesn't favor register indirect
449 // call.
450 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng847ad442012-10-05 01:48:22 +0000451 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000452 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000453 (Subtarget->is64Bit() ||
454 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000455 /// Also try moving call address load from outside callseq_start to just
456 /// before the call to allow it to be folded.
457 ///
458 /// [Load chain]
459 /// ^
460 /// |
461 /// [Load]
462 /// ^ ^
463 /// | |
464 /// / \--
465 /// / |
466 ///[CALLSEQ_START] |
467 /// ^ |
468 /// | |
469 /// [LOAD/C2Reg] |
470 /// | |
471 /// \ /
472 /// \ /
473 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000474 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000475 SDValue Chain = N->getOperand(0);
476 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000477 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000478 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000479 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000480 ++NumLoadMoved;
481 continue;
482 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000483
Chris Lattner8d637042010-03-02 23:12:51 +0000484 // Lower fpround and fpextend nodes that target the FP stack to be store and
485 // load to the stack. This is a gross hack. We would like to simply mark
486 // these as being illegal, but when we do that, legalize produces these when
487 // it expands calls, then expands these in the same legalize pass. We would
488 // like dag combine to be able to hack on these between the call expansion
489 // and the node legalization. As such this pass basically does "really
490 // late" legalization of these inline with the X86 isel pass.
491 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000492 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
493 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000494
Owen Anderson53aa7a92009-08-10 22:56:29 +0000495 EVT SrcVT = N->getOperand(0).getValueType();
496 EVT DstVT = N->getValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000497
498 // If any of the sources are vectors, no fp stack involved.
499 if (SrcVT.isVector() || DstVT.isVector())
500 continue;
501
502 // If the source and destination are SSE registers, then this is a legal
503 // conversion that should not be lowered.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000504 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
505 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
506 if (SrcIsSSE && DstIsSSE)
507 continue;
508
Chris Lattnerd587e582008-03-09 07:05:32 +0000509 if (!SrcIsSSE && !DstIsSSE) {
510 // If this is an FPStack extension, it is a noop.
511 if (N->getOpcode() == ISD::FP_EXTEND)
512 continue;
513 // If this is a value-preserving FPStack truncation, it is a noop.
514 if (N->getConstantOperandVal(1))
515 continue;
516 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000517
Chris Lattnera91f77e2008-01-24 08:07:48 +0000518 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
519 // FPStack has extload and truncstore. SSE can fold direct loads into other
520 // operations. Based on this, decide what we want to do.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000521 EVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000522 if (N->getOpcode() == ISD::FP_ROUND)
523 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
524 else
525 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000526
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000527 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickef9de2a2013-05-25 02:42:55 +0000528 SDLoc dl(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000529
Chris Lattnera91f77e2008-01-24 08:07:48 +0000530 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000531 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000532 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000533 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000534 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000535 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000536 MachinePointerInfo(),
537 MemVT, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000538
539 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
540 // extload we created. This will cause general havok on the dag because
541 // anything below the conversion could be folded into other existing nodes.
542 // To avoid invalidating 'I', back it up to the convert node.
543 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000544 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000545
Chris Lattnera91f77e2008-01-24 08:07:48 +0000546 // Now that we did that, the node is dead. Increment the iterator to the
547 // next node to process, then delete N.
548 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000549 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000550 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000551}
552
Chris Lattner655e7df2005-11-16 01:54:32 +0000553
Anton Korobeynikov90910742007-09-25 21:52:30 +0000554/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
555/// the main function.
556void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
557 MachineFrameInfo *MFI) {
558 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000559 if (Subtarget->isTargetCygMing()) {
560 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000561 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000562 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000563 TII->get(CallOp)).addExternalSymbol("__main");
564 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000565}
566
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000567void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000568 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000569 if (const Function *Fn = MF->getFunction())
570 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
571 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000572}
573
Eli Friedman344ec792011-07-13 21:29:53 +0000574static bool isDispSafeForFrameIndex(int64_t Val) {
575 // On 64-bit platforms, we can run into an issue where a frame index
576 // includes a displacement that, when added to the explicit displacement,
577 // will overflow the displacement field. Assuming that the frame index
578 // displacement fits into a 31-bit integer (which is only slightly more
579 // aggressive than the current fundamental assumption that it fits into
580 // a 32-bit integer), a 31-bit disp should always be safe.
581 return isInt<31>(Val);
582}
583
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000584bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
585 X86ISelAddressMode &AM) {
586 int64_t Val = AM.Disp + Offset;
587 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000588 if (Subtarget->is64Bit()) {
589 if (!X86::isOffsetSuitableForCodeModel(Val, M,
590 AM.hasSymbolicDisplacement()))
591 return true;
592 // In addition to the checks required for a register base, check that
593 // we do not try to use an unsafe Disp with a frame index.
594 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
595 !isDispSafeForFrameIndex(Val))
596 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000597 }
Eli Friedman344ec792011-07-13 21:29:53 +0000598 AM.Disp = Val;
599 return false;
600
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000601}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000602
Chris Lattner8a236b62010-09-22 04:39:11 +0000603bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
604 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000605
Chris Lattner8a236b62010-09-22 04:39:11 +0000606 // load gs:0 -> GS segment register.
607 // load fs:0 -> FS segment register.
608 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000609 // This optimization is valid because the GNU TLS model defines that
610 // gs:0 (or fs:0 on X86-64) contains its own address.
611 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000612 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
613 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000614 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000615 switch (N->getPointerInfo().getAddrSpace()) {
616 case 256:
617 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
618 return false;
619 case 257:
620 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
621 return false;
622 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000623
Rafael Espindola3b2df102009-04-08 21:14:34 +0000624 return true;
625}
626
Chris Lattnerfea81da2009-06-27 04:16:01 +0000627/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
628/// into an addressing mode. These wrap things that will resolve down into a
629/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000630/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000631bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000632 // If the addressing mode already has a symbol as the displacement, we can
633 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000634 if (AM.hasSymbolicDisplacement())
635 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000636
637 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000638 CodeModel::Model M = TM.getCodeModel();
639
Chris Lattnerfea81da2009-06-27 04:16:01 +0000640 // Handle X86-64 rip-relative addresses. We check this before checking direct
641 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000642 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000643 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
644 // they cannot be folded into immediate fields.
645 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000646 (M == CodeModel::Small || M == CodeModel::Kernel)) {
647 // Base and index reg must be 0 in order to use %rip as base.
648 if (AM.hasBaseOrIndexReg())
649 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000650 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000651 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000652 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000653 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000654 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
655 AM = Backup;
656 return true;
657 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000658 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000659 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000660 AM.CP = CP->getConstVal();
661 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000662 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000663 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
664 AM = Backup;
665 return true;
666 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000667 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
668 AM.ES = S->getSymbol();
669 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000670 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000671 AM.JT = J->getIndex();
672 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000673 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
674 X86ISelAddressMode Backup = AM;
675 AM.BlockAddr = BA->getBlockAddress();
676 AM.SymbolFlags = BA->getTargetFlags();
677 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
678 AM = Backup;
679 return true;
680 }
681 } else
682 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000683
Chris Lattnerfea81da2009-06-27 04:16:01 +0000684 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000685 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000686 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000687 }
688
689 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000690 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
691 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000692 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000693 M == CodeModel::Small || M == CodeModel::Kernel) {
694 assert(N.getOpcode() != X86ISD::WrapperRIP &&
695 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000696 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
697 AM.GV = G->getGlobal();
698 AM.Disp += G->getOffset();
699 AM.SymbolFlags = G->getTargetFlags();
700 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
701 AM.CP = CP->getConstVal();
702 AM.Align = CP->getAlignment();
703 AM.Disp += CP->getOffset();
704 AM.SymbolFlags = CP->getTargetFlags();
705 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
706 AM.ES = S->getSymbol();
707 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000708 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000709 AM.JT = J->getIndex();
710 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000711 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
712 AM.BlockAddr = BA->getBlockAddress();
713 AM.Disp += BA->getOffset();
714 AM.SymbolFlags = BA->getTargetFlags();
715 } else
716 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000717 return false;
718 }
719
720 return true;
721}
722
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000723/// MatchAddress - Add the specified node to the specified addressing mode,
724/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000725/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000726bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000727 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000728 return true;
729
730 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
731 // a smaller encoding and avoids a scaled-index.
732 if (AM.Scale == 2 &&
733 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000734 AM.Base_Reg.getNode() == 0) {
735 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000736 AM.Scale = 1;
737 }
738
Dan Gohman05046082009-08-20 18:23:44 +0000739 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
740 // because it has a smaller encoding.
741 // TODO: Which other code models can use this?
742 if (TM.getCodeModel() == CodeModel::Small &&
743 Subtarget->is64Bit() &&
744 AM.Scale == 1 &&
745 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000746 AM.Base_Reg.getNode() == 0 &&
Dan Gohman05046082009-08-20 18:23:44 +0000747 AM.IndexReg.getNode() == 0 &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000748 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000749 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000750 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000751
Dan Gohman824ab402009-07-22 23:26:55 +0000752 return false;
753}
754
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000755// Insert a node into the DAG at least before the Pos node's position. This
756// will reposition the node as needed, and will assign it a node ID that is <=
757// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
758// IDs! The selection DAG must no longer depend on their uniqueness when this
759// is used.
760static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
761 if (N.getNode()->getNodeId() == -1 ||
762 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
763 DAG.RepositionNode(Pos.getNode(), N.getNode());
764 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
765 }
766}
767
Chandler Carruth51d30762012-01-11 08:48:20 +0000768// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
769// allows us to convert the shift and and into an h-register extract and
770// a scaled index. Returns false if the simplification is performed.
771static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
772 uint64_t Mask,
773 SDValue Shift, SDValue X,
774 X86ISelAddressMode &AM) {
775 if (Shift.getOpcode() != ISD::SRL ||
776 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
777 !Shift.hasOneUse())
778 return true;
779
780 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
781 if (ScaleLog <= 0 || ScaleLog >= 4 ||
782 Mask != (0xffu << ScaleLog))
783 return true;
784
785 EVT VT = N.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000786 SDLoc DL(N);
Chandler Carruth51d30762012-01-11 08:48:20 +0000787 SDValue Eight = DAG.getConstant(8, MVT::i8);
788 SDValue NewMask = DAG.getConstant(0xff, VT);
789 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
790 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
791 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
792 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
793
Chandler Carrutheb21da02012-01-12 01:34:44 +0000794 // Insert the new nodes into the topological ordering. We must do this in
795 // a valid topological ordering as nothing is going to go back and re-sort
796 // these nodes. We continually insert before 'N' in sequence as this is
797 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
798 // hierarchy left to express.
799 InsertDAGNode(DAG, N, Eight);
800 InsertDAGNode(DAG, N, Srl);
801 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000802 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000803 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000804 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000805 DAG.ReplaceAllUsesWith(N, Shl);
806 AM.IndexReg = And;
807 AM.Scale = (1 << ScaleLog);
808 return false;
809}
810
Chandler Carruthaa01e662012-01-11 09:35:00 +0000811// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
812// allows us to fold the shift into this addressing mode. Returns false if the
813// transform succeeded.
814static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
815 uint64_t Mask,
816 SDValue Shift, SDValue X,
817 X86ISelAddressMode &AM) {
818 if (Shift.getOpcode() != ISD::SHL ||
819 !isa<ConstantSDNode>(Shift.getOperand(1)))
820 return true;
821
822 // Not likely to be profitable if either the AND or SHIFT node has more
823 // than one use (unless all uses are for address computation). Besides,
824 // isel mechanism requires their node ids to be reused.
825 if (!N.hasOneUse() || !Shift.hasOneUse())
826 return true;
827
828 // Verify that the shift amount is something we can fold.
829 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
830 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
831 return true;
832
833 EVT VT = N.getValueType();
Andrew Trickef9de2a2013-05-25 02:42:55 +0000834 SDLoc DL(N);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000835 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
836 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
837 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
838
Chandler Carrutheb21da02012-01-12 01:34:44 +0000839 // Insert the new nodes into the topological ordering. We must do this in
840 // a valid topological ordering as nothing is going to go back and re-sort
841 // these nodes. We continually insert before 'N' in sequence as this is
842 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
843 // hierarchy left to express.
844 InsertDAGNode(DAG, N, NewMask);
845 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000846 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000847 DAG.ReplaceAllUsesWith(N, NewShift);
848
849 AM.Scale = 1 << ShiftAmt;
850 AM.IndexReg = NewAnd;
851 return false;
852}
853
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000854// Implement some heroics to detect shifts of masked values where the mask can
855// be replaced by extending the shift and undoing that in the addressing mode
856// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
857// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
858// the addressing mode. This results in code such as:
859//
860// int f(short *y, int *lookup_table) {
861// ...
862// return *y + lookup_table[*y >> 11];
863// }
864//
865// Turning into:
866// movzwl (%rdi), %eax
867// movl %eax, %ecx
868// shrl $11, %ecx
869// addl (%rsi,%rcx,4), %eax
870//
871// Instead of:
872// movzwl (%rdi), %eax
873// movl %eax, %ecx
874// shrl $9, %ecx
875// andl $124, %rcx
876// addl (%rsi,%rcx), %eax
877//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000878// Note that this function assumes the mask is provided as a mask *after* the
879// value is shifted. The input chain may or may not match that, but computing
880// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000881static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000882 uint64_t Mask,
883 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000884 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000885 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
886 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000887 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000888
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000889 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000890 unsigned MaskLZ = countLeadingZeros(Mask);
891 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000892
893 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000894 // from the trailing zeros of the mask.
895 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000896
897 // There is nothing we can do here unless the mask is removing some bits.
898 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
899 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
900
901 // We also need to ensure that mask is a continuous run of bits.
902 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
903
904 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000905 // Also scale it down based on the size of the shift.
906 MaskLZ -= (64 - X.getValueSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000907
908 // The final check is to ensure that any masked out high bits of X are
909 // already known to be zero. Otherwise, the mask has a semantic impact
910 // other than masking out a couple of low bits. Unfortunately, because of
911 // the mask, zero extensions will be removed from operands in some cases.
912 // This code works extra hard to look through extensions because we can
913 // replace them with zero extensions cheaply if necessary.
914 bool ReplacingAnyExtend = false;
915 if (X.getOpcode() == ISD::ANY_EXTEND) {
916 unsigned ExtendBits =
917 X.getValueSizeInBits() - X.getOperand(0).getValueSizeInBits();
918 // Assume that we'll replace the any-extend with a zero-extend, and
919 // narrow the search to the extended value.
920 X = X.getOperand(0);
921 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
922 ReplacingAnyExtend = true;
923 }
924 APInt MaskedHighBits = APInt::getHighBitsSet(X.getValueSizeInBits(),
925 MaskLZ);
926 APInt KnownZero, KnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +0000927 DAG.ComputeMaskedBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000928 if (MaskedHighBits != KnownZero) return true;
929
930 // We've identified a pattern that can be transformed into a single shift
931 // and an addressing mode. Make it so.
932 EVT VT = N.getValueType();
933 if (ReplacingAnyExtend) {
934 assert(X.getValueType() != VT);
935 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickef9de2a2013-05-25 02:42:55 +0000936 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000937 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000938 X = NewX;
939 }
Andrew Trickef9de2a2013-05-25 02:42:55 +0000940 SDLoc DL(N);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000941 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
942 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
943 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
944 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000945
946 // Insert the new nodes into the topological ordering. We must do this in
947 // a valid topological ordering as nothing is going to go back and re-sort
948 // these nodes. We continually insert before 'N' in sequence as this is
949 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
950 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000951 InsertDAGNode(DAG, N, NewSRLAmt);
952 InsertDAGNode(DAG, N, NewSRL);
953 InsertDAGNode(DAG, N, NewSHLAmt);
954 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000955 DAG.ReplaceAllUsesWith(N, NewSHL);
956
957 AM.Scale = 1 << AMShiftAmt;
958 AM.IndexReg = NewSRL;
959 return false;
960}
961
Dan Gohman824ab402009-07-22 23:26:55 +0000962bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
963 unsigned Depth) {
Andrew Trickef9de2a2013-05-25 02:42:55 +0000964 SDLoc dl(N);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000965 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000966 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000967 AM.dump();
968 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000969 // Limit recursion.
970 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000971 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000972
Chris Lattnerfea81da2009-06-27 04:16:01 +0000973 // If this is already a %rip relative address, we can only merge immediates
974 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000975 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000976 if (AM.isRIPRelative()) {
977 // FIXME: JumpTable and ExternalSymbol address currently don't like
978 // displacements. It isn't very important, but this should be fixed for
979 // consistency.
980 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000981
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000982 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
983 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000984 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000985 return true;
986 }
987
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000988 switch (N.getOpcode()) {
989 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000990 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +0000991 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000992 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000993 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000994 break;
995 }
Evan Cheng77d86ff2006-02-25 10:09:08 +0000996
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000997 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +0000998 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000999 if (!MatchWrapper(N, AM))
1000 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001001 break;
1002
Rafael Espindola3b2df102009-04-08 21:14:34 +00001003 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001004 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001005 return false;
1006 break;
1007
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001008 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001009 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1010 AM.Base_Reg.getNode() == 0 &&
1011 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001012 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001013 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001014 return false;
1015 }
1016 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001017
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001018 case ISD::SHL:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001019 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001020 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001021
Gabor Greif81d6a382008-08-31 15:37:04 +00001022 if (ConstantSDNode
1023 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001024 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001025 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1026 // that the base operand remains free for further matching. If
1027 // the base doesn't end up getting used, a post-processing step
1028 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001029 if (Val == 1 || Val == 2 || Val == 3) {
1030 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001031 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001032
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001033 // Okay, we know that we have a scale by now. However, if the scaled
1034 // value is an add of something and a constant, we can fold the
1035 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001036 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001037 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001038 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001039 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001040 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001041 if (!FoldOffsetIntoAddress(Disp, AM))
1042 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001043 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001044
1045 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001046 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001047 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001048 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001049 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001050
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001051 case ISD::SRL: {
1052 // Scale must not be used already.
1053 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1054
1055 SDValue And = N.getOperand(0);
1056 if (And.getOpcode() != ISD::AND) break;
1057 SDValue X = And.getOperand(0);
1058
1059 // We only handle up to 64-bit values here as those are what matter for
1060 // addressing mode optimizations.
1061 if (X.getValueSizeInBits() > 64) break;
1062
1063 // The mask used for the transform is expected to be post-shift, but we
1064 // found the shift first so just apply the shift to the mask before passing
1065 // it down.
1066 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1067 !isa<ConstantSDNode>(And.getOperand(1)))
1068 break;
1069 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1070
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001071 // Try to fold the mask and shift into the scale, and return false if we
1072 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001073 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001074 return false;
1075 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001076 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001077
Dan Gohmanbf474952007-10-22 20:22:24 +00001078 case ISD::SMUL_LOHI:
1079 case ISD::UMUL_LOHI:
1080 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001081 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001082 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001083 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001084 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001085 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001086 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001087 AM.Base_Reg.getNode() == 0 &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001088 AM.IndexReg.getNode() == 0) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001089 if (ConstantSDNode
1090 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001091 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1092 CN->getZExtValue() == 9) {
1093 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001094
Gabor Greiff304a7a2008-08-28 21:40:38 +00001095 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001096 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001097
1098 // Okay, we know that we have a scale by now. However, if the scaled
1099 // value is an add of something and a constant, we can fold the
1100 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001101 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1102 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1103 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001104 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001105 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001106 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1107 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001108 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001109 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001110 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001111 }
1112
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001113 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001114 return false;
1115 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001116 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001117 break;
1118
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001119 case ISD::SUB: {
1120 // Given A-B, if A can be completely folded into the address and
1121 // the index field with the index field unused, use -B as the index.
1122 // This is a win if a has multiple parts that can be folded into
1123 // the address. Also, this saves a mov if the base register has
1124 // other uses, since it avoids a two-address sub instruction, however
1125 // it costs an additional mov if the index register has other uses.
1126
Dan Gohman99ba4da2010-06-18 01:24:29 +00001127 // Add an artificial use to this node so that we can keep track of
1128 // it if it gets CSE'd with a different node.
1129 HandleSDNode Handle(N);
1130
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001131 // Test if the LHS of the sub can be folded.
1132 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001133 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001134 AM = Backup;
1135 break;
1136 }
1137 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001138 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001139 AM = Backup;
1140 break;
1141 }
Evan Cheng68333f52010-03-17 23:58:35 +00001142
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001143 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001144 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001145 // If the RHS involves a register with multiple uses, this
1146 // transformation incurs an extra mov, due to the neg instruction
1147 // clobbering its operand.
1148 if (!RHS.getNode()->hasOneUse() ||
1149 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1150 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1151 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1152 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001153 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001154 ++Cost;
1155 // If the base is a register with multiple uses, this
1156 // transformation may save a mov.
1157 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001158 AM.Base_Reg.getNode() &&
1159 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001160 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1161 --Cost;
1162 // If the folded LHS was interesting, this transformation saves
1163 // address arithmetic.
1164 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1165 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1166 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1167 --Cost;
1168 // If it doesn't look like it may be an overall win, don't do it.
1169 if (Cost >= 0) {
1170 AM = Backup;
1171 break;
1172 }
1173
1174 // Ok, the transformation is legal and appears profitable. Go for it.
1175 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1176 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1177 AM.IndexReg = Neg;
1178 AM.Scale = 1;
1179
1180 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001181 InsertDAGNode(*CurDAG, N, Zero);
1182 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001183 return false;
1184 }
1185
Evan Chengbf38a5e2009-01-17 07:09:27 +00001186 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001187 // Add an artificial use to this node so that we can keep track of
1188 // it if it gets CSE'd with a different node.
1189 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001190
Evan Chengbf38a5e2009-01-17 07:09:27 +00001191 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001192 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1193 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001194 return false;
1195 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001196
Evan Cheng68333f52010-03-17 23:58:35 +00001197 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001198 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1199 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001200 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001201 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001202
1203 // If we couldn't fold both operands into the address at the same time,
1204 // see if we can just put each operand into a register and fold at least
1205 // the add.
1206 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001207 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001208 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001209 N = Handle.getValue();
1210 AM.Base_Reg = N.getOperand(0);
1211 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001212 AM.Scale = 1;
1213 return false;
1214 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001215 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001216 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001217 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001218
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001219 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001220 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001221 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001222 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001223 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001224
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001225 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001226 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001227 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001228 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001229 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001230 }
1231 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001232
Evan Cheng827d30d2007-12-13 00:43:27 +00001233 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001234 // Perform some heroic transforms on an and of a constant-count shift
1235 // with a constant to enable use of the scaled offset field.
1236
Evan Cheng827d30d2007-12-13 00:43:27 +00001237 // Scale must not be used already.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001238 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001239
Chandler Carruthaa01e662012-01-11 09:35:00 +00001240 SDValue Shift = N.getOperand(0);
1241 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001242 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001243
1244 // We only handle up to 64-bit values here as those are what matter for
1245 // addressing mode optimizations.
1246 if (X.getValueSizeInBits() > 64) break;
1247
Chandler Carruthb0049f42012-01-11 09:35:04 +00001248 if (!isa<ConstantSDNode>(N.getOperand(1)))
1249 break;
1250 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001251
Chandler Carruth51d30762012-01-11 08:48:20 +00001252 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001253 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001254 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001255
Chandler Carruth51d30762012-01-11 08:48:20 +00001256 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001257 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001258 return false;
1259
Chandler Carruthaa01e662012-01-11 09:35:00 +00001260 // Try to swap the mask and shift to place shifts which can be done as
1261 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001262 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001263 return false;
1264 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001265 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001266 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001267
Rafael Espindola92773792009-03-31 16:16:57 +00001268 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001269}
1270
1271/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1272/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001273bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001274 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001275 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001276 // If so, check to see if the scale index register is set.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001277 if (AM.IndexReg.getNode() == 0) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001278 AM.IndexReg = N;
1279 AM.Scale = 1;
1280 return false;
1281 }
1282
1283 // Otherwise, we cannot select it.
1284 return true;
1285 }
1286
1287 // Default, generate it as a register.
1288 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001289 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001290 return false;
1291}
1292
Evan Chengc9fab312005-12-08 02:01:35 +00001293/// SelectAddr - returns true if it is able pattern match an addressing mode.
1294/// It returns the operands which make up the maximal addressing mode it can
1295/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001296///
1297/// Parent is the parent node of the addr operand that is being matched. It
1298/// is always a load, store, atomic node, or null. It is only null when
1299/// checking memory operands for inline asm nodes.
1300bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001301 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001302 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001303 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001304
Chris Lattner8a236b62010-09-22 04:39:11 +00001305 if (Parent &&
1306 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1307 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001308 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001309 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001310 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1311 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1312 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001313 unsigned AddrSpace =
1314 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1315 // AddrSpace 256 -> GS, 257 -> FS.
1316 if (AddrSpace == 256)
1317 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1318 if (AddrSpace == 257)
1319 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1320 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001321
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001322 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001323 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001324
Owen Anderson53aa7a92009-08-10 22:56:29 +00001325 EVT VT = N.getValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001326 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001327 if (!AM.Base_Reg.getNode())
1328 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001329 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001330
Gabor Greiff304a7a2008-08-28 21:40:38 +00001331 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001332 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001333
Rafael Espindola3b2df102009-04-08 21:14:34 +00001334 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001335 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001336}
1337
Chris Lattner398195e2006-10-07 21:55:32 +00001338/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1339/// match a load whose top elements are either undef or zeros. The load flavor
1340/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001341///
1342/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001343/// PatternChainNode: this is the matched node that has a chain input and
1344/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001345bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001346 SDValue N, SDValue &Base,
1347 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001348 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001349 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001350 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001351 PatternNodeWithChain = N.getOperand(0);
1352 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1353 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001354 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001355 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001356 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001357 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001358 return false;
1359 return true;
1360 }
1361 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001362
1363 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001364 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001365 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001366 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001367 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001368 N.getOperand(0).getNode()->hasOneUse() &&
1369 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001370 N.getOperand(0).getOperand(0).hasOneUse() &&
1371 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001372 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001373 // Okay, this is a zero extending load. Fold it.
1374 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001375 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001376 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001377 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001378 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001379 }
Chris Lattner398195e2006-10-07 21:55:32 +00001380 return false;
1381}
1382
1383
Tim Northover3a1fd4c2013-06-01 09:55:14 +00001384bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1385 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1386 uint64_t ImmVal = CN->getZExtValue();
1387 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1388 return false;
1389
1390 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1391 return true;
1392 }
1393
1394 // In static codegen with small code model, we can get the address of a label
1395 // into a register with 'movl'. TableGen has already made sure we're looking
1396 // at a label of some kind.
1397 assert(N->getOpcode() == X86ISD::Wrapper && "Unexpected node type for MOV32ri64");
1398 N = N.getOperand(0);
1399
1400 if (N->getOpcode() != ISD::TargetConstantPool &&
1401 N->getOpcode() != ISD::TargetJumpTable &&
1402 N->getOpcode() != ISD::TargetGlobalAddress &&
1403 N->getOpcode() != ISD::TargetExternalSymbol &&
1404 N->getOpcode() != ISD::TargetBlockAddress)
1405 return false;
1406
1407 Imm = N;
1408 return TM.getCodeModel() == CodeModel::Small;
1409}
1410
Evan Cheng77d86ff2006-02-25 10:09:08 +00001411/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1412/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001413bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001414 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001415 SDValue &Index, SDValue &Disp,
1416 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001417 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001418
1419 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1420 // segments.
1421 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001422 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001423 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001424 if (MatchAddress(N, AM))
1425 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001426 assert (T == AM.Segment);
1427 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001428
Owen Anderson53aa7a92009-08-10 22:56:29 +00001429 EVT VT = N.getValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001430 unsigned Complexity = 0;
1431 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001432 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001433 Complexity = 1;
1434 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001435 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001436 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1437 Complexity = 4;
1438
Gabor Greiff304a7a2008-08-28 21:40:38 +00001439 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001440 Complexity++;
1441 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001442 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001443
Chris Lattner3e1d9172007-03-20 06:08:29 +00001444 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1445 // a simple shift.
1446 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001447 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001448
1449 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1450 // to a LEA. This is determined with some expermentation but is by no means
1451 // optimal (especially for code size consideration). LEA is nice because of
1452 // its three-address nature. Tweak the cost function again when we can run
1453 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001454 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001455 // For X86-64, we should always use lea to materialize RIP relative
1456 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001457 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001458 Complexity = 4;
1459 else
1460 Complexity += 2;
1461 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001462
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001463 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001464 Complexity++;
1465
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001466 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001467 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001468 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001469
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001470 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1471 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001472}
1473
Chris Lattner7d2b0492009-06-20 20:38:48 +00001474/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001475bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001476 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001477 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001478 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1479 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001480
Chris Lattner7d2b0492009-06-20 20:38:48 +00001481 X86ISelAddressMode AM;
1482 AM.GV = GA->getGlobal();
1483 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001484 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001485 AM.SymbolFlags = GA->getTargetFlags();
1486
Owen Anderson9f944592009-08-11 20:47:22 +00001487 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001488 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001489 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001490 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001491 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001492 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001493
Chris Lattner7d2b0492009-06-20 20:38:48 +00001494 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1495 return true;
1496}
1497
1498
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001499bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001500 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001501 SDValue &Index, SDValue &Disp,
1502 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001503 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1504 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001505 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001506 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001507
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001508 return SelectAddr(N.getNode(),
1509 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001510}
1511
Dan Gohman24300732008-09-23 18:22:58 +00001512/// getGlobalBaseReg - Return an SDNode that returns the value of
1513/// the global base register. Output instructions required to
1514/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001515///
Evan Cheng61413a32006-08-26 05:34:46 +00001516SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001517 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001518 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001519}
1520
Dale Johannesen867d5492008-10-02 18:53:47 +00001521SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1522 SDValue Chain = Node->getOperand(0);
1523 SDValue In1 = Node->getOperand(1);
1524 SDValue In2L = Node->getOperand(2);
1525 SDValue In2H = Node->getOperand(3);
Michael Liao83725392012-09-19 19:36:58 +00001526
Rafael Espindola3b2df102009-04-08 21:14:34 +00001527 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001528 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen867d5492008-10-02 18:53:47 +00001529 return NULL;
Dan Gohman48b185d2009-09-25 20:36:54 +00001530 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1531 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1532 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00001533 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00001534 MVT::i32, MVT::i32, MVT::Other, Ops);
Dan Gohman48b185d2009-09-25 20:36:54 +00001535 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1536 return ResNode;
Dale Johannesen867d5492008-10-02 18:53:47 +00001537}
Christopher Lambb372aba2007-08-10 21:48:46 +00001538
Michael Liao83725392012-09-19 19:36:58 +00001539/// Atomic opcode table
1540///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001541enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001542 ADD,
1543 SUB,
1544 INC,
1545 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001546 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001547 AND,
1548 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001549 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001550};
1551
1552enum AtomicSz {
1553 ConstantI8,
1554 I8,
1555 SextConstantI16,
1556 ConstantI16,
1557 I16,
1558 SextConstantI32,
1559 ConstantI32,
1560 I32,
1561 SextConstantI64,
1562 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001563 I64,
1564 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001565};
1566
Craig Topper2dac9622012-03-09 07:45:21 +00001567static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001568 {
Michael Liao83725392012-09-19 19:36:58 +00001569 X86::LOCK_ADD8mi,
1570 X86::LOCK_ADD8mr,
1571 X86::LOCK_ADD16mi8,
1572 X86::LOCK_ADD16mi,
1573 X86::LOCK_ADD16mr,
1574 X86::LOCK_ADD32mi8,
1575 X86::LOCK_ADD32mi,
1576 X86::LOCK_ADD32mr,
1577 X86::LOCK_ADD64mi8,
1578 X86::LOCK_ADD64mi32,
1579 X86::LOCK_ADD64mr,
1580 },
1581 {
1582 X86::LOCK_SUB8mi,
1583 X86::LOCK_SUB8mr,
1584 X86::LOCK_SUB16mi8,
1585 X86::LOCK_SUB16mi,
1586 X86::LOCK_SUB16mr,
1587 X86::LOCK_SUB32mi8,
1588 X86::LOCK_SUB32mi,
1589 X86::LOCK_SUB32mr,
1590 X86::LOCK_SUB64mi8,
1591 X86::LOCK_SUB64mi32,
1592 X86::LOCK_SUB64mr,
1593 },
1594 {
1595 0,
1596 X86::LOCK_INC8m,
1597 0,
1598 0,
1599 X86::LOCK_INC16m,
1600 0,
1601 0,
1602 X86::LOCK_INC32m,
1603 0,
1604 0,
1605 X86::LOCK_INC64m,
1606 },
1607 {
1608 0,
1609 X86::LOCK_DEC8m,
1610 0,
1611 0,
1612 X86::LOCK_DEC16m,
1613 0,
1614 0,
1615 X86::LOCK_DEC32m,
1616 0,
1617 0,
1618 X86::LOCK_DEC64m,
1619 },
1620 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001621 X86::LOCK_OR8mi,
1622 X86::LOCK_OR8mr,
1623 X86::LOCK_OR16mi8,
1624 X86::LOCK_OR16mi,
1625 X86::LOCK_OR16mr,
1626 X86::LOCK_OR32mi8,
1627 X86::LOCK_OR32mi,
1628 X86::LOCK_OR32mr,
1629 X86::LOCK_OR64mi8,
1630 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001631 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001632 },
1633 {
1634 X86::LOCK_AND8mi,
1635 X86::LOCK_AND8mr,
1636 X86::LOCK_AND16mi8,
1637 X86::LOCK_AND16mi,
1638 X86::LOCK_AND16mr,
1639 X86::LOCK_AND32mi8,
1640 X86::LOCK_AND32mi,
1641 X86::LOCK_AND32mr,
1642 X86::LOCK_AND64mi8,
1643 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001644 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001645 },
1646 {
1647 X86::LOCK_XOR8mi,
1648 X86::LOCK_XOR8mr,
1649 X86::LOCK_XOR16mi8,
1650 X86::LOCK_XOR16mi,
1651 X86::LOCK_XOR16mr,
1652 X86::LOCK_XOR32mi8,
1653 X86::LOCK_XOR32mi,
1654 X86::LOCK_XOR32mr,
1655 X86::LOCK_XOR64mi8,
1656 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001657 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001658 }
1659};
1660
Michael Liao83725392012-09-19 19:36:58 +00001661// Return the target constant operand for atomic-load-op and do simple
1662// translations, such as from atomic-load-add to lock-sub. The return value is
1663// one of the following 3 cases:
1664// + target-constant, the operand could be supported as a target constant.
1665// + empty, the operand is not needed any more with the new op selected.
1666// + non-empty, otherwise.
1667static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickef9de2a2013-05-25 02:42:55 +00001668 SDLoc dl,
Michael Liao83725392012-09-19 19:36:58 +00001669 enum AtomicOpc &Op, EVT NVT,
1670 SDValue Val) {
1671 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1672 int64_t CNVal = CN->getSExtValue();
1673 // Quit if not 32-bit imm.
1674 if ((int32_t)CNVal != CNVal)
1675 return Val;
1676 // For atomic-load-add, we could do some optimizations.
1677 if (Op == ADD) {
1678 // Translate to INC/DEC if ADD by 1 or -1.
1679 if ((CNVal == 1) || (CNVal == -1)) {
1680 Op = (CNVal == 1) ? INC : DEC;
1681 // No more constant operand after being translated into INC/DEC.
1682 return SDValue();
1683 }
1684 // Translate to SUB if ADD by negative value.
1685 if (CNVal < 0) {
1686 Op = SUB;
1687 CNVal = -CNVal;
1688 }
1689 }
1690 return CurDAG->getTargetConstant(CNVal, NVT);
1691 }
1692
1693 // If the value operand is single-used, try to optimize it.
1694 if (Op == ADD && Val.hasOneUse()) {
1695 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1696 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1697 Op = SUB;
1698 return Val.getOperand(1);
1699 }
1700 // A special case for i16, which needs truncating as, in most cases, it's
1701 // promoted to i32. We will translate
1702 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1703 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1704 Val.getOperand(0).getOpcode() == ISD::SUB &&
1705 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1706 Op = SUB;
1707 Val = Val.getOperand(0);
1708 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1709 Val.getOperand(1));
1710 }
1711 }
1712
1713 return Val;
1714}
1715
Eric Christophera1d9e292011-05-17 08:10:18 +00001716SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001717 if (Node->hasAnyUseOfValue(0))
1718 return 0;
Chad Rosier24c19d22012-08-01 18:39:17 +00001719
Andrew Trickef9de2a2013-05-25 02:42:55 +00001720 SDLoc dl(Node);
Michael Liao83725392012-09-19 19:36:58 +00001721
Eric Christopher56a42eb2011-05-17 08:16:14 +00001722 // Optimize common patterns for __sync_or_and_fetch and similar arith
1723 // operations where the result is not used. This allows us to use the "lock"
1724 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001725 SDValue Chain = Node->getOperand(0);
1726 SDValue Ptr = Node->getOperand(1);
1727 SDValue Val = Node->getOperand(2);
1728 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1729 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1730 return 0;
1731
Eric Christophera1d9e292011-05-17 08:10:18 +00001732 // Which index into the table.
1733 enum AtomicOpc Op;
1734 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001735 default:
1736 return 0;
Eric Christophera1d9e292011-05-17 08:10:18 +00001737 case ISD::ATOMIC_LOAD_OR:
1738 Op = OR;
1739 break;
1740 case ISD::ATOMIC_LOAD_AND:
1741 Op = AND;
1742 break;
1743 case ISD::ATOMIC_LOAD_XOR:
1744 Op = XOR;
1745 break;
Michael Liao83725392012-09-19 19:36:58 +00001746 case ISD::ATOMIC_LOAD_ADD:
1747 Op = ADD;
1748 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001749 }
Andrew Trick52b83872013-04-13 06:07:36 +00001750
Michael Liao83725392012-09-19 19:36:58 +00001751 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1752 bool isUnOp = !Val.getNode();
1753 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001754
Eric Christopher4a34e612011-05-10 23:57:45 +00001755 unsigned Opc = 0;
1756 switch (NVT.getSimpleVT().SimpleTy) {
1757 default: return 0;
1758 case MVT::i8:
1759 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001760 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001761 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001762 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001763 break;
1764 case MVT::i16:
1765 if (isCN) {
1766 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001767 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001768 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001769 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001770 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001771 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001772 break;
1773 case MVT::i32:
1774 if (isCN) {
1775 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001776 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001777 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001778 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001779 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001780 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001781 break;
1782 case MVT::i64:
Eric Christopherc93217372011-06-30 00:48:30 +00001783 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001784 if (isCN) {
1785 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001786 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001787 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001788 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopherc93217372011-06-30 00:48:30 +00001789 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001790 break;
1791 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001792
Eric Christopherc93217372011-06-30 00:48:30 +00001793 assert(Opc != 0 && "Invalid arith lock transform!");
1794
Michael Liao83725392012-09-19 19:36:58 +00001795 SDValue Ret;
Eric Christopher4a34e612011-05-10 23:57:45 +00001796 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1797 dl, NVT), 0);
1798 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1799 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Michael Liao83725392012-09-19 19:36:58 +00001800 if (isUnOp) {
1801 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001802 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001803 } else {
1804 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
Michael Liaob53d8962013-04-19 22:22:57 +00001805 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liao83725392012-09-19 19:36:58 +00001806 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001807 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1808 SDValue RetVals[] = { Undef, Ret };
1809 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1810}
1811
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001812/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1813/// any uses which require the SF or OF bits to be accurate.
1814static bool HasNoSignedComparisonUses(SDNode *N) {
1815 // Examine each user of the node.
1816 for (SDNode::use_iterator UI = N->use_begin(),
1817 UE = N->use_end(); UI != UE; ++UI) {
1818 // Only examine CopyToReg uses.
1819 if (UI->getOpcode() != ISD::CopyToReg)
1820 return false;
1821 // Only examine CopyToReg uses that copy to EFLAGS.
1822 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1823 X86::EFLAGS)
1824 return false;
1825 // Examine each user of the CopyToReg use.
1826 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1827 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1828 // Only examine the Flag result.
1829 if (FlagUI.getUse().getResNo() != 1) continue;
1830 // Anything unusual: assume conservatively.
1831 if (!FlagUI->isMachineOpcode()) return false;
1832 // Examine the opcode of the user.
1833 switch (FlagUI->getMachineOpcode()) {
1834 // These comparisons don't treat the most significant bit specially.
1835 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1836 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1837 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1838 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattner2b0a7a22010-02-11 19:25:55 +00001839 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1840 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001841 case X86::CMOVA16rr: case X86::CMOVA16rm:
1842 case X86::CMOVA32rr: case X86::CMOVA32rm:
1843 case X86::CMOVA64rr: case X86::CMOVA64rm:
1844 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1845 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1846 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1847 case X86::CMOVB16rr: case X86::CMOVB16rm:
1848 case X86::CMOVB32rr: case X86::CMOVB32rm:
1849 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001850 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1851 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1852 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001853 case X86::CMOVE16rr: case X86::CMOVE16rm:
1854 case X86::CMOVE32rr: case X86::CMOVE32rm:
1855 case X86::CMOVE64rr: case X86::CMOVE64rm:
1856 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1857 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1858 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1859 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1860 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1861 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1862 case X86::CMOVP16rr: case X86::CMOVP16rm:
1863 case X86::CMOVP32rr: case X86::CMOVP32rm:
1864 case X86::CMOVP64rr: case X86::CMOVP64rm:
1865 continue;
1866 // Anything else: assume conservatively.
1867 default: return false;
1868 }
1869 }
1870 }
1871 return true;
1872}
1873
Joel Jones68d59e82012-03-29 05:45:48 +00001874/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1875/// is suitable for doing the {load; increment or decrement; store} to modify
1876/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001877static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001878 SDValue StoredVal, SelectionDAG *CurDAG,
1879 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001880
1881 // is the value stored the result of a DEC or INC?
1882 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1883
Joel Jones68d59e82012-03-29 05:45:48 +00001884 // is the stored value result 0 of the load?
1885 if (StoredVal.getResNo() != 0) return false;
1886
1887 // are there other uses of the loaded value than the inc or dec?
1888 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1889
Joel Jones68d59e82012-03-29 05:45:48 +00001890 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001891 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001892 return false;
1893
Evan Cheng3e869f02012-04-12 19:14:21 +00001894 SDValue Load = StoredVal->getOperand(0);
1895 // Is the stored value a non-extending and non-indexed load?
1896 if (!ISD::isNormalLoad(Load.getNode())) return false;
1897
1898 // Return LoadNode by reference.
1899 LoadNode = cast<LoadSDNode>(Load);
1900 // 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 +00001901 EVT LdVT = LoadNode->getMemoryVT();
1902 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001903 LdVT != MVT::i8)
1904 return false;
1905
1906 // Is store the only read of the loaded value?
1907 if (!Load.hasOneUse())
1908 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001909
Evan Cheng3e869f02012-04-12 19:14:21 +00001910 // Is the address of the store the same as the load?
1911 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1912 LoadNode->getOffset() != StoreNode->getOffset())
1913 return false;
1914
1915 // Check if the chain is produced by the load or is a TokenFactor with
1916 // the load output chain as an operand. Return InputChain by reference.
1917 SDValue Chain = StoreNode->getChain();
1918
1919 bool ChainCheck = false;
1920 if (Chain == Load.getValue(1)) {
1921 ChainCheck = true;
1922 InputChain = LoadNode->getChain();
1923 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1924 SmallVector<SDValue, 4> ChainOps;
1925 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1926 SDValue Op = Chain.getOperand(i);
1927 if (Op == Load.getValue(1)) {
1928 ChainCheck = true;
1929 continue;
1930 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001931
1932 // Make sure using Op as part of the chain would not cause a cycle here.
1933 // In theory, we could check whether the chain node is a predecessor of
1934 // the load. But that can be very expensive. Instead visit the uses and
1935 // make sure they all have smaller node id than the load.
1936 int LoadId = LoadNode->getNodeId();
1937 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1938 UE = UI->use_end(); UI != UE; ++UI) {
1939 if (UI.getUse().getResNo() != 0)
1940 continue;
1941 if (UI->getNodeId() > LoadId)
1942 return false;
1943 }
1944
Evan Cheng3e869f02012-04-12 19:14:21 +00001945 ChainOps.push_back(Op);
1946 }
1947
1948 if (ChainCheck)
1949 // Make a new TokenFactor with all the other input chains except
1950 // for the load.
Andrew Trickef9de2a2013-05-25 02:42:55 +00001951 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Evan Cheng3e869f02012-04-12 19:14:21 +00001952 MVT::Other, &ChainOps[0], ChainOps.size());
1953 }
1954 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00001955 return false;
1956
1957 return true;
1958}
1959
Benjamin Kramer8619c372012-03-29 12:37:26 +00001960/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
1961/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00001962static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
1963 if (Opc == X86ISD::DEC) {
1964 if (LdVT == MVT::i64) return X86::DEC64m;
1965 if (LdVT == MVT::i32) return X86::DEC32m;
1966 if (LdVT == MVT::i16) return X86::DEC16m;
1967 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00001968 } else {
1969 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00001970 if (LdVT == MVT::i64) return X86::INC64m;
1971 if (LdVT == MVT::i32) return X86::INC32m;
1972 if (LdVT == MVT::i16) return X86::INC16m;
1973 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00001974 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00001975 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00001976}
1977
Manman Rena0982042012-06-26 19:47:59 +00001978/// SelectGather - Customized ISel for GATHER operations.
1979///
1980SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
1981 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
1982 SDValue Chain = Node->getOperand(0);
1983 SDValue VSrc = Node->getOperand(2);
1984 SDValue Base = Node->getOperand(3);
1985 SDValue VIdx = Node->getOperand(4);
1986 SDValue VMask = Node->getOperand(5);
1987 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00001988 if (!Scale)
1989 return 0;
Manman Rena0982042012-06-26 19:47:59 +00001990
Craig Topperf7755df2012-07-12 06:52:41 +00001991 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
1992 MVT::Other);
1993
Manman Rena0982042012-06-26 19:47:59 +00001994 // Memory Operands: Base, Scale, Index, Disp, Segment
1995 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
1996 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
1997 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
1998 Disp, Segment, VMask, Chain};
Andrew Trickef9de2a2013-05-25 02:42:55 +00001999 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topperf7755df2012-07-12 06:52:41 +00002000 // Node has 2 outputs: VDst and MVT::Other.
2001 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2002 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2003 // of ResNode.
2004 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2005 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00002006 return ResNode;
2007}
2008
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002009SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00002010 EVT NVT = Node->getValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00002011 unsigned Opc, MOpc;
2012 unsigned Opcode = Node->getOpcode();
Andrew Trickef9de2a2013-05-25 02:42:55 +00002013 SDLoc dl(Node);
Chad Rosier24c19d22012-08-01 18:39:17 +00002014
Chris Lattnerf98f1242010-03-02 06:34:30 +00002015 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00002016
Dan Gohman17059682008-07-17 19:10:17 +00002017 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00002018 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002019 return NULL; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00002020 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00002021
Evan Cheng10d27902006-01-06 20:36:21 +00002022 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00002023 default: break;
Manman Rena0982042012-06-26 19:47:59 +00002024 case ISD::INTRINSIC_W_CHAIN: {
2025 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2026 switch (IntNo) {
2027 default: break;
2028 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002029 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002030 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002031 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002032 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002033 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002034 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002035 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002036 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002037 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002038 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002039 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002040 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002041 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002042 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002043 case Intrinsic::x86_avx2_gather_q_d_256: {
2044 unsigned Opc;
2045 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002046 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002047 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2048 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2049 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2050 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2051 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2052 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2053 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2054 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2055 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2056 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2057 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2058 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2059 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2060 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2061 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2062 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2063 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002064 SDNode *RetVal = SelectGather(Node, Opc);
2065 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002066 // We already called ReplaceUses inside SelectGather.
2067 return NULL;
Craig Toppere15e5f72012-07-01 02:18:18 +00002068 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002069 }
Manman Rena0982042012-06-26 19:47:59 +00002070 }
2071 break;
2072 }
Dan Gohman757eee82009-08-02 16:10:52 +00002073 case X86ISD::GlobalBaseReg:
2074 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002075
Craig Topper3af251d2012-07-01 02:55:34 +00002076
Dan Gohman757eee82009-08-02 16:10:52 +00002077 case X86ISD::ATOMOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002078 case X86ISD::ATOMXOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002079 case X86ISD::ATOMADD64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002080 case X86ISD::ATOMSUB64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002081 case X86ISD::ATOMNAND64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002082 case X86ISD::ATOMAND64_DAG:
Michael Liaode51caf2012-09-25 18:08:13 +00002083 case X86ISD::ATOMMAX64_DAG:
2084 case X86ISD::ATOMMIN64_DAG:
2085 case X86ISD::ATOMUMAX64_DAG:
2086 case X86ISD::ATOMUMIN64_DAG:
Craig Topper3af251d2012-07-01 02:55:34 +00002087 case X86ISD::ATOMSWAP64_DAG: {
2088 unsigned Opc;
2089 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002090 default: llvm_unreachable("Impossible opcode");
Craig Topper3af251d2012-07-01 02:55:34 +00002091 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2092 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2093 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2094 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2095 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2096 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
Michael Liaode51caf2012-09-25 18:08:13 +00002097 case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break;
2098 case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break;
2099 case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break;
2100 case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break;
Craig Topper3af251d2012-07-01 02:55:34 +00002101 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2102 }
2103 SDNode *RetVal = SelectAtomic64(Node, Opc);
2104 if (RetVal)
2105 return RetVal;
2106 break;
2107 }
Dale Johannesen867d5492008-10-02 18:53:47 +00002108
Eric Christophera1d9e292011-05-17 08:10:18 +00002109 case ISD::ATOMIC_LOAD_XOR:
2110 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002111 case ISD::ATOMIC_LOAD_OR:
2112 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002113 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002114 if (RetVal)
2115 return RetVal;
2116 break;
2117 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002118 case ISD::AND:
2119 case ISD::OR:
2120 case ISD::XOR: {
2121 // For operations of the form (x << C1) op C2, check if we can use a smaller
2122 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2123 SDValue N0 = Node->getOperand(0);
2124 SDValue N1 = Node->getOperand(1);
2125
2126 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2127 break;
2128
2129 // i8 is unshrinkable, i16 should be promoted to i32.
2130 if (NVT != MVT::i32 && NVT != MVT::i64)
2131 break;
2132
2133 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2134 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2135 if (!Cst || !ShlCst)
2136 break;
2137
2138 int64_t Val = Cst->getSExtValue();
2139 uint64_t ShlVal = ShlCst->getZExtValue();
2140
2141 // Make sure that we don't change the operation by removing bits.
2142 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002143 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2144 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002145 break;
2146
Craig Topper22cb0c52012-08-11 17:44:14 +00002147 unsigned ShlOp, Op;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002148 EVT CstVT = NVT;
2149
2150 // Check the minimum bitwidth for the new constant.
2151 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2152 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2153 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2154 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2155 CstVT = MVT::i8;
2156 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2157 CstVT = MVT::i32;
2158
2159 // Bail if there is no smaller encoding.
2160 if (NVT == CstVT)
2161 break;
2162
2163 switch (NVT.getSimpleVT().SimpleTy) {
2164 default: llvm_unreachable("Unsupported VT!");
2165 case MVT::i32:
2166 assert(CstVT == MVT::i8);
2167 ShlOp = X86::SHL32ri;
2168
2169 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002170 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002171 case ISD::AND: Op = X86::AND32ri8; break;
2172 case ISD::OR: Op = X86::OR32ri8; break;
2173 case ISD::XOR: Op = X86::XOR32ri8; break;
2174 }
2175 break;
2176 case MVT::i64:
2177 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2178 ShlOp = X86::SHL64ri;
2179
2180 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002181 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002182 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2183 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2184 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2185 }
2186 break;
2187 }
2188
2189 // Emit the smaller op and the shift.
2190 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2191 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2192 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2193 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002194 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002195 case X86ISD::UMUL: {
2196 SDValue N0 = Node->getOperand(0);
2197 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002198
Ted Kremenekb5241b22011-01-14 22:34:13 +00002199 unsigned LoReg;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002200 switch (NVT.getSimpleVT().SimpleTy) {
2201 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002202 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2203 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2204 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2205 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002206 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002207
Chris Lattner364bb0a2010-12-05 07:30:36 +00002208 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2209 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002210
Chris Lattner364bb0a2010-12-05 07:30:36 +00002211 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2212 SDValue Ops[] = {N1, InFlag};
Michael Liaob53d8962013-04-19 22:22:57 +00002213 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosier24c19d22012-08-01 18:39:17 +00002214
Chris Lattner364bb0a2010-12-05 07:30:36 +00002215 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2216 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2217 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2218 return NULL;
2219 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002220
Dan Gohman757eee82009-08-02 16:10:52 +00002221 case ISD::SMUL_LOHI:
2222 case ISD::UMUL_LOHI: {
2223 SDValue N0 = Node->getOperand(0);
2224 SDValue N1 = Node->getOperand(1);
2225
2226 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002227 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002228 if (!isSigned) {
Owen Anderson9f944592009-08-11 20:47:22 +00002229 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002230 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002231 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2232 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002233 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2234 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2235 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2236 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002237 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002238 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00002239 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002240 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002241 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2242 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2243 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2244 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002245 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002246 }
Dan Gohman757eee82009-08-02 16:10:52 +00002247
Michael Liaof9f7b552012-09-26 08:22:37 +00002248 unsigned SrcReg, LoReg, HiReg;
2249 switch (Opc) {
2250 default: llvm_unreachable("Unknown MUL opcode!");
2251 case X86::IMUL8r:
2252 case X86::MUL8r:
2253 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2254 break;
2255 case X86::IMUL16r:
2256 case X86::MUL16r:
2257 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2258 break;
2259 case X86::IMUL32r:
2260 case X86::MUL32r:
2261 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2262 break;
2263 case X86::IMUL64r:
2264 case X86::MUL64r:
2265 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2266 break;
2267 case X86::MULX32rr:
2268 SrcReg = X86::EDX; LoReg = HiReg = 0;
2269 break;
2270 case X86::MULX64rr:
2271 SrcReg = X86::RDX; LoReg = HiReg = 0;
2272 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002273 }
2274
2275 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002276 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002277 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002278 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002279 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002280 if (foldedLoad)
2281 std::swap(N0, N1);
2282 }
2283
Michael Liaof9f7b552012-09-26 08:22:37 +00002284 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002285 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002286 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002287
2288 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002289 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002290 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2291 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002292 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2293 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002294 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002295 ResHi = SDValue(CNode, 0);
2296 ResLo = SDValue(CNode, 1);
2297 Chain = SDValue(CNode, 2);
2298 InFlag = SDValue(CNode, 3);
2299 } else {
2300 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002301 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002302 Chain = SDValue(CNode, 0);
2303 InFlag = SDValue(CNode, 1);
2304 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002305
Dan Gohman757eee82009-08-02 16:10:52 +00002306 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002307 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002308 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002309 SDValue Ops[] = { N1, InFlag };
2310 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2311 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002312 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002313 ResHi = SDValue(CNode, 0);
2314 ResLo = SDValue(CNode, 1);
2315 InFlag = SDValue(CNode, 2);
2316 } else {
2317 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liaob53d8962013-04-19 22:22:57 +00002318 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liaof9f7b552012-09-26 08:22:37 +00002319 InFlag = SDValue(CNode, 0);
2320 }
Dan Gohman757eee82009-08-02 16:10:52 +00002321 }
2322
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002323 // Prevent use of AH in a REX instruction by referencing AX instead.
2324 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2325 !SDValue(Node, 1).use_empty()) {
2326 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2327 X86::AX, MVT::i16, InFlag);
2328 InFlag = Result.getValue(2);
2329 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2330 // registers.
2331 if (!SDValue(Node, 0).use_empty())
2332 ReplaceUses(SDValue(Node, 1),
2333 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2334
2335 // Shift AX down 8 bits.
2336 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2337 Result,
2338 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2339 // Then truncate it down to i8.
2340 ReplaceUses(SDValue(Node, 1),
2341 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2342 }
Dan Gohman757eee82009-08-02 16:10:52 +00002343 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002344 if (!SDValue(Node, 0).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002345 if (ResLo.getNode() == 0) {
2346 assert(LoReg && "Register for low half is not defined!");
2347 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2348 InFlag);
2349 InFlag = ResLo.getValue(2);
2350 }
2351 ReplaceUses(SDValue(Node, 0), ResLo);
2352 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002353 }
2354 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002355 if (!SDValue(Node, 1).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002356 if (ResHi.getNode() == 0) {
2357 assert(HiReg && "Register for high half is not defined!");
2358 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2359 InFlag);
2360 InFlag = ResHi.getValue(2);
2361 }
2362 ReplaceUses(SDValue(Node, 1), ResHi);
2363 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002364 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002365
Dan Gohman757eee82009-08-02 16:10:52 +00002366 return NULL;
2367 }
2368
2369 case ISD::SDIVREM:
2370 case ISD::UDIVREM: {
2371 SDValue N0 = Node->getOperand(0);
2372 SDValue N1 = Node->getOperand(1);
2373
2374 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002375 if (!isSigned) {
Owen Anderson9f944592009-08-11 20:47:22 +00002376 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002377 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002378 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2379 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2380 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2381 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002382 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002383 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00002384 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002385 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002386 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2387 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2388 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2389 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002390 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002391 }
Dan Gohman757eee82009-08-02 16:10:52 +00002392
Chris Lattner518b0372009-12-23 01:45:04 +00002393 unsigned LoReg, HiReg, ClrReg;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002394 unsigned SExtOpcode;
Owen Anderson9f944592009-08-11 20:47:22 +00002395 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002396 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002397 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002398 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002399 SExtOpcode = X86::CBW;
2400 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002401 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002402 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover64ec0ff2013-05-30 13:19:42 +00002403 ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002404 SExtOpcode = X86::CWD;
2405 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002406 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002407 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002408 SExtOpcode = X86::CDQ;
2409 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002410 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002411 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002412 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002413 break;
2414 }
2415
Dan Gohman757eee82009-08-02 16:10:52 +00002416 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002417 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002418 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002419
Dan Gohman757eee82009-08-02 16:10:52 +00002420 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002421 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002422 // Special case for div8, just use a move with zero extension to AX to
2423 // clear the upper 8 bits (AH).
2424 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002425 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002426 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2427 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002428 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liaob53d8962013-04-19 22:22:57 +00002429 MVT::Other, Ops), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002430 Chain = Move.getValue(1);
2431 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002432 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002433 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002434 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002435 Chain = CurDAG->getEntryNode();
2436 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002437 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002438 InFlag = Chain.getValue(1);
2439 } else {
2440 InFlag =
2441 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2442 LoReg, N0, SDValue()).getValue(1);
2443 if (isSigned && !signBitIsZero) {
2444 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002445 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002446 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002447 } else {
2448 // Zero out the high part, effectively zero extending the input.
Tim Northover64ec0ff2013-05-30 13:19:42 +00002449 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
2450 switch (NVT.getSimpleVT().SimpleTy) {
2451 case MVT::i16:
2452 ClrNode =
2453 SDValue(CurDAG->getMachineNode(
2454 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2455 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2456 0);
2457 break;
2458 case MVT::i32:
2459 break;
2460 case MVT::i64:
2461 ClrNode =
2462 SDValue(CurDAG->getMachineNode(
2463 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2464 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2465 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2466 0);
2467 break;
2468 default:
2469 llvm_unreachable("Unexpected division source");
2470 }
2471
Chris Lattner518b0372009-12-23 01:45:04 +00002472 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002473 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002474 }
Evan Cheng92e27972006-01-06 23:19:29 +00002475 }
Dan Gohmana1603612007-10-08 18:33:35 +00002476
Dan Gohman757eee82009-08-02 16:10:52 +00002477 if (foldedLoad) {
2478 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2479 InFlag };
2480 SDNode *CNode =
Michael Liaob53d8962013-04-19 22:22:57 +00002481 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman757eee82009-08-02 16:10:52 +00002482 InFlag = SDValue(CNode, 1);
2483 // Update the chain.
2484 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2485 } else {
2486 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002487 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002488 }
Evan Cheng92e27972006-01-06 23:19:29 +00002489
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002490 // Prevent use of AH in a REX instruction by referencing AX instead.
2491 // Shift it down 8 bits.
2492 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2493 !SDValue(Node, 1).use_empty()) {
2494 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2495 X86::AX, MVT::i16, InFlag);
2496 InFlag = Result.getValue(2);
2497
2498 // If we also need AL (the quotient), get it by extracting a subreg from
2499 // Result. The fast register allocator does not like multiple CopyFromReg
2500 // nodes using aliasing registers.
2501 if (!SDValue(Node, 0).use_empty())
2502 ReplaceUses(SDValue(Node, 0),
2503 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2504
2505 // Shift AX right by 8 bits instead of using AH.
2506 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2507 Result,
2508 CurDAG->getTargetConstant(8, MVT::i8)),
2509 0);
2510 ReplaceUses(SDValue(Node, 1),
2511 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2512 }
Dan Gohman757eee82009-08-02 16:10:52 +00002513 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002514 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002515 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2516 LoReg, NVT, InFlag);
2517 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002518 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002519 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002520 }
2521 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002522 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002523 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2524 HiReg, NVT, InFlag);
2525 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002526 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002527 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002528 }
Dan Gohman757eee82009-08-02 16:10:52 +00002529 return NULL;
2530 }
2531
Manman Ren1be131b2012-08-08 00:51:41 +00002532 case X86ISD::CMP:
2533 case X86ISD::SUB: {
2534 // Sometimes a SUB is used to perform comparison.
2535 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2536 // This node is not a CMP.
2537 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002538 SDValue N0 = Node->getOperand(0);
2539 SDValue N1 = Node->getOperand(1);
2540
2541 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2542 // use a smaller encoding.
Eli Friedman39d0f572010-08-04 22:40:58 +00002543 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2544 HasNoSignedComparisonUses(Node))
Evan Cheng050df1b2010-04-28 08:30:49 +00002545 // Look past the truncate if CMP is the only use of it.
2546 N0 = N0.getOperand(0);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002547 if ((N0.getNode()->getOpcode() == ISD::AND ||
2548 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2549 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002550 N0.getValueType() != MVT::i8 &&
2551 X86::isZeroNode(N1)) {
2552 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2553 if (!C) break;
2554
2555 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002556 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2557 (!(C->getZExtValue() & 0x80) ||
2558 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002559 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2560 SDValue Reg = N0.getNode()->getOperand(0);
2561
2562 // On x86-32, only the ABCD registers have 8-bit subregisters.
2563 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002564 const TargetRegisterClass *TRC;
Dan Gohmanac33a902009-08-19 18:16:17 +00002565 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2566 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2567 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2568 default: llvm_unreachable("Unsupported TEST operand type!");
2569 }
2570 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002571 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2572 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002573 }
2574
2575 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002576 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002577 MVT::i8, Reg);
2578
2579 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002580 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2581 Subreg, Imm);
2582 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2583 // one, do not call ReplaceAllUsesWith.
2584 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2585 SDValue(NewNode, 0));
2586 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002587 }
2588
2589 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002590 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2591 (!(C->getZExtValue() & 0x8000) ||
2592 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002593 // Shift the immediate right by 8 bits.
2594 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2595 MVT::i8);
2596 SDValue Reg = N0.getNode()->getOperand(0);
2597
2598 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002599 const TargetRegisterClass *TRC;
Dan Gohmanac33a902009-08-19 18:16:17 +00002600 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2601 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2602 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2603 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2604 default: llvm_unreachable("Unsupported TEST operand type!");
2605 }
2606 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002607 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2608 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002609
2610 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002611 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002612 MVT::i8, Reg);
2613
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002614 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2615 // target GR8_NOREX registers, so make sure the register class is
2616 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002617 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2618 MVT::i32, Subreg, ShiftedImm);
2619 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2620 // one, do not call ReplaceAllUsesWith.
2621 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2622 SDValue(NewNode, 0));
2623 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002624 }
2625
2626 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2627 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002628 N0.getValueType() != MVT::i16 &&
2629 (!(C->getZExtValue() & 0x8000) ||
2630 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002631 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2632 SDValue Reg = N0.getNode()->getOperand(0);
2633
2634 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002635 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002636 MVT::i16, Reg);
2637
2638 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002639 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2640 Subreg, Imm);
2641 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2642 // one, do not call ReplaceAllUsesWith.
2643 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2644 SDValue(NewNode, 0));
2645 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002646 }
2647
2648 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2649 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002650 N0.getValueType() == MVT::i64 &&
2651 (!(C->getZExtValue() & 0x80000000) ||
2652 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002653 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2654 SDValue Reg = N0.getNode()->getOperand(0);
2655
2656 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002657 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002658 MVT::i32, Reg);
2659
2660 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002661 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2662 Subreg, Imm);
2663 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2664 // one, do not call ReplaceAllUsesWith.
2665 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2666 SDValue(NewNode, 0));
2667 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002668 }
2669 }
2670 break;
2671 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002672 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002673 // Change a chain of {load; incr or dec; store} of the same value into
2674 // a simple increment or decrement through memory of that value, if the
2675 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002676 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002677 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002678 // {INC,DEC}X{64,32,16,8}.)
2679 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002680 // node in the pattern to the result node. probably with a new keyword
2681 // for example, we have this
2682 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2683 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2684 // (implicit EFLAGS)]>;
2685 // but maybe need something like this
2686 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2687 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2688 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002689
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002690 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002691 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002692 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002693
Evan Cheng3e869f02012-04-12 19:14:21 +00002694 LoadSDNode *LoadNode = 0;
2695 SDValue InputChain;
2696 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2697 LoadNode, InputChain))
2698 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002699
2700 SDValue Base, Scale, Index, Disp, Segment;
2701 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2702 Base, Scale, Index, Disp, Segment))
2703 break;
2704
2705 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2706 MemOp[0] = StoreNode->getMemOperand();
2707 MemOp[1] = LoadNode->getMemOperand();
2708 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002709 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002710 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2711 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickef9de2a2013-05-25 02:42:55 +00002712 SDLoc(Node),
Michael Liaob53d8962013-04-19 22:22:57 +00002713 MVT::i32, MVT::Other, Ops);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002714 Result->setMemRefs(MemOp, MemOp + 2);
2715
2716 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2717 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2718
2719 return Result;
2720 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002721 }
2722
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002723 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002724
Chris Lattnerf98f1242010-03-02 06:34:30 +00002725 DEBUG(dbgs() << "=> ";
2726 if (ResNode == NULL || ResNode == Node)
2727 Node->dump(CurDAG);
2728 else
2729 ResNode->dump(CurDAG);
2730 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002731
2732 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002733}
2734
Chris Lattnerba1ed582006-06-08 18:03:49 +00002735bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002736SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002737 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002738 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002739 switch (ConstraintCode) {
2740 case 'o': // offsetable ??
2741 case 'v': // not offsetable ??
2742 default: return true;
2743 case 'm': // memory
Chris Lattnerd58d7c12010-09-21 22:07:31 +00002744 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002745 return true;
2746 break;
2747 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002748
Evan Cheng2d487222006-08-26 01:05:16 +00002749 OutOps.push_back(Op0);
2750 OutOps.push_back(Op1);
2751 OutOps.push_back(Op2);
2752 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002753 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002754 return false;
2755}
2756
Chad Rosier24c19d22012-08-01 18:39:17 +00002757/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002758/// X86-specific DAG, ready for instruction scheduling.
2759///
Bill Wendling026e5d72009-04-29 23:29:43 +00002760FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002761 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002762 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002763}