blob: d836c29d6bd8c3f1ccf44cc27fdad18ab8fc9a01 [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Lattnerc961eea2005-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 Cheng2ef88a02006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000016#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000018#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000022#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000023#include "llvm/Intrinsics.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000024#include "llvm/Type.h"
Eric Christophere3997d42011-07-01 23:04:38 +000025#include "llvm/CodeGen/FunctionLoweringInfo.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000026#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000027#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000028#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000029#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000031#include "llvm/CodeGen/SelectionDAGISel.h"
32#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000033#include "llvm/Target/TargetOptions.h"
Craig Topper79aa3412012-03-17 18:46:09 +000034#include "llvm/Support/CFG.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000035#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000036#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000037#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038#include "llvm/Support/raw_ostream.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000039#include "llvm/ADT/Statistic.h"
40using namespace llvm;
41
Chris Lattner95b2c7d2006-12-19 22:59:26 +000042STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
Chris Lattnerc961eea2005-11-16 01:54:32 +000044//===----------------------------------------------------------------------===//
45// Pattern Matcher Implementation
46//===----------------------------------------------------------------------===//
47
48namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000049 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000050 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000051 /// tree.
52 struct X86ISelAddressMode {
53 enum {
54 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000055 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000056 } BaseType;
57
Dan Gohmanffce6f12010-04-29 23:30:41 +000058 // This is really a union, discriminated by BaseType!
59 SDValue Base_Reg;
60 int Base_FrameIndex;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000061
62 unsigned Scale;
Chad Rosiera20e1e72012-08-01 18:39:17 +000063 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000064 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000065 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000066 const GlobalValue *GV;
67 const Constant *CP;
68 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000069 const char *ES;
70 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000071 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000072 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000073
74 X86ISelAddressMode()
Dan Gohmanffce6f12010-04-29 23:30:41 +000075 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000076 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000077 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000079
80 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000081 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000082 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000083
Chris Lattner18c59872009-06-27 04:16:01 +000084 bool hasBaseOrIndexReg() const {
Dan Gohmanffce6f12010-04-29 23:30:41 +000085 return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattner18c59872009-06-27 04:16:01 +000086 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000087
Chris Lattner18c59872009-06-27 04:16:01 +000088 /// isRIPRelative - Return true if this addressing mode is already RIP
89 /// relative.
90 bool isRIPRelative() const {
91 if (BaseType != RegBase) return false;
92 if (RegisterSDNode *RegNode =
Dan Gohmanffce6f12010-04-29 23:30:41 +000093 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattner18c59872009-06-27 04:16:01 +000094 return RegNode->getReg() == X86::RIP;
95 return false;
96 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000097
Chris Lattner18c59872009-06-27 04:16:01 +000098 void setBaseReg(SDValue Reg) {
99 BaseType = RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000100 Base_Reg = Reg;
Chris Lattner18c59872009-06-27 04:16:01 +0000101 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000102
Manman Renb720be62012-09-11 22:23:19 +0000103#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000104 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000105 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohmanffce6f12010-04-29 23:30:41 +0000106 dbgs() << "Base_Reg ";
107 if (Base_Reg.getNode() != 0)
Chad Rosiera20e1e72012-08-01 18:39:17 +0000108 Base_Reg.getNode()->dump();
Bill Wendling12321672009-08-07 21:33:25 +0000109 else
David Greened7f4f242010-01-05 01:29:08 +0000110 dbgs() << "nul";
Dan Gohmanffce6f12010-04-29 23:30:41 +0000111 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000112 << " Scale" << Scale << '\n'
113 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000114 if (IndexReg.getNode() != 0)
115 IndexReg.getNode()->dump();
116 else
Chad Rosiera20e1e72012-08-01 18:39:17 +0000117 dbgs() << "nul";
David Greened7f4f242010-01-05 01:29:08 +0000118 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000119 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000120 if (GV)
121 GV->dump();
122 else
David Greened7f4f242010-01-05 01:29:08 +0000123 dbgs() << "nul";
124 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000125 if (CP)
126 CP->dump();
127 else
David Greened7f4f242010-01-05 01:29:08 +0000128 dbgs() << "nul";
129 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000130 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000131 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000132 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000133 else
David Greened7f4f242010-01-05 01:29:08 +0000134 dbgs() << "nul";
135 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000136 }
Manman Ren77e300e2012-09-06 19:06:06 +0000137#endif
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000138 };
139}
140
141namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000142 //===--------------------------------------------------------------------===//
143 /// ISel - X86 specific code to select X86 machine instructions for
144 /// SelectionDAG operations.
145 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000146 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000147 /// X86Lowering - This object fully describes how to lower LLVM code to an
148 /// X86-specific SelectionDAG.
Dan Gohmand858e902010-04-17 15:26:15 +0000149 const X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000150
151 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
152 /// make the right decision when generating code for different targets.
153 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000154
Evan Chengb7a75a52008-09-26 23:41:32 +0000155 /// OptForSize - If true, selector should try to optimize for code size
156 /// instead of performance.
157 bool OptForSize;
158
Chris Lattnerc961eea2005-11-16 01:54:32 +0000159 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000160 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000161 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000162 X86Lowering(*tm.getTargetLowering()),
163 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000164 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000165
166 virtual const char *getPassName() const {
167 return "X86 DAG->DAG Instruction Selection";
168 }
169
Dan Gohman64652652010-04-14 20:17:22 +0000170 virtual void EmitFunctionEntryCode();
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000171
Evan Cheng014bf212010-02-15 19:41:07 +0000172 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
173
Chris Lattner7c306da2010-03-02 06:34:30 +0000174 virtual void PreprocessISelDAG();
175
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000176 inline bool immSext8(SDNode *N) const {
177 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
178 }
179
180 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
181 // sign extended field.
182 inline bool i64immSExt32(SDNode *N) const {
183 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
184 return (int64_t)v == (int32_t)v;
185 }
186
Chris Lattnerc961eea2005-11-16 01:54:32 +0000187// Include the pieces autogenerated from the target description.
188#include "X86GenDAGISel.inc"
189
190 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000191 SDNode *Select(SDNode *N);
Manman Ren1f7a1b62012-06-26 19:47:59 +0000192 SDNode *SelectGather(SDNode *N, unsigned Opc);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000193 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000194 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Eric Christopherc324f722011-05-17 08:10:18 +0000195 SDNode *SelectAtomicLoadArith(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000196
Eli Friedman4977eb52011-07-13 20:44:23 +0000197 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000198 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000199 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000200 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
202 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000203 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000204 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000207 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000208 SDValue &Scale, SDValue &Index, SDValue &Disp,
209 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000210 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000211 SDValue &Scale, SDValue &Index, SDValue &Disp,
212 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000213 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000214 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000215 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000216 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000217 SDValue &NodeWithChain);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000218
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000219 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000220 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000221 SDValue &Index, SDValue &Disp,
222 SDValue &Segment);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000223
Chris Lattnerc0bad572006-06-08 18:03:49 +0000224 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
225 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000226 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000227 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000228 std::vector<SDValue> &OutOps);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000229
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000230 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
231
Chad Rosiera20e1e72012-08-01 18:39:17 +0000232 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000233 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000234 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000235 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000236 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
237 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000238 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000239 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000240 // These are 32-bit even in 64-bit mode since RIP relative offset
241 // is 32-bit.
242 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000243 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
244 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000245 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000246 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000248 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000249 else if (AM.ES) {
250 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000251 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000252 } else if (AM.JT != -1) {
253 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000255 } else if (AM.BlockAddr)
256 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
257 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000258 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000260
261 if (AM.Segment.getNode())
262 Segment = AM.Segment;
263 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000264 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000265 }
266
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000267 /// getI8Imm - Return a target constant with the specified value, of type
268 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000269 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000270 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000271 }
272
Chris Lattnerc961eea2005-11-16 01:54:32 +0000273 /// getI32Imm - Return a target constant with the specified value, of type
274 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000275 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000276 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000277 }
Evan Chengf597dc72006-02-10 22:24:32 +0000278
Dan Gohman8b746962008-09-23 18:22:58 +0000279 /// getGlobalBaseReg - Return an SDNode that returns the value of
280 /// the global base register. Output instructions required to
281 /// initialize the global base register, if necessary.
282 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000283 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000284
Dan Gohmanc5534622009-06-03 20:20:00 +0000285 /// getTargetMachine - Return a reference to the TargetMachine, casted
286 /// to the target-specific type.
287 const X86TargetMachine &getTargetMachine() {
288 return static_cast<const X86TargetMachine &>(TM);
289 }
290
291 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
292 /// to the target-specific type.
293 const X86InstrInfo *getInstrInfo() {
294 return getTargetMachine().getInstrInfo();
295 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000296 };
297}
298
Evan Chengf4b4c412006-08-08 00:31:00 +0000299
Evan Cheng014bf212010-02-15 19:41:07 +0000300bool
301X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000302 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000303
Evan Cheng014bf212010-02-15 19:41:07 +0000304 if (!N.hasOneUse())
305 return false;
306
307 if (N.getOpcode() != ISD::LOAD)
308 return true;
309
310 // If N is a load, do additional profitability checks.
311 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000312 switch (U->getOpcode()) {
313 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000314 case X86ISD::ADD:
315 case X86ISD::SUB:
316 case X86ISD::AND:
317 case X86ISD::XOR:
318 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000319 case ISD::ADD:
320 case ISD::ADDC:
321 case ISD::ADDE:
322 case ISD::AND:
323 case ISD::OR:
324 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000325 SDValue Op1 = U->getOperand(1);
326
Evan Cheng884c70c2008-11-27 00:49:46 +0000327 // If the other operand is a 8-bit immediate we should fold the immediate
328 // instead. This reduces code size.
329 // e.g.
330 // movl 4(%esp), %eax
331 // addl $4, %eax
332 // vs.
333 // movl $4, %eax
334 // addl 4(%esp), %eax
335 // The former is 2 bytes shorter. In case where the increment is 1, then
336 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000337 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000338 if (Imm->getAPIntValue().isSignedIntN(8))
339 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000340
341 // If the other operand is a TLS address, we should fold it instead.
342 // This produces
343 // movl %gs:0, %eax
344 // leal i@NTPOFF(%eax), %eax
345 // instead of
346 // movl $i@NTPOFF, %eax
347 // addl %gs:0, %eax
348 // if the block also has an access to a second TLS address this will save
349 // a load.
350 // FIXME: This is probably also true for non TLS addresses.
351 if (Op1.getOpcode() == X86ISD::Wrapper) {
352 SDValue Val = Op1.getOperand(0);
353 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
354 return false;
355 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000356 }
357 }
Evan Cheng014bf212010-02-15 19:41:07 +0000358 }
359
360 return true;
361}
362
Evan Chengf48ef032010-03-14 03:48:46 +0000363/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
364/// load's chain operand and move load below the call's chain operand.
365static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
366 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000367 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000368 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000369 if (Chain.getNode() == Load.getNode())
370 Ops.push_back(Load.getOperand(0));
371 else {
372 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000373 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000374 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
375 if (Chain.getOperand(i).getNode() == Load.getNode())
376 Ops.push_back(Load.getOperand(0));
377 else
378 Ops.push_back(Chain.getOperand(i));
379 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000380 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000381 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000382 Ops.clear();
383 Ops.push_back(NewChain);
384 }
Evan Chengf48ef032010-03-14 03:48:46 +0000385 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
386 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000387 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
388 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000389 Load.getOperand(1), Load.getOperand(2));
390 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000391 Ops.push_back(SDValue(Load.getNode(), 1));
392 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000393 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000394 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000395}
396
397/// isCalleeLoad - Return true if call address is a load and it can be
398/// moved below CALLSEQ_START and the chains leading up to the call.
399/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000400/// In the case of a tail call, there isn't a callseq node between the call
401/// chain and the load.
402static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000403 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000404 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000405 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000406 if (!LD ||
407 LD->isVolatile() ||
408 LD->getAddressingMode() != ISD::UNINDEXED ||
409 LD->getExtensionType() != ISD::NON_EXTLOAD)
410 return false;
411
412 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000413 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000414 if (!Chain.hasOneUse())
415 return false;
416 Chain = Chain.getOperand(0);
417 }
Evan Chengf48ef032010-03-14 03:48:46 +0000418
419 if (!Chain.getNumOperands())
420 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000421 if (Chain.getOperand(0).getNode() == Callee.getNode())
422 return true;
423 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000424 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
425 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000426 return true;
427 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000428}
429
Chris Lattnerfb444af2010-03-02 23:12:51 +0000430void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000431 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000432 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000433
Dan Gohmanf350b272008-08-23 02:25:05 +0000434 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
435 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000436 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000437
Evan Chengf48ef032010-03-14 03:48:46 +0000438 if (OptLevel != CodeGenOpt::None &&
439 (N->getOpcode() == X86ISD::CALL ||
440 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000441 /// Also try moving call address load from outside callseq_start to just
442 /// before the call to allow it to be folded.
443 ///
444 /// [Load chain]
445 /// ^
446 /// |
447 /// [Load]
448 /// ^ ^
449 /// | |
450 /// / \--
451 /// / |
452 ///[CALLSEQ_START] |
453 /// ^ |
454 /// | |
455 /// [LOAD/C2Reg] |
456 /// | |
457 /// \ /
458 /// \ /
459 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000460 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000461 SDValue Chain = N->getOperand(0);
462 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000463 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000464 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000465 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000466 ++NumLoadMoved;
467 continue;
468 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000469
Chris Lattnerfb444af2010-03-02 23:12:51 +0000470 // Lower fpround and fpextend nodes that target the FP stack to be store and
471 // load to the stack. This is a gross hack. We would like to simply mark
472 // these as being illegal, but when we do that, legalize produces these when
473 // it expands calls, then expands these in the same legalize pass. We would
474 // like dag combine to be able to hack on these between the call expansion
475 // and the node legalization. As such this pass basically does "really
476 // late" legalization of these inline with the X86 isel pass.
477 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000478 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
479 continue;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000480
Owen Andersone50ed302009-08-10 22:56:29 +0000481 EVT SrcVT = N->getOperand(0).getValueType();
482 EVT DstVT = N->getValueType(0);
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000483
484 // If any of the sources are vectors, no fp stack involved.
485 if (SrcVT.isVector() || DstVT.isVector())
486 continue;
487
488 // If the source and destination are SSE registers, then this is a legal
489 // conversion that should not be lowered.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000490 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
491 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
492 if (SrcIsSSE && DstIsSSE)
493 continue;
494
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000495 if (!SrcIsSSE && !DstIsSSE) {
496 // If this is an FPStack extension, it is a noop.
497 if (N->getOpcode() == ISD::FP_EXTEND)
498 continue;
499 // If this is a value-preserving FPStack truncation, it is a noop.
500 if (N->getConstantOperandVal(1))
501 continue;
502 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000503
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000504 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
505 // FPStack has extload and truncstore. SSE can fold direct loads into other
506 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000507 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000508 if (N->getOpcode() == ISD::FP_ROUND)
509 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
510 else
511 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000512
Dan Gohmanf350b272008-08-23 02:25:05 +0000513 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000514 DebugLoc dl = N->getDebugLoc();
Chad Rosiera20e1e72012-08-01 18:39:17 +0000515
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000516 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000517 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000518 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000519 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000520 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000521 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000522 MachinePointerInfo(),
523 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000524
525 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
526 // extload we created. This will cause general havok on the dag because
527 // anything below the conversion could be folded into other existing nodes.
528 // To avoid invalidating 'I', back it up to the convert node.
529 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000530 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000531
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000532 // Now that we did that, the node is dead. Increment the iterator to the
533 // next node to process, then delete N.
534 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000535 CurDAG->DeleteNode(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000536 }
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000537}
538
Chris Lattnerc961eea2005-11-16 01:54:32 +0000539
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000540/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
541/// the main function.
542void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
543 MachineFrameInfo *MFI) {
544 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000545 if (Subtarget->isTargetCygMing()) {
546 unsigned CallOp =
Jakob Stoklund Olesen527a08b2012-02-16 17:56:02 +0000547 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000548 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000549 TII->get(CallOp)).addExternalSymbol("__main");
550 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000551}
552
Dan Gohman64652652010-04-14 20:17:22 +0000553void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000554 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000555 if (const Function *Fn = MF->getFunction())
556 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
557 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000558}
559
Eli Friedman2a019462011-07-13 21:29:53 +0000560static bool isDispSafeForFrameIndex(int64_t Val) {
561 // On 64-bit platforms, we can run into an issue where a frame index
562 // includes a displacement that, when added to the explicit displacement,
563 // will overflow the displacement field. Assuming that the frame index
564 // displacement fits into a 31-bit integer (which is only slightly more
565 // aggressive than the current fundamental assumption that it fits into
566 // a 32-bit integer), a 31-bit disp should always be safe.
567 return isInt<31>(Val);
568}
569
Eli Friedman4977eb52011-07-13 20:44:23 +0000570bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
571 X86ISelAddressMode &AM) {
572 int64_t Val = AM.Disp + Offset;
573 CodeModel::Model M = TM.getCodeModel();
Eli Friedman2a019462011-07-13 21:29:53 +0000574 if (Subtarget->is64Bit()) {
575 if (!X86::isOffsetSuitableForCodeModel(Val, M,
576 AM.hasSymbolicDisplacement()))
577 return true;
578 // In addition to the checks required for a register base, check that
579 // we do not try to use an unsafe Disp with a frame index.
580 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
581 !isDispSafeForFrameIndex(Val))
582 return true;
Eli Friedman4977eb52011-07-13 20:44:23 +0000583 }
Eli Friedman2a019462011-07-13 21:29:53 +0000584 AM.Disp = Val;
585 return false;
586
Eli Friedman4977eb52011-07-13 20:44:23 +0000587}
Rafael Espindola094fad32009-04-08 21:14:34 +0000588
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000589bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
590 SDValue Address = N->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000591
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000592 // load gs:0 -> GS segment register.
593 // load fs:0 -> FS segment register.
594 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000595 // This optimization is valid because the GNU TLS model defines that
596 // gs:0 (or fs:0 on X86-64) contains its own address.
597 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000598 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
599 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
David Chisnall23a62cb2012-07-24 20:04:16 +0000600 Subtarget->isTargetLinux())
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000601 switch (N->getPointerInfo().getAddrSpace()) {
602 case 256:
603 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
604 return false;
605 case 257:
606 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
607 return false;
608 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000609
Rafael Espindola094fad32009-04-08 21:14:34 +0000610 return true;
611}
612
Chris Lattner18c59872009-06-27 04:16:01 +0000613/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
614/// into an addressing mode. These wrap things that will resolve down into a
615/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000616/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000617bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000618 // If the addressing mode already has a symbol as the displacement, we can
619 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000620 if (AM.hasSymbolicDisplacement())
621 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000622
623 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000624 CodeModel::Model M = TM.getCodeModel();
625
Chris Lattner18c59872009-06-27 04:16:01 +0000626 // Handle X86-64 rip-relative addresses. We check this before checking direct
627 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000628 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattner18c59872009-06-27 04:16:01 +0000629 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
630 // they cannot be folded into immediate fields.
631 // FIXME: This can be improved for kernel and other models?
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000632 (M == CodeModel::Small || M == CodeModel::Kernel)) {
633 // Base and index reg must be 0 in order to use %rip as base.
634 if (AM.hasBaseOrIndexReg())
635 return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000636 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000637 X86ISelAddressMode Backup = AM;
Chris Lattner18c59872009-06-27 04:16:01 +0000638 AM.GV = G->getGlobal();
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000639 AM.SymbolFlags = G->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000640 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
641 AM = Backup;
642 return true;
643 }
Chris Lattner18c59872009-06-27 04:16:01 +0000644 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000645 X86ISelAddressMode Backup = AM;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000646 AM.CP = CP->getConstVal();
647 AM.Align = CP->getAlignment();
Chris Lattner0b0deab2009-06-26 05:56:49 +0000648 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000649 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
650 AM = Backup;
651 return true;
652 }
Chris Lattner18c59872009-06-27 04:16:01 +0000653 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
654 AM.ES = S->getSymbol();
655 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000656 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000657 AM.JT = J->getIndex();
658 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000659 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
660 X86ISelAddressMode Backup = AM;
661 AM.BlockAddr = BA->getBlockAddress();
662 AM.SymbolFlags = BA->getTargetFlags();
663 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
664 AM = Backup;
665 return true;
666 }
667 } else
668 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000669
Chris Lattner18c59872009-06-27 04:16:01 +0000670 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000671 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000672 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000673 }
674
675 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000676 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
677 // mode, this only applies to a non-RIP-relative computation.
Chris Lattner18c59872009-06-27 04:16:01 +0000678 if (!Subtarget->is64Bit() ||
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000679 M == CodeModel::Small || M == CodeModel::Kernel) {
680 assert(N.getOpcode() != X86ISD::WrapperRIP &&
681 "RIP-relative addressing already handled");
Chris Lattner18c59872009-06-27 04:16:01 +0000682 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
683 AM.GV = G->getGlobal();
684 AM.Disp += G->getOffset();
685 AM.SymbolFlags = G->getTargetFlags();
686 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
687 AM.CP = CP->getConstVal();
688 AM.Align = CP->getAlignment();
689 AM.Disp += CP->getOffset();
690 AM.SymbolFlags = CP->getTargetFlags();
691 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
692 AM.ES = S->getSymbol();
693 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000694 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000695 AM.JT = J->getIndex();
696 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000697 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
698 AM.BlockAddr = BA->getBlockAddress();
699 AM.Disp += BA->getOffset();
700 AM.SymbolFlags = BA->getTargetFlags();
701 } else
702 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola49a168d2009-04-12 21:55:03 +0000703 return false;
704 }
705
706 return true;
707}
708
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000709/// MatchAddress - Add the specified node to the specified addressing mode,
710/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000711/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000712bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000713 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000714 return true;
715
716 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
717 // a smaller encoding and avoids a scaled-index.
718 if (AM.Scale == 2 &&
719 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000720 AM.Base_Reg.getNode() == 0) {
721 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000722 AM.Scale = 1;
723 }
724
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000725 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
726 // because it has a smaller encoding.
727 // TODO: Which other code models can use this?
728 if (TM.getCodeModel() == CodeModel::Small &&
729 Subtarget->is64Bit() &&
730 AM.Scale == 1 &&
731 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000732 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000733 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000734 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000735 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000736 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000737
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000738 return false;
739}
740
Chandler Carruthd65a9102012-01-11 11:04:36 +0000741// Insert a node into the DAG at least before the Pos node's position. This
742// will reposition the node as needed, and will assign it a node ID that is <=
743// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
744// IDs! The selection DAG must no longer depend on their uniqueness when this
745// is used.
746static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
747 if (N.getNode()->getNodeId() == -1 ||
748 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
749 DAG.RepositionNode(Pos.getNode(), N.getNode());
750 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
751 }
752}
753
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000754// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
755// allows us to convert the shift and and into an h-register extract and
756// a scaled index. Returns false if the simplification is performed.
757static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
758 uint64_t Mask,
759 SDValue Shift, SDValue X,
760 X86ISelAddressMode &AM) {
761 if (Shift.getOpcode() != ISD::SRL ||
762 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
763 !Shift.hasOneUse())
764 return true;
765
766 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
767 if (ScaleLog <= 0 || ScaleLog >= 4 ||
768 Mask != (0xffu << ScaleLog))
769 return true;
770
771 EVT VT = N.getValueType();
772 DebugLoc DL = N.getDebugLoc();
773 SDValue Eight = DAG.getConstant(8, MVT::i8);
774 SDValue NewMask = DAG.getConstant(0xff, VT);
775 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
776 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
777 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
778 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
779
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000780 // Insert the new nodes into the topological ordering. We must do this in
781 // a valid topological ordering as nothing is going to go back and re-sort
782 // these nodes. We continually insert before 'N' in sequence as this is
783 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
784 // hierarchy left to express.
785 InsertDAGNode(DAG, N, Eight);
786 InsertDAGNode(DAG, N, Srl);
787 InsertDAGNode(DAG, N, NewMask);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000788 InsertDAGNode(DAG, N, And);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000789 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000790 InsertDAGNode(DAG, N, Shl);
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000791 DAG.ReplaceAllUsesWith(N, Shl);
792 AM.IndexReg = And;
793 AM.Scale = (1 << ScaleLog);
794 return false;
795}
796
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000797// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
798// allows us to fold the shift into this addressing mode. Returns false if the
799// transform succeeded.
800static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
801 uint64_t Mask,
802 SDValue Shift, SDValue X,
803 X86ISelAddressMode &AM) {
804 if (Shift.getOpcode() != ISD::SHL ||
805 !isa<ConstantSDNode>(Shift.getOperand(1)))
806 return true;
807
808 // Not likely to be profitable if either the AND or SHIFT node has more
809 // than one use (unless all uses are for address computation). Besides,
810 // isel mechanism requires their node ids to be reused.
811 if (!N.hasOneUse() || !Shift.hasOneUse())
812 return true;
813
814 // Verify that the shift amount is something we can fold.
815 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
816 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
817 return true;
818
819 EVT VT = N.getValueType();
820 DebugLoc DL = N.getDebugLoc();
821 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
822 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
823 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
824
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000825 // Insert the new nodes into the topological ordering. We must do this in
826 // a valid topological ordering as nothing is going to go back and re-sort
827 // these nodes. We continually insert before 'N' in sequence as this is
828 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
829 // hierarchy left to express.
830 InsertDAGNode(DAG, N, NewMask);
831 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000832 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000833 DAG.ReplaceAllUsesWith(N, NewShift);
834
835 AM.Scale = 1 << ShiftAmt;
836 AM.IndexReg = NewAnd;
837 return false;
838}
839
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000840// Implement some heroics to detect shifts of masked values where the mask can
841// be replaced by extending the shift and undoing that in the addressing mode
842// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
843// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
844// the addressing mode. This results in code such as:
845//
846// int f(short *y, int *lookup_table) {
847// ...
848// return *y + lookup_table[*y >> 11];
849// }
850//
851// Turning into:
852// movzwl (%rdi), %eax
853// movl %eax, %ecx
854// shrl $11, %ecx
855// addl (%rsi,%rcx,4), %eax
856//
857// Instead of:
858// movzwl (%rdi), %eax
859// movl %eax, %ecx
860// shrl $9, %ecx
861// andl $124, %rcx
862// addl (%rsi,%rcx), %eax
863//
Chandler Carruthdddcd782012-01-11 09:35:02 +0000864// Note that this function assumes the mask is provided as a mask *after* the
865// value is shifted. The input chain may or may not match that, but computing
866// such a mask is trivial.
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000867static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruthdddcd782012-01-11 09:35:02 +0000868 uint64_t Mask,
869 SDValue Shift, SDValue X,
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000870 X86ISelAddressMode &AM) {
Chandler Carruthdddcd782012-01-11 09:35:02 +0000871 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
872 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000873 return true;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000874
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000875 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
876 unsigned MaskLZ = CountLeadingZeros_64(Mask);
877 unsigned MaskTZ = CountTrailingZeros_64(Mask);
878
879 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruthdddcd782012-01-11 09:35:02 +0000880 // from the trailing zeros of the mask.
881 unsigned AMShiftAmt = MaskTZ;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000882
883 // There is nothing we can do here unless the mask is removing some bits.
884 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
885 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
886
887 // We also need to ensure that mask is a continuous run of bits.
888 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
889
890 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruthdddcd782012-01-11 09:35:02 +0000891 // Also scale it down based on the size of the shift.
892 MaskLZ -= (64 - X.getValueSizeInBits()) + ShiftAmt;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000893
894 // The final check is to ensure that any masked out high bits of X are
895 // already known to be zero. Otherwise, the mask has a semantic impact
896 // other than masking out a couple of low bits. Unfortunately, because of
897 // the mask, zero extensions will be removed from operands in some cases.
898 // This code works extra hard to look through extensions because we can
899 // replace them with zero extensions cheaply if necessary.
900 bool ReplacingAnyExtend = false;
901 if (X.getOpcode() == ISD::ANY_EXTEND) {
902 unsigned ExtendBits =
903 X.getValueSizeInBits() - X.getOperand(0).getValueSizeInBits();
904 // Assume that we'll replace the any-extend with a zero-extend, and
905 // narrow the search to the extended value.
906 X = X.getOperand(0);
907 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
908 ReplacingAnyExtend = true;
909 }
910 APInt MaskedHighBits = APInt::getHighBitsSet(X.getValueSizeInBits(),
911 MaskLZ);
912 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000913 DAG.ComputeMaskedBits(X, KnownZero, KnownOne);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000914 if (MaskedHighBits != KnownZero) return true;
915
916 // We've identified a pattern that can be transformed into a single shift
917 // and an addressing mode. Make it so.
918 EVT VT = N.getValueType();
919 if (ReplacingAnyExtend) {
920 assert(X.getValueType() != VT);
921 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
922 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, X.getDebugLoc(), VT, X);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000923 InsertDAGNode(DAG, N, NewX);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000924 X = NewX;
925 }
926 DebugLoc DL = N.getDebugLoc();
927 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
928 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
929 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
930 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000931
932 // Insert the new nodes into the topological ordering. We must do this in
933 // a valid topological ordering as nothing is going to go back and re-sort
934 // these nodes. We continually insert before 'N' in sequence as this is
935 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
936 // hierarchy left to express.
Chandler Carruthd65a9102012-01-11 11:04:36 +0000937 InsertDAGNode(DAG, N, NewSRLAmt);
938 InsertDAGNode(DAG, N, NewSRL);
939 InsertDAGNode(DAG, N, NewSHLAmt);
940 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000941 DAG.ReplaceAllUsesWith(N, NewSHL);
942
943 AM.Scale = 1 << AMShiftAmt;
944 AM.IndexReg = NewSRL;
945 return false;
946}
947
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000948bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
949 unsigned Depth) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000950 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000951 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000952 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000953 AM.dump();
954 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000955 // Limit recursion.
956 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000957 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000958
Chris Lattner18c59872009-06-27 04:16:01 +0000959 // If this is already a %rip relative address, we can only merge immediates
960 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000961 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000962 if (AM.isRIPRelative()) {
963 // FIXME: JumpTable and ExternalSymbol address currently don't like
964 // displacements. It isn't very important, but this should be fixed for
965 // consistency.
966 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000967
Eli Friedman4977eb52011-07-13 20:44:23 +0000968 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
969 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000970 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000971 return true;
972 }
973
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000974 switch (N.getOpcode()) {
975 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000976 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000977 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedman4977eb52011-07-13 20:44:23 +0000978 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000979 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000980 break;
981 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000982
Rafael Espindola49a168d2009-04-12 21:55:03 +0000983 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000984 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000985 if (!MatchWrapper(N, AM))
986 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000987 break;
988
Rafael Espindola094fad32009-04-08 21:14:34 +0000989 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000990 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000991 return false;
992 break;
993
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000994 case ISD::FrameIndex:
Eli Friedman2a019462011-07-13 21:29:53 +0000995 if (AM.BaseType == X86ISelAddressMode::RegBase &&
996 AM.Base_Reg.getNode() == 0 &&
997 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000998 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000999 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001000 return false;
1001 }
1002 break;
Evan Chengec693f72005-12-08 02:01:35 +00001003
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001004 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +00001005 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001006 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001007
Gabor Greif93c53e52008-08-31 15:37:04 +00001008 if (ConstantSDNode
1009 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001010 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001011 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1012 // that the base operand remains free for further matching. If
1013 // the base doesn't end up getting used, a post-processing step
1014 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001015 if (Val == 1 || Val == 2 || Val == 3) {
1016 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +00001017 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001018
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001019 // Okay, we know that we have a scale by now. However, if the scaled
1020 // value is an add of something and a constant, we can fold the
1021 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001022 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001023 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001024 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001025 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith1144af32012-08-24 23:29:28 +00001026 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedman4977eb52011-07-13 20:44:23 +00001027 if (!FoldOffsetIntoAddress(Disp, AM))
1028 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001029 }
Eli Friedman4977eb52011-07-13 20:44:23 +00001030
1031 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001032 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001033 }
1034 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001035 }
Evan Chengec693f72005-12-08 02:01:35 +00001036
Chandler Carruthdddcd782012-01-11 09:35:02 +00001037 case ISD::SRL: {
1038 // Scale must not be used already.
1039 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1040
1041 SDValue And = N.getOperand(0);
1042 if (And.getOpcode() != ISD::AND) break;
1043 SDValue X = And.getOperand(0);
1044
1045 // We only handle up to 64-bit values here as those are what matter for
1046 // addressing mode optimizations.
1047 if (X.getValueSizeInBits() > 64) break;
1048
1049 // The mask used for the transform is expected to be post-shift, but we
1050 // found the shift first so just apply the shift to the mask before passing
1051 // it down.
1052 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1053 !isa<ConstantSDNode>(And.getOperand(1)))
1054 break;
1055 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1056
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001057 // Try to fold the mask and shift into the scale, and return false if we
1058 // succeed.
Chandler Carruthdddcd782012-01-11 09:35:02 +00001059 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001060 return false;
1061 break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001062 }
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001063
Dan Gohman83688052007-10-22 20:22:24 +00001064 case ISD::SMUL_LOHI:
1065 case ISD::UMUL_LOHI:
1066 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001067 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +00001068 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001069 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +00001070 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001071 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001072 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001073 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +00001074 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +00001075 if (ConstantSDNode
1076 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001077 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1078 CN->getZExtValue() == 9) {
1079 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001080
Gabor Greifba36cb52008-08-28 21:40:38 +00001081 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001082 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001083
1084 // Okay, we know that we have a scale by now. However, if the scaled
1085 // value is an add of something and a constant, we can fold the
1086 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001087 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1088 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1089 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001090 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001091 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +00001092 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1093 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greifba36cb52008-08-28 21:40:38 +00001094 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001095 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001096 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001097 }
1098
Dan Gohmanffce6f12010-04-29 23:30:41 +00001099 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001100 return false;
1101 }
Chris Lattner62412262007-02-04 20:18:17 +00001102 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001103 break;
1104
Dan Gohman3cd90a12009-05-11 18:02:53 +00001105 case ISD::SUB: {
1106 // Given A-B, if A can be completely folded into the address and
1107 // the index field with the index field unused, use -B as the index.
1108 // This is a win if a has multiple parts that can be folded into
1109 // the address. Also, this saves a mov if the base register has
1110 // other uses, since it avoids a two-address sub instruction, however
1111 // it costs an additional mov if the index register has other uses.
1112
Dan Gohmane5408102010-06-18 01:24:29 +00001113 // Add an artificial use to this node so that we can keep track of
1114 // it if it gets CSE'd with a different node.
1115 HandleSDNode Handle(N);
1116
Dan Gohman3cd90a12009-05-11 18:02:53 +00001117 // Test if the LHS of the sub can be folded.
1118 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +00001119 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001120 AM = Backup;
1121 break;
1122 }
1123 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001124 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001125 AM = Backup;
1126 break;
1127 }
Evan Chengf3caa522010-03-17 23:58:35 +00001128
Dan Gohman3cd90a12009-05-11 18:02:53 +00001129 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +00001130 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001131 // If the RHS involves a register with multiple uses, this
1132 // transformation incurs an extra mov, due to the neg instruction
1133 // clobbering its operand.
1134 if (!RHS.getNode()->hasOneUse() ||
1135 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1136 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1137 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1138 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001139 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001140 ++Cost;
1141 // If the base is a register with multiple uses, this
1142 // transformation may save a mov.
1143 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001144 AM.Base_Reg.getNode() &&
1145 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +00001146 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1147 --Cost;
1148 // If the folded LHS was interesting, this transformation saves
1149 // address arithmetic.
1150 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1151 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1152 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1153 --Cost;
1154 // If it doesn't look like it may be an overall win, don't do it.
1155 if (Cost >= 0) {
1156 AM = Backup;
1157 break;
1158 }
1159
1160 // Ok, the transformation is legal and appears profitable. Go for it.
1161 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1162 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1163 AM.IndexReg = Neg;
1164 AM.Scale = 1;
1165
1166 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +00001167 InsertDAGNode(*CurDAG, N, Zero);
1168 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001169 return false;
1170 }
1171
Evan Cheng8e278262009-01-17 07:09:27 +00001172 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +00001173 // Add an artificial use to this node so that we can keep track of
1174 // it if it gets CSE'd with a different node.
1175 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +00001176
Evan Cheng8e278262009-01-17 07:09:27 +00001177 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001178 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1179 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001180 return false;
1181 AM = Backup;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001182
Evan Chengf3caa522010-03-17 23:58:35 +00001183 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001184 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1185 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001186 return false;
Evan Cheng8e278262009-01-17 07:09:27 +00001187 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001188
1189 // If we couldn't fold both operands into the address at the same time,
1190 // see if we can just put each operand into a register and fold at least
1191 // the add.
1192 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001193 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001194 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001195 N = Handle.getValue();
1196 AM.Base_Reg = N.getOperand(0);
1197 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +00001198 AM.Scale = 1;
1199 return false;
1200 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001201 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001202 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001203 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001204
Chris Lattner62412262007-02-04 20:18:17 +00001205 case ISD::OR:
1206 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001207 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001208 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +00001209 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Chengf3caa522010-03-17 23:58:35 +00001210
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001211 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +00001212 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedman4977eb52011-07-13 20:44:23 +00001213 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001214 return false;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001215 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001216 }
1217 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001218
Evan Cheng1314b002007-12-13 00:43:27 +00001219 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001220 // Perform some heroic transforms on an and of a constant-count shift
1221 // with a constant to enable use of the scaled offset field.
1222
Evan Cheng1314b002007-12-13 00:43:27 +00001223 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001224 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001225
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001226 SDValue Shift = N.getOperand(0);
1227 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001228 SDValue X = Shift.getOperand(0);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001229
1230 // We only handle up to 64-bit values here as those are what matter for
1231 // addressing mode optimizations.
1232 if (X.getValueSizeInBits() > 64) break;
1233
Chandler Carruth93b73582012-01-11 09:35:04 +00001234 if (!isa<ConstantSDNode>(N.getOperand(1)))
1235 break;
1236 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng1314b002007-12-13 00:43:27 +00001237
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001238 // Try to fold the mask and shift into an extract and scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001239 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001240 return false;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001241
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001242 // Try to fold the mask and shift directly into the scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001243 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001244 return false;
1245
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001246 // Try to swap the mask and shift to place shifts which can be done as
1247 // a scale on the outside of the mask.
Chandler Carruth93b73582012-01-11 09:35:04 +00001248 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001249 return false;
1250 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001251 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001252 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001253
Rafael Espindola523249f2009-03-31 16:16:57 +00001254 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001255}
1256
1257/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1258/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001259bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001260 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001261 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001262 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001263 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001264 AM.IndexReg = N;
1265 AM.Scale = 1;
1266 return false;
1267 }
1268
1269 // Otherwise, we cannot select it.
1270 return true;
1271 }
1272
1273 // Default, generate it as a register.
1274 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001275 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001276 return false;
1277}
1278
Evan Chengec693f72005-12-08 02:01:35 +00001279/// SelectAddr - returns true if it is able pattern match an addressing mode.
1280/// It returns the operands which make up the maximal addressing mode it can
1281/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001282///
1283/// Parent is the parent node of the addr operand that is being matched. It
1284/// is always a load, store, atomic node, or null. It is only null when
1285/// checking memory operands for inline asm nodes.
1286bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001287 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001288 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001289 X86ISelAddressMode AM;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001290
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001291 if (Parent &&
1292 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1293 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001294 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001295 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1296 Parent->getOpcode() != X86ISD::TLSCALL) { // Fixme
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001297 unsigned AddrSpace =
1298 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1299 // AddrSpace 256 -> GS, 257 -> FS.
1300 if (AddrSpace == 256)
1301 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1302 if (AddrSpace == 257)
1303 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1304 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001305
Evan Chengc7928f82009-12-18 01:59:21 +00001306 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001307 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001308
Owen Andersone50ed302009-08-10 22:56:29 +00001309 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001310 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001311 if (!AM.Base_Reg.getNode())
1312 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001313 }
Evan Cheng8700e142006-01-11 06:09:51 +00001314
Gabor Greifba36cb52008-08-28 21:40:38 +00001315 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001316 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001317
Rafael Espindola094fad32009-04-08 21:14:34 +00001318 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001319 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001320}
1321
Chris Lattner3a7cd952006-10-07 21:55:32 +00001322/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1323/// match a load whose top elements are either undef or zeros. The load flavor
1324/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001325///
1326/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001327/// PatternChainNode: this is the matched node that has a chain input and
1328/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001329bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001330 SDValue N, SDValue &Base,
1331 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001332 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001333 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001334 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001335 PatternNodeWithChain = N.getOperand(0);
1336 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1337 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001338 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001339 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001340 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001341 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001342 return false;
1343 return true;
1344 }
1345 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001346
1347 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001348 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001349 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001350 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosiera20e1e72012-08-01 18:39:17 +00001351 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001352 N.getOperand(0).getNode()->hasOneUse() &&
1353 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001354 N.getOperand(0).getOperand(0).hasOneUse() &&
1355 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001356 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001357 // Okay, this is a zero extending load. Fold it.
1358 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001359 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001360 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001361 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001362 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001363 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001364 return false;
1365}
1366
1367
Evan Cheng51a9ed92006-02-25 10:09:08 +00001368/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1369/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001370bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001371 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001372 SDValue &Index, SDValue &Disp,
1373 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001374 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001375
1376 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1377 // segments.
1378 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001379 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001380 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001381 if (MatchAddress(N, AM))
1382 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001383 assert (T == AM.Segment);
1384 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001385
Owen Andersone50ed302009-08-10 22:56:29 +00001386 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001387 unsigned Complexity = 0;
1388 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001389 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001390 Complexity = 1;
1391 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001392 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001393 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1394 Complexity = 4;
1395
Gabor Greifba36cb52008-08-28 21:40:38 +00001396 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001397 Complexity++;
1398 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001399 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001400
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001401 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1402 // a simple shift.
1403 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001404 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001405
1406 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1407 // to a LEA. This is determined with some expermentation but is by no means
1408 // optimal (especially for code size consideration). LEA is nice because of
1409 // its three-address nature. Tweak the cost function again when we can run
1410 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001411 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001412 // For X86-64, we should always use lea to materialize RIP relative
1413 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001414 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001415 Complexity = 4;
1416 else
1417 Complexity += 2;
1418 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001419
Dan Gohmanffce6f12010-04-29 23:30:41 +00001420 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001421 Complexity++;
1422
Chris Lattner25142782009-07-11 22:50:33 +00001423 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001424 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001425 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001426
Chris Lattner25142782009-07-11 22:50:33 +00001427 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1428 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001429}
1430
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001431/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001432bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001433 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001434 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001435 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1436 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +00001437
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001438 X86ISelAddressMode AM;
1439 AM.GV = GA->getGlobal();
1440 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001441 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001442 AM.SymbolFlags = GA->getTargetFlags();
1443
Owen Anderson825b72b2009-08-11 20:47:22 +00001444 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001445 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001446 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001447 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001448 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001449 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001450
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001451 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1452 return true;
1453}
1454
1455
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001456bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001457 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001458 SDValue &Index, SDValue &Disp,
1459 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001460 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1461 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001462 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001463 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001464
Chris Lattnerb86faa12010-09-21 22:07:31 +00001465 return SelectAddr(N.getNode(),
1466 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001467}
1468
Dan Gohman8b746962008-09-23 18:22:58 +00001469/// getGlobalBaseReg - Return an SDNode that returns the value of
1470/// the global base register. Output instructions required to
1471/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001472///
Evan Cheng9ade2182006-08-26 05:34:46 +00001473SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001474 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001475 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001476}
1477
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001478SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1479 SDValue Chain = Node->getOperand(0);
1480 SDValue In1 = Node->getOperand(1);
1481 SDValue In2L = Node->getOperand(2);
1482 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001483 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001484 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001485 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001486 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1487 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1488 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1489 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1490 MVT::i32, MVT::i32, MVT::Other, Ops,
1491 array_lengthof(Ops));
1492 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1493 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001494}
Christopher Lambc59e5212007-08-10 21:48:46 +00001495
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001496// FIXME: Figure out some way to unify this with the 'or' and other code
1497// below.
Owen Andersone50ed302009-08-10 22:56:29 +00001498SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001499 if (Node->hasAnyUseOfValue(0))
1500 return 0;
1501
1502 // Optimize common patterns for __sync_add_and_fetch and
1503 // __sync_sub_and_fetch where the result is not used. This allows us
1504 // to use "lock" version of add, sub, inc, dec instructions.
1505 // FIXME: Do not use special instructions but instead add the "lock"
1506 // prefix to the target node somehow. The extra information will then be
1507 // transferred to machine instruction and it denotes the prefix.
1508 SDValue Chain = Node->getOperand(0);
1509 SDValue Ptr = Node->getOperand(1);
1510 SDValue Val = Node->getOperand(2);
1511 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001512 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001513 return 0;
1514
1515 bool isInc = false, isDec = false, isSub = false, isCN = false;
1516 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001517 if (CN && CN->getSExtValue() == (int32_t)CN->getSExtValue()) {
Evan Cheng37b73872009-07-30 08:33:02 +00001518 isCN = true;
1519 int64_t CNVal = CN->getSExtValue();
1520 if (CNVal == 1)
1521 isInc = true;
1522 else if (CNVal == -1)
1523 isDec = true;
1524 else if (CNVal >= 0)
1525 Val = CurDAG->getTargetConstant(CNVal, NVT);
1526 else {
1527 isSub = true;
1528 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1529 }
1530 } else if (Val.hasOneUse() &&
1531 Val.getOpcode() == ISD::SUB &&
1532 X86::isZeroNode(Val.getOperand(0))) {
1533 isSub = true;
1534 Val = Val.getOperand(1);
1535 }
1536
Eric Christophere3997d42011-07-01 23:04:38 +00001537 DebugLoc dl = Node->getDebugLoc();
Evan Cheng37b73872009-07-30 08:33:02 +00001538 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001539 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001540 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001541 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001542 if (isInc)
1543 Opc = X86::LOCK_INC8m;
1544 else if (isDec)
1545 Opc = X86::LOCK_DEC8m;
1546 else if (isSub) {
1547 if (isCN)
1548 Opc = X86::LOCK_SUB8mi;
1549 else
1550 Opc = X86::LOCK_SUB8mr;
1551 } else {
1552 if (isCN)
1553 Opc = X86::LOCK_ADD8mi;
1554 else
1555 Opc = X86::LOCK_ADD8mr;
1556 }
1557 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001558 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001559 if (isInc)
1560 Opc = X86::LOCK_INC16m;
1561 else if (isDec)
1562 Opc = X86::LOCK_DEC16m;
1563 else if (isSub) {
1564 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001565 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001566 Opc = X86::LOCK_SUB16mi8;
1567 else
1568 Opc = X86::LOCK_SUB16mi;
1569 } else
1570 Opc = X86::LOCK_SUB16mr;
1571 } else {
1572 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001573 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001574 Opc = X86::LOCK_ADD16mi8;
1575 else
1576 Opc = X86::LOCK_ADD16mi;
1577 } else
1578 Opc = X86::LOCK_ADD16mr;
1579 }
1580 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001581 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001582 if (isInc)
1583 Opc = X86::LOCK_INC32m;
1584 else if (isDec)
1585 Opc = X86::LOCK_DEC32m;
1586 else if (isSub) {
1587 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001588 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001589 Opc = X86::LOCK_SUB32mi8;
1590 else
1591 Opc = X86::LOCK_SUB32mi;
1592 } else
1593 Opc = X86::LOCK_SUB32mr;
1594 } else {
1595 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001596 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001597 Opc = X86::LOCK_ADD32mi8;
1598 else
1599 Opc = X86::LOCK_ADD32mi;
1600 } else
1601 Opc = X86::LOCK_ADD32mr;
1602 }
1603 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001604 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001605 if (isInc)
1606 Opc = X86::LOCK_INC64m;
1607 else if (isDec)
1608 Opc = X86::LOCK_DEC64m;
1609 else if (isSub) {
1610 Opc = X86::LOCK_SUB64mr;
1611 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001612 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001613 Opc = X86::LOCK_SUB64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001614 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001615 Opc = X86::LOCK_SUB64mi32;
1616 }
1617 } else {
1618 Opc = X86::LOCK_ADD64mr;
1619 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001620 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001621 Opc = X86::LOCK_ADD64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001622 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001623 Opc = X86::LOCK_ADD64mi32;
1624 }
1625 }
1626 break;
1627 }
1628
Chris Lattner518bb532010-02-09 19:54:29 +00001629 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001630 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001631 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1632 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001633 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001634 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1635 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1636 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001637 SDValue RetVals[] = { Undef, Ret };
1638 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1639 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001640 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1641 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1642 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001643 SDValue RetVals[] = { Undef, Ret };
1644 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1645 }
1646}
1647
Eric Christopher8102bf02011-05-17 07:47:55 +00001648enum AtomicOpc {
Eric Christopher811c2b72011-05-17 07:50:41 +00001649 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001650 AND,
1651 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001652 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001653};
1654
1655enum AtomicSz {
1656 ConstantI8,
1657 I8,
1658 SextConstantI16,
1659 ConstantI16,
1660 I16,
1661 SextConstantI32,
1662 ConstantI32,
1663 I32,
1664 SextConstantI64,
1665 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001666 I64,
1667 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001668};
1669
Craig Topper72051bf2012-03-09 07:45:21 +00001670static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001671 {
1672 X86::LOCK_OR8mi,
1673 X86::LOCK_OR8mr,
1674 X86::LOCK_OR16mi8,
1675 X86::LOCK_OR16mi,
1676 X86::LOCK_OR16mr,
1677 X86::LOCK_OR32mi8,
1678 X86::LOCK_OR32mi,
1679 X86::LOCK_OR32mr,
1680 X86::LOCK_OR64mi8,
1681 X86::LOCK_OR64mi32,
1682 X86::LOCK_OR64mr
Eric Christopherc324f722011-05-17 08:10:18 +00001683 },
1684 {
1685 X86::LOCK_AND8mi,
1686 X86::LOCK_AND8mr,
1687 X86::LOCK_AND16mi8,
1688 X86::LOCK_AND16mi,
1689 X86::LOCK_AND16mr,
1690 X86::LOCK_AND32mi8,
1691 X86::LOCK_AND32mi,
1692 X86::LOCK_AND32mr,
1693 X86::LOCK_AND64mi8,
1694 X86::LOCK_AND64mi32,
1695 X86::LOCK_AND64mr
1696 },
1697 {
1698 X86::LOCK_XOR8mi,
1699 X86::LOCK_XOR8mr,
1700 X86::LOCK_XOR16mi8,
1701 X86::LOCK_XOR16mi,
1702 X86::LOCK_XOR16mr,
1703 X86::LOCK_XOR32mi8,
1704 X86::LOCK_XOR32mi,
1705 X86::LOCK_XOR32mr,
1706 X86::LOCK_XOR64mi8,
1707 X86::LOCK_XOR64mi32,
1708 X86::LOCK_XOR64mr
Eric Christopherc493a1f2011-05-11 21:44:58 +00001709 }
1710};
1711
Eric Christopherc324f722011-05-17 08:10:18 +00001712SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001713 if (Node->hasAnyUseOfValue(0))
1714 return 0;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001715
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001716 // Optimize common patterns for __sync_or_and_fetch and similar arith
1717 // operations where the result is not used. This allows us to use the "lock"
1718 // version of the arithmetic instruction.
1719 // FIXME: Same as for 'add' and 'sub', try to merge those down here.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001720 SDValue Chain = Node->getOperand(0);
1721 SDValue Ptr = Node->getOperand(1);
1722 SDValue Val = Node->getOperand(2);
1723 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1724 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1725 return 0;
1726
Eric Christopherc324f722011-05-17 08:10:18 +00001727 // Which index into the table.
1728 enum AtomicOpc Op;
1729 switch (Node->getOpcode()) {
1730 case ISD::ATOMIC_LOAD_OR:
1731 Op = OR;
1732 break;
1733 case ISD::ATOMIC_LOAD_AND:
1734 Op = AND;
1735 break;
1736 case ISD::ATOMIC_LOAD_XOR:
1737 Op = XOR;
1738 break;
1739 default:
1740 return 0;
1741 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001742
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001743 bool isCN = false;
1744 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001745 if (CN && (int32_t)CN->getSExtValue() == CN->getSExtValue()) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001746 isCN = true;
1747 Val = CurDAG->getTargetConstant(CN->getSExtValue(), NVT);
1748 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001749
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001750 unsigned Opc = 0;
1751 switch (NVT.getSimpleVT().SimpleTy) {
1752 default: return 0;
1753 case MVT::i8:
1754 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001755 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001756 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001757 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001758 break;
1759 case MVT::i16:
1760 if (isCN) {
1761 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001762 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001763 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001764 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001765 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001766 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001767 break;
1768 case MVT::i32:
1769 if (isCN) {
1770 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001771 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001772 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001773 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001774 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001775 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001776 break;
1777 case MVT::i64:
Eric Christopher5d8aa342011-06-30 00:48:30 +00001778 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001779 if (isCN) {
1780 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001781 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001782 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001783 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopher5d8aa342011-06-30 00:48:30 +00001784 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001785 break;
1786 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001787
Eric Christopher5d8aa342011-06-30 00:48:30 +00001788 assert(Opc != 0 && "Invalid arith lock transform!");
1789
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001790 DebugLoc dl = Node->getDebugLoc();
1791 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1792 dl, NVT), 0);
1793 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1794 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1795 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1796 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1797 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1798 SDValue RetVals[] = { Undef, Ret };
1799 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1800}
1801
Dan Gohman11596ed2009-10-09 20:35:19 +00001802/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1803/// any uses which require the SF or OF bits to be accurate.
1804static bool HasNoSignedComparisonUses(SDNode *N) {
1805 // Examine each user of the node.
1806 for (SDNode::use_iterator UI = N->use_begin(),
1807 UE = N->use_end(); UI != UE; ++UI) {
1808 // Only examine CopyToReg uses.
1809 if (UI->getOpcode() != ISD::CopyToReg)
1810 return false;
1811 // Only examine CopyToReg uses that copy to EFLAGS.
1812 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1813 X86::EFLAGS)
1814 return false;
1815 // Examine each user of the CopyToReg use.
1816 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1817 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1818 // Only examine the Flag result.
1819 if (FlagUI.getUse().getResNo() != 1) continue;
1820 // Anything unusual: assume conservatively.
1821 if (!FlagUI->isMachineOpcode()) return false;
1822 // Examine the opcode of the user.
1823 switch (FlagUI->getMachineOpcode()) {
1824 // These comparisons don't treat the most significant bit specially.
1825 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1826 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1827 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1828 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001829 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1830 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001831 case X86::CMOVA16rr: case X86::CMOVA16rm:
1832 case X86::CMOVA32rr: case X86::CMOVA32rm:
1833 case X86::CMOVA64rr: case X86::CMOVA64rm:
1834 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1835 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1836 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1837 case X86::CMOVB16rr: case X86::CMOVB16rm:
1838 case X86::CMOVB32rr: case X86::CMOVB32rm:
1839 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001840 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1841 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1842 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001843 case X86::CMOVE16rr: case X86::CMOVE16rm:
1844 case X86::CMOVE32rr: case X86::CMOVE32rm:
1845 case X86::CMOVE64rr: case X86::CMOVE64rm:
1846 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1847 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1848 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1849 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1850 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1851 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1852 case X86::CMOVP16rr: case X86::CMOVP16rm:
1853 case X86::CMOVP32rr: case X86::CMOVP32rm:
1854 case X86::CMOVP64rr: case X86::CMOVP64rm:
1855 continue;
1856 // Anything else: assume conservatively.
1857 default: return false;
1858 }
1859 }
1860 }
1861 return true;
1862}
1863
Joel Jones76d03102012-03-29 05:45:48 +00001864/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1865/// is suitable for doing the {load; increment or decrement; store} to modify
1866/// transformation.
Chad Rosiera20e1e72012-08-01 18:39:17 +00001867static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Chengf0bcecc2012-04-12 19:14:21 +00001868 SDValue StoredVal, SelectionDAG *CurDAG,
1869 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones76d03102012-03-29 05:45:48 +00001870
1871 // is the value stored the result of a DEC or INC?
1872 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1873
Joel Jones76d03102012-03-29 05:45:48 +00001874 // is the stored value result 0 of the load?
1875 if (StoredVal.getResNo() != 0) return false;
1876
1877 // are there other uses of the loaded value than the inc or dec?
1878 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1879
Joel Jones76d03102012-03-29 05:45:48 +00001880 // is the store non-extending and non-indexed?
Evan Chengf0bcecc2012-04-12 19:14:21 +00001881 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones76d03102012-03-29 05:45:48 +00001882 return false;
1883
Evan Chengf0bcecc2012-04-12 19:14:21 +00001884 SDValue Load = StoredVal->getOperand(0);
1885 // Is the stored value a non-extending and non-indexed load?
1886 if (!ISD::isNormalLoad(Load.getNode())) return false;
1887
1888 // Return LoadNode by reference.
1889 LoadNode = cast<LoadSDNode>(Load);
1890 // is the size of the value one that we can handle? (i.e. 64, 32, 16, or 8)
Chad Rosiera20e1e72012-08-01 18:39:17 +00001891 EVT LdVT = LoadNode->getMemoryVT();
1892 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Chengf0bcecc2012-04-12 19:14:21 +00001893 LdVT != MVT::i8)
1894 return false;
1895
1896 // Is store the only read of the loaded value?
1897 if (!Load.hasOneUse())
1898 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001899
Evan Chengf0bcecc2012-04-12 19:14:21 +00001900 // Is the address of the store the same as the load?
1901 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1902 LoadNode->getOffset() != StoreNode->getOffset())
1903 return false;
1904
1905 // Check if the chain is produced by the load or is a TokenFactor with
1906 // the load output chain as an operand. Return InputChain by reference.
1907 SDValue Chain = StoreNode->getChain();
1908
1909 bool ChainCheck = false;
1910 if (Chain == Load.getValue(1)) {
1911 ChainCheck = true;
1912 InputChain = LoadNode->getChain();
1913 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1914 SmallVector<SDValue, 4> ChainOps;
1915 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1916 SDValue Op = Chain.getOperand(i);
1917 if (Op == Load.getValue(1)) {
1918 ChainCheck = true;
1919 continue;
1920 }
Evan Cheng61003662012-05-16 01:54:27 +00001921
1922 // Make sure using Op as part of the chain would not cause a cycle here.
1923 // In theory, we could check whether the chain node is a predecessor of
1924 // the load. But that can be very expensive. Instead visit the uses and
1925 // make sure they all have smaller node id than the load.
1926 int LoadId = LoadNode->getNodeId();
1927 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1928 UE = UI->use_end(); UI != UE; ++UI) {
1929 if (UI.getUse().getResNo() != 0)
1930 continue;
1931 if (UI->getNodeId() > LoadId)
1932 return false;
1933 }
1934
Evan Chengf0bcecc2012-04-12 19:14:21 +00001935 ChainOps.push_back(Op);
1936 }
1937
1938 if (ChainCheck)
1939 // Make a new TokenFactor with all the other input chains except
1940 // for the load.
1941 InputChain = CurDAG->getNode(ISD::TokenFactor, Chain.getDebugLoc(),
1942 MVT::Other, &ChainOps[0], ChainOps.size());
1943 }
1944 if (!ChainCheck)
Joel Jones76d03102012-03-29 05:45:48 +00001945 return false;
1946
1947 return true;
1948}
1949
Benjamin Kramer73478402012-03-29 12:37:26 +00001950/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
1951/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones76d03102012-03-29 05:45:48 +00001952static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
1953 if (Opc == X86ISD::DEC) {
1954 if (LdVT == MVT::i64) return X86::DEC64m;
1955 if (LdVT == MVT::i32) return X86::DEC32m;
1956 if (LdVT == MVT::i16) return X86::DEC16m;
1957 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer73478402012-03-29 12:37:26 +00001958 } else {
1959 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones76d03102012-03-29 05:45:48 +00001960 if (LdVT == MVT::i64) return X86::INC64m;
1961 if (LdVT == MVT::i32) return X86::INC32m;
1962 if (LdVT == MVT::i16) return X86::INC16m;
1963 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones76d03102012-03-29 05:45:48 +00001964 }
Benjamin Kramer73478402012-03-29 12:37:26 +00001965 llvm_unreachable("unrecognized size for LdVT");
Joel Jones76d03102012-03-29 05:45:48 +00001966}
1967
Manman Ren1f7a1b62012-06-26 19:47:59 +00001968/// SelectGather - Customized ISel for GATHER operations.
1969///
1970SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
1971 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
1972 SDValue Chain = Node->getOperand(0);
1973 SDValue VSrc = Node->getOperand(2);
1974 SDValue Base = Node->getOperand(3);
1975 SDValue VIdx = Node->getOperand(4);
1976 SDValue VMask = Node->getOperand(5);
1977 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topper15d39ad2012-07-01 02:17:08 +00001978 if (!Scale)
1979 return 0;
Manman Ren1f7a1b62012-06-26 19:47:59 +00001980
Craig Topper5aba78b2012-07-12 06:52:41 +00001981 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
1982 MVT::Other);
1983
Manman Ren1f7a1b62012-06-26 19:47:59 +00001984 // Memory Operands: Base, Scale, Index, Disp, Segment
1985 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
1986 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
1987 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
1988 Disp, Segment, VMask, Chain};
1989 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
Craig Topper5aba78b2012-07-12 06:52:41 +00001990 VTs, Ops, array_lengthof(Ops));
1991 // Node has 2 outputs: VDst and MVT::Other.
1992 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
1993 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
1994 // of ResNode.
1995 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
1996 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Ren1f7a1b62012-06-26 19:47:59 +00001997 return ResNode;
1998}
1999
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002000SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00002001 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00002002 unsigned Opc, MOpc;
2003 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00002004 DebugLoc dl = Node->getDebugLoc();
Chad Rosiera20e1e72012-08-01 18:39:17 +00002005
Chris Lattner7c306da2010-03-02 06:34:30 +00002006 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00002007
Dan Gohmane8be6c62008-07-17 19:10:17 +00002008 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00002009 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002010 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00002011 }
Evan Cheng38262ca2006-01-11 22:15:18 +00002012
Evan Cheng0114e942006-01-06 20:36:21 +00002013 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00002014 default: break;
Manman Ren1f7a1b62012-06-26 19:47:59 +00002015 case ISD::INTRINSIC_W_CHAIN: {
2016 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2017 switch (IntNo) {
2018 default: break;
2019 case Intrinsic::x86_avx2_gather_d_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002020 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002021 case Intrinsic::x86_avx2_gather_q_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002022 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002023 case Intrinsic::x86_avx2_gather_d_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002024 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002025 case Intrinsic::x86_avx2_gather_q_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002026 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren40307c72012-06-29 00:54:20 +00002027 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren40307c72012-06-29 00:54:20 +00002028 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002029 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren40307c72012-06-29 00:54:20 +00002030 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002031 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren40307c72012-06-29 00:54:20 +00002032 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren40307c72012-06-29 00:54:20 +00002033 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperde6e4842012-07-01 02:05:52 +00002034 case Intrinsic::x86_avx2_gather_q_d_256: {
2035 unsigned Opc;
2036 switch (IntNo) {
Craig Topper51e89c02012-07-01 02:55:34 +00002037 default: llvm_unreachable("Impossible intrinsic");
Craig Topperde6e4842012-07-01 02:05:52 +00002038 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2039 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2040 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2041 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2042 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2043 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2044 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2045 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2046 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2047 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2048 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2049 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2050 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2051 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2052 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2053 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2054 }
Craig Topper15d39ad2012-07-01 02:17:08 +00002055 SDNode *RetVal = SelectGather(Node, Opc);
2056 if (RetVal)
Craig Topper5aba78b2012-07-12 06:52:41 +00002057 // We already called ReplaceUses inside SelectGather.
2058 return NULL;
Craig Topper65b382c2012-07-01 02:18:18 +00002059 break;
Craig Topperde6e4842012-07-01 02:05:52 +00002060 }
Manman Ren1f7a1b62012-06-26 19:47:59 +00002061 }
2062 break;
2063 }
Dan Gohman72677342009-08-02 16:10:52 +00002064 case X86ISD::GlobalBaseReg:
2065 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00002066
Craig Topper51e89c02012-07-01 02:55:34 +00002067
Dan Gohman72677342009-08-02 16:10:52 +00002068 case X86ISD::ATOMOR64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002069 case X86ISD::ATOMXOR64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002070 case X86ISD::ATOMADD64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002071 case X86ISD::ATOMSUB64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002072 case X86ISD::ATOMNAND64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002073 case X86ISD::ATOMAND64_DAG:
Craig Topper51e89c02012-07-01 02:55:34 +00002074 case X86ISD::ATOMSWAP64_DAG: {
2075 unsigned Opc;
2076 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002077 default: llvm_unreachable("Impossible opcode");
Craig Topper51e89c02012-07-01 02:55:34 +00002078 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2079 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2080 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2081 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2082 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2083 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
2084 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2085 }
2086 SDNode *RetVal = SelectAtomic64(Node, Opc);
2087 if (RetVal)
2088 return RetVal;
2089 break;
2090 }
Dale Johannesen48c1bc22008-10-02 18:53:47 +00002091
Dan Gohman72677342009-08-02 16:10:52 +00002092 case ISD::ATOMIC_LOAD_ADD: {
2093 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
2094 if (RetVal)
2095 return RetVal;
2096 break;
2097 }
Eric Christopherc324f722011-05-17 08:10:18 +00002098 case ISD::ATOMIC_LOAD_XOR:
2099 case ISD::ATOMIC_LOAD_AND:
Eric Christopherb38fe4b2011-05-10 23:57:45 +00002100 case ISD::ATOMIC_LOAD_OR: {
Eric Christopherc324f722011-05-17 08:10:18 +00002101 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00002102 if (RetVal)
2103 return RetVal;
2104 break;
2105 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002106 case ISD::AND:
2107 case ISD::OR:
2108 case ISD::XOR: {
2109 // For operations of the form (x << C1) op C2, check if we can use a smaller
2110 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2111 SDValue N0 = Node->getOperand(0);
2112 SDValue N1 = Node->getOperand(1);
2113
2114 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2115 break;
2116
2117 // i8 is unshrinkable, i16 should be promoted to i32.
2118 if (NVT != MVT::i32 && NVT != MVT::i64)
2119 break;
2120
2121 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2122 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2123 if (!Cst || !ShlCst)
2124 break;
2125
2126 int64_t Val = Cst->getSExtValue();
2127 uint64_t ShlVal = ShlCst->getZExtValue();
2128
2129 // Make sure that we don't change the operation by removing bits.
2130 // This only matters for OR and XOR, AND is unaffected.
Richard Smith1144af32012-08-24 23:29:28 +00002131 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2132 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002133 break;
2134
Craig Topper28654222012-08-11 17:44:14 +00002135 unsigned ShlOp, Op;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002136 EVT CstVT = NVT;
2137
2138 // Check the minimum bitwidth for the new constant.
2139 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2140 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2141 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2142 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2143 CstVT = MVT::i8;
2144 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2145 CstVT = MVT::i32;
2146
2147 // Bail if there is no smaller encoding.
2148 if (NVT == CstVT)
2149 break;
2150
2151 switch (NVT.getSimpleVT().SimpleTy) {
2152 default: llvm_unreachable("Unsupported VT!");
2153 case MVT::i32:
2154 assert(CstVT == MVT::i8);
2155 ShlOp = X86::SHL32ri;
2156
2157 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002158 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002159 case ISD::AND: Op = X86::AND32ri8; break;
2160 case ISD::OR: Op = X86::OR32ri8; break;
2161 case ISD::XOR: Op = X86::XOR32ri8; break;
2162 }
2163 break;
2164 case MVT::i64:
2165 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2166 ShlOp = X86::SHL64ri;
2167
2168 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002169 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002170 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2171 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2172 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2173 }
2174 break;
2175 }
2176
2177 // Emit the smaller op and the shift.
2178 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2179 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2180 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2181 getI8Imm(ShlVal));
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002182 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002183 case X86ISD::UMUL: {
2184 SDValue N0 = Node->getOperand(0);
2185 SDValue N1 = Node->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002186
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002187 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002188 switch (NVT.getSimpleVT().SimpleTy) {
2189 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002190 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2191 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2192 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2193 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002194 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002195
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002196 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2197 N0, SDValue()).getValue(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002198
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002199 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2200 SDValue Ops[] = {N1, InFlag};
2201 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002202
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002203 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2204 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2205 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2206 return NULL;
2207 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002208
Dan Gohman72677342009-08-02 16:10:52 +00002209 case ISD::SMUL_LOHI:
2210 case ISD::UMUL_LOHI: {
2211 SDValue N0 = Node->getOperand(0);
2212 SDValue N1 = Node->getOperand(1);
2213
2214 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00002215 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002216 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002217 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002218 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2219 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
2220 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
2221 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002222 }
Bill Wendling12321672009-08-07 21:33:25 +00002223 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002224 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002225 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002226 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2227 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2228 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2229 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002230 }
Bill Wendling12321672009-08-07 21:33:25 +00002231 }
Dan Gohman72677342009-08-02 16:10:52 +00002232
2233 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00002234 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002235 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002236 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
2237 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
2238 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
2239 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00002240 }
2241
2242 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002243 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00002244 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00002245 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002246 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002247 if (foldedLoad)
2248 std::swap(N0, N1);
2249 }
2250
2251 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
Craig Topper88097812012-05-23 05:44:51 +00002252 N0, SDValue()).getValue(1);
Dan Gohman72677342009-08-02 16:10:52 +00002253
2254 if (foldedLoad) {
2255 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2256 InFlag };
2257 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002258 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002259 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002260 InFlag = SDValue(CNode, 1);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002261
Dan Gohman72677342009-08-02 16:10:52 +00002262 // Update the chain.
2263 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2264 } else {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002265 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002266 InFlag = SDValue(CNode, 0);
Dan Gohman72677342009-08-02 16:10:52 +00002267 }
2268
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002269 // Prevent use of AH in a REX instruction by referencing AX instead.
2270 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2271 !SDValue(Node, 1).use_empty()) {
2272 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2273 X86::AX, MVT::i16, InFlag);
2274 InFlag = Result.getValue(2);
2275 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2276 // registers.
2277 if (!SDValue(Node, 0).use_empty())
2278 ReplaceUses(SDValue(Node, 1),
2279 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2280
2281 // Shift AX down 8 bits.
2282 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2283 Result,
2284 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2285 // Then truncate it down to i8.
2286 ReplaceUses(SDValue(Node, 1),
2287 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2288 }
Dan Gohman72677342009-08-02 16:10:52 +00002289 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002290 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002291 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Craig Topper88097812012-05-23 05:44:51 +00002292 LoReg, NVT, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00002293 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002294 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002295 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002296 }
2297 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002298 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002299 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2300 HiReg, NVT, InFlag);
2301 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002302 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002303 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002304 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002305
Dan Gohman72677342009-08-02 16:10:52 +00002306 return NULL;
2307 }
2308
2309 case ISD::SDIVREM:
2310 case ISD::UDIVREM: {
2311 SDValue N0 = Node->getOperand(0);
2312 SDValue N1 = Node->getOperand(1);
2313
2314 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00002315 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002316 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002317 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002318 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2319 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2320 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2321 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002322 }
Bill Wendling12321672009-08-07 21:33:25 +00002323 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002324 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002325 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002326 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2327 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2328 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2329 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002330 }
Bill Wendling12321672009-08-07 21:33:25 +00002331 }
Dan Gohman72677342009-08-02 16:10:52 +00002332
Chris Lattner9e323832009-12-23 01:45:04 +00002333 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00002334 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00002335 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002336 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002337 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00002338 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00002339 ClrOpcode = 0;
2340 SExtOpcode = X86::CBW;
2341 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002342 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00002343 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002344 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00002345 SExtOpcode = X86::CWD;
2346 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002347 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00002348 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00002349 ClrOpcode = X86::MOV32r0;
2350 SExtOpcode = X86::CDQ;
2351 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002352 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00002353 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002354 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00002355 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00002356 break;
2357 }
2358
Dan Gohman72677342009-08-02 16:10:52 +00002359 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002360 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002361 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002362
Dan Gohman72677342009-08-02 16:10:52 +00002363 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002364 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002365 // Special case for div8, just use a move with zero extension to AX to
2366 // clear the upper 8 bits (AH).
2367 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002368 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002369 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2370 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002371 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002372 MVT::Other, Ops,
2373 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002374 Chain = Move.getValue(1);
2375 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002376 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002377 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002378 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002379 Chain = CurDAG->getEntryNode();
2380 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002381 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002382 InFlag = Chain.getValue(1);
2383 } else {
2384 InFlag =
2385 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2386 LoReg, N0, SDValue()).getValue(1);
2387 if (isSigned && !signBitIsZero) {
2388 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002389 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002390 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002391 } else {
2392 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002393 SDValue ClrNode =
2394 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002395 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002396 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002397 }
Evan Cheng948f3432006-01-06 23:19:29 +00002398 }
Dan Gohman525178c2007-10-08 18:33:35 +00002399
Dan Gohman72677342009-08-02 16:10:52 +00002400 if (foldedLoad) {
2401 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2402 InFlag };
2403 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002404 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002405 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002406 InFlag = SDValue(CNode, 1);
2407 // Update the chain.
2408 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2409 } else {
2410 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002411 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002412 }
Evan Cheng948f3432006-01-06 23:19:29 +00002413
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002414 // Prevent use of AH in a REX instruction by referencing AX instead.
2415 // Shift it down 8 bits.
2416 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2417 !SDValue(Node, 1).use_empty()) {
2418 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2419 X86::AX, MVT::i16, InFlag);
2420 InFlag = Result.getValue(2);
2421
2422 // If we also need AL (the quotient), get it by extracting a subreg from
2423 // Result. The fast register allocator does not like multiple CopyFromReg
2424 // nodes using aliasing registers.
2425 if (!SDValue(Node, 0).use_empty())
2426 ReplaceUses(SDValue(Node, 0),
2427 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2428
2429 // Shift AX right by 8 bits instead of using AH.
2430 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2431 Result,
2432 CurDAG->getTargetConstant(8, MVT::i8)),
2433 0);
2434 ReplaceUses(SDValue(Node, 1),
2435 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2436 }
Dan Gohman72677342009-08-02 16:10:52 +00002437 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002438 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002439 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2440 LoReg, NVT, InFlag);
2441 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002442 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002443 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002444 }
2445 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002446 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002447 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2448 HiReg, NVT, InFlag);
2449 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002450 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002451 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002452 }
Dan Gohman72677342009-08-02 16:10:52 +00002453 return NULL;
2454 }
2455
Manman Ren39ad5682012-08-08 00:51:41 +00002456 case X86ISD::CMP:
2457 case X86ISD::SUB: {
2458 // Sometimes a SUB is used to perform comparison.
2459 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2460 // This node is not a CMP.
2461 break;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002462 SDValue N0 = Node->getOperand(0);
2463 SDValue N1 = Node->getOperand(1);
2464
2465 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2466 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002467 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2468 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002469 // Look past the truncate if CMP is the only use of it.
2470 N0 = N0.getOperand(0);
Dan Gohman65fd6562011-11-03 21:49:52 +00002471 if ((N0.getNode()->getOpcode() == ISD::AND ||
2472 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2473 N0.getNode()->hasOneUse() &&
Dan Gohman6a402dc2009-08-19 18:16:17 +00002474 N0.getValueType() != MVT::i8 &&
2475 X86::isZeroNode(N1)) {
2476 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2477 if (!C) break;
2478
2479 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002480 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2481 (!(C->getZExtValue() & 0x80) ||
2482 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002483 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2484 SDValue Reg = N0.getNode()->getOperand(0);
2485
2486 // On x86-32, only the ABCD registers have 8-bit subregisters.
2487 if (!Subtarget->is64Bit()) {
Craig Topperc528e462012-02-22 07:28:11 +00002488 const TargetRegisterClass *TRC;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002489 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2490 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2491 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2492 default: llvm_unreachable("Unsupported TEST operand type!");
2493 }
2494 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002495 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2496 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002497 }
2498
2499 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002500 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002501 MVT::i8, Reg);
2502
2503 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002504 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002505 }
2506
2507 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002508 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2509 (!(C->getZExtValue() & 0x8000) ||
2510 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002511 // Shift the immediate right by 8 bits.
2512 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2513 MVT::i8);
2514 SDValue Reg = N0.getNode()->getOperand(0);
2515
2516 // Put the value in an ABCD register.
Craig Topperc528e462012-02-22 07:28:11 +00002517 const TargetRegisterClass *TRC;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002518 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2519 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2520 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2521 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2522 default: llvm_unreachable("Unsupported TEST operand type!");
2523 }
2524 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002525 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2526 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002527
2528 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002529 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002530 MVT::i8, Reg);
2531
Jakob Stoklund Olesened744822011-10-08 18:28:28 +00002532 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2533 // target GR8_NOREX registers, so make sure the register class is
2534 // forced.
2535 return CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002536 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002537 }
2538
2539 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2540 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002541 N0.getValueType() != MVT::i16 &&
2542 (!(C->getZExtValue() & 0x8000) ||
2543 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002544 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2545 SDValue Reg = N0.getNode()->getOperand(0);
2546
2547 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002548 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002549 MVT::i16, Reg);
2550
2551 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002552 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002553 }
2554
2555 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2556 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002557 N0.getValueType() == MVT::i64 &&
2558 (!(C->getZExtValue() & 0x80000000) ||
2559 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002560 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2561 SDValue Reg = N0.getNode()->getOperand(0);
2562
2563 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002564 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002565 MVT::i32, Reg);
2566
2567 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002568 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002569 }
2570 }
2571 break;
2572 }
Pete Cooper2d496892011-11-15 21:57:53 +00002573 case ISD::STORE: {
Joel Jones76d03102012-03-29 05:45:48 +00002574 // Change a chain of {load; incr or dec; store} of the same value into
2575 // a simple increment or decrement through memory of that value, if the
2576 // uses of the modified value and its address are suitable.
Pete Coopercd75e442011-11-16 19:03:23 +00002577 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosiera20e1e72012-08-01 18:39:17 +00002578 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones76d03102012-03-29 05:45:48 +00002579 // {INC,DEC}X{64,32,16,8}.)
2580 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Coopercd75e442011-11-16 19:03:23 +00002581 // node in the pattern to the result node. probably with a new keyword
2582 // for example, we have this
2583 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2584 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2585 // (implicit EFLAGS)]>;
2586 // but maybe need something like this
2587 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2588 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2589 // (transferrable EFLAGS)]>;
Joel Jones76d03102012-03-29 05:45:48 +00002590
Pete Cooper2d496892011-11-15 21:57:53 +00002591 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper2d496892011-11-15 21:57:53 +00002592 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones76d03102012-03-29 05:45:48 +00002593 unsigned Opc = StoredVal->getOpcode();
Pete Cooper2d496892011-11-15 21:57:53 +00002594
Evan Chengf0bcecc2012-04-12 19:14:21 +00002595 LoadSDNode *LoadNode = 0;
2596 SDValue InputChain;
2597 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2598 LoadNode, InputChain))
2599 break;
Pete Cooper2d496892011-11-15 21:57:53 +00002600
2601 SDValue Base, Scale, Index, Disp, Segment;
2602 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2603 Base, Scale, Index, Disp, Segment))
2604 break;
2605
2606 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2607 MemOp[0] = StoreNode->getMemOperand();
2608 MemOp[1] = LoadNode->getMemOperand();
2609 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosiera20e1e72012-08-01 18:39:17 +00002610 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones76d03102012-03-29 05:45:48 +00002611 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2612 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Pete Cooper2d496892011-11-15 21:57:53 +00002613 Node->getDebugLoc(),
2614 MVT::i32, MVT::Other, Ops,
2615 array_lengthof(Ops));
2616 Result->setMemRefs(MemOp, MemOp + 2);
2617
2618 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2619 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2620
2621 return Result;
2622 }
Craig Topper4feb6472012-08-06 06:22:36 +00002623
2624 // FIXME: Custom handling because TableGen doesn't support multiple implicit
2625 // defs in an instruction pattern
2626 case X86ISD::PCMPESTRI: {
2627 SDValue N0 = Node->getOperand(0);
2628 SDValue N1 = Node->getOperand(1);
2629 SDValue N2 = Node->getOperand(2);
2630 SDValue N3 = Node->getOperand(3);
2631 SDValue N4 = Node->getOperand(4);
2632
2633 // Make sure last argument is a constant
2634 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N4);
2635 if (!Cst)
2636 break;
2637
2638 uint64_t Imm = Cst->getZExtValue();
2639
2640 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2641 X86::EAX, N1, SDValue()).getValue(1);
2642 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, X86::EDX,
2643 N3, InFlag).getValue(1);
2644
2645 SDValue Ops[] = { N0, N2, getI8Imm(Imm), InFlag };
2646 unsigned Opc = Subtarget->hasAVX() ? X86::VPCMPESTRIrr :
2647 X86::PCMPESTRIrr;
2648 InFlag = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Ops,
2649 array_lengthof(Ops)), 0);
2650
2651 if (!SDValue(Node, 0).use_empty()) {
2652 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2653 X86::ECX, NVT, InFlag);
2654 InFlag = Result.getValue(2);
2655 ReplaceUses(SDValue(Node, 0), Result);
2656 }
2657 if (!SDValue(Node, 1).use_empty()) {
2658 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2659 X86::EFLAGS, NVT, InFlag);
2660 InFlag = Result.getValue(2);
2661 ReplaceUses(SDValue(Node, 1), Result);
2662 }
2663
2664 return NULL;
2665 }
2666
2667 // FIXME: Custom handling because TableGen doesn't support multiple implicit
2668 // defs in an instruction pattern
2669 case X86ISD::PCMPISTRI: {
2670 SDValue N0 = Node->getOperand(0);
2671 SDValue N1 = Node->getOperand(1);
2672 SDValue N2 = Node->getOperand(2);
2673
2674 // Make sure last argument is a constant
2675 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N2);
2676 if (!Cst)
2677 break;
2678
2679 uint64_t Imm = Cst->getZExtValue();
2680
2681 SDValue Ops[] = { N0, N1, getI8Imm(Imm) };
2682 unsigned Opc = Subtarget->hasAVX() ? X86::VPCMPISTRIrr :
2683 X86::PCMPISTRIrr;
2684 SDValue InFlag = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, Ops,
2685 array_lengthof(Ops)), 0);
2686
2687 if (!SDValue(Node, 0).use_empty()) {
2688 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2689 X86::ECX, NVT, InFlag);
2690 InFlag = Result.getValue(2);
2691 ReplaceUses(SDValue(Node, 0), Result);
2692 }
2693 if (!SDValue(Node, 1).use_empty()) {
2694 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2695 X86::EFLAGS, NVT, InFlag);
2696 InFlag = Result.getValue(2);
2697 ReplaceUses(SDValue(Node, 1), Result);
2698 }
2699
2700 return NULL;
2701 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002702 }
2703
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002704 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002705
Chris Lattner7c306da2010-03-02 06:34:30 +00002706 DEBUG(dbgs() << "=> ";
2707 if (ResNode == NULL || ResNode == Node)
2708 Node->dump(CurDAG);
2709 else
2710 ResNode->dump(CurDAG);
2711 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002712
2713 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002714}
2715
Chris Lattnerc0bad572006-06-08 18:03:49 +00002716bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002717SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002718 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002719 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002720 switch (ConstraintCode) {
2721 case 'o': // offsetable ??
2722 case 'v': // not offsetable ??
2723 default: return true;
2724 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002725 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002726 return true;
2727 break;
2728 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002729
Evan Cheng04699902006-08-26 01:05:16 +00002730 OutOps.push_back(Op0);
2731 OutOps.push_back(Op1);
2732 OutOps.push_back(Op2);
2733 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002734 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002735 return false;
2736}
2737
Chad Rosiera20e1e72012-08-01 18:39:17 +00002738/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattnerc961eea2005-11-16 01:54:32 +00002739/// X86-specific DAG, ready for instruction scheduling.
2740///
Bill Wendling98a366d2009-04-29 23:29:43 +00002741FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperc89c7442012-03-27 07:21:54 +00002742 CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002743 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002744}