blob: b617e976314f859540b315740918ac496ee219a0 [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
477 // If the source and destination are SSE registers, then this is a legal
478 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000479 EVT SrcVT = N->getOperand(0).getValueType();
480 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000481 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
482 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
483 if (SrcIsSSE && DstIsSSE)
484 continue;
485
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000486 if (!SrcIsSSE && !DstIsSSE) {
487 // If this is an FPStack extension, it is a noop.
488 if (N->getOpcode() == ISD::FP_EXTEND)
489 continue;
490 // If this is a value-preserving FPStack truncation, it is a noop.
491 if (N->getConstantOperandVal(1))
492 continue;
493 }
494
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000495 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
496 // FPStack has extload and truncstore. SSE can fold direct loads into other
497 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000498 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000499 if (N->getOpcode() == ISD::FP_ROUND)
500 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
501 else
502 MemVT = SrcIsSSE ? SrcVT : DstVT;
503
Dan Gohmanf350b272008-08-23 02:25:05 +0000504 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000505 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000506
507 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000508 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000509 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000510 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000511 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000512 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000513 MachinePointerInfo(),
514 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000515
516 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
517 // extload we created. This will cause general havok on the dag because
518 // anything below the conversion could be folded into other existing nodes.
519 // To avoid invalidating 'I', back it up to the convert node.
520 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000521 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000522
523 // Now that we did that, the node is dead. Increment the iterator to the
524 // next node to process, then delete N.
525 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000526 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000527 }
528}
529
Chris Lattnerc961eea2005-11-16 01:54:32 +0000530
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000531/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
532/// the main function.
533void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
534 MachineFrameInfo *MFI) {
535 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000536 if (Subtarget->isTargetCygMing()) {
537 unsigned CallOp =
NAKAMURA Takumi40ccb792011-01-27 03:20:19 +0000538 Subtarget->is64Bit() ? X86::WINCALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000539 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000540 TII->get(CallOp)).addExternalSymbol("__main");
541 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000542}
543
Dan Gohman64652652010-04-14 20:17:22 +0000544void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000545 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000546 if (const Function *Fn = MF->getFunction())
547 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
548 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000549}
550
Eli Friedman4977eb52011-07-13 20:44:23 +0000551bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
552 X86ISelAddressMode &AM) {
553 int64_t Val = AM.Disp + Offset;
554 CodeModel::Model M = TM.getCodeModel();
555 if (!Subtarget->is64Bit() ||
556 X86::isOffsetSuitableForCodeModel(Val, M,
557 AM.hasSymbolicDisplacement())) {
558 AM.Disp = Val;
559 return false;
560 }
561 return true;
562}
Rafael Espindola094fad32009-04-08 21:14:34 +0000563
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000564bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
565 SDValue Address = N->getOperand(1);
566
567 // load gs:0 -> GS segment register.
568 // load fs:0 -> FS segment register.
569 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000570 // This optimization is valid because the GNU TLS model defines that
571 // gs:0 (or fs:0 on X86-64) contains its own address.
572 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000573 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
574 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
575 Subtarget->isTargetELF())
576 switch (N->getPointerInfo().getAddrSpace()) {
577 case 256:
578 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
579 return false;
580 case 257:
581 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
582 return false;
583 }
584
Rafael Espindola094fad32009-04-08 21:14:34 +0000585 return true;
586}
587
Chris Lattner18c59872009-06-27 04:16:01 +0000588/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
589/// into an addressing mode. These wrap things that will resolve down into a
590/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000591/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000592bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000593 // If the addressing mode already has a symbol as the displacement, we can
594 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000595 if (AM.hasSymbolicDisplacement())
596 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000597
598 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000599 CodeModel::Model M = TM.getCodeModel();
600
Chris Lattner18c59872009-06-27 04:16:01 +0000601 // Handle X86-64 rip-relative addresses. We check this before checking direct
602 // folding because RIP is preferable to non-RIP accesses.
603 if (Subtarget->is64Bit() &&
604 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
605 // they cannot be folded into immediate fields.
606 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000607 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000608 // Base and index reg must be 0 in order to use %rip as base and lowering
609 // must allow RIP.
610 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000611 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000612 X86ISelAddressMode Backup = AM;
Chris Lattner18c59872009-06-27 04:16:01 +0000613 AM.GV = G->getGlobal();
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000614 AM.SymbolFlags = G->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000615 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
616 AM = Backup;
617 return true;
618 }
Chris Lattner18c59872009-06-27 04:16:01 +0000619 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000620 X86ISelAddressMode Backup = AM;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000621 AM.CP = CP->getConstVal();
622 AM.Align = CP->getAlignment();
Chris Lattner0b0deab2009-06-26 05:56:49 +0000623 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000624 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
625 AM = Backup;
626 return true;
627 }
Chris Lattner18c59872009-06-27 04:16:01 +0000628 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
629 AM.ES = S->getSymbol();
630 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000631 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000632 AM.JT = J->getIndex();
633 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000634 } else {
635 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000636 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000637 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000638
Chris Lattner18c59872009-06-27 04:16:01 +0000639 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000640 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000641 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000642 }
643
644 // Handle the case when globals fit in our immediate field: This is true for
645 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
646 // mode, this results in a non-RIP-relative computation.
647 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000648 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000649 TM.getRelocationModel() == Reloc::Static)) {
650 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
651 AM.GV = G->getGlobal();
652 AM.Disp += G->getOffset();
653 AM.SymbolFlags = G->getTargetFlags();
654 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
655 AM.CP = CP->getConstVal();
656 AM.Align = CP->getAlignment();
657 AM.Disp += CP->getOffset();
658 AM.SymbolFlags = CP->getTargetFlags();
659 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
660 AM.ES = S->getSymbol();
661 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000662 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000663 AM.JT = J->getIndex();
664 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000665 } else {
666 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000667 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000668 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000669 return false;
670 }
671
672 return true;
673}
674
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000675/// MatchAddress - Add the specified node to the specified addressing mode,
676/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000677/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000678bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000679 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000680 return true;
681
682 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
683 // a smaller encoding and avoids a scaled-index.
684 if (AM.Scale == 2 &&
685 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000686 AM.Base_Reg.getNode() == 0) {
687 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000688 AM.Scale = 1;
689 }
690
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000691 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
692 // because it has a smaller encoding.
693 // TODO: Which other code models can use this?
694 if (TM.getCodeModel() == CodeModel::Small &&
695 Subtarget->is64Bit() &&
696 AM.Scale == 1 &&
697 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000698 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000699 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000700 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000701 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000702 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000703
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000704 return false;
705}
706
707bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
708 unsigned Depth) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000709 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000710 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000711 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000712 AM.dump();
713 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000714 // Limit recursion.
715 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000716 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000717
Chris Lattner18c59872009-06-27 04:16:01 +0000718 // If this is already a %rip relative address, we can only merge immediates
719 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000720 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000721 if (AM.isRIPRelative()) {
722 // FIXME: JumpTable and ExternalSymbol address currently don't like
723 // displacements. It isn't very important, but this should be fixed for
724 // consistency.
725 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000726
Eli Friedman4977eb52011-07-13 20:44:23 +0000727 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
728 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000729 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000730 return true;
731 }
732
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000733 switch (N.getOpcode()) {
734 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000735 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000736 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedman4977eb52011-07-13 20:44:23 +0000737 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000738 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000739 break;
740 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000741
Rafael Espindola49a168d2009-04-12 21:55:03 +0000742 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000743 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000744 if (!MatchWrapper(N, AM))
745 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000746 break;
747
Rafael Espindola094fad32009-04-08 21:14:34 +0000748 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000749 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000750 return false;
751 break;
752
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000753 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000754 if (AM.BaseType == X86ISelAddressMode::RegBase
Dan Gohmanffce6f12010-04-29 23:30:41 +0000755 && AM.Base_Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000756 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000757 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000758 return false;
759 }
760 break;
Evan Chengec693f72005-12-08 02:01:35 +0000761
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000762 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000763 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000764 break;
765
Gabor Greif93c53e52008-08-31 15:37:04 +0000766 if (ConstantSDNode
767 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000768 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000769 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
770 // that the base operand remains free for further matching. If
771 // the base doesn't end up getting used, a post-processing step
772 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000773 if (Val == 1 || Val == 2 || Val == 3) {
774 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000775 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000776
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000777 // Okay, we know that we have a scale by now. However, if the scaled
778 // value is an add of something and a constant, we can fold the
779 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000780 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000781 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000782 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000783 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +0000784 uint64_t Disp = AddVal->getSExtValue() << Val;
785 if (!FoldOffsetIntoAddress(Disp, AM))
786 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000787 }
Eli Friedman4977eb52011-07-13 20:44:23 +0000788
789 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000790 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000791 }
792 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000793 }
Evan Chengec693f72005-12-08 02:01:35 +0000794
Dan Gohman83688052007-10-22 20:22:24 +0000795 case ISD::SMUL_LOHI:
796 case ISD::UMUL_LOHI:
797 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000798 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000799 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000800 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000801 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000802 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000803 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000804 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000805 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000806 if (ConstantSDNode
807 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000808 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
809 CN->getZExtValue() == 9) {
810 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000811
Gabor Greifba36cb52008-08-28 21:40:38 +0000812 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000813 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000814
815 // Okay, we know that we have a scale by now. However, if the scaled
816 // value is an add of something and a constant, we can fold the
817 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000818 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
819 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
820 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000821 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000822 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +0000823 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
824 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greifba36cb52008-08-28 21:40:38 +0000825 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000826 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000827 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000828 }
829
Dan Gohmanffce6f12010-04-29 23:30:41 +0000830 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000831 return false;
832 }
Chris Lattner62412262007-02-04 20:18:17 +0000833 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000834 break;
835
Dan Gohman3cd90a12009-05-11 18:02:53 +0000836 case ISD::SUB: {
837 // Given A-B, if A can be completely folded into the address and
838 // the index field with the index field unused, use -B as the index.
839 // This is a win if a has multiple parts that can be folded into
840 // the address. Also, this saves a mov if the base register has
841 // other uses, since it avoids a two-address sub instruction, however
842 // it costs an additional mov if the index register has other uses.
843
Dan Gohmane5408102010-06-18 01:24:29 +0000844 // Add an artificial use to this node so that we can keep track of
845 // it if it gets CSE'd with a different node.
846 HandleSDNode Handle(N);
847
Dan Gohman3cd90a12009-05-11 18:02:53 +0000848 // Test if the LHS of the sub can be folded.
849 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000850 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000851 AM = Backup;
852 break;
853 }
854 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000855 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000856 AM = Backup;
857 break;
858 }
Evan Chengf3caa522010-03-17 23:58:35 +0000859
Dan Gohman3cd90a12009-05-11 18:02:53 +0000860 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +0000861 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +0000862 // If the RHS involves a register with multiple uses, this
863 // transformation incurs an extra mov, due to the neg instruction
864 // clobbering its operand.
865 if (!RHS.getNode()->hasOneUse() ||
866 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
867 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
868 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
869 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000870 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000871 ++Cost;
872 // If the base is a register with multiple uses, this
873 // transformation may save a mov.
874 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000875 AM.Base_Reg.getNode() &&
876 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +0000877 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
878 --Cost;
879 // If the folded LHS was interesting, this transformation saves
880 // address arithmetic.
881 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
882 ((AM.Disp != 0) && (Backup.Disp == 0)) +
883 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
884 --Cost;
885 // If it doesn't look like it may be an overall win, don't do it.
886 if (Cost >= 0) {
887 AM = Backup;
888 break;
889 }
890
891 // Ok, the transformation is legal and appears profitable. Go for it.
892 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
893 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
894 AM.IndexReg = Neg;
895 AM.Scale = 1;
896
897 // Insert the new nodes into the topological ordering.
898 if (Zero.getNode()->getNodeId() == -1 ||
899 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
900 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
901 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
902 }
903 if (Neg.getNode()->getNodeId() == -1 ||
904 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
905 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
906 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
907 }
908 return false;
909 }
910
Evan Cheng8e278262009-01-17 07:09:27 +0000911 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +0000912 // Add an artificial use to this node so that we can keep track of
913 // it if it gets CSE'd with a different node.
914 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +0000915
Evan Cheng8e278262009-01-17 07:09:27 +0000916 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000917 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
918 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000919 return false;
920 AM = Backup;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000921
Evan Chengf3caa522010-03-17 23:58:35 +0000922 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000923 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
924 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000925 return false;
Evan Cheng8e278262009-01-17 07:09:27 +0000926 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +0000927
928 // If we couldn't fold both operands into the address at the same time,
929 // see if we can just put each operand into a register and fold at least
930 // the add.
931 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000932 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000933 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000934 N = Handle.getValue();
935 AM.Base_Reg = N.getOperand(0);
936 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +0000937 AM.Scale = 1;
938 return false;
939 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000940 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000941 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000942 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000943
Chris Lattner62412262007-02-04 20:18:17 +0000944 case ISD::OR:
945 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000946 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000947 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +0000948 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Chengf3caa522010-03-17 23:58:35 +0000949
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000950 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +0000951 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedman4977eb52011-07-13 20:44:23 +0000952 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000953 return false;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000954 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000955 }
956 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000957
958 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000959 // Perform some heroic transforms on an and of a constant-count shift
960 // with a constant to enable use of the scaled offset field.
961
Dan Gohman475871a2008-07-27 21:46:04 +0000962 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000963 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000964
Evan Cheng1314b002007-12-13 00:43:27 +0000965 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000966 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000967
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000968 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +0000969 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
970 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
971 if (!C1 || !C2) break;
972
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000973 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
974 // allows us to convert the shift and and into an h-register extract and
975 // a scaled index.
976 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
977 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +0000978 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000979 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000980 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000981 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
982 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
983 X, Eight);
984 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
985 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +0000986 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +0000987 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
988 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000989
990 // Insert the new nodes into the topological ordering.
991 if (Eight.getNode()->getNodeId() == -1 ||
992 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
993 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
994 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
995 }
996 if (Mask.getNode()->getNodeId() == -1 ||
997 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
998 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
999 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1000 }
1001 if (Srl.getNode()->getNodeId() == -1 ||
1002 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1003 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1004 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1005 }
1006 if (And.getNode()->getNodeId() == -1 ||
1007 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1008 CurDAG->RepositionNode(N.getNode(), And.getNode());
1009 And.getNode()->setNodeId(N.getNode()->getNodeId());
1010 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001011 if (ShlCount.getNode()->getNodeId() == -1 ||
1012 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1013 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1014 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1015 }
1016 if (Shl.getNode()->getNodeId() == -1 ||
1017 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1018 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1019 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1020 }
Dan Gohmane5408102010-06-18 01:24:29 +00001021 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001022 AM.IndexReg = And;
1023 AM.Scale = (1 << ScaleLog);
1024 return false;
1025 }
1026 }
1027
1028 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1029 // allows us to fold the shift into this addressing mode.
1030 if (Shift.getOpcode() != ISD::SHL) break;
1031
Evan Cheng1314b002007-12-13 00:43:27 +00001032 // Not likely to be profitable if either the AND or SHIFT node has more
1033 // than one use (unless all uses are for address computation). Besides,
1034 // isel mechanism requires their node ids to be reused.
1035 if (!N.hasOneUse() || !Shift.hasOneUse())
1036 break;
1037
1038 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001039 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001040 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1041 break;
1042
1043 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001044 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001045 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001046 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1047 NewANDMask);
1048 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001049 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001050
1051 // Insert the new nodes into the topological ordering.
1052 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1053 CurDAG->RepositionNode(X.getNode(), C1);
1054 C1->setNodeId(X.getNode()->getNodeId());
1055 }
1056 if (NewANDMask.getNode()->getNodeId() == -1 ||
1057 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1058 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1059 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1060 }
1061 if (NewAND.getNode()->getNodeId() == -1 ||
1062 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1063 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1064 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1065 }
1066 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1067 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1068 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1069 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1070 }
1071
Dan Gohmane5408102010-06-18 01:24:29 +00001072 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001073
1074 AM.Scale = 1 << ShiftCst;
1075 AM.IndexReg = NewAND;
1076 return false;
1077 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001078 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001079
Rafael Espindola523249f2009-03-31 16:16:57 +00001080 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001081}
1082
1083/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1084/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001085bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001086 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001087 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001088 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001089 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001090 AM.IndexReg = N;
1091 AM.Scale = 1;
1092 return false;
1093 }
1094
1095 // Otherwise, we cannot select it.
1096 return true;
1097 }
1098
1099 // Default, generate it as a register.
1100 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001101 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001102 return false;
1103}
1104
Evan Chengec693f72005-12-08 02:01:35 +00001105/// SelectAddr - returns true if it is able pattern match an addressing mode.
1106/// It returns the operands which make up the maximal addressing mode it can
1107/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001108///
1109/// Parent is the parent node of the addr operand that is being matched. It
1110/// is always a load, store, atomic node, or null. It is only null when
1111/// checking memory operands for inline asm nodes.
1112bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001113 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001114 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001115 X86ISelAddressMode AM;
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001116
1117 if (Parent &&
1118 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1119 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001120 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001121 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1122 Parent->getOpcode() != X86ISD::TLSCALL) { // Fixme
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001123 unsigned AddrSpace =
1124 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1125 // AddrSpace 256 -> GS, 257 -> FS.
1126 if (AddrSpace == 256)
1127 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1128 if (AddrSpace == 257)
1129 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1130 }
1131
Evan Chengc7928f82009-12-18 01:59:21 +00001132 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001133 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001134
Owen Andersone50ed302009-08-10 22:56:29 +00001135 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001136 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001137 if (!AM.Base_Reg.getNode())
1138 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001139 }
Evan Cheng8700e142006-01-11 06:09:51 +00001140
Gabor Greifba36cb52008-08-28 21:40:38 +00001141 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001142 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001143
Rafael Espindola094fad32009-04-08 21:14:34 +00001144 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001145 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001146}
1147
Chris Lattner3a7cd952006-10-07 21:55:32 +00001148/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1149/// match a load whose top elements are either undef or zeros. The load flavor
1150/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001151///
1152/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001153/// PatternChainNode: this is the matched node that has a chain input and
1154/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001155bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001156 SDValue N, SDValue &Base,
1157 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001158 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001159 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001160 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001161 PatternNodeWithChain = N.getOperand(0);
1162 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1163 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001164 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001165 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001166 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001167 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001168 return false;
1169 return true;
1170 }
1171 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001172
1173 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001174 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001175 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001176 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001177 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001178 N.getOperand(0).getNode()->hasOneUse() &&
1179 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001180 N.getOperand(0).getOperand(0).hasOneUse() &&
1181 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001182 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001183 // Okay, this is a zero extending load. Fold it.
1184 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001185 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001186 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001187 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001188 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001189 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001190 return false;
1191}
1192
1193
Evan Cheng51a9ed92006-02-25 10:09:08 +00001194/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1195/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001196bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001197 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001198 SDValue &Index, SDValue &Disp,
1199 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001200 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001201
1202 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1203 // segments.
1204 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001205 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001206 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001207 if (MatchAddress(N, AM))
1208 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001209 assert (T == AM.Segment);
1210 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001211
Owen Andersone50ed302009-08-10 22:56:29 +00001212 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001213 unsigned Complexity = 0;
1214 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001215 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001216 Complexity = 1;
1217 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001218 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001219 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1220 Complexity = 4;
1221
Gabor Greifba36cb52008-08-28 21:40:38 +00001222 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001223 Complexity++;
1224 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001225 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001226
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001227 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1228 // a simple shift.
1229 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001230 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001231
1232 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1233 // to a LEA. This is determined with some expermentation but is by no means
1234 // optimal (especially for code size consideration). LEA is nice because of
1235 // its three-address nature. Tweak the cost function again when we can run
1236 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001237 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001238 // For X86-64, we should always use lea to materialize RIP relative
1239 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001240 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001241 Complexity = 4;
1242 else
1243 Complexity += 2;
1244 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001245
Dan Gohmanffce6f12010-04-29 23:30:41 +00001246 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001247 Complexity++;
1248
Chris Lattner25142782009-07-11 22:50:33 +00001249 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001250 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001251 return false;
1252
Chris Lattner25142782009-07-11 22:50:33 +00001253 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1254 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001255}
1256
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001257/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001258bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001259 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001260 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001261 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1262 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001263
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001264 X86ISelAddressMode AM;
1265 AM.GV = GA->getGlobal();
1266 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001267 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001268 AM.SymbolFlags = GA->getTargetFlags();
1269
Owen Anderson825b72b2009-08-11 20:47:22 +00001270 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001271 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001272 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001273 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001274 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001275 }
1276
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001277 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1278 return true;
1279}
1280
1281
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001282bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001283 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001284 SDValue &Index, SDValue &Disp,
1285 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001286 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1287 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001288 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001289 return false;
1290
Chris Lattnerb86faa12010-09-21 22:07:31 +00001291 return SelectAddr(N.getNode(),
1292 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001293}
1294
Dan Gohman8b746962008-09-23 18:22:58 +00001295/// getGlobalBaseReg - Return an SDNode that returns the value of
1296/// the global base register. Output instructions required to
1297/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001298///
Evan Cheng9ade2182006-08-26 05:34:46 +00001299SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001300 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001301 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001302}
1303
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001304SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1305 SDValue Chain = Node->getOperand(0);
1306 SDValue In1 = Node->getOperand(1);
1307 SDValue In2L = Node->getOperand(2);
1308 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001309 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001310 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001311 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001312 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1313 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1314 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1315 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1316 MVT::i32, MVT::i32, MVT::Other, Ops,
1317 array_lengthof(Ops));
1318 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1319 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001320}
Christopher Lambc59e5212007-08-10 21:48:46 +00001321
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001322// FIXME: Figure out some way to unify this with the 'or' and other code
1323// below.
Owen Andersone50ed302009-08-10 22:56:29 +00001324SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001325 if (Node->hasAnyUseOfValue(0))
1326 return 0;
1327
1328 // Optimize common patterns for __sync_add_and_fetch and
1329 // __sync_sub_and_fetch where the result is not used. This allows us
1330 // to use "lock" version of add, sub, inc, dec instructions.
1331 // FIXME: Do not use special instructions but instead add the "lock"
1332 // prefix to the target node somehow. The extra information will then be
1333 // transferred to machine instruction and it denotes the prefix.
1334 SDValue Chain = Node->getOperand(0);
1335 SDValue Ptr = Node->getOperand(1);
1336 SDValue Val = Node->getOperand(2);
1337 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001338 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001339 return 0;
1340
1341 bool isInc = false, isDec = false, isSub = false, isCN = false;
1342 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001343 if (CN && CN->getSExtValue() == (int32_t)CN->getSExtValue()) {
Evan Cheng37b73872009-07-30 08:33:02 +00001344 isCN = true;
1345 int64_t CNVal = CN->getSExtValue();
1346 if (CNVal == 1)
1347 isInc = true;
1348 else if (CNVal == -1)
1349 isDec = true;
1350 else if (CNVal >= 0)
1351 Val = CurDAG->getTargetConstant(CNVal, NVT);
1352 else {
1353 isSub = true;
1354 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1355 }
1356 } else if (Val.hasOneUse() &&
1357 Val.getOpcode() == ISD::SUB &&
1358 X86::isZeroNode(Val.getOperand(0))) {
1359 isSub = true;
1360 Val = Val.getOperand(1);
1361 }
1362
Eric Christophere3997d42011-07-01 23:04:38 +00001363 DebugLoc dl = Node->getDebugLoc();
Evan Cheng37b73872009-07-30 08:33:02 +00001364 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001365 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001366 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001367 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001368 if (isInc)
1369 Opc = X86::LOCK_INC8m;
1370 else if (isDec)
1371 Opc = X86::LOCK_DEC8m;
1372 else if (isSub) {
1373 if (isCN)
1374 Opc = X86::LOCK_SUB8mi;
1375 else
1376 Opc = X86::LOCK_SUB8mr;
1377 } else {
1378 if (isCN)
1379 Opc = X86::LOCK_ADD8mi;
1380 else
1381 Opc = X86::LOCK_ADD8mr;
1382 }
1383 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001384 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001385 if (isInc)
1386 Opc = X86::LOCK_INC16m;
1387 else if (isDec)
1388 Opc = X86::LOCK_DEC16m;
1389 else if (isSub) {
1390 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001391 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001392 Opc = X86::LOCK_SUB16mi8;
1393 else
1394 Opc = X86::LOCK_SUB16mi;
1395 } else
1396 Opc = X86::LOCK_SUB16mr;
1397 } else {
1398 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001399 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001400 Opc = X86::LOCK_ADD16mi8;
1401 else
1402 Opc = X86::LOCK_ADD16mi;
1403 } else
1404 Opc = X86::LOCK_ADD16mr;
1405 }
1406 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001407 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001408 if (isInc)
1409 Opc = X86::LOCK_INC32m;
1410 else if (isDec)
1411 Opc = X86::LOCK_DEC32m;
1412 else if (isSub) {
1413 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001414 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001415 Opc = X86::LOCK_SUB32mi8;
1416 else
1417 Opc = X86::LOCK_SUB32mi;
1418 } else
1419 Opc = X86::LOCK_SUB32mr;
1420 } else {
1421 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001422 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001423 Opc = X86::LOCK_ADD32mi8;
1424 else
1425 Opc = X86::LOCK_ADD32mi;
1426 } else
1427 Opc = X86::LOCK_ADD32mr;
1428 }
1429 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001430 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001431 if (isInc)
1432 Opc = X86::LOCK_INC64m;
1433 else if (isDec)
1434 Opc = X86::LOCK_DEC64m;
1435 else if (isSub) {
1436 Opc = X86::LOCK_SUB64mr;
1437 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001438 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001439 Opc = X86::LOCK_SUB64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001440 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001441 Opc = X86::LOCK_SUB64mi32;
1442 }
1443 } else {
1444 Opc = X86::LOCK_ADD64mr;
1445 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001446 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001447 Opc = X86::LOCK_ADD64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001448 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001449 Opc = X86::LOCK_ADD64mi32;
1450 }
1451 }
1452 break;
1453 }
1454
Chris Lattner518bb532010-02-09 19:54:29 +00001455 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001456 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001457 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1458 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001459 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001460 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1461 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1462 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001463 SDValue RetVals[] = { Undef, Ret };
1464 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1465 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001466 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1467 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1468 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001469 SDValue RetVals[] = { Undef, Ret };
1470 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1471 }
1472}
1473
Eric Christopher8102bf02011-05-17 07:47:55 +00001474enum AtomicOpc {
Eric Christopher811c2b72011-05-17 07:50:41 +00001475 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001476 AND,
1477 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001478 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001479};
1480
1481enum AtomicSz {
1482 ConstantI8,
1483 I8,
1484 SextConstantI16,
1485 ConstantI16,
1486 I16,
1487 SextConstantI32,
1488 ConstantI32,
1489 I32,
1490 SextConstantI64,
1491 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001492 I64,
1493 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001494};
1495
Eric Christopher811c2b72011-05-17 07:50:41 +00001496static const unsigned int AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001497 {
1498 X86::LOCK_OR8mi,
1499 X86::LOCK_OR8mr,
1500 X86::LOCK_OR16mi8,
1501 X86::LOCK_OR16mi,
1502 X86::LOCK_OR16mr,
1503 X86::LOCK_OR32mi8,
1504 X86::LOCK_OR32mi,
1505 X86::LOCK_OR32mr,
1506 X86::LOCK_OR64mi8,
1507 X86::LOCK_OR64mi32,
1508 X86::LOCK_OR64mr
Eric Christopherc324f722011-05-17 08:10:18 +00001509 },
1510 {
1511 X86::LOCK_AND8mi,
1512 X86::LOCK_AND8mr,
1513 X86::LOCK_AND16mi8,
1514 X86::LOCK_AND16mi,
1515 X86::LOCK_AND16mr,
1516 X86::LOCK_AND32mi8,
1517 X86::LOCK_AND32mi,
1518 X86::LOCK_AND32mr,
1519 X86::LOCK_AND64mi8,
1520 X86::LOCK_AND64mi32,
1521 X86::LOCK_AND64mr
1522 },
1523 {
1524 X86::LOCK_XOR8mi,
1525 X86::LOCK_XOR8mr,
1526 X86::LOCK_XOR16mi8,
1527 X86::LOCK_XOR16mi,
1528 X86::LOCK_XOR16mr,
1529 X86::LOCK_XOR32mi8,
1530 X86::LOCK_XOR32mi,
1531 X86::LOCK_XOR32mr,
1532 X86::LOCK_XOR64mi8,
1533 X86::LOCK_XOR64mi32,
1534 X86::LOCK_XOR64mr
Eric Christopherc493a1f2011-05-11 21:44:58 +00001535 }
1536};
1537
Eric Christopherc324f722011-05-17 08:10:18 +00001538SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001539 if (Node->hasAnyUseOfValue(0))
1540 return 0;
1541
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001542 // Optimize common patterns for __sync_or_and_fetch and similar arith
1543 // operations where the result is not used. This allows us to use the "lock"
1544 // version of the arithmetic instruction.
1545 // FIXME: Same as for 'add' and 'sub', try to merge those down here.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001546 SDValue Chain = Node->getOperand(0);
1547 SDValue Ptr = Node->getOperand(1);
1548 SDValue Val = Node->getOperand(2);
1549 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1550 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1551 return 0;
1552
Eric Christopherc324f722011-05-17 08:10:18 +00001553 // Which index into the table.
1554 enum AtomicOpc Op;
1555 switch (Node->getOpcode()) {
1556 case ISD::ATOMIC_LOAD_OR:
1557 Op = OR;
1558 break;
1559 case ISD::ATOMIC_LOAD_AND:
1560 Op = AND;
1561 break;
1562 case ISD::ATOMIC_LOAD_XOR:
1563 Op = XOR;
1564 break;
1565 default:
1566 return 0;
1567 }
1568
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001569 bool isCN = false;
1570 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001571 if (CN && (int32_t)CN->getSExtValue() == CN->getSExtValue()) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001572 isCN = true;
1573 Val = CurDAG->getTargetConstant(CN->getSExtValue(), NVT);
1574 }
1575
1576 unsigned Opc = 0;
1577 switch (NVT.getSimpleVT().SimpleTy) {
1578 default: return 0;
1579 case MVT::i8:
1580 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001581 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001582 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001583 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001584 break;
1585 case MVT::i16:
1586 if (isCN) {
1587 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001588 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001589 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001590 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001591 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001592 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001593 break;
1594 case MVT::i32:
1595 if (isCN) {
1596 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001597 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001598 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001599 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001600 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001601 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001602 break;
1603 case MVT::i64:
Eric Christopher5d8aa342011-06-30 00:48:30 +00001604 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001605 if (isCN) {
1606 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001607 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001608 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001609 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopher5d8aa342011-06-30 00:48:30 +00001610 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001611 break;
1612 }
1613
Eric Christopher5d8aa342011-06-30 00:48:30 +00001614 assert(Opc != 0 && "Invalid arith lock transform!");
1615
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001616 DebugLoc dl = Node->getDebugLoc();
1617 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1618 dl, NVT), 0);
1619 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1620 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1621 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1622 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1623 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1624 SDValue RetVals[] = { Undef, Ret };
1625 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1626}
1627
Dan Gohman11596ed2009-10-09 20:35:19 +00001628/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1629/// any uses which require the SF or OF bits to be accurate.
1630static bool HasNoSignedComparisonUses(SDNode *N) {
1631 // Examine each user of the node.
1632 for (SDNode::use_iterator UI = N->use_begin(),
1633 UE = N->use_end(); UI != UE; ++UI) {
1634 // Only examine CopyToReg uses.
1635 if (UI->getOpcode() != ISD::CopyToReg)
1636 return false;
1637 // Only examine CopyToReg uses that copy to EFLAGS.
1638 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1639 X86::EFLAGS)
1640 return false;
1641 // Examine each user of the CopyToReg use.
1642 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1643 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1644 // Only examine the Flag result.
1645 if (FlagUI.getUse().getResNo() != 1) continue;
1646 // Anything unusual: assume conservatively.
1647 if (!FlagUI->isMachineOpcode()) return false;
1648 // Examine the opcode of the user.
1649 switch (FlagUI->getMachineOpcode()) {
1650 // These comparisons don't treat the most significant bit specially.
1651 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1652 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1653 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1654 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001655 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1656 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001657 case X86::CMOVA16rr: case X86::CMOVA16rm:
1658 case X86::CMOVA32rr: case X86::CMOVA32rm:
1659 case X86::CMOVA64rr: case X86::CMOVA64rm:
1660 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1661 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1662 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1663 case X86::CMOVB16rr: case X86::CMOVB16rm:
1664 case X86::CMOVB32rr: case X86::CMOVB32rm:
1665 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001666 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1667 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1668 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001669 case X86::CMOVE16rr: case X86::CMOVE16rm:
1670 case X86::CMOVE32rr: case X86::CMOVE32rm:
1671 case X86::CMOVE64rr: case X86::CMOVE64rm:
1672 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1673 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1674 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1675 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1676 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1677 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1678 case X86::CMOVP16rr: case X86::CMOVP16rm:
1679 case X86::CMOVP32rr: case X86::CMOVP32rm:
1680 case X86::CMOVP64rr: case X86::CMOVP64rm:
1681 continue;
1682 // Anything else: assume conservatively.
1683 default: return false;
1684 }
1685 }
1686 }
1687 return true;
1688}
1689
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001690SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001691 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001692 unsigned Opc, MOpc;
1693 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001694 DebugLoc dl = Node->getDebugLoc();
1695
Chris Lattner7c306da2010-03-02 06:34:30 +00001696 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001697
Dan Gohmane8be6c62008-07-17 19:10:17 +00001698 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001699 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001700 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001701 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001702
Evan Cheng0114e942006-01-06 20:36:21 +00001703 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001704 default: break;
1705 case X86ISD::GlobalBaseReg:
1706 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001707
Dan Gohman72677342009-08-02 16:10:52 +00001708 case X86ISD::ATOMOR64_DAG:
1709 return SelectAtomic64(Node, X86::ATOMOR6432);
1710 case X86ISD::ATOMXOR64_DAG:
1711 return SelectAtomic64(Node, X86::ATOMXOR6432);
1712 case X86ISD::ATOMADD64_DAG:
1713 return SelectAtomic64(Node, X86::ATOMADD6432);
1714 case X86ISD::ATOMSUB64_DAG:
1715 return SelectAtomic64(Node, X86::ATOMSUB6432);
1716 case X86ISD::ATOMNAND64_DAG:
1717 return SelectAtomic64(Node, X86::ATOMNAND6432);
1718 case X86ISD::ATOMAND64_DAG:
1719 return SelectAtomic64(Node, X86::ATOMAND6432);
1720 case X86ISD::ATOMSWAP64_DAG:
1721 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001722
Dan Gohman72677342009-08-02 16:10:52 +00001723 case ISD::ATOMIC_LOAD_ADD: {
1724 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1725 if (RetVal)
1726 return RetVal;
1727 break;
1728 }
Eric Christopherc324f722011-05-17 08:10:18 +00001729 case ISD::ATOMIC_LOAD_XOR:
1730 case ISD::ATOMIC_LOAD_AND:
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001731 case ISD::ATOMIC_LOAD_OR: {
Eric Christopherc324f722011-05-17 08:10:18 +00001732 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001733 if (RetVal)
1734 return RetVal;
1735 break;
1736 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001737 case ISD::AND:
1738 case ISD::OR:
1739 case ISD::XOR: {
1740 // For operations of the form (x << C1) op C2, check if we can use a smaller
1741 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
1742 SDValue N0 = Node->getOperand(0);
1743 SDValue N1 = Node->getOperand(1);
1744
1745 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
1746 break;
1747
1748 // i8 is unshrinkable, i16 should be promoted to i32.
1749 if (NVT != MVT::i32 && NVT != MVT::i64)
1750 break;
1751
1752 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
1753 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
1754 if (!Cst || !ShlCst)
1755 break;
1756
1757 int64_t Val = Cst->getSExtValue();
1758 uint64_t ShlVal = ShlCst->getZExtValue();
1759
1760 // Make sure that we don't change the operation by removing bits.
1761 // This only matters for OR and XOR, AND is unaffected.
1762 if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
1763 break;
1764
Benjamin Kramer20115612011-04-23 08:21:06 +00001765 unsigned ShlOp, Op = 0;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001766 EVT CstVT = NVT;
1767
1768 // Check the minimum bitwidth for the new constant.
1769 // TODO: AND32ri is the same as AND64ri32 with zext imm.
1770 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
1771 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
1772 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
1773 CstVT = MVT::i8;
1774 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
1775 CstVT = MVT::i32;
1776
1777 // Bail if there is no smaller encoding.
1778 if (NVT == CstVT)
1779 break;
1780
1781 switch (NVT.getSimpleVT().SimpleTy) {
1782 default: llvm_unreachable("Unsupported VT!");
1783 case MVT::i32:
1784 assert(CstVT == MVT::i8);
1785 ShlOp = X86::SHL32ri;
1786
1787 switch (Opcode) {
1788 case ISD::AND: Op = X86::AND32ri8; break;
1789 case ISD::OR: Op = X86::OR32ri8; break;
1790 case ISD::XOR: Op = X86::XOR32ri8; break;
1791 }
1792 break;
1793 case MVT::i64:
1794 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
1795 ShlOp = X86::SHL64ri;
1796
1797 switch (Opcode) {
1798 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
1799 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
1800 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
1801 }
1802 break;
1803 }
1804
1805 // Emit the smaller op and the shift.
1806 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
1807 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
1808 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
1809 getI8Imm(ShlVal));
1810 break;
1811 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001812 case X86ISD::UMUL: {
1813 SDValue N0 = Node->getOperand(0);
1814 SDValue N1 = Node->getOperand(1);
1815
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001816 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001817 switch (NVT.getSimpleVT().SimpleTy) {
1818 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001819 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
1820 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
1821 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
1822 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001823 }
1824
1825 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1826 N0, SDValue()).getValue(1);
1827
1828 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
1829 SDValue Ops[] = {N1, InFlag};
1830 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
1831
1832 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
1833 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
1834 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
1835 return NULL;
1836 }
1837
Dan Gohman72677342009-08-02 16:10:52 +00001838 case ISD::SMUL_LOHI:
1839 case ISD::UMUL_LOHI: {
1840 SDValue N0 = Node->getOperand(0);
1841 SDValue N1 = Node->getOperand(1);
1842
1843 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001844 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001845 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001846 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001847 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1848 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1849 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1850 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001851 }
Bill Wendling12321672009-08-07 21:33:25 +00001852 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001853 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001854 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001855 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1856 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1857 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1858 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001859 }
Bill Wendling12321672009-08-07 21:33:25 +00001860 }
Dan Gohman72677342009-08-02 16:10:52 +00001861
1862 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001863 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001864 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001865 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1866 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1867 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1868 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001869 }
1870
1871 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001872 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001873 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001874 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001875 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001876 if (foldedLoad)
1877 std::swap(N0, N1);
1878 }
1879
1880 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1881 N0, SDValue()).getValue(1);
1882
1883 if (foldedLoad) {
1884 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1885 InFlag };
1886 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001887 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00001888 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001889 InFlag = SDValue(CNode, 1);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001890
Dan Gohman72677342009-08-02 16:10:52 +00001891 // Update the chain.
1892 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1893 } else {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001894 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001895 InFlag = SDValue(CNode, 0);
Dan Gohman72677342009-08-02 16:10:52 +00001896 }
1897
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001898 // Prevent use of AH in a REX instruction by referencing AX instead.
1899 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1900 !SDValue(Node, 1).use_empty()) {
1901 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1902 X86::AX, MVT::i16, InFlag);
1903 InFlag = Result.getValue(2);
1904 // Get the low part if needed. Don't use getCopyFromReg for aliasing
1905 // registers.
1906 if (!SDValue(Node, 0).use_empty())
1907 ReplaceUses(SDValue(Node, 1),
1908 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1909
1910 // Shift AX down 8 bits.
1911 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1912 Result,
1913 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1914 // Then truncate it down to i8.
1915 ReplaceUses(SDValue(Node, 1),
1916 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1917 }
Dan Gohman72677342009-08-02 16:10:52 +00001918 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001919 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001920 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1921 LoReg, NVT, InFlag);
1922 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001923 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001924 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001925 }
1926 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001927 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001928 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1929 HiReg, NVT, InFlag);
1930 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001931 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001932 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001933 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001934
Dan Gohman72677342009-08-02 16:10:52 +00001935 return NULL;
1936 }
1937
1938 case ISD::SDIVREM:
1939 case ISD::UDIVREM: {
1940 SDValue N0 = Node->getOperand(0);
1941 SDValue N1 = Node->getOperand(1);
1942
1943 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001944 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001945 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001946 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001947 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1948 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1949 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1950 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001951 }
Bill Wendling12321672009-08-07 21:33:25 +00001952 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001953 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001954 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001955 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1956 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1957 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1958 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001959 }
Bill Wendling12321672009-08-07 21:33:25 +00001960 }
Dan Gohman72677342009-08-02 16:10:52 +00001961
Chris Lattner9e323832009-12-23 01:45:04 +00001962 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001963 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001964 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001965 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001966 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001967 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001968 ClrOpcode = 0;
1969 SExtOpcode = X86::CBW;
1970 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001971 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001972 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001973 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001974 SExtOpcode = X86::CWD;
1975 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001976 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001977 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001978 ClrOpcode = X86::MOV32r0;
1979 SExtOpcode = X86::CDQ;
1980 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001981 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001982 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001983 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001984 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001985 break;
1986 }
1987
Dan Gohman72677342009-08-02 16:10:52 +00001988 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001989 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001990 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001991
Dan Gohman72677342009-08-02 16:10:52 +00001992 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001993 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001994 // Special case for div8, just use a move with zero extension to AX to
1995 // clear the upper 8 bits (AH).
1996 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001997 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001998 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1999 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002000 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002001 MVT::Other, Ops,
2002 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002003 Chain = Move.getValue(1);
2004 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002005 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002006 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002007 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002008 Chain = CurDAG->getEntryNode();
2009 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002010 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002011 InFlag = Chain.getValue(1);
2012 } else {
2013 InFlag =
2014 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2015 LoReg, N0, SDValue()).getValue(1);
2016 if (isSigned && !signBitIsZero) {
2017 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002018 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002019 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002020 } else {
2021 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002022 SDValue ClrNode =
2023 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002024 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002025 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002026 }
Evan Cheng948f3432006-01-06 23:19:29 +00002027 }
Dan Gohman525178c2007-10-08 18:33:35 +00002028
Dan Gohman72677342009-08-02 16:10:52 +00002029 if (foldedLoad) {
2030 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2031 InFlag };
2032 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002033 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002034 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002035 InFlag = SDValue(CNode, 1);
2036 // Update the chain.
2037 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2038 } else {
2039 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002040 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002041 }
Evan Cheng948f3432006-01-06 23:19:29 +00002042
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002043 // Prevent use of AH in a REX instruction by referencing AX instead.
2044 // Shift it down 8 bits.
2045 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2046 !SDValue(Node, 1).use_empty()) {
2047 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2048 X86::AX, MVT::i16, InFlag);
2049 InFlag = Result.getValue(2);
2050
2051 // If we also need AL (the quotient), get it by extracting a subreg from
2052 // Result. The fast register allocator does not like multiple CopyFromReg
2053 // nodes using aliasing registers.
2054 if (!SDValue(Node, 0).use_empty())
2055 ReplaceUses(SDValue(Node, 0),
2056 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2057
2058 // Shift AX right by 8 bits instead of using AH.
2059 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2060 Result,
2061 CurDAG->getTargetConstant(8, MVT::i8)),
2062 0);
2063 ReplaceUses(SDValue(Node, 1),
2064 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2065 }
Dan Gohman72677342009-08-02 16:10:52 +00002066 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002067 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002068 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2069 LoReg, NVT, InFlag);
2070 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002071 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002072 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002073 }
2074 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002075 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002076 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2077 HiReg, NVT, InFlag);
2078 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002079 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002080 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002081 }
Dan Gohman72677342009-08-02 16:10:52 +00002082 return NULL;
2083 }
2084
Dan Gohman6a402dc2009-08-19 18:16:17 +00002085 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002086 SDValue N0 = Node->getOperand(0);
2087 SDValue N1 = Node->getOperand(1);
2088
2089 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2090 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002091 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2092 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002093 // Look past the truncate if CMP is the only use of it.
2094 N0 = N0.getOperand(0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002095 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2096 N0.getValueType() != MVT::i8 &&
2097 X86::isZeroNode(N1)) {
2098 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2099 if (!C) break;
2100
2101 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002102 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2103 (!(C->getZExtValue() & 0x80) ||
2104 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002105 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2106 SDValue Reg = N0.getNode()->getOperand(0);
2107
2108 // On x86-32, only the ABCD registers have 8-bit subregisters.
2109 if (!Subtarget->is64Bit()) {
2110 TargetRegisterClass *TRC = 0;
2111 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2112 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2113 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2114 default: llvm_unreachable("Unsupported TEST operand type!");
2115 }
2116 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002117 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2118 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002119 }
2120
2121 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002122 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002123 MVT::i8, Reg);
2124
2125 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002126 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002127 }
2128
2129 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002130 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2131 (!(C->getZExtValue() & 0x8000) ||
2132 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002133 // Shift the immediate right by 8 bits.
2134 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2135 MVT::i8);
2136 SDValue Reg = N0.getNode()->getOperand(0);
2137
2138 // Put the value in an ABCD register.
2139 TargetRegisterClass *TRC = 0;
2140 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2141 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2142 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2143 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2144 default: llvm_unreachable("Unsupported TEST operand type!");
2145 }
2146 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002147 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2148 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002149
2150 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002151 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002152 MVT::i8, Reg);
2153
2154 // Emit a testb. No special NOREX tricks are needed since there's
2155 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002156 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2157 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002158 }
2159
2160 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2161 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002162 N0.getValueType() != MVT::i16 &&
2163 (!(C->getZExtValue() & 0x8000) ||
2164 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002165 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2166 SDValue Reg = N0.getNode()->getOperand(0);
2167
2168 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002169 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002170 MVT::i16, Reg);
2171
2172 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002173 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002174 }
2175
2176 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2177 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002178 N0.getValueType() == MVT::i64 &&
2179 (!(C->getZExtValue() & 0x80000000) ||
2180 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002181 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2182 SDValue Reg = N0.getNode()->getOperand(0);
2183
2184 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002185 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002186 MVT::i32, Reg);
2187
2188 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002189 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002190 }
2191 }
2192 break;
2193 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002194 }
2195
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002196 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002197
Chris Lattner7c306da2010-03-02 06:34:30 +00002198 DEBUG(dbgs() << "=> ";
2199 if (ResNode == NULL || ResNode == Node)
2200 Node->dump(CurDAG);
2201 else
2202 ResNode->dump(CurDAG);
2203 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002204
2205 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002206}
2207
Chris Lattnerc0bad572006-06-08 18:03:49 +00002208bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002209SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002210 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002211 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002212 switch (ConstraintCode) {
2213 case 'o': // offsetable ??
2214 case 'v': // not offsetable ??
2215 default: return true;
2216 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002217 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002218 return true;
2219 break;
2220 }
2221
Evan Cheng04699902006-08-26 01:05:16 +00002222 OutOps.push_back(Op0);
2223 OutOps.push_back(Op1);
2224 OutOps.push_back(Op2);
2225 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002226 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002227 return false;
2228}
2229
Chris Lattnerc961eea2005-11-16 01:54:32 +00002230/// createX86ISelDag - This pass converts a legalized DAG into a
2231/// X86-specific DAG, ready for instruction scheduling.
2232///
Bill Wendling98a366d2009-04-29 23:29:43 +00002233FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2234 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002235 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002236}