blob: cb82383778587a914189a8a687ace52631ff7edd [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc961eea2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Daniel Dunbar5da58852009-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 Dunbar253e9b22009-11-11 00:28:38 +000019#if (!defined(__llvm__) && defined(__APPLE__) && \
20 defined(__OPTIMIZE__) && !defined(NDEBUG))
Daniel Dunbar5da58852009-11-10 18:24:37 +000021#define NDEBUG
22#endif
23
Evan Cheng2ef88a02006-08-07 22:28:20 +000024#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000025#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000026#include "X86InstrBuilder.h"
Evan Chengc4c62572006-03-13 23:20:37 +000027#include "X86ISelLowering.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000028#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000029#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000030#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000031#include "X86TargetMachine.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000032#include "llvm/GlobalValue.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000033#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000034#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000035#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000036#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000037#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000038#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000039#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000040#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000041#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000042#include "llvm/CodeGen/SelectionDAGISel.h"
43#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000044#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000045#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000046#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000047#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000048#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000049#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000050#include "llvm/ADT/Statistic.h"
51using namespace llvm;
52
Chris Lattner95b2c7d2006-12-19 22:59:26 +000053STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
54
Chris Lattnerc961eea2005-11-16 01:54:32 +000055//===----------------------------------------------------------------------===//
56// Pattern Matcher Implementation
57//===----------------------------------------------------------------------===//
58
59namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000060 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000061 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000062 /// tree.
63 struct X86ISelAddressMode {
64 enum {
65 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000066 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000067 } BaseType;
68
69 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000070 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000071 int FrameIndex;
72 } Base;
73
74 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000075 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000076 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000077 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000079 Constant *CP;
Chris Lattner43f44aa2009-11-01 03:25:03 +000080 BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000081 const char *ES;
82 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000083 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000084 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000085
86 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000087 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000088 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000089 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000090 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000091
92 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000093 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000094 }
Chris Lattner18c59872009-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 Gohman2d0a1cc2009-02-07 00:43:41 +0000114
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000115 void dump() {
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000116 errs() << "X86ISelAddressMode " << this << '\n';
117 errs() << "Base.Reg ";
Bill Wendling12321672009-08-07 21:33:25 +0000118 if (Base.Reg.getNode() != 0)
119 Base.Reg.getNode()->dump();
120 else
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000121 errs() << "nul";
122 errs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
123 << " Scale" << Scale << '\n'
124 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000125 if (IndexReg.getNode() != 0)
126 IndexReg.getNode()->dump();
127 else
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000128 errs() << "nul";
129 errs() << " Disp " << Disp << '\n'
130 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000131 if (GV)
132 GV->dump();
133 else
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000134 errs() << "nul";
135 errs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000136 if (CP)
137 CP->dump();
138 else
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000139 errs() << "nul";
140 errs() << '\n'
141 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000142 if (ES)
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000143 errs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000144 else
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000145 errs() << "nul";
146 errs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000147 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000148 };
149}
150
151namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000152 //===--------------------------------------------------------------------===//
153 /// ISel - X86 specific code to select X86 machine instructions for
154 /// SelectionDAG operations.
155 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000156 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000157 /// X86Lowering - This object fully describes how to lower LLVM code to an
158 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000159 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +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;
Evan Cheng7ccced62006-02-18 00:15:05 +0000164
Evan Chengb7a75a52008-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
Chris Lattnerc961eea2005-11-16 01:54:32 +0000169 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000170 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000171 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000172 X86Lowering(*tm.getTargetLowering()),
173 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000174 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000175
176 virtual const char *getPassName() const {
177 return "X86 DAG->DAG Instruction Selection";
178 }
179
Evan Chengdb8d56b2008-06-30 20:45:06 +0000180 /// InstructionSelect - This callback is invoked by
Chris Lattnerc961eea2005-11-16 01:54:32 +0000181 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000182 virtual void InstructionSelect();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000183
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000184 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
185
Evan Cheng884c70c2008-11-27 00:49:46 +0000186 virtual
187 bool IsLegalAndProfitableToFold(SDNode *N, SDNode *U, SDNode *Root) const;
Evan Chenga8df1b42006-07-27 16:44:36 +0000188
Chris Lattnerc961eea2005-11-16 01:54:32 +0000189// Include the pieces autogenerated from the target description.
190#include "X86GenDAGISel.inc"
191
192 private:
Dan Gohman475871a2008-07-27 21:46:04 +0000193 SDNode *Select(SDValue N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000194 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000195 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000196
Rafael Espindola094fad32009-04-08 21:14:34 +0000197 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
198 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000199 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000200 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
202 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000203 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohman475871a2008-07-27 21:46:04 +0000204 bool SelectAddr(SDValue Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Dan Gohman475871a2008-07-27 21:46:04 +0000207 bool SelectLEAAddr(SDValue Op, SDValue N, SDValue &Base,
208 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000209 bool SelectTLSADDRAddr(SDValue Op, SDValue N, SDValue &Base,
210 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohman475871a2008-07-27 21:46:04 +0000211 bool SelectScalarSSELoad(SDValue Op, SDValue Pred,
212 SDValue N, SDValue &Base, SDValue &Scale,
213 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000214 SDValue &Segment,
Dan Gohman475871a2008-07-27 21:46:04 +0000215 SDValue &InChain, SDValue &OutChain);
216 bool TryFoldLoad(SDValue P, SDValue N,
217 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000218 SDValue &Index, SDValue &Disp,
219 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000220 void PreprocessForRMW();
221 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000222
Chris Lattnerc0bad572006-06-08 18:03:49 +0000223 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
224 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000225 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000226 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000227 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000228
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000229 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
230
Dan Gohman475871a2008-07-27 21:46:04 +0000231 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
232 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000233 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000234 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000235 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
236 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000237 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000238 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000239 // These are 32-bit even in 64-bit mode since RIP relative offset
240 // is 32-bit.
241 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000242 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000243 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000244 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000246 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000251 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000252 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
253 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000256
257 if (AM.Segment.getNode())
258 Segment = AM.Segment;
259 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000261 }
262
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000263 /// getI8Imm - Return a target constant with the specified value, of type
264 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000265 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000267 }
268
Chris Lattnerc961eea2005-11-16 01:54:32 +0000269 /// getI16Imm - Return a target constant with the specified value, of type
270 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000271 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000273 }
274
275 /// getI32Imm - Return a target constant with the specified value, of type
276 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000277 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000279 }
Evan Chengf597dc72006-02-10 22:24:32 +0000280
Dan Gohman8b746962008-09-23 18:22:58 +0000281 /// getGlobalBaseReg - Return an SDNode that returns the value of
282 /// the global base register. Output instructions required to
283 /// initialize the global base register, if necessary.
284 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000285 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000286
Dan Gohmanc5534622009-06-03 20:20:00 +0000287 /// getTargetMachine - Return a reference to the TargetMachine, casted
288 /// to the target-specific type.
289 const X86TargetMachine &getTargetMachine() {
290 return static_cast<const X86TargetMachine &>(TM);
291 }
292
293 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
294 /// to the target-specific type.
295 const X86InstrInfo *getInstrInfo() {
296 return getTargetMachine().getInstrInfo();
297 }
298
Evan Cheng23addc02006-02-10 22:46:26 +0000299#ifndef NDEBUG
300 unsigned Indent;
301#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000302 };
303}
304
Evan Chengf4b4c412006-08-08 00:31:00 +0000305
Evan Cheng884c70c2008-11-27 00:49:46 +0000306bool X86DAGToDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
307 SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000308 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000309
Evan Cheng884c70c2008-11-27 00:49:46 +0000310 if (U == Root)
311 switch (U->getOpcode()) {
312 default: break;
313 case ISD::ADD:
314 case ISD::ADDC:
315 case ISD::ADDE:
316 case ISD::AND:
317 case ISD::OR:
318 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000319 SDValue Op1 = U->getOperand(1);
320
Evan Cheng884c70c2008-11-27 00:49:46 +0000321 // If the other operand is a 8-bit immediate we should fold the immediate
322 // instead. This reduces code size.
323 // e.g.
324 // movl 4(%esp), %eax
325 // addl $4, %eax
326 // vs.
327 // movl $4, %eax
328 // addl 4(%esp), %eax
329 // The former is 2 bytes shorter. In case where the increment is 1, then
330 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000331 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000332 if (Imm->getAPIntValue().isSignedIntN(8))
333 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000334
335 // If the other operand is a TLS address, we should fold it instead.
336 // This produces
337 // movl %gs:0, %eax
338 // leal i@NTPOFF(%eax), %eax
339 // instead of
340 // movl $i@NTPOFF, %eax
341 // addl %gs:0, %eax
342 // if the block also has an access to a second TLS address this will save
343 // a load.
344 // FIXME: This is probably also true for non TLS addresses.
345 if (Op1.getOpcode() == X86ISD::Wrapper) {
346 SDValue Val = Op1.getOperand(0);
347 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
348 return false;
349 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000350 }
351 }
352
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +0000353 // Proceed to 'generic' cycle finder code
354 return SelectionDAGISel::IsLegalAndProfitableToFold(N, U, Root);
Evan Chenga8df1b42006-07-27 16:44:36 +0000355}
356
Evan Cheng70e674e2006-08-28 20:10:17 +0000357/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
358/// and move load below the TokenFactor. Replace store's chain operand with
359/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000360static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000361 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000362 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000363 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
364 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000365 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000366 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000367 Ops.push_back(TF.getOperand(i));
Dan Gohmanaae317a2009-08-06 09:22:57 +0000368 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
369 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
370 Load.getOperand(1),
371 Load.getOperand(2));
372 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohmanf350b272008-08-23 02:25:05 +0000373 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000374}
375
Nate Begeman206a3572009-09-16 03:20:46 +0000376/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
377/// chain produced by the load must only be used by the store's chain operand,
378/// otherwise this may produce a cycle in the DAG.
Evan Chengcd0baf22008-05-23 21:23:16 +0000379///
Dan Gohman475871a2008-07-27 21:46:04 +0000380static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
381 SDValue &Load) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000382 if (N.getOpcode() == ISD::BIT_CONVERT)
383 N = N.getOperand(0);
384
385 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
386 if (!LD || LD->isVolatile())
387 return false;
388 if (LD->getAddressingMode() != ISD::UNINDEXED)
389 return false;
390
391 ISD::LoadExtType ExtType = LD->getExtensionType();
392 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
393 return false;
394
395 if (N.hasOneUse() &&
Nate Begeman206a3572009-09-16 03:20:46 +0000396 LD->hasNUsesOfValue(1, 1) &&
Evan Chengcd0baf22008-05-23 21:23:16 +0000397 N.getOperand(1) == Address &&
Nate Begeman206a3572009-09-16 03:20:46 +0000398 LD->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000399 Load = N;
400 return true;
401 }
402 return false;
403}
404
Evan Chengab6c3bb2008-08-25 21:27:18 +0000405/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
406/// operand and move load below the call's chain operand.
407static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000408 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000409 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000410 SDValue Chain = CallSeqStart.getOperand(0);
411 if (Chain.getNode() == Load.getNode())
412 Ops.push_back(Load.getOperand(0));
413 else {
414 assert(Chain.getOpcode() == ISD::TokenFactor &&
415 "Unexpected CallSeqStart chain operand");
416 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
417 if (Chain.getOperand(i).getNode() == Load.getNode())
418 Ops.push_back(Load.getOperand(0));
419 else
420 Ops.push_back(Chain.getOperand(i));
421 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000422 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000423 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000424 Ops.clear();
425 Ops.push_back(NewChain);
426 }
427 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
428 Ops.push_back(CallSeqStart.getOperand(i));
429 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000430 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
431 Load.getOperand(1), Load.getOperand(2));
432 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000433 Ops.push_back(SDValue(Load.getNode(), 1));
434 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000435 Ops.push_back(Call.getOperand(i));
436 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
437}
438
439/// isCalleeLoad - Return true if call address is a load and it can be
440/// moved below CALLSEQ_START and the chains leading up to the call.
441/// Return the CALLSEQ_START by reference as a second output.
442static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000443 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000444 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000445 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000446 if (!LD ||
447 LD->isVolatile() ||
448 LD->getAddressingMode() != ISD::UNINDEXED ||
449 LD->getExtensionType() != ISD::NON_EXTLOAD)
450 return false;
451
452 // Now let's find the callseq_start.
453 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
454 if (!Chain.hasOneUse())
455 return false;
456 Chain = Chain.getOperand(0);
457 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000458
459 if (Chain.getOperand(0).getNode() == Callee.getNode())
460 return true;
461 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000462 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
463 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000464 return true;
465 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000466}
467
468
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000469/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000470/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000471/// This allows the instruction selector to pick more read-modify-write
472/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000473///
474/// [Load chain]
475/// ^
476/// |
477/// [Load]
478/// ^ ^
479/// | |
480/// / \-
481/// / |
482/// [TokenFactor] [Op]
483/// ^ ^
484/// | |
485/// \ /
486/// \ /
487/// [Store]
488///
489/// The fact the store's chain operand != load's chain will prevent the
490/// (store (op (load))) instruction from being selected. We can transform it to:
491///
492/// [Load chain]
493/// ^
494/// |
495/// [TokenFactor]
496/// ^
497/// |
498/// [Load]
499/// ^ ^
500/// | |
501/// | \-
502/// | |
503/// | [Op]
504/// | ^
505/// | |
506/// \ /
507/// \ /
508/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000509void X86DAGToDAGISel::PreprocessForRMW() {
510 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
511 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000512 if (I->getOpcode() == X86ISD::CALL) {
513 /// Also try moving call address load from outside callseq_start to just
514 /// before the call to allow it to be folded.
515 ///
516 /// [Load chain]
517 /// ^
518 /// |
519 /// [Load]
520 /// ^ ^
521 /// | |
522 /// / \--
523 /// / |
524 ///[CALLSEQ_START] |
525 /// ^ |
526 /// | |
527 /// [LOAD/C2Reg] |
528 /// | |
529 /// \ /
530 /// \ /
531 /// [CALL]
532 SDValue Chain = I->getOperand(0);
533 SDValue Load = I->getOperand(1);
534 if (!isCalleeLoad(Load, Chain))
535 continue;
536 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
537 ++NumLoadMoved;
538 continue;
539 }
540
Evan Cheng8b2794a2006-10-13 21:14:26 +0000541 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000542 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000543 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000544
Gabor Greifba36cb52008-08-28 21:40:38 +0000545 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000546 continue;
547
Dan Gohman475871a2008-07-27 21:46:04 +0000548 SDValue N1 = I->getOperand(1);
549 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000550 if ((N1.getValueType().isFloatingPoint() &&
551 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000552 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000553 continue;
554
555 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000556 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000557 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000558 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000559 case ISD::ADD:
560 case ISD::MUL:
561 case ISD::AND:
562 case ISD::OR:
563 case ISD::XOR:
564 case ISD::ADDC:
565 case ISD::ADDE:
566 case ISD::VECTOR_SHUFFLE: {
567 SDValue N10 = N1.getOperand(0);
568 SDValue N11 = N1.getOperand(1);
569 RModW = isRMWLoad(N10, Chain, N2, Load);
570 if (!RModW)
571 RModW = isRMWLoad(N11, Chain, N2, Load);
572 break;
573 }
574 case ISD::SUB:
575 case ISD::SHL:
576 case ISD::SRA:
577 case ISD::SRL:
578 case ISD::ROTL:
579 case ISD::ROTR:
580 case ISD::SUBC:
581 case ISD::SUBE:
582 case X86ISD::SHLD:
583 case X86ISD::SHRD: {
584 SDValue N10 = N1.getOperand(0);
585 RModW = isRMWLoad(N10, Chain, N2, Load);
586 break;
587 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000588 }
589
Evan Cheng82a35b32006-08-29 06:44:17 +0000590 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000591 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000592 ++NumLoadMoved;
593 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000594 }
595}
596
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000597
598/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
599/// nodes that target the FP stack to be store and load to the stack. This is a
600/// gross hack. We would like to simply mark these as being illegal, but when
601/// we do that, legalize produces these when it expands calls, then expands
602/// these in the same legalize pass. We would like dag combine to be able to
603/// hack on these between the call expansion and the node legalization. As such
604/// this pass basically does "really late" legalization of these inline with the
605/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000606void X86DAGToDAGISel::PreprocessForFPConvert() {
607 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
608 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000609 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
610 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
611 continue;
612
613 // If the source and destination are SSE registers, then this is a legal
614 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000615 EVT SrcVT = N->getOperand(0).getValueType();
616 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000617 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
618 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
619 if (SrcIsSSE && DstIsSSE)
620 continue;
621
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000622 if (!SrcIsSSE && !DstIsSSE) {
623 // If this is an FPStack extension, it is a noop.
624 if (N->getOpcode() == ISD::FP_EXTEND)
625 continue;
626 // If this is a value-preserving FPStack truncation, it is a noop.
627 if (N->getConstantOperandVal(1))
628 continue;
629 }
630
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000631 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
632 // FPStack has extload and truncstore. SSE can fold direct loads into other
633 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000634 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000635 if (N->getOpcode() == ISD::FP_ROUND)
636 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
637 else
638 MemVT = SrcIsSSE ? SrcVT : DstVT;
639
Dan Gohmanf350b272008-08-23 02:25:05 +0000640 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000641 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000642
643 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000644 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000645 N->getOperand(0),
646 MemTmp, NULL, 0, MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000647 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Dan Gohmanf350b272008-08-23 02:25:05 +0000648 NULL, 0, MemVT);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000649
650 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
651 // extload we created. This will cause general havok on the dag because
652 // anything below the conversion could be folded into other existing nodes.
653 // To avoid invalidating 'I', back it up to the convert node.
654 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000655 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000656
657 // Now that we did that, the node is dead. Increment the iterator to the
658 // next node to process, then delete N.
659 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000660 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000661 }
662}
663
Chris Lattnerc961eea2005-11-16 01:54:32 +0000664/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
665/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000666void X86DAGToDAGISel::InstructionSelect() {
Dan Gohman7571eb52009-08-01 03:42:59 +0000667 const Function *F = MF->getFunction();
Devang Patele76225a2008-10-06 18:03:39 +0000668 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000669
Bill Wendling98a366d2009-04-29 23:29:43 +0000670 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000671 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000672
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000673 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000674 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000675
Chris Lattnerc961eea2005-11-16 01:54:32 +0000676 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000677#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000678 DEBUG(errs() << "===== Instruction selection begins:\n");
Evan Cheng23addc02006-02-10 22:46:26 +0000679 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000680#endif
David Greene8ad4c002008-10-27 21:56:29 +0000681 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000682#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000683 DEBUG(errs() << "===== Instruction selection ends:\n");
Evan Chengf597dc72006-02-10 22:24:32 +0000684#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000685
Dan Gohmanf350b272008-08-23 02:25:05 +0000686 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000687}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000688
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000689/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
690/// the main function.
691void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
692 MachineFrameInfo *MFI) {
693 const TargetInstrInfo *TII = TM.getInstrInfo();
694 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000695 BuildMI(BB, DebugLoc::getUnknownLoc(),
696 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000697}
698
699void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
700 // If this is main, emit special code for main.
701 MachineBasicBlock *BB = MF.begin();
702 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
703 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
704}
705
Rafael Espindola094fad32009-04-08 21:14:34 +0000706
707bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
708 X86ISelAddressMode &AM) {
709 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
710 SDValue Segment = N.getOperand(0);
711
712 if (AM.Segment.getNode() == 0) {
713 AM.Segment = Segment;
714 return false;
715 }
716
717 return true;
718}
719
720bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
721 // This optimization is valid because the GNU TLS model defines that
722 // gs:0 (or fs:0 on X86-64) contains its own address.
723 // For more information see http://people.redhat.com/drepper/tls.pdf
724
725 SDValue Address = N.getOperand(1);
726 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
727 !MatchSegmentBaseAddress (Address, AM))
728 return false;
729
730 return true;
731}
732
Chris Lattner18c59872009-06-27 04:16:01 +0000733/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
734/// into an addressing mode. These wrap things that will resolve down into a
735/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000736/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000737bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000738 // If the addressing mode already has a symbol as the displacement, we can
739 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000740 if (AM.hasSymbolicDisplacement())
741 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000742
743 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000744 CodeModel::Model M = TM.getCodeModel();
745
Chris Lattner18c59872009-06-27 04:16:01 +0000746 // Handle X86-64 rip-relative addresses. We check this before checking direct
747 // folding because RIP is preferable to non-RIP accesses.
748 if (Subtarget->is64Bit() &&
749 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
750 // they cannot be folded into immediate fields.
751 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000752 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000753 // Base and index reg must be 0 in order to use %rip as base and lowering
754 // must allow RIP.
755 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000756 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
757 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000758 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000759 AM.GV = G->getGlobal();
760 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000761 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000762 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
763 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000764 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000765 AM.CP = CP->getConstVal();
766 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000767 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000768 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000769 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
770 AM.ES = S->getSymbol();
771 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000772 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000773 AM.JT = J->getIndex();
774 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000775 } else {
776 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000777 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000778 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000779
Chris Lattner18c59872009-06-27 04:16:01 +0000780 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000781 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000782 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000783 }
784
785 // Handle the case when globals fit in our immediate field: This is true for
786 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
787 // mode, this results in a non-RIP-relative computation.
788 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000789 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000790 TM.getRelocationModel() == Reloc::Static)) {
791 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
792 AM.GV = G->getGlobal();
793 AM.Disp += G->getOffset();
794 AM.SymbolFlags = G->getTargetFlags();
795 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
796 AM.CP = CP->getConstVal();
797 AM.Align = CP->getAlignment();
798 AM.Disp += CP->getOffset();
799 AM.SymbolFlags = CP->getTargetFlags();
800 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
801 AM.ES = S->getSymbol();
802 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000803 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000804 AM.JT = J->getIndex();
805 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000806 } else {
807 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000808 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000809 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000810 return false;
811 }
812
813 return true;
814}
815
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000816/// MatchAddress - Add the specified node to the specified addressing mode,
817/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000818/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000819bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
820 if (MatchAddressRecursively(N, AM, 0))
821 return true;
822
823 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
824 // a smaller encoding and avoids a scaled-index.
825 if (AM.Scale == 2 &&
826 AM.BaseType == X86ISelAddressMode::RegBase &&
827 AM.Base.Reg.getNode() == 0) {
828 AM.Base.Reg = AM.IndexReg;
829 AM.Scale = 1;
830 }
831
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000832 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
833 // because it has a smaller encoding.
834 // TODO: Which other code models can use this?
835 if (TM.getCodeModel() == CodeModel::Small &&
836 Subtarget->is64Bit() &&
837 AM.Scale == 1 &&
838 AM.BaseType == X86ISelAddressMode::RegBase &&
839 AM.Base.Reg.getNode() == 0 &&
840 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000841 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000842 AM.hasSymbolicDisplacement())
843 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
844
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000845 return false;
846}
847
848bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
849 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000850 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000851 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000852 DEBUG({
853 errs() << "MatchAddress: ";
854 AM.dump();
855 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000856 // Limit recursion.
857 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000858 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000859
860 CodeModel::Model M = TM.getCodeModel();
861
Chris Lattner18c59872009-06-27 04:16:01 +0000862 // If this is already a %rip relative address, we can only merge immediates
863 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000864 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000865 if (AM.isRIPRelative()) {
866 // FIXME: JumpTable and ExternalSymbol address currently don't like
867 // displacements. It isn't very important, but this should be fixed for
868 // consistency.
869 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000870
Chris Lattner18c59872009-06-27 04:16:01 +0000871 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
872 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000873 if (X86::isOffsetSuitableForCodeModel(Val, M,
874 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000875 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000876 return false;
877 }
878 }
879 return true;
880 }
881
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000882 switch (N.getOpcode()) {
883 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000884 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000885 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000886 if (!is64Bit ||
887 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
888 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000889 AM.Disp += Val;
890 return false;
891 }
892 break;
893 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000894
Rafael Espindola094fad32009-04-08 21:14:34 +0000895 case X86ISD::SegmentBaseAddress:
896 if (!MatchSegmentBaseAddress(N, AM))
897 return false;
898 break;
899
Rafael Espindola49a168d2009-04-12 21:55:03 +0000900 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000901 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000902 if (!MatchWrapper(N, AM))
903 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000904 break;
905
Rafael Espindola094fad32009-04-08 21:14:34 +0000906 case ISD::LOAD:
907 if (!MatchLoad(N, AM))
908 return false;
909 break;
910
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000911 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000912 if (AM.BaseType == X86ISelAddressMode::RegBase
913 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000914 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
915 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
916 return false;
917 }
918 break;
Evan Chengec693f72005-12-08 02:01:35 +0000919
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000920 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000921 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000922 break;
923
Gabor Greif93c53e52008-08-31 15:37:04 +0000924 if (ConstantSDNode
925 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000926 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000927 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
928 // that the base operand remains free for further matching. If
929 // the base doesn't end up getting used, a post-processing step
930 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000931 if (Val == 1 || Val == 2 || Val == 3) {
932 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000933 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000934
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000935 // Okay, we know that we have a scale by now. However, if the scaled
936 // value is an add of something and a constant, we can fold the
937 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000938 if (ShVal.getNode()->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
939 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
940 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000941 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000942 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000943 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000944 if (!is64Bit ||
945 X86::isOffsetSuitableForCodeModel(Disp, M,
946 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000947 AM.Disp = Disp;
948 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000949 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000950 } else {
951 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000952 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000953 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000954 }
955 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000956 }
Evan Chengec693f72005-12-08 02:01:35 +0000957
Dan Gohman83688052007-10-22 20:22:24 +0000958 case ISD::SMUL_LOHI:
959 case ISD::UMUL_LOHI:
960 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000961 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000962 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000963 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000964 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000965 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000966 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000967 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000968 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000969 if (ConstantSDNode
970 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000971 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
972 CN->getZExtValue() == 9) {
973 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000974
Gabor Greifba36cb52008-08-28 21:40:38 +0000975 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000976 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000977
978 // Okay, we know that we have a scale by now. However, if the scaled
979 // value is an add of something and a constant, we can fold the
980 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000981 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
982 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
983 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000984 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000985 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000986 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000987 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000988 if (!is64Bit ||
989 X86::isOffsetSuitableForCodeModel(Disp, M,
990 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000991 AM.Disp = Disp;
992 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000993 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000994 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000995 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000996 }
997
998 AM.IndexReg = AM.Base.Reg = Reg;
999 return false;
1000 }
Chris Lattner62412262007-02-04 20:18:17 +00001001 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001002 break;
1003
Dan Gohman3cd90a12009-05-11 18:02:53 +00001004 case ISD::SUB: {
1005 // Given A-B, if A can be completely folded into the address and
1006 // the index field with the index field unused, use -B as the index.
1007 // This is a win if a has multiple parts that can be folded into
1008 // the address. Also, this saves a mov if the base register has
1009 // other uses, since it avoids a two-address sub instruction, however
1010 // it costs an additional mov if the index register has other uses.
1011
1012 // Test if the LHS of the sub can be folded.
1013 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001014 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001015 AM = Backup;
1016 break;
1017 }
1018 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001019 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001020 AM = Backup;
1021 break;
1022 }
1023 int Cost = 0;
1024 SDValue RHS = N.getNode()->getOperand(1);
1025 // If the RHS involves a register with multiple uses, this
1026 // transformation incurs an extra mov, due to the neg instruction
1027 // clobbering its operand.
1028 if (!RHS.getNode()->hasOneUse() ||
1029 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1030 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1031 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1032 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001033 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001034 ++Cost;
1035 // If the base is a register with multiple uses, this
1036 // transformation may save a mov.
1037 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1038 AM.Base.Reg.getNode() &&
1039 !AM.Base.Reg.getNode()->hasOneUse()) ||
1040 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1041 --Cost;
1042 // If the folded LHS was interesting, this transformation saves
1043 // address arithmetic.
1044 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1045 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1046 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1047 --Cost;
1048 // If it doesn't look like it may be an overall win, don't do it.
1049 if (Cost >= 0) {
1050 AM = Backup;
1051 break;
1052 }
1053
1054 // Ok, the transformation is legal and appears profitable. Go for it.
1055 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1056 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1057 AM.IndexReg = Neg;
1058 AM.Scale = 1;
1059
1060 // Insert the new nodes into the topological ordering.
1061 if (Zero.getNode()->getNodeId() == -1 ||
1062 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1063 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1064 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1065 }
1066 if (Neg.getNode()->getNodeId() == -1 ||
1067 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1068 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1069 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1070 }
1071 return false;
1072 }
1073
Evan Cheng8e278262009-01-17 07:09:27 +00001074 case ISD::ADD: {
1075 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001076 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1077 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001078 return false;
1079 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001080 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1081 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001082 return false;
1083 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001084
1085 // If we couldn't fold both operands into the address at the same time,
1086 // see if we can just put each operand into a register and fold at least
1087 // the add.
1088 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1089 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001090 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001091 AM.Base.Reg = N.getNode()->getOperand(0);
1092 AM.IndexReg = N.getNode()->getOperand(1);
1093 AM.Scale = 1;
1094 return false;
1095 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001096 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001097 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001098
Chris Lattner62412262007-02-04 20:18:17 +00001099 case ISD::OR:
1100 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001101 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1102 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001103 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001104 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001105 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001106 // Address could not have picked a GV address for the displacement.
1107 AM.GV == NULL &&
1108 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001109 (!is64Bit ||
1110 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1111 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001112 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001113 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001114 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001115 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001116 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001117 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001118 }
1119 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001120
1121 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001122 // Perform some heroic transforms on an and of a constant-count shift
1123 // with a constant to enable use of the scaled offset field.
1124
Dan Gohman475871a2008-07-27 21:46:04 +00001125 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001126 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001127
Evan Cheng1314b002007-12-13 00:43:27 +00001128 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001129 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001130
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001131 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001132 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1133 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1134 if (!C1 || !C2) break;
1135
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001136 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1137 // allows us to convert the shift and and into an h-register extract and
1138 // a scaled index.
1139 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1140 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001141 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001142 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001143 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001144 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1145 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1146 X, Eight);
1147 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1148 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001149 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001150 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1151 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001152
1153 // Insert the new nodes into the topological ordering.
1154 if (Eight.getNode()->getNodeId() == -1 ||
1155 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1156 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1157 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1158 }
1159 if (Mask.getNode()->getNodeId() == -1 ||
1160 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1161 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1162 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1163 }
1164 if (Srl.getNode()->getNodeId() == -1 ||
1165 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1166 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1167 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1168 }
1169 if (And.getNode()->getNodeId() == -1 ||
1170 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1171 CurDAG->RepositionNode(N.getNode(), And.getNode());
1172 And.getNode()->setNodeId(N.getNode()->getNodeId());
1173 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001174 if (ShlCount.getNode()->getNodeId() == -1 ||
1175 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1176 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1177 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1178 }
1179 if (Shl.getNode()->getNodeId() == -1 ||
1180 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1181 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1182 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1183 }
1184 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001185 AM.IndexReg = And;
1186 AM.Scale = (1 << ScaleLog);
1187 return false;
1188 }
1189 }
1190
1191 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1192 // allows us to fold the shift into this addressing mode.
1193 if (Shift.getOpcode() != ISD::SHL) break;
1194
Evan Cheng1314b002007-12-13 00:43:27 +00001195 // Not likely to be profitable if either the AND or SHIFT node has more
1196 // than one use (unless all uses are for address computation). Besides,
1197 // isel mechanism requires their node ids to be reused.
1198 if (!N.hasOneUse() || !Shift.hasOneUse())
1199 break;
1200
1201 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001202 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001203 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1204 break;
1205
1206 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001207 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001208 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001209 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1210 NewANDMask);
1211 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001212 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001213
1214 // Insert the new nodes into the topological ordering.
1215 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1216 CurDAG->RepositionNode(X.getNode(), C1);
1217 C1->setNodeId(X.getNode()->getNodeId());
1218 }
1219 if (NewANDMask.getNode()->getNodeId() == -1 ||
1220 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1221 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1222 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1223 }
1224 if (NewAND.getNode()->getNodeId() == -1 ||
1225 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1226 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1227 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1228 }
1229 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1230 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1231 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1232 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1233 }
1234
Dan Gohman7b8e9642008-10-13 20:52:04 +00001235 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001236
1237 AM.Scale = 1 << ShiftCst;
1238 AM.IndexReg = NewAND;
1239 return false;
1240 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001241 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001242
Rafael Espindola523249f2009-03-31 16:16:57 +00001243 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001244}
1245
1246/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1247/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001248bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001249 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001250 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001251 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001252 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001253 AM.IndexReg = N;
1254 AM.Scale = 1;
1255 return false;
1256 }
1257
1258 // Otherwise, we cannot select it.
1259 return true;
1260 }
1261
1262 // Default, generate it as a register.
1263 AM.BaseType = X86ISelAddressMode::RegBase;
1264 AM.Base.Reg = N;
1265 return false;
1266}
1267
Evan Chengec693f72005-12-08 02:01:35 +00001268/// SelectAddr - returns true if it is able pattern match an addressing mode.
1269/// It returns the operands which make up the maximal addressing mode it can
1270/// match by reference.
Dan Gohman475871a2008-07-27 21:46:04 +00001271bool X86DAGToDAGISel::SelectAddr(SDValue Op, SDValue N, SDValue &Base,
1272 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001273 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001274 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001275 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001276 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001277
Owen Andersone50ed302009-08-10 22:56:29 +00001278 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001279 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001281 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001282 }
Evan Cheng8700e142006-01-11 06:09:51 +00001283
Gabor Greifba36cb52008-08-28 21:40:38 +00001284 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001285 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001286
Rafael Espindola094fad32009-04-08 21:14:34 +00001287 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001288 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001289}
1290
Chris Lattner3a7cd952006-10-07 21:55:32 +00001291/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1292/// match a load whose top elements are either undef or zeros. The load flavor
1293/// is derived from the type of N, which is either v4f32 or v2f64.
Dan Gohman475871a2008-07-27 21:46:04 +00001294bool X86DAGToDAGISel::SelectScalarSSELoad(SDValue Op, SDValue Pred,
1295 SDValue N, SDValue &Base,
1296 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001297 SDValue &Disp, SDValue &Segment,
1298 SDValue &InChain,
Dan Gohman475871a2008-07-27 21:46:04 +00001299 SDValue &OutChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001300 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner4fe4f252006-10-11 22:09:58 +00001301 InChain = N.getOperand(0).getValue(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001302 if (ISD::isNON_EXTLoad(InChain.getNode()) &&
Evan Cheng07e4b002006-10-16 06:34:55 +00001303 InChain.getValue(0).hasOneUse() &&
Evan Chengd6373bc2006-11-10 21:23:04 +00001304 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001305 IsLegalAndProfitableToFold(N.getNode(), Pred.getNode(), Op.getNode())) {
Evan Cheng82a91642006-10-11 21:06:01 +00001306 LoadSDNode *LD = cast<LoadSDNode>(InChain);
Rafael Espindola094fad32009-04-08 21:14:34 +00001307 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001308 return false;
Evan Cheng82a91642006-10-11 21:06:01 +00001309 OutChain = LD->getChain();
Chris Lattner3a7cd952006-10-07 21:55:32 +00001310 return true;
1311 }
1312 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001313
1314 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001315 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001316 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001317 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001318 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001319 N.getOperand(0).getNode()->hasOneUse() &&
1320 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00001321 N.getOperand(0).getOperand(0).hasOneUse()) {
1322 // Okay, this is a zero extending load. Fold it.
1323 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Rafael Espindola094fad32009-04-08 21:14:34 +00001324 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001325 return false;
1326 OutChain = LD->getChain();
Dan Gohman475871a2008-07-27 21:46:04 +00001327 InChain = SDValue(LD, 1);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001328 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001329 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001330 return false;
1331}
1332
1333
Evan Cheng51a9ed92006-02-25 10:09:08 +00001334/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1335/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00001336bool X86DAGToDAGISel::SelectLEAAddr(SDValue Op, SDValue N,
1337 SDValue &Base, SDValue &Scale,
1338 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001339 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001340
1341 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1342 // segments.
1343 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001344 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001345 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001346 if (MatchAddress(N, AM))
1347 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001348 assert (T == AM.Segment);
1349 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001350
Owen Andersone50ed302009-08-10 22:56:29 +00001351 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001352 unsigned Complexity = 0;
1353 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001354 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001355 Complexity = 1;
1356 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001357 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001358 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1359 Complexity = 4;
1360
Gabor Greifba36cb52008-08-28 21:40:38 +00001361 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001362 Complexity++;
1363 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001364 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001365
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001366 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1367 // a simple shift.
1368 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001369 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001370
1371 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1372 // to a LEA. This is determined with some expermentation but is by no means
1373 // optimal (especially for code size consideration). LEA is nice because of
1374 // its three-address nature. Tweak the cost function again when we can run
1375 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001376 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001377 // For X86-64, we should always use lea to materialize RIP relative
1378 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001379 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001380 Complexity = 4;
1381 else
1382 Complexity += 2;
1383 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001384
Gabor Greifba36cb52008-08-28 21:40:38 +00001385 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001386 Complexity++;
1387
Chris Lattner25142782009-07-11 22:50:33 +00001388 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001389 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001390 return false;
1391
1392 SDValue Segment;
1393 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1394 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001395}
1396
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001397/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
1398bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue Op, SDValue N, SDValue &Base,
1399 SDValue &Scale, SDValue &Index,
1400 SDValue &Disp) {
1401 assert(Op.getOpcode() == X86ISD::TLSADDR);
1402 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1403 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1404
1405 X86ISelAddressMode AM;
1406 AM.GV = GA->getGlobal();
1407 AM.Disp += GA->getOffset();
1408 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001409 AM.SymbolFlags = GA->getTargetFlags();
1410
Owen Anderson825b72b2009-08-11 20:47:22 +00001411 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001412 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001413 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001414 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001415 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001416 }
1417
1418 SDValue Segment;
1419 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1420 return true;
1421}
1422
1423
Dan Gohman475871a2008-07-27 21:46:04 +00001424bool X86DAGToDAGISel::TryFoldLoad(SDValue P, SDValue N,
1425 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001426 SDValue &Index, SDValue &Disp,
1427 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001428 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng5e351682006-02-06 06:02:33 +00001429 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001430 IsLegalAndProfitableToFold(N.getNode(), P.getNode(), P.getNode()))
Rafael Espindola094fad32009-04-08 21:14:34 +00001431 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001432 return false;
1433}
1434
Dan Gohman8b746962008-09-23 18:22:58 +00001435/// getGlobalBaseReg - Return an SDNode that returns the value of
1436/// the global base register. Output instructions required to
1437/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001438///
Evan Cheng9ade2182006-08-26 05:34:46 +00001439SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001440 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001441 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001442}
1443
Evan Chengb245d922006-05-20 01:36:52 +00001444static SDNode *FindCallStartFromCall(SDNode *Node) {
1445 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001446 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001447 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001448 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001449}
1450
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001451SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1452 SDValue Chain = Node->getOperand(0);
1453 SDValue In1 = Node->getOperand(1);
1454 SDValue In2L = Node->getOperand(2);
1455 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001456 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1457 if (!SelectAddr(In1, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001458 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001459 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1460 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1461 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1462 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1463 MVT::i32, MVT::i32, MVT::Other, Ops,
1464 array_lengthof(Ops));
1465 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1466 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001467}
Christopher Lambc59e5212007-08-10 21:48:46 +00001468
Owen Andersone50ed302009-08-10 22:56:29 +00001469SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001470 if (Node->hasAnyUseOfValue(0))
1471 return 0;
1472
1473 // Optimize common patterns for __sync_add_and_fetch and
1474 // __sync_sub_and_fetch where the result is not used. This allows us
1475 // to use "lock" version of add, sub, inc, dec instructions.
1476 // FIXME: Do not use special instructions but instead add the "lock"
1477 // prefix to the target node somehow. The extra information will then be
1478 // transferred to machine instruction and it denotes the prefix.
1479 SDValue Chain = Node->getOperand(0);
1480 SDValue Ptr = Node->getOperand(1);
1481 SDValue Val = Node->getOperand(2);
1482 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1483 if (!SelectAddr(Ptr, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1484 return 0;
1485
1486 bool isInc = false, isDec = false, isSub = false, isCN = false;
1487 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1488 if (CN) {
1489 isCN = true;
1490 int64_t CNVal = CN->getSExtValue();
1491 if (CNVal == 1)
1492 isInc = true;
1493 else if (CNVal == -1)
1494 isDec = true;
1495 else if (CNVal >= 0)
1496 Val = CurDAG->getTargetConstant(CNVal, NVT);
1497 else {
1498 isSub = true;
1499 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1500 }
1501 } else if (Val.hasOneUse() &&
1502 Val.getOpcode() == ISD::SUB &&
1503 X86::isZeroNode(Val.getOperand(0))) {
1504 isSub = true;
1505 Val = Val.getOperand(1);
1506 }
1507
1508 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001509 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001510 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001511 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001512 if (isInc)
1513 Opc = X86::LOCK_INC8m;
1514 else if (isDec)
1515 Opc = X86::LOCK_DEC8m;
1516 else if (isSub) {
1517 if (isCN)
1518 Opc = X86::LOCK_SUB8mi;
1519 else
1520 Opc = X86::LOCK_SUB8mr;
1521 } else {
1522 if (isCN)
1523 Opc = X86::LOCK_ADD8mi;
1524 else
1525 Opc = X86::LOCK_ADD8mr;
1526 }
1527 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001528 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001529 if (isInc)
1530 Opc = X86::LOCK_INC16m;
1531 else if (isDec)
1532 Opc = X86::LOCK_DEC16m;
1533 else if (isSub) {
1534 if (isCN) {
1535 if (Predicate_i16immSExt8(Val.getNode()))
1536 Opc = X86::LOCK_SUB16mi8;
1537 else
1538 Opc = X86::LOCK_SUB16mi;
1539 } else
1540 Opc = X86::LOCK_SUB16mr;
1541 } else {
1542 if (isCN) {
1543 if (Predicate_i16immSExt8(Val.getNode()))
1544 Opc = X86::LOCK_ADD16mi8;
1545 else
1546 Opc = X86::LOCK_ADD16mi;
1547 } else
1548 Opc = X86::LOCK_ADD16mr;
1549 }
1550 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001551 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001552 if (isInc)
1553 Opc = X86::LOCK_INC32m;
1554 else if (isDec)
1555 Opc = X86::LOCK_DEC32m;
1556 else if (isSub) {
1557 if (isCN) {
1558 if (Predicate_i32immSExt8(Val.getNode()))
1559 Opc = X86::LOCK_SUB32mi8;
1560 else
1561 Opc = X86::LOCK_SUB32mi;
1562 } else
1563 Opc = X86::LOCK_SUB32mr;
1564 } else {
1565 if (isCN) {
1566 if (Predicate_i32immSExt8(Val.getNode()))
1567 Opc = X86::LOCK_ADD32mi8;
1568 else
1569 Opc = X86::LOCK_ADD32mi;
1570 } else
1571 Opc = X86::LOCK_ADD32mr;
1572 }
1573 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001574 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001575 if (isInc)
1576 Opc = X86::LOCK_INC64m;
1577 else if (isDec)
1578 Opc = X86::LOCK_DEC64m;
1579 else if (isSub) {
1580 Opc = X86::LOCK_SUB64mr;
1581 if (isCN) {
1582 if (Predicate_i64immSExt8(Val.getNode()))
1583 Opc = X86::LOCK_SUB64mi8;
1584 else if (Predicate_i64immSExt32(Val.getNode()))
1585 Opc = X86::LOCK_SUB64mi32;
1586 }
1587 } else {
1588 Opc = X86::LOCK_ADD64mr;
1589 if (isCN) {
1590 if (Predicate_i64immSExt8(Val.getNode()))
1591 Opc = X86::LOCK_ADD64mi8;
1592 else if (Predicate_i64immSExt32(Val.getNode()))
1593 Opc = X86::LOCK_ADD64mi32;
1594 }
1595 }
1596 break;
1597 }
1598
1599 DebugLoc dl = Node->getDebugLoc();
Dan Gohman602b0c82009-09-25 18:54:59 +00001600 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetInstrInfo::IMPLICIT_DEF,
1601 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001602 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1603 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001604 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001605 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1606 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1607 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001608 SDValue RetVals[] = { Undef, Ret };
1609 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1610 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001611 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1612 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1613 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001614 SDValue RetVals[] = { Undef, Ret };
1615 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1616 }
1617}
1618
Dan Gohman11596ed2009-10-09 20:35:19 +00001619/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1620/// any uses which require the SF or OF bits to be accurate.
1621static bool HasNoSignedComparisonUses(SDNode *N) {
1622 // Examine each user of the node.
1623 for (SDNode::use_iterator UI = N->use_begin(),
1624 UE = N->use_end(); UI != UE; ++UI) {
1625 // Only examine CopyToReg uses.
1626 if (UI->getOpcode() != ISD::CopyToReg)
1627 return false;
1628 // Only examine CopyToReg uses that copy to EFLAGS.
1629 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1630 X86::EFLAGS)
1631 return false;
1632 // Examine each user of the CopyToReg use.
1633 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1634 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1635 // Only examine the Flag result.
1636 if (FlagUI.getUse().getResNo() != 1) continue;
1637 // Anything unusual: assume conservatively.
1638 if (!FlagUI->isMachineOpcode()) return false;
1639 // Examine the opcode of the user.
1640 switch (FlagUI->getMachineOpcode()) {
1641 // These comparisons don't treat the most significant bit specially.
1642 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1643 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1644 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1645 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
1646 case X86::JA: case X86::JAE: case X86::JB: case X86::JBE:
1647 case X86::JE: case X86::JNE: case X86::JP: case X86::JNP:
1648 case X86::CMOVA16rr: case X86::CMOVA16rm:
1649 case X86::CMOVA32rr: case X86::CMOVA32rm:
1650 case X86::CMOVA64rr: case X86::CMOVA64rm:
1651 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1652 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1653 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1654 case X86::CMOVB16rr: case X86::CMOVB16rm:
1655 case X86::CMOVB32rr: case X86::CMOVB32rm:
1656 case X86::CMOVB64rr: case X86::CMOVB64rm:
1657 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1658 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1659 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1660 case X86::CMOVE16rr: case X86::CMOVE16rm:
1661 case X86::CMOVE32rr: case X86::CMOVE32rm:
1662 case X86::CMOVE64rr: case X86::CMOVE64rm:
1663 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1664 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1665 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1666 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1667 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1668 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1669 case X86::CMOVP16rr: case X86::CMOVP16rm:
1670 case X86::CMOVP32rr: case X86::CMOVP32rm:
1671 case X86::CMOVP64rr: case X86::CMOVP64rm:
1672 continue;
1673 // Anything else: assume conservatively.
1674 default: return false;
1675 }
1676 }
1677 }
1678 return true;
1679}
1680
Dan Gohman475871a2008-07-27 21:46:04 +00001681SDNode *X86DAGToDAGISel::Select(SDValue N) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001682 SDNode *Node = N.getNode();
Owen Andersone50ed302009-08-10 22:56:29 +00001683 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001684 unsigned Opc, MOpc;
1685 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001686 DebugLoc dl = Node->getDebugLoc();
1687
Evan Chengf597dc72006-02-10 22:24:32 +00001688#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001689 DEBUG({
1690 errs() << std::string(Indent, ' ') << "Selecting: ";
1691 Node->dump(CurDAG);
1692 errs() << '\n';
1693 });
Evan Cheng23addc02006-02-10 22:46:26 +00001694 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001695#endif
1696
Dan Gohmane8be6c62008-07-17 19:10:17 +00001697 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001698#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001699 DEBUG({
1700 errs() << std::string(Indent-2, ' ') << "== ";
1701 Node->dump(CurDAG);
1702 errs() << '\n';
1703 });
Evan Cheng23addc02006-02-10 22:46:26 +00001704 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001705#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001706 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001707 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001708
Evan Cheng0114e942006-01-06 20:36:21 +00001709 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001710 default: break;
1711 case X86ISD::GlobalBaseReg:
1712 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001713
Dan Gohman72677342009-08-02 16:10:52 +00001714 case X86ISD::ATOMOR64_DAG:
1715 return SelectAtomic64(Node, X86::ATOMOR6432);
1716 case X86ISD::ATOMXOR64_DAG:
1717 return SelectAtomic64(Node, X86::ATOMXOR6432);
1718 case X86ISD::ATOMADD64_DAG:
1719 return SelectAtomic64(Node, X86::ATOMADD6432);
1720 case X86ISD::ATOMSUB64_DAG:
1721 return SelectAtomic64(Node, X86::ATOMSUB6432);
1722 case X86ISD::ATOMNAND64_DAG:
1723 return SelectAtomic64(Node, X86::ATOMNAND6432);
1724 case X86ISD::ATOMAND64_DAG:
1725 return SelectAtomic64(Node, X86::ATOMAND6432);
1726 case X86ISD::ATOMSWAP64_DAG:
1727 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001728
Dan Gohman72677342009-08-02 16:10:52 +00001729 case ISD::ATOMIC_LOAD_ADD: {
1730 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1731 if (RetVal)
1732 return RetVal;
1733 break;
1734 }
1735
1736 case ISD::SMUL_LOHI:
1737 case ISD::UMUL_LOHI: {
1738 SDValue N0 = Node->getOperand(0);
1739 SDValue N1 = Node->getOperand(1);
1740
1741 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001742 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001743 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001744 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001745 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1746 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1747 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1748 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001749 }
Bill Wendling12321672009-08-07 21:33:25 +00001750 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001751 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001752 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001753 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1754 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1755 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1756 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001757 }
Bill Wendling12321672009-08-07 21:33:25 +00001758 }
Dan Gohman72677342009-08-02 16:10:52 +00001759
1760 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001761 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001762 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001763 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1764 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1765 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1766 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001767 }
1768
1769 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1770 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001771 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001772 if (!foldedLoad) {
1773 foldedLoad = TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1774 if (foldedLoad)
1775 std::swap(N0, N1);
1776 }
1777
1778 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1779 N0, SDValue()).getValue(1);
1780
1781 if (foldedLoad) {
1782 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1783 InFlag };
1784 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001785 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1786 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001787 InFlag = SDValue(CNode, 1);
1788 // Update the chain.
1789 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1790 } else {
1791 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001792 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001793 }
1794
1795 // Copy the low half of the result, if it is needed.
1796 if (!N.getValue(0).use_empty()) {
1797 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1798 LoReg, NVT, InFlag);
1799 InFlag = Result.getValue(2);
1800 ReplaceUses(N.getValue(0), Result);
1801#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001802 DEBUG({
1803 errs() << std::string(Indent-2, ' ') << "=> ";
1804 Result.getNode()->dump(CurDAG);
1805 errs() << '\n';
1806 });
Dan Gohman72677342009-08-02 16:10:52 +00001807#endif
1808 }
1809 // Copy the high half of the result, if it is needed.
1810 if (!N.getValue(1).use_empty()) {
1811 SDValue Result;
1812 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1813 // Prevent use of AH in a REX instruction by referencing AX instead.
1814 // Shift it down 8 bits.
1815 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001816 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001817 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001818 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1819 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001820 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001821 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001822 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1823 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001824 } else {
1825 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1826 HiReg, NVT, InFlag);
1827 InFlag = Result.getValue(2);
1828 }
1829 ReplaceUses(N.getValue(1), Result);
1830#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001831 DEBUG({
1832 errs() << std::string(Indent-2, ' ') << "=> ";
1833 Result.getNode()->dump(CurDAG);
1834 errs() << '\n';
1835 });
Dan Gohman72677342009-08-02 16:10:52 +00001836#endif
1837 }
1838
1839#ifndef NDEBUG
1840 Indent -= 2;
1841#endif
1842
1843 return NULL;
1844 }
1845
1846 case ISD::SDIVREM:
1847 case ISD::UDIVREM: {
1848 SDValue N0 = Node->getOperand(0);
1849 SDValue N1 = Node->getOperand(1);
1850
1851 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001852 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001853 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001854 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001855 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1856 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1857 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1858 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001859 }
Bill Wendling12321672009-08-07 21:33:25 +00001860 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001861 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001862 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001863 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1864 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1865 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1866 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001867 }
Bill Wendling12321672009-08-07 21:33:25 +00001868 }
Dan Gohman72677342009-08-02 16:10:52 +00001869
Chris Lattner9e323832009-12-23 01:45:04 +00001870 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001871 unsigned ClrOpcode, SExtOpcode;
Chris Lattner9e323832009-12-23 01:45:04 +00001872 EVT ClrVT = NVT;
Owen Anderson825b72b2009-08-11 20:47:22 +00001873 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001874 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001875 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001876 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001877 ClrOpcode = 0;
1878 SExtOpcode = X86::CBW;
1879 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001880 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001881 LoReg = X86::AX; HiReg = X86::DX;
Chris Lattner9e323832009-12-23 01:45:04 +00001882 ClrOpcode = X86::MOV32r0; ClrReg = X86::EDX; ClrVT = MVT::i32;
Dan Gohman72677342009-08-02 16:10:52 +00001883 SExtOpcode = X86::CWD;
1884 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001885 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001886 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001887 ClrOpcode = X86::MOV32r0;
1888 SExtOpcode = X86::CDQ;
1889 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001890 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001891 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman72677342009-08-02 16:10:52 +00001892 ClrOpcode = ~0U; // NOT USED.
1893 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001894 break;
1895 }
1896
Dan Gohman72677342009-08-02 16:10:52 +00001897 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1898 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1899 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001900
Dan Gohman72677342009-08-02 16:10:52 +00001901 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001902 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001903 // Special case for div8, just use a move with zero extension to AX to
1904 // clear the upper 8 bits (AH).
1905 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
1906 if (TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
1907 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1908 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001909 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1910 MVT::Other, Ops,
1911 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001912 Chain = Move.getValue(1);
1913 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001914 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001915 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001916 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001917 Chain = CurDAG->getEntryNode();
1918 }
1919 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1920 InFlag = Chain.getValue(1);
1921 } else {
1922 InFlag =
1923 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1924 LoReg, N0, SDValue()).getValue(1);
1925 if (isSigned && !signBitIsZero) {
1926 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001927 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001928 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001929 } else {
1930 // Zero out the high part, effectively zero extending the input.
1931 SDValue ClrNode;
Evan Cheng0114e942006-01-06 20:36:21 +00001932
Owen Anderson825b72b2009-08-11 20:47:22 +00001933 if (NVT.getSimpleVT() == MVT::i64) {
Dan Gohman602b0c82009-09-25 18:54:59 +00001934 ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, MVT::i32),
Dan Gohman72677342009-08-02 16:10:52 +00001935 0);
1936 // We just did a 32-bit clear, insert it into a 64-bit register to
1937 // clear the whole 64-bit reg.
Dan Gohman7289ed22009-11-05 23:53:08 +00001938 SDValue Zero = CurDAG->getTargetConstant(0, MVT::i64);
Dan Gohman72677342009-08-02 16:10:52 +00001939 SDValue SubRegNo =
Owen Anderson825b72b2009-08-11 20:47:22 +00001940 CurDAG->getTargetConstant(X86::SUBREG_32BIT, MVT::i32);
Dan Gohman72677342009-08-02 16:10:52 +00001941 ClrNode =
Dan Gohman7289ed22009-11-05 23:53:08 +00001942 SDValue(CurDAG->getMachineNode(TargetInstrInfo::SUBREG_TO_REG, dl,
1943 MVT::i64, Zero, ClrNode, SubRegNo),
Dan Gohman72677342009-08-02 16:10:52 +00001944 0);
Dan Gohman525178c2007-10-08 18:33:35 +00001945 } else {
Chris Lattner9e323832009-12-23 01:45:04 +00001946 ClrNode = SDValue(CurDAG->getMachineNode(ClrOpcode, dl, ClrVT), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00001947 }
Dan Gohman72677342009-08-02 16:10:52 +00001948
Chris Lattner9e323832009-12-23 01:45:04 +00001949 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001950 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001951 }
Evan Cheng948f3432006-01-06 23:19:29 +00001952 }
Dan Gohman525178c2007-10-08 18:33:35 +00001953
Dan Gohman72677342009-08-02 16:10:52 +00001954 if (foldedLoad) {
1955 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1956 InFlag };
1957 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001958 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1959 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001960 InFlag = SDValue(CNode, 1);
1961 // Update the chain.
1962 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1963 } else {
1964 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001965 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001966 }
Evan Cheng948f3432006-01-06 23:19:29 +00001967
Dan Gohman72677342009-08-02 16:10:52 +00001968 // Copy the division (low) result, if it is needed.
1969 if (!N.getValue(0).use_empty()) {
1970 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1971 LoReg, NVT, InFlag);
1972 InFlag = Result.getValue(2);
1973 ReplaceUses(N.getValue(0), Result);
1974#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001975 DEBUG({
1976 errs() << std::string(Indent-2, ' ') << "=> ";
1977 Result.getNode()->dump(CurDAG);
1978 errs() << '\n';
1979 });
Dan Gohman72677342009-08-02 16:10:52 +00001980#endif
1981 }
1982 // Copy the remainder (high) result, if it is needed.
1983 if (!N.getValue(1).use_empty()) {
1984 SDValue Result;
1985 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1986 // Prevent use of AH in a REX instruction by referencing AX instead.
1987 // Shift it down 8 bits.
1988 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001989 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001990 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001991 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00001992 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001993 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00001994 0);
1995 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001996 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1997 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001998 } else {
1999 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2000 HiReg, NVT, InFlag);
2001 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00002002 }
Dan Gohman72677342009-08-02 16:10:52 +00002003 ReplaceUses(N.getValue(1), Result);
Dan Gohmana37c9f72007-09-25 18:23:27 +00002004#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002005 DEBUG({
2006 errs() << std::string(Indent-2, ' ') << "=> ";
2007 Result.getNode()->dump(CurDAG);
2008 errs() << '\n';
2009 });
Dan Gohmana37c9f72007-09-25 18:23:27 +00002010#endif
Dan Gohman72677342009-08-02 16:10:52 +00002011 }
Evan Chengf597dc72006-02-10 22:24:32 +00002012
2013#ifndef NDEBUG
Dan Gohman72677342009-08-02 16:10:52 +00002014 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002015#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002016
Dan Gohman72677342009-08-02 16:10:52 +00002017 return NULL;
2018 }
2019
Dan Gohman6a402dc2009-08-19 18:16:17 +00002020 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002021 SDValue N0 = Node->getOperand(0);
2022 SDValue N1 = Node->getOperand(1);
2023
2024 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2025 // use a smaller encoding.
2026 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2027 N0.getValueType() != MVT::i8 &&
2028 X86::isZeroNode(N1)) {
2029 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2030 if (!C) break;
2031
2032 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002033 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2034 (!(C->getZExtValue() & 0x80) ||
2035 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002036 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2037 SDValue Reg = N0.getNode()->getOperand(0);
2038
2039 // On x86-32, only the ABCD registers have 8-bit subregisters.
2040 if (!Subtarget->is64Bit()) {
2041 TargetRegisterClass *TRC = 0;
2042 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2043 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2044 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2045 default: llvm_unreachable("Unsupported TEST operand type!");
2046 }
2047 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002048 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2049 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002050 }
2051
2052 // Extract the l-register.
2053 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2054 MVT::i8, Reg);
2055
2056 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002057 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002058 }
2059
2060 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002061 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2062 (!(C->getZExtValue() & 0x8000) ||
2063 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002064 // Shift the immediate right by 8 bits.
2065 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2066 MVT::i8);
2067 SDValue Reg = N0.getNode()->getOperand(0);
2068
2069 // Put the value in an ABCD register.
2070 TargetRegisterClass *TRC = 0;
2071 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2072 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2073 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2074 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2075 default: llvm_unreachable("Unsupported TEST operand type!");
2076 }
2077 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002078 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2079 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002080
2081 // Extract the h-register.
2082 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2083 MVT::i8, Reg);
2084
2085 // Emit a testb. No special NOREX tricks are needed since there's
2086 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002087 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2088 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002089 }
2090
2091 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2092 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002093 N0.getValueType() != MVT::i16 &&
2094 (!(C->getZExtValue() & 0x8000) ||
2095 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002096 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2097 SDValue Reg = N0.getNode()->getOperand(0);
2098
2099 // Extract the 16-bit subregister.
2100 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2101 MVT::i16, Reg);
2102
2103 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002104 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002105 }
2106
2107 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2108 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002109 N0.getValueType() == MVT::i64 &&
2110 (!(C->getZExtValue() & 0x80000000) ||
2111 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002112 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2113 SDValue Reg = N0.getNode()->getOperand(0);
2114
2115 // Extract the 32-bit subregister.
2116 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2117 MVT::i32, Reg);
2118
2119 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002120 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002121 }
2122 }
2123 break;
2124 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002125 }
2126
Evan Cheng9ade2182006-08-26 05:34:46 +00002127 SDNode *ResNode = SelectCode(N);
Evan Cheng64a752f2006-08-11 09:08:15 +00002128
Evan Chengf597dc72006-02-10 22:24:32 +00002129#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002130 DEBUG({
2131 errs() << std::string(Indent-2, ' ') << "=> ";
2132 if (ResNode == NULL || ResNode == N.getNode())
2133 N.getNode()->dump(CurDAG);
2134 else
2135 ResNode->dump(CurDAG);
2136 errs() << '\n';
2137 });
Evan Cheng23addc02006-02-10 22:46:26 +00002138 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002139#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002140
2141 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002142}
2143
Chris Lattnerc0bad572006-06-08 18:03:49 +00002144bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002145SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002146 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002147 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002148 switch (ConstraintCode) {
2149 case 'o': // offsetable ??
2150 case 'v': // not offsetable ??
2151 default: return true;
2152 case 'm': // memory
Rafael Espindola094fad32009-04-08 21:14:34 +00002153 if (!SelectAddr(Op, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002154 return true;
2155 break;
2156 }
2157
Evan Cheng04699902006-08-26 01:05:16 +00002158 OutOps.push_back(Op0);
2159 OutOps.push_back(Op1);
2160 OutOps.push_back(Op2);
2161 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002162 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002163 return false;
2164}
2165
Chris Lattnerc961eea2005-11-16 01:54:32 +00002166/// createX86ISelDag - This pass converts a legalized DAG into a
2167/// X86-specific DAG, ready for instruction scheduling.
2168///
Bill Wendling98a366d2009-04-29 23:29:43 +00002169FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2170 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002171 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002172}