blob: cc8db35262fbc7faaa9a4327d4df80156045854b [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
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000195 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000196 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000197 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
198 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
199 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000200 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000201 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000202 SDValue &Scale, SDValue &Index, SDValue &Disp,
203 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000204 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000207 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000208 SDValue &Scale, SDValue &Index, SDValue &Disp,
209 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000210 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000211 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000213 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000214 SDValue &NodeWithChain);
215
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000216 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000217 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000218 SDValue &Index, SDValue &Disp,
219 SDValue &Segment);
Chris Lattner7c306da2010-03-02 06:34:30 +0000220
Chris Lattnerc0bad572006-06-08 18:03:49 +0000221 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
222 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000223 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000224 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000225 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000226
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000227 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
228
Dan Gohman475871a2008-07-27 21:46:04 +0000229 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
230 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000231 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000232 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000233 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
234 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000235 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000236 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000237 // These are 32-bit even in 64-bit mode since RIP relative offset
238 // is 32-bit.
239 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000240 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
241 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000242 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000243 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000244 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000245 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000246 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000248 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000249 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000250 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000251 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
252 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000253 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000255
256 if (AM.Segment.getNode())
257 Segment = AM.Segment;
258 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000259 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000260 }
261
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000262 /// getI8Imm - Return a target constant with the specified value, of type
263 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000264 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000266 }
267
Chris Lattnerc961eea2005-11-16 01:54:32 +0000268 /// getI32Imm - Return a target constant with the specified value, of type
269 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000270 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000272 }
Evan Chengf597dc72006-02-10 22:24:32 +0000273
Dan Gohman8b746962008-09-23 18:22:58 +0000274 /// getGlobalBaseReg - Return an SDNode that returns the value of
275 /// the global base register. Output instructions required to
276 /// initialize the global base register, if necessary.
277 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000278 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000279
Dan Gohmanc5534622009-06-03 20:20:00 +0000280 /// getTargetMachine - Return a reference to the TargetMachine, casted
281 /// to the target-specific type.
282 const X86TargetMachine &getTargetMachine() {
283 return static_cast<const X86TargetMachine &>(TM);
284 }
285
286 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
287 /// to the target-specific type.
288 const X86InstrInfo *getInstrInfo() {
289 return getTargetMachine().getInstrInfo();
290 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000291 };
292}
293
Evan Chengf4b4c412006-08-08 00:31:00 +0000294
Evan Cheng014bf212010-02-15 19:41:07 +0000295bool
296X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000297 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000298
Evan Cheng014bf212010-02-15 19:41:07 +0000299 if (!N.hasOneUse())
300 return false;
301
302 if (N.getOpcode() != ISD::LOAD)
303 return true;
304
305 // If N is a load, do additional profitability checks.
306 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000307 switch (U->getOpcode()) {
308 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000309 case X86ISD::ADD:
310 case X86ISD::SUB:
311 case X86ISD::AND:
312 case X86ISD::XOR:
313 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000314 case ISD::ADD:
315 case ISD::ADDC:
316 case ISD::ADDE:
317 case ISD::AND:
318 case ISD::OR:
319 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000320 SDValue Op1 = U->getOperand(1);
321
Evan Cheng884c70c2008-11-27 00:49:46 +0000322 // If the other operand is a 8-bit immediate we should fold the immediate
323 // instead. This reduces code size.
324 // e.g.
325 // movl 4(%esp), %eax
326 // addl $4, %eax
327 // vs.
328 // movl $4, %eax
329 // addl 4(%esp), %eax
330 // The former is 2 bytes shorter. In case where the increment is 1, then
331 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000332 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000333 if (Imm->getAPIntValue().isSignedIntN(8))
334 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000335
336 // If the other operand is a TLS address, we should fold it instead.
337 // This produces
338 // movl %gs:0, %eax
339 // leal i@NTPOFF(%eax), %eax
340 // instead of
341 // movl $i@NTPOFF, %eax
342 // addl %gs:0, %eax
343 // if the block also has an access to a second TLS address this will save
344 // a load.
345 // FIXME: This is probably also true for non TLS addresses.
346 if (Op1.getOpcode() == X86ISD::Wrapper) {
347 SDValue Val = Op1.getOperand(0);
348 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
349 return false;
350 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000351 }
352 }
Evan Cheng014bf212010-02-15 19:41:07 +0000353 }
354
355 return true;
356}
357
Evan Chengf48ef032010-03-14 03:48:46 +0000358/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
359/// load's chain operand and move load below the call's chain operand.
360static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
361 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000362 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000363 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000364 if (Chain.getNode() == Load.getNode())
365 Ops.push_back(Load.getOperand(0));
366 else {
367 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000368 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000369 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
370 if (Chain.getOperand(i).getNode() == Load.getNode())
371 Ops.push_back(Load.getOperand(0));
372 else
373 Ops.push_back(Chain.getOperand(i));
374 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000375 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000376 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000377 Ops.clear();
378 Ops.push_back(NewChain);
379 }
Evan Chengf48ef032010-03-14 03:48:46 +0000380 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
381 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000382 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
383 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000384 Load.getOperand(1), Load.getOperand(2));
385 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000386 Ops.push_back(SDValue(Load.getNode(), 1));
387 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000388 Ops.push_back(Call.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000389 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000390}
391
392/// isCalleeLoad - Return true if call address is a load and it can be
393/// moved below CALLSEQ_START and the chains leading up to the call.
394/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000395/// In the case of a tail call, there isn't a callseq node between the call
396/// chain and the load.
397static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000398 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000399 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000400 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000401 if (!LD ||
402 LD->isVolatile() ||
403 LD->getAddressingMode() != ISD::UNINDEXED ||
404 LD->getExtensionType() != ISD::NON_EXTLOAD)
405 return false;
406
407 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000408 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000409 if (!Chain.hasOneUse())
410 return false;
411 Chain = Chain.getOperand(0);
412 }
Evan Chengf48ef032010-03-14 03:48:46 +0000413
414 if (!Chain.getNumOperands())
415 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000416 if (Chain.getOperand(0).getNode() == Callee.getNode())
417 return true;
418 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000419 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
420 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000421 return true;
422 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000423}
424
Chris Lattnerfb444af2010-03-02 23:12:51 +0000425void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000426 // OptForSize is used in pattern predicates that isel is matching.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000427 OptForSize = MF->getFunction()->hasFnAttr(Attribute::OptimizeForSize);
428
Dan Gohmanf350b272008-08-23 02:25:05 +0000429 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
430 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000431 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000432
Evan Chengf48ef032010-03-14 03:48:46 +0000433 if (OptLevel != CodeGenOpt::None &&
434 (N->getOpcode() == X86ISD::CALL ||
435 N->getOpcode() == X86ISD::TC_RETURN)) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000436 /// Also try moving call address load from outside callseq_start to just
437 /// before the call to allow it to be folded.
438 ///
439 /// [Load chain]
440 /// ^
441 /// |
442 /// [Load]
443 /// ^ ^
444 /// | |
445 /// / \--
446 /// / |
447 ///[CALLSEQ_START] |
448 /// ^ |
449 /// | |
450 /// [LOAD/C2Reg] |
451 /// | |
452 /// \ /
453 /// \ /
454 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000455 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000456 SDValue Chain = N->getOperand(0);
457 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000458 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000459 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000460 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000461 ++NumLoadMoved;
462 continue;
463 }
464
465 // Lower fpround and fpextend nodes that target the FP stack to be store and
466 // load to the stack. This is a gross hack. We would like to simply mark
467 // these as being illegal, but when we do that, legalize produces these when
468 // it expands calls, then expands these in the same legalize pass. We would
469 // like dag combine to be able to hack on these between the call expansion
470 // and the node legalization. As such this pass basically does "really
471 // late" legalization of these inline with the X86 isel pass.
472 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000473 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
474 continue;
475
476 // If the source and destination are SSE registers, then this is a legal
477 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000478 EVT SrcVT = N->getOperand(0).getValueType();
479 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000480 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
481 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
482 if (SrcIsSSE && DstIsSSE)
483 continue;
484
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000485 if (!SrcIsSSE && !DstIsSSE) {
486 // If this is an FPStack extension, it is a noop.
487 if (N->getOpcode() == ISD::FP_EXTEND)
488 continue;
489 // If this is a value-preserving FPStack truncation, it is a noop.
490 if (N->getConstantOperandVal(1))
491 continue;
492 }
493
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000494 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
495 // FPStack has extload and truncstore. SSE can fold direct loads into other
496 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000497 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000498 if (N->getOpcode() == ISD::FP_ROUND)
499 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
500 else
501 MemVT = SrcIsSSE ? SrcVT : DstVT;
502
Dan Gohmanf350b272008-08-23 02:25:05 +0000503 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000504 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000505
506 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000507 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000508 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000509 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000510 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000511 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000512 MachinePointerInfo(),
513 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000514
515 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
516 // extload we created. This will cause general havok on the dag because
517 // anything below the conversion could be folded into other existing nodes.
518 // To avoid invalidating 'I', back it up to the convert node.
519 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000520 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000521
522 // Now that we did that, the node is dead. Increment the iterator to the
523 // next node to process, then delete N.
524 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000525 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000526 }
527}
528
Chris Lattnerc961eea2005-11-16 01:54:32 +0000529
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000530/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
531/// the main function.
532void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
533 MachineFrameInfo *MFI) {
534 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000535 if (Subtarget->isTargetCygMing()) {
536 unsigned CallOp =
NAKAMURA Takumi40ccb792011-01-27 03:20:19 +0000537 Subtarget->is64Bit() ? X86::WINCALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000538 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000539 TII->get(CallOp)).addExternalSymbol("__main");
540 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000541}
542
Dan Gohman64652652010-04-14 20:17:22 +0000543void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000544 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000545 if (const Function *Fn = MF->getFunction())
546 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
547 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000548}
549
Rafael Espindola094fad32009-04-08 21:14:34 +0000550
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000551bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
552 SDValue Address = N->getOperand(1);
553
554 // load gs:0 -> GS segment register.
555 // load fs:0 -> FS segment register.
556 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000557 // This optimization is valid because the GNU TLS model defines that
558 // gs:0 (or fs:0 on X86-64) contains its own address.
559 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000560 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
561 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
562 Subtarget->isTargetELF())
563 switch (N->getPointerInfo().getAddrSpace()) {
564 case 256:
565 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
566 return false;
567 case 257:
568 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
569 return false;
570 }
571
Rafael Espindola094fad32009-04-08 21:14:34 +0000572 return true;
573}
574
Chris Lattner18c59872009-06-27 04:16:01 +0000575/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
576/// into an addressing mode. These wrap things that will resolve down into a
577/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000578/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000579bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000580 // If the addressing mode already has a symbol as the displacement, we can
581 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000582 if (AM.hasSymbolicDisplacement())
583 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000584
585 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000586 CodeModel::Model M = TM.getCodeModel();
587
Chris Lattner18c59872009-06-27 04:16:01 +0000588 // Handle X86-64 rip-relative addresses. We check this before checking direct
589 // folding because RIP is preferable to non-RIP accesses.
590 if (Subtarget->is64Bit() &&
591 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
592 // they cannot be folded into immediate fields.
593 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000594 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000595 // Base and index reg must be 0 in order to use %rip as base and lowering
596 // must allow RIP.
597 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000598 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
599 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000600 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000601 AM.GV = G->getGlobal();
602 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000603 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000604 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
605 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000606 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000607 AM.CP = CP->getConstVal();
608 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000609 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000610 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000611 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
612 AM.ES = S->getSymbol();
613 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000614 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000615 AM.JT = J->getIndex();
616 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000617 } else {
618 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000619 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000620 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000621
Chris Lattner18c59872009-06-27 04:16:01 +0000622 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000623 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000624 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000625 }
626
627 // Handle the case when globals fit in our immediate field: This is true for
628 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
629 // mode, this results in a non-RIP-relative computation.
630 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000631 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000632 TM.getRelocationModel() == Reloc::Static)) {
633 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
634 AM.GV = G->getGlobal();
635 AM.Disp += G->getOffset();
636 AM.SymbolFlags = G->getTargetFlags();
637 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
638 AM.CP = CP->getConstVal();
639 AM.Align = CP->getAlignment();
640 AM.Disp += CP->getOffset();
641 AM.SymbolFlags = CP->getTargetFlags();
642 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
643 AM.ES = S->getSymbol();
644 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000645 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000646 AM.JT = J->getIndex();
647 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000648 } else {
649 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000650 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000651 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000652 return false;
653 }
654
655 return true;
656}
657
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000658/// MatchAddress - Add the specified node to the specified addressing mode,
659/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000660/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000661bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000662 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000663 return true;
664
665 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
666 // a smaller encoding and avoids a scaled-index.
667 if (AM.Scale == 2 &&
668 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000669 AM.Base_Reg.getNode() == 0) {
670 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000671 AM.Scale = 1;
672 }
673
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000674 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
675 // because it has a smaller encoding.
676 // TODO: Which other code models can use this?
677 if (TM.getCodeModel() == CodeModel::Small &&
678 Subtarget->is64Bit() &&
679 AM.Scale == 1 &&
680 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000681 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000682 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000683 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000684 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000685 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000686
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000687 return false;
688}
689
690bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
691 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000692 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000693 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000694 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000695 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000696 AM.dump();
697 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000698 // Limit recursion.
699 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000700 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000701
702 CodeModel::Model M = TM.getCodeModel();
703
Chris Lattner18c59872009-06-27 04:16:01 +0000704 // If this is already a %rip relative address, we can only merge immediates
705 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000706 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000707 if (AM.isRIPRelative()) {
708 // FIXME: JumpTable and ExternalSymbol address currently don't like
709 // displacements. It isn't very important, but this should be fixed for
710 // consistency.
711 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000712
Chris Lattner18c59872009-06-27 04:16:01 +0000713 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
714 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000715 if (X86::isOffsetSuitableForCodeModel(Val, M,
716 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000717 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000718 return false;
719 }
720 }
721 return true;
722 }
723
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000724 switch (N.getOpcode()) {
725 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000726 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000727 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000728 if (!is64Bit ||
729 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
730 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000731 AM.Disp += Val;
732 return false;
733 }
734 break;
735 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000736
Rafael Espindola49a168d2009-04-12 21:55:03 +0000737 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000738 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000739 if (!MatchWrapper(N, AM))
740 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000741 break;
742
Rafael Espindola094fad32009-04-08 21:14:34 +0000743 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000744 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000745 return false;
746 break;
747
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000748 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000749 if (AM.BaseType == X86ISelAddressMode::RegBase
Dan Gohmanffce6f12010-04-29 23:30:41 +0000750 && AM.Base_Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000751 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000752 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000753 return false;
754 }
755 break;
Evan Chengec693f72005-12-08 02:01:35 +0000756
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000757 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000758 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000759 break;
760
Gabor Greif93c53e52008-08-31 15:37:04 +0000761 if (ConstantSDNode
762 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000763 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000764 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
765 // that the base operand remains free for further matching. If
766 // the base doesn't end up getting used, a post-processing step
767 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000768 if (Val == 1 || Val == 2 || Val == 3) {
769 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000770 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000771
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000772 // Okay, we know that we have a scale by now. However, if the scaled
773 // value is an add of something and a constant, we can fold the
774 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000775 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000776 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000777 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000778 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000779 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000780 if (!is64Bit ||
781 X86::isOffsetSuitableForCodeModel(Disp, M,
782 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000783 AM.Disp = Disp;
784 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000785 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000786 } else {
787 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000788 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000789 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000790 }
791 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000792 }
Evan Chengec693f72005-12-08 02:01:35 +0000793
Dan Gohman83688052007-10-22 20:22:24 +0000794 case ISD::SMUL_LOHI:
795 case ISD::UMUL_LOHI:
796 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000797 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000798 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000799 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000800 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000801 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000802 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000803 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000804 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000805 if (ConstantSDNode
806 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000807 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
808 CN->getZExtValue() == 9) {
809 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000810
Gabor Greifba36cb52008-08-28 21:40:38 +0000811 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000812 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000813
814 // Okay, we know that we have a scale by now. However, if the scaled
815 // value is an add of something and a constant, we can fold the
816 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000817 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
818 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
819 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000820 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000821 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000822 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000823 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000824 if (!is64Bit ||
825 X86::isOffsetSuitableForCodeModel(Disp, M,
826 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000827 AM.Disp = Disp;
828 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000829 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000830 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000831 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000832 }
833
Dan Gohmanffce6f12010-04-29 23:30:41 +0000834 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000835 return false;
836 }
Chris Lattner62412262007-02-04 20:18:17 +0000837 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000838 break;
839
Dan Gohman3cd90a12009-05-11 18:02:53 +0000840 case ISD::SUB: {
841 // Given A-B, if A can be completely folded into the address and
842 // the index field with the index field unused, use -B as the index.
843 // This is a win if a has multiple parts that can be folded into
844 // the address. Also, this saves a mov if the base register has
845 // other uses, since it avoids a two-address sub instruction, however
846 // it costs an additional mov if the index register has other uses.
847
Dan Gohmane5408102010-06-18 01:24:29 +0000848 // Add an artificial use to this node so that we can keep track of
849 // it if it gets CSE'd with a different node.
850 HandleSDNode Handle(N);
851
Dan Gohman3cd90a12009-05-11 18:02:53 +0000852 // Test if the LHS of the sub can be folded.
853 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +0000854 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000855 AM = Backup;
856 break;
857 }
858 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000859 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000860 AM = Backup;
861 break;
862 }
Evan Chengf3caa522010-03-17 23:58:35 +0000863
Dan Gohman3cd90a12009-05-11 18:02:53 +0000864 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +0000865 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +0000866 // If the RHS involves a register with multiple uses, this
867 // transformation incurs an extra mov, due to the neg instruction
868 // clobbering its operand.
869 if (!RHS.getNode()->hasOneUse() ||
870 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
871 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
872 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
873 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +0000874 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +0000875 ++Cost;
876 // If the base is a register with multiple uses, this
877 // transformation may save a mov.
878 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000879 AM.Base_Reg.getNode() &&
880 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +0000881 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
882 --Cost;
883 // If the folded LHS was interesting, this transformation saves
884 // address arithmetic.
885 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
886 ((AM.Disp != 0) && (Backup.Disp == 0)) +
887 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
888 --Cost;
889 // If it doesn't look like it may be an overall win, don't do it.
890 if (Cost >= 0) {
891 AM = Backup;
892 break;
893 }
894
895 // Ok, the transformation is legal and appears profitable. Go for it.
896 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
897 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
898 AM.IndexReg = Neg;
899 AM.Scale = 1;
900
901 // Insert the new nodes into the topological ordering.
902 if (Zero.getNode()->getNodeId() == -1 ||
903 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
904 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
905 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
906 }
907 if (Neg.getNode()->getNodeId() == -1 ||
908 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
909 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
910 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
911 }
912 return false;
913 }
914
Evan Cheng8e278262009-01-17 07:09:27 +0000915 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +0000916 // Add an artificial use to this node so that we can keep track of
917 // it if it gets CSE'd with a different node.
918 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +0000919
Evan Cheng8e278262009-01-17 07:09:27 +0000920 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000921 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
922 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000923 return false;
924 AM = Backup;
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000925
Evan Chengf3caa522010-03-17 23:58:35 +0000926 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000927 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
928 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +0000929 return false;
Evan Cheng8e278262009-01-17 07:09:27 +0000930 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +0000931
932 // If we couldn't fold both operands into the address at the same time,
933 // see if we can just put each operand into a register and fold at least
934 // the add.
935 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000936 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +0000937 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000938 N = Handle.getValue();
939 AM.Base_Reg = N.getOperand(0);
940 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +0000941 AM.Scale = 1;
942 return false;
943 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +0000944 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000945 break;
Evan Cheng8e278262009-01-17 07:09:27 +0000946 }
Evan Chenge6ad27e2006-05-30 06:59:36 +0000947
Chris Lattner62412262007-02-04 20:18:17 +0000948 case ISD::OR:
949 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +0000950 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000951 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +0000952 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Dan Gohman27cae7b2008-11-11 15:52:29 +0000953 uint64_t Offset = CN->getSExtValue();
Evan Chengf3caa522010-03-17 23:58:35 +0000954
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000955 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +0000956 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000957 // Address could not have picked a GV address for the displacement.
958 AM.GV == NULL &&
959 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000960 (!is64Bit ||
961 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
Evan Chengf3caa522010-03-17 23:58:35 +0000962 AM.hasSymbolicDisplacement()))) {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000963 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000964 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000965 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000966 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +0000967 }
968 break;
Evan Cheng1314b002007-12-13 00:43:27 +0000969
970 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000971 // Perform some heroic transforms on an and of a constant-count shift
972 // with a constant to enable use of the scaled offset field.
973
Dan Gohman475871a2008-07-27 21:46:04 +0000974 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000975 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000976
Evan Cheng1314b002007-12-13 00:43:27 +0000977 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +0000978 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +0000979
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000980 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +0000981 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
982 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
983 if (!C1 || !C2) break;
984
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000985 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
986 // allows us to convert the shift and and into an h-register extract and
987 // a scaled index.
988 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
989 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +0000990 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000991 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000992 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +0000993 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
994 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
995 X, Eight);
996 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
997 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +0000998 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +0000999 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1000 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001001
1002 // Insert the new nodes into the topological ordering.
1003 if (Eight.getNode()->getNodeId() == -1 ||
1004 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1005 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1006 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1007 }
1008 if (Mask.getNode()->getNodeId() == -1 ||
1009 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1010 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1011 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1012 }
1013 if (Srl.getNode()->getNodeId() == -1 ||
1014 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1015 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1016 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1017 }
1018 if (And.getNode()->getNodeId() == -1 ||
1019 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1020 CurDAG->RepositionNode(N.getNode(), And.getNode());
1021 And.getNode()->setNodeId(N.getNode()->getNodeId());
1022 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001023 if (ShlCount.getNode()->getNodeId() == -1 ||
1024 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1025 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1026 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1027 }
1028 if (Shl.getNode()->getNodeId() == -1 ||
1029 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1030 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1031 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1032 }
Dan Gohmane5408102010-06-18 01:24:29 +00001033 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001034 AM.IndexReg = And;
1035 AM.Scale = (1 << ScaleLog);
1036 return false;
1037 }
1038 }
1039
1040 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1041 // allows us to fold the shift into this addressing mode.
1042 if (Shift.getOpcode() != ISD::SHL) break;
1043
Evan Cheng1314b002007-12-13 00:43:27 +00001044 // Not likely to be profitable if either the AND or SHIFT node has more
1045 // than one use (unless all uses are for address computation). Besides,
1046 // isel mechanism requires their node ids to be reused.
1047 if (!N.hasOneUse() || !Shift.hasOneUse())
1048 break;
1049
1050 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001051 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001052 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1053 break;
1054
1055 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001056 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001057 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001058 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1059 NewANDMask);
1060 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001061 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001062
1063 // Insert the new nodes into the topological ordering.
1064 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1065 CurDAG->RepositionNode(X.getNode(), C1);
1066 C1->setNodeId(X.getNode()->getNodeId());
1067 }
1068 if (NewANDMask.getNode()->getNodeId() == -1 ||
1069 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1070 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1071 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1072 }
1073 if (NewAND.getNode()->getNodeId() == -1 ||
1074 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1075 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1076 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1077 }
1078 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1079 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1080 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1081 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1082 }
1083
Dan Gohmane5408102010-06-18 01:24:29 +00001084 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001085
1086 AM.Scale = 1 << ShiftCst;
1087 AM.IndexReg = NewAND;
1088 return false;
1089 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001090 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001091
Rafael Espindola523249f2009-03-31 16:16:57 +00001092 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001093}
1094
1095/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1096/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001097bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001098 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001099 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001100 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001101 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001102 AM.IndexReg = N;
1103 AM.Scale = 1;
1104 return false;
1105 }
1106
1107 // Otherwise, we cannot select it.
1108 return true;
1109 }
1110
1111 // Default, generate it as a register.
1112 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001113 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001114 return false;
1115}
1116
Evan Chengec693f72005-12-08 02:01:35 +00001117/// SelectAddr - returns true if it is able pattern match an addressing mode.
1118/// It returns the operands which make up the maximal addressing mode it can
1119/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001120///
1121/// Parent is the parent node of the addr operand that is being matched. It
1122/// is always a load, store, atomic node, or null. It is only null when
1123/// checking memory operands for inline asm nodes.
1124bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001125 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001126 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001127 X86ISelAddressMode AM;
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001128
1129 if (Parent &&
1130 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1131 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001132 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001133 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
1134 Parent->getOpcode() != X86ISD::TLSCALL) { // Fixme
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001135 unsigned AddrSpace =
1136 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1137 // AddrSpace 256 -> GS, 257 -> FS.
1138 if (AddrSpace == 256)
1139 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1140 if (AddrSpace == 257)
1141 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1142 }
1143
Evan Chengc7928f82009-12-18 01:59:21 +00001144 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001145 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001146
Owen Andersone50ed302009-08-10 22:56:29 +00001147 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001148 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001149 if (!AM.Base_Reg.getNode())
1150 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001151 }
Evan Cheng8700e142006-01-11 06:09:51 +00001152
Gabor Greifba36cb52008-08-28 21:40:38 +00001153 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001154 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001155
Rafael Espindola094fad32009-04-08 21:14:34 +00001156 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001157 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001158}
1159
Chris Lattner3a7cd952006-10-07 21:55:32 +00001160/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1161/// match a load whose top elements are either undef or zeros. The load flavor
1162/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001163///
1164/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001165/// PatternChainNode: this is the matched node that has a chain input and
1166/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001167bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001168 SDValue N, SDValue &Base,
1169 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001170 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001171 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001172 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001173 PatternNodeWithChain = N.getOperand(0);
1174 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1175 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001176 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001177 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001178 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001179 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001180 return false;
1181 return true;
1182 }
1183 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001184
1185 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001186 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001187 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001188 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001189 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001190 N.getOperand(0).getNode()->hasOneUse() &&
1191 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001192 N.getOperand(0).getOperand(0).hasOneUse() &&
1193 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001194 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001195 // Okay, this is a zero extending load. Fold it.
1196 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001197 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001198 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001199 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001200 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001201 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001202 return false;
1203}
1204
1205
Evan Cheng51a9ed92006-02-25 10:09:08 +00001206/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1207/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001208bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001209 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001210 SDValue &Index, SDValue &Disp,
1211 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001212 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001213
1214 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1215 // segments.
1216 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001217 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001218 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001219 if (MatchAddress(N, AM))
1220 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001221 assert (T == AM.Segment);
1222 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001223
Owen Andersone50ed302009-08-10 22:56:29 +00001224 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001225 unsigned Complexity = 0;
1226 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001227 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001228 Complexity = 1;
1229 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001230 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001231 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1232 Complexity = 4;
1233
Gabor Greifba36cb52008-08-28 21:40:38 +00001234 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001235 Complexity++;
1236 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001237 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001238
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001239 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1240 // a simple shift.
1241 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001242 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001243
1244 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1245 // to a LEA. This is determined with some expermentation but is by no means
1246 // optimal (especially for code size consideration). LEA is nice because of
1247 // its three-address nature. Tweak the cost function again when we can run
1248 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001249 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001250 // For X86-64, we should always use lea to materialize RIP relative
1251 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001252 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001253 Complexity = 4;
1254 else
1255 Complexity += 2;
1256 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001257
Dan Gohmanffce6f12010-04-29 23:30:41 +00001258 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001259 Complexity++;
1260
Chris Lattner25142782009-07-11 22:50:33 +00001261 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001262 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001263 return false;
1264
Chris Lattner25142782009-07-11 22:50:33 +00001265 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1266 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001267}
1268
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001269/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001270bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001271 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001272 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001273 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1274 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Eric Christopher30ef0e52010-06-03 04:07:48 +00001275
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001276 X86ISelAddressMode AM;
1277 AM.GV = GA->getGlobal();
1278 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001279 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001280 AM.SymbolFlags = GA->getTargetFlags();
1281
Owen Anderson825b72b2009-08-11 20:47:22 +00001282 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001283 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001284 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001285 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001286 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001287 }
1288
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001289 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1290 return true;
1291}
1292
1293
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001294bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001295 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001296 SDValue &Index, SDValue &Disp,
1297 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001298 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1299 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001300 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001301 return false;
1302
Chris Lattnerb86faa12010-09-21 22:07:31 +00001303 return SelectAddr(N.getNode(),
1304 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001305}
1306
Dan Gohman8b746962008-09-23 18:22:58 +00001307/// getGlobalBaseReg - Return an SDNode that returns the value of
1308/// the global base register. Output instructions required to
1309/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001310///
Evan Cheng9ade2182006-08-26 05:34:46 +00001311SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001312 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001313 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001314}
1315
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001316SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1317 SDValue Chain = Node->getOperand(0);
1318 SDValue In1 = Node->getOperand(1);
1319 SDValue In2L = Node->getOperand(2);
1320 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001321 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001322 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001323 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001324 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1325 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1326 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1327 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1328 MVT::i32, MVT::i32, MVT::Other, Ops,
1329 array_lengthof(Ops));
1330 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1331 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001332}
Christopher Lambc59e5212007-08-10 21:48:46 +00001333
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001334// FIXME: Figure out some way to unify this with the 'or' and other code
1335// below.
Owen Andersone50ed302009-08-10 22:56:29 +00001336SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001337 if (Node->hasAnyUseOfValue(0))
1338 return 0;
1339
1340 // Optimize common patterns for __sync_add_and_fetch and
1341 // __sync_sub_and_fetch where the result is not used. This allows us
1342 // to use "lock" version of add, sub, inc, dec instructions.
1343 // FIXME: Do not use special instructions but instead add the "lock"
1344 // prefix to the target node somehow. The extra information will then be
1345 // transferred to machine instruction and it denotes the prefix.
1346 SDValue Chain = Node->getOperand(0);
1347 SDValue Ptr = Node->getOperand(1);
1348 SDValue Val = Node->getOperand(2);
1349 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001350 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001351 return 0;
1352
1353 bool isInc = false, isDec = false, isSub = false, isCN = false;
1354 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001355 if (CN && CN->getSExtValue() == (int32_t)CN->getSExtValue()) {
Evan Cheng37b73872009-07-30 08:33:02 +00001356 isCN = true;
1357 int64_t CNVal = CN->getSExtValue();
1358 if (CNVal == 1)
1359 isInc = true;
1360 else if (CNVal == -1)
1361 isDec = true;
1362 else if (CNVal >= 0)
1363 Val = CurDAG->getTargetConstant(CNVal, NVT);
1364 else {
1365 isSub = true;
1366 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1367 }
1368 } else if (Val.hasOneUse() &&
1369 Val.getOpcode() == ISD::SUB &&
1370 X86::isZeroNode(Val.getOperand(0))) {
1371 isSub = true;
1372 Val = Val.getOperand(1);
1373 }
1374
Eric Christophere3997d42011-07-01 23:04:38 +00001375 DebugLoc dl = Node->getDebugLoc();
Evan Cheng37b73872009-07-30 08:33:02 +00001376 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001377 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001378 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001379 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001380 if (isInc)
1381 Opc = X86::LOCK_INC8m;
1382 else if (isDec)
1383 Opc = X86::LOCK_DEC8m;
1384 else if (isSub) {
1385 if (isCN)
1386 Opc = X86::LOCK_SUB8mi;
1387 else
1388 Opc = X86::LOCK_SUB8mr;
1389 } else {
1390 if (isCN)
1391 Opc = X86::LOCK_ADD8mi;
1392 else
1393 Opc = X86::LOCK_ADD8mr;
1394 }
1395 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001396 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001397 if (isInc)
1398 Opc = X86::LOCK_INC16m;
1399 else if (isDec)
1400 Opc = X86::LOCK_DEC16m;
1401 else if (isSub) {
1402 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001403 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001404 Opc = X86::LOCK_SUB16mi8;
1405 else
1406 Opc = X86::LOCK_SUB16mi;
1407 } else
1408 Opc = X86::LOCK_SUB16mr;
1409 } else {
1410 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001411 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001412 Opc = X86::LOCK_ADD16mi8;
1413 else
1414 Opc = X86::LOCK_ADD16mi;
1415 } else
1416 Opc = X86::LOCK_ADD16mr;
1417 }
1418 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001419 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001420 if (isInc)
1421 Opc = X86::LOCK_INC32m;
1422 else if (isDec)
1423 Opc = X86::LOCK_DEC32m;
1424 else if (isSub) {
1425 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001426 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001427 Opc = X86::LOCK_SUB32mi8;
1428 else
1429 Opc = X86::LOCK_SUB32mi;
1430 } else
1431 Opc = X86::LOCK_SUB32mr;
1432 } else {
1433 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001434 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001435 Opc = X86::LOCK_ADD32mi8;
1436 else
1437 Opc = X86::LOCK_ADD32mi;
1438 } else
1439 Opc = X86::LOCK_ADD32mr;
1440 }
1441 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001442 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001443 if (isInc)
1444 Opc = X86::LOCK_INC64m;
1445 else if (isDec)
1446 Opc = X86::LOCK_DEC64m;
1447 else if (isSub) {
1448 Opc = X86::LOCK_SUB64mr;
1449 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001450 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001451 Opc = X86::LOCK_SUB64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001452 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001453 Opc = X86::LOCK_SUB64mi32;
1454 }
1455 } else {
1456 Opc = X86::LOCK_ADD64mr;
1457 if (isCN) {
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001458 if (immSext8(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001459 Opc = X86::LOCK_ADD64mi8;
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +00001460 else if (i64immSExt32(Val.getNode()))
Evan Cheng37b73872009-07-30 08:33:02 +00001461 Opc = X86::LOCK_ADD64mi32;
1462 }
1463 }
1464 break;
1465 }
1466
Chris Lattner518bb532010-02-09 19:54:29 +00001467 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001468 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001469 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1470 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001471 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001472 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1473 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1474 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001475 SDValue RetVals[] = { Undef, Ret };
1476 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1477 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001478 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1479 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1480 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001481 SDValue RetVals[] = { Undef, Ret };
1482 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1483 }
1484}
1485
Eric Christopher8102bf02011-05-17 07:47:55 +00001486enum AtomicOpc {
Eric Christopher811c2b72011-05-17 07:50:41 +00001487 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001488 AND,
1489 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001490 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001491};
1492
1493enum AtomicSz {
1494 ConstantI8,
1495 I8,
1496 SextConstantI16,
1497 ConstantI16,
1498 I16,
1499 SextConstantI32,
1500 ConstantI32,
1501 I32,
1502 SextConstantI64,
1503 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001504 I64,
1505 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001506};
1507
Eric Christopher811c2b72011-05-17 07:50:41 +00001508static const unsigned int AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001509 {
1510 X86::LOCK_OR8mi,
1511 X86::LOCK_OR8mr,
1512 X86::LOCK_OR16mi8,
1513 X86::LOCK_OR16mi,
1514 X86::LOCK_OR16mr,
1515 X86::LOCK_OR32mi8,
1516 X86::LOCK_OR32mi,
1517 X86::LOCK_OR32mr,
1518 X86::LOCK_OR64mi8,
1519 X86::LOCK_OR64mi32,
1520 X86::LOCK_OR64mr
Eric Christopherc324f722011-05-17 08:10:18 +00001521 },
1522 {
1523 X86::LOCK_AND8mi,
1524 X86::LOCK_AND8mr,
1525 X86::LOCK_AND16mi8,
1526 X86::LOCK_AND16mi,
1527 X86::LOCK_AND16mr,
1528 X86::LOCK_AND32mi8,
1529 X86::LOCK_AND32mi,
1530 X86::LOCK_AND32mr,
1531 X86::LOCK_AND64mi8,
1532 X86::LOCK_AND64mi32,
1533 X86::LOCK_AND64mr
1534 },
1535 {
1536 X86::LOCK_XOR8mi,
1537 X86::LOCK_XOR8mr,
1538 X86::LOCK_XOR16mi8,
1539 X86::LOCK_XOR16mi,
1540 X86::LOCK_XOR16mr,
1541 X86::LOCK_XOR32mi8,
1542 X86::LOCK_XOR32mi,
1543 X86::LOCK_XOR32mr,
1544 X86::LOCK_XOR64mi8,
1545 X86::LOCK_XOR64mi32,
1546 X86::LOCK_XOR64mr
Eric Christopherc493a1f2011-05-11 21:44:58 +00001547 }
1548};
1549
Eric Christopherc324f722011-05-17 08:10:18 +00001550SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001551 if (Node->hasAnyUseOfValue(0))
1552 return 0;
1553
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001554 // Optimize common patterns for __sync_or_and_fetch and similar arith
1555 // operations where the result is not used. This allows us to use the "lock"
1556 // version of the arithmetic instruction.
1557 // FIXME: Same as for 'add' and 'sub', try to merge those down here.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001558 SDValue Chain = Node->getOperand(0);
1559 SDValue Ptr = Node->getOperand(1);
1560 SDValue Val = Node->getOperand(2);
1561 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1562 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1563 return 0;
1564
Eric Christopherc324f722011-05-17 08:10:18 +00001565 // Which index into the table.
1566 enum AtomicOpc Op;
1567 switch (Node->getOpcode()) {
1568 case ISD::ATOMIC_LOAD_OR:
1569 Op = OR;
1570 break;
1571 case ISD::ATOMIC_LOAD_AND:
1572 Op = AND;
1573 break;
1574 case ISD::ATOMIC_LOAD_XOR:
1575 Op = XOR;
1576 break;
1577 default:
1578 return 0;
1579 }
1580
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001581 bool isCN = false;
1582 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
Eric Christophere3997d42011-07-01 23:04:38 +00001583 if (CN && (int32_t)CN->getSExtValue() == CN->getSExtValue()) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001584 isCN = true;
1585 Val = CurDAG->getTargetConstant(CN->getSExtValue(), NVT);
1586 }
1587
1588 unsigned Opc = 0;
1589 switch (NVT.getSimpleVT().SimpleTy) {
1590 default: return 0;
1591 case MVT::i8:
1592 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001593 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001594 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001595 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001596 break;
1597 case MVT::i16:
1598 if (isCN) {
1599 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001600 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001601 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001602 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001603 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001604 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001605 break;
1606 case MVT::i32:
1607 if (isCN) {
1608 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001609 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001610 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001611 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001612 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001613 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001614 break;
1615 case MVT::i64:
Eric Christopher5d8aa342011-06-30 00:48:30 +00001616 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001617 if (isCN) {
1618 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001619 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001620 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001621 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopher5d8aa342011-06-30 00:48:30 +00001622 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001623 break;
1624 }
1625
Eric Christopher5d8aa342011-06-30 00:48:30 +00001626 assert(Opc != 0 && "Invalid arith lock transform!");
1627
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001628 DebugLoc dl = Node->getDebugLoc();
1629 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1630 dl, NVT), 0);
1631 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1632 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1633 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1634 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1635 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1636 SDValue RetVals[] = { Undef, Ret };
1637 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1638}
1639
Dan Gohman11596ed2009-10-09 20:35:19 +00001640/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1641/// any uses which require the SF or OF bits to be accurate.
1642static bool HasNoSignedComparisonUses(SDNode *N) {
1643 // Examine each user of the node.
1644 for (SDNode::use_iterator UI = N->use_begin(),
1645 UE = N->use_end(); UI != UE; ++UI) {
1646 // Only examine CopyToReg uses.
1647 if (UI->getOpcode() != ISD::CopyToReg)
1648 return false;
1649 // Only examine CopyToReg uses that copy to EFLAGS.
1650 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1651 X86::EFLAGS)
1652 return false;
1653 // Examine each user of the CopyToReg use.
1654 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1655 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1656 // Only examine the Flag result.
1657 if (FlagUI.getUse().getResNo() != 1) continue;
1658 // Anything unusual: assume conservatively.
1659 if (!FlagUI->isMachineOpcode()) return false;
1660 // Examine the opcode of the user.
1661 switch (FlagUI->getMachineOpcode()) {
1662 // These comparisons don't treat the most significant bit specially.
1663 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1664 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1665 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1666 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001667 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1668 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001669 case X86::CMOVA16rr: case X86::CMOVA16rm:
1670 case X86::CMOVA32rr: case X86::CMOVA32rm:
1671 case X86::CMOVA64rr: case X86::CMOVA64rm:
1672 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1673 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1674 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1675 case X86::CMOVB16rr: case X86::CMOVB16rm:
1676 case X86::CMOVB32rr: case X86::CMOVB32rm:
1677 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001678 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1679 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1680 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001681 case X86::CMOVE16rr: case X86::CMOVE16rm:
1682 case X86::CMOVE32rr: case X86::CMOVE32rm:
1683 case X86::CMOVE64rr: case X86::CMOVE64rm:
1684 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1685 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1686 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1687 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1688 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1689 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1690 case X86::CMOVP16rr: case X86::CMOVP16rm:
1691 case X86::CMOVP32rr: case X86::CMOVP32rm:
1692 case X86::CMOVP64rr: case X86::CMOVP64rm:
1693 continue;
1694 // Anything else: assume conservatively.
1695 default: return false;
1696 }
1697 }
1698 }
1699 return true;
1700}
1701
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001702SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001703 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001704 unsigned Opc, MOpc;
1705 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001706 DebugLoc dl = Node->getDebugLoc();
1707
Chris Lattner7c306da2010-03-02 06:34:30 +00001708 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001709
Dan Gohmane8be6c62008-07-17 19:10:17 +00001710 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001711 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001712 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001713 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001714
Evan Cheng0114e942006-01-06 20:36:21 +00001715 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001716 default: break;
1717 case X86ISD::GlobalBaseReg:
1718 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001719
Dan Gohman72677342009-08-02 16:10:52 +00001720 case X86ISD::ATOMOR64_DAG:
1721 return SelectAtomic64(Node, X86::ATOMOR6432);
1722 case X86ISD::ATOMXOR64_DAG:
1723 return SelectAtomic64(Node, X86::ATOMXOR6432);
1724 case X86ISD::ATOMADD64_DAG:
1725 return SelectAtomic64(Node, X86::ATOMADD6432);
1726 case X86ISD::ATOMSUB64_DAG:
1727 return SelectAtomic64(Node, X86::ATOMSUB6432);
1728 case X86ISD::ATOMNAND64_DAG:
1729 return SelectAtomic64(Node, X86::ATOMNAND6432);
1730 case X86ISD::ATOMAND64_DAG:
1731 return SelectAtomic64(Node, X86::ATOMAND6432);
1732 case X86ISD::ATOMSWAP64_DAG:
1733 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001734
Dan Gohman72677342009-08-02 16:10:52 +00001735 case ISD::ATOMIC_LOAD_ADD: {
1736 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1737 if (RetVal)
1738 return RetVal;
1739 break;
1740 }
Eric Christopherc324f722011-05-17 08:10:18 +00001741 case ISD::ATOMIC_LOAD_XOR:
1742 case ISD::ATOMIC_LOAD_AND:
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001743 case ISD::ATOMIC_LOAD_OR: {
Eric Christopherc324f722011-05-17 08:10:18 +00001744 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001745 if (RetVal)
1746 return RetVal;
1747 break;
1748 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001749 case ISD::AND:
1750 case ISD::OR:
1751 case ISD::XOR: {
1752 // For operations of the form (x << C1) op C2, check if we can use a smaller
1753 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
1754 SDValue N0 = Node->getOperand(0);
1755 SDValue N1 = Node->getOperand(1);
1756
1757 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
1758 break;
1759
1760 // i8 is unshrinkable, i16 should be promoted to i32.
1761 if (NVT != MVT::i32 && NVT != MVT::i64)
1762 break;
1763
1764 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
1765 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
1766 if (!Cst || !ShlCst)
1767 break;
1768
1769 int64_t Val = Cst->getSExtValue();
1770 uint64_t ShlVal = ShlCst->getZExtValue();
1771
1772 // Make sure that we don't change the operation by removing bits.
1773 // This only matters for OR and XOR, AND is unaffected.
1774 if (Opcode != ISD::AND && ((Val >> ShlVal) << ShlVal) != Val)
1775 break;
1776
Benjamin Kramer20115612011-04-23 08:21:06 +00001777 unsigned ShlOp, Op = 0;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00001778 EVT CstVT = NVT;
1779
1780 // Check the minimum bitwidth for the new constant.
1781 // TODO: AND32ri is the same as AND64ri32 with zext imm.
1782 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
1783 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
1784 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
1785 CstVT = MVT::i8;
1786 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
1787 CstVT = MVT::i32;
1788
1789 // Bail if there is no smaller encoding.
1790 if (NVT == CstVT)
1791 break;
1792
1793 switch (NVT.getSimpleVT().SimpleTy) {
1794 default: llvm_unreachable("Unsupported VT!");
1795 case MVT::i32:
1796 assert(CstVT == MVT::i8);
1797 ShlOp = X86::SHL32ri;
1798
1799 switch (Opcode) {
1800 case ISD::AND: Op = X86::AND32ri8; break;
1801 case ISD::OR: Op = X86::OR32ri8; break;
1802 case ISD::XOR: Op = X86::XOR32ri8; break;
1803 }
1804 break;
1805 case MVT::i64:
1806 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
1807 ShlOp = X86::SHL64ri;
1808
1809 switch (Opcode) {
1810 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
1811 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
1812 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
1813 }
1814 break;
1815 }
1816
1817 // Emit the smaller op and the shift.
1818 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
1819 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
1820 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
1821 getI8Imm(ShlVal));
1822 break;
1823 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001824 case X86ISD::UMUL: {
1825 SDValue N0 = Node->getOperand(0);
1826 SDValue N1 = Node->getOperand(1);
1827
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001828 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001829 switch (NVT.getSimpleVT().SimpleTy) {
1830 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00001831 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
1832 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
1833 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
1834 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001835 }
1836
1837 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1838 N0, SDValue()).getValue(1);
1839
1840 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
1841 SDValue Ops[] = {N1, InFlag};
1842 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
1843
1844 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
1845 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
1846 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
1847 return NULL;
1848 }
1849
Dan Gohman72677342009-08-02 16:10:52 +00001850 case ISD::SMUL_LOHI:
1851 case ISD::UMUL_LOHI: {
1852 SDValue N0 = Node->getOperand(0);
1853 SDValue N1 = Node->getOperand(1);
1854
1855 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001856 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001857 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001858 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001859 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1860 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1861 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1862 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001863 }
Bill Wendling12321672009-08-07 21:33:25 +00001864 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001865 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001866 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001867 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1868 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1869 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1870 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001871 }
Bill Wendling12321672009-08-07 21:33:25 +00001872 }
Dan Gohman72677342009-08-02 16:10:52 +00001873
1874 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001875 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001876 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001877 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1878 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1879 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1880 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001881 }
1882
1883 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001884 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001885 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001886 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001887 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001888 if (foldedLoad)
1889 std::swap(N0, N1);
1890 }
1891
1892 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1893 N0, SDValue()).getValue(1);
1894
1895 if (foldedLoad) {
1896 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1897 InFlag };
1898 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001899 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00001900 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001901 InFlag = SDValue(CNode, 1);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001902
Dan Gohman72677342009-08-02 16:10:52 +00001903 // Update the chain.
1904 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1905 } else {
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00001906 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag);
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001907 InFlag = SDValue(CNode, 0);
Dan Gohman72677342009-08-02 16:10:52 +00001908 }
1909
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001910 // Prevent use of AH in a REX instruction by referencing AX instead.
1911 if (HiReg == X86::AH && Subtarget->is64Bit() &&
1912 !SDValue(Node, 1).use_empty()) {
1913 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1914 X86::AX, MVT::i16, InFlag);
1915 InFlag = Result.getValue(2);
1916 // Get the low part if needed. Don't use getCopyFromReg for aliasing
1917 // registers.
1918 if (!SDValue(Node, 0).use_empty())
1919 ReplaceUses(SDValue(Node, 1),
1920 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1921
1922 // Shift AX down 8 bits.
1923 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1924 Result,
1925 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1926 // Then truncate it down to i8.
1927 ReplaceUses(SDValue(Node, 1),
1928 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
1929 }
Dan Gohman72677342009-08-02 16:10:52 +00001930 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001931 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001932 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1933 LoReg, NVT, InFlag);
1934 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001935 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001936 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001937 }
1938 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001939 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00001940 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1941 HiReg, NVT, InFlag);
1942 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001943 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00001944 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00001945 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00001946
Dan Gohman72677342009-08-02 16:10:52 +00001947 return NULL;
1948 }
1949
1950 case ISD::SDIVREM:
1951 case ISD::UDIVREM: {
1952 SDValue N0 = Node->getOperand(0);
1953 SDValue N1 = Node->getOperand(1);
1954
1955 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001956 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001957 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001958 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001959 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1960 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1961 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1962 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001963 }
Bill Wendling12321672009-08-07 21:33:25 +00001964 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001965 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001966 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001967 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1968 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1969 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1970 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001971 }
Bill Wendling12321672009-08-07 21:33:25 +00001972 }
Dan Gohman72677342009-08-02 16:10:52 +00001973
Chris Lattner9e323832009-12-23 01:45:04 +00001974 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001975 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001976 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001977 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001978 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001979 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001980 ClrOpcode = 0;
1981 SExtOpcode = X86::CBW;
1982 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001983 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001984 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001985 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001986 SExtOpcode = X86::CWD;
1987 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001988 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001989 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001990 ClrOpcode = X86::MOV32r0;
1991 SExtOpcode = X86::CDQ;
1992 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001993 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001994 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001995 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001996 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001997 break;
1998 }
1999
Dan Gohman72677342009-08-02 16:10:52 +00002000 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002001 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002002 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002003
Dan Gohman72677342009-08-02 16:10:52 +00002004 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002005 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002006 // Special case for div8, just use a move with zero extension to AX to
2007 // clear the upper 8 bits (AH).
2008 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002009 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002010 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2011 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002012 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002013 MVT::Other, Ops,
2014 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002015 Chain = Move.getValue(1);
2016 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002017 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002018 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002019 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002020 Chain = CurDAG->getEntryNode();
2021 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002022 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002023 InFlag = Chain.getValue(1);
2024 } else {
2025 InFlag =
2026 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2027 LoReg, N0, SDValue()).getValue(1);
2028 if (isSigned && !signBitIsZero) {
2029 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002030 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002031 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002032 } else {
2033 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002034 SDValue ClrNode =
2035 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002036 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002037 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002038 }
Evan Cheng948f3432006-01-06 23:19:29 +00002039 }
Dan Gohman525178c2007-10-08 18:33:35 +00002040
Dan Gohman72677342009-08-02 16:10:52 +00002041 if (foldedLoad) {
2042 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2043 InFlag };
2044 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002045 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002046 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002047 InFlag = SDValue(CNode, 1);
2048 // Update the chain.
2049 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2050 } else {
2051 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002052 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002053 }
Evan Cheng948f3432006-01-06 23:19:29 +00002054
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002055 // Prevent use of AH in a REX instruction by referencing AX instead.
2056 // Shift it down 8 bits.
2057 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2058 !SDValue(Node, 1).use_empty()) {
2059 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2060 X86::AX, MVT::i16, InFlag);
2061 InFlag = Result.getValue(2);
2062
2063 // If we also need AL (the quotient), get it by extracting a subreg from
2064 // Result. The fast register allocator does not like multiple CopyFromReg
2065 // nodes using aliasing registers.
2066 if (!SDValue(Node, 0).use_empty())
2067 ReplaceUses(SDValue(Node, 0),
2068 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2069
2070 // Shift AX right by 8 bits instead of using AH.
2071 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2072 Result,
2073 CurDAG->getTargetConstant(8, MVT::i8)),
2074 0);
2075 ReplaceUses(SDValue(Node, 1),
2076 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2077 }
Dan Gohman72677342009-08-02 16:10:52 +00002078 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002079 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002080 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2081 LoReg, NVT, InFlag);
2082 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002083 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002084 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002085 }
2086 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002087 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002088 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2089 HiReg, NVT, InFlag);
2090 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002091 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002092 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002093 }
Dan Gohman72677342009-08-02 16:10:52 +00002094 return NULL;
2095 }
2096
Dan Gohman6a402dc2009-08-19 18:16:17 +00002097 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002098 SDValue N0 = Node->getOperand(0);
2099 SDValue N1 = Node->getOperand(1);
2100
2101 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2102 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002103 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2104 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002105 // Look past the truncate if CMP is the only use of it.
2106 N0 = N0.getOperand(0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002107 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2108 N0.getValueType() != MVT::i8 &&
2109 X86::isZeroNode(N1)) {
2110 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2111 if (!C) break;
2112
2113 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002114 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2115 (!(C->getZExtValue() & 0x80) ||
2116 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002117 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2118 SDValue Reg = N0.getNode()->getOperand(0);
2119
2120 // On x86-32, only the ABCD registers have 8-bit subregisters.
2121 if (!Subtarget->is64Bit()) {
2122 TargetRegisterClass *TRC = 0;
2123 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2124 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2125 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2126 default: llvm_unreachable("Unsupported TEST operand type!");
2127 }
2128 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002129 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2130 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002131 }
2132
2133 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002134 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002135 MVT::i8, Reg);
2136
2137 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002138 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002139 }
2140
2141 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002142 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2143 (!(C->getZExtValue() & 0x8000) ||
2144 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002145 // Shift the immediate right by 8 bits.
2146 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2147 MVT::i8);
2148 SDValue Reg = N0.getNode()->getOperand(0);
2149
2150 // Put the value in an ABCD register.
2151 TargetRegisterClass *TRC = 0;
2152 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2153 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2154 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2155 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2156 default: llvm_unreachable("Unsupported TEST operand type!");
2157 }
2158 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002159 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2160 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002161
2162 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002163 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002164 MVT::i8, Reg);
2165
2166 // Emit a testb. No special NOREX tricks are needed since there's
2167 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002168 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2169 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002170 }
2171
2172 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2173 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002174 N0.getValueType() != MVT::i16 &&
2175 (!(C->getZExtValue() & 0x8000) ||
2176 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002177 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2178 SDValue Reg = N0.getNode()->getOperand(0);
2179
2180 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002181 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002182 MVT::i16, Reg);
2183
2184 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002185 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002186 }
2187
2188 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2189 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002190 N0.getValueType() == MVT::i64 &&
2191 (!(C->getZExtValue() & 0x80000000) ||
2192 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002193 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2194 SDValue Reg = N0.getNode()->getOperand(0);
2195
2196 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002197 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002198 MVT::i32, Reg);
2199
2200 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002201 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002202 }
2203 }
2204 break;
2205 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002206 }
2207
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002208 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002209
Chris Lattner7c306da2010-03-02 06:34:30 +00002210 DEBUG(dbgs() << "=> ";
2211 if (ResNode == NULL || ResNode == Node)
2212 Node->dump(CurDAG);
2213 else
2214 ResNode->dump(CurDAG);
2215 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002216
2217 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002218}
2219
Chris Lattnerc0bad572006-06-08 18:03:49 +00002220bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002221SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002222 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002223 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002224 switch (ConstraintCode) {
2225 case 'o': // offsetable ??
2226 case 'v': // not offsetable ??
2227 default: return true;
2228 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002229 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002230 return true;
2231 break;
2232 }
2233
Evan Cheng04699902006-08-26 01:05:16 +00002234 OutOps.push_back(Op0);
2235 OutOps.push_back(Op1);
2236 OutOps.push_back(Op2);
2237 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002238 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002239 return false;
2240}
2241
Chris Lattnerc961eea2005-11-16 01:54:32 +00002242/// createX86ISelDag - This pass converts a legalized DAG into a
2243/// X86-specific DAG, ready for instruction scheduling.
2244///
Bill Wendling98a366d2009-04-29 23:29:43 +00002245FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2246 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002247 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002248}