blob: 65f6d27744ec109584943098fe7622ac6fbd45ae [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc961eea2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Daniel Dunbar5da58852009-11-10 18:24:37 +000015// Force NDEBUG on in any optimized build on Darwin.
16//
17// FIXME: This is a huge hack, to work around ridiculously awful compile times
18// on this file with gcc-4.2 on Darwin, in Release mode.
Daniel Dunbar253e9b22009-11-11 00:28:38 +000019#if (!defined(__llvm__) && defined(__APPLE__) && \
20 defined(__OPTIMIZE__) && !defined(NDEBUG))
Daniel Dunbar5da58852009-11-10 18:24:37 +000021#define NDEBUG
22#endif
23
Evan Cheng2ef88a02006-08-07 22:28:20 +000024#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000025#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000026#include "X86InstrBuilder.h"
Evan Chengc4c62572006-03-13 23:20:37 +000027#include "X86ISelLowering.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000028#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000029#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000030#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000031#include "X86TargetMachine.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000032#include "llvm/GlobalValue.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000033#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000034#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000035#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000036#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000037#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000038#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000039#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000040#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000041#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000042#include "llvm/CodeGen/SelectionDAGISel.h"
43#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000044#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000045#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000046#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000047#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000048#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000049#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000050#include "llvm/ADT/Statistic.h"
51using namespace llvm;
52
Chris Lattner95b2c7d2006-12-19 22:59:26 +000053STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
54
Chris Lattnerc961eea2005-11-16 01:54:32 +000055//===----------------------------------------------------------------------===//
56// Pattern Matcher Implementation
57//===----------------------------------------------------------------------===//
58
59namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000060 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000061 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000062 /// tree.
63 struct X86ISelAddressMode {
64 enum {
65 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000066 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000067 } BaseType;
68
69 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000070 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000071 int FrameIndex;
72 } Base;
73
74 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000075 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000076 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000077 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000079 Constant *CP;
Chris Lattner43f44aa2009-11-01 03:25:03 +000080 BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000081 const char *ES;
82 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000083 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000084 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000085
86 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000087 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000088 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000089 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000090 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000091
92 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000093 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000094 }
Chris Lattner18c59872009-06-27 04:16:01 +000095
96 bool hasBaseOrIndexReg() const {
97 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
98 }
99
100 /// isRIPRelative - Return true if this addressing mode is already RIP
101 /// relative.
102 bool isRIPRelative() const {
103 if (BaseType != RegBase) return false;
104 if (RegisterSDNode *RegNode =
105 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
106 return RegNode->getReg() == X86::RIP;
107 return false;
108 }
109
110 void setBaseReg(SDValue Reg) {
111 BaseType = RegBase;
112 Base.Reg = Reg;
113 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000114
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000115 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000116 dbgs() << "X86ISelAddressMode " << this << '\n';
117 dbgs() << "Base.Reg ";
Bill Wendling12321672009-08-07 21:33:25 +0000118 if (Base.Reg.getNode() != 0)
119 Base.Reg.getNode()->dump();
120 else
David Greened7f4f242010-01-05 01:29:08 +0000121 dbgs() << "nul";
122 dbgs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000123 << " Scale" << Scale << '\n'
124 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000125 if (IndexReg.getNode() != 0)
126 IndexReg.getNode()->dump();
127 else
David Greened7f4f242010-01-05 01:29:08 +0000128 dbgs() << "nul";
129 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000130 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000131 if (GV)
132 GV->dump();
133 else
David Greened7f4f242010-01-05 01:29:08 +0000134 dbgs() << "nul";
135 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000136 if (CP)
137 CP->dump();
138 else
David Greened7f4f242010-01-05 01:29:08 +0000139 dbgs() << "nul";
140 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000141 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000142 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000143 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000144 else
David Greened7f4f242010-01-05 01:29:08 +0000145 dbgs() << "nul";
146 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000147 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000148 };
149}
150
151namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000152 //===--------------------------------------------------------------------===//
153 /// ISel - X86 specific code to select X86 machine instructions for
154 /// SelectionDAG operations.
155 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000156 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000157 /// X86Lowering - This object fully describes how to lower LLVM code to an
158 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000159 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000160
161 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
162 /// make the right decision when generating code for different targets.
163 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000164
Evan Chengb7a75a52008-09-26 23:41:32 +0000165 /// OptForSize - If true, selector should try to optimize for code size
166 /// instead of performance.
167 bool OptForSize;
168
Chris Lattnerc961eea2005-11-16 01:54:32 +0000169 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000170 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000171 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000172 X86Lowering(*tm.getTargetLowering()),
173 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000174 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000175
176 virtual const char *getPassName() const {
177 return "X86 DAG->DAG Instruction Selection";
178 }
179
Evan Chengdb8d56b2008-06-30 20:45:06 +0000180 /// InstructionSelect - This callback is invoked by
Chris Lattnerc961eea2005-11-16 01:54:32 +0000181 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000182 virtual void InstructionSelect();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000183
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000184 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
185
Evan Cheng014bf212010-02-15 19:41:07 +0000186 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
187
188 virtual bool IsLegalToFold(SDValue N, SDNode *U, SDNode *Root) const;
Evan Chenga8df1b42006-07-27 16:44:36 +0000189
Chris Lattnerc961eea2005-11-16 01:54:32 +0000190// Include the pieces autogenerated from the target description.
191#include "X86GenDAGISel.inc"
192
193 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000194 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000195 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000196 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000197
Rafael Espindola094fad32009-04-08 21:14:34 +0000198 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
199 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000200 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000201 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
202 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
203 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000204 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000205 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000206 SDValue &Scale, SDValue &Index, SDValue &Disp,
207 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000208 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000209 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000210 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000211 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattner92d3ada2010-02-16 22:35:06 +0000212 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
213 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000215 SDValue &Segment,
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue &InChain, SDValue &OutChain);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000217 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000218 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000219 SDValue &Index, SDValue &Disp,
220 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000221 void PreprocessForRMW();
222 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000223
Chris Lattnerc0bad572006-06-08 18:03:49 +0000224 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
225 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000226 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000227 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000228 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000229
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000230 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
231
Dan Gohman475871a2008-07-27 21:46:04 +0000232 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
233 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000234 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000235 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000236 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
237 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000238 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000239 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000240 // These are 32-bit even in 64-bit mode since RIP relative offset
241 // is 32-bit.
242 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000243 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000244 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000245 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000246 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000247 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000248 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000249 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000250 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000251 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000252 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000253 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
254 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000255 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000256 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000257
258 if (AM.Segment.getNode())
259 Segment = AM.Segment;
260 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000262 }
263
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000264 /// getI8Imm - Return a target constant with the specified value, of type
265 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000266 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000267 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000268 }
269
Chris Lattnerc961eea2005-11-16 01:54:32 +0000270 /// getI16Imm - Return a target constant with the specified value, of type
271 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000272 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000273 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000274 }
275
276 /// getI32Imm - Return a target constant with the specified value, of type
277 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000278 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000279 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000280 }
Evan Chengf597dc72006-02-10 22:24:32 +0000281
Dan Gohman8b746962008-09-23 18:22:58 +0000282 /// getGlobalBaseReg - Return an SDNode that returns the value of
283 /// the global base register. Output instructions required to
284 /// initialize the global base register, if necessary.
285 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000286 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000287
Dan Gohmanc5534622009-06-03 20:20:00 +0000288 /// getTargetMachine - Return a reference to the TargetMachine, casted
289 /// to the target-specific type.
290 const X86TargetMachine &getTargetMachine() {
291 return static_cast<const X86TargetMachine &>(TM);
292 }
293
294 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
295 /// to the target-specific type.
296 const X86InstrInfo *getInstrInfo() {
297 return getTargetMachine().getInstrInfo();
298 }
299
Evan Cheng23addc02006-02-10 22:46:26 +0000300#ifndef NDEBUG
301 unsigned Indent;
302#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000303 };
304}
305
Evan Chengf4b4c412006-08-08 00:31:00 +0000306
Evan Cheng014bf212010-02-15 19:41:07 +0000307bool
308X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000309 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000310
Evan Cheng014bf212010-02-15 19:41:07 +0000311 if (!N.hasOneUse())
312 return false;
313
314 if (N.getOpcode() != ISD::LOAD)
315 return true;
316
317 // If N is a load, do additional profitability checks.
318 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000319 switch (U->getOpcode()) {
320 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000321 case X86ISD::ADD:
322 case X86ISD::SUB:
323 case X86ISD::AND:
324 case X86ISD::XOR:
325 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000326 case ISD::ADD:
327 case ISD::ADDC:
328 case ISD::ADDE:
329 case ISD::AND:
330 case ISD::OR:
331 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000332 SDValue Op1 = U->getOperand(1);
333
Evan Cheng884c70c2008-11-27 00:49:46 +0000334 // If the other operand is a 8-bit immediate we should fold the immediate
335 // instead. This reduces code size.
336 // e.g.
337 // movl 4(%esp), %eax
338 // addl $4, %eax
339 // vs.
340 // movl $4, %eax
341 // addl 4(%esp), %eax
342 // The former is 2 bytes shorter. In case where the increment is 1, then
343 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000344 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000345 if (Imm->getAPIntValue().isSignedIntN(8))
346 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000347
348 // If the other operand is a TLS address, we should fold it instead.
349 // This produces
350 // movl %gs:0, %eax
351 // leal i@NTPOFF(%eax), %eax
352 // instead of
353 // movl $i@NTPOFF, %eax
354 // addl %gs:0, %eax
355 // if the block also has an access to a second TLS address this will save
356 // a load.
357 // FIXME: This is probably also true for non TLS addresses.
358 if (Op1.getOpcode() == X86ISD::Wrapper) {
359 SDValue Val = Op1.getOperand(0);
360 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
361 return false;
362 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000363 }
364 }
Evan Cheng014bf212010-02-15 19:41:07 +0000365 }
366
367 return true;
368}
369
370
371bool X86DAGToDAGISel::IsLegalToFold(SDValue N, SDNode *U, SDNode *Root) const {
372 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng884c70c2008-11-27 00:49:46 +0000373
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +0000374 // Proceed to 'generic' cycle finder code
Evan Cheng014bf212010-02-15 19:41:07 +0000375 return SelectionDAGISel::IsLegalToFold(N, U, Root);
Evan Chenga8df1b42006-07-27 16:44:36 +0000376}
377
Evan Cheng70e674e2006-08-28 20:10:17 +0000378/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
379/// and move load below the TokenFactor. Replace store's chain operand with
380/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000381static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000382 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000383 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000384 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
385 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000386 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000387 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000388 Ops.push_back(TF.getOperand(i));
Dan Gohmanaae317a2009-08-06 09:22:57 +0000389 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
390 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
391 Load.getOperand(1),
392 Load.getOperand(2));
393 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohmanf350b272008-08-23 02:25:05 +0000394 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000395}
396
Nate Begeman206a3572009-09-16 03:20:46 +0000397/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
398/// chain produced by the load must only be used by the store's chain operand,
399/// otherwise this may produce a cycle in the DAG.
Evan Chengcd0baf22008-05-23 21:23:16 +0000400///
Dan Gohman475871a2008-07-27 21:46:04 +0000401static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
402 SDValue &Load) {
David Greeneee9c5952010-01-15 23:23:41 +0000403 if (N.getOpcode() == ISD::BIT_CONVERT) {
404 if (!N.hasOneUse())
405 return false;
Evan Chengcd0baf22008-05-23 21:23:16 +0000406 N = N.getOperand(0);
David Greeneee9c5952010-01-15 23:23:41 +0000407 }
Evan Chengcd0baf22008-05-23 21:23:16 +0000408
409 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
410 if (!LD || LD->isVolatile())
411 return false;
412 if (LD->getAddressingMode() != ISD::UNINDEXED)
413 return false;
414
415 ISD::LoadExtType ExtType = LD->getExtensionType();
416 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
417 return false;
418
419 if (N.hasOneUse() &&
Nate Begeman206a3572009-09-16 03:20:46 +0000420 LD->hasNUsesOfValue(1, 1) &&
Evan Chengcd0baf22008-05-23 21:23:16 +0000421 N.getOperand(1) == Address &&
Nate Begeman206a3572009-09-16 03:20:46 +0000422 LD->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000423 Load = N;
424 return true;
425 }
426 return false;
427}
428
Evan Chengab6c3bb2008-08-25 21:27:18 +0000429/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
430/// operand and move load below the call's chain operand.
431static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000432 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000433 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000434 SDValue Chain = CallSeqStart.getOperand(0);
435 if (Chain.getNode() == Load.getNode())
436 Ops.push_back(Load.getOperand(0));
437 else {
438 assert(Chain.getOpcode() == ISD::TokenFactor &&
439 "Unexpected CallSeqStart chain operand");
440 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
441 if (Chain.getOperand(i).getNode() == Load.getNode())
442 Ops.push_back(Load.getOperand(0));
443 else
444 Ops.push_back(Chain.getOperand(i));
445 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000446 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000447 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000448 Ops.clear();
449 Ops.push_back(NewChain);
450 }
451 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
452 Ops.push_back(CallSeqStart.getOperand(i));
453 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000454 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
455 Load.getOperand(1), Load.getOperand(2));
456 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000457 Ops.push_back(SDValue(Load.getNode(), 1));
458 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000459 Ops.push_back(Call.getOperand(i));
460 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
461}
462
463/// isCalleeLoad - Return true if call address is a load and it can be
464/// moved below CALLSEQ_START and the chains leading up to the call.
465/// Return the CALLSEQ_START by reference as a second output.
466static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000467 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000468 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000469 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000470 if (!LD ||
471 LD->isVolatile() ||
472 LD->getAddressingMode() != ISD::UNINDEXED ||
473 LD->getExtensionType() != ISD::NON_EXTLOAD)
474 return false;
475
476 // Now let's find the callseq_start.
477 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
478 if (!Chain.hasOneUse())
479 return false;
480 Chain = Chain.getOperand(0);
481 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000482
483 if (Chain.getOperand(0).getNode() == Callee.getNode())
484 return true;
485 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000486 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
487 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000488 return true;
489 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000490}
491
492
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000493/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000494/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000495/// This allows the instruction selector to pick more read-modify-write
496/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000497///
498/// [Load chain]
499/// ^
500/// |
501/// [Load]
502/// ^ ^
503/// | |
504/// / \-
505/// / |
506/// [TokenFactor] [Op]
507/// ^ ^
508/// | |
509/// \ /
510/// \ /
511/// [Store]
512///
513/// The fact the store's chain operand != load's chain will prevent the
514/// (store (op (load))) instruction from being selected. We can transform it to:
515///
516/// [Load chain]
517/// ^
518/// |
519/// [TokenFactor]
520/// ^
521/// |
522/// [Load]
523/// ^ ^
524/// | |
525/// | \-
526/// | |
527/// | [Op]
528/// | ^
529/// | |
530/// \ /
531/// \ /
532/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000533void X86DAGToDAGISel::PreprocessForRMW() {
534 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
535 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000536 if (I->getOpcode() == X86ISD::CALL) {
537 /// Also try moving call address load from outside callseq_start to just
538 /// before the call to allow it to be folded.
539 ///
540 /// [Load chain]
541 /// ^
542 /// |
543 /// [Load]
544 /// ^ ^
545 /// | |
546 /// / \--
547 /// / |
548 ///[CALLSEQ_START] |
549 /// ^ |
550 /// | |
551 /// [LOAD/C2Reg] |
552 /// | |
553 /// \ /
554 /// \ /
555 /// [CALL]
556 SDValue Chain = I->getOperand(0);
557 SDValue Load = I->getOperand(1);
558 if (!isCalleeLoad(Load, Chain))
559 continue;
560 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
561 ++NumLoadMoved;
562 continue;
563 }
564
Evan Cheng8b2794a2006-10-13 21:14:26 +0000565 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000566 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000567 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000568
Gabor Greifba36cb52008-08-28 21:40:38 +0000569 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000570 continue;
571
Dan Gohman475871a2008-07-27 21:46:04 +0000572 SDValue N1 = I->getOperand(1);
573 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000574 if ((N1.getValueType().isFloatingPoint() &&
575 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000576 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000577 continue;
578
579 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000580 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000581 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000582 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000583 case ISD::ADD:
584 case ISD::MUL:
585 case ISD::AND:
586 case ISD::OR:
587 case ISD::XOR:
588 case ISD::ADDC:
589 case ISD::ADDE:
590 case ISD::VECTOR_SHUFFLE: {
591 SDValue N10 = N1.getOperand(0);
592 SDValue N11 = N1.getOperand(1);
593 RModW = isRMWLoad(N10, Chain, N2, Load);
594 if (!RModW)
595 RModW = isRMWLoad(N11, Chain, N2, Load);
596 break;
597 }
598 case ISD::SUB:
599 case ISD::SHL:
600 case ISD::SRA:
601 case ISD::SRL:
602 case ISD::ROTL:
603 case ISD::ROTR:
604 case ISD::SUBC:
605 case ISD::SUBE:
606 case X86ISD::SHLD:
607 case X86ISD::SHRD: {
608 SDValue N10 = N1.getOperand(0);
609 RModW = isRMWLoad(N10, Chain, N2, Load);
610 break;
611 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000612 }
613
Evan Cheng82a35b32006-08-29 06:44:17 +0000614 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000615 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000616 ++NumLoadMoved;
David Greenecf495bc2010-01-20 20:13:31 +0000617 checkForCycles(I);
Evan Cheng82a35b32006-08-29 06:44:17 +0000618 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000619 }
620}
621
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000622
623/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
624/// nodes that target the FP stack to be store and load to the stack. This is a
625/// gross hack. We would like to simply mark these as being illegal, but when
626/// we do that, legalize produces these when it expands calls, then expands
627/// these in the same legalize pass. We would like dag combine to be able to
628/// hack on these between the call expansion and the node legalization. As such
629/// this pass basically does "really late" legalization of these inline with the
630/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000631void X86DAGToDAGISel::PreprocessForFPConvert() {
632 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
633 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000634 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
635 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
636 continue;
637
638 // If the source and destination are SSE registers, then this is a legal
639 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000640 EVT SrcVT = N->getOperand(0).getValueType();
641 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000642 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
643 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
644 if (SrcIsSSE && DstIsSSE)
645 continue;
646
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000647 if (!SrcIsSSE && !DstIsSSE) {
648 // If this is an FPStack extension, it is a noop.
649 if (N->getOpcode() == ISD::FP_EXTEND)
650 continue;
651 // If this is a value-preserving FPStack truncation, it is a noop.
652 if (N->getConstantOperandVal(1))
653 continue;
654 }
655
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000656 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
657 // FPStack has extload and truncstore. SSE can fold direct loads into other
658 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000659 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000660 if (N->getOpcode() == ISD::FP_ROUND)
661 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
662 else
663 MemVT = SrcIsSSE ? SrcVT : DstVT;
664
Dan Gohmanf350b272008-08-23 02:25:05 +0000665 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000666 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000667
668 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000669 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000670 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000671 MemTmp, NULL, 0, MemVT,
672 false, false, 0);
Dale Johannesend8392542009-02-03 21:48:12 +0000673 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000674 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000675
676 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
677 // extload we created. This will cause general havok on the dag because
678 // anything below the conversion could be folded into other existing nodes.
679 // To avoid invalidating 'I', back it up to the convert node.
680 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000681 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000682
683 // Now that we did that, the node is dead. Increment the iterator to the
684 // next node to process, then delete N.
685 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000686 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000687 }
688}
689
Chris Lattnerc961eea2005-11-16 01:54:32 +0000690/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
691/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000692void X86DAGToDAGISel::InstructionSelect() {
Dan Gohman7571eb52009-08-01 03:42:59 +0000693 const Function *F = MF->getFunction();
Devang Patele76225a2008-10-06 18:03:39 +0000694 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000695
Bill Wendling98a366d2009-04-29 23:29:43 +0000696 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000697 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000698
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000699 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000700 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000701
Chris Lattnerc961eea2005-11-16 01:54:32 +0000702 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000703#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000704 DEBUG(dbgs() << "===== Instruction selection begins:\n");
Evan Cheng23addc02006-02-10 22:46:26 +0000705 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000706#endif
David Greene8ad4c002008-10-27 21:56:29 +0000707 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000708#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000709 DEBUG(dbgs() << "===== Instruction selection ends:\n");
Evan Chengf597dc72006-02-10 22:24:32 +0000710#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000711
Dan Gohmanf350b272008-08-23 02:25:05 +0000712 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000713}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000714
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000715/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
716/// the main function.
717void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
718 MachineFrameInfo *MFI) {
719 const TargetInstrInfo *TII = TM.getInstrInfo();
720 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000721 BuildMI(BB, DebugLoc::getUnknownLoc(),
722 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000723}
724
725void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
726 // If this is main, emit special code for main.
727 MachineBasicBlock *BB = MF.begin();
728 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
729 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
730}
731
Rafael Espindola094fad32009-04-08 21:14:34 +0000732
733bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
734 X86ISelAddressMode &AM) {
735 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
736 SDValue Segment = N.getOperand(0);
737
738 if (AM.Segment.getNode() == 0) {
739 AM.Segment = Segment;
740 return false;
741 }
742
743 return true;
744}
745
746bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
747 // This optimization is valid because the GNU TLS model defines that
748 // gs:0 (or fs:0 on X86-64) contains its own address.
749 // For more information see http://people.redhat.com/drepper/tls.pdf
750
751 SDValue Address = N.getOperand(1);
752 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
753 !MatchSegmentBaseAddress (Address, AM))
754 return false;
755
756 return true;
757}
758
Chris Lattner18c59872009-06-27 04:16:01 +0000759/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
760/// into an addressing mode. These wrap things that will resolve down into a
761/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000762/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000763bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000764 // If the addressing mode already has a symbol as the displacement, we can
765 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000766 if (AM.hasSymbolicDisplacement())
767 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000768
769 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000770 CodeModel::Model M = TM.getCodeModel();
771
Chris Lattner18c59872009-06-27 04:16:01 +0000772 // Handle X86-64 rip-relative addresses. We check this before checking direct
773 // folding because RIP is preferable to non-RIP accesses.
774 if (Subtarget->is64Bit() &&
775 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
776 // they cannot be folded into immediate fields.
777 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000778 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000779 // Base and index reg must be 0 in order to use %rip as base and lowering
780 // must allow RIP.
781 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000782 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
783 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000784 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000785 AM.GV = G->getGlobal();
786 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000787 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000788 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
789 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000790 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000791 AM.CP = CP->getConstVal();
792 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000793 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000794 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000795 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
796 AM.ES = S->getSymbol();
797 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000798 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000799 AM.JT = J->getIndex();
800 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000801 } else {
802 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000803 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000804 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000805
Chris Lattner18c59872009-06-27 04:16:01 +0000806 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000807 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000808 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000809 }
810
811 // Handle the case when globals fit in our immediate field: This is true for
812 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
813 // mode, this results in a non-RIP-relative computation.
814 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000815 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000816 TM.getRelocationModel() == Reloc::Static)) {
817 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
818 AM.GV = G->getGlobal();
819 AM.Disp += G->getOffset();
820 AM.SymbolFlags = G->getTargetFlags();
821 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
822 AM.CP = CP->getConstVal();
823 AM.Align = CP->getAlignment();
824 AM.Disp += CP->getOffset();
825 AM.SymbolFlags = CP->getTargetFlags();
826 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
827 AM.ES = S->getSymbol();
828 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000829 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000830 AM.JT = J->getIndex();
831 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000832 } else {
833 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000834 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000835 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000836 return false;
837 }
838
839 return true;
840}
841
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000842/// MatchAddress - Add the specified node to the specified addressing mode,
843/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000844/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000845bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
846 if (MatchAddressRecursively(N, AM, 0))
847 return true;
848
849 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
850 // a smaller encoding and avoids a scaled-index.
851 if (AM.Scale == 2 &&
852 AM.BaseType == X86ISelAddressMode::RegBase &&
853 AM.Base.Reg.getNode() == 0) {
854 AM.Base.Reg = AM.IndexReg;
855 AM.Scale = 1;
856 }
857
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000858 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
859 // because it has a smaller encoding.
860 // TODO: Which other code models can use this?
861 if (TM.getCodeModel() == CodeModel::Small &&
862 Subtarget->is64Bit() &&
863 AM.Scale == 1 &&
864 AM.BaseType == X86ISelAddressMode::RegBase &&
865 AM.Base.Reg.getNode() == 0 &&
866 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000867 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000868 AM.hasSymbolicDisplacement())
869 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
870
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000871 return false;
872}
873
874bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
875 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000876 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000877 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000878 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000879 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000880 AM.dump();
881 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000882 // Limit recursion.
883 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000884 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000885
886 CodeModel::Model M = TM.getCodeModel();
887
Chris Lattner18c59872009-06-27 04:16:01 +0000888 // If this is already a %rip relative address, we can only merge immediates
889 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000890 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000891 if (AM.isRIPRelative()) {
892 // FIXME: JumpTable and ExternalSymbol address currently don't like
893 // displacements. It isn't very important, but this should be fixed for
894 // consistency.
895 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000896
Chris Lattner18c59872009-06-27 04:16:01 +0000897 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
898 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000899 if (X86::isOffsetSuitableForCodeModel(Val, M,
900 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000901 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000902 return false;
903 }
904 }
905 return true;
906 }
907
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000908 switch (N.getOpcode()) {
909 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000910 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000911 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000912 if (!is64Bit ||
913 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
914 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000915 AM.Disp += Val;
916 return false;
917 }
918 break;
919 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000920
Rafael Espindola094fad32009-04-08 21:14:34 +0000921 case X86ISD::SegmentBaseAddress:
922 if (!MatchSegmentBaseAddress(N, AM))
923 return false;
924 break;
925
Rafael Espindola49a168d2009-04-12 21:55:03 +0000926 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000927 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000928 if (!MatchWrapper(N, AM))
929 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000930 break;
931
Rafael Espindola094fad32009-04-08 21:14:34 +0000932 case ISD::LOAD:
933 if (!MatchLoad(N, AM))
934 return false;
935 break;
936
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000937 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000938 if (AM.BaseType == X86ISelAddressMode::RegBase
939 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000940 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
941 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
942 return false;
943 }
944 break;
Evan Chengec693f72005-12-08 02:01:35 +0000945
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000946 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000947 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000948 break;
949
Gabor Greif93c53e52008-08-31 15:37:04 +0000950 if (ConstantSDNode
951 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000952 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000953 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
954 // that the base operand remains free for further matching. If
955 // the base doesn't end up getting used, a post-processing step
956 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000957 if (Val == 1 || Val == 2 || Val == 3) {
958 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000959 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000960
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000961 // Okay, we know that we have a scale by now. However, if the scaled
962 // value is an add of something and a constant, we can fold the
963 // constant into the disp field here.
Dan Gohmana10756e2010-01-21 02:09:26 +0000964 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000965 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
966 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000967 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000968 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000969 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000970 if (!is64Bit ||
971 X86::isOffsetSuitableForCodeModel(Disp, M,
972 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000973 AM.Disp = Disp;
974 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000975 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000976 } else {
977 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000978 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000979 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000980 }
981 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000982 }
Evan Chengec693f72005-12-08 02:01:35 +0000983
Dan Gohman83688052007-10-22 20:22:24 +0000984 case ISD::SMUL_LOHI:
985 case ISD::UMUL_LOHI:
986 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000987 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000988 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000989 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000990 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000991 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000992 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000993 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000994 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000995 if (ConstantSDNode
996 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000997 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
998 CN->getZExtValue() == 9) {
999 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001000
Gabor Greifba36cb52008-08-28 21:40:38 +00001001 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001002 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001003
1004 // Okay, we know that we have a scale by now. However, if the scaled
1005 // value is an add of something and a constant, we can fold the
1006 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001007 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1008 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1009 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001010 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001011 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +00001012 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001013 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001014 if (!is64Bit ||
1015 X86::isOffsetSuitableForCodeModel(Disp, M,
1016 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +00001017 AM.Disp = Disp;
1018 else
Gabor Greifba36cb52008-08-28 21:40:38 +00001019 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001020 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001021 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001022 }
1023
1024 AM.IndexReg = AM.Base.Reg = Reg;
1025 return false;
1026 }
Chris Lattner62412262007-02-04 20:18:17 +00001027 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001028 break;
1029
Dan Gohman3cd90a12009-05-11 18:02:53 +00001030 case ISD::SUB: {
1031 // Given A-B, if A can be completely folded into the address and
1032 // the index field with the index field unused, use -B as the index.
1033 // This is a win if a has multiple parts that can be folded into
1034 // the address. Also, this saves a mov if the base register has
1035 // other uses, since it avoids a two-address sub instruction, however
1036 // it costs an additional mov if the index register has other uses.
1037
1038 // Test if the LHS of the sub can be folded.
1039 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001040 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001041 AM = Backup;
1042 break;
1043 }
1044 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001045 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001046 AM = Backup;
1047 break;
1048 }
1049 int Cost = 0;
1050 SDValue RHS = N.getNode()->getOperand(1);
1051 // If the RHS involves a register with multiple uses, this
1052 // transformation incurs an extra mov, due to the neg instruction
1053 // clobbering its operand.
1054 if (!RHS.getNode()->hasOneUse() ||
1055 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1056 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1057 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1058 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001059 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001060 ++Cost;
1061 // If the base is a register with multiple uses, this
1062 // transformation may save a mov.
1063 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1064 AM.Base.Reg.getNode() &&
1065 !AM.Base.Reg.getNode()->hasOneUse()) ||
1066 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1067 --Cost;
1068 // If the folded LHS was interesting, this transformation saves
1069 // address arithmetic.
1070 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1071 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1072 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1073 --Cost;
1074 // If it doesn't look like it may be an overall win, don't do it.
1075 if (Cost >= 0) {
1076 AM = Backup;
1077 break;
1078 }
1079
1080 // Ok, the transformation is legal and appears profitable. Go for it.
1081 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1082 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1083 AM.IndexReg = Neg;
1084 AM.Scale = 1;
1085
1086 // Insert the new nodes into the topological ordering.
1087 if (Zero.getNode()->getNodeId() == -1 ||
1088 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1089 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1090 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1091 }
1092 if (Neg.getNode()->getNodeId() == -1 ||
1093 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1094 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1095 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1096 }
1097 return false;
1098 }
1099
Evan Cheng8e278262009-01-17 07:09:27 +00001100 case ISD::ADD: {
1101 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001102 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1103 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001104 return false;
1105 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001106 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1107 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001108 return false;
1109 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001110
1111 // If we couldn't fold both operands into the address at the same time,
1112 // see if we can just put each operand into a register and fold at least
1113 // the add.
1114 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1115 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001116 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001117 AM.Base.Reg = N.getNode()->getOperand(0);
1118 AM.IndexReg = N.getNode()->getOperand(1);
1119 AM.Scale = 1;
1120 return false;
1121 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001122 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001123 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001124
Chris Lattner62412262007-02-04 20:18:17 +00001125 case ISD::OR:
1126 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001127 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1128 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001129 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001130 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001131 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001132 // Address could not have picked a GV address for the displacement.
1133 AM.GV == NULL &&
1134 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001135 (!is64Bit ||
1136 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1137 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001138 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001139 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001140 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001141 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001142 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001143 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001144 }
1145 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001146
1147 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001148 // Perform some heroic transforms on an and of a constant-count shift
1149 // with a constant to enable use of the scaled offset field.
1150
Dan Gohman475871a2008-07-27 21:46:04 +00001151 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001152 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001153
Evan Cheng1314b002007-12-13 00:43:27 +00001154 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001155 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001156
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001157 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001158 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1159 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1160 if (!C1 || !C2) break;
1161
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001162 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1163 // allows us to convert the shift and and into an h-register extract and
1164 // a scaled index.
1165 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1166 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001167 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001168 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001169 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001170 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1171 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1172 X, Eight);
1173 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1174 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001175 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001176 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1177 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001178
1179 // Insert the new nodes into the topological ordering.
1180 if (Eight.getNode()->getNodeId() == -1 ||
1181 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1182 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1183 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1184 }
1185 if (Mask.getNode()->getNodeId() == -1 ||
1186 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1187 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1188 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1189 }
1190 if (Srl.getNode()->getNodeId() == -1 ||
1191 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1192 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1193 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1194 }
1195 if (And.getNode()->getNodeId() == -1 ||
1196 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1197 CurDAG->RepositionNode(N.getNode(), And.getNode());
1198 And.getNode()->setNodeId(N.getNode()->getNodeId());
1199 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001200 if (ShlCount.getNode()->getNodeId() == -1 ||
1201 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1202 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1203 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1204 }
1205 if (Shl.getNode()->getNodeId() == -1 ||
1206 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1207 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1208 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1209 }
1210 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001211 AM.IndexReg = And;
1212 AM.Scale = (1 << ScaleLog);
1213 return false;
1214 }
1215 }
1216
1217 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1218 // allows us to fold the shift into this addressing mode.
1219 if (Shift.getOpcode() != ISD::SHL) break;
1220
Evan Cheng1314b002007-12-13 00:43:27 +00001221 // Not likely to be profitable if either the AND or SHIFT node has more
1222 // than one use (unless all uses are for address computation). Besides,
1223 // isel mechanism requires their node ids to be reused.
1224 if (!N.hasOneUse() || !Shift.hasOneUse())
1225 break;
1226
1227 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001228 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001229 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1230 break;
1231
1232 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001233 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001234 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001235 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1236 NewANDMask);
1237 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001238 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001239
1240 // Insert the new nodes into the topological ordering.
1241 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1242 CurDAG->RepositionNode(X.getNode(), C1);
1243 C1->setNodeId(X.getNode()->getNodeId());
1244 }
1245 if (NewANDMask.getNode()->getNodeId() == -1 ||
1246 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1247 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1248 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1249 }
1250 if (NewAND.getNode()->getNodeId() == -1 ||
1251 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1252 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1253 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1254 }
1255 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1256 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1257 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1258 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1259 }
1260
Dan Gohman7b8e9642008-10-13 20:52:04 +00001261 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001262
1263 AM.Scale = 1 << ShiftCst;
1264 AM.IndexReg = NewAND;
1265 return false;
1266 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001267 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001268
Rafael Espindola523249f2009-03-31 16:16:57 +00001269 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001270}
1271
1272/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1273/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001274bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001275 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001276 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001277 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001278 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001279 AM.IndexReg = N;
1280 AM.Scale = 1;
1281 return false;
1282 }
1283
1284 // Otherwise, we cannot select it.
1285 return true;
1286 }
1287
1288 // Default, generate it as a register.
1289 AM.BaseType = X86ISelAddressMode::RegBase;
1290 AM.Base.Reg = N;
1291 return false;
1292}
1293
Evan Chengec693f72005-12-08 02:01:35 +00001294/// SelectAddr - returns true if it is able pattern match an addressing mode.
1295/// It returns the operands which make up the maximal addressing mode it can
1296/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001297bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001298 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001299 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001300 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001301 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001302 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001303
Owen Andersone50ed302009-08-10 22:56:29 +00001304 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001305 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001306 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001307 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001308 }
Evan Cheng8700e142006-01-11 06:09:51 +00001309
Gabor Greifba36cb52008-08-28 21:40:38 +00001310 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001311 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001312
Rafael Espindola094fad32009-04-08 21:14:34 +00001313 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001314 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001315}
1316
Chris Lattner3a7cd952006-10-07 21:55:32 +00001317/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1318/// match a load whose top elements are either undef or zeros. The load flavor
1319/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner92d3ada2010-02-16 22:35:06 +00001320bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001321 SDValue N, SDValue &Base,
1322 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001323 SDValue &Disp, SDValue &Segment,
1324 SDValue &InChain,
Dan Gohman475871a2008-07-27 21:46:04 +00001325 SDValue &OutChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001326 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner4fe4f252006-10-11 22:09:58 +00001327 InChain = N.getOperand(0).getValue(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001328 if (ISD::isNON_EXTLoad(InChain.getNode()) &&
Evan Cheng07e4b002006-10-16 06:34:55 +00001329 InChain.getValue(0).hasOneUse() &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001330 IsProfitableToFold(N.getOperand(0), InChain.getNode(), Root) &&
1331 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng82a91642006-10-11 21:06:01 +00001332 LoadSDNode *LD = cast<LoadSDNode>(InChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001333 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001334 return false;
Evan Cheng82a91642006-10-11 21:06:01 +00001335 OutChain = LD->getChain();
Chris Lattner3a7cd952006-10-07 21:55:32 +00001336 return true;
1337 }
1338 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001339
1340 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001341 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001342 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001343 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001344 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001345 N.getOperand(0).getNode()->hasOneUse() &&
1346 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001347 N.getOperand(0).getOperand(0).hasOneUse() &&
1348 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1349 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001350 // Okay, this is a zero extending load. Fold it.
1351 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001352 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001353 return false;
1354 OutChain = LD->getChain();
Dan Gohman475871a2008-07-27 21:46:04 +00001355 InChain = SDValue(LD, 1);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001356 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001357 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001358 return false;
1359}
1360
1361
Evan Cheng51a9ed92006-02-25 10:09:08 +00001362/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1363/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001364bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001365 SDValue &Base, SDValue &Scale,
1366 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001367 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001368
1369 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1370 // segments.
1371 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001372 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001373 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001374 if (MatchAddress(N, AM))
1375 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001376 assert (T == AM.Segment);
1377 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001378
Owen Andersone50ed302009-08-10 22:56:29 +00001379 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001380 unsigned Complexity = 0;
1381 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001382 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001383 Complexity = 1;
1384 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001385 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001386 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1387 Complexity = 4;
1388
Gabor Greifba36cb52008-08-28 21:40:38 +00001389 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001390 Complexity++;
1391 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001392 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001393
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001394 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1395 // a simple shift.
1396 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001397 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001398
1399 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1400 // to a LEA. This is determined with some expermentation but is by no means
1401 // optimal (especially for code size consideration). LEA is nice because of
1402 // its three-address nature. Tweak the cost function again when we can run
1403 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001404 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001405 // For X86-64, we should always use lea to materialize RIP relative
1406 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001407 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001408 Complexity = 4;
1409 else
1410 Complexity += 2;
1411 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001412
Gabor Greifba36cb52008-08-28 21:40:38 +00001413 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001414 Complexity++;
1415
Chris Lattner25142782009-07-11 22:50:33 +00001416 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001417 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001418 return false;
1419
1420 SDValue Segment;
1421 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1422 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001423}
1424
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001425/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001426bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001427 SDValue &Scale, SDValue &Index,
1428 SDValue &Disp) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001429 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1430 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1431
1432 X86ISelAddressMode AM;
1433 AM.GV = GA->getGlobal();
1434 AM.Disp += GA->getOffset();
1435 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001436 AM.SymbolFlags = GA->getTargetFlags();
1437
Owen Anderson825b72b2009-08-11 20:47:22 +00001438 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001439 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001440 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001441 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001442 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001443 }
1444
1445 SDValue Segment;
1446 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1447 return true;
1448}
1449
1450
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001451bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001452 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001453 SDValue &Index, SDValue &Disp,
1454 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001455 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng014bf212010-02-15 19:41:07 +00001456 IsProfitableToFold(N, P, P) &&
1457 IsLegalToFold(N, P, P))
Rafael Espindola094fad32009-04-08 21:14:34 +00001458 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001459 return false;
1460}
1461
Dan Gohman8b746962008-09-23 18:22:58 +00001462/// getGlobalBaseReg - Return an SDNode that returns the value of
1463/// the global base register. Output instructions required to
1464/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001465///
Evan Cheng9ade2182006-08-26 05:34:46 +00001466SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001467 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001468 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001469}
1470
Evan Chengb245d922006-05-20 01:36:52 +00001471static SDNode *FindCallStartFromCall(SDNode *Node) {
1472 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001473 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001474 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001475 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001476}
1477
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001478SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1479 SDValue Chain = Node->getOperand(0);
1480 SDValue In1 = Node->getOperand(1);
1481 SDValue In2L = Node->getOperand(2);
1482 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001483 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001484 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001485 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001486 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1487 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1488 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1489 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1490 MVT::i32, MVT::i32, MVT::Other, Ops,
1491 array_lengthof(Ops));
1492 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1493 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001494}
Christopher Lambc59e5212007-08-10 21:48:46 +00001495
Owen Andersone50ed302009-08-10 22:56:29 +00001496SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001497 if (Node->hasAnyUseOfValue(0))
1498 return 0;
1499
1500 // Optimize common patterns for __sync_add_and_fetch and
1501 // __sync_sub_and_fetch where the result is not used. This allows us
1502 // to use "lock" version of add, sub, inc, dec instructions.
1503 // FIXME: Do not use special instructions but instead add the "lock"
1504 // prefix to the target node somehow. The extra information will then be
1505 // transferred to machine instruction and it denotes the prefix.
1506 SDValue Chain = Node->getOperand(0);
1507 SDValue Ptr = Node->getOperand(1);
1508 SDValue Val = Node->getOperand(2);
1509 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001510 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001511 return 0;
1512
1513 bool isInc = false, isDec = false, isSub = false, isCN = false;
1514 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1515 if (CN) {
1516 isCN = true;
1517 int64_t CNVal = CN->getSExtValue();
1518 if (CNVal == 1)
1519 isInc = true;
1520 else if (CNVal == -1)
1521 isDec = true;
1522 else if (CNVal >= 0)
1523 Val = CurDAG->getTargetConstant(CNVal, NVT);
1524 else {
1525 isSub = true;
1526 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1527 }
1528 } else if (Val.hasOneUse() &&
1529 Val.getOpcode() == ISD::SUB &&
1530 X86::isZeroNode(Val.getOperand(0))) {
1531 isSub = true;
1532 Val = Val.getOperand(1);
1533 }
1534
1535 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001536 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001537 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001538 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001539 if (isInc)
1540 Opc = X86::LOCK_INC8m;
1541 else if (isDec)
1542 Opc = X86::LOCK_DEC8m;
1543 else if (isSub) {
1544 if (isCN)
1545 Opc = X86::LOCK_SUB8mi;
1546 else
1547 Opc = X86::LOCK_SUB8mr;
1548 } else {
1549 if (isCN)
1550 Opc = X86::LOCK_ADD8mi;
1551 else
1552 Opc = X86::LOCK_ADD8mr;
1553 }
1554 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001555 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001556 if (isInc)
1557 Opc = X86::LOCK_INC16m;
1558 else if (isDec)
1559 Opc = X86::LOCK_DEC16m;
1560 else if (isSub) {
1561 if (isCN) {
1562 if (Predicate_i16immSExt8(Val.getNode()))
1563 Opc = X86::LOCK_SUB16mi8;
1564 else
1565 Opc = X86::LOCK_SUB16mi;
1566 } else
1567 Opc = X86::LOCK_SUB16mr;
1568 } else {
1569 if (isCN) {
1570 if (Predicate_i16immSExt8(Val.getNode()))
1571 Opc = X86::LOCK_ADD16mi8;
1572 else
1573 Opc = X86::LOCK_ADD16mi;
1574 } else
1575 Opc = X86::LOCK_ADD16mr;
1576 }
1577 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001578 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001579 if (isInc)
1580 Opc = X86::LOCK_INC32m;
1581 else if (isDec)
1582 Opc = X86::LOCK_DEC32m;
1583 else if (isSub) {
1584 if (isCN) {
1585 if (Predicate_i32immSExt8(Val.getNode()))
1586 Opc = X86::LOCK_SUB32mi8;
1587 else
1588 Opc = X86::LOCK_SUB32mi;
1589 } else
1590 Opc = X86::LOCK_SUB32mr;
1591 } else {
1592 if (isCN) {
1593 if (Predicate_i32immSExt8(Val.getNode()))
1594 Opc = X86::LOCK_ADD32mi8;
1595 else
1596 Opc = X86::LOCK_ADD32mi;
1597 } else
1598 Opc = X86::LOCK_ADD32mr;
1599 }
1600 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001601 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001602 if (isInc)
1603 Opc = X86::LOCK_INC64m;
1604 else if (isDec)
1605 Opc = X86::LOCK_DEC64m;
1606 else if (isSub) {
1607 Opc = X86::LOCK_SUB64mr;
1608 if (isCN) {
1609 if (Predicate_i64immSExt8(Val.getNode()))
1610 Opc = X86::LOCK_SUB64mi8;
1611 else if (Predicate_i64immSExt32(Val.getNode()))
1612 Opc = X86::LOCK_SUB64mi32;
1613 }
1614 } else {
1615 Opc = X86::LOCK_ADD64mr;
1616 if (isCN) {
1617 if (Predicate_i64immSExt8(Val.getNode()))
1618 Opc = X86::LOCK_ADD64mi8;
1619 else if (Predicate_i64immSExt32(Val.getNode()))
1620 Opc = X86::LOCK_ADD64mi32;
1621 }
1622 }
1623 break;
1624 }
1625
1626 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001627 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001628 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001629 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1630 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001631 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001632 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1633 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1634 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001635 SDValue RetVals[] = { Undef, Ret };
1636 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1637 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001638 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1639 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1640 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001641 SDValue RetVals[] = { Undef, Ret };
1642 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1643 }
1644}
1645
Dan Gohman11596ed2009-10-09 20:35:19 +00001646/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1647/// any uses which require the SF or OF bits to be accurate.
1648static bool HasNoSignedComparisonUses(SDNode *N) {
1649 // Examine each user of the node.
1650 for (SDNode::use_iterator UI = N->use_begin(),
1651 UE = N->use_end(); UI != UE; ++UI) {
1652 // Only examine CopyToReg uses.
1653 if (UI->getOpcode() != ISD::CopyToReg)
1654 return false;
1655 // Only examine CopyToReg uses that copy to EFLAGS.
1656 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1657 X86::EFLAGS)
1658 return false;
1659 // Examine each user of the CopyToReg use.
1660 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1661 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1662 // Only examine the Flag result.
1663 if (FlagUI.getUse().getResNo() != 1) continue;
1664 // Anything unusual: assume conservatively.
1665 if (!FlagUI->isMachineOpcode()) return false;
1666 // Examine the opcode of the user.
1667 switch (FlagUI->getMachineOpcode()) {
1668 // These comparisons don't treat the most significant bit specially.
1669 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1670 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1671 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1672 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001673 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1674 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001675 case X86::CMOVA16rr: case X86::CMOVA16rm:
1676 case X86::CMOVA32rr: case X86::CMOVA32rm:
1677 case X86::CMOVA64rr: case X86::CMOVA64rm:
1678 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1679 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1680 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1681 case X86::CMOVB16rr: case X86::CMOVB16rm:
1682 case X86::CMOVB32rr: case X86::CMOVB32rm:
1683 case X86::CMOVB64rr: case X86::CMOVB64rm:
1684 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1685 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1686 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1687 case X86::CMOVE16rr: case X86::CMOVE16rm:
1688 case X86::CMOVE32rr: case X86::CMOVE32rm:
1689 case X86::CMOVE64rr: case X86::CMOVE64rm:
1690 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1691 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1692 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1693 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1694 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1695 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1696 case X86::CMOVP16rr: case X86::CMOVP16rm:
1697 case X86::CMOVP32rr: case X86::CMOVP32rm:
1698 case X86::CMOVP64rr: case X86::CMOVP64rm:
1699 continue;
1700 // Anything else: assume conservatively.
1701 default: return false;
1702 }
1703 }
1704 }
1705 return true;
1706}
1707
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001708SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001709 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001710 unsigned Opc, MOpc;
1711 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001712 DebugLoc dl = Node->getDebugLoc();
1713
Evan Chengf597dc72006-02-10 22:24:32 +00001714#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001715 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001716 dbgs() << std::string(Indent, ' ') << "Selecting: ";
Bill Wendling12321672009-08-07 21:33:25 +00001717 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001718 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001719 });
Evan Cheng23addc02006-02-10 22:46:26 +00001720 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001721#endif
1722
Dan Gohmane8be6c62008-07-17 19:10:17 +00001723 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001724#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001725 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001726 dbgs() << std::string(Indent-2, ' ') << "== ";
Bill Wendling12321672009-08-07 21:33:25 +00001727 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001728 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001729 });
Evan Cheng23addc02006-02-10 22:46:26 +00001730 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001731#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001732 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001733 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001734
Evan Cheng0114e942006-01-06 20:36:21 +00001735 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001736 default: break;
1737 case X86ISD::GlobalBaseReg:
1738 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001739
Dan Gohman72677342009-08-02 16:10:52 +00001740 case X86ISD::ATOMOR64_DAG:
1741 return SelectAtomic64(Node, X86::ATOMOR6432);
1742 case X86ISD::ATOMXOR64_DAG:
1743 return SelectAtomic64(Node, X86::ATOMXOR6432);
1744 case X86ISD::ATOMADD64_DAG:
1745 return SelectAtomic64(Node, X86::ATOMADD6432);
1746 case X86ISD::ATOMSUB64_DAG:
1747 return SelectAtomic64(Node, X86::ATOMSUB6432);
1748 case X86ISD::ATOMNAND64_DAG:
1749 return SelectAtomic64(Node, X86::ATOMNAND6432);
1750 case X86ISD::ATOMAND64_DAG:
1751 return SelectAtomic64(Node, X86::ATOMAND6432);
1752 case X86ISD::ATOMSWAP64_DAG:
1753 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001754
Dan Gohman72677342009-08-02 16:10:52 +00001755 case ISD::ATOMIC_LOAD_ADD: {
1756 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1757 if (RetVal)
1758 return RetVal;
1759 break;
1760 }
1761
1762 case ISD::SMUL_LOHI:
1763 case ISD::UMUL_LOHI: {
1764 SDValue N0 = Node->getOperand(0);
1765 SDValue N1 = Node->getOperand(1);
1766
1767 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001768 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001769 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001770 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001771 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1772 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1773 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1774 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001775 }
Bill Wendling12321672009-08-07 21:33:25 +00001776 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001777 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001778 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001779 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1780 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1781 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1782 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001783 }
Bill Wendling12321672009-08-07 21:33:25 +00001784 }
Dan Gohman72677342009-08-02 16:10:52 +00001785
1786 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001787 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001788 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001789 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1790 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1791 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1792 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001793 }
1794
1795 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001796 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001797 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001798 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001799 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001800 if (foldedLoad)
1801 std::swap(N0, N1);
1802 }
1803
1804 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1805 N0, SDValue()).getValue(1);
1806
1807 if (foldedLoad) {
1808 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1809 InFlag };
1810 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001811 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1812 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001813 InFlag = SDValue(CNode, 1);
1814 // Update the chain.
1815 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1816 } else {
1817 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001818 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001819 }
1820
1821 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001822 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001823 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1824 LoReg, NVT, InFlag);
1825 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001826 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001827#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001828 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001829 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001830 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001831 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001832 });
Dan Gohman72677342009-08-02 16:10:52 +00001833#endif
1834 }
1835 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001836 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001837 SDValue Result;
1838 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1839 // Prevent use of AH in a REX instruction by referencing AX instead.
1840 // Shift it down 8 bits.
1841 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001842 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001843 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001844 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1845 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001846 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001847 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001848 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1849 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001850 } else {
1851 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1852 HiReg, NVT, InFlag);
1853 InFlag = Result.getValue(2);
1854 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001855 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001856#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001857 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001858 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001859 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001860 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001861 });
Dan Gohman72677342009-08-02 16:10:52 +00001862#endif
1863 }
1864
1865#ifndef NDEBUG
1866 Indent -= 2;
1867#endif
1868
1869 return NULL;
1870 }
1871
1872 case ISD::SDIVREM:
1873 case ISD::UDIVREM: {
1874 SDValue N0 = Node->getOperand(0);
1875 SDValue N1 = Node->getOperand(1);
1876
1877 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001878 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001879 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001880 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001881 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1882 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1883 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1884 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001885 }
Bill Wendling12321672009-08-07 21:33:25 +00001886 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001887 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001888 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001889 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1890 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1891 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1892 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001893 }
Bill Wendling12321672009-08-07 21:33:25 +00001894 }
Dan Gohman72677342009-08-02 16:10:52 +00001895
Chris Lattner9e323832009-12-23 01:45:04 +00001896 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001897 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001898 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001899 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001900 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001901 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001902 ClrOpcode = 0;
1903 SExtOpcode = X86::CBW;
1904 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001905 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001906 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001907 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001908 SExtOpcode = X86::CWD;
1909 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001910 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001911 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001912 ClrOpcode = X86::MOV32r0;
1913 SExtOpcode = X86::CDQ;
1914 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001915 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001916 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001917 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001918 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001919 break;
1920 }
1921
Dan Gohman72677342009-08-02 16:10:52 +00001922 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001923 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001924 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001925
Dan Gohman72677342009-08-02 16:10:52 +00001926 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001927 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001928 // Special case for div8, just use a move with zero extension to AX to
1929 // clear the upper 8 bits (AH).
1930 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001931 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001932 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1933 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001934 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1935 MVT::Other, Ops,
1936 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001937 Chain = Move.getValue(1);
1938 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001939 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001940 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001941 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001942 Chain = CurDAG->getEntryNode();
1943 }
1944 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1945 InFlag = Chain.getValue(1);
1946 } else {
1947 InFlag =
1948 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1949 LoReg, N0, SDValue()).getValue(1);
1950 if (isSigned && !signBitIsZero) {
1951 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001952 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001953 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001954 } else {
1955 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001956 SDValue ClrNode =
1957 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001958 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001959 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001960 }
Evan Cheng948f3432006-01-06 23:19:29 +00001961 }
Dan Gohman525178c2007-10-08 18:33:35 +00001962
Dan Gohman72677342009-08-02 16:10:52 +00001963 if (foldedLoad) {
1964 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1965 InFlag };
1966 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001967 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1968 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001969 InFlag = SDValue(CNode, 1);
1970 // Update the chain.
1971 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1972 } else {
1973 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001974 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001975 }
Evan Cheng948f3432006-01-06 23:19:29 +00001976
Dan Gohman72677342009-08-02 16:10:52 +00001977 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001978 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001979 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1980 LoReg, NVT, InFlag);
1981 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001982 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001983#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001984 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001985 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001986 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001987 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001988 });
Dan Gohman72677342009-08-02 16:10:52 +00001989#endif
1990 }
1991 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001992 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001993 SDValue Result;
1994 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1995 // Prevent use of AH in a REX instruction by referencing AX instead.
1996 // Shift it down 8 bits.
1997 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001998 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001999 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00002000 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00002001 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00002002 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00002003 0);
2004 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00002005 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2006 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00002007 } else {
2008 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2009 HiReg, NVT, InFlag);
2010 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00002011 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002012 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohmana37c9f72007-09-25 18:23:27 +00002013#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002014 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00002015 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00002016 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00002017 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002018 });
Dan Gohmana37c9f72007-09-25 18:23:27 +00002019#endif
Dan Gohman72677342009-08-02 16:10:52 +00002020 }
Evan Chengf597dc72006-02-10 22:24:32 +00002021
2022#ifndef NDEBUG
Dan Gohman72677342009-08-02 16:10:52 +00002023 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002024#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002025
Dan Gohman72677342009-08-02 16:10:52 +00002026 return NULL;
2027 }
2028
Dan Gohman6a402dc2009-08-19 18:16:17 +00002029 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002030 SDValue N0 = Node->getOperand(0);
2031 SDValue N1 = Node->getOperand(1);
2032
2033 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2034 // use a smaller encoding.
2035 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2036 N0.getValueType() != MVT::i8 &&
2037 X86::isZeroNode(N1)) {
2038 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2039 if (!C) break;
2040
2041 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002042 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2043 (!(C->getZExtValue() & 0x80) ||
2044 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002045 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2046 SDValue Reg = N0.getNode()->getOperand(0);
2047
2048 // On x86-32, only the ABCD registers have 8-bit subregisters.
2049 if (!Subtarget->is64Bit()) {
2050 TargetRegisterClass *TRC = 0;
2051 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2052 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2053 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2054 default: llvm_unreachable("Unsupported TEST operand type!");
2055 }
2056 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002057 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2058 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002059 }
2060
2061 // Extract the l-register.
2062 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2063 MVT::i8, Reg);
2064
2065 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002066 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002067 }
2068
2069 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002070 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2071 (!(C->getZExtValue() & 0x8000) ||
2072 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002073 // Shift the immediate right by 8 bits.
2074 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2075 MVT::i8);
2076 SDValue Reg = N0.getNode()->getOperand(0);
2077
2078 // Put the value in an ABCD register.
2079 TargetRegisterClass *TRC = 0;
2080 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2081 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2082 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2083 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2084 default: llvm_unreachable("Unsupported TEST operand type!");
2085 }
2086 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002087 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2088 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002089
2090 // Extract the h-register.
2091 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2092 MVT::i8, Reg);
2093
2094 // Emit a testb. No special NOREX tricks are needed since there's
2095 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002096 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2097 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002098 }
2099
2100 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2101 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002102 N0.getValueType() != MVT::i16 &&
2103 (!(C->getZExtValue() & 0x8000) ||
2104 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002105 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2106 SDValue Reg = N0.getNode()->getOperand(0);
2107
2108 // Extract the 16-bit subregister.
2109 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2110 MVT::i16, Reg);
2111
2112 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002113 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002114 }
2115
2116 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2117 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002118 N0.getValueType() == MVT::i64 &&
2119 (!(C->getZExtValue() & 0x80000000) ||
2120 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002121 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2122 SDValue Reg = N0.getNode()->getOperand(0);
2123
2124 // Extract the 32-bit subregister.
2125 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2126 MVT::i32, Reg);
2127
2128 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002129 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002130 }
2131 }
2132 break;
2133 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002134 }
2135
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002136 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002137
Evan Chengf597dc72006-02-10 22:24:32 +00002138#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002139 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00002140 dbgs() << std::string(Indent-2, ' ') << "=> ";
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002141 if (ResNode == NULL || ResNode == Node)
2142 Node->dump(CurDAG);
Bill Wendling12321672009-08-07 21:33:25 +00002143 else
2144 ResNode->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00002145 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002146 });
Evan Cheng23addc02006-02-10 22:46:26 +00002147 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002148#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002149
2150 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002151}
2152
Chris Lattnerc0bad572006-06-08 18:03:49 +00002153bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002154SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002155 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002156 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002157 switch (ConstraintCode) {
2158 case 'o': // offsetable ??
2159 case 'v': // not offsetable ??
2160 default: return true;
2161 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002162 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002163 return true;
2164 break;
2165 }
2166
Evan Cheng04699902006-08-26 01:05:16 +00002167 OutOps.push_back(Op0);
2168 OutOps.push_back(Op1);
2169 OutOps.push_back(Op2);
2170 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002171 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002172 return false;
2173}
2174
Chris Lattnerc961eea2005-11-16 01:54:32 +00002175/// createX86ISelDag - This pass converts a legalized DAG into a
2176/// X86-specific DAG, ready for instruction scheduling.
2177///
Bill Wendling98a366d2009-04-29 23:29:43 +00002178FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2179 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002180 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002181}