blob: e1344da588f0ae907d9c865168586b9efa7210b3 [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc961eea2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng2ef88a02006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000016#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Chengc4c62572006-03-13 23:20:37 +000018#include "X86ISelLowering.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000019#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000020#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000021#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000022#include "X86TargetMachine.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000023#include "llvm/GlobalValue.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000025#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000026#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000027#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000029#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000030#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000033#include "llvm/CodeGen/SelectionDAGISel.h"
34#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000035#include "llvm/Target/TargetOptions.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000036#include "llvm/Support/Compiler.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000037#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000038#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000039#include "llvm/Support/MathExtras.h"
Dale Johannesen50dd1d02008-08-11 23:46:25 +000040#include "llvm/Support/Streams.h"
Torok Edwindac237e2009-07-08 20:53:28 +000041#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000042#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000043#include "llvm/ADT/Statistic.h"
44using namespace llvm;
45
Evan Cheng4d952322009-03-31 01:13:53 +000046#include "llvm/Support/CommandLine.h"
47static cl::opt<bool> AvoidDupAddrCompute("x86-avoid-dup-address", cl::Hidden);
48
Chris Lattner95b2c7d2006-12-19 22:59:26 +000049STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
50
Chris Lattnerc961eea2005-11-16 01:54:32 +000051//===----------------------------------------------------------------------===//
52// Pattern Matcher Implementation
53//===----------------------------------------------------------------------===//
54
55namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000056 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000057 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000058 /// tree.
59 struct X86ISelAddressMode {
60 enum {
61 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000062 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000063 } BaseType;
64
65 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000067 int FrameIndex;
68 } Base;
69
70 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000071 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000072 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000073 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000074 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000075 Constant *CP;
Evan Cheng25ab6902006-09-08 06:48:29 +000076 const char *ES;
77 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000078 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000079 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000080
81 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000082 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattnerb8afeb92009-06-26 05:51:45 +000083 Segment(), GV(0), CP(0), ES(0), JT(-1), Align(0), SymbolFlags(0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000084 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000085
86 bool hasSymbolicDisplacement() const {
87 return GV != 0 || CP != 0 || ES != 0 || JT != -1;
88 }
Chris Lattner18c59872009-06-27 04:16:01 +000089
90 bool hasBaseOrIndexReg() const {
91 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
92 }
93
94 /// isRIPRelative - Return true if this addressing mode is already RIP
95 /// relative.
96 bool isRIPRelative() const {
97 if (BaseType != RegBase) return false;
98 if (RegisterSDNode *RegNode =
99 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
100 return RegNode->getReg() == X86::RIP;
101 return false;
102 }
103
104 void setBaseReg(SDValue Reg) {
105 BaseType = RegBase;
106 Base.Reg = Reg;
107 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000108
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000109 void dump() {
110 cerr << "X86ISelAddressMode " << this << "\n";
Gabor Greif93c53e52008-08-31 15:37:04 +0000111 cerr << "Base.Reg ";
112 if (Base.Reg.getNode() != 0) Base.Reg.getNode()->dump();
113 else cerr << "nul";
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000114 cerr << " Base.FrameIndex " << Base.FrameIndex << "\n";
Chris Lattner18c59872009-06-27 04:16:01 +0000115 cerr << " Scale" << Scale << "\n";
Gabor Greif93c53e52008-08-31 15:37:04 +0000116 cerr << "IndexReg ";
117 if (IndexReg.getNode() != 0) IndexReg.getNode()->dump();
118 else cerr << "nul";
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000119 cerr << " Disp " << Disp << "\n";
120 cerr << "GV "; if (GV) GV->dump();
121 else cerr << "nul";
122 cerr << " CP "; if (CP) CP->dump();
123 else cerr << "nul";
124 cerr << "\n";
125 cerr << "ES "; if (ES) cerr << ES; else cerr << "nul";
126 cerr << " JT" << JT << " Align" << Align << "\n";
127 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000128 };
129}
130
131namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000132 //===--------------------------------------------------------------------===//
133 /// ISel - X86 specific code to select X86 machine instructions for
134 /// SelectionDAG operations.
135 ///
Chris Lattner2c79de82006-06-28 23:27:49 +0000136 class VISIBILITY_HIDDEN X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000137 /// X86Lowering - This object fully describes how to lower LLVM code to an
138 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000139 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000140
141 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
142 /// make the right decision when generating code for different targets.
143 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000144
Evan Chengb7a75a52008-09-26 23:41:32 +0000145 /// OptForSize - If true, selector should try to optimize for code size
146 /// instead of performance.
147 bool OptForSize;
148
Chris Lattnerc961eea2005-11-16 01:54:32 +0000149 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000150 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000151 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000152 X86Lowering(*tm.getTargetLowering()),
153 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000154 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000155
156 virtual const char *getPassName() const {
157 return "X86 DAG->DAG Instruction Selection";
158 }
159
Evan Chengdb8d56b2008-06-30 20:45:06 +0000160 /// InstructionSelect - This callback is invoked by
Chris Lattnerc961eea2005-11-16 01:54:32 +0000161 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000162 virtual void InstructionSelect();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000163
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000164 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
165
Evan Cheng884c70c2008-11-27 00:49:46 +0000166 virtual
167 bool IsLegalAndProfitableToFold(SDNode *N, SDNode *U, SDNode *Root) const;
Evan Chenga8df1b42006-07-27 16:44:36 +0000168
Chris Lattnerc961eea2005-11-16 01:54:32 +0000169// Include the pieces autogenerated from the target description.
170#include "X86GenDAGISel.inc"
171
172 private:
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDNode *Select(SDValue N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000174 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Evan Cheng37b73872009-07-30 08:33:02 +0000175 SDNode *SelectAtomicLoadAdd(SDNode *Node, MVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000176
Rafael Espindola094fad32009-04-08 21:14:34 +0000177 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
178 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000179 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000180 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
181 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
182 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000183 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohman475871a2008-07-27 21:46:04 +0000184 bool SelectAddr(SDValue Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000185 SDValue &Scale, SDValue &Index, SDValue &Disp,
186 SDValue &Segment);
Dan Gohman475871a2008-07-27 21:46:04 +0000187 bool SelectLEAAddr(SDValue Op, SDValue N, SDValue &Base,
188 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000189 bool SelectTLSADDRAddr(SDValue Op, SDValue N, SDValue &Base,
190 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohman475871a2008-07-27 21:46:04 +0000191 bool SelectScalarSSELoad(SDValue Op, SDValue Pred,
192 SDValue N, SDValue &Base, SDValue &Scale,
193 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000194 SDValue &Segment,
Dan Gohman475871a2008-07-27 21:46:04 +0000195 SDValue &InChain, SDValue &OutChain);
196 bool TryFoldLoad(SDValue P, SDValue N,
197 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000198 SDValue &Index, SDValue &Disp,
199 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000200 void PreprocessForRMW();
201 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000202
Chris Lattnerc0bad572006-06-08 18:03:49 +0000203 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
204 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000205 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000206 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000207 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000208
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000209 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
210
Dan Gohman475871a2008-07-27 21:46:04 +0000211 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
212 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000213 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000214 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000215 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
216 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000217 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000218 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000219 // These are 32-bit even in 64-bit mode since RIP relative offset
220 // is 32-bit.
221 if (AM.GV)
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000222 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
223 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000224 else if (AM.CP)
Gabor Greif93c53e52008-08-31 15:37:04 +0000225 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000226 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000227 else if (AM.ES)
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000228 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000229 else if (AM.JT != -1)
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000230 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000231 else
Dan Gohman27cae7b2008-11-11 15:52:29 +0000232 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000233
234 if (AM.Segment.getNode())
235 Segment = AM.Segment;
236 else
237 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000238 }
239
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000240 /// getI8Imm - Return a target constant with the specified value, of type
241 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000242 inline SDValue getI8Imm(unsigned Imm) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000243 return CurDAG->getTargetConstant(Imm, MVT::i8);
244 }
245
Chris Lattnerc961eea2005-11-16 01:54:32 +0000246 /// getI16Imm - Return a target constant with the specified value, of type
247 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000248 inline SDValue getI16Imm(unsigned Imm) {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000249 return CurDAG->getTargetConstant(Imm, MVT::i16);
250 }
251
252 /// getI32Imm - Return a target constant with the specified value, of type
253 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000254 inline SDValue getI32Imm(unsigned Imm) {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000255 return CurDAG->getTargetConstant(Imm, MVT::i32);
256 }
Evan Chengf597dc72006-02-10 22:24:32 +0000257
Dan Gohman8b746962008-09-23 18:22:58 +0000258 /// getGlobalBaseReg - Return an SDNode that returns the value of
259 /// the global base register. Output instructions required to
260 /// initialize the global base register, if necessary.
261 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000262 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000263
Dan Gohmanc5534622009-06-03 20:20:00 +0000264 /// getTargetMachine - Return a reference to the TargetMachine, casted
265 /// to the target-specific type.
266 const X86TargetMachine &getTargetMachine() {
267 return static_cast<const X86TargetMachine &>(TM);
268 }
269
270 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
271 /// to the target-specific type.
272 const X86InstrInfo *getInstrInfo() {
273 return getTargetMachine().getInstrInfo();
274 }
275
Evan Cheng23addc02006-02-10 22:46:26 +0000276#ifndef NDEBUG
277 unsigned Indent;
278#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000279 };
280}
281
Evan Chengf4b4c412006-08-08 00:31:00 +0000282
Evan Cheng884c70c2008-11-27 00:49:46 +0000283bool X86DAGToDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
284 SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000285 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000286
Evan Cheng884c70c2008-11-27 00:49:46 +0000287 if (U == Root)
288 switch (U->getOpcode()) {
289 default: break;
290 case ISD::ADD:
291 case ISD::ADDC:
292 case ISD::ADDE:
293 case ISD::AND:
294 case ISD::OR:
295 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000296 SDValue Op1 = U->getOperand(1);
297
Evan Cheng884c70c2008-11-27 00:49:46 +0000298 // If the other operand is a 8-bit immediate we should fold the immediate
299 // instead. This reduces code size.
300 // e.g.
301 // movl 4(%esp), %eax
302 // addl $4, %eax
303 // vs.
304 // movl $4, %eax
305 // addl 4(%esp), %eax
306 // The former is 2 bytes shorter. In case where the increment is 1, then
307 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000308 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000309 if (Imm->getAPIntValue().isSignedIntN(8))
310 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000311
312 // If the other operand is a TLS address, we should fold it instead.
313 // This produces
314 // movl %gs:0, %eax
315 // leal i@NTPOFF(%eax), %eax
316 // instead of
317 // movl $i@NTPOFF, %eax
318 // addl %gs:0, %eax
319 // if the block also has an access to a second TLS address this will save
320 // a load.
321 // FIXME: This is probably also true for non TLS addresses.
322 if (Op1.getOpcode() == X86ISD::Wrapper) {
323 SDValue Val = Op1.getOperand(0);
324 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
325 return false;
326 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000327 }
328 }
329
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +0000330 // Proceed to 'generic' cycle finder code
331 return SelectionDAGISel::IsLegalAndProfitableToFold(N, U, Root);
Evan Chenga8df1b42006-07-27 16:44:36 +0000332}
333
Evan Cheng70e674e2006-08-28 20:10:17 +0000334/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
335/// and move load below the TokenFactor. Replace store's chain operand with
336/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000337static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000338 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000339 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000340 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
341 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000342 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000343 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000344 Ops.push_back(TF.getOperand(i));
Dan Gohmanf350b272008-08-23 02:25:05 +0000345 CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
346 CurDAG->UpdateNodeOperands(Load, TF, Load.getOperand(1), Load.getOperand(2));
347 CurDAG->UpdateNodeOperands(Store, Load.getValue(1), Store.getOperand(1),
348 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000349}
350
Evan Chengcd0baf22008-05-23 21:23:16 +0000351/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG.
352///
Dan Gohman475871a2008-07-27 21:46:04 +0000353static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
354 SDValue &Load) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000355 if (N.getOpcode() == ISD::BIT_CONVERT)
356 N = N.getOperand(0);
357
358 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
359 if (!LD || LD->isVolatile())
360 return false;
361 if (LD->getAddressingMode() != ISD::UNINDEXED)
362 return false;
363
364 ISD::LoadExtType ExtType = LD->getExtensionType();
365 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
366 return false;
367
368 if (N.hasOneUse() &&
369 N.getOperand(1) == Address &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000370 N.getNode()->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000371 Load = N;
372 return true;
373 }
374 return false;
375}
376
Evan Chengab6c3bb2008-08-25 21:27:18 +0000377/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
378/// operand and move load below the call's chain operand.
379static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000380 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000381 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000382 SDValue Chain = CallSeqStart.getOperand(0);
383 if (Chain.getNode() == Load.getNode())
384 Ops.push_back(Load.getOperand(0));
385 else {
386 assert(Chain.getOpcode() == ISD::TokenFactor &&
387 "Unexpected CallSeqStart chain operand");
388 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
389 if (Chain.getOperand(i).getNode() == Load.getNode())
390 Ops.push_back(Load.getOperand(0));
391 else
392 Ops.push_back(Chain.getOperand(i));
393 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000394 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
395 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000396 Ops.clear();
397 Ops.push_back(NewChain);
398 }
399 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
400 Ops.push_back(CallSeqStart.getOperand(i));
401 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000402 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
403 Load.getOperand(1), Load.getOperand(2));
404 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000405 Ops.push_back(SDValue(Load.getNode(), 1));
406 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000407 Ops.push_back(Call.getOperand(i));
408 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
409}
410
411/// isCalleeLoad - Return true if call address is a load and it can be
412/// moved below CALLSEQ_START and the chains leading up to the call.
413/// Return the CALLSEQ_START by reference as a second output.
414static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000415 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000416 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000417 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000418 if (!LD ||
419 LD->isVolatile() ||
420 LD->getAddressingMode() != ISD::UNINDEXED ||
421 LD->getExtensionType() != ISD::NON_EXTLOAD)
422 return false;
423
424 // Now let's find the callseq_start.
425 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
426 if (!Chain.hasOneUse())
427 return false;
428 Chain = Chain.getOperand(0);
429 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000430
431 if (Chain.getOperand(0).getNode() == Callee.getNode())
432 return true;
433 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
434 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()))
435 return true;
436 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000437}
438
439
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000440/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000441/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000442/// This allows the instruction selector to pick more read-modify-write
443/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000444///
445/// [Load chain]
446/// ^
447/// |
448/// [Load]
449/// ^ ^
450/// | |
451/// / \-
452/// / |
453/// [TokenFactor] [Op]
454/// ^ ^
455/// | |
456/// \ /
457/// \ /
458/// [Store]
459///
460/// The fact the store's chain operand != load's chain will prevent the
461/// (store (op (load))) instruction from being selected. We can transform it to:
462///
463/// [Load chain]
464/// ^
465/// |
466/// [TokenFactor]
467/// ^
468/// |
469/// [Load]
470/// ^ ^
471/// | |
472/// | \-
473/// | |
474/// | [Op]
475/// | ^
476/// | |
477/// \ /
478/// \ /
479/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000480void X86DAGToDAGISel::PreprocessForRMW() {
481 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
482 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000483 if (I->getOpcode() == X86ISD::CALL) {
484 /// Also try moving call address load from outside callseq_start to just
485 /// before the call to allow it to be folded.
486 ///
487 /// [Load chain]
488 /// ^
489 /// |
490 /// [Load]
491 /// ^ ^
492 /// | |
493 /// / \--
494 /// / |
495 ///[CALLSEQ_START] |
496 /// ^ |
497 /// | |
498 /// [LOAD/C2Reg] |
499 /// | |
500 /// \ /
501 /// \ /
502 /// [CALL]
503 SDValue Chain = I->getOperand(0);
504 SDValue Load = I->getOperand(1);
505 if (!isCalleeLoad(Load, Chain))
506 continue;
507 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
508 ++NumLoadMoved;
509 continue;
510 }
511
Evan Cheng8b2794a2006-10-13 21:14:26 +0000512 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000513 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000514 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000515
Gabor Greifba36cb52008-08-28 21:40:38 +0000516 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000517 continue;
518
Dan Gohman475871a2008-07-27 21:46:04 +0000519 SDValue N1 = I->getOperand(1);
520 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000521 if ((N1.getValueType().isFloatingPoint() &&
522 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000523 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000524 continue;
525
526 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000527 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000528 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000529 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000530 case ISD::ADD:
531 case ISD::MUL:
532 case ISD::AND:
533 case ISD::OR:
534 case ISD::XOR:
535 case ISD::ADDC:
536 case ISD::ADDE:
537 case ISD::VECTOR_SHUFFLE: {
538 SDValue N10 = N1.getOperand(0);
539 SDValue N11 = N1.getOperand(1);
540 RModW = isRMWLoad(N10, Chain, N2, Load);
541 if (!RModW)
542 RModW = isRMWLoad(N11, Chain, N2, Load);
543 break;
544 }
545 case ISD::SUB:
546 case ISD::SHL:
547 case ISD::SRA:
548 case ISD::SRL:
549 case ISD::ROTL:
550 case ISD::ROTR:
551 case ISD::SUBC:
552 case ISD::SUBE:
553 case X86ISD::SHLD:
554 case X86ISD::SHRD: {
555 SDValue N10 = N1.getOperand(0);
556 RModW = isRMWLoad(N10, Chain, N2, Load);
557 break;
558 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000559 }
560
Evan Cheng82a35b32006-08-29 06:44:17 +0000561 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000562 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000563 ++NumLoadMoved;
564 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000565 }
566}
567
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000568
569/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
570/// nodes that target the FP stack to be store and load to the stack. This is a
571/// gross hack. We would like to simply mark these as being illegal, but when
572/// we do that, legalize produces these when it expands calls, then expands
573/// these in the same legalize pass. We would like dag combine to be able to
574/// hack on these between the call expansion and the node legalization. As such
575/// this pass basically does "really late" legalization of these inline with the
576/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000577void X86DAGToDAGISel::PreprocessForFPConvert() {
578 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
579 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000580 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
581 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
582 continue;
583
584 // If the source and destination are SSE registers, then this is a legal
585 // conversion that should not be lowered.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000586 MVT SrcVT = N->getOperand(0).getValueType();
587 MVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000588 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
589 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
590 if (SrcIsSSE && DstIsSSE)
591 continue;
592
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000593 if (!SrcIsSSE && !DstIsSSE) {
594 // If this is an FPStack extension, it is a noop.
595 if (N->getOpcode() == ISD::FP_EXTEND)
596 continue;
597 // If this is a value-preserving FPStack truncation, it is a noop.
598 if (N->getConstantOperandVal(1))
599 continue;
600 }
601
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000602 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
603 // FPStack has extload and truncstore. SSE can fold direct loads into other
604 // operations. Based on this, decide what we want to do.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000605 MVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000606 if (N->getOpcode() == ISD::FP_ROUND)
607 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
608 else
609 MemVT = SrcIsSSE ? SrcVT : DstVT;
610
Dan Gohmanf350b272008-08-23 02:25:05 +0000611 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000612 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000613
614 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000615 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000616 N->getOperand(0),
617 MemTmp, NULL, 0, MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000618 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Dan Gohmanf350b272008-08-23 02:25:05 +0000619 NULL, 0, MemVT);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000620
621 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
622 // extload we created. This will cause general havok on the dag because
623 // anything below the conversion could be folded into other existing nodes.
624 // To avoid invalidating 'I', back it up to the convert node.
625 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000626 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000627
628 // Now that we did that, the node is dead. Increment the iterator to the
629 // next node to process, then delete N.
630 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000631 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000632 }
633}
634
Chris Lattnerc961eea2005-11-16 01:54:32 +0000635/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
636/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000637void X86DAGToDAGISel::InstructionSelect() {
Dan Gohman7571eb52009-08-01 03:42:59 +0000638 const Function *F = MF->getFunction();
Devang Patele76225a2008-10-06 18:03:39 +0000639 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000640
Evan Chengdb8d56b2008-06-30 20:45:06 +0000641 DEBUG(BB->dump());
Bill Wendling98a366d2009-04-29 23:29:43 +0000642 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000643 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000644
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000645 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000646 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000647
Chris Lattnerc961eea2005-11-16 01:54:32 +0000648 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000649#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000650 DEBUG(errs() << "===== Instruction selection begins:\n");
Evan Cheng23addc02006-02-10 22:46:26 +0000651 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000652#endif
David Greene8ad4c002008-10-27 21:56:29 +0000653 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000654#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000655 DEBUG(errs() << "===== Instruction selection ends:\n");
Evan Chengf597dc72006-02-10 22:24:32 +0000656#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000657
Dan Gohmanf350b272008-08-23 02:25:05 +0000658 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000659}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000660
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000661/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
662/// the main function.
663void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
664 MachineFrameInfo *MFI) {
665 const TargetInstrInfo *TII = TM.getInstrInfo();
666 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000667 BuildMI(BB, DebugLoc::getUnknownLoc(),
668 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000669}
670
671void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
672 // If this is main, emit special code for main.
673 MachineBasicBlock *BB = MF.begin();
674 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
675 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
676}
677
Rafael Espindola094fad32009-04-08 21:14:34 +0000678
679bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
680 X86ISelAddressMode &AM) {
681 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
682 SDValue Segment = N.getOperand(0);
683
684 if (AM.Segment.getNode() == 0) {
685 AM.Segment = Segment;
686 return false;
687 }
688
689 return true;
690}
691
692bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
693 // This optimization is valid because the GNU TLS model defines that
694 // gs:0 (or fs:0 on X86-64) contains its own address.
695 // For more information see http://people.redhat.com/drepper/tls.pdf
696
697 SDValue Address = N.getOperand(1);
698 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
699 !MatchSegmentBaseAddress (Address, AM))
700 return false;
701
702 return true;
703}
704
Chris Lattner18c59872009-06-27 04:16:01 +0000705/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
706/// into an addressing mode. These wrap things that will resolve down into a
707/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000708/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000709bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000710 // If the addressing mode already has a symbol as the displacement, we can
711 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000712 if (AM.hasSymbolicDisplacement())
713 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000714
715 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000716 CodeModel::Model M = TM.getCodeModel();
717
Chris Lattner18c59872009-06-27 04:16:01 +0000718 // Handle X86-64 rip-relative addresses. We check this before checking direct
719 // folding because RIP is preferable to non-RIP accesses.
720 if (Subtarget->is64Bit() &&
721 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
722 // they cannot be folded into immediate fields.
723 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000724 (M == CodeModel::Small || CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000725 // Base and index reg must be 0 in order to use %rip as base and lowering
726 // must allow RIP.
727 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000728 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
729 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000730 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000731 AM.GV = G->getGlobal();
732 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000733 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000734 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
735 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000736 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000737 AM.CP = CP->getConstVal();
738 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000739 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000740 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000741 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
742 AM.ES = S->getSymbol();
743 AM.SymbolFlags = S->getTargetFlags();
744 } else {
745 JumpTableSDNode *J = cast<JumpTableSDNode>(N0);
746 AM.JT = J->getIndex();
747 AM.SymbolFlags = J->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000748 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000749
Chris Lattner18c59872009-06-27 04:16:01 +0000750 if (N.getOpcode() == X86ISD::WrapperRIP)
751 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000752 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000753 }
754
755 // Handle the case when globals fit in our immediate field: This is true for
756 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
757 // mode, this results in a non-RIP-relative computation.
758 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000759 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000760 TM.getRelocationModel() == Reloc::Static)) {
761 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
762 AM.GV = G->getGlobal();
763 AM.Disp += G->getOffset();
764 AM.SymbolFlags = G->getTargetFlags();
765 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
766 AM.CP = CP->getConstVal();
767 AM.Align = CP->getAlignment();
768 AM.Disp += CP->getOffset();
769 AM.SymbolFlags = CP->getTargetFlags();
770 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
771 AM.ES = S->getSymbol();
772 AM.SymbolFlags = S->getTargetFlags();
773 } else {
774 JumpTableSDNode *J = cast<JumpTableSDNode>(N0);
775 AM.JT = J->getIndex();
776 AM.SymbolFlags = J->getTargetFlags();
777 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000778 return false;
779 }
780
781 return true;
782}
783
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000784/// MatchAddress - Add the specified node to the specified addressing mode,
785/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000786/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000787bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
788 if (MatchAddressRecursively(N, AM, 0))
789 return true;
790
791 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
792 // a smaller encoding and avoids a scaled-index.
793 if (AM.Scale == 2 &&
794 AM.BaseType == X86ISelAddressMode::RegBase &&
795 AM.Base.Reg.getNode() == 0) {
796 AM.Base.Reg = AM.IndexReg;
797 AM.Scale = 1;
798 }
799
800 return false;
801}
802
803bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
804 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000805 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000806 DebugLoc dl = N.getDebugLoc();
Bill Wendling0ea8bf32009-08-03 00:11:34 +0000807 DEBUG(errs() << "MatchAddress: "); DEBUG(AM.dump());
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000808 // Limit recursion.
809 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000810 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000811
812 CodeModel::Model M = TM.getCodeModel();
813
Chris Lattner18c59872009-06-27 04:16:01 +0000814 // If this is already a %rip relative address, we can only merge immediates
815 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000816 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000817 if (AM.isRIPRelative()) {
818 // FIXME: JumpTable and ExternalSymbol address currently don't like
819 // displacements. It isn't very important, but this should be fixed for
820 // consistency.
821 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000822
Chris Lattner18c59872009-06-27 04:16:01 +0000823 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
824 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000825 if (X86::isOffsetSuitableForCodeModel(Val, M,
826 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000827 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000828 return false;
829 }
830 }
831 return true;
832 }
833
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000834 switch (N.getOpcode()) {
835 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000836 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000837 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000838 if (!is64Bit ||
839 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
840 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000841 AM.Disp += Val;
842 return false;
843 }
844 break;
845 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000846
Rafael Espindola094fad32009-04-08 21:14:34 +0000847 case X86ISD::SegmentBaseAddress:
848 if (!MatchSegmentBaseAddress(N, AM))
849 return false;
850 break;
851
Rafael Espindola49a168d2009-04-12 21:55:03 +0000852 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000853 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000854 if (!MatchWrapper(N, AM))
855 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000856 break;
857
Rafael Espindola094fad32009-04-08 21:14:34 +0000858 case ISD::LOAD:
859 if (!MatchLoad(N, AM))
860 return false;
861 break;
862
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000863 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000864 if (AM.BaseType == X86ISelAddressMode::RegBase
865 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000866 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
867 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
868 return false;
869 }
870 break;
Evan Chengec693f72005-12-08 02:01:35 +0000871
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000872 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000873 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000874 break;
875
Gabor Greif93c53e52008-08-31 15:37:04 +0000876 if (ConstantSDNode
877 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000878 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000879 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
880 // that the base operand remains free for further matching. If
881 // the base doesn't end up getting used, a post-processing step
882 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000883 if (Val == 1 || Val == 2 || Val == 3) {
884 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000885 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000886
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000887 // Okay, we know that we have a scale by now. However, if the scaled
888 // value is an add of something and a constant, we can fold the
889 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000890 if (ShVal.getNode()->getOpcode() == ISD::ADD && ShVal.hasOneUse() &&
891 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
892 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000893 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000894 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000895 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000896 if (!is64Bit ||
897 X86::isOffsetSuitableForCodeModel(Disp, M,
898 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000899 AM.Disp = Disp;
900 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000901 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000902 } else {
903 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000904 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000905 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000906 }
907 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000908 }
Evan Chengec693f72005-12-08 02:01:35 +0000909
Dan Gohman83688052007-10-22 20:22:24 +0000910 case ISD::SMUL_LOHI:
911 case ISD::UMUL_LOHI:
912 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000913 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000914 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000915 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000916 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000917 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000918 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000919 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000920 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000921 if (ConstantSDNode
922 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000923 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
924 CN->getZExtValue() == 9) {
925 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000926
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000928 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000929
930 // Okay, we know that we have a scale by now. However, if the scaled
931 // value is an add of something and a constant, we can fold the
932 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000933 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
934 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
935 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000936 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000937 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000938 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000939 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000940 if (!is64Bit ||
941 X86::isOffsetSuitableForCodeModel(Disp, M,
942 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +0000943 AM.Disp = Disp;
944 else
Gabor Greifba36cb52008-08-28 21:40:38 +0000945 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000946 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +0000947 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000948 }
949
950 AM.IndexReg = AM.Base.Reg = Reg;
951 return false;
952 }
Chris Lattner62412262007-02-04 20:18:17 +0000953 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000954 break;
955
Dan Gohman3cd90a12009-05-11 18:02:53 +0000956 case ISD::SUB: {
957 // Given A-B, if A can be completely folded into the address and
958 // the index field with the index field unused, use -B as the index.
959 // This is a win if a has multiple parts that can be folded into
960 // the address. Also, this saves a mov if the base register has
961 // other uses, since it avoids a two-address sub instruction, however
962 // it costs an additional mov if the index register has other uses.
963
964 // Test if the LHS of the sub can be folded.
965 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000966 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000967 AM = Backup;
968 break;
969 }
970 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +0000971 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +0000972 AM = Backup;
973 break;
974 }
975 int Cost = 0;
976 SDValue RHS = N.getNode()->getOperand(1);
977 // If the RHS involves a register with multiple uses, this
978 // transformation incurs an extra mov, due to the neg instruction
979 // clobbering its operand.
980 if (!RHS.getNode()->hasOneUse() ||
981 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
982 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
983 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
984 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
985 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
986 ++Cost;
987 // If the base is a register with multiple uses, this
988 // transformation may save a mov.
989 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
990 AM.Base.Reg.getNode() &&
991 !AM.Base.Reg.getNode()->hasOneUse()) ||
992 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
993 --Cost;
994 // If the folded LHS was interesting, this transformation saves
995 // address arithmetic.
996 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
997 ((AM.Disp != 0) && (Backup.Disp == 0)) +
998 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
999 --Cost;
1000 // If it doesn't look like it may be an overall win, don't do it.
1001 if (Cost >= 0) {
1002 AM = Backup;
1003 break;
1004 }
1005
1006 // Ok, the transformation is legal and appears profitable. Go for it.
1007 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1008 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1009 AM.IndexReg = Neg;
1010 AM.Scale = 1;
1011
1012 // Insert the new nodes into the topological ordering.
1013 if (Zero.getNode()->getNodeId() == -1 ||
1014 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1015 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1016 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1017 }
1018 if (Neg.getNode()->getNodeId() == -1 ||
1019 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1020 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1021 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1022 }
1023 return false;
1024 }
1025
Evan Cheng8e278262009-01-17 07:09:27 +00001026 case ISD::ADD: {
1027 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001028 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1029 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001030 return false;
1031 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001032 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1033 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001034 return false;
1035 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001036
1037 // If we couldn't fold both operands into the address at the same time,
1038 // see if we can just put each operand into a register and fold at least
1039 // the add.
1040 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1041 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001042 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001043 AM.Base.Reg = N.getNode()->getOperand(0);
1044 AM.IndexReg = N.getNode()->getOperand(1);
1045 AM.Scale = 1;
1046 return false;
1047 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001048 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001049 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001050
Chris Lattner62412262007-02-04 20:18:17 +00001051 case ISD::OR:
1052 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001053 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1054 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001055 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001056 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001057 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001058 // Address could not have picked a GV address for the displacement.
1059 AM.GV == NULL &&
1060 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001061 (!is64Bit ||
1062 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1063 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001064 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001065 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001066 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001067 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001068 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001069 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001070 }
1071 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001072
1073 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001074 // Perform some heroic transforms on an and of a constant-count shift
1075 // with a constant to enable use of the scaled offset field.
1076
Dan Gohman475871a2008-07-27 21:46:04 +00001077 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001078 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001079
Evan Cheng1314b002007-12-13 00:43:27 +00001080 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001081 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001082
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001083 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001084 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1085 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1086 if (!C1 || !C2) break;
1087
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001088 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1089 // allows us to convert the shift and and into an h-register extract and
1090 // a scaled index.
1091 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1092 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001093 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001094 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
1095 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
1096 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1097 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1098 X, Eight);
1099 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1100 Srl, Mask);
Dan Gohman62ad1382009-04-14 22:45:05 +00001101 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
1102 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1103 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001104
1105 // Insert the new nodes into the topological ordering.
1106 if (Eight.getNode()->getNodeId() == -1 ||
1107 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1108 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1109 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1110 }
1111 if (Mask.getNode()->getNodeId() == -1 ||
1112 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1113 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1114 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1115 }
1116 if (Srl.getNode()->getNodeId() == -1 ||
1117 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1118 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1119 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1120 }
1121 if (And.getNode()->getNodeId() == -1 ||
1122 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1123 CurDAG->RepositionNode(N.getNode(), And.getNode());
1124 And.getNode()->setNodeId(N.getNode()->getNodeId());
1125 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001126 if (ShlCount.getNode()->getNodeId() == -1 ||
1127 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1128 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1129 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1130 }
1131 if (Shl.getNode()->getNodeId() == -1 ||
1132 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1133 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1134 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1135 }
1136 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001137 AM.IndexReg = And;
1138 AM.Scale = (1 << ScaleLog);
1139 return false;
1140 }
1141 }
1142
1143 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1144 // allows us to fold the shift into this addressing mode.
1145 if (Shift.getOpcode() != ISD::SHL) break;
1146
Evan Cheng1314b002007-12-13 00:43:27 +00001147 // Not likely to be profitable if either the AND or SHIFT node has more
1148 // than one use (unless all uses are for address computation). Besides,
1149 // isel mechanism requires their node ids to be reused.
1150 if (!N.hasOneUse() || !Shift.hasOneUse())
1151 break;
1152
1153 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001154 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001155 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1156 break;
1157
1158 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001159 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001160 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001161 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1162 NewANDMask);
1163 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001164 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001165
1166 // Insert the new nodes into the topological ordering.
1167 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1168 CurDAG->RepositionNode(X.getNode(), C1);
1169 C1->setNodeId(X.getNode()->getNodeId());
1170 }
1171 if (NewANDMask.getNode()->getNodeId() == -1 ||
1172 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1173 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1174 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1175 }
1176 if (NewAND.getNode()->getNodeId() == -1 ||
1177 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1178 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1179 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1180 }
1181 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1182 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1183 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1184 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1185 }
1186
Dan Gohman7b8e9642008-10-13 20:52:04 +00001187 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001188
1189 AM.Scale = 1 << ShiftCst;
1190 AM.IndexReg = NewAND;
1191 return false;
1192 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001193 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001194
Rafael Espindola523249f2009-03-31 16:16:57 +00001195 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001196}
1197
1198/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1199/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001200bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001201 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001202 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001203 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001204 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001205 AM.IndexReg = N;
1206 AM.Scale = 1;
1207 return false;
1208 }
1209
1210 // Otherwise, we cannot select it.
1211 return true;
1212 }
1213
1214 // Default, generate it as a register.
1215 AM.BaseType = X86ISelAddressMode::RegBase;
1216 AM.Base.Reg = N;
1217 return false;
1218}
1219
Evan Chengec693f72005-12-08 02:01:35 +00001220/// SelectAddr - returns true if it is able pattern match an addressing mode.
1221/// It returns the operands which make up the maximal addressing mode it can
1222/// match by reference.
Dan Gohman475871a2008-07-27 21:46:04 +00001223bool X86DAGToDAGISel::SelectAddr(SDValue Op, SDValue N, SDValue &Base,
1224 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001225 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001226 X86ISelAddressMode AM;
Evan Cheng4d952322009-03-31 01:13:53 +00001227 bool Done = false;
1228 if (AvoidDupAddrCompute && !N.hasOneUse()) {
1229 unsigned Opcode = N.getOpcode();
1230 if (Opcode != ISD::Constant && Opcode != ISD::FrameIndex &&
Chris Lattner18c59872009-06-27 04:16:01 +00001231 Opcode != X86ISD::Wrapper && Opcode != X86ISD::WrapperRIP) {
Evan Cheng4d952322009-03-31 01:13:53 +00001232 // If we are able to fold N into addressing mode, then we'll allow it even
1233 // if N has multiple uses. In general, addressing computation is used as
1234 // addresses by all of its uses. But watch out for CopyToReg uses, that
1235 // means the address computation is liveout. It will be computed by a LEA
1236 // so we want to avoid computing the address twice.
1237 for (SDNode::use_iterator UI = N.getNode()->use_begin(),
1238 UE = N.getNode()->use_end(); UI != UE; ++UI) {
1239 if (UI->getOpcode() == ISD::CopyToReg) {
Rafael Espindola523249f2009-03-31 16:16:57 +00001240 MatchAddressBase(N, AM);
Evan Cheng4d952322009-03-31 01:13:53 +00001241 Done = true;
1242 break;
1243 }
1244 }
1245 }
1246 }
1247
1248 if (!Done && MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001249 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001250
Duncan Sands83ec4b62008-06-06 12:08:01 +00001251 MVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001252 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001253 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001254 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001255 }
Evan Cheng8700e142006-01-11 06:09:51 +00001256
Gabor Greifba36cb52008-08-28 21:40:38 +00001257 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001258 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001259
Rafael Espindola094fad32009-04-08 21:14:34 +00001260 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001261 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001262}
1263
Chris Lattner3a7cd952006-10-07 21:55:32 +00001264/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1265/// match a load whose top elements are either undef or zeros. The load flavor
1266/// is derived from the type of N, which is either v4f32 or v2f64.
Dan Gohman475871a2008-07-27 21:46:04 +00001267bool X86DAGToDAGISel::SelectScalarSSELoad(SDValue Op, SDValue Pred,
1268 SDValue N, SDValue &Base,
1269 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001270 SDValue &Disp, SDValue &Segment,
1271 SDValue &InChain,
Dan Gohman475871a2008-07-27 21:46:04 +00001272 SDValue &OutChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001273 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner4fe4f252006-10-11 22:09:58 +00001274 InChain = N.getOperand(0).getValue(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001275 if (ISD::isNON_EXTLoad(InChain.getNode()) &&
Evan Cheng07e4b002006-10-16 06:34:55 +00001276 InChain.getValue(0).hasOneUse() &&
Evan Chengd6373bc2006-11-10 21:23:04 +00001277 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001278 IsLegalAndProfitableToFold(N.getNode(), Pred.getNode(), Op.getNode())) {
Evan Cheng82a91642006-10-11 21:06:01 +00001279 LoadSDNode *LD = cast<LoadSDNode>(InChain);
Rafael Espindola094fad32009-04-08 21:14:34 +00001280 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001281 return false;
Evan Cheng82a91642006-10-11 21:06:01 +00001282 OutChain = LD->getChain();
Chris Lattner3a7cd952006-10-07 21:55:32 +00001283 return true;
1284 }
1285 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001286
1287 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001288 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001289 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001290 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001291 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001292 N.getOperand(0).getNode()->hasOneUse() &&
1293 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00001294 N.getOperand(0).getOperand(0).hasOneUse()) {
1295 // Okay, this is a zero extending load. Fold it.
1296 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Rafael Espindola094fad32009-04-08 21:14:34 +00001297 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001298 return false;
1299 OutChain = LD->getChain();
Dan Gohman475871a2008-07-27 21:46:04 +00001300 InChain = SDValue(LD, 1);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001301 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001302 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001303 return false;
1304}
1305
1306
Evan Cheng51a9ed92006-02-25 10:09:08 +00001307/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1308/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohman475871a2008-07-27 21:46:04 +00001309bool X86DAGToDAGISel::SelectLEAAddr(SDValue Op, SDValue N,
1310 SDValue &Base, SDValue &Scale,
1311 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001312 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001313
1314 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1315 // segments.
1316 SDValue Copy = AM.Segment;
1317 SDValue T = CurDAG->getRegister(0, MVT::i32);
1318 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001319 if (MatchAddress(N, AM))
1320 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001321 assert (T == AM.Segment);
1322 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001323
Duncan Sands83ec4b62008-06-06 12:08:01 +00001324 MVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001325 unsigned Complexity = 0;
1326 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001327 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001328 Complexity = 1;
1329 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001330 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001331 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1332 Complexity = 4;
1333
Gabor Greifba36cb52008-08-28 21:40:38 +00001334 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001335 Complexity++;
1336 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001337 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001338
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001339 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1340 // a simple shift.
1341 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001342 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001343
1344 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1345 // to a LEA. This is determined with some expermentation but is by no means
1346 // optimal (especially for code size consideration). LEA is nice because of
1347 // its three-address nature. Tweak the cost function again when we can run
1348 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001349 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001350 // For X86-64, we should always use lea to materialize RIP relative
1351 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001352 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001353 Complexity = 4;
1354 else
1355 Complexity += 2;
1356 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001357
Gabor Greifba36cb52008-08-28 21:40:38 +00001358 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001359 Complexity++;
1360
Chris Lattner25142782009-07-11 22:50:33 +00001361 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001362 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001363 return false;
1364
1365 SDValue Segment;
1366 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1367 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001368}
1369
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001370/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
1371bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue Op, SDValue N, SDValue &Base,
1372 SDValue &Scale, SDValue &Index,
1373 SDValue &Disp) {
1374 assert(Op.getOpcode() == X86ISD::TLSADDR);
1375 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1376 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1377
1378 X86ISelAddressMode AM;
1379 AM.GV = GA->getGlobal();
1380 AM.Disp += GA->getOffset();
1381 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001382 AM.SymbolFlags = GA->getTargetFlags();
1383
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001384 if (N.getValueType() == MVT::i32) {
1385 AM.Scale = 1;
1386 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
1387 } else {
1388 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
1389 }
1390
1391 SDValue Segment;
1392 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1393 return true;
1394}
1395
1396
Dan Gohman475871a2008-07-27 21:46:04 +00001397bool X86DAGToDAGISel::TryFoldLoad(SDValue P, SDValue N,
1398 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001399 SDValue &Index, SDValue &Disp,
1400 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001401 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng5e351682006-02-06 06:02:33 +00001402 N.hasOneUse() &&
Evan Cheng884c70c2008-11-27 00:49:46 +00001403 IsLegalAndProfitableToFold(N.getNode(), P.getNode(), P.getNode()))
Rafael Espindola094fad32009-04-08 21:14:34 +00001404 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001405 return false;
1406}
1407
Dan Gohman8b746962008-09-23 18:22:58 +00001408/// getGlobalBaseReg - Return an SDNode that returns the value of
1409/// the global base register. Output instructions required to
1410/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001411///
Evan Cheng9ade2182006-08-26 05:34:46 +00001412SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001413 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001414 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001415}
1416
Evan Chengb245d922006-05-20 01:36:52 +00001417static SDNode *FindCallStartFromCall(SDNode *Node) {
1418 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
1419 assert(Node->getOperand(0).getValueType() == MVT::Other &&
1420 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001421 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001422}
1423
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001424SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1425 SDValue Chain = Node->getOperand(0);
1426 SDValue In1 = Node->getOperand(1);
1427 SDValue In2L = Node->getOperand(2);
1428 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001429 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1430 if (!SelectAddr(In1, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001431 return NULL;
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00001432 SDValue LSI = Node->getOperand(4); // MemOperand
Rafael Espindola094fad32009-04-08 21:14:34 +00001433 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, LSI, Chain};
Rafael Espindolae4d5d342009-03-27 15:45:05 +00001434 return CurDAG->getTargetNode(Opc, Node->getDebugLoc(),
1435 MVT::i32, MVT::i32, MVT::Other, Ops,
Rafael Espindolaa0a4f072009-03-28 19:02:18 +00001436 array_lengthof(Ops));
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001437}
Christopher Lambc59e5212007-08-10 21:48:46 +00001438
Evan Cheng37b73872009-07-30 08:33:02 +00001439SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, MVT NVT) {
1440 if (Node->hasAnyUseOfValue(0))
1441 return 0;
1442
1443 // Optimize common patterns for __sync_add_and_fetch and
1444 // __sync_sub_and_fetch where the result is not used. This allows us
1445 // to use "lock" version of add, sub, inc, dec instructions.
1446 // FIXME: Do not use special instructions but instead add the "lock"
1447 // prefix to the target node somehow. The extra information will then be
1448 // transferred to machine instruction and it denotes the prefix.
1449 SDValue Chain = Node->getOperand(0);
1450 SDValue Ptr = Node->getOperand(1);
1451 SDValue Val = Node->getOperand(2);
1452 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1453 if (!SelectAddr(Ptr, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1454 return 0;
1455
1456 bool isInc = false, isDec = false, isSub = false, isCN = false;
1457 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1458 if (CN) {
1459 isCN = true;
1460 int64_t CNVal = CN->getSExtValue();
1461 if (CNVal == 1)
1462 isInc = true;
1463 else if (CNVal == -1)
1464 isDec = true;
1465 else if (CNVal >= 0)
1466 Val = CurDAG->getTargetConstant(CNVal, NVT);
1467 else {
1468 isSub = true;
1469 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1470 }
1471 } else if (Val.hasOneUse() &&
1472 Val.getOpcode() == ISD::SUB &&
1473 X86::isZeroNode(Val.getOperand(0))) {
1474 isSub = true;
1475 Val = Val.getOperand(1);
1476 }
1477
1478 unsigned Opc = 0;
1479 switch (NVT.getSimpleVT()) {
1480 default: return 0;
1481 case MVT::i8:
1482 if (isInc)
1483 Opc = X86::LOCK_INC8m;
1484 else if (isDec)
1485 Opc = X86::LOCK_DEC8m;
1486 else if (isSub) {
1487 if (isCN)
1488 Opc = X86::LOCK_SUB8mi;
1489 else
1490 Opc = X86::LOCK_SUB8mr;
1491 } else {
1492 if (isCN)
1493 Opc = X86::LOCK_ADD8mi;
1494 else
1495 Opc = X86::LOCK_ADD8mr;
1496 }
1497 break;
1498 case MVT::i16:
1499 if (isInc)
1500 Opc = X86::LOCK_INC16m;
1501 else if (isDec)
1502 Opc = X86::LOCK_DEC16m;
1503 else if (isSub) {
1504 if (isCN) {
1505 if (Predicate_i16immSExt8(Val.getNode()))
1506 Opc = X86::LOCK_SUB16mi8;
1507 else
1508 Opc = X86::LOCK_SUB16mi;
1509 } else
1510 Opc = X86::LOCK_SUB16mr;
1511 } else {
1512 if (isCN) {
1513 if (Predicate_i16immSExt8(Val.getNode()))
1514 Opc = X86::LOCK_ADD16mi8;
1515 else
1516 Opc = X86::LOCK_ADD16mi;
1517 } else
1518 Opc = X86::LOCK_ADD16mr;
1519 }
1520 break;
1521 case MVT::i32:
1522 if (isInc)
1523 Opc = X86::LOCK_INC32m;
1524 else if (isDec)
1525 Opc = X86::LOCK_DEC32m;
1526 else if (isSub) {
1527 if (isCN) {
1528 if (Predicate_i32immSExt8(Val.getNode()))
1529 Opc = X86::LOCK_SUB32mi8;
1530 else
1531 Opc = X86::LOCK_SUB32mi;
1532 } else
1533 Opc = X86::LOCK_SUB32mr;
1534 } else {
1535 if (isCN) {
1536 if (Predicate_i32immSExt8(Val.getNode()))
1537 Opc = X86::LOCK_ADD32mi8;
1538 else
1539 Opc = X86::LOCK_ADD32mi;
1540 } else
1541 Opc = X86::LOCK_ADD32mr;
1542 }
1543 break;
1544 case MVT::i64:
1545 if (isInc)
1546 Opc = X86::LOCK_INC64m;
1547 else if (isDec)
1548 Opc = X86::LOCK_DEC64m;
1549 else if (isSub) {
1550 Opc = X86::LOCK_SUB64mr;
1551 if (isCN) {
1552 if (Predicate_i64immSExt8(Val.getNode()))
1553 Opc = X86::LOCK_SUB64mi8;
1554 else if (Predicate_i64immSExt32(Val.getNode()))
1555 Opc = X86::LOCK_SUB64mi32;
1556 }
1557 } else {
1558 Opc = X86::LOCK_ADD64mr;
1559 if (isCN) {
1560 if (Predicate_i64immSExt8(Val.getNode()))
1561 Opc = X86::LOCK_ADD64mi8;
1562 else if (Predicate_i64immSExt32(Val.getNode()))
1563 Opc = X86::LOCK_ADD64mi32;
1564 }
1565 }
1566 break;
1567 }
1568
1569 DebugLoc dl = Node->getDebugLoc();
1570 SDValue Undef = SDValue(CurDAG->getTargetNode(TargetInstrInfo::IMPLICIT_DEF,
1571 dl, NVT), 0);
1572 SDValue MemOp = CurDAG->getMemOperand(cast<MemSDNode>(Node)->getMemOperand());
1573 if (isInc || isDec) {
1574 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, MemOp, Chain };
1575 SDValue Ret = SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Other, Ops, 7), 0);
1576 SDValue RetVals[] = { Undef, Ret };
1577 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1578 } else {
1579 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, MemOp, Chain };
1580 SDValue Ret = SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Other, Ops, 8), 0);
1581 SDValue RetVals[] = { Undef, Ret };
1582 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1583 }
1584}
1585
Dan Gohman475871a2008-07-27 21:46:04 +00001586SDNode *X86DAGToDAGISel::Select(SDValue N) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001587 SDNode *Node = N.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00001588 MVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001589 unsigned Opc, MOpc;
1590 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001591 DebugLoc dl = Node->getDebugLoc();
1592
Evan Chengf597dc72006-02-10 22:24:32 +00001593#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001594 DEBUG(errs() << std::string(Indent, ' ') << "Selecting: ");
Evan Chengf597dc72006-02-10 22:24:32 +00001595 DEBUG(Node->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001596 DEBUG(errs() << "\n");
Evan Cheng23addc02006-02-10 22:46:26 +00001597 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001598#endif
1599
Dan Gohmane8be6c62008-07-17 19:10:17 +00001600 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001601#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001602 DEBUG(errs() << std::string(Indent-2, ' ') << "== ");
Evan Chengf597dc72006-02-10 22:24:32 +00001603 DEBUG(Node->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001604 DEBUG(errs() << "\n");
Evan Cheng23addc02006-02-10 22:46:26 +00001605 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001606#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001607 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001608 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001609
Evan Cheng0114e942006-01-06 20:36:21 +00001610 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001611 default: break;
1612 case X86ISD::GlobalBaseReg:
1613 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001614
Dan Gohman72677342009-08-02 16:10:52 +00001615 case X86ISD::ATOMOR64_DAG:
1616 return SelectAtomic64(Node, X86::ATOMOR6432);
1617 case X86ISD::ATOMXOR64_DAG:
1618 return SelectAtomic64(Node, X86::ATOMXOR6432);
1619 case X86ISD::ATOMADD64_DAG:
1620 return SelectAtomic64(Node, X86::ATOMADD6432);
1621 case X86ISD::ATOMSUB64_DAG:
1622 return SelectAtomic64(Node, X86::ATOMSUB6432);
1623 case X86ISD::ATOMNAND64_DAG:
1624 return SelectAtomic64(Node, X86::ATOMNAND6432);
1625 case X86ISD::ATOMAND64_DAG:
1626 return SelectAtomic64(Node, X86::ATOMAND6432);
1627 case X86ISD::ATOMSWAP64_DAG:
1628 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001629
Dan Gohman72677342009-08-02 16:10:52 +00001630 case ISD::ATOMIC_LOAD_ADD: {
1631 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1632 if (RetVal)
1633 return RetVal;
1634 break;
1635 }
1636
1637 case ISD::SMUL_LOHI:
1638 case ISD::UMUL_LOHI: {
1639 SDValue N0 = Node->getOperand(0);
1640 SDValue N1 = Node->getOperand(1);
1641
1642 bool isSigned = Opcode == ISD::SMUL_LOHI;
1643 if (!isSigned)
1644 switch (NVT.getSimpleVT()) {
1645 default: llvm_unreachable("Unsupported VT!");
1646 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1647 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1648 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1649 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
1650 }
1651 else
1652 switch (NVT.getSimpleVT()) {
1653 default: llvm_unreachable("Unsupported VT!");
1654 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1655 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1656 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1657 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
1658 }
1659
1660 unsigned LoReg, HiReg;
1661 switch (NVT.getSimpleVT()) {
1662 default: llvm_unreachable("Unsupported VT!");
1663 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1664 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1665 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1666 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
1667 }
1668
1669 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1670 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1671 // multiplty is commmutative
1672 if (!foldedLoad) {
1673 foldedLoad = TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1674 if (foldedLoad)
1675 std::swap(N0, N1);
1676 }
1677
1678 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1679 N0, SDValue()).getValue(1);
1680
1681 if (foldedLoad) {
1682 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1683 InFlag };
1684 SDNode *CNode =
1685 CurDAG->getTargetNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1686 array_lengthof(Ops));
1687 InFlag = SDValue(CNode, 1);
1688 // Update the chain.
1689 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1690 } else {
1691 InFlag =
1692 SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
1693 }
1694
1695 // Copy the low half of the result, if it is needed.
1696 if (!N.getValue(0).use_empty()) {
1697 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1698 LoReg, NVT, InFlag);
1699 InFlag = Result.getValue(2);
1700 ReplaceUses(N.getValue(0), Result);
1701#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001702 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Dan Gohman72677342009-08-02 16:10:52 +00001703 DEBUG(Result.getNode()->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001704 DEBUG(errs() << "\n");
Dan Gohman72677342009-08-02 16:10:52 +00001705#endif
1706 }
1707 // Copy the high half of the result, if it is needed.
1708 if (!N.getValue(1).use_empty()) {
1709 SDValue Result;
1710 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1711 // Prevent use of AH in a REX instruction by referencing AX instead.
1712 // Shift it down 8 bits.
1713 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1714 X86::AX, MVT::i16, InFlag);
1715 InFlag = Result.getValue(2);
1716 Result = SDValue(CurDAG->getTargetNode(X86::SHR16ri, dl, MVT::i16,
1717 Result,
1718 CurDAG->getTargetConstant(8, MVT::i8)), 0);
1719 // Then truncate it down to i8.
1720 SDValue SRIdx = CurDAG->getTargetConstant(X86::SUBREG_8BIT, MVT::i32);
1721 Result = SDValue(CurDAG->getTargetNode(X86::EXTRACT_SUBREG, dl,
1722 MVT::i8, Result, SRIdx), 0);
1723 } else {
1724 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1725 HiReg, NVT, InFlag);
1726 InFlag = Result.getValue(2);
1727 }
1728 ReplaceUses(N.getValue(1), Result);
1729#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001730 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Dan Gohman72677342009-08-02 16:10:52 +00001731 DEBUG(Result.getNode()->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001732 DEBUG(errs() << "\n");
Dan Gohman72677342009-08-02 16:10:52 +00001733#endif
1734 }
1735
1736#ifndef NDEBUG
1737 Indent -= 2;
1738#endif
1739
1740 return NULL;
1741 }
1742
1743 case ISD::SDIVREM:
1744 case ISD::UDIVREM: {
1745 SDValue N0 = Node->getOperand(0);
1746 SDValue N1 = Node->getOperand(1);
1747
1748 bool isSigned = Opcode == ISD::SDIVREM;
1749 if (!isSigned)
1750 switch (NVT.getSimpleVT()) {
1751 default: llvm_unreachable("Unsupported VT!");
1752 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1753 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1754 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1755 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
1756 }
1757 else
1758 switch (NVT.getSimpleVT()) {
1759 default: llvm_unreachable("Unsupported VT!");
1760 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1761 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1762 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1763 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
1764 }
1765
1766 unsigned LoReg, HiReg;
1767 unsigned ClrOpcode, SExtOpcode;
1768 switch (NVT.getSimpleVT()) {
1769 default: llvm_unreachable("Unsupported VT!");
1770 case MVT::i8:
1771 LoReg = X86::AL; HiReg = X86::AH;
1772 ClrOpcode = 0;
1773 SExtOpcode = X86::CBW;
1774 break;
1775 case MVT::i16:
1776 LoReg = X86::AX; HiReg = X86::DX;
1777 ClrOpcode = X86::MOV16r0;
1778 SExtOpcode = X86::CWD;
1779 break;
1780 case MVT::i32:
1781 LoReg = X86::EAX; HiReg = X86::EDX;
1782 ClrOpcode = X86::MOV32r0;
1783 SExtOpcode = X86::CDQ;
1784 break;
1785 case MVT::i64:
1786 LoReg = X86::RAX; HiReg = X86::RDX;
1787 ClrOpcode = ~0U; // NOT USED.
1788 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001789 break;
1790 }
1791
Dan Gohman72677342009-08-02 16:10:52 +00001792 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1793 bool foldedLoad = TryFoldLoad(N, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
1794 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001795
Dan Gohman72677342009-08-02 16:10:52 +00001796 SDValue InFlag;
1797 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
1798 // Special case for div8, just use a move with zero extension to AX to
1799 // clear the upper 8 bits (AH).
1800 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
1801 if (TryFoldLoad(N, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
1802 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1803 Move =
1804 SDValue(CurDAG->getTargetNode(X86::MOVZX16rm8, dl, MVT::i16,
1805 MVT::Other, Ops,
1806 array_lengthof(Ops)), 0);
1807 Chain = Move.getValue(1);
1808 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001809 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001810 Move =
1811 SDValue(CurDAG->getTargetNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
1812 Chain = CurDAG->getEntryNode();
1813 }
1814 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1815 InFlag = Chain.getValue(1);
1816 } else {
1817 InFlag =
1818 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1819 LoReg, N0, SDValue()).getValue(1);
1820 if (isSigned && !signBitIsZero) {
1821 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001822 InFlag =
Dan Gohman72677342009-08-02 16:10:52 +00001823 SDValue(CurDAG->getTargetNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
1824 } else {
1825 // Zero out the high part, effectively zero extending the input.
1826 SDValue ClrNode;
Evan Cheng0114e942006-01-06 20:36:21 +00001827
Dan Gohman72677342009-08-02 16:10:52 +00001828 if (NVT.getSimpleVT() == MVT::i64) {
1829 ClrNode = SDValue(CurDAG->getTargetNode(X86::MOV32r0, dl, MVT::i32),
1830 0);
1831 // We just did a 32-bit clear, insert it into a 64-bit register to
1832 // clear the whole 64-bit reg.
1833 SDValue Undef =
1834 SDValue(CurDAG->getTargetNode(TargetInstrInfo::IMPLICIT_DEF,
1835 dl, MVT::i64), 0);
1836 SDValue SubRegNo =
1837 CurDAG->getTargetConstant(X86::SUBREG_32BIT, MVT::i32);
1838 ClrNode =
1839 SDValue(CurDAG->getTargetNode(TargetInstrInfo::INSERT_SUBREG, dl,
1840 MVT::i64, Undef, ClrNode, SubRegNo),
1841 0);
Dan Gohman525178c2007-10-08 18:33:35 +00001842 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001843 ClrNode = SDValue(CurDAG->getTargetNode(ClrOpcode, dl, NVT), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00001844 }
Dan Gohman72677342009-08-02 16:10:52 +00001845
1846 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, HiReg,
1847 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001848 }
Evan Cheng948f3432006-01-06 23:19:29 +00001849 }
Dan Gohman525178c2007-10-08 18:33:35 +00001850
Dan Gohman72677342009-08-02 16:10:52 +00001851 if (foldedLoad) {
1852 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1853 InFlag };
1854 SDNode *CNode =
1855 CurDAG->getTargetNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1856 array_lengthof(Ops));
1857 InFlag = SDValue(CNode, 1);
1858 // Update the chain.
1859 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1860 } else {
1861 InFlag =
1862 SDValue(CurDAG->getTargetNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
1863 }
Evan Cheng948f3432006-01-06 23:19:29 +00001864
Dan Gohman72677342009-08-02 16:10:52 +00001865 // Copy the division (low) result, if it is needed.
1866 if (!N.getValue(0).use_empty()) {
1867 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1868 LoReg, NVT, InFlag);
1869 InFlag = Result.getValue(2);
1870 ReplaceUses(N.getValue(0), Result);
1871#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001872 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Dan Gohman72677342009-08-02 16:10:52 +00001873 DEBUG(Result.getNode()->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001874 DEBUG(errs() << "\n");
Dan Gohman72677342009-08-02 16:10:52 +00001875#endif
1876 }
1877 // Copy the remainder (high) result, if it is needed.
1878 if (!N.getValue(1).use_empty()) {
1879 SDValue Result;
1880 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1881 // Prevent use of AH in a REX instruction by referencing AX instead.
1882 // Shift it down 8 bits.
1883 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1884 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001885 InFlag = Result.getValue(2);
Dan Gohman72677342009-08-02 16:10:52 +00001886 Result = SDValue(CurDAG->getTargetNode(X86::SHR16ri, dl, MVT::i16,
1887 Result,
1888 CurDAG->getTargetConstant(8, MVT::i8)),
1889 0);
1890 // Then truncate it down to i8.
1891 SDValue SRIdx = CurDAG->getTargetConstant(X86::SUBREG_8BIT, MVT::i32);
1892 Result = SDValue(CurDAG->getTargetNode(X86::EXTRACT_SUBREG, dl,
1893 MVT::i8, Result, SRIdx), 0);
1894 } else {
1895 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1896 HiReg, NVT, InFlag);
1897 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00001898 }
Dan Gohman72677342009-08-02 16:10:52 +00001899 ReplaceUses(N.getValue(1), Result);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001900#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001901 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Dan Gohman72677342009-08-02 16:10:52 +00001902 DEBUG(Result.getNode()->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001903 DEBUG(errs() << "\n");
Dan Gohmana37c9f72007-09-25 18:23:27 +00001904#endif
Dan Gohman72677342009-08-02 16:10:52 +00001905 }
Evan Chengf597dc72006-02-10 22:24:32 +00001906
1907#ifndef NDEBUG
Dan Gohman72677342009-08-02 16:10:52 +00001908 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001909#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001910
Dan Gohman72677342009-08-02 16:10:52 +00001911 return NULL;
1912 }
1913
1914 case ISD::DECLARE: {
1915 // Handle DECLARE nodes here because the second operand may have been
1916 // wrapped in X86ISD::Wrapper.
1917 SDValue Chain = Node->getOperand(0);
1918 SDValue N1 = Node->getOperand(1);
1919 SDValue N2 = Node->getOperand(2);
1920 FrameIndexSDNode *FINode = dyn_cast<FrameIndexSDNode>(N1);
1921
1922 // FIXME: We need to handle this for VLAs.
1923 if (!FINode) {
1924 ReplaceUses(N.getValue(0), Chain);
Evan Cheng64a752f2006-08-11 09:08:15 +00001925 return NULL;
Evan Cheng0114e942006-01-06 20:36:21 +00001926 }
Christopher Lamba1eb1552007-08-10 22:22:41 +00001927
Dan Gohman72677342009-08-02 16:10:52 +00001928 if (N2.getOpcode() == ISD::ADD &&
1929 N2.getOperand(0).getOpcode() == X86ISD::GlobalBaseReg)
1930 N2 = N2.getOperand(1);
1931
1932 // If N2 is not Wrapper(decriptor) then the llvm.declare is mangled
1933 // somehow, just ignore it.
1934 if (N2.getOpcode() != X86ISD::Wrapper &&
1935 N2.getOpcode() != X86ISD::WrapperRIP) {
1936 ReplaceUses(N.getValue(0), Chain);
1937 return NULL;
Evan Cheng851bc042008-06-17 02:01:22 +00001938 }
Dan Gohman72677342009-08-02 16:10:52 +00001939 GlobalAddressSDNode *GVNode =
1940 dyn_cast<GlobalAddressSDNode>(N2.getOperand(0));
1941 if (GVNode == 0) {
1942 ReplaceUses(N.getValue(0), Chain);
1943 return NULL;
1944 }
1945 SDValue Tmp1 = CurDAG->getTargetFrameIndex(FINode->getIndex(),
1946 TLI.getPointerTy());
1947 SDValue Tmp2 = CurDAG->getTargetGlobalAddress(GVNode->getGlobal(),
1948 TLI.getPointerTy());
1949 SDValue Ops[] = { Tmp1, Tmp2, Chain };
1950 return CurDAG->getTargetNode(TargetInstrInfo::DECLARE, dl,
1951 MVT::Other, Ops,
1952 array_lengthof(Ops));
1953 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00001954 }
1955
Evan Cheng9ade2182006-08-26 05:34:46 +00001956 SDNode *ResNode = SelectCode(N);
Evan Cheng64a752f2006-08-11 09:08:15 +00001957
Evan Chengf597dc72006-02-10 22:24:32 +00001958#ifndef NDEBUG
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001959 DEBUG(errs() << std::string(Indent-2, ' ') << "=> ");
Gabor Greifba36cb52008-08-28 21:40:38 +00001960 if (ResNode == NULL || ResNode == N.getNode())
1961 DEBUG(N.getNode()->dump(CurDAG));
Evan Cheng9ade2182006-08-26 05:34:46 +00001962 else
1963 DEBUG(ResNode->dump(CurDAG));
Bill Wendling0ea8bf32009-08-03 00:11:34 +00001964 DEBUG(errs() << "\n");
Evan Cheng23addc02006-02-10 22:46:26 +00001965 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001966#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001967
1968 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00001969}
1970
Chris Lattnerc0bad572006-06-08 18:03:49 +00001971bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00001972SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00001973 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00001974 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00001975 switch (ConstraintCode) {
1976 case 'o': // offsetable ??
1977 case 'v': // not offsetable ??
1978 default: return true;
1979 case 'm': // memory
Rafael Espindola094fad32009-04-08 21:14:34 +00001980 if (!SelectAddr(Op, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00001981 return true;
1982 break;
1983 }
1984
Evan Cheng04699902006-08-26 01:05:16 +00001985 OutOps.push_back(Op0);
1986 OutOps.push_back(Op1);
1987 OutOps.push_back(Op2);
1988 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001989 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00001990 return false;
1991}
1992
Chris Lattnerc961eea2005-11-16 01:54:32 +00001993/// createX86ISelDag - This pass converts a legalized DAG into a
1994/// X86-specific DAG, ready for instruction scheduling.
1995///
Bill Wendling98a366d2009-04-29 23:29:43 +00001996FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
1997 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001998 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00001999}