blob: 6dcc497240ea7f1c486ec8ed7ad9c0f0f5d6913e [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +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
Daniel Dunbar95734fc2009-11-10 18:24:37 +000015// Force NDEBUG on in any optimized build on Darwin.
16//
17// FIXME: This is a huge hack, to work around ridiculously awful compile times
18// on this file with gcc-4.2 on Darwin, in Release mode.
Daniel Dunbar7eef4c72009-11-11 00:28:38 +000019#if (!defined(__llvm__) && defined(__APPLE__) && \
20 defined(__OPTIMIZE__) && !defined(NDEBUG))
Daniel Dunbar95734fc2009-11-10 18:24:37 +000021#define NDEBUG
22#endif
23
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024#define DEBUG_TYPE "x86-isel"
25#include "X86.h"
26#include "X86InstrBuilder.h"
27#include "X86ISelLowering.h"
Evan Cheng0729ccf2008-01-05 00:41:47 +000028#include "X86MachineFunctionInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029#include "X86RegisterInfo.h"
30#include "X86Subtarget.h"
31#include "X86TargetMachine.h"
32#include "llvm/GlobalValue.h"
33#include "llvm/Instructions.h"
34#include "llvm/Intrinsics.h"
35#include "llvm/Support/CFG.h"
36#include "llvm/Type.h"
37#include "llvm/CodeGen/MachineConstantPool.h"
38#include "llvm/CodeGen/MachineFunction.h"
39#include "llvm/CodeGen/MachineFrameInfo.h"
40#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner1b989192007-12-31 04:13:23 +000041#include "llvm/CodeGen/MachineRegisterInfo.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000042#include "llvm/CodeGen/SelectionDAGISel.h"
43#include "llvm/Target/TargetMachine.h"
Evan Cheng13559d62008-09-26 23:41:32 +000044#include "llvm/Target/TargetOptions.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045#include "llvm/Support/Debug.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000046#include "llvm/Support/ErrorHandling.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047#include "llvm/Support/MathExtras.h"
Edwin Török4d9756a2009-07-08 20:53:28 +000048#include "llvm/Support/raw_ostream.h"
Evan Cheng656269e2008-04-25 08:22:20 +000049#include "llvm/ADT/SmallPtrSet.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000050#include "llvm/ADT/Statistic.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051using namespace llvm;
52
Dan Gohmanf17a25c2007-07-18 16:29:46 +000053STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
54
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055//===----------------------------------------------------------------------===//
56// Pattern Matcher Implementation
57//===----------------------------------------------------------------------===//
58
59namespace {
60 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman8181bd12008-07-27 21:46:04 +000061 /// SDValue's instead of register numbers for the leaves of the matched
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 /// tree.
63 struct X86ISelAddressMode {
64 enum {
65 RegBase,
66 FrameIndexBase
67 } BaseType;
68
69 struct { // This is really a union, discriminated by BaseType!
Dan Gohman8181bd12008-07-27 21:46:04 +000070 SDValue Reg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000071 int FrameIndex;
72 } Base;
73
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074 unsigned Scale;
Dan Gohman8181bd12008-07-27 21:46:04 +000075 SDValue IndexReg;
Dan Gohman0bd76b72008-11-11 15:52:29 +000076 int32_t Disp;
Rafael Espindolabca99f72009-04-08 21:14:34 +000077 SDValue Segment;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 GlobalValue *GV;
79 Constant *CP;
Chris Lattner03796ee2009-11-01 03:25:03 +000080 BlockAddress *BlockAddr;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000081 const char *ES;
82 int JT;
83 unsigned Align; // CP alignment.
Chris Lattner8969a732009-06-26 05:51:45 +000084 unsigned char SymbolFlags; // X86II::MO_*
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085
86 X86ISelAddressMode()
Chris Lattnerdc6fc472009-06-27 04:16:01 +000087 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner03796ee2009-11-01 03:25:03 +000088 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman814c2ea2009-08-25 17:47:44 +000089 SymbolFlags(X86II::MO_NO_FLAG) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 }
Dan Gohman245791b2009-02-07 00:43:41 +000091
92 bool hasSymbolicDisplacement() const {
Chris Lattner03796ee2009-11-01 03:25:03 +000093 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman245791b2009-02-07 00:43:41 +000094 }
Chris Lattnerdc6fc472009-06-27 04:16:01 +000095
96 bool hasBaseOrIndexReg() const {
97 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
98 }
99
100 /// isRIPRelative - Return true if this addressing mode is already RIP
101 /// relative.
102 bool isRIPRelative() const {
103 if (BaseType != RegBase) return false;
104 if (RegisterSDNode *RegNode =
105 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
106 return RegNode->getReg() == X86::RIP;
107 return false;
108 }
109
110 void setBaseReg(SDValue Reg) {
111 BaseType = RegBase;
112 Base.Reg = Reg;
113 }
Dan Gohman245791b2009-02-07 00:43:41 +0000114
Dale Johannesenc501c082008-08-11 23:46:25 +0000115 void dump() {
David Greeneb592f222010-01-05 01:29:08 +0000116 dbgs() << "X86ISelAddressMode " << this << '\n';
117 dbgs() << "Base.Reg ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000118 if (Base.Reg.getNode() != 0)
119 Base.Reg.getNode()->dump();
120 else
David Greeneb592f222010-01-05 01:29:08 +0000121 dbgs() << "nul";
122 dbgs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
Benjamin Kramer7966fe82009-08-23 11:52:17 +0000123 << " Scale" << Scale << '\n'
124 << "IndexReg ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000125 if (IndexReg.getNode() != 0)
126 IndexReg.getNode()->dump();
127 else
David Greeneb592f222010-01-05 01:29:08 +0000128 dbgs() << "nul";
129 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer7966fe82009-08-23 11:52:17 +0000130 << "GV ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000131 if (GV)
132 GV->dump();
133 else
David Greeneb592f222010-01-05 01:29:08 +0000134 dbgs() << "nul";
135 dbgs() << " CP ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000136 if (CP)
137 CP->dump();
138 else
David Greeneb592f222010-01-05 01:29:08 +0000139 dbgs() << "nul";
140 dbgs() << '\n'
Benjamin Kramer7966fe82009-08-23 11:52:17 +0000141 << "ES ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000142 if (ES)
David Greeneb592f222010-01-05 01:29:08 +0000143 dbgs() << ES;
Bill Wendlingc551eff2009-08-07 21:33:25 +0000144 else
David Greeneb592f222010-01-05 01:29:08 +0000145 dbgs() << "nul";
146 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesenc501c082008-08-11 23:46:25 +0000147 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000148 };
149}
150
151namespace {
152 //===--------------------------------------------------------------------===//
153 /// ISel - X86 specific code to select X86 machine instructions for
154 /// SelectionDAG operations.
155 ///
Nick Lewycky492d06e2009-10-25 06:33:48 +0000156 class X86DAGToDAGISel : public SelectionDAGISel {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000157 /// X86Lowering - This object fully describes how to lower LLVM code to an
158 /// X86-specific SelectionDAG.
Dan Gohmanf2b29572008-10-03 16:55:19 +0000159 X86TargetLowering &X86Lowering;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000160
161 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
162 /// make the right decision when generating code for different targets.
163 const X86Subtarget *Subtarget;
164
Evan Cheng13559d62008-09-26 23:41:32 +0000165 /// OptForSize - If true, selector should try to optimize for code size
166 /// instead of performance.
167 bool OptForSize;
168
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000169 public:
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000170 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendling58ed5d22009-04-29 00:15:41 +0000171 : SelectionDAGISel(tm, OptLevel),
Dan Gohman4261ed32009-06-03 20:20:00 +0000172 X86Lowering(*tm.getTargetLowering()),
173 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel93698d92008-10-01 23:18:38 +0000174 OptForSize(false) {}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000175
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000176 virtual const char *getPassName() const {
177 return "X86 DAG->DAG Instruction Selection";
178 }
179
Evan Cheng34fd4f32008-06-30 20:45:06 +0000180 /// InstructionSelect - This callback is invoked by
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000181 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000182 virtual void InstructionSelect();
Evan Cheng34fd4f32008-06-30 20:45:06 +0000183
Anton Korobeynikov34ef31e2007-09-25 21:52:30 +0000184 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
185
Evan Chengf80681e2010-02-15 19:41:07 +0000186 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
187
188 virtual bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root) const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000189
190// Include the pieces autogenerated from the target description.
191#include "X86GenDAGISel.inc"
192
193 private:
Dan Gohman5f082a72010-01-05 01:24:18 +0000194 SDNode *Select(SDNode *N);
Dale Johannesenf160d802008-10-02 18:53:47 +0000195 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersonac9de032009-08-10 22:56:29 +0000196 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000197
Rafael Espindolabca99f72009-04-08 21:14:34 +0000198 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
199 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola84218fe2009-04-12 21:55:03 +0000200 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman3dffbbf2009-07-22 23:26:55 +0000201 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
202 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
203 unsigned Depth);
Rafael Espindola515c13e2009-03-31 16:16:57 +0000204 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohman5f082a72010-01-05 01:24:18 +0000205 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindolabca99f72009-04-08 21:14:34 +0000206 SDValue &Scale, SDValue &Index, SDValue &Disp,
207 SDValue &Segment);
Dan Gohman5f082a72010-01-05 01:24:18 +0000208 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman8181bd12008-07-27 21:46:04 +0000209 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohman5f082a72010-01-05 01:24:18 +0000210 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattnerf1940742009-06-20 20:38:48 +0000211 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattnerecbbf492010-02-16 22:35:06 +0000212 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
213 SDValue &Base, SDValue &Scale,
Dan Gohman8181bd12008-07-27 21:46:04 +0000214 SDValue &Index, SDValue &Disp,
Rafael Espindolabca99f72009-04-08 21:14:34 +0000215 SDValue &Segment,
Chris Lattner52b513d2010-02-17 06:07:47 +0000216 SDValue &PatternChainResult,
217 SDValue &PatternInputChain);
Dan Gohman5f082a72010-01-05 01:24:18 +0000218 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman8181bd12008-07-27 21:46:04 +0000219 SDValue &Base, SDValue &Scale,
Rafael Espindolabca99f72009-04-08 21:14:34 +0000220 SDValue &Index, SDValue &Disp,
221 SDValue &Segment);
Dan Gohman14a66442008-08-23 02:25:05 +0000222 void PreprocessForRMW();
223 void PreprocessForFPConvert();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000224
225 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
226 /// inline asm expressions.
Dan Gohman8181bd12008-07-27 21:46:04 +0000227 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000228 char ConstraintCode,
Dan Gohman14a66442008-08-23 02:25:05 +0000229 std::vector<SDValue> &OutOps);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000230
Anton Korobeynikov34ef31e2007-09-25 21:52:30 +0000231 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
232
Dan Gohman8181bd12008-07-27 21:46:04 +0000233 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
234 SDValue &Scale, SDValue &Index,
Rafael Espindolabca99f72009-04-08 21:14:34 +0000235 SDValue &Disp, SDValue &Segment) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000236 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
237 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
238 AM.Base.Reg;
239 Scale = getI8Imm(AM.Scale);
240 Index = AM.IndexReg;
241 // These are 32-bit even in 64-bit mode since RIP relative offset
242 // is 32-bit.
243 if (AM.GV)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000244 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattner8969a732009-06-26 05:51:45 +0000245 AM.SymbolFlags);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000246 else if (AM.CP)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattner8969a732009-06-26 05:51:45 +0000248 AM.Align, AM.Disp, AM.SymbolFlags);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000249 else if (AM.ES)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000251 else if (AM.JT != -1)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000252 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner03796ee2009-11-01 03:25:03 +0000253 else if (AM.BlockAddr)
Dan Gohman885793b2009-11-20 23:18:13 +0000254 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
255 true, AM.SymbolFlags);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000256 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000257 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindolabca99f72009-04-08 21:14:34 +0000258
259 if (AM.Segment.getNode())
260 Segment = AM.Segment;
261 else
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000262 Segment = CurDAG->getRegister(0, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000263 }
264
265 /// getI8Imm - Return a target constant with the specified value, of type
266 /// i8.
Dan Gohman8181bd12008-07-27 21:46:04 +0000267 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000268 return CurDAG->getTargetConstant(Imm, MVT::i8);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000269 }
270
271 /// getI16Imm - Return a target constant with the specified value, of type
272 /// i16.
Dan Gohman8181bd12008-07-27 21:46:04 +0000273 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000274 return CurDAG->getTargetConstant(Imm, MVT::i16);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000275 }
276
277 /// getI32Imm - Return a target constant with the specified value, of type
278 /// i32.
Dan Gohman8181bd12008-07-27 21:46:04 +0000279 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000280 return CurDAG->getTargetConstant(Imm, MVT::i32);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000281 }
282
Dan Gohmanb60482f2008-09-23 18:22:58 +0000283 /// getGlobalBaseReg - Return an SDNode that returns the value of
284 /// the global base register. Output instructions required to
285 /// initialize the global base register, if necessary.
286 ///
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000287 SDNode *getGlobalBaseReg();
288
Dan Gohman4261ed32009-06-03 20:20:00 +0000289 /// getTargetMachine - Return a reference to the TargetMachine, casted
290 /// to the target-specific type.
291 const X86TargetMachine &getTargetMachine() {
292 return static_cast<const X86TargetMachine &>(TM);
293 }
294
295 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
296 /// to the target-specific type.
297 const X86InstrInfo *getInstrInfo() {
298 return getTargetMachine().getInstrInfo();
299 }
300
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000301#ifndef NDEBUG
302 unsigned Indent;
303#endif
304 };
305}
306
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000307
Evan Chengf80681e2010-02-15 19:41:07 +0000308bool
309X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000310 if (OptLevel == CodeGenOpt::None) return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000311
Evan Chengf80681e2010-02-15 19:41:07 +0000312 if (!N.hasOneUse())
313 return false;
314
315 if (N.getOpcode() != ISD::LOAD)
316 return true;
317
318 // If N is a load, do additional profitability checks.
319 if (U == Root) {
Evan Cheng5a424552008-11-27 00:49:46 +0000320 switch (U->getOpcode()) {
321 default: break;
Dan Gohmanf23790a2010-01-04 20:51:50 +0000322 case X86ISD::ADD:
323 case X86ISD::SUB:
324 case X86ISD::AND:
325 case X86ISD::XOR:
326 case X86ISD::OR:
Evan Cheng5a424552008-11-27 00:49:46 +0000327 case ISD::ADD:
328 case ISD::ADDC:
329 case ISD::ADDE:
330 case ISD::AND:
331 case ISD::OR:
332 case ISD::XOR: {
Rafael Espindola7682b9c2009-04-10 10:09:34 +0000333 SDValue Op1 = U->getOperand(1);
334
Evan Cheng5a424552008-11-27 00:49:46 +0000335 // If the other operand is a 8-bit immediate we should fold the immediate
336 // instead. This reduces code size.
337 // e.g.
338 // movl 4(%esp), %eax
339 // addl $4, %eax
340 // vs.
341 // movl $4, %eax
342 // addl 4(%esp), %eax
343 // The former is 2 bytes shorter. In case where the increment is 1, then
344 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindola7682b9c2009-04-10 10:09:34 +0000345 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman01126892009-03-14 02:07:16 +0000346 if (Imm->getAPIntValue().isSignedIntN(8))
347 return false;
Rafael Espindola7682b9c2009-04-10 10:09:34 +0000348
349 // If the other operand is a TLS address, we should fold it instead.
350 // This produces
351 // movl %gs:0, %eax
352 // leal i@NTPOFF(%eax), %eax
353 // instead of
354 // movl $i@NTPOFF, %eax
355 // addl %gs:0, %eax
356 // if the block also has an access to a second TLS address this will save
357 // a load.
358 // FIXME: This is probably also true for non TLS addresses.
359 if (Op1.getOpcode() == X86ISD::Wrapper) {
360 SDValue Val = Op1.getOperand(0);
361 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
362 return false;
363 }
Evan Cheng5a424552008-11-27 00:49:46 +0000364 }
365 }
Evan Chengf80681e2010-02-15 19:41:07 +0000366 }
367
368 return true;
369}
370
371
372bool X86DAGToDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root) const {
373 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng5a424552008-11-27 00:49:46 +0000374
Anton Korobeynikovda76d322009-05-08 18:51:58 +0000375 // Proceed to 'generic' cycle finder code
Evan Chengf80681e2010-02-15 19:41:07 +0000376 return SelectionDAGISel::IsLegalToFold(N, U, Root);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000377}
378
379/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
380/// and move load below the TokenFactor. Replace store's chain operand with
381/// load's chain result.
Dan Gohman14a66442008-08-23 02:25:05 +0000382static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman8181bd12008-07-27 21:46:04 +0000383 SDValue Store, SDValue TF) {
Evan Cheng98cfaf82008-08-25 21:27:18 +0000384 SmallVector<SDValue, 4> Ops;
Gabor Greif1c80d112008-08-28 21:40:38 +0000385 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
386 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Cheng98cfaf82008-08-25 21:27:18 +0000387 Ops.push_back(Load.getOperand(0));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000388 else
Evan Cheng98cfaf82008-08-25 21:27:18 +0000389 Ops.push_back(TF.getOperand(i));
Dan Gohmanabe8a472009-08-06 09:22:57 +0000390 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
391 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
392 Load.getOperand(1),
393 Load.getOperand(2));
394 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohman14a66442008-08-23 02:25:05 +0000395 Store.getOperand(2), Store.getOperand(3));
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000396}
397
Nate Begeman63715c72009-09-16 03:20:46 +0000398/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
399/// chain produced by the load must only be used by the store's chain operand,
400/// otherwise this may produce a cycle in the DAG.
Evan Cheng2b2a7012008-05-23 21:23:16 +0000401///
Dan Gohman8181bd12008-07-27 21:46:04 +0000402static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
403 SDValue &Load) {
David Greene6a5bbde2010-01-15 23:23:41 +0000404 if (N.getOpcode() == ISD::BIT_CONVERT) {
405 if (!N.hasOneUse())
406 return false;
Evan Cheng2b2a7012008-05-23 21:23:16 +0000407 N = N.getOperand(0);
David Greene6a5bbde2010-01-15 23:23:41 +0000408 }
Evan Cheng2b2a7012008-05-23 21:23:16 +0000409
410 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
411 if (!LD || LD->isVolatile())
412 return false;
413 if (LD->getAddressingMode() != ISD::UNINDEXED)
414 return false;
415
416 ISD::LoadExtType ExtType = LD->getExtensionType();
417 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
418 return false;
419
420 if (N.hasOneUse() &&
Nate Begeman63715c72009-09-16 03:20:46 +0000421 LD->hasNUsesOfValue(1, 1) &&
Evan Cheng2b2a7012008-05-23 21:23:16 +0000422 N.getOperand(1) == Address &&
Nate Begeman63715c72009-09-16 03:20:46 +0000423 LD->isOperandOf(Chain.getNode())) {
Evan Cheng2b2a7012008-05-23 21:23:16 +0000424 Load = N;
425 return true;
426 }
427 return false;
428}
429
Evan Cheng98cfaf82008-08-25 21:27:18 +0000430/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
431/// operand and move load below the call's chain operand.
432static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
evanchengcd6d72b2009-01-26 18:43:34 +0000433 SDValue Call, SDValue CallSeqStart) {
Evan Cheng98cfaf82008-08-25 21:27:18 +0000434 SmallVector<SDValue, 8> Ops;
evanchengcd6d72b2009-01-26 18:43:34 +0000435 SDValue Chain = CallSeqStart.getOperand(0);
436 if (Chain.getNode() == Load.getNode())
437 Ops.push_back(Load.getOperand(0));
438 else {
439 assert(Chain.getOpcode() == ISD::TokenFactor &&
440 "Unexpected CallSeqStart chain operand");
441 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
442 if (Chain.getOperand(i).getNode() == Load.getNode())
443 Ops.push_back(Load.getOperand(0));
444 else
445 Ops.push_back(Chain.getOperand(i));
446 SDValue NewChain =
Dale Johannesen913ba762009-02-06 01:31:28 +0000447 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000448 MVT::Other, &Ops[0], Ops.size());
evanchengcd6d72b2009-01-26 18:43:34 +0000449 Ops.clear();
450 Ops.push_back(NewChain);
451 }
452 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
453 Ops.push_back(CallSeqStart.getOperand(i));
454 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Cheng98cfaf82008-08-25 21:27:18 +0000455 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
456 Load.getOperand(1), Load.getOperand(2));
457 Ops.clear();
Gabor Greif1c80d112008-08-28 21:40:38 +0000458 Ops.push_back(SDValue(Load.getNode(), 1));
459 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Cheng98cfaf82008-08-25 21:27:18 +0000460 Ops.push_back(Call.getOperand(i));
461 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
462}
463
464/// isCalleeLoad - Return true if call address is a load and it can be
465/// moved below CALLSEQ_START and the chains leading up to the call.
466/// Return the CALLSEQ_START by reference as a second output.
467static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greif1c80d112008-08-28 21:40:38 +0000468 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Cheng98cfaf82008-08-25 21:27:18 +0000469 return false;
Gabor Greif1c80d112008-08-28 21:40:38 +0000470 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Cheng98cfaf82008-08-25 21:27:18 +0000471 if (!LD ||
472 LD->isVolatile() ||
473 LD->getAddressingMode() != ISD::UNINDEXED ||
474 LD->getExtensionType() != ISD::NON_EXTLOAD)
475 return false;
476
477 // Now let's find the callseq_start.
478 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
479 if (!Chain.hasOneUse())
480 return false;
481 Chain = Chain.getOperand(0);
482 }
evanchengcd6d72b2009-01-26 18:43:34 +0000483
484 if (Chain.getOperand(0).getNode() == Callee.getNode())
485 return true;
486 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohmancbe5a492009-09-15 01:22:01 +0000487 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
488 Callee.getValue(1).hasOneUse())
evanchengcd6d72b2009-01-26 18:43:34 +0000489 return true;
490 return false;
Evan Cheng98cfaf82008-08-25 21:27:18 +0000491}
492
493
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000494/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendling58ed5d22009-04-29 00:15:41 +0000495/// This is only run if not in -O0 mode.
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000496/// This allows the instruction selector to pick more read-modify-write
497/// instructions. This is a common case:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000498///
499/// [Load chain]
500/// ^
501/// |
502/// [Load]
503/// ^ ^
504/// | |
505/// / \-
506/// / |
507/// [TokenFactor] [Op]
508/// ^ ^
509/// | |
510/// \ /
511/// \ /
512/// [Store]
513///
514/// The fact the store's chain operand != load's chain will prevent the
515/// (store (op (load))) instruction from being selected. We can transform it to:
516///
517/// [Load chain]
518/// ^
519/// |
520/// [TokenFactor]
521/// ^
522/// |
523/// [Load]
524/// ^ ^
525/// | |
526/// | \-
527/// | |
528/// | [Op]
529/// | ^
530/// | |
531/// \ /
532/// \ /
533/// [Store]
Dan Gohman14a66442008-08-23 02:25:05 +0000534void X86DAGToDAGISel::PreprocessForRMW() {
535 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
536 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Cheng98cfaf82008-08-25 21:27:18 +0000537 if (I->getOpcode() == X86ISD::CALL) {
538 /// Also try moving call address load from outside callseq_start to just
539 /// before the call to allow it to be folded.
540 ///
541 /// [Load chain]
542 /// ^
543 /// |
544 /// [Load]
545 /// ^ ^
546 /// | |
547 /// / \--
548 /// / |
549 ///[CALLSEQ_START] |
550 /// ^ |
551 /// | |
552 /// [LOAD/C2Reg] |
553 /// | |
554 /// \ /
555 /// \ /
556 /// [CALL]
557 SDValue Chain = I->getOperand(0);
558 SDValue Load = I->getOperand(1);
559 if (!isCalleeLoad(Load, Chain))
560 continue;
561 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
562 ++NumLoadMoved;
563 continue;
564 }
565
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000566 if (!ISD::isNON_TRUNCStore(I))
567 continue;
Dan Gohman8181bd12008-07-27 21:46:04 +0000568 SDValue Chain = I->getOperand(0);
Evan Cheng98cfaf82008-08-25 21:27:18 +0000569
Gabor Greif1c80d112008-08-28 21:40:38 +0000570 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000571 continue;
572
Dan Gohman8181bd12008-07-27 21:46:04 +0000573 SDValue N1 = I->getOperand(1);
574 SDValue N2 = I->getOperand(2);
Duncan Sands92c43912008-06-06 12:08:01 +0000575 if ((N1.getValueType().isFloatingPoint() &&
576 !N1.getValueType().isVector()) ||
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000577 !N1.hasOneUse())
578 continue;
579
580 bool RModW = false;
Dan Gohman8181bd12008-07-27 21:46:04 +0000581 SDValue Load;
Gabor Greif1c80d112008-08-28 21:40:38 +0000582 unsigned Opcode = N1.getNode()->getOpcode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000583 switch (Opcode) {
Evan Cheng98cfaf82008-08-25 21:27:18 +0000584 case ISD::ADD:
585 case ISD::MUL:
586 case ISD::AND:
587 case ISD::OR:
588 case ISD::XOR:
589 case ISD::ADDC:
590 case ISD::ADDE:
591 case ISD::VECTOR_SHUFFLE: {
592 SDValue N10 = N1.getOperand(0);
593 SDValue N11 = N1.getOperand(1);
594 RModW = isRMWLoad(N10, Chain, N2, Load);
595 if (!RModW)
596 RModW = isRMWLoad(N11, Chain, N2, Load);
597 break;
598 }
599 case ISD::SUB:
600 case ISD::SHL:
601 case ISD::SRA:
602 case ISD::SRL:
603 case ISD::ROTL:
604 case ISD::ROTR:
605 case ISD::SUBC:
606 case ISD::SUBE:
607 case X86ISD::SHLD:
608 case X86ISD::SHRD: {
609 SDValue N10 = N1.getOperand(0);
610 RModW = isRMWLoad(N10, Chain, N2, Load);
611 break;
612 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000613 }
614
615 if (RModW) {
Dan Gohman14a66442008-08-23 02:25:05 +0000616 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000617 ++NumLoadMoved;
David Greenec25757c2010-01-20 20:13:31 +0000618 checkForCycles(I);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000619 }
620 }
621}
622
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000623
624/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
625/// nodes that target the FP stack to be store and load to the stack. This is a
626/// gross hack. We would like to simply mark these as being illegal, but when
627/// we do that, legalize produces these when it expands calls, then expands
628/// these in the same legalize pass. We would like dag combine to be able to
629/// hack on these between the call expansion and the node legalization. As such
630/// this pass basically does "really late" legalization of these inline with the
631/// X86 isel pass.
Dan Gohman14a66442008-08-23 02:25:05 +0000632void X86DAGToDAGISel::PreprocessForFPConvert() {
633 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
634 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000635 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
636 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
637 continue;
638
639 // If the source and destination are SSE registers, then this is a legal
640 // conversion that should not be lowered.
Owen Andersonac9de032009-08-10 22:56:29 +0000641 EVT SrcVT = N->getOperand(0).getValueType();
642 EVT DstVT = N->getValueType(0);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000643 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
644 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
645 if (SrcIsSSE && DstIsSSE)
646 continue;
647
Chris Lattner5d294e52008-03-09 07:05:32 +0000648 if (!SrcIsSSE && !DstIsSSE) {
649 // If this is an FPStack extension, it is a noop.
650 if (N->getOpcode() == ISD::FP_EXTEND)
651 continue;
652 // If this is a value-preserving FPStack truncation, it is a noop.
653 if (N->getConstantOperandVal(1))
654 continue;
655 }
656
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000657 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
658 // FPStack has extload and truncstore. SSE can fold direct loads into other
659 // operations. Based on this, decide what we want to do.
Owen Andersonac9de032009-08-10 22:56:29 +0000660 EVT MemVT;
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000661 if (N->getOpcode() == ISD::FP_ROUND)
662 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
663 else
664 MemVT = SrcIsSSE ? SrcVT : DstVT;
665
Dan Gohman14a66442008-08-23 02:25:05 +0000666 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesen59b5a5c2009-02-03 21:48:12 +0000667 DebugLoc dl = N->getDebugLoc();
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000668
669 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesen59b5a5c2009-02-03 21:48:12 +0000670 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohman14a66442008-08-23 02:25:05 +0000671 N->getOperand(0),
David Greene1d878002010-02-15 16:57:43 +0000672 MemTmp, NULL, 0, MemVT,
673 false, false, 0);
Dale Johannesen59b5a5c2009-02-03 21:48:12 +0000674 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greene1d878002010-02-15 16:57:43 +0000675 NULL, 0, MemVT, false, false, 0);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000676
677 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
678 // extload we created. This will cause general havok on the dag because
679 // anything below the conversion could be folded into other existing nodes.
680 // To avoid invalidating 'I', back it up to the convert node.
681 --I;
Dan Gohman14a66442008-08-23 02:25:05 +0000682 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000683
684 // Now that we did that, the node is dead. Increment the iterator to the
685 // next node to process, then delete N.
686 ++I;
Dan Gohman14a66442008-08-23 02:25:05 +0000687 CurDAG->DeleteNode(N);
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000688 }
689}
690
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000691/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
692/// when it has created a SelectionDAG for us to codegen.
Dan Gohman14a66442008-08-23 02:25:05 +0000693void X86DAGToDAGISel::InstructionSelect() {
Dan Gohmanaf435de2009-08-01 03:42:59 +0000694 const Function *F = MF->getFunction();
Devang Patel78eba022008-10-06 18:03:39 +0000695 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000696
Bill Wendling5ed22ac2009-04-29 23:29:43 +0000697 if (OptLevel != CodeGenOpt::None)
Dan Gohman14a66442008-08-23 02:25:05 +0000698 PreprocessForRMW();
Chris Lattnerdec9cb52008-01-24 08:07:48 +0000699
Bill Wendling58ed5d22009-04-29 00:15:41 +0000700 // FIXME: This should only happen when not compiled with -O0.
Dan Gohman14a66442008-08-23 02:25:05 +0000701 PreprocessForFPConvert();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000702
703 // Codegen the basic block.
704#ifndef NDEBUG
David Greeneb592f222010-01-05 01:29:08 +0000705 DEBUG(dbgs() << "===== Instruction selection begins:\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000706 Indent = 0;
707#endif
David Greene932618b2008-10-27 21:56:29 +0000708 SelectRoot(*CurDAG);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000709#ifndef NDEBUG
David Greeneb592f222010-01-05 01:29:08 +0000710 DEBUG(dbgs() << "===== Instruction selection ends:\n");
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000711#endif
712
Dan Gohman14a66442008-08-23 02:25:05 +0000713 CurDAG->RemoveDeadNodes();
Evan Cheng34fd4f32008-06-30 20:45:06 +0000714}
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000715
Anton Korobeynikov34ef31e2007-09-25 21:52:30 +0000716/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
717/// the main function.
718void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
719 MachineFrameInfo *MFI) {
720 const TargetInstrInfo *TII = TM.getInstrInfo();
721 if (Subtarget->isTargetCygMing())
Dale Johannesen960bfbd2009-02-13 02:33:27 +0000722 BuildMI(BB, DebugLoc::getUnknownLoc(),
723 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov34ef31e2007-09-25 21:52:30 +0000724}
725
726void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
727 // If this is main, emit special code for main.
728 MachineBasicBlock *BB = MF.begin();
729 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
730 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
731}
732
Rafael Espindolabca99f72009-04-08 21:14:34 +0000733
734bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
735 X86ISelAddressMode &AM) {
736 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
737 SDValue Segment = N.getOperand(0);
738
739 if (AM.Segment.getNode() == 0) {
740 AM.Segment = Segment;
741 return false;
742 }
743
744 return true;
745}
746
747bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
748 // This optimization is valid because the GNU TLS model defines that
749 // gs:0 (or fs:0 on X86-64) contains its own address.
750 // For more information see http://people.redhat.com/drepper/tls.pdf
751
752 SDValue Address = N.getOperand(1);
753 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
754 !MatchSegmentBaseAddress (Address, AM))
755 return false;
756
757 return true;
758}
759
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000760/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
761/// into an addressing mode. These wrap things that will resolve down into a
762/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000763/// returns false.
Rafael Espindola84218fe2009-04-12 21:55:03 +0000764bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000765 // If the addressing mode already has a symbol as the displacement, we can
766 // never match another symbol.
Rafael Espindola84218fe2009-04-12 21:55:03 +0000767 if (AM.hasSymbolicDisplacement())
768 return true;
Rafael Espindola84218fe2009-04-12 21:55:03 +0000769
770 SDValue N0 = N.getOperand(0);
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000771 CodeModel::Model M = TM.getCodeModel();
772
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000773 // Handle X86-64 rip-relative addresses. We check this before checking direct
774 // folding because RIP is preferable to non-RIP accesses.
775 if (Subtarget->is64Bit() &&
776 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
777 // they cannot be folded into immediate fields.
778 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov20076742009-08-21 15:41:56 +0000779 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000780 // Base and index reg must be 0 in order to use %rip as base and lowering
781 // must allow RIP.
782 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000783 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
784 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000785 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000786 AM.GV = G->getGlobal();
787 AM.Disp = Offset;
Chris Lattner8969a732009-06-26 05:51:45 +0000788 AM.SymbolFlags = G->getTargetFlags();
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000789 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
790 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000791 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola84218fe2009-04-12 21:55:03 +0000792 AM.CP = CP->getConstVal();
793 AM.Align = CP->getAlignment();
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000794 AM.Disp = Offset;
Chris Lattner998c2052009-06-26 05:56:49 +0000795 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000796 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
797 AM.ES = S->getSymbol();
798 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner03796ee2009-11-01 03:25:03 +0000799 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000800 AM.JT = J->getIndex();
801 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner03796ee2009-11-01 03:25:03 +0000802 } else {
803 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman885793b2009-11-20 23:18:13 +0000804 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola84218fe2009-04-12 21:55:03 +0000805 }
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000806
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000807 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson36e3a6e2009-08-11 20:47:22 +0000808 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola84218fe2009-04-12 21:55:03 +0000809 return false;
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000810 }
811
812 // Handle the case when globals fit in our immediate field: This is true for
813 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
814 // mode, this results in a non-RIP-relative computation.
815 if (!Subtarget->is64Bit() ||
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000816 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000817 TM.getRelocationModel() == Reloc::Static)) {
818 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
819 AM.GV = G->getGlobal();
820 AM.Disp += G->getOffset();
821 AM.SymbolFlags = G->getTargetFlags();
822 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
823 AM.CP = CP->getConstVal();
824 AM.Align = CP->getAlignment();
825 AM.Disp += CP->getOffset();
826 AM.SymbolFlags = CP->getTargetFlags();
827 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
828 AM.ES = S->getSymbol();
829 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner03796ee2009-11-01 03:25:03 +0000830 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000831 AM.JT = J->getIndex();
832 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner03796ee2009-11-01 03:25:03 +0000833 } else {
834 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman885793b2009-11-20 23:18:13 +0000835 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000836 }
Rafael Espindola84218fe2009-04-12 21:55:03 +0000837 return false;
838 }
839
840 return true;
841}
842
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000843/// MatchAddress - Add the specified node to the specified addressing mode,
844/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner7f06edd2007-12-08 07:22:58 +0000845/// addressing mode.
Dan Gohman3dffbbf2009-07-22 23:26:55 +0000846bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
847 if (MatchAddressRecursively(N, AM, 0))
848 return true;
849
850 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
851 // a smaller encoding and avoids a scaled-index.
852 if (AM.Scale == 2 &&
853 AM.BaseType == X86ISelAddressMode::RegBase &&
854 AM.Base.Reg.getNode() == 0) {
855 AM.Base.Reg = AM.IndexReg;
856 AM.Scale = 1;
857 }
858
Dan Gohman728fd182009-08-20 18:23:44 +0000859 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
860 // because it has a smaller encoding.
861 // TODO: Which other code models can use this?
862 if (TM.getCodeModel() == CodeModel::Small &&
863 Subtarget->is64Bit() &&
864 AM.Scale == 1 &&
865 AM.BaseType == X86ISelAddressMode::RegBase &&
866 AM.Base.Reg.getNode() == 0 &&
867 AM.IndexReg.getNode() == 0 &&
Dan Gohman814c2ea2009-08-25 17:47:44 +0000868 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohman728fd182009-08-20 18:23:44 +0000869 AM.hasSymbolicDisplacement())
870 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
871
Dan Gohman3dffbbf2009-07-22 23:26:55 +0000872 return false;
873}
874
875bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
876 unsigned Depth) {
Dan Gohman36322c72008-10-18 02:06:02 +0000877 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen2dbdb0e2009-02-07 19:59:05 +0000878 DebugLoc dl = N.getDebugLoc();
Bill Wendlingc551eff2009-08-07 21:33:25 +0000879 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +0000880 dbgs() << "MatchAddress: ";
Bill Wendlingc551eff2009-08-07 21:33:25 +0000881 AM.dump();
882 });
Dan Gohmana60c1b32007-08-13 20:03:06 +0000883 // Limit recursion.
884 if (Depth > 5)
Rafael Espindola515c13e2009-03-31 16:16:57 +0000885 return MatchAddressBase(N, AM);
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000886
887 CodeModel::Model M = TM.getCodeModel();
888
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000889 // If this is already a %rip relative address, we can only merge immediates
890 // into it. Instead of handling this in every case, we handle it here.
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000891 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000892 if (AM.isRIPRelative()) {
893 // FIXME: JumpTable and ExternalSymbol address currently don't like
894 // displacements. It isn't very important, but this should be fixed for
895 // consistency.
896 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000897
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000898 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
899 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000900 if (X86::isOffsetSuitableForCodeModel(Val, M,
901 AM.hasSymbolicDisplacement())) {
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000902 AM.Disp = Val;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000903 return false;
904 }
905 }
906 return true;
907 }
908
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000909 switch (N.getOpcode()) {
910 default: break;
911 case ISD::Constant: {
Dan Gohman0bd76b72008-11-11 15:52:29 +0000912 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000913 if (!is64Bit ||
914 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
915 AM.hasSymbolicDisplacement())) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000916 AM.Disp += Val;
917 return false;
918 }
919 break;
920 }
921
Rafael Espindolabca99f72009-04-08 21:14:34 +0000922 case X86ISD::SegmentBaseAddress:
923 if (!MatchSegmentBaseAddress(N, AM))
924 return false;
925 break;
926
Rafael Espindola84218fe2009-04-12 21:55:03 +0000927 case X86ISD::Wrapper:
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000928 case X86ISD::WrapperRIP:
Rafael Espindola84218fe2009-04-12 21:55:03 +0000929 if (!MatchWrapper(N, AM))
930 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000931 break;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000932
Rafael Espindolabca99f72009-04-08 21:14:34 +0000933 case ISD::LOAD:
934 if (!MatchLoad(N, AM))
935 return false;
936 break;
937
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000938 case ISD::FrameIndex:
Gabor Greife9f7f582008-08-31 15:37:04 +0000939 if (AM.BaseType == X86ISelAddressMode::RegBase
940 && AM.Base.Reg.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000941 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
942 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
943 return false;
944 }
945 break;
946
947 case ISD::SHL:
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000948 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner7f06edd2007-12-08 07:22:58 +0000949 break;
950
Gabor Greife9f7f582008-08-31 15:37:04 +0000951 if (ConstantSDNode
952 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000953 unsigned Val = CN->getZExtValue();
Dan Gohman3dffbbf2009-07-22 23:26:55 +0000954 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
955 // that the base operand remains free for further matching. If
956 // the base doesn't end up getting used, a post-processing step
957 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner7f06edd2007-12-08 07:22:58 +0000958 if (Val == 1 || Val == 2 || Val == 3) {
959 AM.Scale = 1 << Val;
Gabor Greif1c80d112008-08-28 21:40:38 +0000960 SDValue ShVal = N.getNode()->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000961
Chris Lattner7f06edd2007-12-08 07:22:58 +0000962 // Okay, we know that we have a scale by now. However, if the scaled
963 // value is an add of something and a constant, we can fold the
964 // constant into the disp field here.
Dan Gohmand7140f12010-01-21 02:09:26 +0000965 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greif1c80d112008-08-28 21:40:38 +0000966 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
967 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner7f06edd2007-12-08 07:22:58 +0000968 ConstantSDNode *AddVal =
Gabor Greif1c80d112008-08-28 21:40:38 +0000969 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng2ed6f342009-01-17 07:09:27 +0000970 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovc283e152009-08-05 23:01:26 +0000971 if (!is64Bit ||
972 X86::isOffsetSuitableForCodeModel(Disp, M,
973 AM.hasSymbolicDisplacement()))
Chris Lattner7f06edd2007-12-08 07:22:58 +0000974 AM.Disp = Disp;
975 else
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000976 AM.IndexReg = ShVal;
Chris Lattner7f06edd2007-12-08 07:22:58 +0000977 } else {
978 AM.IndexReg = ShVal;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000979 }
Chris Lattner7f06edd2007-12-08 07:22:58 +0000980 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000981 }
982 break;
Chris Lattner7f06edd2007-12-08 07:22:58 +0000983 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000984
Dan Gohman35b99222007-10-22 20:22:24 +0000985 case ISD::SMUL_LOHI:
986 case ISD::UMUL_LOHI:
987 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif46bf5472008-08-26 22:36:50 +0000988 if (N.getResNo() != 0) break;
Dan Gohman35b99222007-10-22 20:22:24 +0000989 // FALL THROUGH
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000990 case ISD::MUL:
Evan Chengc3495762009-03-30 21:36:47 +0000991 case X86ISD::MUL_IMM:
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000992 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohmancc3df852008-11-05 04:14:16 +0000993 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greif1c80d112008-08-28 21:40:38 +0000994 AM.Base.Reg.getNode() == 0 &&
Chris Lattnerdc6fc472009-06-27 04:16:01 +0000995 AM.IndexReg.getNode() == 0) {
Gabor Greife9f7f582008-08-31 15:37:04 +0000996 if (ConstantSDNode
997 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanfaeb4a32008-09-12 16:56:44 +0000998 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
999 CN->getZExtValue() == 9) {
1000 AM.Scale = unsigned(CN->getZExtValue())-1;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001001
Gabor Greif1c80d112008-08-28 21:40:38 +00001002 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman8181bd12008-07-27 21:46:04 +00001003 SDValue Reg;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001004
1005 // Okay, we know that we have a scale by now. However, if the scaled
1006 // value is an add of something and a constant, we can fold the
1007 // constant into the disp field here.
Gabor Greif1c80d112008-08-28 21:40:38 +00001008 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1009 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1010 Reg = MulVal.getNode()->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001011 ConstantSDNode *AddVal =
Gabor Greif1c80d112008-08-28 21:40:38 +00001012 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng2ed6f342009-01-17 07:09:27 +00001013 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001014 CN->getZExtValue();
Anton Korobeynikovc283e152009-08-05 23:01:26 +00001015 if (!is64Bit ||
1016 X86::isOffsetSuitableForCodeModel(Disp, M,
1017 AM.hasSymbolicDisplacement()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001018 AM.Disp = Disp;
1019 else
Gabor Greif1c80d112008-08-28 21:40:38 +00001020 Reg = N.getNode()->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001021 } else {
Gabor Greif1c80d112008-08-28 21:40:38 +00001022 Reg = N.getNode()->getOperand(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001023 }
1024
1025 AM.IndexReg = AM.Base.Reg = Reg;
1026 return false;
1027 }
1028 }
1029 break;
1030
Dan Gohman946223f2009-05-11 18:02:53 +00001031 case ISD::SUB: {
1032 // Given A-B, if A can be completely folded into the address and
1033 // the index field with the index field unused, use -B as the index.
1034 // This is a win if a has multiple parts that can be folded into
1035 // the address. Also, this saves a mov if the base register has
1036 // other uses, since it avoids a two-address sub instruction, however
1037 // it costs an additional mov if the index register has other uses.
1038
1039 // Test if the LHS of the sub can be folded.
1040 X86ISelAddressMode Backup = AM;
Dan Gohman3dffbbf2009-07-22 23:26:55 +00001041 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman946223f2009-05-11 18:02:53 +00001042 AM = Backup;
1043 break;
1044 }
1045 // Test if the index field is free for use.
Chris Lattnerdc6fc472009-06-27 04:16:01 +00001046 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman946223f2009-05-11 18:02:53 +00001047 AM = Backup;
1048 break;
1049 }
1050 int Cost = 0;
1051 SDValue RHS = N.getNode()->getOperand(1);
1052 // If the RHS involves a register with multiple uses, this
1053 // transformation incurs an extra mov, due to the neg instruction
1054 // clobbering its operand.
1055 if (!RHS.getNode()->hasOneUse() ||
1056 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1057 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1058 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1059 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001060 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman946223f2009-05-11 18:02:53 +00001061 ++Cost;
1062 // If the base is a register with multiple uses, this
1063 // transformation may save a mov.
1064 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1065 AM.Base.Reg.getNode() &&
1066 !AM.Base.Reg.getNode()->hasOneUse()) ||
1067 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1068 --Cost;
1069 // If the folded LHS was interesting, this transformation saves
1070 // address arithmetic.
1071 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1072 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1073 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1074 --Cost;
1075 // If it doesn't look like it may be an overall win, don't do it.
1076 if (Cost >= 0) {
1077 AM = Backup;
1078 break;
1079 }
1080
1081 // Ok, the transformation is legal and appears profitable. Go for it.
1082 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1083 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1084 AM.IndexReg = Neg;
1085 AM.Scale = 1;
1086
1087 // Insert the new nodes into the topological ordering.
1088 if (Zero.getNode()->getNodeId() == -1 ||
1089 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1090 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1091 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1092 }
1093 if (Neg.getNode()->getNodeId() == -1 ||
1094 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1095 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1096 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1097 }
1098 return false;
1099 }
1100
Evan Cheng2ed6f342009-01-17 07:09:27 +00001101 case ISD::ADD: {
1102 X86ISelAddressMode Backup = AM;
Dan Gohman3dffbbf2009-07-22 23:26:55 +00001103 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1104 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng2ed6f342009-01-17 07:09:27 +00001105 return false;
1106 AM = Backup;
Dan Gohman3dffbbf2009-07-22 23:26:55 +00001107 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1108 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng2ed6f342009-01-17 07:09:27 +00001109 return false;
1110 AM = Backup;
Dan Gohman3ae92482009-03-13 02:25:09 +00001111
1112 // If we couldn't fold both operands into the address at the same time,
1113 // see if we can just put each operand into a register and fold at least
1114 // the add.
1115 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1116 !AM.Base.Reg.getNode() &&
Chris Lattnerdc6fc472009-06-27 04:16:01 +00001117 !AM.IndexReg.getNode()) {
Dan Gohman3ae92482009-03-13 02:25:09 +00001118 AM.Base.Reg = N.getNode()->getOperand(0);
1119 AM.IndexReg = N.getNode()->getOperand(1);
1120 AM.Scale = 1;
1121 return false;
1122 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001123 break;
Evan Cheng2ed6f342009-01-17 07:09:27 +00001124 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001125
1126 case ISD::OR:
1127 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner7f06edd2007-12-08 07:22:58 +00001128 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1129 X86ISelAddressMode Backup = AM;
Dan Gohman0bd76b72008-11-11 15:52:29 +00001130 uint64_t Offset = CN->getSExtValue();
Chris Lattner7f06edd2007-12-08 07:22:58 +00001131 // Start with the LHS as an addr mode.
Dan Gohman3dffbbf2009-07-22 23:26:55 +00001132 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner7f06edd2007-12-08 07:22:58 +00001133 // Address could not have picked a GV address for the displacement.
1134 AM.GV == NULL &&
1135 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovc283e152009-08-05 23:01:26 +00001136 (!is64Bit ||
1137 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1138 AM.hasSymbolicDisplacement())) &&
Chris Lattner7f06edd2007-12-08 07:22:58 +00001139 // Check to see if the LHS & C is zero.
Dan Gohman07961cd2008-02-25 21:11:39 +00001140 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman0bd76b72008-11-11 15:52:29 +00001141 AM.Disp += Offset;
Chris Lattner7f06edd2007-12-08 07:22:58 +00001142 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001143 }
Chris Lattner7f06edd2007-12-08 07:22:58 +00001144 AM = Backup;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001145 }
1146 break;
Evan Chengf2abee72007-12-13 00:43:27 +00001147
1148 case ISD::AND: {
Dan Gohman744d4622009-04-13 16:09:41 +00001149 // Perform some heroic transforms on an and of a constant-count shift
1150 // with a constant to enable use of the scaled offset field.
1151
Dan Gohman8181bd12008-07-27 21:46:04 +00001152 SDValue Shift = N.getOperand(0);
Dan Gohman744d4622009-04-13 16:09:41 +00001153 if (Shift.getNumOperands() != 2) break;
Dan Gohmancc3df852008-11-05 04:14:16 +00001154
Evan Chengf2abee72007-12-13 00:43:27 +00001155 // Scale must not be used already.
Gabor Greif1c80d112008-08-28 21:40:38 +00001156 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Cheng3b5a1272008-02-07 08:53:49 +00001157
Dan Gohman744d4622009-04-13 16:09:41 +00001158 SDValue X = Shift.getOperand(0);
Evan Chengf2abee72007-12-13 00:43:27 +00001159 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1160 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1161 if (!C1 || !C2) break;
1162
Dan Gohman744d4622009-04-13 16:09:41 +00001163 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1164 // allows us to convert the shift and and into an h-register extract and
1165 // a scaled index.
1166 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1167 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindolaa4464662009-04-16 12:34:53 +00001168 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman744d4622009-04-13 16:09:41 +00001169 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001170 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman744d4622009-04-13 16:09:41 +00001171 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1172 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1173 X, Eight);
1174 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1175 Srl, Mask);
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001176 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman3dc69fd2009-04-14 22:45:05 +00001177 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1178 And, ShlCount);
Dan Gohman744d4622009-04-13 16:09:41 +00001179
1180 // Insert the new nodes into the topological ordering.
1181 if (Eight.getNode()->getNodeId() == -1 ||
1182 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1183 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1184 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1185 }
1186 if (Mask.getNode()->getNodeId() == -1 ||
1187 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1188 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1189 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1190 }
1191 if (Srl.getNode()->getNodeId() == -1 ||
1192 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1193 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1194 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1195 }
1196 if (And.getNode()->getNodeId() == -1 ||
1197 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1198 CurDAG->RepositionNode(N.getNode(), And.getNode());
1199 And.getNode()->setNodeId(N.getNode()->getNodeId());
1200 }
Dan Gohman3dc69fd2009-04-14 22:45:05 +00001201 if (ShlCount.getNode()->getNodeId() == -1 ||
1202 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1203 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1204 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1205 }
1206 if (Shl.getNode()->getNodeId() == -1 ||
1207 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1208 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1209 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1210 }
1211 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman744d4622009-04-13 16:09:41 +00001212 AM.IndexReg = And;
1213 AM.Scale = (1 << ScaleLog);
1214 return false;
1215 }
1216 }
1217
1218 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1219 // allows us to fold the shift into this addressing mode.
1220 if (Shift.getOpcode() != ISD::SHL) break;
1221
Evan Chengf2abee72007-12-13 00:43:27 +00001222 // Not likely to be profitable if either the AND or SHIFT node has more
1223 // than one use (unless all uses are for address computation). Besides,
1224 // isel mechanism requires their node ids to be reused.
1225 if (!N.hasOneUse() || !Shift.hasOneUse())
1226 break;
1227
1228 // Verify that the shift amount is something we can fold.
Dan Gohmanfaeb4a32008-09-12 16:56:44 +00001229 unsigned ShiftCst = C1->getZExtValue();
Evan Chengf2abee72007-12-13 00:43:27 +00001230 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1231 break;
1232
1233 // Get the new AND mask, this folds to a constant.
Dale Johannesen59b5a5c2009-02-03 21:48:12 +00001234 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng07d091a2008-10-14 17:15:39 +00001235 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesen59b5a5c2009-02-03 21:48:12 +00001236 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1237 NewANDMask);
1238 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman3666f472008-10-13 20:52:04 +00001239 NewAND, SDValue(C1, 0));
Dan Gohmancc3df852008-11-05 04:14:16 +00001240
1241 // Insert the new nodes into the topological ordering.
1242 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1243 CurDAG->RepositionNode(X.getNode(), C1);
1244 C1->setNodeId(X.getNode()->getNodeId());
1245 }
1246 if (NewANDMask.getNode()->getNodeId() == -1 ||
1247 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1248 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1249 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1250 }
1251 if (NewAND.getNode()->getNodeId() == -1 ||
1252 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1253 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1254 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1255 }
1256 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1257 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1258 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1259 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1260 }
1261
Dan Gohman3666f472008-10-13 20:52:04 +00001262 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Chengf2abee72007-12-13 00:43:27 +00001263
1264 AM.Scale = 1 << ShiftCst;
1265 AM.IndexReg = NewAND;
1266 return false;
1267 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001268 }
1269
Rafael Espindola515c13e2009-03-31 16:16:57 +00001270 return MatchAddressBase(N, AM);
Dan Gohmana60c1b32007-08-13 20:03:06 +00001271}
1272
1273/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1274/// specified addressing mode without any further recursion.
Rafael Espindola515c13e2009-03-31 16:16:57 +00001275bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001276 // Is the base register already occupied?
Gabor Greif1c80d112008-08-28 21:40:38 +00001277 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001278 // If so, check to see if the scale index register is set.
Chris Lattnerdc6fc472009-06-27 04:16:01 +00001279 if (AM.IndexReg.getNode() == 0) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001280 AM.IndexReg = N;
1281 AM.Scale = 1;
1282 return false;
1283 }
1284
1285 // Otherwise, we cannot select it.
1286 return true;
1287 }
1288
1289 // Default, generate it as a register.
1290 AM.BaseType = X86ISelAddressMode::RegBase;
1291 AM.Base.Reg = N;
1292 return false;
1293}
1294
1295/// SelectAddr - returns true if it is able pattern match an addressing mode.
1296/// It returns the operands which make up the maximal addressing mode it can
1297/// match by reference.
Dan Gohman5f082a72010-01-05 01:24:18 +00001298bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman8181bd12008-07-27 21:46:04 +00001299 SDValue &Scale, SDValue &Index,
Rafael Espindolabca99f72009-04-08 21:14:34 +00001300 SDValue &Disp, SDValue &Segment) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001301 X86ISelAddressMode AM;
Evan Chengd22f6c92009-12-18 01:59:21 +00001302 if (MatchAddress(N, AM))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001303 return false;
1304
Owen Andersonac9de032009-08-10 22:56:29 +00001305 EVT VT = N.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001306 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001307 if (!AM.Base.Reg.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001308 AM.Base.Reg = CurDAG->getRegister(0, VT);
1309 }
1310
Gabor Greif1c80d112008-08-28 21:40:38 +00001311 if (!AM.IndexReg.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001312 AM.IndexReg = CurDAG->getRegister(0, VT);
1313
Rafael Espindolabca99f72009-04-08 21:14:34 +00001314 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001315 return true;
1316}
1317
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001318/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1319/// match a load whose top elements are either undef or zeros. The load flavor
1320/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner52b513d2010-02-17 06:07:47 +00001321///
1322/// We also return:
1323/// PatternInputChain: this is the chain node input to the pattern that the
1324/// newly selected instruction should use.
1325/// PatternChainResult: this is chain result matched by the pattern which
1326/// should be replaced with the chain result of the matched node.
Chris Lattnerecbbf492010-02-16 22:35:06 +00001327bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman8181bd12008-07-27 21:46:04 +00001328 SDValue N, SDValue &Base,
1329 SDValue &Scale, SDValue &Index,
Rafael Espindolabca99f72009-04-08 21:14:34 +00001330 SDValue &Disp, SDValue &Segment,
Chris Lattner52b513d2010-02-17 06:07:47 +00001331 SDValue &PatternChainResult,
1332 SDValue &PatternInputChain) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001333 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner52b513d2010-02-17 06:07:47 +00001334 PatternChainResult = N.getOperand(0).getValue(1);
1335 if (ISD::isNON_EXTLoad(PatternChainResult.getNode()) &&
1336 PatternChainResult.getValue(0).hasOneUse() &&
1337 IsProfitableToFold(N.getOperand(0),PatternChainResult.getNode(),Root) &&
Chris Lattnerecbbf492010-02-16 22:35:06 +00001338 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Chris Lattner52b513d2010-02-17 06:07:47 +00001339 LoadSDNode *LD = cast<LoadSDNode>(PatternChainResult);
Chris Lattnerecbbf492010-02-16 22:35:06 +00001340 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001341 return false;
Chris Lattner52b513d2010-02-17 06:07:47 +00001342 PatternInputChain = LD->getChain();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001343 return true;
1344 }
1345 }
1346
1347 // Also handle the case where we explicitly require zeros in the top
1348 // elements. This is a vector shuffle from the zero vector.
Gabor Greif1c80d112008-08-28 21:40:38 +00001349 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattnere6aa3862007-11-25 00:24:49 +00001350 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng40ee6e52008-05-08 00:57:18 +00001351 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greif1c80d112008-08-28 21:40:38 +00001352 N.getOperand(0).getNode()->hasOneUse() &&
1353 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattnerecbbf492010-02-16 22:35:06 +00001354 N.getOperand(0).getOperand(0).hasOneUse() &&
1355 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1356 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng40ee6e52008-05-08 00:57:18 +00001357 // Okay, this is a zero extending load. Fold it.
1358 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerecbbf492010-02-16 22:35:06 +00001359 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng40ee6e52008-05-08 00:57:18 +00001360 return false;
Chris Lattner52b513d2010-02-17 06:07:47 +00001361 PatternInputChain = LD->getChain();
1362 PatternChainResult = SDValue(LD, 1);
Evan Cheng40ee6e52008-05-08 00:57:18 +00001363 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001364 }
1365 return false;
1366}
1367
1368
1369/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1370/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohman5f082a72010-01-05 01:24:18 +00001371bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman8181bd12008-07-27 21:46:04 +00001372 SDValue &Base, SDValue &Scale,
1373 SDValue &Index, SDValue &Disp) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001374 X86ISelAddressMode AM;
Rafael Espindola7682b9c2009-04-10 10:09:34 +00001375
1376 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1377 // segments.
1378 SDValue Copy = AM.Segment;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001379 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindola7682b9c2009-04-10 10:09:34 +00001380 AM.Segment = T;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001381 if (MatchAddress(N, AM))
1382 return false;
Rafael Espindola7682b9c2009-04-10 10:09:34 +00001383 assert (T == AM.Segment);
1384 AM.Segment = Copy;
Rafael Espindolabca99f72009-04-08 21:14:34 +00001385
Owen Andersonac9de032009-08-10 22:56:29 +00001386 EVT VT = N.getValueType();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001387 unsigned Complexity = 0;
1388 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greif1c80d112008-08-28 21:40:38 +00001389 if (AM.Base.Reg.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001390 Complexity = 1;
1391 else
1392 AM.Base.Reg = CurDAG->getRegister(0, VT);
1393 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1394 Complexity = 4;
1395
Gabor Greif1c80d112008-08-28 21:40:38 +00001396 if (AM.IndexReg.getNode())
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001397 Complexity++;
1398 else
1399 AM.IndexReg = CurDAG->getRegister(0, VT);
1400
1401 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1402 // a simple shift.
1403 if (AM.Scale > 1)
1404 Complexity++;
1405
1406 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1407 // to a LEA. This is determined with some expermentation but is by no means
1408 // optimal (especially for code size consideration). LEA is nice because of
1409 // its three-address nature. Tweak the cost function again when we can run
1410 // convertToThreeAddress() at register allocation time.
Dan Gohman245791b2009-02-07 00:43:41 +00001411 if (AM.hasSymbolicDisplacement()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001412 // For X86-64, we should always use lea to materialize RIP relative
1413 // addresses.
1414 if (Subtarget->is64Bit())
1415 Complexity = 4;
1416 else
1417 Complexity += 2;
1418 }
1419
Gabor Greif1c80d112008-08-28 21:40:38 +00001420 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001421 Complexity++;
1422
Chris Lattner0d2dad62009-07-11 22:50:33 +00001423 // If it isn't worth using an LEA, reject it.
Chris Lattner57a80252009-07-11 23:07:30 +00001424 if (Complexity <= 2)
Chris Lattner0d2dad62009-07-11 22:50:33 +00001425 return false;
1426
1427 SDValue Segment;
1428 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1429 return true;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001430}
1431
Chris Lattnerf1940742009-06-20 20:38:48 +00001432/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohman5f082a72010-01-05 01:24:18 +00001433bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattnerf1940742009-06-20 20:38:48 +00001434 SDValue &Scale, SDValue &Index,
1435 SDValue &Disp) {
Chris Lattnerf1940742009-06-20 20:38:48 +00001436 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1437 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1438
1439 X86ISelAddressMode AM;
1440 AM.GV = GA->getGlobal();
1441 AM.Disp += GA->getOffset();
1442 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerafab6592009-06-26 21:18:37 +00001443 AM.SymbolFlags = GA->getTargetFlags();
1444
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001445 if (N.getValueType() == MVT::i32) {
Chris Lattnerf1940742009-06-20 20:38:48 +00001446 AM.Scale = 1;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001447 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattnerf1940742009-06-20 20:38:48 +00001448 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001449 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattnerf1940742009-06-20 20:38:48 +00001450 }
1451
1452 SDValue Segment;
1453 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1454 return true;
1455}
1456
1457
Dan Gohman5f082a72010-01-05 01:24:18 +00001458bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman8181bd12008-07-27 21:46:04 +00001459 SDValue &Base, SDValue &Scale,
Rafael Espindolabca99f72009-04-08 21:14:34 +00001460 SDValue &Index, SDValue &Disp,
1461 SDValue &Segment) {
Gabor Greif1c80d112008-08-28 21:40:38 +00001462 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Chengf80681e2010-02-15 19:41:07 +00001463 IsProfitableToFold(N, P, P) &&
1464 IsLegalToFold(N, P, P))
Rafael Espindolabca99f72009-04-08 21:14:34 +00001465 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001466 return false;
1467}
1468
Dan Gohmanb60482f2008-09-23 18:22:58 +00001469/// getGlobalBaseReg - Return an SDNode that returns the value of
1470/// the global base register. Output instructions required to
1471/// initialize the global base register, if necessary.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001472///
1473SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohman4261ed32009-06-03 20:20:00 +00001474 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greif1c80d112008-08-28 21:40:38 +00001475 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001476}
1477
1478static SDNode *FindCallStartFromCall(SDNode *Node) {
1479 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001480 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001481 "Node doesn't have a token chain argument!");
Gabor Greif1c80d112008-08-28 21:40:38 +00001482 return FindCallStartFromCall(Node->getOperand(0).getNode());
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001483}
1484
Dale Johannesenf160d802008-10-02 18:53:47 +00001485SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1486 SDValue Chain = Node->getOperand(0);
1487 SDValue In1 = Node->getOperand(1);
1488 SDValue In2L = Node->getOperand(2);
1489 SDValue In2H = Node->getOperand(3);
Rafael Espindolabca99f72009-04-08 21:14:34 +00001490 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohman5f082a72010-01-05 01:24:18 +00001491 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesenf160d802008-10-02 18:53:47 +00001492 return NULL;
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00001493 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1494 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1495 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1496 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1497 MVT::i32, MVT::i32, MVT::Other, Ops,
1498 array_lengthof(Ops));
1499 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1500 return ResNode;
Dale Johannesenf160d802008-10-02 18:53:47 +00001501}
Christopher Lamb0a7c8662007-08-10 21:48:46 +00001502
Owen Andersonac9de032009-08-10 22:56:29 +00001503SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Chengb723fb52009-07-30 08:33:02 +00001504 if (Node->hasAnyUseOfValue(0))
1505 return 0;
1506
1507 // Optimize common patterns for __sync_add_and_fetch and
1508 // __sync_sub_and_fetch where the result is not used. This allows us
1509 // to use "lock" version of add, sub, inc, dec instructions.
1510 // FIXME: Do not use special instructions but instead add the "lock"
1511 // prefix to the target node somehow. The extra information will then be
1512 // transferred to machine instruction and it denotes the prefix.
1513 SDValue Chain = Node->getOperand(0);
1514 SDValue Ptr = Node->getOperand(1);
1515 SDValue Val = Node->getOperand(2);
1516 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohman5f082a72010-01-05 01:24:18 +00001517 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Chengb723fb52009-07-30 08:33:02 +00001518 return 0;
1519
1520 bool isInc = false, isDec = false, isSub = false, isCN = false;
1521 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1522 if (CN) {
1523 isCN = true;
1524 int64_t CNVal = CN->getSExtValue();
1525 if (CNVal == 1)
1526 isInc = true;
1527 else if (CNVal == -1)
1528 isDec = true;
1529 else if (CNVal >= 0)
1530 Val = CurDAG->getTargetConstant(CNVal, NVT);
1531 else {
1532 isSub = true;
1533 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1534 }
1535 } else if (Val.hasOneUse() &&
1536 Val.getOpcode() == ISD::SUB &&
1537 X86::isZeroNode(Val.getOperand(0))) {
1538 isSub = true;
1539 Val = Val.getOperand(1);
1540 }
1541
1542 unsigned Opc = 0;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001543 switch (NVT.getSimpleVT().SimpleTy) {
Evan Chengb723fb52009-07-30 08:33:02 +00001544 default: return 0;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001545 case MVT::i8:
Evan Chengb723fb52009-07-30 08:33:02 +00001546 if (isInc)
1547 Opc = X86::LOCK_INC8m;
1548 else if (isDec)
1549 Opc = X86::LOCK_DEC8m;
1550 else if (isSub) {
1551 if (isCN)
1552 Opc = X86::LOCK_SUB8mi;
1553 else
1554 Opc = X86::LOCK_SUB8mr;
1555 } else {
1556 if (isCN)
1557 Opc = X86::LOCK_ADD8mi;
1558 else
1559 Opc = X86::LOCK_ADD8mr;
1560 }
1561 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001562 case MVT::i16:
Evan Chengb723fb52009-07-30 08:33:02 +00001563 if (isInc)
1564 Opc = X86::LOCK_INC16m;
1565 else if (isDec)
1566 Opc = X86::LOCK_DEC16m;
1567 else if (isSub) {
1568 if (isCN) {
1569 if (Predicate_i16immSExt8(Val.getNode()))
1570 Opc = X86::LOCK_SUB16mi8;
1571 else
1572 Opc = X86::LOCK_SUB16mi;
1573 } else
1574 Opc = X86::LOCK_SUB16mr;
1575 } else {
1576 if (isCN) {
1577 if (Predicate_i16immSExt8(Val.getNode()))
1578 Opc = X86::LOCK_ADD16mi8;
1579 else
1580 Opc = X86::LOCK_ADD16mi;
1581 } else
1582 Opc = X86::LOCK_ADD16mr;
1583 }
1584 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001585 case MVT::i32:
Evan Chengb723fb52009-07-30 08:33:02 +00001586 if (isInc)
1587 Opc = X86::LOCK_INC32m;
1588 else if (isDec)
1589 Opc = X86::LOCK_DEC32m;
1590 else if (isSub) {
1591 if (isCN) {
1592 if (Predicate_i32immSExt8(Val.getNode()))
1593 Opc = X86::LOCK_SUB32mi8;
1594 else
1595 Opc = X86::LOCK_SUB32mi;
1596 } else
1597 Opc = X86::LOCK_SUB32mr;
1598 } else {
1599 if (isCN) {
1600 if (Predicate_i32immSExt8(Val.getNode()))
1601 Opc = X86::LOCK_ADD32mi8;
1602 else
1603 Opc = X86::LOCK_ADD32mi;
1604 } else
1605 Opc = X86::LOCK_ADD32mr;
1606 }
1607 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001608 case MVT::i64:
Evan Chengb723fb52009-07-30 08:33:02 +00001609 if (isInc)
1610 Opc = X86::LOCK_INC64m;
1611 else if (isDec)
1612 Opc = X86::LOCK_DEC64m;
1613 else if (isSub) {
1614 Opc = X86::LOCK_SUB64mr;
1615 if (isCN) {
1616 if (Predicate_i64immSExt8(Val.getNode()))
1617 Opc = X86::LOCK_SUB64mi8;
1618 else if (Predicate_i64immSExt32(Val.getNode()))
1619 Opc = X86::LOCK_SUB64mi32;
1620 }
1621 } else {
1622 Opc = X86::LOCK_ADD64mr;
1623 if (isCN) {
1624 if (Predicate_i64immSExt8(Val.getNode()))
1625 Opc = X86::LOCK_ADD64mi8;
1626 else if (Predicate_i64immSExt32(Val.getNode()))
1627 Opc = X86::LOCK_ADD64mi32;
1628 }
1629 }
1630 break;
1631 }
1632
1633 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4052b292010-02-09 19:54:29 +00001634 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman61fda0d2009-09-25 18:54:59 +00001635 dl, NVT), 0);
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00001636 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1637 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Chengb723fb52009-07-30 08:33:02 +00001638 if (isInc || isDec) {
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00001639 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1640 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1641 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Chengb723fb52009-07-30 08:33:02 +00001642 SDValue RetVals[] = { Undef, Ret };
1643 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1644 } else {
Dan Gohman4e3bb1b2009-09-25 20:36:54 +00001645 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1646 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1647 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Chengb723fb52009-07-30 08:33:02 +00001648 SDValue RetVals[] = { Undef, Ret };
1649 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1650 }
1651}
1652
Dan Gohmanf9a38e92009-10-09 20:35:19 +00001653/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1654/// any uses which require the SF or OF bits to be accurate.
1655static bool HasNoSignedComparisonUses(SDNode *N) {
1656 // Examine each user of the node.
1657 for (SDNode::use_iterator UI = N->use_begin(),
1658 UE = N->use_end(); UI != UE; ++UI) {
1659 // Only examine CopyToReg uses.
1660 if (UI->getOpcode() != ISD::CopyToReg)
1661 return false;
1662 // Only examine CopyToReg uses that copy to EFLAGS.
1663 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1664 X86::EFLAGS)
1665 return false;
1666 // Examine each user of the CopyToReg use.
1667 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1668 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1669 // Only examine the Flag result.
1670 if (FlagUI.getUse().getResNo() != 1) continue;
1671 // Anything unusual: assume conservatively.
1672 if (!FlagUI->isMachineOpcode()) return false;
1673 // Examine the opcode of the user.
1674 switch (FlagUI->getMachineOpcode()) {
1675 // These comparisons don't treat the most significant bit specially.
1676 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1677 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1678 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1679 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerb112c022010-02-11 19:25:55 +00001680 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1681 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohmanf9a38e92009-10-09 20:35:19 +00001682 case X86::CMOVA16rr: case X86::CMOVA16rm:
1683 case X86::CMOVA32rr: case X86::CMOVA32rm:
1684 case X86::CMOVA64rr: case X86::CMOVA64rm:
1685 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1686 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1687 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1688 case X86::CMOVB16rr: case X86::CMOVB16rm:
1689 case X86::CMOVB32rr: case X86::CMOVB32rm:
1690 case X86::CMOVB64rr: case X86::CMOVB64rm:
1691 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1692 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1693 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1694 case X86::CMOVE16rr: case X86::CMOVE16rm:
1695 case X86::CMOVE32rr: case X86::CMOVE32rm:
1696 case X86::CMOVE64rr: case X86::CMOVE64rm:
1697 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1698 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1699 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1700 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1701 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1702 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1703 case X86::CMOVP16rr: case X86::CMOVP16rm:
1704 case X86::CMOVP32rr: case X86::CMOVP32rm:
1705 case X86::CMOVP64rr: case X86::CMOVP64rm:
1706 continue;
1707 // Anything else: assume conservatively.
1708 default: return false;
1709 }
1710 }
1711 }
1712 return true;
1713}
1714
Dan Gohman5f082a72010-01-05 01:24:18 +00001715SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersonac9de032009-08-10 22:56:29 +00001716 EVT NVT = Node->getValueType(0);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001717 unsigned Opc, MOpc;
1718 unsigned Opcode = Node->getOpcode();
Dale Johannesen59b5a5c2009-02-03 21:48:12 +00001719 DebugLoc dl = Node->getDebugLoc();
1720
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001721#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00001722 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00001723 dbgs() << std::string(Indent, ' ') << "Selecting: ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00001724 Node->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00001725 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00001726 });
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001727 Indent += 2;
1728#endif
1729
Dan Gohmanbd68c792008-07-17 19:10:17 +00001730 if (Node->isMachineOpcode()) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001731#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00001732 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00001733 dbgs() << std::string(Indent-2, ' ') << "== ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00001734 Node->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00001735 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00001736 });
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001737 Indent -= 2;
1738#endif
1739 return NULL; // Already selected.
1740 }
1741
1742 switch (Opcode) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001743 default: break;
1744 case X86ISD::GlobalBaseReg:
1745 return getGlobalBaseReg();
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001746
Dan Gohman020c39b2009-08-02 16:10:52 +00001747 case X86ISD::ATOMOR64_DAG:
1748 return SelectAtomic64(Node, X86::ATOMOR6432);
1749 case X86ISD::ATOMXOR64_DAG:
1750 return SelectAtomic64(Node, X86::ATOMXOR6432);
1751 case X86ISD::ATOMADD64_DAG:
1752 return SelectAtomic64(Node, X86::ATOMADD6432);
1753 case X86ISD::ATOMSUB64_DAG:
1754 return SelectAtomic64(Node, X86::ATOMSUB6432);
1755 case X86ISD::ATOMNAND64_DAG:
1756 return SelectAtomic64(Node, X86::ATOMNAND6432);
1757 case X86ISD::ATOMAND64_DAG:
1758 return SelectAtomic64(Node, X86::ATOMAND6432);
1759 case X86ISD::ATOMSWAP64_DAG:
1760 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesenf160d802008-10-02 18:53:47 +00001761
Dan Gohman020c39b2009-08-02 16:10:52 +00001762 case ISD::ATOMIC_LOAD_ADD: {
1763 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1764 if (RetVal)
1765 return RetVal;
1766 break;
1767 }
1768
1769 case ISD::SMUL_LOHI:
1770 case ISD::UMUL_LOHI: {
1771 SDValue N0 = Node->getOperand(0);
1772 SDValue N1 = Node->getOperand(1);
1773
1774 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendlingc551eff2009-08-07 21:33:25 +00001775 if (!isSigned) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001776 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001777 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001778 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1779 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1780 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1781 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman020c39b2009-08-02 16:10:52 +00001782 }
Bill Wendlingc551eff2009-08-07 21:33:25 +00001783 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001784 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001785 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001786 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1787 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1788 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1789 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman020c39b2009-08-02 16:10:52 +00001790 }
Bill Wendlingc551eff2009-08-07 21:33:25 +00001791 }
Dan Gohman020c39b2009-08-02 16:10:52 +00001792
1793 unsigned LoReg, HiReg;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001794 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001795 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001796 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1797 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1798 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1799 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman020c39b2009-08-02 16:10:52 +00001800 }
1801
1802 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohman5f082a72010-01-05 01:24:18 +00001803 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendlingc551eff2009-08-07 21:33:25 +00001804 // Multiply is commmutative.
Dan Gohman020c39b2009-08-02 16:10:52 +00001805 if (!foldedLoad) {
Dan Gohman5f082a72010-01-05 01:24:18 +00001806 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman020c39b2009-08-02 16:10:52 +00001807 if (foldedLoad)
1808 std::swap(N0, N1);
1809 }
1810
1811 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1812 N0, SDValue()).getValue(1);
1813
1814 if (foldedLoad) {
1815 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1816 InFlag };
1817 SDNode *CNode =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001818 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1819 array_lengthof(Ops));
Dan Gohman020c39b2009-08-02 16:10:52 +00001820 InFlag = SDValue(CNode, 1);
1821 // Update the chain.
1822 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1823 } else {
1824 InFlag =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001825 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001826 }
1827
1828 // Copy the low half of the result, if it is needed.
Dan Gohman5f082a72010-01-05 01:24:18 +00001829 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001830 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1831 LoReg, NVT, InFlag);
1832 InFlag = Result.getValue(2);
Dan Gohman5f082a72010-01-05 01:24:18 +00001833 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman020c39b2009-08-02 16:10:52 +00001834#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00001835 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00001836 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00001837 Result.getNode()->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00001838 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00001839 });
Dan Gohman020c39b2009-08-02 16:10:52 +00001840#endif
1841 }
1842 // Copy the high half of the result, if it is needed.
Dan Gohman5f082a72010-01-05 01:24:18 +00001843 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001844 SDValue Result;
1845 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1846 // Prevent use of AH in a REX instruction by referencing AX instead.
1847 // Shift it down 8 bits.
1848 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001849 X86::AX, MVT::i16, InFlag);
Dan Gohman020c39b2009-08-02 16:10:52 +00001850 InFlag = Result.getValue(2);
Dan Gohman61fda0d2009-09-25 18:54:59 +00001851 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1852 Result,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001853 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001854 // Then truncate it down to i8.
Dan Gohman7ffdd432009-08-19 18:16:17 +00001855 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1856 MVT::i8, Result);
Dan Gohman020c39b2009-08-02 16:10:52 +00001857 } else {
1858 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1859 HiReg, NVT, InFlag);
1860 InFlag = Result.getValue(2);
1861 }
Dan Gohman5f082a72010-01-05 01:24:18 +00001862 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohman020c39b2009-08-02 16:10:52 +00001863#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00001864 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00001865 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00001866 Result.getNode()->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00001867 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00001868 });
Dan Gohman020c39b2009-08-02 16:10:52 +00001869#endif
1870 }
1871
1872#ifndef NDEBUG
1873 Indent -= 2;
1874#endif
1875
1876 return NULL;
1877 }
1878
1879 case ISD::SDIVREM:
1880 case ISD::UDIVREM: {
1881 SDValue N0 = Node->getOperand(0);
1882 SDValue N1 = Node->getOperand(1);
1883
1884 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendlingc551eff2009-08-07 21:33:25 +00001885 if (!isSigned) {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001886 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001887 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001888 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1889 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1890 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1891 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman020c39b2009-08-02 16:10:52 +00001892 }
Bill Wendlingc551eff2009-08-07 21:33:25 +00001893 } else {
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001894 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001895 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001896 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1897 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1898 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1899 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman020c39b2009-08-02 16:10:52 +00001900 }
Bill Wendlingc551eff2009-08-07 21:33:25 +00001901 }
Dan Gohman020c39b2009-08-02 16:10:52 +00001902
Chris Lattner789328d2009-12-23 01:45:04 +00001903 unsigned LoReg, HiReg, ClrReg;
Dan Gohman020c39b2009-08-02 16:10:52 +00001904 unsigned ClrOpcode, SExtOpcode;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001905 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001906 default: llvm_unreachable("Unsupported VT!");
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001907 case MVT::i8:
Chris Lattner789328d2009-12-23 01:45:04 +00001908 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman020c39b2009-08-02 16:10:52 +00001909 ClrOpcode = 0;
1910 SExtOpcode = X86::CBW;
1911 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001912 case MVT::i16:
Dan Gohman020c39b2009-08-02 16:10:52 +00001913 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanb9e1c8d2010-01-12 04:42:54 +00001914 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman020c39b2009-08-02 16:10:52 +00001915 SExtOpcode = X86::CWD;
1916 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001917 case MVT::i32:
Chris Lattner789328d2009-12-23 01:45:04 +00001918 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman020c39b2009-08-02 16:10:52 +00001919 ClrOpcode = X86::MOV32r0;
1920 SExtOpcode = X86::CDQ;
1921 break;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001922 case MVT::i64:
Chris Lattner789328d2009-12-23 01:45:04 +00001923 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanb9e1c8d2010-01-12 04:42:54 +00001924 ClrOpcode = X86::MOV64r0;
Dan Gohman020c39b2009-08-02 16:10:52 +00001925 SExtOpcode = X86::CQO;
Evan Chengb723fb52009-07-30 08:33:02 +00001926 break;
1927 }
1928
Dan Gohman020c39b2009-08-02 16:10:52 +00001929 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohman5f082a72010-01-05 01:24:18 +00001930 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman020c39b2009-08-02 16:10:52 +00001931 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman5a199552007-10-08 18:33:35 +00001932
Dan Gohman020c39b2009-08-02 16:10:52 +00001933 SDValue InFlag;
Owen Anderson36e3a6e2009-08-11 20:47:22 +00001934 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001935 // Special case for div8, just use a move with zero extension to AX to
1936 // clear the upper 8 bits (AH).
1937 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohman5f082a72010-01-05 01:24:18 +00001938 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001939 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1940 Move =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001941 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1942 MVT::Other, Ops,
1943 array_lengthof(Ops)), 0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001944 Chain = Move.getValue(1);
1945 ReplaceUses(N0.getValue(1), Chain);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001946 } else {
Dan Gohman020c39b2009-08-02 16:10:52 +00001947 Move =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001948 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001949 Chain = CurDAG->getEntryNode();
1950 }
1951 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1952 InFlag = Chain.getValue(1);
1953 } else {
1954 InFlag =
1955 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1956 LoReg, N0, SDValue()).getValue(1);
1957 if (isSigned && !signBitIsZero) {
1958 // Sign extend the low part into the high part.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001959 InFlag =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001960 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001961 } else {
1962 // Zero out the high part, effectively zero extending the input.
Dan Gohmanb9e1c8d2010-01-12 04:42:54 +00001963 SDValue ClrNode =
1964 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner789328d2009-12-23 01:45:04 +00001965 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman020c39b2009-08-02 16:10:52 +00001966 ClrNode, InFlag).getValue(1);
Dan Gohman5a199552007-10-08 18:33:35 +00001967 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001968 }
Dan Gohman5a199552007-10-08 18:33:35 +00001969
Dan Gohman020c39b2009-08-02 16:10:52 +00001970 if (foldedLoad) {
1971 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1972 InFlag };
1973 SDNode *CNode =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001974 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1975 array_lengthof(Ops));
Dan Gohman020c39b2009-08-02 16:10:52 +00001976 InFlag = SDValue(CNode, 1);
1977 // Update the chain.
1978 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1979 } else {
1980 InFlag =
Dan Gohman61fda0d2009-09-25 18:54:59 +00001981 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman020c39b2009-08-02 16:10:52 +00001982 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001983
Dan Gohman020c39b2009-08-02 16:10:52 +00001984 // Copy the division (low) result, if it is needed.
Dan Gohman5f082a72010-01-05 01:24:18 +00001985 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman020c39b2009-08-02 16:10:52 +00001986 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1987 LoReg, NVT, InFlag);
1988 InFlag = Result.getValue(2);
Dan Gohman5f082a72010-01-05 01:24:18 +00001989 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman020c39b2009-08-02 16:10:52 +00001990#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00001991 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00001992 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00001993 Result.getNode()->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00001994 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00001995 });
Dan Gohman020c39b2009-08-02 16:10:52 +00001996#endif
1997 }
1998 // Copy the remainder (high) result, if it is needed.
Dan Gohman5f082a72010-01-05 01:24:18 +00001999 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman020c39b2009-08-02 16:10:52 +00002000 SDValue Result;
2001 if (HiReg == X86::AH && Subtarget->is64Bit()) {
2002 // Prevent use of AH in a REX instruction by referencing AX instead.
2003 // Shift it down 8 bits.
2004 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002005 X86::AX, MVT::i16, InFlag);
Dan Gohman242a5ba2007-09-25 18:23:27 +00002006 InFlag = Result.getValue(2);
Dan Gohman61fda0d2009-09-25 18:54:59 +00002007 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman020c39b2009-08-02 16:10:52 +00002008 Result,
Owen Anderson36e3a6e2009-08-11 20:47:22 +00002009 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman020c39b2009-08-02 16:10:52 +00002010 0);
2011 // Then truncate it down to i8.
Dan Gohman7ffdd432009-08-19 18:16:17 +00002012 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2013 MVT::i8, Result);
Dan Gohman020c39b2009-08-02 16:10:52 +00002014 } else {
2015 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2016 HiReg, NVT, InFlag);
2017 InFlag = Result.getValue(2);
Evan Cheng6f0f0dd2007-08-09 21:59:35 +00002018 }
Dan Gohman5f082a72010-01-05 01:24:18 +00002019 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohman242a5ba2007-09-25 18:23:27 +00002020#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00002021 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00002022 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendlingc551eff2009-08-07 21:33:25 +00002023 Result.getNode()->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00002024 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00002025 });
Dan Gohman242a5ba2007-09-25 18:23:27 +00002026#endif
Dan Gohman020c39b2009-08-02 16:10:52 +00002027 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002028
2029#ifndef NDEBUG
Dan Gohman020c39b2009-08-02 16:10:52 +00002030 Indent -= 2;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002031#endif
2032
Dan Gohman020c39b2009-08-02 16:10:52 +00002033 return NULL;
2034 }
2035
Dan Gohman7ffdd432009-08-19 18:16:17 +00002036 case X86ISD::CMP: {
Dan Gohman7ffdd432009-08-19 18:16:17 +00002037 SDValue N0 = Node->getOperand(0);
2038 SDValue N1 = Node->getOperand(1);
2039
2040 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2041 // use a smaller encoding.
2042 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2043 N0.getValueType() != MVT::i8 &&
2044 X86::isZeroNode(N1)) {
2045 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2046 if (!C) break;
2047
2048 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohmanf9a38e92009-10-09 20:35:19 +00002049 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2050 (!(C->getZExtValue() & 0x80) ||
2051 HasNoSignedComparisonUses(Node))) {
Dan Gohman7ffdd432009-08-19 18:16:17 +00002052 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2053 SDValue Reg = N0.getNode()->getOperand(0);
2054
2055 // On x86-32, only the ABCD registers have 8-bit subregisters.
2056 if (!Subtarget->is64Bit()) {
2057 TargetRegisterClass *TRC = 0;
2058 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2059 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2060 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2061 default: llvm_unreachable("Unsupported TEST operand type!");
2062 }
2063 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman61fda0d2009-09-25 18:54:59 +00002064 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2065 Reg.getValueType(), Reg, RC), 0);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002066 }
2067
2068 // Extract the l-register.
2069 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2070 MVT::i8, Reg);
2071
2072 // Emit a testb.
Dan Gohman61fda0d2009-09-25 18:54:59 +00002073 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002074 }
2075
2076 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohmanf9a38e92009-10-09 20:35:19 +00002077 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2078 (!(C->getZExtValue() & 0x8000) ||
2079 HasNoSignedComparisonUses(Node))) {
Dan Gohman7ffdd432009-08-19 18:16:17 +00002080 // Shift the immediate right by 8 bits.
2081 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2082 MVT::i8);
2083 SDValue Reg = N0.getNode()->getOperand(0);
2084
2085 // Put the value in an ABCD register.
2086 TargetRegisterClass *TRC = 0;
2087 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2088 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2089 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2090 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2091 default: llvm_unreachable("Unsupported TEST operand type!");
2092 }
2093 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman61fda0d2009-09-25 18:54:59 +00002094 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2095 Reg.getValueType(), Reg, RC), 0);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002096
2097 // Extract the h-register.
2098 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2099 MVT::i8, Reg);
2100
2101 // Emit a testb. No special NOREX tricks are needed since there's
2102 // only one GPR operand!
Dan Gohman61fda0d2009-09-25 18:54:59 +00002103 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2104 Subreg, ShiftedImm);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002105 }
2106
2107 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2108 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohmanf9a38e92009-10-09 20:35:19 +00002109 N0.getValueType() != MVT::i16 &&
2110 (!(C->getZExtValue() & 0x8000) ||
2111 HasNoSignedComparisonUses(Node))) {
Dan Gohman7ffdd432009-08-19 18:16:17 +00002112 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2113 SDValue Reg = N0.getNode()->getOperand(0);
2114
2115 // Extract the 16-bit subregister.
2116 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2117 MVT::i16, Reg);
2118
2119 // Emit a testw.
Dan Gohman61fda0d2009-09-25 18:54:59 +00002120 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002121 }
2122
2123 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2124 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohmanf9a38e92009-10-09 20:35:19 +00002125 N0.getValueType() == MVT::i64 &&
2126 (!(C->getZExtValue() & 0x80000000) ||
2127 HasNoSignedComparisonUses(Node))) {
Dan Gohman7ffdd432009-08-19 18:16:17 +00002128 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2129 SDValue Reg = N0.getNode()->getOperand(0);
2130
2131 // Extract the 32-bit subregister.
2132 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2133 MVT::i32, Reg);
2134
2135 // Emit a testl.
Dan Gohman61fda0d2009-09-25 18:54:59 +00002136 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman7ffdd432009-08-19 18:16:17 +00002137 }
2138 }
2139 break;
2140 }
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002141 }
2142
Dan Gohman5f082a72010-01-05 01:24:18 +00002143 SDNode *ResNode = SelectCode(Node);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002144
2145#ifndef NDEBUG
Bill Wendlingc551eff2009-08-07 21:33:25 +00002146 DEBUG({
David Greeneb592f222010-01-05 01:29:08 +00002147 dbgs() << std::string(Indent-2, ' ') << "=> ";
Dan Gohman5f082a72010-01-05 01:24:18 +00002148 if (ResNode == NULL || ResNode == Node)
2149 Node->dump(CurDAG);
Bill Wendlingc551eff2009-08-07 21:33:25 +00002150 else
2151 ResNode->dump(CurDAG);
David Greeneb592f222010-01-05 01:29:08 +00002152 dbgs() << '\n';
Bill Wendlingc551eff2009-08-07 21:33:25 +00002153 });
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002154 Indent -= 2;
2155#endif
2156
2157 return ResNode;
2158}
2159
2160bool X86DAGToDAGISel::
Dan Gohman8181bd12008-07-27 21:46:04 +00002161SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohman14a66442008-08-23 02:25:05 +00002162 std::vector<SDValue> &OutOps) {
Rafael Espindolabca99f72009-04-08 21:14:34 +00002163 SDValue Op0, Op1, Op2, Op3, Op4;
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002164 switch (ConstraintCode) {
2165 case 'o': // offsetable ??
2166 case 'v': // not offsetable ??
2167 default: return true;
2168 case 'm': // memory
Dan Gohman5f082a72010-01-05 01:24:18 +00002169 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002170 return true;
2171 break;
2172 }
2173
2174 OutOps.push_back(Op0);
2175 OutOps.push_back(Op1);
2176 OutOps.push_back(Op2);
2177 OutOps.push_back(Op3);
Rafael Espindolabca99f72009-04-08 21:14:34 +00002178 OutOps.push_back(Op4);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002179 return false;
2180}
2181
2182/// createX86ISelDag - This pass converts a legalized DAG into a
2183/// X86-specific DAG, ready for instruction scheduling.
2184///
Bill Wendling5ed22ac2009-04-29 23:29:43 +00002185FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2186 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendling58ed5d22009-04-29 00:15:41 +00002187 return new X86DAGToDAGISel(TM, OptLevel);
Dan Gohmanf17a25c2007-07-18 16:29:46 +00002188}