blob: 6f13186dfb4c7d78608a8979d2f916dda9188b17 [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);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000203 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000204 SDValue &Scale, SDValue &Index, SDValue &Disp,
205 SDValue &Segment);
Chris Lattner0e023ea2010-09-21 20:31:19 +0000206 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattnerf4693072010-07-08 23:46:44 +0000207 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Chris Lattnerbd6e1932010-03-01 22:51:11 +0000209 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattnerafac7dad2010-02-16 22:35:06 +0000210 SDValue &Base, SDValue &Scale,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000211 SDValue &Index, SDValue &Disp,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000212 SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +0000213 SDValue &NodeWithChain);
Chad Rosier24c19d22012-08-01 18:39:17 +0000214
Dan Gohmanea6f91f2010-01-05 01:24:18 +0000215 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000216 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000217 SDValue &Index, SDValue &Disp,
218 SDValue &Segment);
Chad Rosier24c19d22012-08-01 18:39:17 +0000219
Chris Lattnerba1ed582006-06-08 18:03:49 +0000220 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
221 /// inline asm expressions.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000222 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerba1ed582006-06-08 18:03:49 +0000223 char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000224 std::vector<SDValue> &OutOps);
Chad Rosier24c19d22012-08-01 18:39:17 +0000225
Anton Korobeynikov90910742007-09-25 21:52:30 +0000226 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
227
Chad Rosier24c19d22012-08-01 18:39:17 +0000228 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000229 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +0000230 SDValue &Disp, SDValue &Segment) {
Evan Cheng67ed58e2005-12-12 21:49:40 +0000231 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000232 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
233 AM.Base_Reg;
Evan Cheng1d712482005-12-17 09:13:43 +0000234 Scale = getI8Imm(AM.Scale);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000235 Index = AM.IndexReg;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000236 // These are 32-bit even in 64-bit mode since RIP relative offset
237 // is 32-bit.
238 if (AM.GV)
Devang Patela3ca21b2010-07-06 22:08:15 +0000239 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
240 MVT::i32, AM.Disp,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000241 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000242 else if (AM.CP)
Owen Anderson9f944592009-08-11 20:47:22 +0000243 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000244 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000245 else if (AM.ES) {
246 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson9f944592009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000248 } else if (AM.JT != -1) {
249 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson9f944592009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liaoabb87d42012-09-12 21:43:09 +0000251 } else if (AM.BlockAddr)
252 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
253 AM.SymbolFlags);
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000254 else
Owen Anderson9f944592009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola3b2df102009-04-08 21:14:34 +0000256
257 if (AM.Segment.getNode())
258 Segment = AM.Segment;
259 else
Owen Anderson9f944592009-08-11 20:47:22 +0000260 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Cheng67ed58e2005-12-12 21:49:40 +0000261 }
262
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000263 /// getI8Imm - Return a target constant with the specified value, of type
264 /// i8.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000265 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000267 }
268
Chris Lattner655e7df2005-11-16 01:54:32 +0000269 /// getI32Imm - Return a target constant with the specified value, of type
270 /// i32.
Dan Gohman2ce6f2a2008-07-27 21:46:04 +0000271 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson9f944592009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattner655e7df2005-11-16 01:54:32 +0000273 }
Evan Chengd49cc362006-02-10 22:24:32 +0000274
Dan Gohman24300732008-09-23 18:22:58 +0000275 /// getGlobalBaseReg - Return an SDNode that returns the value of
276 /// the global base register. Output instructions required to
277 /// initialize the global base register, if necessary.
278 ///
Evan Cheng61413a32006-08-26 05:34:46 +0000279 SDNode *getGlobalBaseReg();
Evan Cheng5588de92006-02-18 00:15:05 +0000280
Dan Gohman4751bb92009-06-03 20:20:00 +0000281 /// getTargetMachine - Return a reference to the TargetMachine, casted
282 /// to the target-specific type.
283 const X86TargetMachine &getTargetMachine() {
284 return static_cast<const X86TargetMachine &>(TM);
285 }
286
287 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
288 /// to the target-specific type.
289 const X86InstrInfo *getInstrInfo() {
290 return getTargetMachine().getInstrInfo();
291 }
Chris Lattner655e7df2005-11-16 01:54:32 +0000292 };
293}
294
Evan Cheng72bb66a2006-08-08 00:31:00 +0000295
Evan Cheng5e73ff22010-02-15 19:41:07 +0000296bool
297X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling026e5d72009-04-29 23:29:43 +0000298 if (OptLevel == CodeGenOpt::None) return false;
Evan Chengb86375c2006-10-14 08:33:25 +0000299
Evan Cheng5e73ff22010-02-15 19:41:07 +0000300 if (!N.hasOneUse())
301 return false;
302
303 if (N.getOpcode() != ISD::LOAD)
304 return true;
305
306 // If N is a load, do additional profitability checks.
307 if (U == Root) {
Evan Cheng83bdb382008-11-27 00:49:46 +0000308 switch (U->getOpcode()) {
309 default: break;
Dan Gohman85d4fdf2010-01-04 20:51:50 +0000310 case X86ISD::ADD:
311 case X86ISD::SUB:
312 case X86ISD::AND:
313 case X86ISD::XOR:
314 case X86ISD::OR:
Evan Cheng83bdb382008-11-27 00:49:46 +0000315 case ISD::ADD:
316 case ISD::ADDC:
317 case ISD::ADDE:
318 case ISD::AND:
319 case ISD::OR:
320 case ISD::XOR: {
Rafael Espindolabb834f02009-04-10 10:09:34 +0000321 SDValue Op1 = U->getOperand(1);
322
Evan Cheng83bdb382008-11-27 00:49:46 +0000323 // If the other operand is a 8-bit immediate we should fold the immediate
324 // instead. This reduces code size.
325 // e.g.
326 // movl 4(%esp), %eax
327 // addl $4, %eax
328 // vs.
329 // movl $4, %eax
330 // addl 4(%esp), %eax
331 // The former is 2 bytes shorter. In case where the increment is 1, then
332 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindolabb834f02009-04-10 10:09:34 +0000333 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman2293eb62009-03-14 02:07:16 +0000334 if (Imm->getAPIntValue().isSignedIntN(8))
335 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +0000336
337 // If the other operand is a TLS address, we should fold it instead.
338 // This produces
339 // movl %gs:0, %eax
340 // leal i@NTPOFF(%eax), %eax
341 // instead of
342 // movl $i@NTPOFF, %eax
343 // addl %gs:0, %eax
344 // if the block also has an access to a second TLS address this will save
345 // a load.
346 // FIXME: This is probably also true for non TLS addresses.
347 if (Op1.getOpcode() == X86ISD::Wrapper) {
348 SDValue Val = Op1.getOperand(0);
349 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
350 return false;
351 }
Evan Cheng83bdb382008-11-27 00:49:46 +0000352 }
353 }
Evan Cheng5e73ff22010-02-15 19:41:07 +0000354 }
355
356 return true;
357}
358
Evan Chengd703df62010-03-14 03:48:46 +0000359/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
360/// load's chain operand and move load below the call's chain operand.
361static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng214156c2012-10-02 23:49:13 +0000362 SDValue Call, SDValue OrigChain) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000363 SmallVector<SDValue, 8> Ops;
Evan Chengd703df62010-03-14 03:48:46 +0000364 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng6c7e8512009-01-26 18:43:34 +0000365 if (Chain.getNode() == Load.getNode())
366 Ops.push_back(Load.getOperand(0));
367 else {
368 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengd703df62010-03-14 03:48:46 +0000369 "Unexpected chain operand");
Evan Cheng6c7e8512009-01-26 18:43:34 +0000370 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
371 if (Chain.getOperand(i).getNode() == Load.getNode())
372 Ops.push_back(Load.getOperand(0));
373 else
374 Ops.push_back(Chain.getOperand(i));
375 SDValue NewChain =
Dale Johannesen9f3f72f2009-02-06 01:31:28 +0000376 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson9f944592009-08-11 20:47:22 +0000377 MVT::Other, &Ops[0], Ops.size());
Evan Cheng6c7e8512009-01-26 18:43:34 +0000378 Ops.clear();
379 Ops.push_back(NewChain);
380 }
Evan Chengd703df62010-03-14 03:48:46 +0000381 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
382 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman92c11ac2010-06-18 15:30:29 +0000383 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
384 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengf00f1e52008-08-25 21:27:18 +0000385 Load.getOperand(1), Load.getOperand(2));
Evan Cheng214156c2012-10-02 23:49:13 +0000386
Evan Cheng214156c2012-10-02 23:49:13 +0000387 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengf00f1e52008-08-25 21:27:18 +0000388 Ops.clear();
Gabor Greiff304a7a2008-08-28 21:40:38 +0000389 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng214156c2012-10-02 23:49:13 +0000390 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengf00f1e52008-08-25 21:27:18 +0000391 Ops.push_back(Call.getOperand(i));
Evan Cheng847ad442012-10-05 01:48:22 +0000392 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], NumOps);
Evan Chengf00f1e52008-08-25 21:27:18 +0000393}
394
395/// isCalleeLoad - Return true if call address is a load and it can be
396/// moved below CALLSEQ_START and the chains leading up to the call.
397/// Return the CALLSEQ_START by reference as a second output.
Evan Chengd703df62010-03-14 03:48:46 +0000398/// In the case of a tail call, there isn't a callseq node between the call
399/// chain and the load.
400static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng847ad442012-10-05 01:48:22 +0000401 // The transformation is somewhat dangerous if the call's chain was glued to
402 // the call. After MoveBelowOrigChain the load is moved between the call and
403 // the chain, this can create a cycle if the load is not folded. So it is
404 // *really* important that we are sure the load will be folded.
Gabor Greiff304a7a2008-08-28 21:40:38 +0000405 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengf00f1e52008-08-25 21:27:18 +0000406 return false;
Gabor Greiff304a7a2008-08-28 21:40:38 +0000407 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengf00f1e52008-08-25 21:27:18 +0000408 if (!LD ||
409 LD->isVolatile() ||
410 LD->getAddressingMode() != ISD::UNINDEXED ||
411 LD->getExtensionType() != ISD::NON_EXTLOAD)
412 return false;
413
414 // Now let's find the callseq_start.
Evan Chengd703df62010-03-14 03:48:46 +0000415 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengf00f1e52008-08-25 21:27:18 +0000416 if (!Chain.hasOneUse())
417 return false;
418 Chain = Chain.getOperand(0);
419 }
Evan Chengd703df62010-03-14 03:48:46 +0000420
421 if (!Chain.getNumOperands())
422 return false;
Evan Cheng3fb03e22013-01-06 19:00:15 +0000423 // Since we are not checking for AA here, conservatively abort if the chain
424 // writes to memory. It's not safe to move the callee (a load) across a store.
425 if (isa<MemSDNode>(Chain.getNode()) &&
426 cast<MemSDNode>(Chain.getNode())->writeMem())
427 return false;
Evan Cheng6c7e8512009-01-26 18:43:34 +0000428 if (Chain.getOperand(0).getNode() == Callee.getNode())
429 return true;
430 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman520a6852009-09-15 01:22:01 +0000431 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
432 Callee.getValue(1).hasOneUse())
Evan Cheng6c7e8512009-01-26 18:43:34 +0000433 return true;
434 return false;
Evan Chengf00f1e52008-08-25 21:27:18 +0000435}
436
Chris Lattner8d637042010-03-02 23:12:51 +0000437void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner82cc5332010-03-04 01:43:43 +0000438 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling698e84f2012-12-30 10:32:01 +0000439 OptForSize = MF->getFunction()->getAttributes().
440 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosier24c19d22012-08-01 18:39:17 +0000441
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000442 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
443 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnera91f77e2008-01-24 08:07:48 +0000444 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattner8d637042010-03-02 23:12:51 +0000445
Evan Chengd703df62010-03-14 03:48:46 +0000446 if (OptLevel != CodeGenOpt::None &&
447 (N->getOpcode() == X86ISD::CALL ||
Evan Cheng847ad442012-10-05 01:48:22 +0000448 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewyckyf41a80e2013-01-13 19:03:55 +0000449 // Only does this if load can be folded into TC_RETURN.
Evan Cheng847ad442012-10-05 01:48:22 +0000450 (Subtarget->is64Bit() ||
451 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattner8d637042010-03-02 23:12:51 +0000452 /// Also try moving call address load from outside callseq_start to just
453 /// before the call to allow it to be folded.
454 ///
455 /// [Load chain]
456 /// ^
457 /// |
458 /// [Load]
459 /// ^ ^
460 /// | |
461 /// / \--
462 /// / |
463 ///[CALLSEQ_START] |
464 /// ^ |
465 /// | |
466 /// [LOAD/C2Reg] |
467 /// | |
468 /// \ /
469 /// \ /
470 /// [CALL]
Evan Chengd703df62010-03-14 03:48:46 +0000471 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattner8d637042010-03-02 23:12:51 +0000472 SDValue Chain = N->getOperand(0);
473 SDValue Load = N->getOperand(1);
Evan Chengd703df62010-03-14 03:48:46 +0000474 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattner8d637042010-03-02 23:12:51 +0000475 continue;
Evan Chengd703df62010-03-14 03:48:46 +0000476 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattner8d637042010-03-02 23:12:51 +0000477 ++NumLoadMoved;
478 continue;
479 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000480
Chris Lattner8d637042010-03-02 23:12:51 +0000481 // Lower fpround and fpextend nodes that target the FP stack to be store and
482 // load to the stack. This is a gross hack. We would like to simply mark
483 // these as being illegal, but when we do that, legalize produces these when
484 // it expands calls, then expands these in the same legalize pass. We would
485 // like dag combine to be able to hack on these between the call expansion
486 // and the node legalization. As such this pass basically does "really
487 // late" legalization of these inline with the X86 isel pass.
488 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000489 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
490 continue;
Chad Rosier24c19d22012-08-01 18:39:17 +0000491
Owen Anderson53aa7a92009-08-10 22:56:29 +0000492 EVT SrcVT = N->getOperand(0).getValueType();
493 EVT DstVT = N->getValueType(0);
Bruno Cardoso Lopes616fe602011-08-01 21:54:05 +0000494
495 // If any of the sources are vectors, no fp stack involved.
496 if (SrcVT.isVector() || DstVT.isVector())
497 continue;
498
499 // If the source and destination are SSE registers, then this is a legal
500 // conversion that should not be lowered.
Chris Lattnera91f77e2008-01-24 08:07:48 +0000501 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
502 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
503 if (SrcIsSSE && DstIsSSE)
504 continue;
505
Chris Lattnerd587e582008-03-09 07:05:32 +0000506 if (!SrcIsSSE && !DstIsSSE) {
507 // If this is an FPStack extension, it is a noop.
508 if (N->getOpcode() == ISD::FP_EXTEND)
509 continue;
510 // If this is a value-preserving FPStack truncation, it is a noop.
511 if (N->getConstantOperandVal(1))
512 continue;
513 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000514
Chris Lattnera91f77e2008-01-24 08:07:48 +0000515 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
516 // FPStack has extload and truncstore. SSE can fold direct loads into other
517 // operations. Based on this, decide what we want to do.
Owen Anderson53aa7a92009-08-10 22:56:29 +0000518 EVT MemVT;
Chris Lattnera91f77e2008-01-24 08:07:48 +0000519 if (N->getOpcode() == ISD::FP_ROUND)
520 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
521 else
522 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosier24c19d22012-08-01 18:39:17 +0000523
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000524 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000525 DebugLoc dl = N->getDebugLoc();
Chad Rosier24c19d22012-08-01 18:39:17 +0000526
Chris Lattnera91f77e2008-01-24 08:07:48 +0000527 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen14f2d9d2009-02-03 21:48:12 +0000528 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000529 N->getOperand(0),
Chris Lattner3d178ed2010-09-21 17:04:51 +0000530 MemTmp, MachinePointerInfo(), MemVT,
David Greenecbd39c52010-02-15 16:57:43 +0000531 false, false, 0);
Stuart Hastings81c43062011-02-16 16:23:55 +0000532 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d178ed2010-09-21 17:04:51 +0000533 MachinePointerInfo(),
534 MemVT, false, false, 0);
Chris Lattnera91f77e2008-01-24 08:07:48 +0000535
536 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
537 // extload we created. This will cause general havok on the dag because
538 // anything below the conversion could be folded into other existing nodes.
539 // To avoid invalidating 'I', back it up to the convert node.
540 --I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000541 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosier24c19d22012-08-01 18:39:17 +0000542
Chris Lattnera91f77e2008-01-24 08:07:48 +0000543 // Now that we did that, the node is dead. Increment the iterator to the
544 // next node to process, then delete N.
545 ++I;
Dan Gohmaneb0cee92008-08-23 02:25:05 +0000546 CurDAG->DeleteNode(N);
Chad Rosier24c19d22012-08-01 18:39:17 +0000547 }
Chris Lattnera91f77e2008-01-24 08:07:48 +0000548}
549
Chris Lattner655e7df2005-11-16 01:54:32 +0000550
Anton Korobeynikov90910742007-09-25 21:52:30 +0000551/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
552/// the main function.
553void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
554 MachineFrameInfo *MFI) {
555 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling81d40712011-01-06 00:47:10 +0000556 if (Subtarget->isTargetCygMing()) {
557 unsigned CallOp =
Jakob Stoklund Olesen97e31152012-02-16 17:56:02 +0000558 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattner6f306d72010-04-02 20:16:16 +0000559 BuildMI(BB, DebugLoc(),
Bill Wendling81d40712011-01-06 00:47:10 +0000560 TII->get(CallOp)).addExternalSymbol("__main");
561 }
Anton Korobeynikov90910742007-09-25 21:52:30 +0000562}
563
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000564void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov90910742007-09-25 21:52:30 +0000565 // If this is main, emit special code for main.
Dan Gohmanc87b74d2010-04-14 20:17:22 +0000566 if (const Function *Fn = MF->getFunction())
567 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
568 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov90910742007-09-25 21:52:30 +0000569}
570
Eli Friedman344ec792011-07-13 21:29:53 +0000571static bool isDispSafeForFrameIndex(int64_t Val) {
572 // On 64-bit platforms, we can run into an issue where a frame index
573 // includes a displacement that, when added to the explicit displacement,
574 // will overflow the displacement field. Assuming that the frame index
575 // displacement fits into a 31-bit integer (which is only slightly more
576 // aggressive than the current fundamental assumption that it fits into
577 // a 32-bit integer), a 31-bit disp should always be safe.
578 return isInt<31>(Val);
579}
580
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000581bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
582 X86ISelAddressMode &AM) {
583 int64_t Val = AM.Disp + Offset;
584 CodeModel::Model M = TM.getCodeModel();
Eli Friedman344ec792011-07-13 21:29:53 +0000585 if (Subtarget->is64Bit()) {
586 if (!X86::isOffsetSuitableForCodeModel(Val, M,
587 AM.hasSymbolicDisplacement()))
588 return true;
589 // In addition to the checks required for a register base, check that
590 // we do not try to use an unsafe Disp with a frame index.
591 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
592 !isDispSafeForFrameIndex(Val))
593 return true;
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000594 }
Eli Friedman344ec792011-07-13 21:29:53 +0000595 AM.Disp = Val;
596 return false;
597
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000598}
Rafael Espindola3b2df102009-04-08 21:14:34 +0000599
Chris Lattner8a236b62010-09-22 04:39:11 +0000600bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
601 SDValue Address = N->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +0000602
Chris Lattner8a236b62010-09-22 04:39:11 +0000603 // load gs:0 -> GS segment register.
604 // load fs:0 -> FS segment register.
605 //
Rafael Espindola3b2df102009-04-08 21:14:34 +0000606 // This optimization is valid because the GNU TLS model defines that
607 // gs:0 (or fs:0 on X86-64) contains its own address.
608 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattner8a236b62010-09-22 04:39:11 +0000609 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
610 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
David Chisnall5b8c1682012-07-24 20:04:16 +0000611 Subtarget->isTargetLinux())
Chris Lattner8a236b62010-09-22 04:39:11 +0000612 switch (N->getPointerInfo().getAddrSpace()) {
613 case 256:
614 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
615 return false;
616 case 257:
617 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
618 return false;
619 }
Chad Rosier24c19d22012-08-01 18:39:17 +0000620
Rafael Espindola3b2df102009-04-08 21:14:34 +0000621 return true;
622}
623
Chris Lattnerfea81da2009-06-27 04:16:01 +0000624/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
625/// into an addressing mode. These wrap things that will resolve down into a
626/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000627/// returns false.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000628bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000629 // If the addressing mode already has a symbol as the displacement, we can
630 // never match another symbol.
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000631 if (AM.hasSymbolicDisplacement())
632 return true;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000633
634 SDValue N0 = N.getOperand(0);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000635 CodeModel::Model M = TM.getCodeModel();
636
Chris Lattnerfea81da2009-06-27 04:16:01 +0000637 // Handle X86-64 rip-relative addresses. We check this before checking direct
638 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruth3779ac12012-04-09 02:13:06 +0000639 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattnerfea81da2009-06-27 04:16:01 +0000640 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
641 // they cannot be folded into immediate fields.
642 // FIXME: This can be improved for kernel and other models?
Chandler Carruth3779ac12012-04-09 02:13:06 +0000643 (M == CodeModel::Small || M == CodeModel::Kernel)) {
644 // Base and index reg must be 0 in order to use %rip as base.
645 if (AM.hasBaseOrIndexReg())
646 return true;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000647 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000648 X86ISelAddressMode Backup = AM;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000649 AM.GV = G->getGlobal();
Chris Lattnerbd7e26d2009-06-26 05:51:45 +0000650 AM.SymbolFlags = G->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000651 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
652 AM = Backup;
653 return true;
654 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000655 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000656 X86ISelAddressMode Backup = AM;
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000657 AM.CP = CP->getConstVal();
658 AM.Align = CP->getAlignment();
Chris Lattner1d3b65a2009-06-26 05:56:49 +0000659 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000660 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
661 AM = Backup;
662 return true;
663 }
Chris Lattnerfea81da2009-06-27 04:16:01 +0000664 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
665 AM.ES = S->getSymbol();
666 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000667 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000668 AM.JT = J->getIndex();
669 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000670 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
671 X86ISelAddressMode Backup = AM;
672 AM.BlockAddr = BA->getBlockAddress();
673 AM.SymbolFlags = BA->getTargetFlags();
674 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
675 AM = Backup;
676 return true;
677 }
678 } else
679 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000680
Chris Lattnerfea81da2009-06-27 04:16:01 +0000681 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson9f944592009-08-11 20:47:22 +0000682 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000683 return false;
Chris Lattnerfea81da2009-06-27 04:16:01 +0000684 }
685
686 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruth3779ac12012-04-09 02:13:06 +0000687 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
688 // mode, this only applies to a non-RIP-relative computation.
Chris Lattnerfea81da2009-06-27 04:16:01 +0000689 if (!Subtarget->is64Bit() ||
Chandler Carruth3779ac12012-04-09 02:13:06 +0000690 M == CodeModel::Small || M == CodeModel::Kernel) {
691 assert(N.getOpcode() != X86ISD::WrapperRIP &&
692 "RIP-relative addressing already handled");
Chris Lattnerfea81da2009-06-27 04:16:01 +0000693 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
694 AM.GV = G->getGlobal();
695 AM.Disp += G->getOffset();
696 AM.SymbolFlags = G->getTargetFlags();
697 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
698 AM.CP = CP->getConstVal();
699 AM.Align = CP->getAlignment();
700 AM.Disp += CP->getOffset();
701 AM.SymbolFlags = CP->getTargetFlags();
702 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
703 AM.ES = S->getSymbol();
704 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner50ba5c32009-11-01 03:25:03 +0000705 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerfea81da2009-06-27 04:16:01 +0000706 AM.JT = J->getIndex();
707 AM.SymbolFlags = J->getTargetFlags();
Michael Liaoabb87d42012-09-12 21:43:09 +0000708 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
709 AM.BlockAddr = BA->getBlockAddress();
710 AM.Disp += BA->getOffset();
711 AM.SymbolFlags = BA->getTargetFlags();
712 } else
713 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000714 return false;
715 }
716
717 return true;
718}
719
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000720/// MatchAddress - Add the specified node to the specified addressing mode,
721/// returning true if it cannot be done. This just pattern matches for the
Chris Lattnerff87f05e2007-12-08 07:22:58 +0000722/// addressing mode.
Dan Gohman824ab402009-07-22 23:26:55 +0000723bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohman99ba4da2010-06-18 01:24:29 +0000724 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman824ab402009-07-22 23:26:55 +0000725 return true;
726
727 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
728 // a smaller encoding and avoids a scaled-index.
729 if (AM.Scale == 2 &&
730 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000731 AM.Base_Reg.getNode() == 0) {
732 AM.Base_Reg = AM.IndexReg;
Dan Gohman824ab402009-07-22 23:26:55 +0000733 AM.Scale = 1;
734 }
735
Dan Gohman05046082009-08-20 18:23:44 +0000736 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
737 // because it has a smaller encoding.
738 // TODO: Which other code models can use this?
739 if (TM.getCodeModel() == CodeModel::Small &&
740 Subtarget->is64Bit() &&
741 AM.Scale == 1 &&
742 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000743 AM.Base_Reg.getNode() == 0 &&
Dan Gohman05046082009-08-20 18:23:44 +0000744 AM.IndexReg.getNode() == 0 &&
Dan Gohman0f6bf2d2009-08-25 17:47:44 +0000745 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman05046082009-08-20 18:23:44 +0000746 AM.hasSymbolicDisplacement())
Dan Gohman0fd54fb2010-04-29 23:30:41 +0000747 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohman05046082009-08-20 18:23:44 +0000748
Dan Gohman824ab402009-07-22 23:26:55 +0000749 return false;
750}
751
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000752// Insert a node into the DAG at least before the Pos node's position. This
753// will reposition the node as needed, and will assign it a node ID that is <=
754// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
755// IDs! The selection DAG must no longer depend on their uniqueness when this
756// is used.
757static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
758 if (N.getNode()->getNodeId() == -1 ||
759 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
760 DAG.RepositionNode(Pos.getNode(), N.getNode());
761 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
762 }
763}
764
Chandler Carruth51d30762012-01-11 08:48:20 +0000765// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
766// allows us to convert the shift and and into an h-register extract and
767// a scaled index. Returns false if the simplification is performed.
768static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
769 uint64_t Mask,
770 SDValue Shift, SDValue X,
771 X86ISelAddressMode &AM) {
772 if (Shift.getOpcode() != ISD::SRL ||
773 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
774 !Shift.hasOneUse())
775 return true;
776
777 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
778 if (ScaleLog <= 0 || ScaleLog >= 4 ||
779 Mask != (0xffu << ScaleLog))
780 return true;
781
782 EVT VT = N.getValueType();
783 DebugLoc DL = N.getDebugLoc();
784 SDValue Eight = DAG.getConstant(8, MVT::i8);
785 SDValue NewMask = DAG.getConstant(0xff, VT);
786 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
787 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
788 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
789 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
790
Chandler Carrutheb21da02012-01-12 01:34:44 +0000791 // Insert the new nodes into the topological ordering. We must do this in
792 // a valid topological ordering as nothing is going to go back and re-sort
793 // these nodes. We continually insert before 'N' in sequence as this is
794 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
795 // hierarchy left to express.
796 InsertDAGNode(DAG, N, Eight);
797 InsertDAGNode(DAG, N, Srl);
798 InsertDAGNode(DAG, N, NewMask);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000799 InsertDAGNode(DAG, N, And);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000800 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000801 InsertDAGNode(DAG, N, Shl);
Chandler Carruth51d30762012-01-11 08:48:20 +0000802 DAG.ReplaceAllUsesWith(N, Shl);
803 AM.IndexReg = And;
804 AM.Scale = (1 << ScaleLog);
805 return false;
806}
807
Chandler Carruthaa01e662012-01-11 09:35:00 +0000808// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
809// allows us to fold the shift into this addressing mode. Returns false if the
810// transform succeeded.
811static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
812 uint64_t Mask,
813 SDValue Shift, SDValue X,
814 X86ISelAddressMode &AM) {
815 if (Shift.getOpcode() != ISD::SHL ||
816 !isa<ConstantSDNode>(Shift.getOperand(1)))
817 return true;
818
819 // Not likely to be profitable if either the AND or SHIFT node has more
820 // than one use (unless all uses are for address computation). Besides,
821 // isel mechanism requires their node ids to be reused.
822 if (!N.hasOneUse() || !Shift.hasOneUse())
823 return true;
824
825 // Verify that the shift amount is something we can fold.
826 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
827 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
828 return true;
829
830 EVT VT = N.getValueType();
831 DebugLoc DL = N.getDebugLoc();
832 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
833 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
834 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
835
Chandler Carrutheb21da02012-01-12 01:34:44 +0000836 // Insert the new nodes into the topological ordering. We must do this in
837 // a valid topological ordering as nothing is going to go back and re-sort
838 // these nodes. We continually insert before 'N' in sequence as this is
839 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
840 // hierarchy left to express.
841 InsertDAGNode(DAG, N, NewMask);
842 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000843 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthaa01e662012-01-11 09:35:00 +0000844 DAG.ReplaceAllUsesWith(N, NewShift);
845
846 AM.Scale = 1 << ShiftAmt;
847 AM.IndexReg = NewAnd;
848 return false;
849}
850
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000851// Implement some heroics to detect shifts of masked values where the mask can
852// be replaced by extending the shift and undoing that in the addressing mode
853// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
854// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
855// the addressing mode. This results in code such as:
856//
857// int f(short *y, int *lookup_table) {
858// ...
859// return *y + lookup_table[*y >> 11];
860// }
861//
862// Turning into:
863// movzwl (%rdi), %eax
864// movl %eax, %ecx
865// shrl $11, %ecx
866// addl (%rsi,%rcx,4), %eax
867//
868// Instead of:
869// movzwl (%rdi), %eax
870// movl %eax, %ecx
871// shrl $9, %ecx
872// andl $124, %rcx
873// addl (%rsi,%rcx), %eax
874//
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000875// Note that this function assumes the mask is provided as a mask *after* the
876// value is shifted. The input chain may or may not match that, but computing
877// such a mask is trivial.
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000878static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000879 uint64_t Mask,
880 SDValue Shift, SDValue X,
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000881 X86ISelAddressMode &AM) {
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000882 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
883 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000884 return true;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000885
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000886 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
887 unsigned MaskLZ = CountLeadingZeros_64(Mask);
888 unsigned MaskTZ = CountTrailingZeros_64(Mask);
889
890 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000891 // from the trailing zeros of the mask.
892 unsigned AMShiftAmt = MaskTZ;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000893
894 // There is nothing we can do here unless the mask is removing some bits.
895 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
896 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
897
898 // We also need to ensure that mask is a continuous run of bits.
899 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
900
901 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruth3dbcda82012-01-11 09:35:02 +0000902 // Also scale it down based on the size of the shift.
903 MaskLZ -= (64 - X.getValueSizeInBits()) + ShiftAmt;
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000904
905 // The final check is to ensure that any masked out high bits of X are
906 // already known to be zero. Otherwise, the mask has a semantic impact
907 // other than masking out a couple of low bits. Unfortunately, because of
908 // the mask, zero extensions will be removed from operands in some cases.
909 // This code works extra hard to look through extensions because we can
910 // replace them with zero extensions cheaply if necessary.
911 bool ReplacingAnyExtend = false;
912 if (X.getOpcode() == ISD::ANY_EXTEND) {
913 unsigned ExtendBits =
914 X.getValueSizeInBits() - X.getOperand(0).getValueSizeInBits();
915 // Assume that we'll replace the any-extend with a zero-extend, and
916 // narrow the search to the extended value.
917 X = X.getOperand(0);
918 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
919 ReplacingAnyExtend = true;
920 }
921 APInt MaskedHighBits = APInt::getHighBitsSet(X.getValueSizeInBits(),
922 MaskLZ);
923 APInt KnownZero, KnownOne;
Rafael Espindolaba0a6ca2012-04-04 12:51:34 +0000924 DAG.ComputeMaskedBits(X, KnownZero, KnownOne);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000925 if (MaskedHighBits != KnownZero) return true;
926
927 // We've identified a pattern that can be transformed into a single shift
928 // and an addressing mode. Make it so.
929 EVT VT = N.getValueType();
930 if (ReplacingAnyExtend) {
931 assert(X.getValueType() != VT);
932 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
933 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, X.getDebugLoc(), VT, X);
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000934 InsertDAGNode(DAG, N, NewX);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000935 X = NewX;
936 }
937 DebugLoc DL = N.getDebugLoc();
938 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
939 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
940 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
941 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carrutheb21da02012-01-12 01:34:44 +0000942
943 // Insert the new nodes into the topological ordering. We must do this in
944 // a valid topological ordering as nothing is going to go back and re-sort
945 // these nodes. We continually insert before 'N' in sequence as this is
946 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
947 // hierarchy left to express.
Chandler Carruth3eacfb82012-01-11 11:04:36 +0000948 InsertDAGNode(DAG, N, NewSRLAmt);
949 InsertDAGNode(DAG, N, NewSRL);
950 InsertDAGNode(DAG, N, NewSHLAmt);
951 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruth55b2cde2012-01-11 08:41:08 +0000952 DAG.ReplaceAllUsesWith(N, NewSHL);
953
954 AM.Scale = 1 << AMShiftAmt;
955 AM.IndexReg = NewSRL;
956 return false;
957}
958
Dan Gohman824ab402009-07-22 23:26:55 +0000959bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
960 unsigned Depth) {
Dale Johannesen9c310712009-02-07 19:59:05 +0000961 DebugLoc dl = N.getDebugLoc();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000962 DEBUG({
David Greenedbdb1b22010-01-05 01:29:08 +0000963 dbgs() << "MatchAddress: ";
Bill Wendlingfe3bdb42009-08-07 21:33:25 +0000964 AM.dump();
965 });
Dan Gohmanccb36112007-08-13 20:03:06 +0000966 // Limit recursion.
967 if (Depth > 5)
Rafael Espindola92773792009-03-31 16:16:57 +0000968 return MatchAddressBase(N, AM);
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000969
Chris Lattnerfea81da2009-06-27 04:16:01 +0000970 // If this is already a %rip relative address, we can only merge immediates
971 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000972 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerfea81da2009-06-27 04:16:01 +0000973 if (AM.isRIPRelative()) {
974 // FIXME: JumpTable and ExternalSymbol address currently don't like
975 // displacements. It isn't very important, but this should be fixed for
976 // consistency.
977 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikov741ea0d2009-08-05 23:01:26 +0000978
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000979 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
980 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000981 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000982 return true;
983 }
984
Chris Lattner3f0f71b2005-11-19 02:11:08 +0000985 switch (N.getOpcode()) {
986 default: break;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000987 case ISD::Constant: {
Dan Gohman059c4fa2008-11-11 15:52:29 +0000988 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedmanef67e7d2011-07-13 20:44:23 +0000989 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000990 return false;
Evan Cheng11b0a5d2006-09-08 06:48:29 +0000991 break;
992 }
Evan Cheng77d86ff2006-02-25 10:09:08 +0000993
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000994 case X86ISD::Wrapper:
Chris Lattnerfea81da2009-06-27 04:16:01 +0000995 case X86ISD::WrapperRIP:
Rafael Espindola6688b0a2009-04-12 21:55:03 +0000996 if (!MatchWrapper(N, AM))
997 return false;
Evan Cheng77d86ff2006-02-25 10:09:08 +0000998 break;
999
Rafael Espindola3b2df102009-04-08 21:14:34 +00001000 case ISD::LOAD:
Chris Lattner8a236b62010-09-22 04:39:11 +00001001 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola3b2df102009-04-08 21:14:34 +00001002 return false;
1003 break;
1004
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001005 case ISD::FrameIndex:
Eli Friedman344ec792011-07-13 21:29:53 +00001006 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1007 AM.Base_Reg.getNode() == 0 &&
1008 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001009 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001010 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001011 return false;
1012 }
1013 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001014
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001015 case ISD::SHL:
Chris Lattnerfea81da2009-06-27 04:16:01 +00001016 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001017 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001018
Gabor Greif81d6a382008-08-31 15:37:04 +00001019 if (ConstantSDNode
1020 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmaneffb8942008-09-12 16:56:44 +00001021 unsigned Val = CN->getZExtValue();
Dan Gohman824ab402009-07-22 23:26:55 +00001022 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1023 // that the base operand remains free for further matching. If
1024 // the base doesn't end up getting used, a post-processing step
1025 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001026 if (Val == 1 || Val == 2 || Val == 3) {
1027 AM.Scale = 1 << Val;
Gabor Greiff304a7a2008-08-28 21:40:38 +00001028 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001029
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001030 // Okay, we know that we have a scale by now. However, if the scaled
1031 // value is an add of something and a constant, we can fold the
1032 // constant into the disp field here.
Chris Lattner46c01a32011-02-13 22:25:43 +00001033 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001034 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001035 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001036 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith228e6d42012-08-24 23:29:28 +00001037 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001038 if (!FoldOffsetIntoAddress(Disp, AM))
1039 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001040 }
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001041
1042 AM.IndexReg = ShVal;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001043 return false;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001044 }
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001045 }
Jakub Staszak43fafaf2013-01-04 23:01:26 +00001046 break;
Evan Chengc9fab312005-12-08 02:01:35 +00001047
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001048 case ISD::SRL: {
1049 // Scale must not be used already.
1050 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1051
1052 SDValue And = N.getOperand(0);
1053 if (And.getOpcode() != ISD::AND) break;
1054 SDValue X = And.getOperand(0);
1055
1056 // We only handle up to 64-bit values here as those are what matter for
1057 // addressing mode optimizations.
1058 if (X.getValueSizeInBits() > 64) break;
1059
1060 // The mask used for the transform is expected to be post-shift, but we
1061 // found the shift first so just apply the shift to the mask before passing
1062 // it down.
1063 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1064 !isa<ConstantSDNode>(And.getOperand(1)))
1065 break;
1066 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1067
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001068 // Try to fold the mask and shift into the scale, and return false if we
1069 // succeed.
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001070 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001071 return false;
1072 break;
Chandler Carruth3dbcda82012-01-11 09:35:02 +00001073 }
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001074
Dan Gohmanbf474952007-10-22 20:22:24 +00001075 case ISD::SMUL_LOHI:
1076 case ISD::UMUL_LOHI:
1077 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greifabfdf922008-08-26 22:36:50 +00001078 if (N.getResNo() != 0) break;
Dan Gohmanbf474952007-10-22 20:22:24 +00001079 // FALL THROUGH
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001080 case ISD::MUL:
Evan Chenga84a3182009-03-30 21:36:47 +00001081 case X86ISD::MUL_IMM:
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001082 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmanf14b77e2008-11-05 04:14:16 +00001083 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001084 AM.Base_Reg.getNode() == 0 &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001085 AM.IndexReg.getNode() == 0) {
Gabor Greif81d6a382008-08-31 15:37:04 +00001086 if (ConstantSDNode
1087 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmaneffb8942008-09-12 16:56:44 +00001088 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1089 CN->getZExtValue() == 9) {
1090 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001091
Gabor Greiff304a7a2008-08-28 21:40:38 +00001092 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001093 SDValue Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001094
1095 // Okay, we know that we have a scale by now. However, if the scaled
1096 // value is an add of something and a constant, we can fold the
1097 // constant into the disp field here.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001098 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1099 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1100 Reg = MulVal.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001101 ConstantSDNode *AddVal =
Gabor Greiff304a7a2008-08-28 21:40:38 +00001102 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001103 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1104 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greiff304a7a2008-08-28 21:40:38 +00001105 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001106 } else {
Gabor Greiff304a7a2008-08-28 21:40:38 +00001107 Reg = N.getNode()->getOperand(0);
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001108 }
1109
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001110 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001111 return false;
1112 }
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001113 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001114 break;
1115
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001116 case ISD::SUB: {
1117 // Given A-B, if A can be completely folded into the address and
1118 // the index field with the index field unused, use -B as the index.
1119 // This is a win if a has multiple parts that can be folded into
1120 // the address. Also, this saves a mov if the base register has
1121 // other uses, since it avoids a two-address sub instruction, however
1122 // it costs an additional mov if the index register has other uses.
1123
Dan Gohman99ba4da2010-06-18 01:24:29 +00001124 // Add an artificial use to this node so that we can keep track of
1125 // it if it gets CSE'd with a different node.
1126 HandleSDNode Handle(N);
1127
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001128 // Test if the LHS of the sub can be folded.
1129 X86ISelAddressMode Backup = AM;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001130 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001131 AM = Backup;
1132 break;
1133 }
1134 // Test if the index field is free for use.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001135 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001136 AM = Backup;
1137 break;
1138 }
Evan Cheng68333f52010-03-17 23:58:35 +00001139
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001140 int Cost = 0;
Dan Gohman99ba4da2010-06-18 01:24:29 +00001141 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001142 // If the RHS involves a register with multiple uses, this
1143 // transformation incurs an extra mov, due to the neg instruction
1144 // clobbering its operand.
1145 if (!RHS.getNode()->hasOneUse() ||
1146 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1147 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1148 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1149 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson9f944592009-08-11 20:47:22 +00001150 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001151 ++Cost;
1152 // If the base is a register with multiple uses, this
1153 // transformation may save a mov.
1154 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001155 AM.Base_Reg.getNode() &&
1156 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001157 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1158 --Cost;
1159 // If the folded LHS was interesting, this transformation saves
1160 // address arithmetic.
1161 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1162 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1163 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1164 --Cost;
1165 // If it doesn't look like it may be an overall win, don't do it.
1166 if (Cost >= 0) {
1167 AM = Backup;
1168 break;
1169 }
1170
1171 // Ok, the transformation is legal and appears profitable. Go for it.
1172 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1173 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1174 AM.IndexReg = Neg;
1175 AM.Scale = 1;
1176
1177 // Insert the new nodes into the topological ordering.
Chandler Carruth3eacfb82012-01-11 11:04:36 +00001178 InsertDAGNode(*CurDAG, N, Zero);
1179 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohmanfaf75c82009-05-11 18:02:53 +00001180 return false;
1181 }
1182
Evan Chengbf38a5e2009-01-17 07:09:27 +00001183 case ISD::ADD: {
Dan Gohman99ba4da2010-06-18 01:24:29 +00001184 // Add an artificial use to this node so that we can keep track of
1185 // it if it gets CSE'd with a different node.
1186 HandleSDNode Handle(N);
Dan Gohman99ba4da2010-06-18 01:24:29 +00001187
Evan Chengbf38a5e2009-01-17 07:09:27 +00001188 X86ISelAddressMode Backup = AM;
Chris Lattner35a2e652011-01-16 08:48:11 +00001189 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1190 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001191 return false;
1192 AM = Backup;
Chad Rosier24c19d22012-08-01 18:39:17 +00001193
Evan Cheng68333f52010-03-17 23:58:35 +00001194 // Try again after commuting the operands.
Chris Lattner35a2e652011-01-16 08:48:11 +00001195 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1196 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohman99ba4da2010-06-18 01:24:29 +00001197 return false;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001198 AM = Backup;
Dan Gohmana1d92422009-03-13 02:25:09 +00001199
1200 // If we couldn't fold both operands into the address at the same time,
1201 // see if we can just put each operand into a register and fold at least
1202 // the add.
1203 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001204 !AM.Base_Reg.getNode() &&
Chris Lattnerfea81da2009-06-27 04:16:01 +00001205 !AM.IndexReg.getNode()) {
Chris Lattner35a2e652011-01-16 08:48:11 +00001206 N = Handle.getValue();
1207 AM.Base_Reg = N.getOperand(0);
1208 AM.IndexReg = N.getOperand(1);
Dan Gohmana1d92422009-03-13 02:25:09 +00001209 AM.Scale = 1;
1210 return false;
1211 }
Chris Lattner35a2e652011-01-16 08:48:11 +00001212 N = Handle.getValue();
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001213 break;
Evan Chengbf38a5e2009-01-17 07:09:27 +00001214 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001215
Chris Lattnerfe8c5302007-02-04 20:18:17 +00001216 case ISD::OR:
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001217 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner46c01a32011-02-13 22:25:43 +00001218 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001219 X86ISelAddressMode Backup = AM;
Chris Lattner84776782010-04-20 23:18:40 +00001220 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Cheng68333f52010-03-17 23:58:35 +00001221
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001222 // Start with the LHS as an addr mode.
Dan Gohman99ba4da2010-06-18 01:24:29 +00001223 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedmanef67e7d2011-07-13 20:44:23 +00001224 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001225 return false;
Chris Lattnerff87f05e2007-12-08 07:22:58 +00001226 AM = Backup;
Evan Cheng734e1e22006-05-30 06:59:36 +00001227 }
1228 break;
Chad Rosier24c19d22012-08-01 18:39:17 +00001229
Evan Cheng827d30d2007-12-13 00:43:27 +00001230 case ISD::AND: {
Dan Gohman57d6bd32009-04-13 16:09:41 +00001231 // Perform some heroic transforms on an and of a constant-count shift
1232 // with a constant to enable use of the scaled offset field.
1233
Evan Cheng827d30d2007-12-13 00:43:27 +00001234 // Scale must not be used already.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001235 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chenga20a7732008-02-07 08:53:49 +00001236
Chandler Carruthaa01e662012-01-11 09:35:00 +00001237 SDValue Shift = N.getOperand(0);
1238 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001239 SDValue X = Shift.getOperand(0);
Chandler Carruthaa01e662012-01-11 09:35:00 +00001240
1241 // We only handle up to 64-bit values here as those are what matter for
1242 // addressing mode optimizations.
1243 if (X.getValueSizeInBits() > 64) break;
1244
Chandler Carruthb0049f42012-01-11 09:35:04 +00001245 if (!isa<ConstantSDNode>(N.getOperand(1)))
1246 break;
1247 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng827d30d2007-12-13 00:43:27 +00001248
Chandler Carruth51d30762012-01-11 08:48:20 +00001249 // Try to fold the mask and shift into an extract and scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001250 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth51d30762012-01-11 08:48:20 +00001251 return false;
Dan Gohman57d6bd32009-04-13 16:09:41 +00001252
Chandler Carruth51d30762012-01-11 08:48:20 +00001253 // Try to fold the mask and shift directly into the scale.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001254 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth55b2cde2012-01-11 08:41:08 +00001255 return false;
1256
Chandler Carruthaa01e662012-01-11 09:35:00 +00001257 // Try to swap the mask and shift to place shifts which can be done as
1258 // a scale on the outside of the mask.
Chandler Carruthb0049f42012-01-11 09:35:04 +00001259 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthaa01e662012-01-11 09:35:00 +00001260 return false;
1261 break;
Evan Cheng827d30d2007-12-13 00:43:27 +00001262 }
Evan Cheng734e1e22006-05-30 06:59:36 +00001263 }
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001264
Rafael Espindola92773792009-03-31 16:16:57 +00001265 return MatchAddressBase(N, AM);
Dan Gohmanccb36112007-08-13 20:03:06 +00001266}
1267
1268/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1269/// specified addressing mode without any further recursion.
Rafael Espindola92773792009-03-31 16:16:57 +00001270bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001271 // Is the base register already occupied?
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001272 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001273 // If so, check to see if the scale index register is set.
Chris Lattnerfea81da2009-06-27 04:16:01 +00001274 if (AM.IndexReg.getNode() == 0) {
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001275 AM.IndexReg = N;
1276 AM.Scale = 1;
1277 return false;
1278 }
1279
1280 // Otherwise, we cannot select it.
1281 return true;
1282 }
1283
1284 // Default, generate it as a register.
1285 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001286 AM.Base_Reg = N;
Chris Lattner3f0f71b2005-11-19 02:11:08 +00001287 return false;
1288}
1289
Evan Chengc9fab312005-12-08 02:01:35 +00001290/// SelectAddr - returns true if it is able pattern match an addressing mode.
1291/// It returns the operands which make up the maximal addressing mode it can
1292/// match by reference.
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001293///
1294/// Parent is the parent node of the addr operand that is being matched. It
1295/// is always a load, store, atomic node, or null. It is only null when
1296/// checking memory operands for inline asm nodes.
1297bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001298 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001299 SDValue &Disp, SDValue &Segment) {
Evan Chengc9fab312005-12-08 02:01:35 +00001300 X86ISelAddressMode AM;
Chad Rosier24c19d22012-08-01 18:39:17 +00001301
Chris Lattner8a236b62010-09-22 04:39:11 +00001302 if (Parent &&
1303 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1304 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattner8a236b62010-09-22 04:39:11 +00001305 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopherc1b3e072010-09-22 20:42:08 +00001306 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao97bf3632012-10-15 22:39:43 +00001307 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1308 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1309 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattner8a236b62010-09-22 04:39:11 +00001310 unsigned AddrSpace =
1311 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1312 // AddrSpace 256 -> GS, 257 -> FS.
1313 if (AddrSpace == 256)
1314 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1315 if (AddrSpace == 257)
1316 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1317 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001318
Evan Cheng3dfd04e2009-12-18 01:59:21 +00001319 if (MatchAddress(N, AM))
Evan Chengbc7a0f442006-01-11 06:09:51 +00001320 return false;
Evan Chengc9fab312005-12-08 02:01:35 +00001321
Owen Anderson53aa7a92009-08-10 22:56:29 +00001322 EVT VT = N.getValueType();
Evan Chengbc7a0f442006-01-11 06:09:51 +00001323 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001324 if (!AM.Base_Reg.getNode())
1325 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengc9fab312005-12-08 02:01:35 +00001326 }
Evan Chengbc7a0f442006-01-11 06:09:51 +00001327
Gabor Greiff304a7a2008-08-28 21:40:38 +00001328 if (!AM.IndexReg.getNode())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001329 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001330
Rafael Espindola3b2df102009-04-08 21:14:34 +00001331 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Chengbc7a0f442006-01-11 06:09:51 +00001332 return true;
Evan Chengc9fab312005-12-08 02:01:35 +00001333}
1334
Chris Lattner398195e2006-10-07 21:55:32 +00001335/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1336/// match a load whose top elements are either undef or zeros. The load flavor
1337/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner3f482152010-02-17 06:07:47 +00001338///
1339/// We also return:
Chris Lattner18a32ce2010-02-21 03:17:59 +00001340/// PatternChainNode: this is the matched node that has a chain input and
1341/// output.
Chris Lattnerbd6e1932010-03-01 22:51:11 +00001342bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001343 SDValue N, SDValue &Base,
1344 SDValue &Scale, SDValue &Index,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001345 SDValue &Disp, SDValue &Segment,
Chris Lattner18a32ce2010-02-21 03:17:59 +00001346 SDValue &PatternNodeWithChain) {
Chris Lattner398195e2006-10-07 21:55:32 +00001347 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001348 PatternNodeWithChain = N.getOperand(0);
1349 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1350 PatternNodeWithChain.hasOneUse() &&
Chris Lattner3c29aff2010-02-21 04:53:34 +00001351 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001352 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattner18a32ce2010-02-21 03:17:59 +00001353 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001354 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner398195e2006-10-07 21:55:32 +00001355 return false;
1356 return true;
1357 }
1358 }
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001359
1360 // Also handle the case where we explicitly require zeros in the top
Chris Lattner398195e2006-10-07 21:55:32 +00001361 // elements. This is a vector shuffle from the zero vector.
Gabor Greiff304a7a2008-08-28 21:40:38 +00001362 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner5728bdd2007-11-25 00:24:49 +00001363 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosier24c19d22012-08-01 18:39:17 +00001364 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greiff304a7a2008-08-28 21:40:38 +00001365 N.getOperand(0).getNode()->hasOneUse() &&
1366 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerafac7dad2010-02-16 22:35:06 +00001367 N.getOperand(0).getOperand(0).hasOneUse() &&
1368 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohman21cea8a2010-04-17 15:26:15 +00001369 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng78af38c2008-05-08 00:57:18 +00001370 // Okay, this is a zero extending load. Fold it.
1371 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001372 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng78af38c2008-05-08 00:57:18 +00001373 return false;
Chris Lattner18a32ce2010-02-21 03:17:59 +00001374 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng78af38c2008-05-08 00:57:18 +00001375 return true;
Chris Lattnerd5fcfaa2006-10-11 22:09:58 +00001376 }
Chris Lattner398195e2006-10-07 21:55:32 +00001377 return false;
1378}
1379
1380
Evan Cheng77d86ff2006-02-25 10:09:08 +00001381/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1382/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001383bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001384 SDValue &Base, SDValue &Scale,
Chris Lattnerf4693072010-07-08 23:46:44 +00001385 SDValue &Index, SDValue &Disp,
1386 SDValue &Segment) {
Evan Cheng77d86ff2006-02-25 10:09:08 +00001387 X86ISelAddressMode AM;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001388
1389 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1390 // segments.
1391 SDValue Copy = AM.Segment;
Owen Anderson9f944592009-08-11 20:47:22 +00001392 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindolabb834f02009-04-10 10:09:34 +00001393 AM.Segment = T;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001394 if (MatchAddress(N, AM))
1395 return false;
Rafael Espindolabb834f02009-04-10 10:09:34 +00001396 assert (T == AM.Segment);
1397 AM.Segment = Copy;
Rafael Espindola3b2df102009-04-08 21:14:34 +00001398
Owen Anderson53aa7a92009-08-10 22:56:29 +00001399 EVT VT = N.getValueType();
Evan Cheng77d86ff2006-02-25 10:09:08 +00001400 unsigned Complexity = 0;
1401 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001402 if (AM.Base_Reg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001403 Complexity = 1;
1404 else
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001405 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001406 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1407 Complexity = 4;
1408
Gabor Greiff304a7a2008-08-28 21:40:38 +00001409 if (AM.IndexReg.getNode())
Evan Cheng77d86ff2006-02-25 10:09:08 +00001410 Complexity++;
1411 else
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001412 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng77d86ff2006-02-25 10:09:08 +00001413
Chris Lattner3e1d9172007-03-20 06:08:29 +00001414 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1415 // a simple shift.
1416 if (AM.Scale > 1)
Evan Cheng990c3602006-02-28 21:13:57 +00001417 Complexity++;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001418
1419 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1420 // to a LEA. This is determined with some expermentation but is by no means
1421 // optimal (especially for code size consideration). LEA is nice because of
1422 // its three-address nature. Tweak the cost function again when we can run
1423 // convertToThreeAddress() at register allocation time.
Dan Gohman4e3e3de2009-02-07 00:43:41 +00001424 if (AM.hasSymbolicDisplacement()) {
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001425 // For X86-64, we should always use lea to materialize RIP relative
1426 // addresses.
Evan Cheng47e181c2006-12-05 22:03:40 +00001427 if (Subtarget->is64Bit())
Evan Cheng11b0a5d2006-09-08 06:48:29 +00001428 Complexity = 4;
1429 else
1430 Complexity += 2;
1431 }
Evan Cheng77d86ff2006-02-25 10:09:08 +00001432
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001433 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng77d86ff2006-02-25 10:09:08 +00001434 Complexity++;
1435
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001436 // If it isn't worth using an LEA, reject it.
Chris Lattner48cee9b2009-07-11 23:07:30 +00001437 if (Complexity <= 2)
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001438 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001439
Chris Lattner4d10f1a2009-07-11 22:50:33 +00001440 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1441 return true;
Evan Cheng77d86ff2006-02-25 10:09:08 +00001442}
1443
Chris Lattner7d2b0492009-06-20 20:38:48 +00001444/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner0e023ea2010-09-21 20:31:19 +00001445bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner7d2b0492009-06-20 20:38:48 +00001446 SDValue &Scale, SDValue &Index,
Chris Lattnerf4693072010-07-08 23:46:44 +00001447 SDValue &Disp, SDValue &Segment) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001448 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1449 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosier24c19d22012-08-01 18:39:17 +00001450
Chris Lattner7d2b0492009-06-20 20:38:48 +00001451 X86ISelAddressMode AM;
1452 AM.GV = GA->getGlobal();
1453 AM.Disp += GA->getOffset();
Dan Gohman0fd54fb2010-04-29 23:30:41 +00001454 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattner899abc42009-06-26 21:18:37 +00001455 AM.SymbolFlags = GA->getTargetFlags();
1456
Owen Anderson9f944592009-08-11 20:47:22 +00001457 if (N.getValueType() == MVT::i32) {
Chris Lattner7d2b0492009-06-20 20:38:48 +00001458 AM.Scale = 1;
Owen Anderson9f944592009-08-11 20:47:22 +00001459 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001460 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00001461 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner7d2b0492009-06-20 20:38:48 +00001462 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001463
Chris Lattner7d2b0492009-06-20 20:38:48 +00001464 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1465 return true;
1466}
1467
1468
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001469bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00001470 SDValue &Base, SDValue &Scale,
Rafael Espindola3b2df102009-04-08 21:14:34 +00001471 SDValue &Index, SDValue &Disp,
1472 SDValue &Segment) {
Chris Lattnerdd030702010-03-02 22:20:06 +00001473 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1474 !IsProfitableToFold(N, P, P) ||
Dan Gohman21cea8a2010-04-17 15:26:15 +00001475 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerdd030702010-03-02 22:20:06 +00001476 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001477
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001478 return SelectAddr(N.getNode(),
1479 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng10d27902006-01-06 20:36:21 +00001480}
1481
Dan Gohman24300732008-09-23 18:22:58 +00001482/// getGlobalBaseReg - Return an SDNode that returns the value of
1483/// the global base register. Output instructions required to
1484/// initialize the global base register, if necessary.
Evan Cheng5588de92006-02-18 00:15:05 +00001485///
Evan Cheng61413a32006-08-26 05:34:46 +00001486SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4751bb92009-06-03 20:20:00 +00001487 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greiff304a7a2008-08-28 21:40:38 +00001488 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng5588de92006-02-18 00:15:05 +00001489}
1490
Dale Johannesen867d5492008-10-02 18:53:47 +00001491SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1492 SDValue Chain = Node->getOperand(0);
1493 SDValue In1 = Node->getOperand(1);
1494 SDValue In2L = Node->getOperand(2);
1495 SDValue In2H = Node->getOperand(3);
Michael Liao83725392012-09-19 19:36:58 +00001496
Rafael Espindola3b2df102009-04-08 21:14:34 +00001497 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerd58d7c12010-09-21 22:07:31 +00001498 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen867d5492008-10-02 18:53:47 +00001499 return NULL;
Dan Gohman48b185d2009-09-25 20:36:54 +00001500 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1501 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1502 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1503 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1504 MVT::i32, MVT::i32, MVT::Other, Ops,
1505 array_lengthof(Ops));
1506 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1507 return ResNode;
Dale Johannesen867d5492008-10-02 18:53:47 +00001508}
Christopher Lambb372aba2007-08-10 21:48:46 +00001509
Michael Liao83725392012-09-19 19:36:58 +00001510/// Atomic opcode table
1511///
Eric Christophereb47a2a2011-05-17 07:47:55 +00001512enum AtomicOpc {
Michael Liao83725392012-09-19 19:36:58 +00001513 ADD,
1514 SUB,
1515 INC,
1516 DEC,
Eric Christopherabfe3132011-05-17 07:50:41 +00001517 OR,
Eric Christophera1d9e292011-05-17 08:10:18 +00001518 AND,
1519 XOR,
Eric Christopherabfe3132011-05-17 07:50:41 +00001520 AtomicOpcEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001521};
1522
1523enum AtomicSz {
1524 ConstantI8,
1525 I8,
1526 SextConstantI16,
1527 ConstantI16,
1528 I16,
1529 SextConstantI32,
1530 ConstantI32,
1531 I32,
1532 SextConstantI64,
1533 ConstantI64,
Eric Christopherabfe3132011-05-17 07:50:41 +00001534 I64,
1535 AtomicSzEnd
Eric Christophereb47a2a2011-05-17 07:47:55 +00001536};
1537
Craig Topper2dac9622012-03-09 07:45:21 +00001538static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001539 {
Michael Liao83725392012-09-19 19:36:58 +00001540 X86::LOCK_ADD8mi,
1541 X86::LOCK_ADD8mr,
1542 X86::LOCK_ADD16mi8,
1543 X86::LOCK_ADD16mi,
1544 X86::LOCK_ADD16mr,
1545 X86::LOCK_ADD32mi8,
1546 X86::LOCK_ADD32mi,
1547 X86::LOCK_ADD32mr,
1548 X86::LOCK_ADD64mi8,
1549 X86::LOCK_ADD64mi32,
1550 X86::LOCK_ADD64mr,
1551 },
1552 {
1553 X86::LOCK_SUB8mi,
1554 X86::LOCK_SUB8mr,
1555 X86::LOCK_SUB16mi8,
1556 X86::LOCK_SUB16mi,
1557 X86::LOCK_SUB16mr,
1558 X86::LOCK_SUB32mi8,
1559 X86::LOCK_SUB32mi,
1560 X86::LOCK_SUB32mr,
1561 X86::LOCK_SUB64mi8,
1562 X86::LOCK_SUB64mi32,
1563 X86::LOCK_SUB64mr,
1564 },
1565 {
1566 0,
1567 X86::LOCK_INC8m,
1568 0,
1569 0,
1570 X86::LOCK_INC16m,
1571 0,
1572 0,
1573 X86::LOCK_INC32m,
1574 0,
1575 0,
1576 X86::LOCK_INC64m,
1577 },
1578 {
1579 0,
1580 X86::LOCK_DEC8m,
1581 0,
1582 0,
1583 X86::LOCK_DEC16m,
1584 0,
1585 0,
1586 X86::LOCK_DEC32m,
1587 0,
1588 0,
1589 X86::LOCK_DEC64m,
1590 },
1591 {
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001592 X86::LOCK_OR8mi,
1593 X86::LOCK_OR8mr,
1594 X86::LOCK_OR16mi8,
1595 X86::LOCK_OR16mi,
1596 X86::LOCK_OR16mr,
1597 X86::LOCK_OR32mi8,
1598 X86::LOCK_OR32mi,
1599 X86::LOCK_OR32mr,
1600 X86::LOCK_OR64mi8,
1601 X86::LOCK_OR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001602 X86::LOCK_OR64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001603 },
1604 {
1605 X86::LOCK_AND8mi,
1606 X86::LOCK_AND8mr,
1607 X86::LOCK_AND16mi8,
1608 X86::LOCK_AND16mi,
1609 X86::LOCK_AND16mr,
1610 X86::LOCK_AND32mi8,
1611 X86::LOCK_AND32mi,
1612 X86::LOCK_AND32mr,
1613 X86::LOCK_AND64mi8,
1614 X86::LOCK_AND64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001615 X86::LOCK_AND64mr,
Eric Christophera1d9e292011-05-17 08:10:18 +00001616 },
1617 {
1618 X86::LOCK_XOR8mi,
1619 X86::LOCK_XOR8mr,
1620 X86::LOCK_XOR16mi8,
1621 X86::LOCK_XOR16mi,
1622 X86::LOCK_XOR16mr,
1623 X86::LOCK_XOR32mi8,
1624 X86::LOCK_XOR32mi,
1625 X86::LOCK_XOR32mr,
1626 X86::LOCK_XOR64mi8,
1627 X86::LOCK_XOR64mi32,
Michael Liao83725392012-09-19 19:36:58 +00001628 X86::LOCK_XOR64mr,
Eric Christopher2a9dbbb2011-05-11 21:44:58 +00001629 }
1630};
1631
Michael Liao83725392012-09-19 19:36:58 +00001632// Return the target constant operand for atomic-load-op and do simple
1633// translations, such as from atomic-load-add to lock-sub. The return value is
1634// one of the following 3 cases:
1635// + target-constant, the operand could be supported as a target constant.
1636// + empty, the operand is not needed any more with the new op selected.
1637// + non-empty, otherwise.
1638static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
1639 DebugLoc dl,
1640 enum AtomicOpc &Op, EVT NVT,
1641 SDValue Val) {
1642 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1643 int64_t CNVal = CN->getSExtValue();
1644 // Quit if not 32-bit imm.
1645 if ((int32_t)CNVal != CNVal)
1646 return Val;
1647 // For atomic-load-add, we could do some optimizations.
1648 if (Op == ADD) {
1649 // Translate to INC/DEC if ADD by 1 or -1.
1650 if ((CNVal == 1) || (CNVal == -1)) {
1651 Op = (CNVal == 1) ? INC : DEC;
1652 // No more constant operand after being translated into INC/DEC.
1653 return SDValue();
1654 }
1655 // Translate to SUB if ADD by negative value.
1656 if (CNVal < 0) {
1657 Op = SUB;
1658 CNVal = -CNVal;
1659 }
1660 }
1661 return CurDAG->getTargetConstant(CNVal, NVT);
1662 }
1663
1664 // If the value operand is single-used, try to optimize it.
1665 if (Op == ADD && Val.hasOneUse()) {
1666 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1667 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1668 Op = SUB;
1669 return Val.getOperand(1);
1670 }
1671 // A special case for i16, which needs truncating as, in most cases, it's
1672 // promoted to i32. We will translate
1673 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1674 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1675 Val.getOperand(0).getOpcode() == ISD::SUB &&
1676 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1677 Op = SUB;
1678 Val = Val.getOperand(0);
1679 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1680 Val.getOperand(1));
1681 }
1682 }
1683
1684 return Val;
1685}
1686
Eric Christophera1d9e292011-05-17 08:10:18 +00001687SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopher4a34e612011-05-10 23:57:45 +00001688 if (Node->hasAnyUseOfValue(0))
1689 return 0;
Chad Rosier24c19d22012-08-01 18:39:17 +00001690
Michael Liao83725392012-09-19 19:36:58 +00001691 DebugLoc dl = Node->getDebugLoc();
1692
Eric Christopher56a42eb2011-05-17 08:16:14 +00001693 // Optimize common patterns for __sync_or_and_fetch and similar arith
1694 // operations where the result is not used. This allows us to use the "lock"
1695 // version of the arithmetic instruction.
Eric Christopher4a34e612011-05-10 23:57:45 +00001696 SDValue Chain = Node->getOperand(0);
1697 SDValue Ptr = Node->getOperand(1);
1698 SDValue Val = Node->getOperand(2);
1699 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1700 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1701 return 0;
1702
Eric Christophera1d9e292011-05-17 08:10:18 +00001703 // Which index into the table.
1704 enum AtomicOpc Op;
1705 switch (Node->getOpcode()) {
Michael Liao83725392012-09-19 19:36:58 +00001706 default:
1707 return 0;
Eric Christophera1d9e292011-05-17 08:10:18 +00001708 case ISD::ATOMIC_LOAD_OR:
1709 Op = OR;
1710 break;
1711 case ISD::ATOMIC_LOAD_AND:
1712 Op = AND;
1713 break;
1714 case ISD::ATOMIC_LOAD_XOR:
1715 Op = XOR;
1716 break;
Michael Liao83725392012-09-19 19:36:58 +00001717 case ISD::ATOMIC_LOAD_ADD:
1718 Op = ADD;
1719 break;
Eric Christophera1d9e292011-05-17 08:10:18 +00001720 }
Michael Liao83725392012-09-19 19:36:58 +00001721
1722 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1723 bool isUnOp = !Val.getNode();
1724 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosier24c19d22012-08-01 18:39:17 +00001725
Eric Christopher4a34e612011-05-10 23:57:45 +00001726 unsigned Opc = 0;
1727 switch (NVT.getSimpleVT().SimpleTy) {
1728 default: return 0;
1729 case MVT::i8:
1730 if (isCN)
Eric Christophereb47a2a2011-05-17 07:47:55 +00001731 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001732 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001733 Opc = AtomicOpcTbl[Op][I8];
Eric Christopher4a34e612011-05-10 23:57:45 +00001734 break;
1735 case MVT::i16:
1736 if (isCN) {
1737 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001738 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001739 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001740 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001741 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001742 Opc = AtomicOpcTbl[Op][I16];
Eric Christopher4a34e612011-05-10 23:57:45 +00001743 break;
1744 case MVT::i32:
1745 if (isCN) {
1746 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001747 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001748 else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001749 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001750 } else
Eric Christophereb47a2a2011-05-17 07:47:55 +00001751 Opc = AtomicOpcTbl[Op][I32];
Eric Christopher4a34e612011-05-10 23:57:45 +00001752 break;
1753 case MVT::i64:
Eric Christopherc93217372011-06-30 00:48:30 +00001754 Opc = AtomicOpcTbl[Op][I64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001755 if (isCN) {
1756 if (immSext8(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001757 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopher4a34e612011-05-10 23:57:45 +00001758 else if (i64immSExt32(Val.getNode()))
Eric Christophereb47a2a2011-05-17 07:47:55 +00001759 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopherc93217372011-06-30 00:48:30 +00001760 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001761 break;
1762 }
Chad Rosier24c19d22012-08-01 18:39:17 +00001763
Eric Christopherc93217372011-06-30 00:48:30 +00001764 assert(Opc != 0 && "Invalid arith lock transform!");
1765
Michael Liao83725392012-09-19 19:36:58 +00001766 SDValue Ret;
Eric Christopher4a34e612011-05-10 23:57:45 +00001767 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1768 dl, NVT), 0);
1769 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1770 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Michael Liao83725392012-09-19 19:36:58 +00001771 if (isUnOp) {
1772 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1773 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops,
1774 array_lengthof(Ops)), 0);
1775 } else {
1776 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1777 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops,
1778 array_lengthof(Ops)), 0);
1779 }
Eric Christopher4a34e612011-05-10 23:57:45 +00001780 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1781 SDValue RetVals[] = { Undef, Ret };
1782 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1783}
1784
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001785/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1786/// any uses which require the SF or OF bits to be accurate.
1787static bool HasNoSignedComparisonUses(SDNode *N) {
1788 // Examine each user of the node.
1789 for (SDNode::use_iterator UI = N->use_begin(),
1790 UE = N->use_end(); UI != UE; ++UI) {
1791 // Only examine CopyToReg uses.
1792 if (UI->getOpcode() != ISD::CopyToReg)
1793 return false;
1794 // Only examine CopyToReg uses that copy to EFLAGS.
1795 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1796 X86::EFLAGS)
1797 return false;
1798 // Examine each user of the CopyToReg use.
1799 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1800 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1801 // Only examine the Flag result.
1802 if (FlagUI.getUse().getResNo() != 1) continue;
1803 // Anything unusual: assume conservatively.
1804 if (!FlagUI->isMachineOpcode()) return false;
1805 // Examine the opcode of the user.
1806 switch (FlagUI->getMachineOpcode()) {
1807 // These comparisons don't treat the most significant bit specially.
1808 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1809 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1810 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1811 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattner2b0a7a22010-02-11 19:25:55 +00001812 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1813 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001814 case X86::CMOVA16rr: case X86::CMOVA16rm:
1815 case X86::CMOVA32rr: case X86::CMOVA32rm:
1816 case X86::CMOVA64rr: case X86::CMOVA64rm:
1817 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1818 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1819 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1820 case X86::CMOVB16rr: case X86::CMOVB16rm:
1821 case X86::CMOVB32rr: case X86::CMOVB32rm:
1822 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner1a1c6002010-10-05 23:00:14 +00001823 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1824 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1825 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman7d9dffb2009-10-09 20:35:19 +00001826 case X86::CMOVE16rr: case X86::CMOVE16rm:
1827 case X86::CMOVE32rr: case X86::CMOVE32rm:
1828 case X86::CMOVE64rr: case X86::CMOVE64rm:
1829 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1830 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1831 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1832 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1833 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1834 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1835 case X86::CMOVP16rr: case X86::CMOVP16rm:
1836 case X86::CMOVP32rr: case X86::CMOVP32rm:
1837 case X86::CMOVP64rr: case X86::CMOVP64rm:
1838 continue;
1839 // Anything else: assume conservatively.
1840 default: return false;
1841 }
1842 }
1843 }
1844 return true;
1845}
1846
Joel Jones68d59e82012-03-29 05:45:48 +00001847/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1848/// is suitable for doing the {load; increment or decrement; store} to modify
1849/// transformation.
Chad Rosier24c19d22012-08-01 18:39:17 +00001850static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Cheng3e869f02012-04-12 19:14:21 +00001851 SDValue StoredVal, SelectionDAG *CurDAG,
1852 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones68d59e82012-03-29 05:45:48 +00001853
1854 // is the value stored the result of a DEC or INC?
1855 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1856
Joel Jones68d59e82012-03-29 05:45:48 +00001857 // is the stored value result 0 of the load?
1858 if (StoredVal.getResNo() != 0) return false;
1859
1860 // are there other uses of the loaded value than the inc or dec?
1861 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1862
Joel Jones68d59e82012-03-29 05:45:48 +00001863 // is the store non-extending and non-indexed?
Evan Cheng3e869f02012-04-12 19:14:21 +00001864 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones68d59e82012-03-29 05:45:48 +00001865 return false;
1866
Evan Cheng3e869f02012-04-12 19:14:21 +00001867 SDValue Load = StoredVal->getOperand(0);
1868 // Is the stored value a non-extending and non-indexed load?
1869 if (!ISD::isNormalLoad(Load.getNode())) return false;
1870
1871 // Return LoadNode by reference.
1872 LoadNode = cast<LoadSDNode>(Load);
1873 // 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 +00001874 EVT LdVT = LoadNode->getMemoryVT();
1875 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Cheng3e869f02012-04-12 19:14:21 +00001876 LdVT != MVT::i8)
1877 return false;
1878
1879 // Is store the only read of the loaded value?
1880 if (!Load.hasOneUse())
1881 return false;
Chad Rosier24c19d22012-08-01 18:39:17 +00001882
Evan Cheng3e869f02012-04-12 19:14:21 +00001883 // Is the address of the store the same as the load?
1884 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1885 LoadNode->getOffset() != StoreNode->getOffset())
1886 return false;
1887
1888 // Check if the chain is produced by the load or is a TokenFactor with
1889 // the load output chain as an operand. Return InputChain by reference.
1890 SDValue Chain = StoreNode->getChain();
1891
1892 bool ChainCheck = false;
1893 if (Chain == Load.getValue(1)) {
1894 ChainCheck = true;
1895 InputChain = LoadNode->getChain();
1896 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1897 SmallVector<SDValue, 4> ChainOps;
1898 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1899 SDValue Op = Chain.getOperand(i);
1900 if (Op == Load.getValue(1)) {
1901 ChainCheck = true;
1902 continue;
1903 }
Evan Cheng58a95f02012-05-16 01:54:27 +00001904
1905 // Make sure using Op as part of the chain would not cause a cycle here.
1906 // In theory, we could check whether the chain node is a predecessor of
1907 // the load. But that can be very expensive. Instead visit the uses and
1908 // make sure they all have smaller node id than the load.
1909 int LoadId = LoadNode->getNodeId();
1910 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1911 UE = UI->use_end(); UI != UE; ++UI) {
1912 if (UI.getUse().getResNo() != 0)
1913 continue;
1914 if (UI->getNodeId() > LoadId)
1915 return false;
1916 }
1917
Evan Cheng3e869f02012-04-12 19:14:21 +00001918 ChainOps.push_back(Op);
1919 }
1920
1921 if (ChainCheck)
1922 // Make a new TokenFactor with all the other input chains except
1923 // for the load.
1924 InputChain = CurDAG->getNode(ISD::TokenFactor, Chain.getDebugLoc(),
1925 MVT::Other, &ChainOps[0], ChainOps.size());
1926 }
1927 if (!ChainCheck)
Joel Jones68d59e82012-03-29 05:45:48 +00001928 return false;
1929
1930 return true;
1931}
1932
Benjamin Kramer8619c372012-03-29 12:37:26 +00001933/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
1934/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones68d59e82012-03-29 05:45:48 +00001935static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
1936 if (Opc == X86ISD::DEC) {
1937 if (LdVT == MVT::i64) return X86::DEC64m;
1938 if (LdVT == MVT::i32) return X86::DEC32m;
1939 if (LdVT == MVT::i16) return X86::DEC16m;
1940 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer8619c372012-03-29 12:37:26 +00001941 } else {
1942 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones68d59e82012-03-29 05:45:48 +00001943 if (LdVT == MVT::i64) return X86::INC64m;
1944 if (LdVT == MVT::i32) return X86::INC32m;
1945 if (LdVT == MVT::i16) return X86::INC16m;
1946 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones68d59e82012-03-29 05:45:48 +00001947 }
Benjamin Kramer8619c372012-03-29 12:37:26 +00001948 llvm_unreachable("unrecognized size for LdVT");
Joel Jones68d59e82012-03-29 05:45:48 +00001949}
1950
Manman Rena0982042012-06-26 19:47:59 +00001951/// SelectGather - Customized ISel for GATHER operations.
1952///
1953SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
1954 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
1955 SDValue Chain = Node->getOperand(0);
1956 SDValue VSrc = Node->getOperand(2);
1957 SDValue Base = Node->getOperand(3);
1958 SDValue VIdx = Node->getOperand(4);
1959 SDValue VMask = Node->getOperand(5);
1960 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topperfbb954f72012-07-01 02:17:08 +00001961 if (!Scale)
1962 return 0;
Manman Rena0982042012-06-26 19:47:59 +00001963
Craig Topperf7755df2012-07-12 06:52:41 +00001964 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
1965 MVT::Other);
1966
Manman Rena0982042012-06-26 19:47:59 +00001967 // Memory Operands: Base, Scale, Index, Disp, Segment
1968 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
1969 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
1970 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
1971 Disp, Segment, VMask, Chain};
1972 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
Craig Topperf7755df2012-07-12 06:52:41 +00001973 VTs, Ops, array_lengthof(Ops));
1974 // Node has 2 outputs: VDst and MVT::Other.
1975 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
1976 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
1977 // of ResNode.
1978 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
1979 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Rena0982042012-06-26 19:47:59 +00001980 return ResNode;
1981}
1982
Dan Gohmanea6f91f2010-01-05 01:24:18 +00001983SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Anderson53aa7a92009-08-10 22:56:29 +00001984 EVT NVT = Node->getValueType(0);
Evan Cheng10d27902006-01-06 20:36:21 +00001985 unsigned Opc, MOpc;
1986 unsigned Opcode = Node->getOpcode();
Dale Johannesen14f2d9d2009-02-03 21:48:12 +00001987 DebugLoc dl = Node->getDebugLoc();
Chad Rosier24c19d22012-08-01 18:39:17 +00001988
Chris Lattnerf98f1242010-03-02 06:34:30 +00001989 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengd49cc362006-02-10 22:24:32 +00001990
Dan Gohman17059682008-07-17 19:10:17 +00001991 if (Node->isMachineOpcode()) {
Chris Lattnerf98f1242010-03-02 06:34:30 +00001992 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00001993 return NULL; // Already selected.
Evan Cheng6dc90ca2006-02-09 00:37:58 +00001994 }
Evan Cheng2ae799a2006-01-11 22:15:18 +00001995
Evan Cheng10d27902006-01-06 20:36:21 +00001996 switch (Opcode) {
Dan Gohman757eee82009-08-02 16:10:52 +00001997 default: break;
Manman Rena0982042012-06-26 19:47:59 +00001998 case ISD::INTRINSIC_W_CHAIN: {
1999 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2000 switch (IntNo) {
2001 default: break;
2002 case Intrinsic::x86_avx2_gather_d_pd:
Manman Rena0982042012-06-26 19:47:59 +00002003 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002004 case Intrinsic::x86_avx2_gather_q_pd:
Manman Rena0982042012-06-26 19:47:59 +00002005 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Rena0982042012-06-26 19:47:59 +00002006 case Intrinsic::x86_avx2_gather_d_ps:
Manman Rena0982042012-06-26 19:47:59 +00002007 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Rena0982042012-06-26 19:47:59 +00002008 case Intrinsic::x86_avx2_gather_q_ps:
Manman Rena0982042012-06-26 19:47:59 +00002009 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002010 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002011 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002012 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren98a5bf22012-06-29 00:54:20 +00002013 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002014 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren98a5bf22012-06-29 00:54:20 +00002015 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren98a5bf22012-06-29 00:54:20 +00002016 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperdef044b2012-07-01 02:05:52 +00002017 case Intrinsic::x86_avx2_gather_q_d_256: {
2018 unsigned Opc;
2019 switch (IntNo) {
Craig Topper3af251d2012-07-01 02:55:34 +00002020 default: llvm_unreachable("Impossible intrinsic");
Craig Topperdef044b2012-07-01 02:05:52 +00002021 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2022 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2023 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2024 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2025 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2026 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2027 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2028 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2029 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2030 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2031 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2032 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2033 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2034 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2035 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2036 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2037 }
Craig Topperfbb954f72012-07-01 02:17:08 +00002038 SDNode *RetVal = SelectGather(Node, Opc);
2039 if (RetVal)
Craig Topperf7755df2012-07-12 06:52:41 +00002040 // We already called ReplaceUses inside SelectGather.
2041 return NULL;
Craig Toppere15e5f72012-07-01 02:18:18 +00002042 break;
Craig Topperdef044b2012-07-01 02:05:52 +00002043 }
Manman Rena0982042012-06-26 19:47:59 +00002044 }
2045 break;
2046 }
Dan Gohman757eee82009-08-02 16:10:52 +00002047 case X86ISD::GlobalBaseReg:
2048 return getGlobalBaseReg();
Evan Chenge0ed6ec2006-02-23 20:41:18 +00002049
Craig Topper3af251d2012-07-01 02:55:34 +00002050
Dan Gohman757eee82009-08-02 16:10:52 +00002051 case X86ISD::ATOMOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002052 case X86ISD::ATOMXOR64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002053 case X86ISD::ATOMADD64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002054 case X86ISD::ATOMSUB64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002055 case X86ISD::ATOMNAND64_DAG:
Dan Gohman757eee82009-08-02 16:10:52 +00002056 case X86ISD::ATOMAND64_DAG:
Michael Liaode51caf2012-09-25 18:08:13 +00002057 case X86ISD::ATOMMAX64_DAG:
2058 case X86ISD::ATOMMIN64_DAG:
2059 case X86ISD::ATOMUMAX64_DAG:
2060 case X86ISD::ATOMUMIN64_DAG:
Craig Topper3af251d2012-07-01 02:55:34 +00002061 case X86ISD::ATOMSWAP64_DAG: {
2062 unsigned Opc;
2063 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002064 default: llvm_unreachable("Impossible opcode");
Craig Topper3af251d2012-07-01 02:55:34 +00002065 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2066 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2067 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2068 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2069 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2070 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
Michael Liaode51caf2012-09-25 18:08:13 +00002071 case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break;
2072 case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break;
2073 case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break;
2074 case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break;
Craig Topper3af251d2012-07-01 02:55:34 +00002075 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2076 }
2077 SDNode *RetVal = SelectAtomic64(Node, Opc);
2078 if (RetVal)
2079 return RetVal;
2080 break;
2081 }
Dale Johannesen867d5492008-10-02 18:53:47 +00002082
Eric Christophera1d9e292011-05-17 08:10:18 +00002083 case ISD::ATOMIC_LOAD_XOR:
2084 case ISD::ATOMIC_LOAD_AND:
Michael Liao83725392012-09-19 19:36:58 +00002085 case ISD::ATOMIC_LOAD_OR:
2086 case ISD::ATOMIC_LOAD_ADD: {
Eric Christophera1d9e292011-05-17 08:10:18 +00002087 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopher4a34e612011-05-10 23:57:45 +00002088 if (RetVal)
2089 return RetVal;
2090 break;
2091 }
Benjamin Kramer4c816242011-04-22 15:30:40 +00002092 case ISD::AND:
2093 case ISD::OR:
2094 case ISD::XOR: {
2095 // For operations of the form (x << C1) op C2, check if we can use a smaller
2096 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2097 SDValue N0 = Node->getOperand(0);
2098 SDValue N1 = Node->getOperand(1);
2099
2100 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2101 break;
2102
2103 // i8 is unshrinkable, i16 should be promoted to i32.
2104 if (NVT != MVT::i32 && NVT != MVT::i64)
2105 break;
2106
2107 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2108 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2109 if (!Cst || !ShlCst)
2110 break;
2111
2112 int64_t Val = Cst->getSExtValue();
2113 uint64_t ShlVal = ShlCst->getZExtValue();
2114
2115 // Make sure that we don't change the operation by removing bits.
2116 // This only matters for OR and XOR, AND is unaffected.
Richard Smith228e6d42012-08-24 23:29:28 +00002117 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2118 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramer4c816242011-04-22 15:30:40 +00002119 break;
2120
Craig Topper22cb0c52012-08-11 17:44:14 +00002121 unsigned ShlOp, Op;
Benjamin Kramer4c816242011-04-22 15:30:40 +00002122 EVT CstVT = NVT;
2123
2124 // Check the minimum bitwidth for the new constant.
2125 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2126 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2127 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2128 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2129 CstVT = MVT::i8;
2130 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2131 CstVT = MVT::i32;
2132
2133 // Bail if there is no smaller encoding.
2134 if (NVT == CstVT)
2135 break;
2136
2137 switch (NVT.getSimpleVT().SimpleTy) {
2138 default: llvm_unreachable("Unsupported VT!");
2139 case MVT::i32:
2140 assert(CstVT == MVT::i8);
2141 ShlOp = X86::SHL32ri;
2142
2143 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002144 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002145 case ISD::AND: Op = X86::AND32ri8; break;
2146 case ISD::OR: Op = X86::OR32ri8; break;
2147 case ISD::XOR: Op = X86::XOR32ri8; break;
2148 }
2149 break;
2150 case MVT::i64:
2151 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2152 ShlOp = X86::SHL64ri;
2153
2154 switch (Opcode) {
Craig Topper22cb0c52012-08-11 17:44:14 +00002155 default: llvm_unreachable("Impossible opcode");
Benjamin Kramer4c816242011-04-22 15:30:40 +00002156 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2157 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2158 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2159 }
2160 break;
2161 }
2162
2163 // Emit the smaller op and the shift.
2164 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2165 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2166 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2167 getI8Imm(ShlVal));
Benjamin Kramer4c816242011-04-22 15:30:40 +00002168 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002169 case X86ISD::UMUL: {
2170 SDValue N0 = Node->getOperand(0);
2171 SDValue N1 = Node->getOperand(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002172
Ted Kremenekb5241b22011-01-14 22:34:13 +00002173 unsigned LoReg;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002174 switch (NVT.getSimpleVT().SimpleTy) {
2175 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekb5241b22011-01-14 22:34:13 +00002176 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2177 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2178 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2179 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattner364bb0a2010-12-05 07:30:36 +00002180 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002181
Chris Lattner364bb0a2010-12-05 07:30:36 +00002182 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2183 N0, SDValue()).getValue(1);
Chad Rosier24c19d22012-08-01 18:39:17 +00002184
Chris Lattner364bb0a2010-12-05 07:30:36 +00002185 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2186 SDValue Ops[] = {N1, InFlag};
2187 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
Chad Rosier24c19d22012-08-01 18:39:17 +00002188
Chris Lattner364bb0a2010-12-05 07:30:36 +00002189 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2190 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2191 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2192 return NULL;
2193 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002194
Dan Gohman757eee82009-08-02 16:10:52 +00002195 case ISD::SMUL_LOHI:
2196 case ISD::UMUL_LOHI: {
2197 SDValue N0 = Node->getOperand(0);
2198 SDValue N1 = Node->getOperand(1);
2199
2200 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liaof9f7b552012-09-26 08:22:37 +00002201 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002202 if (!isSigned) {
Owen Anderson9f944592009-08-11 20:47:22 +00002203 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002204 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002205 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2206 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liaof9f7b552012-09-26 08:22:37 +00002207 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2208 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2209 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2210 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002211 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002212 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00002213 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002214 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002215 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2216 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2217 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2218 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002219 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002220 }
Dan Gohman757eee82009-08-02 16:10:52 +00002221
Michael Liaof9f7b552012-09-26 08:22:37 +00002222 unsigned SrcReg, LoReg, HiReg;
2223 switch (Opc) {
2224 default: llvm_unreachable("Unknown MUL opcode!");
2225 case X86::IMUL8r:
2226 case X86::MUL8r:
2227 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2228 break;
2229 case X86::IMUL16r:
2230 case X86::MUL16r:
2231 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2232 break;
2233 case X86::IMUL32r:
2234 case X86::MUL32r:
2235 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2236 break;
2237 case X86::IMUL64r:
2238 case X86::MUL64r:
2239 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2240 break;
2241 case X86::MULX32rr:
2242 SrcReg = X86::EDX; LoReg = HiReg = 0;
2243 break;
2244 case X86::MULX64rr:
2245 SrcReg = X86::RDX; LoReg = HiReg = 0;
2246 break;
Dan Gohman757eee82009-08-02 16:10:52 +00002247 }
2248
2249 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002250 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002251 // Multiply is commmutative.
Dan Gohman757eee82009-08-02 16:10:52 +00002252 if (!foldedLoad) {
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002253 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002254 if (foldedLoad)
2255 std::swap(N0, N1);
2256 }
2257
Michael Liaof9f7b552012-09-26 08:22:37 +00002258 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Toppera4fd6d62012-05-23 05:44:51 +00002259 N0, SDValue()).getValue(1);
Michael Liaof9f7b552012-09-26 08:22:37 +00002260 SDValue ResHi, ResLo;
Dan Gohman757eee82009-08-02 16:10:52 +00002261
2262 if (foldedLoad) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002263 SDValue Chain;
Dan Gohman757eee82009-08-02 16:10:52 +00002264 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2265 InFlag };
Michael Liaof9f7b552012-09-26 08:22:37 +00002266 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2267 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
2268 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops,
2269 array_lengthof(Ops));
2270 ResHi = SDValue(CNode, 0);
2271 ResLo = SDValue(CNode, 1);
2272 Chain = SDValue(CNode, 2);
2273 InFlag = SDValue(CNode, 3);
2274 } else {
2275 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
2276 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops,
2277 array_lengthof(Ops));
2278 Chain = SDValue(CNode, 0);
2279 InFlag = SDValue(CNode, 1);
2280 }
Chris Lattner364bb0a2010-12-05 07:30:36 +00002281
Dan Gohman757eee82009-08-02 16:10:52 +00002282 // Update the chain.
Michael Liaof9f7b552012-09-26 08:22:37 +00002283 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman757eee82009-08-02 16:10:52 +00002284 } else {
Michael Liaof9f7b552012-09-26 08:22:37 +00002285 SDValue Ops[] = { N1, InFlag };
2286 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2287 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
2288 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops,
2289 array_lengthof(Ops));
2290 ResHi = SDValue(CNode, 0);
2291 ResLo = SDValue(CNode, 1);
2292 InFlag = SDValue(CNode, 2);
2293 } else {
2294 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
2295 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops,
2296 array_lengthof(Ops));
2297 InFlag = SDValue(CNode, 0);
2298 }
Dan Gohman757eee82009-08-02 16:10:52 +00002299 }
2300
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002301 // Prevent use of AH in a REX instruction by referencing AX instead.
2302 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2303 !SDValue(Node, 1).use_empty()) {
2304 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2305 X86::AX, MVT::i16, InFlag);
2306 InFlag = Result.getValue(2);
2307 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2308 // registers.
2309 if (!SDValue(Node, 0).use_empty())
2310 ReplaceUses(SDValue(Node, 1),
2311 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2312
2313 // Shift AX down 8 bits.
2314 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2315 Result,
2316 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2317 // Then truncate it down to i8.
2318 ReplaceUses(SDValue(Node, 1),
2319 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2320 }
Dan Gohman757eee82009-08-02 16:10:52 +00002321 // Copy the low half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002322 if (!SDValue(Node, 0).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002323 if (ResLo.getNode() == 0) {
2324 assert(LoReg && "Register for low half is not defined!");
2325 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2326 InFlag);
2327 InFlag = ResLo.getValue(2);
2328 }
2329 ReplaceUses(SDValue(Node, 0), ResLo);
2330 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002331 }
2332 // Copy the high half of the result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002333 if (!SDValue(Node, 1).use_empty()) {
Michael Liaof9f7b552012-09-26 08:22:37 +00002334 if (ResHi.getNode() == 0) {
2335 assert(HiReg && "Register for high half is not defined!");
2336 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2337 InFlag);
2338 InFlag = ResHi.getValue(2);
2339 }
2340 ReplaceUses(SDValue(Node, 1), ResHi);
2341 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002342 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002343
Dan Gohman757eee82009-08-02 16:10:52 +00002344 return NULL;
2345 }
2346
2347 case ISD::SDIVREM:
2348 case ISD::UDIVREM: {
2349 SDValue N0 = Node->getOperand(0);
2350 SDValue N1 = Node->getOperand(1);
2351
2352 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002353 if (!isSigned) {
Owen Anderson9f944592009-08-11 20:47:22 +00002354 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002355 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002356 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2357 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2358 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2359 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002360 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002361 } else {
Owen Anderson9f944592009-08-11 20:47:22 +00002362 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002363 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002364 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2365 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2366 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2367 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman757eee82009-08-02 16:10:52 +00002368 }
Bill Wendlingfe3bdb42009-08-07 21:33:25 +00002369 }
Dan Gohman757eee82009-08-02 16:10:52 +00002370
Chris Lattner518b0372009-12-23 01:45:04 +00002371 unsigned LoReg, HiReg, ClrReg;
Dan Gohman757eee82009-08-02 16:10:52 +00002372 unsigned ClrOpcode, SExtOpcode;
Owen Anderson9f944592009-08-11 20:47:22 +00002373 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman757eee82009-08-02 16:10:52 +00002374 default: llvm_unreachable("Unsupported VT!");
Owen Anderson9f944592009-08-11 20:47:22 +00002375 case MVT::i8:
Chris Lattner518b0372009-12-23 01:45:04 +00002376 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman757eee82009-08-02 16:10:52 +00002377 ClrOpcode = 0;
2378 SExtOpcode = X86::CBW;
2379 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002380 case MVT::i16:
Dan Gohman757eee82009-08-02 16:10:52 +00002381 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanc1195802010-01-12 04:42:54 +00002382 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman757eee82009-08-02 16:10:52 +00002383 SExtOpcode = X86::CWD;
2384 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002385 case MVT::i32:
Chris Lattner518b0372009-12-23 01:45:04 +00002386 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman757eee82009-08-02 16:10:52 +00002387 ClrOpcode = X86::MOV32r0;
2388 SExtOpcode = X86::CDQ;
2389 break;
Owen Anderson9f944592009-08-11 20:47:22 +00002390 case MVT::i64:
Chris Lattner518b0372009-12-23 01:45:04 +00002391 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanc1195802010-01-12 04:42:54 +00002392 ClrOpcode = X86::MOV64r0;
Dan Gohman757eee82009-08-02 16:10:52 +00002393 SExtOpcode = X86::CQO;
Evan Chenge62288f2009-07-30 08:33:02 +00002394 break;
2395 }
2396
Dan Gohman757eee82009-08-02 16:10:52 +00002397 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002398 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman757eee82009-08-02 16:10:52 +00002399 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohmana1603612007-10-08 18:33:35 +00002400
Dan Gohman757eee82009-08-02 16:10:52 +00002401 SDValue InFlag;
Owen Anderson9f944592009-08-11 20:47:22 +00002402 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002403 // Special case for div8, just use a move with zero extension to AX to
2404 // clear the upper 8 bits (AH).
2405 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002406 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman757eee82009-08-02 16:10:52 +00002407 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2408 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002409 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman32f71d72009-09-25 18:54:59 +00002410 MVT::Other, Ops,
2411 array_lengthof(Ops)), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002412 Chain = Move.getValue(1);
2413 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng10d27902006-01-06 20:36:21 +00002414 } else {
Dan Gohman757eee82009-08-02 16:10:52 +00002415 Move =
Stuart Hastings91f1d242011-05-20 19:04:40 +00002416 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002417 Chain = CurDAG->getEntryNode();
2418 }
Stuart Hastings91f1d242011-05-20 19:04:40 +00002419 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman757eee82009-08-02 16:10:52 +00002420 InFlag = Chain.getValue(1);
2421 } else {
2422 InFlag =
2423 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2424 LoReg, N0, SDValue()).getValue(1);
2425 if (isSigned && !signBitIsZero) {
2426 // Sign extend the low part into the high part.
Evan Chengd1b82d82006-02-09 07:17:49 +00002427 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002428 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman757eee82009-08-02 16:10:52 +00002429 } else {
2430 // Zero out the high part, effectively zero extending the input.
Dan Gohmanc1195802010-01-12 04:42:54 +00002431 SDValue ClrNode =
2432 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner518b0372009-12-23 01:45:04 +00002433 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman757eee82009-08-02 16:10:52 +00002434 ClrNode, InFlag).getValue(1);
Dan Gohmana1603612007-10-08 18:33:35 +00002435 }
Evan Cheng92e27972006-01-06 23:19:29 +00002436 }
Dan Gohmana1603612007-10-08 18:33:35 +00002437
Dan Gohman757eee82009-08-02 16:10:52 +00002438 if (foldedLoad) {
2439 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2440 InFlag };
2441 SDNode *CNode =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002442 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman32f71d72009-09-25 18:54:59 +00002443 array_lengthof(Ops));
Dan Gohman757eee82009-08-02 16:10:52 +00002444 InFlag = SDValue(CNode, 1);
2445 // Update the chain.
2446 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2447 } else {
2448 InFlag =
Chris Lattner3e5fbd72010-12-21 02:38:05 +00002449 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman757eee82009-08-02 16:10:52 +00002450 }
Evan Cheng92e27972006-01-06 23:19:29 +00002451
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002452 // Prevent use of AH in a REX instruction by referencing AX instead.
2453 // Shift it down 8 bits.
2454 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2455 !SDValue(Node, 1).use_empty()) {
2456 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2457 X86::AX, MVT::i16, InFlag);
2458 InFlag = Result.getValue(2);
2459
2460 // If we also need AL (the quotient), get it by extracting a subreg from
2461 // Result. The fast register allocator does not like multiple CopyFromReg
2462 // nodes using aliasing registers.
2463 if (!SDValue(Node, 0).use_empty())
2464 ReplaceUses(SDValue(Node, 0),
2465 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2466
2467 // Shift AX right by 8 bits instead of using AH.
2468 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2469 Result,
2470 CurDAG->getTargetConstant(8, MVT::i8)),
2471 0);
2472 ReplaceUses(SDValue(Node, 1),
2473 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2474 }
Dan Gohman757eee82009-08-02 16:10:52 +00002475 // Copy the division (low) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002476 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman757eee82009-08-02 16:10:52 +00002477 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2478 LoReg, NVT, InFlag);
2479 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002480 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002481 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002482 }
2483 // Copy the remainder (high) result, if it is needed.
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002484 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesend7d0d4e2010-06-26 00:39:23 +00002485 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2486 HiReg, NVT, InFlag);
2487 InFlag = Result.getValue(2);
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002488 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattnerf98f1242010-03-02 06:34:30 +00002489 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman757eee82009-08-02 16:10:52 +00002490 }
Dan Gohman757eee82009-08-02 16:10:52 +00002491 return NULL;
2492 }
2493
Manman Ren1be131b2012-08-08 00:51:41 +00002494 case X86ISD::CMP:
2495 case X86ISD::SUB: {
2496 // Sometimes a SUB is used to perform comparison.
2497 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2498 // This node is not a CMP.
2499 break;
Dan Gohmanac33a902009-08-19 18:16:17 +00002500 SDValue N0 = Node->getOperand(0);
2501 SDValue N1 = Node->getOperand(1);
2502
2503 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2504 // use a smaller encoding.
Eli Friedman39d0f572010-08-04 22:40:58 +00002505 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2506 HasNoSignedComparisonUses(Node))
Evan Cheng050df1b2010-04-28 08:30:49 +00002507 // Look past the truncate if CMP is the only use of it.
2508 N0 = N0.getOperand(0);
Dan Gohman198b7ff2011-11-03 21:49:52 +00002509 if ((N0.getNode()->getOpcode() == ISD::AND ||
2510 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2511 N0.getNode()->hasOneUse() &&
Dan Gohmanac33a902009-08-19 18:16:17 +00002512 N0.getValueType() != MVT::i8 &&
2513 X86::isZeroNode(N1)) {
2514 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2515 if (!C) break;
2516
2517 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002518 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2519 (!(C->getZExtValue() & 0x80) ||
2520 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002521 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2522 SDValue Reg = N0.getNode()->getOperand(0);
2523
2524 // On x86-32, only the ABCD registers have 8-bit subregisters.
2525 if (!Subtarget->is64Bit()) {
Craig Toppercc830f82012-02-22 07:28:11 +00002526 const TargetRegisterClass *TRC;
Dan Gohmanac33a902009-08-19 18:16:17 +00002527 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2528 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2529 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2530 default: llvm_unreachable("Unsupported TEST operand type!");
2531 }
2532 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002533 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2534 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002535 }
2536
2537 // Extract the l-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002538 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002539 MVT::i8, Reg);
2540
2541 // Emit a testb.
Manman Ren511c6d02012-09-28 18:53:24 +00002542 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2543 Subreg, Imm);
2544 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2545 // one, do not call ReplaceAllUsesWith.
2546 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2547 SDValue(NewNode, 0));
2548 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002549 }
2550
2551 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002552 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2553 (!(C->getZExtValue() & 0x8000) ||
2554 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002555 // Shift the immediate right by 8 bits.
2556 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2557 MVT::i8);
2558 SDValue Reg = N0.getNode()->getOperand(0);
2559
2560 // Put the value in an ABCD register.
Craig Toppercc830f82012-02-22 07:28:11 +00002561 const TargetRegisterClass *TRC;
Dan Gohmanac33a902009-08-19 18:16:17 +00002562 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2563 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2564 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2565 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2566 default: llvm_unreachable("Unsupported TEST operand type!");
2567 }
2568 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman32f71d72009-09-25 18:54:59 +00002569 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2570 Reg.getValueType(), Reg, RC), 0);
Dan Gohmanac33a902009-08-19 18:16:17 +00002571
2572 // Extract the h-register.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002573 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002574 MVT::i8, Reg);
2575
Jakob Stoklund Olesen729abd32011-10-08 18:28:28 +00002576 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2577 // target GR8_NOREX registers, so make sure the register class is
2578 // forced.
Manman Ren511c6d02012-09-28 18:53:24 +00002579 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2580 MVT::i32, Subreg, ShiftedImm);
2581 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2582 // one, do not call ReplaceAllUsesWith.
2583 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2584 SDValue(NewNode, 0));
2585 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002586 }
2587
2588 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2589 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002590 N0.getValueType() != MVT::i16 &&
2591 (!(C->getZExtValue() & 0x8000) ||
2592 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002593 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2594 SDValue Reg = N0.getNode()->getOperand(0);
2595
2596 // Extract the 16-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002597 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002598 MVT::i16, Reg);
2599
2600 // Emit a testw.
Manman Ren511c6d02012-09-28 18:53:24 +00002601 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2602 Subreg, Imm);
2603 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2604 // one, do not call ReplaceAllUsesWith.
2605 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2606 SDValue(NewNode, 0));
2607 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002608 }
2609
2610 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2611 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman7d9dffb2009-10-09 20:35:19 +00002612 N0.getValueType() == MVT::i64 &&
2613 (!(C->getZExtValue() & 0x80000000) ||
2614 HasNoSignedComparisonUses(Node))) {
Dan Gohmanac33a902009-08-19 18:16:17 +00002615 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2616 SDValue Reg = N0.getNode()->getOperand(0);
2617
2618 // Extract the 32-bit subregister.
Jakob Stoklund Olesen9340ea52010-05-24 14:48:17 +00002619 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohmanac33a902009-08-19 18:16:17 +00002620 MVT::i32, Reg);
2621
2622 // Emit a testl.
Manman Ren511c6d02012-09-28 18:53:24 +00002623 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2624 Subreg, Imm);
2625 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2626 // one, do not call ReplaceAllUsesWith.
2627 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2628 SDValue(NewNode, 0));
2629 return NULL;
Dan Gohmanac33a902009-08-19 18:16:17 +00002630 }
2631 }
2632 break;
2633 }
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002634 case ISD::STORE: {
Joel Jones68d59e82012-03-29 05:45:48 +00002635 // Change a chain of {load; incr or dec; store} of the same value into
2636 // a simple increment or decrement through memory of that value, if the
2637 // uses of the modified value and its address are suitable.
Pete Cooper48784ed2011-11-16 19:03:23 +00002638 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosier24c19d22012-08-01 18:39:17 +00002639 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones68d59e82012-03-29 05:45:48 +00002640 // {INC,DEC}X{64,32,16,8}.)
2641 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Cooper48784ed2011-11-16 19:03:23 +00002642 // node in the pattern to the result node. probably with a new keyword
2643 // for example, we have this
2644 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2645 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2646 // (implicit EFLAGS)]>;
2647 // but maybe need something like this
2648 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2649 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2650 // (transferrable EFLAGS)]>;
Joel Jones68d59e82012-03-29 05:45:48 +00002651
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002652 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002653 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones68d59e82012-03-29 05:45:48 +00002654 unsigned Opc = StoredVal->getOpcode();
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002655
Evan Cheng3e869f02012-04-12 19:14:21 +00002656 LoadSDNode *LoadNode = 0;
2657 SDValue InputChain;
2658 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2659 LoadNode, InputChain))
2660 break;
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002661
2662 SDValue Base, Scale, Index, Disp, Segment;
2663 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2664 Base, Scale, Index, Disp, Segment))
2665 break;
2666
2667 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2668 MemOp[0] = StoreNode->getMemOperand();
2669 MemOp[1] = LoadNode->getMemOperand();
2670 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosier24c19d22012-08-01 18:39:17 +00002671 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones68d59e82012-03-29 05:45:48 +00002672 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2673 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Pete Cooper7c7ba1b2011-11-15 21:57:53 +00002674 Node->getDebugLoc(),
2675 MVT::i32, MVT::Other, Ops,
2676 array_lengthof(Ops));
2677 Result->setMemRefs(MemOp, MemOp + 2);
2678
2679 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2680 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2681
2682 return Result;
2683 }
Chris Lattner655e7df2005-11-16 01:54:32 +00002684 }
2685
Dan Gohmanea6f91f2010-01-05 01:24:18 +00002686 SDNode *ResNode = SelectCode(Node);
Evan Chengbd1c5a82006-08-11 09:08:15 +00002687
Chris Lattnerf98f1242010-03-02 06:34:30 +00002688 DEBUG(dbgs() << "=> ";
2689 if (ResNode == NULL || ResNode == Node)
2690 Node->dump(CurDAG);
2691 else
2692 ResNode->dump(CurDAG);
2693 dbgs() << '\n');
Evan Chengbd1c5a82006-08-11 09:08:15 +00002694
2695 return ResNode;
Chris Lattner655e7df2005-11-16 01:54:32 +00002696}
2697
Chris Lattnerba1ed582006-06-08 18:03:49 +00002698bool X86DAGToDAGISel::
Dan Gohman2ce6f2a2008-07-27 21:46:04 +00002699SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmaneb0cee92008-08-23 02:25:05 +00002700 std::vector<SDValue> &OutOps) {
Rafael Espindola3b2df102009-04-08 21:14:34 +00002701 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerba1ed582006-06-08 18:03:49 +00002702 switch (ConstraintCode) {
2703 case 'o': // offsetable ??
2704 case 'v': // not offsetable ??
2705 default: return true;
2706 case 'm': // memory
Chris Lattnerd58d7c12010-09-21 22:07:31 +00002707 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerba1ed582006-06-08 18:03:49 +00002708 return true;
2709 break;
2710 }
Chad Rosier24c19d22012-08-01 18:39:17 +00002711
Evan Cheng2d487222006-08-26 01:05:16 +00002712 OutOps.push_back(Op0);
2713 OutOps.push_back(Op1);
2714 OutOps.push_back(Op2);
2715 OutOps.push_back(Op3);
Rafael Espindola3b2df102009-04-08 21:14:34 +00002716 OutOps.push_back(Op4);
Chris Lattnerba1ed582006-06-08 18:03:49 +00002717 return false;
2718}
2719
Chad Rosier24c19d22012-08-01 18:39:17 +00002720/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattner655e7df2005-11-16 01:54:32 +00002721/// X86-specific DAG, ready for instruction scheduling.
2722///
Bill Wendling026e5d72009-04-29 23:29:43 +00002723FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperf6e7e122012-03-27 07:21:54 +00002724 CodeGenOpt::Level OptLevel) {
Bill Wendling084669a2009-04-29 00:15:41 +00002725 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattner655e7df2005-11-16 01:54:32 +00002726}