blob: 441267a2a4df0b532fe217b72e404e238f0648fa [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"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000025#include "llvm/Type.h"
Eric Christophere3997d42011-07-01 23:04:38 +000026#include "llvm/CodeGen/FunctionLoweringInfo.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000027#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000028#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000029#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000030#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000031#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000032#include "llvm/CodeGen/SelectionDAGISel.h"
33#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000034#include "llvm/Target/TargetOptions.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"
Evan Chengcdda25d2008-04-25 08:22:20 +000039#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000040#include "llvm/ADT/Statistic.h"
41using namespace llvm;
42
Chris Lattner95b2c7d2006-12-19 22:59:26 +000043STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
44
Chris Lattnerc961eea2005-11-16 01:54:32 +000045//===----------------------------------------------------------------------===//
46// Pattern Matcher Implementation
47//===----------------------------------------------------------------------===//
48
49namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000050 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000051 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000052 /// tree.
53 struct X86ISelAddressMode {
54 enum {
55 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000056 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000057 } BaseType;
58
Dan Gohmanffce6f12010-04-29 23:30:41 +000059 // This is really a union, discriminated by BaseType!
60 SDValue Base_Reg;
61 int Base_FrameIndex;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000062
63 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000064 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000065 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000066 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000067 const GlobalValue *GV;
68 const Constant *CP;
69 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000070 const char *ES;
71 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000072 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000073 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000074
75 X86ISelAddressMode()
Dan Gohmanffce6f12010-04-29 23:30:41 +000076 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000077 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000078 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000079 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000080
81 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000082 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000083 }
Chris Lattner18c59872009-06-27 04:16:01 +000084
85 bool hasBaseOrIndexReg() const {
Dan Gohmanffce6f12010-04-29 23:30:41 +000086 return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattner18c59872009-06-27 04:16:01 +000087 }
88
89 /// isRIPRelative - Return true if this addressing mode is already RIP
90 /// relative.
91 bool isRIPRelative() const {
92 if (BaseType != RegBase) return false;
93 if (RegisterSDNode *RegNode =
Dan Gohmanffce6f12010-04-29 23:30:41 +000094 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattner18c59872009-06-27 04:16:01 +000095 return RegNode->getReg() == X86::RIP;
96 return false;
97 }
98
99 void setBaseReg(SDValue Reg) {
100 BaseType = RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000101 Base_Reg = Reg;
Chris Lattner18c59872009-06-27 04:16:01 +0000102 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000103
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)
108 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
David Greened7f4f242010-01-05 01:29:08 +0000117 dbgs() << "nul";
118 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 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000137 };
138}
139
140namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000141 //===--------------------------------------------------------------------===//
142 /// ISel - X86 specific code to select X86 machine instructions for
143 /// SelectionDAG operations.
144 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000145 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000146 /// X86Lowering - This object fully describes how to lower LLVM code to an
147 /// X86-specific SelectionDAG.
Dan Gohmand858e902010-04-17 15:26:15 +0000148 const X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000149
150 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
151 /// make the right decision when generating code for different targets.
152 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000153
Evan Chengb7a75a52008-09-26 23:41:32 +0000154 /// OptForSize - If true, selector should try to optimize for code size
155 /// instead of performance.
156 bool OptForSize;
157
Chris Lattnerc961eea2005-11-16 01:54:32 +0000158 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000159 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000160 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000161 X86Lowering(*tm.getTargetLowering()),
162 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000163 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000164
165 virtual const char *getPassName() const {
166 return "X86 DAG->DAG Instruction Selection";
167 }
168
Dan Gohman64652652010-04-14 20:17:22 +0000169 virtual void EmitFunctionEntryCode();
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000170
Evan Cheng014bf212010-02-15 19:41:07 +0000171 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
172
Chris Lattner7c306da2010-03-02 06:34:30 +0000173 virtual void PreprocessISelDAG();
174
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000175 inline bool immSext8(SDNode *N) const {
176 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
177 }
178
179 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
180 // sign extended field.
181 inline bool i64immSExt32(SDNode *N) const {
182 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
183 return (int64_t)v == (int32_t)v;
184 }
185
Chris Lattnerc961eea2005-11-16 01:54:32 +0000186// Include the pieces autogenerated from the target description.
187#include "X86GenDAGISel.inc"
188
189 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000190 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000191 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000192 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Eric Christopherc324f722011-05-17 08:10:18 +0000193 SDNode *SelectAtomicLoadArith(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000194
Eli Friedman4977eb52011-07-13 20:44:23 +0000195 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000196 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000197 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000198 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
199 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
200 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000201 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000202 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000203 SDValue &Scale, SDValue &Index, SDValue &Disp,
204 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000205 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000206 SDValue &Scale, SDValue &Index, SDValue &Disp,
207 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000208 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000209 SDValue &Scale, SDValue &Index, SDValue &Disp,
210 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000211 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000212 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000213 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000214 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000215 SDValue &NodeWithChain);
216
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000217 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000218 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000219 SDValue &Index, SDValue &Disp,
220 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000221
Chris Lattnerc0bad572006-06-08 18:03:49 +0000222 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
223 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000224 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000225 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000226 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000227
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000228 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
229
Dan Gohman475871a2008-07-27 21:46:04 +0000230 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
231 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000232 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000233 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000234 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
235 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000236 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000237 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000238 // These are 32-bit even in 64-bit mode since RIP relative offset
239 // is 32-bit.
240 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000241 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
242 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000243 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000244 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000246 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000251 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000252 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
253 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000256
257 if (AM.Segment.getNode())
258 Segment = AM.Segment;
259 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000261 }
262
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000263 /// getI8Imm - Return a target constant with the specified value, of type
264 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000265 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000267 }
268
Chris Lattnerc961eea2005-11-16 01:54:32 +0000269 /// getI32Imm - Return a target constant with the specified value, of type
270 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000271 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000273 }
Evan Chengf597dc72006-02-10 22:24:32 +0000274
Dan Gohman8b746962008-09-23 18:22:58 +0000275 /// getGlobalBaseReg - Return an SDNode that returns the value of
276 /// the global base register. Output instructions required to
277 /// initialize the global base register, if necessary.
278 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000279 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000280
Dan Gohmanc5534622009-06-03 20:20:00 +0000281 /// getTargetMachine - Return a reference to the TargetMachine, casted
282 /// to the target-specific type.
283 const X86TargetMachine &getTargetMachine() {
284 return static_cast<const X86TargetMachine &>(TM);
285 }
286
287 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
288 /// to the target-specific type.
289 const X86InstrInfo *getInstrInfo() {
290 return getTargetMachine().getInstrInfo();
291 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000292 };
293}
294
Evan Chengf4b4c412006-08-08 00:31:00 +0000295
Evan Cheng014bf212010-02-15 19:41:07 +0000296bool
297X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000298 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000299
Evan Cheng014bf212010-02-15 19:41:07 +0000300 if (!N.hasOneUse())
301 return false;
302
303 if (N.getOpcode() != ISD::LOAD)
304 return true;
305
306 // If N is a load, do additional profitability checks.
307 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000308 switch (U->getOpcode()) {
309 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000310 case X86ISD::ADD:
311 case X86ISD::SUB:
312 case X86ISD::AND:
313 case X86ISD::XOR:
314 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000315 case ISD::ADD:
316 case ISD::ADDC:
317 case ISD::ADDE:
318 case ISD::AND:
319 case ISD::OR:
320 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000321 SDValue Op1 = U->getOperand(1);
322
Evan Cheng884c70c2008-11-27 00:49:46 +0000323 // If the other operand is a 8-bit immediate we should fold the immediate
324 // instead. This reduces code size.
325 // e.g.
326 // movl 4(%esp), %eax
327 // addl $4, %eax
328 // vs.
329 // movl $4, %eax
330 // addl 4(%esp), %eax
331 // The former is 2 bytes shorter. In case where the increment is 1, then
332 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000333 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000334 if (Imm->getAPIntValue().isSignedIntN(8))
335 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000336
337 // If the other operand is a TLS address, we should fold it instead.
338 // This produces
339 // movl %gs:0, %eax
340 // leal i@NTPOFF(%eax), %eax
341 // instead of
342 // movl $i@NTPOFF, %eax
343 // addl %gs:0, %eax
344 // if the block also has an access to a second TLS address this will save
345 // a load.
346 // FIXME: This is probably also true for non TLS addresses.
347 if (Op1.getOpcode() == X86ISD::Wrapper) {
348 SDValue Val = Op1.getOperand(0);
349 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
350 return false;
351 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000352 }
353 }
Evan Cheng014bf212010-02-15 19:41:07 +0000354 }
355
356 return true;
357}
358
Evan Chengf48ef032010-03-14 03:48:46 +0000359/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
360/// load's chain operand and move load below the call's chain operand.
361static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
362 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000363 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000364 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000365 if (Chain.getNode() == Load.getNode())
366 Ops.push_back(Load.getOperand(0));
367 else {
368 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000369 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000370 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
371 if (Chain.getOperand(i).getNode() == Load.getNode())
372 Ops.push_back(Load.getOperand(0));
373 else
374 Ops.push_back(Chain.getOperand(i));
375 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000376 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000377 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000378 Ops.clear();
379 Ops.push_back(NewChain);
380 }
Evan Chengf48ef032010-03-14 03:48:46 +0000381 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
382 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000383 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
384 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000385 Load.getOperand(1), Load.getOperand(2));
386 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000387 Ops.push_back(SDValue(Load.getNode(), 1));
388 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000389 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000390 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000391}
392
393/// isCalleeLoad - Return true if call address is a load and it can be
394/// moved below CALLSEQ_START and the chains leading up to the call.
395/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000396/// In the case of a tail call, there isn't a callseq node between the call
397/// chain and the load.
398static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000399 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000400 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000401 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000402 if (!LD ||
403 LD->isVolatile() ||
404 LD->getAddressingMode() != ISD::UNINDEXED ||
405 LD->getExtensionType() != ISD::NON_EXTLOAD)
406 return false;
407
408 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000409 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000410 if (!Chain.hasOneUse())
411 return false;
412 Chain = Chain.getOperand(0);
413 }
Evan Chengf48ef032010-03-14 03:48:46 +0000414
415 if (!Chain.getNumOperands())
416 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000417 if (Chain.getOperand(0).getNode() == Callee.getNode())
418 return true;
419 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000420 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
421 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000422 return true;
423 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000424}
425
Chris Lattnerfb444af2010-03-02 23:12:51 +0000426void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000427 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000428 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
429
Dan Gohmanf350b272008-08-23 02:25:05 +0000430 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
431 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000432 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000433
Evan Chengf48ef032010-03-14 03:48:46 +0000434 if (OptLevel != CodeGenOpt::None &&
435 (N->getOpcode() == X86ISD::CALL ||
436 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000437 /// Also try moving call address load from outside callseq_start to just
438 /// before the call to allow it to be folded.
439 ///
440 /// [Load chain]
441 /// ^
442 /// |
443 /// [Load]
444 /// ^ ^
445 /// | |
446 /// / \--
447 /// / |
448 ///[CALLSEQ_START] |
449 /// ^ |
450 /// | |
451 /// [LOAD/C2Reg] |
452 /// | |
453 /// \ /
454 /// \ /
455 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000456 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000457 SDValue Chain = N->getOperand(0);
458 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000459 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000460 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000461 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000462 ++NumLoadMoved;
463 continue;
464 }
465
466 // Lower fpround and fpextend nodes that target the FP stack to be store and
467 // load to the stack. This is a gross hack. We would like to simply mark
468 // these as being illegal, but when we do that, legalize produces these when
469 // it expands calls, then expands these in the same legalize pass. We would
470 // like dag combine to be able to hack on these between the call expansion
471 // and the node legalization. As such this pass basically does "really
472 // late" legalization of these inline with the X86 isel pass.
473 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000474 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
475 continue;
476
Owen Andersone50ed302009-08-10 22:56:29 +0000477 EVT SrcVT = N->getOperand(0).getValueType();
478 EVT DstVT = N->getValueType(0);
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000479
480 // If any of the sources are vectors, no fp stack involved.
481 if (SrcVT.isVector() || DstVT.isVector())
482 continue;
483
484 // If the source and destination are SSE registers, then this is a legal
485 // conversion that should not be lowered.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000486 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
487 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
488 if (SrcIsSSE && DstIsSSE)
489 continue;
490
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000491 if (!SrcIsSSE && !DstIsSSE) {
492 // If this is an FPStack extension, it is a noop.
493 if (N->getOpcode() == ISD::FP_EXTEND)
494 continue;
495 // If this is a value-preserving FPStack truncation, it is a noop.
496 if (N->getConstantOperandVal(1))
497 continue;
498 }
499
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000500 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
501 // FPStack has extload and truncstore. SSE can fold direct loads into other
502 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000503 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000504 if (N->getOpcode() == ISD::FP_ROUND)
505 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
506 else
507 MemVT = SrcIsSSE ? SrcVT : DstVT;
508
Dan Gohmanf350b272008-08-23 02:25:05 +0000509 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000510 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000511
512 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000513 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000514 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000515 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000516 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000517 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000518 MachinePointerInfo(),
519 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000520
521 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
522 // extload we created. This will cause general havok on the dag because
523 // anything below the conversion could be folded into other existing nodes.
524 // To avoid invalidating 'I', back it up to the convert node.
525 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000526 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000527
528 // Now that we did that, the node is dead. Increment the iterator to the
529 // next node to process, then delete N.
530 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000531 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000532 }
533}
534
Chris Lattnerc961eea2005-11-16 01:54:32 +0000535
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000536/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
537/// the main function.
538void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
539 MachineFrameInfo *MFI) {
540 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000541 if (Subtarget->isTargetCygMing()) {
542 unsigned CallOp =
NAKAMURA Takumi40ccb792011-01-27 03:20:19 +0000543 Subtarget->is64Bit() ? X86::WINCALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000544 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000545 TII->get(CallOp)).addExternalSymbol("__main");
546 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000547}
548
Dan Gohman64652652010-04-14 20:17:22 +0000549void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000550 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000551 if (const Function *Fn = MF->getFunction())
552 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
553 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000554}
555
Eli Friedman2a019462011-07-13 21:29:53 +0000556static bool isDispSafeForFrameIndex(int64_t Val) {
557 // On 64-bit platforms, we can run into an issue where a frame index
558 // includes a displacement that, when added to the explicit displacement,
559 // will overflow the displacement field. Assuming that the frame index
560 // displacement fits into a 31-bit integer (which is only slightly more
561 // aggressive than the current fundamental assumption that it fits into
562 // a 32-bit integer), a 31-bit disp should always be safe.
563 return isInt<31>(Val);
564}
565
Eli Friedman4977eb52011-07-13 20:44:23 +0000566bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
567 X86ISelAddressMode &AM) {
568 int64_t Val = AM.Disp + Offset;
569 CodeModel::Model M = TM.getCodeModel();
Eli Friedman2a019462011-07-13 21:29:53 +0000570 if (Subtarget->is64Bit()) {
571 if (!X86::isOffsetSuitableForCodeModel(Val, M,
572 AM.hasSymbolicDisplacement()))
573 return true;
574 // In addition to the checks required for a register base, check that
575 // we do not try to use an unsafe Disp with a frame index.
576 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
577 !isDispSafeForFrameIndex(Val))
578 return true;
Eli Friedman4977eb52011-07-13 20:44:23 +0000579 }
Eli Friedman2a019462011-07-13 21:29:53 +0000580 AM.Disp = Val;
581 return false;
582
Eli Friedman4977eb52011-07-13 20:44:23 +0000583}
Rafael Espindola094fad32009-04-08 21:14:34 +0000584
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000585bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
586 SDValue Address = N->getOperand(1);
587
588 // load gs:0 -> GS segment register.
589 // load fs:0 -> FS segment register.
590 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000591 // This optimization is valid because the GNU TLS model defines that
592 // gs:0 (or fs:0 on X86-64) contains its own address.
593 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000594 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
595 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
596 Subtarget->isTargetELF())
597 switch (N->getPointerInfo().getAddrSpace()) {
598 case 256:
599 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
600 return false;
601 case 257:
602 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
603 return false;
604 }
605
Rafael Espindola094fad32009-04-08 21:14:34 +0000606 return true;
607}
608
Chris Lattner18c59872009-06-27 04:16:01 +0000609/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
610/// into an addressing mode. These wrap things that will resolve down into a
611/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000612/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000613bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000614 // If the addressing mode already has a symbol as the displacement, we can
615 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000616 if (AM.hasSymbolicDisplacement())
617 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000618
619 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000620 CodeModel::Model M = TM.getCodeModel();
621
Chris Lattner18c59872009-06-27 04:16:01 +0000622 // Handle X86-64 rip-relative addresses. We check this before checking direct
623 // folding because RIP is preferable to non-RIP accesses.
624 if (Subtarget->is64Bit() &&
625 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
626 // they cannot be folded into immediate fields.
627 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000628 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000629 // Base and index reg must be 0 in order to use %rip as base and lowering
630 // must allow RIP.
631 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000632 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000633 X86ISelAddressMode Backup = AM;
Chris Lattner18c59872009-06-27 04:16:01 +0000634 AM.GV = G->getGlobal();
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000635 AM.SymbolFlags = G->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000636 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
637 AM = Backup;
638 return true;
639 }
Chris Lattner18c59872009-06-27 04:16:01 +0000640 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000641 X86ISelAddressMode Backup = AM;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000642 AM.CP = CP->getConstVal();
643 AM.Align = CP->getAlignment();
Chris Lattner0b0deab2009-06-26 05:56:49 +0000644 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000645 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
646 AM = Backup;
647 return true;
648 }
Chris Lattner18c59872009-06-27 04:16:01 +0000649 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
650 AM.ES = S->getSymbol();
651 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000652 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000653 AM.JT = J->getIndex();
654 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000655 } else {
656 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000657 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000658 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000659
Chris Lattner18c59872009-06-27 04:16:01 +0000660 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000661 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000662 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000663 }
664
665 // Handle the case when globals fit in our immediate field: This is true for
666 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
667 // mode, this results in a non-RIP-relative computation.
668 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000669 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000670 TM.getRelocationModel() == Reloc::Static)) {
671 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
672 AM.GV = G->getGlobal();
673 AM.Disp += G->getOffset();
674 AM.SymbolFlags = G->getTargetFlags();
675 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
676 AM.CP = CP->getConstVal();
677 AM.Align = CP->getAlignment();
678 AM.Disp += CP->getOffset();
679 AM.SymbolFlags = CP->getTargetFlags();
680 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
681 AM.ES = S->getSymbol();
682 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000683 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000684 AM.JT = J->getIndex();
685 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000686 } else {
687 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000688 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000689 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000690 return false;
691 }
692
693 return true;
694}
695
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000696/// MatchAddress - Add the specified node to the specified addressing mode,
697/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000698/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000699bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000700 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000701 return true;
702
703 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
704 // a smaller encoding and avoids a scaled-index.
705 if (AM.Scale == 2 &&
706 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000707 AM.Base_Reg.getNode() == 0) {
708 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000709 AM.Scale = 1;
710 }
711
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000712 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
713 // because it has a smaller encoding.
714 // TODO: Which other code models can use this?
715 if (TM.getCodeModel() == CodeModel::Small &&
716 Subtarget->is64Bit() &&
717 AM.Scale == 1 &&
718 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000719 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000720 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000721 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000722 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000723 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000724
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000725 return false;
726}
727
Chandler Carruthd65a9102012-01-11 11:04:36 +0000728// Insert a node into the DAG at least before the Pos node's position. This
729// will reposition the node as needed, and will assign it a node ID that is <=
730// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
731// IDs! The selection DAG must no longer depend on their uniqueness when this
732// is used.
733static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
734 if (N.getNode()->getNodeId() == -1 ||
735 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
736 DAG.RepositionNode(Pos.getNode(), N.getNode());
737 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
738 }
739}
740
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000741// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
742// allows us to convert the shift and and into an h-register extract and
743// a scaled index. Returns false if the simplification is performed.
744static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
745 uint64_t Mask,
746 SDValue Shift, SDValue X,
747 X86ISelAddressMode &AM) {
748 if (Shift.getOpcode() != ISD::SRL ||
749 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
750 !Shift.hasOneUse())
751 return true;
752
753 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
754 if (ScaleLog <= 0 || ScaleLog >= 4 ||
755 Mask != (0xffu << ScaleLog))
756 return true;
757
758 EVT VT = N.getValueType();
759 DebugLoc DL = N.getDebugLoc();
760 SDValue Eight = DAG.getConstant(8, MVT::i8);
761 SDValue NewMask = DAG.getConstant(0xff, VT);
762 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
763 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
764 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
765 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
766
767 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +0000768 InsertDAGNode(DAG, X, Eight);
769 InsertDAGNode(DAG, X, NewMask);
770 InsertDAGNode(DAG, Shift, Srl);
771 InsertDAGNode(DAG, N, And);
772 InsertDAGNode(DAG, X, ShlCount);
773 InsertDAGNode(DAG, N, Shl);
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000774 DAG.ReplaceAllUsesWith(N, Shl);
775 AM.IndexReg = And;
776 AM.Scale = (1 << ScaleLog);
777 return false;
778}
779
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000780// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
781// allows us to fold the shift into this addressing mode. Returns false if the
782// transform succeeded.
783static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
784 uint64_t Mask,
785 SDValue Shift, SDValue X,
786 X86ISelAddressMode &AM) {
787 if (Shift.getOpcode() != ISD::SHL ||
788 !isa<ConstantSDNode>(Shift.getOperand(1)))
789 return true;
790
791 // Not likely to be profitable if either the AND or SHIFT node has more
792 // than one use (unless all uses are for address computation). Besides,
793 // isel mechanism requires their node ids to be reused.
794 if (!N.hasOneUse() || !Shift.hasOneUse())
795 return true;
796
797 // Verify that the shift amount is something we can fold.
798 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
799 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
800 return true;
801
802 EVT VT = N.getValueType();
803 DebugLoc DL = N.getDebugLoc();
804 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
805 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
806 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
807
808 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +0000809 InsertDAGNode(DAG, X, NewMask);
810 InsertDAGNode(DAG, Shift, NewAnd);
811 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000812 DAG.ReplaceAllUsesWith(N, NewShift);
813
814 AM.Scale = 1 << ShiftAmt;
815 AM.IndexReg = NewAnd;
816 return false;
817}
818
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000819// Implement some heroics to detect shifts of masked values where the mask can
820// be replaced by extending the shift and undoing that in the addressing mode
821// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
822// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
823// the addressing mode. This results in code such as:
824//
825// int f(short *y, int *lookup_table) {
826// ...
827// return *y + lookup_table[*y >> 11];
828// }
829//
830// Turning into:
831// movzwl (%rdi), %eax
832// movl %eax, %ecx
833// shrl $11, %ecx
834// addl (%rsi,%rcx,4), %eax
835//
836// Instead of:
837// movzwl (%rdi), %eax
838// movl %eax, %ecx
839// shrl $9, %ecx
840// andl $124, %rcx
841// addl (%rsi,%rcx), %eax
842//
Chandler Carruthdddcd782012-01-11 09:35:02 +0000843// Note that this function assumes the mask is provided as a mask *after* the
844// value is shifted. The input chain may or may not match that, but computing
845// such a mask is trivial.
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000846static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruthdddcd782012-01-11 09:35:02 +0000847 uint64_t Mask,
848 SDValue Shift, SDValue X,
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000849 X86ISelAddressMode &AM) {
Chandler Carruthdddcd782012-01-11 09:35:02 +0000850 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
851 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000852 return true;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000853
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000854 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
855 unsigned MaskLZ = CountLeadingZeros_64(Mask);
856 unsigned MaskTZ = CountTrailingZeros_64(Mask);
857
858 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruthdddcd782012-01-11 09:35:02 +0000859 // from the trailing zeros of the mask.
860 unsigned AMShiftAmt = MaskTZ;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000861
862 // There is nothing we can do here unless the mask is removing some bits.
863 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
864 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
865
866 // We also need to ensure that mask is a continuous run of bits.
867 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
868
869 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruthdddcd782012-01-11 09:35:02 +0000870 // Also scale it down based on the size of the shift.
871 MaskLZ -= (64 - X.getValueSizeInBits()) + ShiftAmt;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000872
873 // The final check is to ensure that any masked out high bits of X are
874 // already known to be zero. Otherwise, the mask has a semantic impact
875 // other than masking out a couple of low bits. Unfortunately, because of
876 // the mask, zero extensions will be removed from operands in some cases.
877 // This code works extra hard to look through extensions because we can
878 // replace them with zero extensions cheaply if necessary.
879 bool ReplacingAnyExtend = false;
880 if (X.getOpcode() == ISD::ANY_EXTEND) {
881 unsigned ExtendBits =
882 X.getValueSizeInBits() - X.getOperand(0).getValueSizeInBits();
883 // Assume that we'll replace the any-extend with a zero-extend, and
884 // narrow the search to the extended value.
885 X = X.getOperand(0);
886 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
887 ReplacingAnyExtend = true;
888 }
889 APInt MaskedHighBits = APInt::getHighBitsSet(X.getValueSizeInBits(),
890 MaskLZ);
891 APInt KnownZero, KnownOne;
892 DAG.ComputeMaskedBits(X, MaskedHighBits, KnownZero, KnownOne);
893 if (MaskedHighBits != KnownZero) return true;
894
895 // We've identified a pattern that can be transformed into a single shift
896 // and an addressing mode. Make it so.
897 EVT VT = N.getValueType();
898 if (ReplacingAnyExtend) {
899 assert(X.getValueType() != VT);
900 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
901 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, X.getDebugLoc(), VT, X);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000902 InsertDAGNode(DAG, N, NewX);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000903 X = NewX;
904 }
905 DebugLoc DL = N.getDebugLoc();
906 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
907 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
908 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
909 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000910 InsertDAGNode(DAG, N, NewSRLAmt);
911 InsertDAGNode(DAG, N, NewSRL);
912 InsertDAGNode(DAG, N, NewSHLAmt);
913 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000914 DAG.ReplaceAllUsesWith(N, NewSHL);
915
916 AM.Scale = 1 << AMShiftAmt;
917 AM.IndexReg = NewSRL;
918 return false;
919}
920
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000921bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
922 unsigned Depth) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000923 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000924 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000925 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000926 AM.dump();
927 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000928 // Limit recursion.
929 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000930 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000931
Chris Lattner18c59872009-06-27 04:16:01 +0000932 // If this is already a %rip relative address, we can only merge immediates
933 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000934 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000935 if (AM.isRIPRelative()) {
936 // FIXME: JumpTable and ExternalSymbol address currently don't like
937 // displacements. It isn't very important, but this should be fixed for
938 // consistency.
939 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000940
Eli Friedman4977eb52011-07-13 20:44:23 +0000941 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
942 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000943 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000944 return true;
945 }
946
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000947 switch (N.getOpcode()) {
948 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000949 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000950 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedman4977eb52011-07-13 20:44:23 +0000951 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000952 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000953 break;
954 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000955
Rafael Espindola49a168d2009-04-12 21:55:03 +0000956 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000957 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000958 if (!MatchWrapper(N, AM))
959 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000960 break;
961
Rafael Espindola094fad32009-04-08 21:14:34 +0000962 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000963 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000964 return false;
965 break;
966
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000967 case ISD::FrameIndex:
Eli Friedman2a019462011-07-13 21:29:53 +0000968 if (AM.BaseType == X86ISelAddressMode::RegBase &&
969 AM.Base_Reg.getNode() == 0 &&
970 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000971 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000972 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000973 return false;
974 }
975 break;
Evan Chengec693f72005-12-08 02:01:35 +0000976
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000977 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000978 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000979 break;
980
Gabor Greif93c53e52008-08-31 15:37:04 +0000981 if (ConstantSDNode
982 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000983 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000984 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
985 // that the base operand remains free for further matching. If
986 // the base doesn't end up getting used, a post-processing step
987 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000988 if (Val == 1 || Val == 2 || Val == 3) {
989 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000990 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000991
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000992 // Okay, we know that we have a scale by now. However, if the scaled
993 // value is an add of something and a constant, we can fold the
994 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000995 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000996 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000997 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000998 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +0000999 uint64_t Disp = AddVal->getSExtValue() << Val;
1000 if (!FoldOffsetIntoAddress(Disp, AM))
1001 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001002 }
Eli Friedman4977eb52011-07-13 20:44:23 +00001003
1004 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001005 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001006 }
1007 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001008 }
Evan Chengec693f72005-12-08 02:01:35 +00001009
Chandler Carruthdddcd782012-01-11 09:35:02 +00001010 case ISD::SRL: {
1011 // Scale must not be used already.
1012 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1013
1014 SDValue And = N.getOperand(0);
1015 if (And.getOpcode() != ISD::AND) break;
1016 SDValue X = And.getOperand(0);
1017
1018 // We only handle up to 64-bit values here as those are what matter for
1019 // addressing mode optimizations.
1020 if (X.getValueSizeInBits() > 64) break;
1021
1022 // The mask used for the transform is expected to be post-shift, but we
1023 // found the shift first so just apply the shift to the mask before passing
1024 // it down.
1025 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1026 !isa<ConstantSDNode>(And.getOperand(1)))
1027 break;
1028 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1029
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001030 // Try to fold the mask and shift into the scale, and return false if we
1031 // succeed.
Chandler Carruthdddcd782012-01-11 09:35:02 +00001032 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001033 return false;
1034 break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001035 }
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001036
Dan Gohman83688052007-10-22 20:22:24 +00001037 case ISD::SMUL_LOHI:
1038 case ISD::UMUL_LOHI:
1039 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001040 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +00001041 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001042 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +00001043 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001044 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001045 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001046 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +00001047 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +00001048 if (ConstantSDNode
1049 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001050 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1051 CN->getZExtValue() == 9) {
1052 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001053
Gabor Greifba36cb52008-08-28 21:40:38 +00001054 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001055 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001056
1057 // Okay, we know that we have a scale by now. However, if the scaled
1058 // value is an add of something and a constant, we can fold the
1059 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001060 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1061 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1062 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001063 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001064 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +00001065 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1066 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greifba36cb52008-08-28 21:40:38 +00001067 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001068 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001069 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001070 }
1071
Dan Gohmanffce6f12010-04-29 23:30:41 +00001072 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001073 return false;
1074 }
Chris Lattner62412262007-02-04 20:18:17 +00001075 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001076 break;
1077
Dan Gohman3cd90a12009-05-11 18:02:53 +00001078 case ISD::SUB: {
1079 // Given A-B, if A can be completely folded into the address and
1080 // the index field with the index field unused, use -B as the index.
1081 // This is a win if a has multiple parts that can be folded into
1082 // the address. Also, this saves a mov if the base register has
1083 // other uses, since it avoids a two-address sub instruction, however
1084 // it costs an additional mov if the index register has other uses.
1085
Dan Gohmane5408102010-06-18 01:24:29 +00001086 // Add an artificial use to this node so that we can keep track of
1087 // it if it gets CSE'd with a different node.
1088 HandleSDNode Handle(N);
1089
Dan Gohman3cd90a12009-05-11 18:02:53 +00001090 // Test if the LHS of the sub can be folded.
1091 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +00001092 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001093 AM = Backup;
1094 break;
1095 }
1096 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001097 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001098 AM = Backup;
1099 break;
1100 }
Evan Chengf3caa522010-03-17 23:58:35 +00001101
Dan Gohman3cd90a12009-05-11 18:02:53 +00001102 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +00001103 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001104 // If the RHS involves a register with multiple uses, this
1105 // transformation incurs an extra mov, due to the neg instruction
1106 // clobbering its operand.
1107 if (!RHS.getNode()->hasOneUse() ||
1108 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1109 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1110 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1111 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001112 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001113 ++Cost;
1114 // If the base is a register with multiple uses, this
1115 // transformation may save a mov.
1116 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001117 AM.Base_Reg.getNode() &&
1118 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +00001119 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1120 --Cost;
1121 // If the folded LHS was interesting, this transformation saves
1122 // address arithmetic.
1123 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1124 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1125 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1126 --Cost;
1127 // If it doesn't look like it may be an overall win, don't do it.
1128 if (Cost >= 0) {
1129 AM = Backup;
1130 break;
1131 }
1132
1133 // Ok, the transformation is legal and appears profitable. Go for it.
1134 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1135 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1136 AM.IndexReg = Neg;
1137 AM.Scale = 1;
1138
1139 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +00001140 InsertDAGNode(*CurDAG, N, Zero);
1141 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001142 return false;
1143 }
1144
Evan Cheng8e278262009-01-17 07:09:27 +00001145 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +00001146 // Add an artificial use to this node so that we can keep track of
1147 // it if it gets CSE'd with a different node.
1148 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +00001149
Evan Cheng8e278262009-01-17 07:09:27 +00001150 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001151 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1152 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001153 return false;
1154 AM = Backup;
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001155
Evan Chengf3caa522010-03-17 23:58:35 +00001156 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001157 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1158 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001159 return false;
Evan Cheng8e278262009-01-17 07:09:27 +00001160 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001161
1162 // If we couldn't fold both operands into the address at the same time,
1163 // see if we can just put each operand into a register and fold at least
1164 // the add.
1165 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001166 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001167 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001168 N = Handle.getValue();
1169 AM.Base_Reg = N.getOperand(0);
1170 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +00001171 AM.Scale = 1;
1172 return false;
1173 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001174 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001175 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001176 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001177
Chris Lattner62412262007-02-04 20:18:17 +00001178 case ISD::OR:
1179 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001180 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001181 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +00001182 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Chengf3caa522010-03-17 23:58:35 +00001183
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001184 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +00001185 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedman4977eb52011-07-13 20:44:23 +00001186 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001187 return false;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001188 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001189 }
1190 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001191
1192 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001193 // Perform some heroic transforms on an and of a constant-count shift
1194 // with a constant to enable use of the scaled offset field.
1195
Evan Cheng1314b002007-12-13 00:43:27 +00001196 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001197 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001198
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001199 SDValue Shift = N.getOperand(0);
1200 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001201 SDValue X = Shift.getOperand(0);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001202
1203 // We only handle up to 64-bit values here as those are what matter for
1204 // addressing mode optimizations.
1205 if (X.getValueSizeInBits() > 64) break;
1206
Chandler Carruth93b73582012-01-11 09:35:04 +00001207 if (!isa<ConstantSDNode>(N.getOperand(1)))
1208 break;
1209 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng1314b002007-12-13 00:43:27 +00001210
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001211 // Try to fold the mask and shift into an extract and scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001212 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001213 return false;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001214
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001215 // Try to fold the mask and shift directly into the scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001216 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001217 return false;
1218
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001219 // Try to swap the mask and shift to place shifts which can be done as
1220 // a scale on the outside of the mask.
Chandler Carruth93b73582012-01-11 09:35:04 +00001221 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001222 return false;
1223 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001224 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001225 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001226
Rafael Espindola523249f2009-03-31 16:16:57 +00001227 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001228}
1229
1230/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1231/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001232bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001233 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001234 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001235 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001236 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001237 AM.IndexReg = N;
1238 AM.Scale = 1;
1239 return false;
1240 }
1241
1242 // Otherwise, we cannot select it.
1243 return true;
1244 }
1245
1246 // Default, generate it as a register.
1247 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001248 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001249 return false;
1250}
1251
Evan Chengec693f72005-12-08 02:01:35 +00001252/// SelectAddr - returns true if it is able pattern match an addressing mode.
1253/// It returns the operands which make up the maximal addressing mode it can
1254/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001255///
1256/// Parent is the parent node of the addr operand that is being matched. It
1257/// is always a load, store, atomic node, or null. It is only null when
1258/// checking memory operands for inline asm nodes.
1259bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001260 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001261 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001262 X86ISelAddressMode AM;
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001263
1264 if (Parent &&
1265 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1266 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001267 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001268 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1269 Parent->getOpcode() != X86ISD::TLSCALL) { // Fixme
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001270 unsigned AddrSpace =
1271 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1272 // AddrSpace 256 -> GS, 257 -> FS.
1273 if (AddrSpace == 256)
1274 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1275 if (AddrSpace == 257)
1276 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1277 }
1278
Evan Chengc7928f82009-12-18 01:59:21 +00001279 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001280 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001281
Owen Andersone50ed302009-08-10 22:56:29 +00001282 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001283 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001284 if (!AM.Base_Reg.getNode())
1285 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001286 }
Evan Cheng8700e142006-01-11 06:09:51 +00001287
Gabor Greifba36cb52008-08-28 21:40:38 +00001288 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001289 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001290
Rafael Espindola094fad32009-04-08 21:14:34 +00001291 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001292 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001293}
1294
Chris Lattner3a7cd952006-10-07 21:55:32 +00001295/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1296/// match a load whose top elements are either undef or zeros. The load flavor
1297/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001298///
1299/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001300/// PatternChainNode: this is the matched node that has a chain input and
1301/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001302bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001303 SDValue N, SDValue &Base,
1304 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001305 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001306 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001307 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001308 PatternNodeWithChain = N.getOperand(0);
1309 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1310 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001311 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001312 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001313 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001314 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001315 return false;
1316 return true;
1317 }
1318 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001319
1320 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001321 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001322 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001323 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001324 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001325 N.getOperand(0).getNode()->hasOneUse() &&
1326 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001327 N.getOperand(0).getOperand(0).hasOneUse() &&
1328 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001329 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001330 // Okay, this is a zero extending load. Fold it.
1331 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001332 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001333 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001334 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001335 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001336 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001337 return false;
1338}
1339
1340
Evan Cheng51a9ed92006-02-25 10:09:08 +00001341/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1342/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001343bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001344 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001345 SDValue &Index, SDValue &Disp,
1346 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001347 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001348
1349 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1350 // segments.
1351 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001352 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001353 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001354 if (MatchAddress(N, AM))
1355 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001356 assert (T == AM.Segment);
1357 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001358
Owen Andersone50ed302009-08-10 22:56:29 +00001359 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001360 unsigned Complexity = 0;
1361 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001362 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001363 Complexity = 1;
1364 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001365 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001366 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1367 Complexity = 4;
1368
Gabor Greifba36cb52008-08-28 21:40:38 +00001369 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001370 Complexity++;
1371 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001372 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001373
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001374 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1375 // a simple shift.
1376 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001377 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001378
1379 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1380 // to a LEA. This is determined with some expermentation but is by no means
1381 // optimal (especially for code size consideration). LEA is nice because of
1382 // its three-address nature. Tweak the cost function again when we can run
1383 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001384 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001385 // For X86-64, we should always use lea to materialize RIP relative
1386 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001387 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001388 Complexity = 4;
1389 else
1390 Complexity += 2;
1391 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001392
Dan Gohmanffce6f12010-04-29 23:30:41 +00001393 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001394 Complexity++;
1395
Chris Lattner25142782009-07-11 22:50:33 +00001396 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001397 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001398 return false;
1399
Chris Lattner25142782009-07-11 22:50:33 +00001400 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1401 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001402}
1403
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001404/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001405bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001406 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001407 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001408 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1409 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001410
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001411 X86ISelAddressMode AM;
1412 AM.GV = GA->getGlobal();
1413 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001414 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001415 AM.SymbolFlags = GA->getTargetFlags();
1416
Owen Anderson825b72b2009-08-11 20:47:22 +00001417 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001418 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001419 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001420 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001421 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001422 }
1423
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001424 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1425 return true;
1426}
1427
1428
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001429bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001430 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001431 SDValue &Index, SDValue &Disp,
1432 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001433 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1434 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001435 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001436 return false;
1437
Chris Lattnerb86faa12010-09-21 22:07:31 +00001438 return SelectAddr(N.getNode(),
1439 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001440}
1441
Dan Gohman8b746962008-09-23 18:22:58 +00001442/// getGlobalBaseReg - Return an SDNode that returns the value of
1443/// the global base register. Output instructions required to
1444/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001445///
Evan Cheng9ade2182006-08-26 05:34:46 +00001446SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001447 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001448 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001449}
1450
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001451SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1452 SDValue Chain = Node->getOperand(0);
1453 SDValue In1 = Node->getOperand(1);
1454 SDValue In2L = Node->getOperand(2);
1455 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001456 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001457 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001458 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001459 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1460 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1461 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1462 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1463 MVT::i32, MVT::i32, MVT::Other, Ops,
1464 array_lengthof(Ops));
1465 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1466 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001467}
Christopher Lambc59e5212007-08-10 21:48:46 +00001468
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001469// FIXME: Figure out some way to unify this with the 'or' and other code
1470// below.
Owen Andersone50ed302009-08-10 22:56:29 +00001471SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001472 if (Node->hasAnyUseOfValue(0))
1473 return 0;
1474
1475 // Optimize common patterns for __sync_add_and_fetch and
1476 // __sync_sub_and_fetch where the result is not used. This allows us
1477 // to use "lock" version of add, sub, inc, dec instructions.
1478 // FIXME: Do not use special instructions but instead add the "lock"
1479 // prefix to the target node somehow. The extra information will then be
1480 // transferred to machine instruction and it denotes the prefix.
1481 SDValue Chain = Node->getOperand(0);
1482 SDValue Ptr = Node->getOperand(1);
1483 SDValue Val = Node->getOperand(2);
1484 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001485 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001486 return 0;
1487
1488 bool isInc = false, isDec = false, isSub = false, isCN = false;
1489 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001490 if (CN && CN->getSExtValue() == (int32_t)CN->getSExtValue()) {
Evan Cheng37b73872009-07-30 08:33:02 +00001491 isCN = true;
1492 int64_t CNVal = CN->getSExtValue();
1493 if (CNVal == 1)
1494 isInc = true;
1495 else if (CNVal == -1)
1496 isDec = true;
1497 else if (CNVal >= 0)
1498 Val = CurDAG->getTargetConstant(CNVal, NVT);
1499 else {
1500 isSub = true;
1501 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1502 }
1503 } else if (Val.hasOneUse() &&
1504 Val.getOpcode() == ISD::SUB &&
1505 X86::isZeroNode(Val.getOperand(0))) {
1506 isSub = true;
1507 Val = Val.getOperand(1);
1508 }
1509
Eric Christophere3997d42011-07-01 23:04:38 +00001510 DebugLoc dl = Node->getDebugLoc();
Evan Cheng37b73872009-07-30 08:33:02 +00001511 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001512 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001513 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001514 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001515 if (isInc)
1516 Opc = X86::LOCK_INC8m;
1517 else if (isDec)
1518 Opc = X86::LOCK_DEC8m;
1519 else if (isSub) {
1520 if (isCN)
1521 Opc = X86::LOCK_SUB8mi;
1522 else
1523 Opc = X86::LOCK_SUB8mr;
1524 } else {
1525 if (isCN)
1526 Opc = X86::LOCK_ADD8mi;
1527 else
1528 Opc = X86::LOCK_ADD8mr;
1529 }
1530 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001531 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001532 if (isInc)
1533 Opc = X86::LOCK_INC16m;
1534 else if (isDec)
1535 Opc = X86::LOCK_DEC16m;
1536 else if (isSub) {
1537 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001538 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001539 Opc = X86::LOCK_SUB16mi8;
1540 else
1541 Opc = X86::LOCK_SUB16mi;
1542 } else
1543 Opc = X86::LOCK_SUB16mr;
1544 } else {
1545 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001546 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001547 Opc = X86::LOCK_ADD16mi8;
1548 else
1549 Opc = X86::LOCK_ADD16mi;
1550 } else
1551 Opc = X86::LOCK_ADD16mr;
1552 }
1553 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001554 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001555 if (isInc)
1556 Opc = X86::LOCK_INC32m;
1557 else if (isDec)
1558 Opc = X86::LOCK_DEC32m;
1559 else if (isSub) {
1560 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001561 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001562 Opc = X86::LOCK_SUB32mi8;
1563 else
1564 Opc = X86::LOCK_SUB32mi;
1565 } else
1566 Opc = X86::LOCK_SUB32mr;
1567 } else {
1568 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001569 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001570 Opc = X86::LOCK_ADD32mi8;
1571 else
1572 Opc = X86::LOCK_ADD32mi;
1573 } else
1574 Opc = X86::LOCK_ADD32mr;
1575 }
1576 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001577 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001578 if (isInc)
1579 Opc = X86::LOCK_INC64m;
1580 else if (isDec)
1581 Opc = X86::LOCK_DEC64m;
1582 else if (isSub) {
1583 Opc = X86::LOCK_SUB64mr;
1584 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001585 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001586 Opc = X86::LOCK_SUB64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001587 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001588 Opc = X86::LOCK_SUB64mi32;
1589 }
1590 } else {
1591 Opc = X86::LOCK_ADD64mr;
1592 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001593 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001594 Opc = X86::LOCK_ADD64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001595 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001596 Opc = X86::LOCK_ADD64mi32;
1597 }
1598 }
1599 break;
1600 }
1601
Chris Lattner518bb532010-02-09 19:54:29 +00001602 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001603 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001604 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1605 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001606 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001607 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1608 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1609 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001610 SDValue RetVals[] = { Undef, Ret };
1611 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1612 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001613 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1614 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1615 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001616 SDValue RetVals[] = { Undef, Ret };
1617 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1618 }
1619}
1620
Eric Christopher8102bf02011-05-17 07:47:55 +00001621enum AtomicOpc {
Eric Christopher811c2b72011-05-17 07:50:41 +00001622 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001623 AND,
1624 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001625 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001626};
1627
1628enum AtomicSz {
1629 ConstantI8,
1630 I8,
1631 SextConstantI16,
1632 ConstantI16,
1633 I16,
1634 SextConstantI32,
1635 ConstantI32,
1636 I32,
1637 SextConstantI64,
1638 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001639 I64,
1640 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001641};
1642
Eric Christopher811c2b72011-05-17 07:50:41 +00001643static const unsigned int AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001644 {
1645 X86::LOCK_OR8mi,
1646 X86::LOCK_OR8mr,
1647 X86::LOCK_OR16mi8,
1648 X86::LOCK_OR16mi,
1649 X86::LOCK_OR16mr,
1650 X86::LOCK_OR32mi8,
1651 X86::LOCK_OR32mi,
1652 X86::LOCK_OR32mr,
1653 X86::LOCK_OR64mi8,
1654 X86::LOCK_OR64mi32,
1655 X86::LOCK_OR64mr
Eric Christopherc324f722011-05-17 08:10:18 +00001656 },
1657 {
1658 X86::LOCK_AND8mi,
1659 X86::LOCK_AND8mr,
1660 X86::LOCK_AND16mi8,
1661 X86::LOCK_AND16mi,
1662 X86::LOCK_AND16mr,
1663 X86::LOCK_AND32mi8,
1664 X86::LOCK_AND32mi,
1665 X86::LOCK_AND32mr,
1666 X86::LOCK_AND64mi8,
1667 X86::LOCK_AND64mi32,
1668 X86::LOCK_AND64mr
1669 },
1670 {
1671 X86::LOCK_XOR8mi,
1672 X86::LOCK_XOR8mr,
1673 X86::LOCK_XOR16mi8,
1674 X86::LOCK_XOR16mi,
1675 X86::LOCK_XOR16mr,
1676 X86::LOCK_XOR32mi8,
1677 X86::LOCK_XOR32mi,
1678 X86::LOCK_XOR32mr,
1679 X86::LOCK_XOR64mi8,
1680 X86::LOCK_XOR64mi32,
1681 X86::LOCK_XOR64mr
Eric Christopherc493a1f2011-05-11 21:44:58 +00001682 }
1683};
1684
Eric Christopherc324f722011-05-17 08:10:18 +00001685SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001686 if (Node->hasAnyUseOfValue(0))
1687 return 0;
1688
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001689 // Optimize common patterns for __sync_or_and_fetch and similar arith
1690 // operations where the result is not used. This allows us to use the "lock"
1691 // version of the arithmetic instruction.
1692 // FIXME: Same as for 'add' and 'sub', try to merge those down here.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001693 SDValue Chain = Node->getOperand(0);
1694 SDValue Ptr = Node->getOperand(1);
1695 SDValue Val = Node->getOperand(2);
1696 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1697 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1698 return 0;
1699
Eric Christopherc324f722011-05-17 08:10:18 +00001700 // Which index into the table.
1701 enum AtomicOpc Op;
1702 switch (Node->getOpcode()) {
1703 case ISD::ATOMIC_LOAD_OR:
1704 Op = OR;
1705 break;
1706 case ISD::ATOMIC_LOAD_AND:
1707 Op = AND;
1708 break;
1709 case ISD::ATOMIC_LOAD_XOR:
1710 Op = XOR;
1711 break;
1712 default:
1713 return 0;
1714 }
1715
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001716 bool isCN = false;
1717 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001718 if (CN && (int32_t)CN->getSExtValue() == CN->getSExtValue()) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001719 isCN = true;
1720 Val = CurDAG->getTargetConstant(CN->getSExtValue(), NVT);
1721 }
1722
1723 unsigned Opc = 0;
1724 switch (NVT.getSimpleVT().SimpleTy) {
1725 default: return 0;
1726 case MVT::i8:
1727 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001728 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001729 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001730 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001731 break;
1732 case MVT::i16:
1733 if (isCN) {
1734 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001735 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001736 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001737 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001738 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001739 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001740 break;
1741 case MVT::i32:
1742 if (isCN) {
1743 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001744 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001745 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001746 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001747 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001748 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001749 break;
1750 case MVT::i64:
Eric Christopher5d8aa342011-06-30 00:48:30 +00001751 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001752 if (isCN) {
1753 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001754 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001755 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001756 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopher5d8aa342011-06-30 00:48:30 +00001757 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001758 break;
1759 }
1760
Eric Christopher5d8aa342011-06-30 00:48:30 +00001761 assert(Opc != 0 && "Invalid arith lock transform!");
1762
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001763 DebugLoc dl = Node->getDebugLoc();
1764 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1765 dl, NVT), 0);
1766 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1767 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1768 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1769 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1770 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1771 SDValue RetVals[] = { Undef, Ret };
1772 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1773}
1774
Dan Gohman11596ed2009-10-09 20:35:19 +00001775/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1776/// any uses which require the SF or OF bits to be accurate.
1777static bool HasNoSignedComparisonUses(SDNode *N) {
1778 // Examine each user of the node.
1779 for (SDNode::use_iterator UI = N->use_begin(),
1780 UE = N->use_end(); UI != UE; ++UI) {
1781 // Only examine CopyToReg uses.
1782 if (UI->getOpcode() != ISD::CopyToReg)
1783 return false;
1784 // Only examine CopyToReg uses that copy to EFLAGS.
1785 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1786 X86::EFLAGS)
1787 return false;
1788 // Examine each user of the CopyToReg use.
1789 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1790 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1791 // Only examine the Flag result.
1792 if (FlagUI.getUse().getResNo() != 1) continue;
1793 // Anything unusual: assume conservatively.
1794 if (!FlagUI->isMachineOpcode()) return false;
1795 // Examine the opcode of the user.
1796 switch (FlagUI->getMachineOpcode()) {
1797 // These comparisons don't treat the most significant bit specially.
1798 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1799 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1800 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1801 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001802 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1803 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001804 case X86::CMOVA16rr: case X86::CMOVA16rm:
1805 case X86::CMOVA32rr: case X86::CMOVA32rm:
1806 case X86::CMOVA64rr: case X86::CMOVA64rm:
1807 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1808 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1809 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1810 case X86::CMOVB16rr: case X86::CMOVB16rm:
1811 case X86::CMOVB32rr: case X86::CMOVB32rm:
1812 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001813 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1814 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1815 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001816 case X86::CMOVE16rr: case X86::CMOVE16rm:
1817 case X86::CMOVE32rr: case X86::CMOVE32rm:
1818 case X86::CMOVE64rr: case X86::CMOVE64rm:
1819 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1820 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1821 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1822 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1823 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1824 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1825 case X86::CMOVP16rr: case X86::CMOVP16rm:
1826 case X86::CMOVP32rr: case X86::CMOVP32rm:
1827 case X86::CMOVP64rr: case X86::CMOVP64rm:
1828 continue;
1829 // Anything else: assume conservatively.
1830 default: return false;
1831 }
1832 }
1833 }
1834 return true;
1835}
1836
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001837SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001838 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001839 unsigned Opc, MOpc;
1840 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001841 DebugLoc dl = Node->getDebugLoc();
1842
Chris Lattner7c306da2010-03-02 06:34:30 +00001843 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001844
Dan Gohmane8be6c62008-07-17 19:10:17 +00001845 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001846 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001847 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001848 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001849
Evan Cheng0114e942006-01-06 20:36:21 +00001850 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001851 default: break;
1852 case X86ISD::GlobalBaseReg:
1853 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001854
Dan Gohman72677342009-08-02 16:10:52 +00001855 case X86ISD::ATOMOR64_DAG:
1856 return SelectAtomic64(Node, X86::ATOMOR6432);
1857 case X86ISD::ATOMXOR64_DAG:
1858 return SelectAtomic64(Node, X86::ATOMXOR6432);
1859 case X86ISD::ATOMADD64_DAG:
1860 return SelectAtomic64(Node, X86::ATOMADD6432);
1861 case X86ISD::ATOMSUB64_DAG:
1862 return SelectAtomic64(Node, X86::ATOMSUB6432);
1863 case X86ISD::ATOMNAND64_DAG:
1864 return SelectAtomic64(Node, X86::ATOMNAND6432);
1865 case X86ISD::ATOMAND64_DAG:
1866 return SelectAtomic64(Node, X86::ATOMAND6432);
1867 case X86ISD::ATOMSWAP64_DAG:
1868 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001869
Dan Gohman72677342009-08-02 16:10:52 +00001870 case ISD::ATOMIC_LOAD_ADD: {
1871 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1872 if (RetVal)
1873 return RetVal;
1874 break;
1875 }
Eric Christopherc324f722011-05-17 08:10:18 +00001876 case ISD::ATOMIC_LOAD_XOR:
1877 case ISD::ATOMIC_LOAD_AND:
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001878 case ISD::ATOMIC_LOAD_OR: {
Eric Christopherc324f722011-05-17 08:10:18 +00001879 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001880 if (RetVal)
1881 return RetVal;
1882 break;
1883 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001884 case ISD::AND:
1885 case ISD::OR:
1886 case ISD::XOR: {
1887 // For operations of the form (x << C1) op C2, check if we can use a smaller
1888 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
1889 SDValue N0 = Node->getOperand(0);
1890 SDValue N1 = Node->getOperand(1);
1891
1892 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
1893 break;
1894
1895 // i8 is unshrinkable, i16 should be promoted to i32.
1896 if (NVT != MVT::i32 && NVT != MVT::i64)
1897 break;
1898
1899 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
1900 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
1901 if (!Cst || !ShlCst)
1902 break;
1903
1904 int64_t Val = Cst->getSExtValue();
1905 uint64_t ShlVal = ShlCst->getZExtValue();
1906
1907 // Make sure that we don't change the operation by removing bits.
1908 // This only matters for OR and XOR, AND is unaffected.
1909 if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
1910 break;
1911
Benjamin Kramer20115612011-04-23 08:21:06 +00001912 unsigned ShlOp, Op = 0;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001913 EVT CstVT = NVT;
1914
1915 // Check the minimum bitwidth for the new constant.
1916 // TODO: AND32ri is the same as AND64ri32 with zext imm.
1917 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
1918 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
1919 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
1920 CstVT = MVT::i8;
1921 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
1922 CstVT = MVT::i32;
1923
1924 // Bail if there is no smaller encoding.
1925 if (NVT == CstVT)
1926 break;
1927
1928 switch (NVT.getSimpleVT().SimpleTy) {
1929 default: llvm_unreachable("Unsupported VT!");
1930 case MVT::i32:
1931 assert(CstVT == MVT::i8);
1932 ShlOp = X86::SHL32ri;
1933
1934 switch (Opcode) {
1935 case ISD::AND: Op = X86::AND32ri8; break;
1936 case ISD::OR: Op = X86::OR32ri8; break;
1937 case ISD::XOR: Op = X86::XOR32ri8; break;
1938 }
1939 break;
1940 case MVT::i64:
1941 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
1942 ShlOp = X86::SHL64ri;
1943
1944 switch (Opcode) {
1945 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
1946 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
1947 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
1948 }
1949 break;
1950 }
1951
1952 // Emit the smaller op and the shift.
1953 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
1954 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
1955 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
1956 getI8Imm(ShlVal));
1957 break;
1958 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001959 case X86ISD::UMUL: {
1960 SDValue N0 = Node->getOperand(0);
1961 SDValue N1 = Node->getOperand(1);
1962
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001963 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001964 switch (NVT.getSimpleVT().SimpleTy) {
1965 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001966 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
1967 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
1968 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
1969 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001970 }
1971
1972 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1973 N0, SDValue()).getValue(1);
1974
1975 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
1976 SDValue Ops[] = {N1, InFlag};
1977 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
1978
1979 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
1980 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
1981 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
1982 return NULL;
1983 }
1984
Dan Gohman72677342009-08-02 16:10:52 +00001985 case ISD::SMUL_LOHI:
1986 case ISD::UMUL_LOHI: {
1987 SDValue N0 = Node->getOperand(0);
1988 SDValue N1 = Node->getOperand(1);
1989
1990 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001991 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001992 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001993 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001994 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1995 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1996 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1997 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001998 }
Bill Wendling12321672009-08-07 21:33:25 +00001999 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002000 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002001 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2003 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2004 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2005 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002006 }
Bill Wendling12321672009-08-07 21:33:25 +00002007 }
Dan Gohman72677342009-08-02 16:10:52 +00002008
2009 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00002010 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002011 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002012 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
2013 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
2014 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
2015 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00002016 }
2017
2018 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002019 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00002020 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00002021 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002022 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002023 if (foldedLoad)
2024 std::swap(N0, N1);
2025 }
2026
2027 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2028 N0, SDValue()).getValue(1);
2029
2030 if (foldedLoad) {
2031 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2032 InFlag };
2033 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002034 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002035 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002036 InFlag = SDValue(CNode, 1);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002037
Dan Gohman72677342009-08-02 16:10:52 +00002038 // Update the chain.
2039 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2040 } else {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002041 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002042 InFlag = SDValue(CNode, 0);
Dan Gohman72677342009-08-02 16:10:52 +00002043 }
2044
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002045 // Prevent use of AH in a REX instruction by referencing AX instead.
2046 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2047 !SDValue(Node, 1).use_empty()) {
2048 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2049 X86::AX, MVT::i16, InFlag);
2050 InFlag = Result.getValue(2);
2051 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2052 // registers.
2053 if (!SDValue(Node, 0).use_empty())
2054 ReplaceUses(SDValue(Node, 1),
2055 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2056
2057 // Shift AX down 8 bits.
2058 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2059 Result,
2060 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2061 // Then truncate it down to i8.
2062 ReplaceUses(SDValue(Node, 1),
2063 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2064 }
Dan Gohman72677342009-08-02 16:10:52 +00002065 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002066 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002067 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2068 LoReg, NVT, InFlag);
2069 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002070 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002071 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002072 }
2073 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002074 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002075 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2076 HiReg, NVT, InFlag);
2077 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002078 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002079 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002080 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002081
Dan Gohman72677342009-08-02 16:10:52 +00002082 return NULL;
2083 }
2084
2085 case ISD::SDIVREM:
2086 case ISD::UDIVREM: {
2087 SDValue N0 = Node->getOperand(0);
2088 SDValue N1 = Node->getOperand(1);
2089
2090 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00002091 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002092 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002093 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002094 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2095 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2096 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2097 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002098 }
Bill Wendling12321672009-08-07 21:33:25 +00002099 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002100 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002101 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002102 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2103 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2104 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2105 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002106 }
Bill Wendling12321672009-08-07 21:33:25 +00002107 }
Dan Gohman72677342009-08-02 16:10:52 +00002108
Chris Lattner9e323832009-12-23 01:45:04 +00002109 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00002110 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00002111 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002112 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002113 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00002114 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00002115 ClrOpcode = 0;
2116 SExtOpcode = X86::CBW;
2117 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002118 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00002119 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002120 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00002121 SExtOpcode = X86::CWD;
2122 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002123 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00002124 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00002125 ClrOpcode = X86::MOV32r0;
2126 SExtOpcode = X86::CDQ;
2127 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002128 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00002129 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002130 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00002131 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00002132 break;
2133 }
2134
Dan Gohman72677342009-08-02 16:10:52 +00002135 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002136 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002137 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002138
Dan Gohman72677342009-08-02 16:10:52 +00002139 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002140 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002141 // Special case for div8, just use a move with zero extension to AX to
2142 // clear the upper 8 bits (AH).
2143 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002144 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002145 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2146 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002147 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002148 MVT::Other, Ops,
2149 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002150 Chain = Move.getValue(1);
2151 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002152 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002153 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002154 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002155 Chain = CurDAG->getEntryNode();
2156 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002157 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002158 InFlag = Chain.getValue(1);
2159 } else {
2160 InFlag =
2161 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2162 LoReg, N0, SDValue()).getValue(1);
2163 if (isSigned && !signBitIsZero) {
2164 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002165 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002166 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002167 } else {
2168 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002169 SDValue ClrNode =
2170 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002171 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002172 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002173 }
Evan Cheng948f3432006-01-06 23:19:29 +00002174 }
Dan Gohman525178c2007-10-08 18:33:35 +00002175
Dan Gohman72677342009-08-02 16:10:52 +00002176 if (foldedLoad) {
2177 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2178 InFlag };
2179 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002180 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002181 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002182 InFlag = SDValue(CNode, 1);
2183 // Update the chain.
2184 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2185 } else {
2186 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002187 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002188 }
Evan Cheng948f3432006-01-06 23:19:29 +00002189
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002190 // Prevent use of AH in a REX instruction by referencing AX instead.
2191 // Shift it down 8 bits.
2192 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2193 !SDValue(Node, 1).use_empty()) {
2194 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2195 X86::AX, MVT::i16, InFlag);
2196 InFlag = Result.getValue(2);
2197
2198 // If we also need AL (the quotient), get it by extracting a subreg from
2199 // Result. The fast register allocator does not like multiple CopyFromReg
2200 // nodes using aliasing registers.
2201 if (!SDValue(Node, 0).use_empty())
2202 ReplaceUses(SDValue(Node, 0),
2203 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2204
2205 // Shift AX right by 8 bits instead of using AH.
2206 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2207 Result,
2208 CurDAG->getTargetConstant(8, MVT::i8)),
2209 0);
2210 ReplaceUses(SDValue(Node, 1),
2211 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2212 }
Dan Gohman72677342009-08-02 16:10:52 +00002213 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002214 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002215 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2216 LoReg, NVT, InFlag);
2217 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002218 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002219 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002220 }
2221 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002222 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002223 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2224 HiReg, NVT, InFlag);
2225 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002226 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002227 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002228 }
Dan Gohman72677342009-08-02 16:10:52 +00002229 return NULL;
2230 }
2231
Dan Gohman6a402dc2009-08-19 18:16:17 +00002232 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002233 SDValue N0 = Node->getOperand(0);
2234 SDValue N1 = Node->getOperand(1);
2235
2236 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2237 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002238 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2239 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002240 // Look past the truncate if CMP is the only use of it.
2241 N0 = N0.getOperand(0);
Dan Gohman65fd6562011-11-03 21:49:52 +00002242 if ((N0.getNode()->getOpcode() == ISD::AND ||
2243 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2244 N0.getNode()->hasOneUse() &&
Dan Gohman6a402dc2009-08-19 18:16:17 +00002245 N0.getValueType() != MVT::i8 &&
2246 X86::isZeroNode(N1)) {
2247 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2248 if (!C) break;
2249
2250 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002251 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2252 (!(C->getZExtValue() & 0x80) ||
2253 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002254 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2255 SDValue Reg = N0.getNode()->getOperand(0);
2256
2257 // On x86-32, only the ABCD registers have 8-bit subregisters.
2258 if (!Subtarget->is64Bit()) {
2259 TargetRegisterClass *TRC = 0;
2260 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2261 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2262 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2263 default: llvm_unreachable("Unsupported TEST operand type!");
2264 }
2265 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002266 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2267 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002268 }
2269
2270 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002271 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002272 MVT::i8, Reg);
2273
2274 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002275 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002276 }
2277
2278 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002279 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2280 (!(C->getZExtValue() & 0x8000) ||
2281 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002282 // Shift the immediate right by 8 bits.
2283 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2284 MVT::i8);
2285 SDValue Reg = N0.getNode()->getOperand(0);
2286
2287 // Put the value in an ABCD register.
2288 TargetRegisterClass *TRC = 0;
2289 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2290 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2291 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2292 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2293 default: llvm_unreachable("Unsupported TEST operand type!");
2294 }
2295 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002296 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2297 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002298
2299 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002300 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002301 MVT::i8, Reg);
2302
Jakob Stoklund Olesened744822011-10-08 18:28:28 +00002303 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2304 // target GR8_NOREX registers, so make sure the register class is
2305 // forced.
2306 return CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002307 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002308 }
2309
2310 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2311 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002312 N0.getValueType() != MVT::i16 &&
2313 (!(C->getZExtValue() & 0x8000) ||
2314 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002315 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2316 SDValue Reg = N0.getNode()->getOperand(0);
2317
2318 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002319 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002320 MVT::i16, Reg);
2321
2322 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002323 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002324 }
2325
2326 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2327 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002328 N0.getValueType() == MVT::i64 &&
2329 (!(C->getZExtValue() & 0x80000000) ||
2330 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002331 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2332 SDValue Reg = N0.getNode()->getOperand(0);
2333
2334 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002335 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002336 MVT::i32, Reg);
2337
2338 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002339 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002340 }
2341 }
2342 break;
2343 }
Pete Cooper2d496892011-11-15 21:57:53 +00002344 case ISD::STORE: {
Pete Coopercd75e442011-11-16 19:03:23 +00002345 // The DEC64m tablegen pattern is currently not able to match the case where
2346 // the EFLAGS on the original DEC are used.
2347 // we'll need to improve tablegen to allow flags to be transferred from a
2348 // node in the pattern to the result node. probably with a new keyword
2349 // for example, we have this
2350 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2351 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2352 // (implicit EFLAGS)]>;
2353 // but maybe need something like this
2354 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2355 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2356 // (transferrable EFLAGS)]>;
Pete Cooper2d496892011-11-15 21:57:53 +00002357 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
2358 SDValue Chain = StoreNode->getOperand(0);
2359 SDValue StoredVal = StoreNode->getOperand(1);
2360 SDValue Address = StoreNode->getOperand(2);
2361 SDValue Undef = StoreNode->getOperand(3);
2362
2363 if (StoreNode->getMemOperand()->getSize() != 8 ||
2364 Undef->getOpcode() != ISD::UNDEF ||
2365 Chain->getOpcode() != ISD::LOAD ||
2366 StoredVal->getOpcode() != X86ISD::DEC ||
2367 StoredVal.getResNo() != 0 ||
2368 StoredVal->getOperand(0).getNode() != Chain.getNode())
2369 break;
2370
2371 //OPC_CheckPredicate, 1, // Predicate_nontemporalstore
2372 if (StoreNode->isNonTemporal())
2373 break;
2374
2375 LoadSDNode *LoadNode = cast<LoadSDNode>(Chain.getNode());
2376 if (LoadNode->getOperand(1) != Address ||
2377 LoadNode->getOperand(2) != Undef)
2378 break;
2379
2380 if (!ISD::isNormalLoad(LoadNode))
2381 break;
2382
2383 if (!ISD::isNormalStore(StoreNode))
2384 break;
2385
2386 // check load chain has only one use (from the store)
2387 if (!Chain.hasOneUse())
2388 break;
2389
2390 // Merge the input chains if they are not intra-pattern references.
2391 SDValue InputChain = LoadNode->getOperand(0);
2392
2393 SDValue Base, Scale, Index, Disp, Segment;
2394 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2395 Base, Scale, Index, Disp, Segment))
2396 break;
2397
2398 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2399 MemOp[0] = StoreNode->getMemOperand();
2400 MemOp[1] = LoadNode->getMemOperand();
2401 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
2402 MachineSDNode *Result = CurDAG->getMachineNode(X86::DEC64m,
2403 Node->getDebugLoc(),
2404 MVT::i32, MVT::Other, Ops,
2405 array_lengthof(Ops));
2406 Result->setMemRefs(MemOp, MemOp + 2);
2407
2408 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2409 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2410
2411 return Result;
2412 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002413 }
2414
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002415 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002416
Chris Lattner7c306da2010-03-02 06:34:30 +00002417 DEBUG(dbgs() << "=> ";
2418 if (ResNode == NULL || ResNode == Node)
2419 Node->dump(CurDAG);
2420 else
2421 ResNode->dump(CurDAG);
2422 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002423
2424 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002425}
2426
Chris Lattnerc0bad572006-06-08 18:03:49 +00002427bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002428SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002429 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002430 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002431 switch (ConstraintCode) {
2432 case 'o': // offsetable ??
2433 case 'v': // not offsetable ??
2434 default: return true;
2435 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002436 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002437 return true;
2438 break;
2439 }
2440
Evan Cheng04699902006-08-26 01:05:16 +00002441 OutOps.push_back(Op0);
2442 OutOps.push_back(Op1);
2443 OutOps.push_back(Op2);
2444 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002445 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002446 return false;
2447}
2448
Chris Lattnerc961eea2005-11-16 01:54:32 +00002449/// createX86ISelDag - This pass converts a legalized DAG into a
2450/// X86-specific DAG, ready for instruction scheduling.
2451///
Bill Wendling98a366d2009-04-29 23:29:43 +00002452FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2453 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002454 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002455}