blob: 91e04838c90f27e550e07db220bf1065b720784b [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 Cheng884c70c2008-11-27 00:49:46 +0000186 virtual
187 bool IsLegalAndProfitableToFold(SDNode *N, SDNode *U, SDNode *Root) const;
Evan Chenga8df1b42006-07-27 16:44:36 +0000188
Chris Lattnerc961eea2005-11-16 01:54:32 +0000189// Include the pieces autogenerated from the target description.
190#include "X86GenDAGISel.inc"
191
192 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000193 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000194 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000195 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000196
Rafael Espindola094fad32009-04-08 21:14:34 +0000197 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
198 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000199 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000200 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
201 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
202 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000203 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000204 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000205 SDValue &Scale, SDValue &Index, SDValue &Disp,
206 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000207 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000208 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000209 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000210 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000211 bool SelectScalarSSELoad(SDNode *Op, SDValue Pred,
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue N, SDValue &Base, SDValue &Scale,
213 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000214 SDValue &Segment,
Dan Gohman475871a2008-07-27 21:46:04 +0000215 SDValue &InChain, SDValue &OutChain);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000216 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000217 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000218 SDValue &Index, SDValue &Disp,
219 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000220 void PreprocessForRMW();
221 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000222
Chris Lattnerc0bad572006-06-08 18:03:49 +0000223 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
224 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000225 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000226 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000227 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000228
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000229 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
230
Dan Gohman475871a2008-07-27 21:46:04 +0000231 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
232 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000233 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000234 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000235 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
236 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000237 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000238 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000239 // These are 32-bit even in 64-bit mode since RIP relative offset
240 // is 32-bit.
241 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000242 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000243 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000244 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000245 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000246 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000248 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000251 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000252 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
253 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000256
257 if (AM.Segment.getNode())
258 Segment = AM.Segment;
259 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000261 }
262
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000263 /// getI8Imm - Return a target constant with the specified value, of type
264 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000265 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000267 }
268
Chris Lattnerc961eea2005-11-16 01:54:32 +0000269 /// getI16Imm - Return a target constant with the specified value, of type
270 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000271 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000273 }
274
275 /// getI32Imm - Return a target constant with the specified value, of type
276 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000277 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000278 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000279 }
Evan Chengf597dc72006-02-10 22:24:32 +0000280
Dan Gohman8b746962008-09-23 18:22:58 +0000281 /// getGlobalBaseReg - Return an SDNode that returns the value of
282 /// the global base register. Output instructions required to
283 /// initialize the global base register, if necessary.
284 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000285 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000286
Dan Gohmanc5534622009-06-03 20:20:00 +0000287 /// getTargetMachine - Return a reference to the TargetMachine, casted
288 /// to the target-specific type.
289 const X86TargetMachine &getTargetMachine() {
290 return static_cast<const X86TargetMachine &>(TM);
291 }
292
293 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
294 /// to the target-specific type.
295 const X86InstrInfo *getInstrInfo() {
296 return getTargetMachine().getInstrInfo();
297 }
298
Evan Cheng23addc02006-02-10 22:46:26 +0000299#ifndef NDEBUG
300 unsigned Indent;
301#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000302 };
303}
304
Evan Chengf4b4c412006-08-08 00:31:00 +0000305
Evan Cheng884c70c2008-11-27 00:49:46 +0000306bool X86DAGToDAGISel::IsLegalAndProfitableToFold(SDNode *N, SDNode *U,
307 SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000308 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000309
Evan Cheng884c70c2008-11-27 00:49:46 +0000310 if (U == Root)
311 switch (U->getOpcode()) {
312 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000313 case X86ISD::ADD:
314 case X86ISD::SUB:
315 case X86ISD::AND:
316 case X86ISD::XOR:
317 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000318 case ISD::ADD:
319 case ISD::ADDC:
320 case ISD::ADDE:
321 case ISD::AND:
322 case ISD::OR:
323 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000324 SDValue Op1 = U->getOperand(1);
325
Evan Cheng884c70c2008-11-27 00:49:46 +0000326 // If the other operand is a 8-bit immediate we should fold the immediate
327 // instead. This reduces code size.
328 // e.g.
329 // movl 4(%esp), %eax
330 // addl $4, %eax
331 // vs.
332 // movl $4, %eax
333 // addl 4(%esp), %eax
334 // The former is 2 bytes shorter. In case where the increment is 1, then
335 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000336 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000337 if (Imm->getAPIntValue().isSignedIntN(8))
338 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000339
340 // If the other operand is a TLS address, we should fold it instead.
341 // This produces
342 // movl %gs:0, %eax
343 // leal i@NTPOFF(%eax), %eax
344 // instead of
345 // movl $i@NTPOFF, %eax
346 // addl %gs:0, %eax
347 // if the block also has an access to a second TLS address this will save
348 // a load.
349 // FIXME: This is probably also true for non TLS addresses.
350 if (Op1.getOpcode() == X86ISD::Wrapper) {
351 SDValue Val = Op1.getOperand(0);
352 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
353 return false;
354 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000355 }
356 }
357
Anton Korobeynikovc1c6ef82009-05-08 18:51:58 +0000358 // Proceed to 'generic' cycle finder code
359 return SelectionDAGISel::IsLegalAndProfitableToFold(N, U, Root);
Evan Chenga8df1b42006-07-27 16:44:36 +0000360}
361
Evan Cheng70e674e2006-08-28 20:10:17 +0000362/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
363/// and move load below the TokenFactor. Replace store's chain operand with
364/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000365static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000366 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000367 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000368 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
369 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000370 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000371 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000372 Ops.push_back(TF.getOperand(i));
Dan Gohmanaae317a2009-08-06 09:22:57 +0000373 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
374 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
375 Load.getOperand(1),
376 Load.getOperand(2));
377 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohmanf350b272008-08-23 02:25:05 +0000378 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000379}
380
Nate Begeman206a3572009-09-16 03:20:46 +0000381/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
382/// chain produced by the load must only be used by the store's chain operand,
383/// otherwise this may produce a cycle in the DAG.
Evan Chengcd0baf22008-05-23 21:23:16 +0000384///
Dan Gohman475871a2008-07-27 21:46:04 +0000385static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
386 SDValue &Load) {
David Greeneee9c5952010-01-15 23:23:41 +0000387 if (N.getOpcode() == ISD::BIT_CONVERT) {
388 if (!N.hasOneUse())
389 return false;
Evan Chengcd0baf22008-05-23 21:23:16 +0000390 N = N.getOperand(0);
David Greeneee9c5952010-01-15 23:23:41 +0000391 }
Evan Chengcd0baf22008-05-23 21:23:16 +0000392
393 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
394 if (!LD || LD->isVolatile())
395 return false;
396 if (LD->getAddressingMode() != ISD::UNINDEXED)
397 return false;
398
399 ISD::LoadExtType ExtType = LD->getExtensionType();
400 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
401 return false;
402
403 if (N.hasOneUse() &&
Nate Begeman206a3572009-09-16 03:20:46 +0000404 LD->hasNUsesOfValue(1, 1) &&
Evan Chengcd0baf22008-05-23 21:23:16 +0000405 N.getOperand(1) == Address &&
Nate Begeman206a3572009-09-16 03:20:46 +0000406 LD->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000407 Load = N;
408 return true;
409 }
410 return false;
411}
412
Evan Chengab6c3bb2008-08-25 21:27:18 +0000413/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
414/// operand and move load below the call's chain operand.
415static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000416 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000417 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000418 SDValue Chain = CallSeqStart.getOperand(0);
419 if (Chain.getNode() == Load.getNode())
420 Ops.push_back(Load.getOperand(0));
421 else {
422 assert(Chain.getOpcode() == ISD::TokenFactor &&
423 "Unexpected CallSeqStart chain operand");
424 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
425 if (Chain.getOperand(i).getNode() == Load.getNode())
426 Ops.push_back(Load.getOperand(0));
427 else
428 Ops.push_back(Chain.getOperand(i));
429 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000430 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000431 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000432 Ops.clear();
433 Ops.push_back(NewChain);
434 }
435 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
436 Ops.push_back(CallSeqStart.getOperand(i));
437 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000438 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
439 Load.getOperand(1), Load.getOperand(2));
440 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000441 Ops.push_back(SDValue(Load.getNode(), 1));
442 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000443 Ops.push_back(Call.getOperand(i));
444 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
445}
446
447/// isCalleeLoad - Return true if call address is a load and it can be
448/// moved below CALLSEQ_START and the chains leading up to the call.
449/// Return the CALLSEQ_START by reference as a second output.
450static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000451 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000452 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000453 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000454 if (!LD ||
455 LD->isVolatile() ||
456 LD->getAddressingMode() != ISD::UNINDEXED ||
457 LD->getExtensionType() != ISD::NON_EXTLOAD)
458 return false;
459
460 // Now let's find the callseq_start.
461 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
462 if (!Chain.hasOneUse())
463 return false;
464 Chain = Chain.getOperand(0);
465 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000466
467 if (Chain.getOperand(0).getNode() == Callee.getNode())
468 return true;
469 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000470 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
471 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000472 return true;
473 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000474}
475
476
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000477/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000478/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000479/// This allows the instruction selector to pick more read-modify-write
480/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000481///
482/// [Load chain]
483/// ^
484/// |
485/// [Load]
486/// ^ ^
487/// | |
488/// / \-
489/// / |
490/// [TokenFactor] [Op]
491/// ^ ^
492/// | |
493/// \ /
494/// \ /
495/// [Store]
496///
497/// The fact the store's chain operand != load's chain will prevent the
498/// (store (op (load))) instruction from being selected. We can transform it to:
499///
500/// [Load chain]
501/// ^
502/// |
503/// [TokenFactor]
504/// ^
505/// |
506/// [Load]
507/// ^ ^
508/// | |
509/// | \-
510/// | |
511/// | [Op]
512/// | ^
513/// | |
514/// \ /
515/// \ /
516/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000517void X86DAGToDAGISel::PreprocessForRMW() {
518 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
519 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000520 if (I->getOpcode() == X86ISD::CALL) {
521 /// Also try moving call address load from outside callseq_start to just
522 /// before the call to allow it to be folded.
523 ///
524 /// [Load chain]
525 /// ^
526 /// |
527 /// [Load]
528 /// ^ ^
529 /// | |
530 /// / \--
531 /// / |
532 ///[CALLSEQ_START] |
533 /// ^ |
534 /// | |
535 /// [LOAD/C2Reg] |
536 /// | |
537 /// \ /
538 /// \ /
539 /// [CALL]
540 SDValue Chain = I->getOperand(0);
541 SDValue Load = I->getOperand(1);
542 if (!isCalleeLoad(Load, Chain))
543 continue;
544 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
545 ++NumLoadMoved;
546 continue;
547 }
548
Evan Cheng8b2794a2006-10-13 21:14:26 +0000549 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000550 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000551 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000552
Gabor Greifba36cb52008-08-28 21:40:38 +0000553 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000554 continue;
555
Dan Gohman475871a2008-07-27 21:46:04 +0000556 SDValue N1 = I->getOperand(1);
557 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000558 if ((N1.getValueType().isFloatingPoint() &&
559 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000560 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000561 continue;
562
563 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000564 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000565 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000566 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000567 case ISD::ADD:
568 case ISD::MUL:
569 case ISD::AND:
570 case ISD::OR:
571 case ISD::XOR:
572 case ISD::ADDC:
573 case ISD::ADDE:
574 case ISD::VECTOR_SHUFFLE: {
575 SDValue N10 = N1.getOperand(0);
576 SDValue N11 = N1.getOperand(1);
577 RModW = isRMWLoad(N10, Chain, N2, Load);
578 if (!RModW)
579 RModW = isRMWLoad(N11, Chain, N2, Load);
580 break;
581 }
582 case ISD::SUB:
583 case ISD::SHL:
584 case ISD::SRA:
585 case ISD::SRL:
586 case ISD::ROTL:
587 case ISD::ROTR:
588 case ISD::SUBC:
589 case ISD::SUBE:
590 case X86ISD::SHLD:
591 case X86ISD::SHRD: {
592 SDValue N10 = N1.getOperand(0);
593 RModW = isRMWLoad(N10, Chain, N2, Load);
594 break;
595 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000596 }
597
Evan Cheng82a35b32006-08-29 06:44:17 +0000598 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000599 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000600 ++NumLoadMoved;
David Greenecf495bc2010-01-20 20:13:31 +0000601 checkForCycles(I);
Evan Cheng82a35b32006-08-29 06:44:17 +0000602 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000603 }
604}
605
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000606
607/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
608/// nodes that target the FP stack to be store and load to the stack. This is a
609/// gross hack. We would like to simply mark these as being illegal, but when
610/// we do that, legalize produces these when it expands calls, then expands
611/// these in the same legalize pass. We would like dag combine to be able to
612/// hack on these between the call expansion and the node legalization. As such
613/// this pass basically does "really late" legalization of these inline with the
614/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000615void X86DAGToDAGISel::PreprocessForFPConvert() {
616 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
617 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000618 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
619 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
620 continue;
621
622 // If the source and destination are SSE registers, then this is a legal
623 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000624 EVT SrcVT = N->getOperand(0).getValueType();
625 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000626 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
627 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
628 if (SrcIsSSE && DstIsSSE)
629 continue;
630
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000631 if (!SrcIsSSE && !DstIsSSE) {
632 // If this is an FPStack extension, it is a noop.
633 if (N->getOpcode() == ISD::FP_EXTEND)
634 continue;
635 // If this is a value-preserving FPStack truncation, it is a noop.
636 if (N->getConstantOperandVal(1))
637 continue;
638 }
639
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000640 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
641 // FPStack has extload and truncstore. SSE can fold direct loads into other
642 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000643 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000644 if (N->getOpcode() == ISD::FP_ROUND)
645 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
646 else
647 MemVT = SrcIsSSE ? SrcVT : DstVT;
648
Dan Gohmanf350b272008-08-23 02:25:05 +0000649 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000650 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000651
652 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000653 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000654 N->getOperand(0),
655 MemTmp, NULL, 0, MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000656 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Dan Gohmanf350b272008-08-23 02:25:05 +0000657 NULL, 0, MemVT);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000658
659 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
660 // extload we created. This will cause general havok on the dag because
661 // anything below the conversion could be folded into other existing nodes.
662 // To avoid invalidating 'I', back it up to the convert node.
663 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000664 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000665
666 // Now that we did that, the node is dead. Increment the iterator to the
667 // next node to process, then delete N.
668 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000669 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000670 }
671}
672
Chris Lattnerc961eea2005-11-16 01:54:32 +0000673/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
674/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000675void X86DAGToDAGISel::InstructionSelect() {
Dan Gohman7571eb52009-08-01 03:42:59 +0000676 const Function *F = MF->getFunction();
Devang Patele76225a2008-10-06 18:03:39 +0000677 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000678
Bill Wendling98a366d2009-04-29 23:29:43 +0000679 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000680 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000681
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000682 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000683 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000684
Chris Lattnerc961eea2005-11-16 01:54:32 +0000685 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000686#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000687 DEBUG(dbgs() << "===== Instruction selection begins:\n");
Evan Cheng23addc02006-02-10 22:46:26 +0000688 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000689#endif
David Greene8ad4c002008-10-27 21:56:29 +0000690 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000691#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000692 DEBUG(dbgs() << "===== Instruction selection ends:\n");
Evan Chengf597dc72006-02-10 22:24:32 +0000693#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000694
Dan Gohmanf350b272008-08-23 02:25:05 +0000695 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000696}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000697
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000698/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
699/// the main function.
700void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
701 MachineFrameInfo *MFI) {
702 const TargetInstrInfo *TII = TM.getInstrInfo();
703 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000704 BuildMI(BB, DebugLoc::getUnknownLoc(),
705 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000706}
707
708void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
709 // If this is main, emit special code for main.
710 MachineBasicBlock *BB = MF.begin();
711 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
712 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
713}
714
Rafael Espindola094fad32009-04-08 21:14:34 +0000715
716bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
717 X86ISelAddressMode &AM) {
718 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
719 SDValue Segment = N.getOperand(0);
720
721 if (AM.Segment.getNode() == 0) {
722 AM.Segment = Segment;
723 return false;
724 }
725
726 return true;
727}
728
729bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
730 // This optimization is valid because the GNU TLS model defines that
731 // gs:0 (or fs:0 on X86-64) contains its own address.
732 // For more information see http://people.redhat.com/drepper/tls.pdf
733
734 SDValue Address = N.getOperand(1);
735 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
736 !MatchSegmentBaseAddress (Address, AM))
737 return false;
738
739 return true;
740}
741
Chris Lattner18c59872009-06-27 04:16:01 +0000742/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
743/// into an addressing mode. These wrap things that will resolve down into a
744/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000745/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000746bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000747 // If the addressing mode already has a symbol as the displacement, we can
748 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000749 if (AM.hasSymbolicDisplacement())
750 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000751
752 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000753 CodeModel::Model M = TM.getCodeModel();
754
Chris Lattner18c59872009-06-27 04:16:01 +0000755 // Handle X86-64 rip-relative addresses. We check this before checking direct
756 // folding because RIP is preferable to non-RIP accesses.
757 if (Subtarget->is64Bit() &&
758 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
759 // they cannot be folded into immediate fields.
760 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000761 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000762 // Base and index reg must be 0 in order to use %rip as base and lowering
763 // must allow RIP.
764 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000765 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
766 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000767 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000768 AM.GV = G->getGlobal();
769 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000770 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000771 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
772 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000773 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000774 AM.CP = CP->getConstVal();
775 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000776 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000777 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000778 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
779 AM.ES = S->getSymbol();
780 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000781 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000782 AM.JT = J->getIndex();
783 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000784 } else {
785 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000786 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000787 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000788
Chris Lattner18c59872009-06-27 04:16:01 +0000789 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000790 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000791 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000792 }
793
794 // Handle the case when globals fit in our immediate field: This is true for
795 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
796 // mode, this results in a non-RIP-relative computation.
797 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000798 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000799 TM.getRelocationModel() == Reloc::Static)) {
800 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
801 AM.GV = G->getGlobal();
802 AM.Disp += G->getOffset();
803 AM.SymbolFlags = G->getTargetFlags();
804 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
805 AM.CP = CP->getConstVal();
806 AM.Align = CP->getAlignment();
807 AM.Disp += CP->getOffset();
808 AM.SymbolFlags = CP->getTargetFlags();
809 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
810 AM.ES = S->getSymbol();
811 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000812 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000813 AM.JT = J->getIndex();
814 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000815 } else {
816 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000817 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000818 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000819 return false;
820 }
821
822 return true;
823}
824
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000825/// MatchAddress - Add the specified node to the specified addressing mode,
826/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000827/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000828bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
829 if (MatchAddressRecursively(N, AM, 0))
830 return true;
831
832 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
833 // a smaller encoding and avoids a scaled-index.
834 if (AM.Scale == 2 &&
835 AM.BaseType == X86ISelAddressMode::RegBase &&
836 AM.Base.Reg.getNode() == 0) {
837 AM.Base.Reg = AM.IndexReg;
838 AM.Scale = 1;
839 }
840
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000841 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
842 // because it has a smaller encoding.
843 // TODO: Which other code models can use this?
844 if (TM.getCodeModel() == CodeModel::Small &&
845 Subtarget->is64Bit() &&
846 AM.Scale == 1 &&
847 AM.BaseType == X86ISelAddressMode::RegBase &&
848 AM.Base.Reg.getNode() == 0 &&
849 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000850 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000851 AM.hasSymbolicDisplacement())
852 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
853
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000854 return false;
855}
856
857bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
858 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000859 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000860 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000861 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000862 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000863 AM.dump();
864 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000865 // Limit recursion.
866 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000867 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000868
869 CodeModel::Model M = TM.getCodeModel();
870
Chris Lattner18c59872009-06-27 04:16:01 +0000871 // If this is already a %rip relative address, we can only merge immediates
872 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000873 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000874 if (AM.isRIPRelative()) {
875 // FIXME: JumpTable and ExternalSymbol address currently don't like
876 // displacements. It isn't very important, but this should be fixed for
877 // consistency.
878 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000879
Chris Lattner18c59872009-06-27 04:16:01 +0000880 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
881 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000882 if (X86::isOffsetSuitableForCodeModel(Val, M,
883 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000884 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000885 return false;
886 }
887 }
888 return true;
889 }
890
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000891 switch (N.getOpcode()) {
892 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000893 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000894 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000895 if (!is64Bit ||
896 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
897 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000898 AM.Disp += Val;
899 return false;
900 }
901 break;
902 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000903
Rafael Espindola094fad32009-04-08 21:14:34 +0000904 case X86ISD::SegmentBaseAddress:
905 if (!MatchSegmentBaseAddress(N, AM))
906 return false;
907 break;
908
Rafael Espindola49a168d2009-04-12 21:55:03 +0000909 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000910 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000911 if (!MatchWrapper(N, AM))
912 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000913 break;
914
Rafael Espindola094fad32009-04-08 21:14:34 +0000915 case ISD::LOAD:
916 if (!MatchLoad(N, AM))
917 return false;
918 break;
919
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000920 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000921 if (AM.BaseType == X86ISelAddressMode::RegBase
922 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000923 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
924 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
925 return false;
926 }
927 break;
Evan Chengec693f72005-12-08 02:01:35 +0000928
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000929 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000930 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000931 break;
932
Gabor Greif93c53e52008-08-31 15:37:04 +0000933 if (ConstantSDNode
934 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000935 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000936 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
937 // that the base operand remains free for further matching. If
938 // the base doesn't end up getting used, a post-processing step
939 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000940 if (Val == 1 || Val == 2 || Val == 3) {
941 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000942 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000943
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000944 // Okay, we know that we have a scale by now. However, if the scaled
945 // value is an add of something and a constant, we can fold the
946 // constant into the disp field here.
Dan Gohmana10756e2010-01-21 02:09:26 +0000947 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000948 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
949 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000950 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000951 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000952 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000953 if (!is64Bit ||
954 X86::isOffsetSuitableForCodeModel(Disp, M,
955 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000956 AM.Disp = Disp;
957 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000958 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000959 } else {
960 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000961 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000962 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000963 }
964 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000965 }
Evan Chengec693f72005-12-08 02:01:35 +0000966
Dan Gohman83688052007-10-22 20:22:24 +0000967 case ISD::SMUL_LOHI:
968 case ISD::UMUL_LOHI:
969 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000970 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000971 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000972 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000973 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000974 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000975 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000976 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000977 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000978 if (ConstantSDNode
979 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000980 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
981 CN->getZExtValue() == 9) {
982 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000983
Gabor Greifba36cb52008-08-28 21:40:38 +0000984 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000985 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000986
987 // Okay, we know that we have a scale by now. However, if the scaled
988 // value is an add of something and a constant, we can fold the
989 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +0000990 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
991 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
992 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000993 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000994 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000995 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000996 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000997 if (!is64Bit ||
998 X86::isOffsetSuitableForCodeModel(Disp, M,
999 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +00001000 AM.Disp = Disp;
1001 else
Gabor Greifba36cb52008-08-28 21:40:38 +00001002 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001003 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001004 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001005 }
1006
1007 AM.IndexReg = AM.Base.Reg = Reg;
1008 return false;
1009 }
Chris Lattner62412262007-02-04 20:18:17 +00001010 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001011 break;
1012
Dan Gohman3cd90a12009-05-11 18:02:53 +00001013 case ISD::SUB: {
1014 // Given A-B, if A can be completely folded into the address and
1015 // the index field with the index field unused, use -B as the index.
1016 // This is a win if a has multiple parts that can be folded into
1017 // the address. Also, this saves a mov if the base register has
1018 // other uses, since it avoids a two-address sub instruction, however
1019 // it costs an additional mov if the index register has other uses.
1020
1021 // Test if the LHS of the sub can be folded.
1022 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001023 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001024 AM = Backup;
1025 break;
1026 }
1027 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001028 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001029 AM = Backup;
1030 break;
1031 }
1032 int Cost = 0;
1033 SDValue RHS = N.getNode()->getOperand(1);
1034 // If the RHS involves a register with multiple uses, this
1035 // transformation incurs an extra mov, due to the neg instruction
1036 // clobbering its operand.
1037 if (!RHS.getNode()->hasOneUse() ||
1038 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1039 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1040 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1041 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001042 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001043 ++Cost;
1044 // If the base is a register with multiple uses, this
1045 // transformation may save a mov.
1046 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1047 AM.Base.Reg.getNode() &&
1048 !AM.Base.Reg.getNode()->hasOneUse()) ||
1049 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1050 --Cost;
1051 // If the folded LHS was interesting, this transformation saves
1052 // address arithmetic.
1053 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1054 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1055 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1056 --Cost;
1057 // If it doesn't look like it may be an overall win, don't do it.
1058 if (Cost >= 0) {
1059 AM = Backup;
1060 break;
1061 }
1062
1063 // Ok, the transformation is legal and appears profitable. Go for it.
1064 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1065 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1066 AM.IndexReg = Neg;
1067 AM.Scale = 1;
1068
1069 // Insert the new nodes into the topological ordering.
1070 if (Zero.getNode()->getNodeId() == -1 ||
1071 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1072 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1073 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1074 }
1075 if (Neg.getNode()->getNodeId() == -1 ||
1076 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1077 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1078 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1079 }
1080 return false;
1081 }
1082
Evan Cheng8e278262009-01-17 07:09:27 +00001083 case ISD::ADD: {
1084 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001085 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1086 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001087 return false;
1088 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001089 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1090 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001091 return false;
1092 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001093
1094 // If we couldn't fold both operands into the address at the same time,
1095 // see if we can just put each operand into a register and fold at least
1096 // the add.
1097 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1098 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001099 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001100 AM.Base.Reg = N.getNode()->getOperand(0);
1101 AM.IndexReg = N.getNode()->getOperand(1);
1102 AM.Scale = 1;
1103 return false;
1104 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001105 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001106 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001107
Chris Lattner62412262007-02-04 20:18:17 +00001108 case ISD::OR:
1109 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001110 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1111 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001112 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001113 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001114 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001115 // Address could not have picked a GV address for the displacement.
1116 AM.GV == NULL &&
1117 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001118 (!is64Bit ||
1119 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1120 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001121 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001122 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001123 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001124 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001125 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001126 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001127 }
1128 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001129
1130 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001131 // Perform some heroic transforms on an and of a constant-count shift
1132 // with a constant to enable use of the scaled offset field.
1133
Dan Gohman475871a2008-07-27 21:46:04 +00001134 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001135 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001136
Evan Cheng1314b002007-12-13 00:43:27 +00001137 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001138 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001139
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001140 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001141 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1142 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1143 if (!C1 || !C2) break;
1144
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001145 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1146 // allows us to convert the shift and and into an h-register extract and
1147 // a scaled index.
1148 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1149 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001150 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001151 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001152 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001153 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1154 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1155 X, Eight);
1156 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1157 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001158 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001159 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1160 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001161
1162 // Insert the new nodes into the topological ordering.
1163 if (Eight.getNode()->getNodeId() == -1 ||
1164 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1165 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1166 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1167 }
1168 if (Mask.getNode()->getNodeId() == -1 ||
1169 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1170 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1171 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1172 }
1173 if (Srl.getNode()->getNodeId() == -1 ||
1174 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1175 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1176 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1177 }
1178 if (And.getNode()->getNodeId() == -1 ||
1179 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1180 CurDAG->RepositionNode(N.getNode(), And.getNode());
1181 And.getNode()->setNodeId(N.getNode()->getNodeId());
1182 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001183 if (ShlCount.getNode()->getNodeId() == -1 ||
1184 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1185 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1186 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1187 }
1188 if (Shl.getNode()->getNodeId() == -1 ||
1189 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1190 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1191 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1192 }
1193 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001194 AM.IndexReg = And;
1195 AM.Scale = (1 << ScaleLog);
1196 return false;
1197 }
1198 }
1199
1200 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1201 // allows us to fold the shift into this addressing mode.
1202 if (Shift.getOpcode() != ISD::SHL) break;
1203
Evan Cheng1314b002007-12-13 00:43:27 +00001204 // Not likely to be profitable if either the AND or SHIFT node has more
1205 // than one use (unless all uses are for address computation). Besides,
1206 // isel mechanism requires their node ids to be reused.
1207 if (!N.hasOneUse() || !Shift.hasOneUse())
1208 break;
1209
1210 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001211 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001212 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1213 break;
1214
1215 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001216 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001217 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001218 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1219 NewANDMask);
1220 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001221 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001222
1223 // Insert the new nodes into the topological ordering.
1224 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1225 CurDAG->RepositionNode(X.getNode(), C1);
1226 C1->setNodeId(X.getNode()->getNodeId());
1227 }
1228 if (NewANDMask.getNode()->getNodeId() == -1 ||
1229 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1230 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1231 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1232 }
1233 if (NewAND.getNode()->getNodeId() == -1 ||
1234 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1235 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1236 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1237 }
1238 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1239 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1240 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1241 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1242 }
1243
Dan Gohman7b8e9642008-10-13 20:52:04 +00001244 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001245
1246 AM.Scale = 1 << ShiftCst;
1247 AM.IndexReg = NewAND;
1248 return false;
1249 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001250 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001251
Rafael Espindola523249f2009-03-31 16:16:57 +00001252 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001253}
1254
1255/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1256/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001257bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001258 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001259 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001260 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001261 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001262 AM.IndexReg = N;
1263 AM.Scale = 1;
1264 return false;
1265 }
1266
1267 // Otherwise, we cannot select it.
1268 return true;
1269 }
1270
1271 // Default, generate it as a register.
1272 AM.BaseType = X86ISelAddressMode::RegBase;
1273 AM.Base.Reg = N;
1274 return false;
1275}
1276
Evan Chengec693f72005-12-08 02:01:35 +00001277/// SelectAddr - returns true if it is able pattern match an addressing mode.
1278/// It returns the operands which make up the maximal addressing mode it can
1279/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001280bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001281 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001282 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001283 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001284 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001285 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001286
Owen Andersone50ed302009-08-10 22:56:29 +00001287 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001288 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001289 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001290 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001291 }
Evan Cheng8700e142006-01-11 06:09:51 +00001292
Gabor Greifba36cb52008-08-28 21:40:38 +00001293 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001294 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001295
Rafael Espindola094fad32009-04-08 21:14:34 +00001296 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001297 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001298}
1299
Chris Lattner3a7cd952006-10-07 21:55:32 +00001300/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1301/// match a load whose top elements are either undef or zeros. The load flavor
1302/// is derived from the type of N, which is either v4f32 or v2f64.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001303bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Op, SDValue Pred,
Dan Gohman475871a2008-07-27 21:46:04 +00001304 SDValue N, SDValue &Base,
1305 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001306 SDValue &Disp, SDValue &Segment,
1307 SDValue &InChain,
Dan Gohman475871a2008-07-27 21:46:04 +00001308 SDValue &OutChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001309 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattner4fe4f252006-10-11 22:09:58 +00001310 InChain = N.getOperand(0).getValue(1);
Gabor Greifba36cb52008-08-28 21:40:38 +00001311 if (ISD::isNON_EXTLoad(InChain.getNode()) &&
Evan Cheng07e4b002006-10-16 06:34:55 +00001312 InChain.getValue(0).hasOneUse() &&
Evan Chengd6373bc2006-11-10 21:23:04 +00001313 N.hasOneUse() &&
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001314 IsLegalAndProfitableToFold(N.getNode(), Pred.getNode(), Op)) {
Evan Cheng82a91642006-10-11 21:06:01 +00001315 LoadSDNode *LD = cast<LoadSDNode>(InChain);
Rafael Espindola094fad32009-04-08 21:14:34 +00001316 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001317 return false;
Evan Cheng82a91642006-10-11 21:06:01 +00001318 OutChain = LD->getChain();
Chris Lattner3a7cd952006-10-07 21:55:32 +00001319 return true;
1320 }
1321 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001322
1323 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001324 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001325 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001326 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001327 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001328 N.getOperand(0).getNode()->hasOneUse() &&
1329 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Evan Cheng7e2ff772008-05-08 00:57:18 +00001330 N.getOperand(0).getOperand(0).hasOneUse()) {
1331 // Okay, this is a zero extending load. Fold it.
1332 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Rafael Espindola094fad32009-04-08 21:14:34 +00001333 if (!SelectAddr(Op, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001334 return false;
1335 OutChain = LD->getChain();
Dan Gohman475871a2008-07-27 21:46:04 +00001336 InChain = SDValue(LD, 1);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001337 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001338 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001339 return false;
1340}
1341
1342
Evan Cheng51a9ed92006-02-25 10:09:08 +00001343/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1344/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001345bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001346 SDValue &Base, SDValue &Scale,
1347 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001348 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001349
1350 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1351 // segments.
1352 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001353 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001354 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001355 if (MatchAddress(N, AM))
1356 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001357 assert (T == AM.Segment);
1358 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001359
Owen Andersone50ed302009-08-10 22:56:29 +00001360 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001361 unsigned Complexity = 0;
1362 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001363 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001364 Complexity = 1;
1365 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001366 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001367 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1368 Complexity = 4;
1369
Gabor Greifba36cb52008-08-28 21:40:38 +00001370 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001371 Complexity++;
1372 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001373 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001374
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001375 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1376 // a simple shift.
1377 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001378 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001379
1380 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1381 // to a LEA. This is determined with some expermentation but is by no means
1382 // optimal (especially for code size consideration). LEA is nice because of
1383 // its three-address nature. Tweak the cost function again when we can run
1384 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001385 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001386 // For X86-64, we should always use lea to materialize RIP relative
1387 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001388 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001389 Complexity = 4;
1390 else
1391 Complexity += 2;
1392 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001393
Gabor Greifba36cb52008-08-28 21:40:38 +00001394 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001395 Complexity++;
1396
Chris Lattner25142782009-07-11 22:50:33 +00001397 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001398 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001399 return false;
1400
1401 SDValue Segment;
1402 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1403 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001404}
1405
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001406/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001407bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001408 SDValue &Scale, SDValue &Index,
1409 SDValue &Disp) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001410 assert(Op->getOpcode() == X86ISD::TLSADDR);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001411 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1412 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1413
1414 X86ISelAddressMode AM;
1415 AM.GV = GA->getGlobal();
1416 AM.Disp += GA->getOffset();
1417 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001418 AM.SymbolFlags = GA->getTargetFlags();
1419
Owen Anderson825b72b2009-08-11 20:47:22 +00001420 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001421 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001422 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001423 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001424 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001425 }
1426
1427 SDValue Segment;
1428 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1429 return true;
1430}
1431
1432
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001433bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001434 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001435 SDValue &Index, SDValue &Disp,
1436 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001437 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng5e351682006-02-06 06:02:33 +00001438 N.hasOneUse() &&
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001439 IsLegalAndProfitableToFold(N.getNode(), P, P))
Rafael Espindola094fad32009-04-08 21:14:34 +00001440 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001441 return false;
1442}
1443
Dan Gohman8b746962008-09-23 18:22:58 +00001444/// getGlobalBaseReg - Return an SDNode that returns the value of
1445/// the global base register. Output instructions required to
1446/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001447///
Evan Cheng9ade2182006-08-26 05:34:46 +00001448SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001449 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001450 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001451}
1452
Evan Chengb245d922006-05-20 01:36:52 +00001453static SDNode *FindCallStartFromCall(SDNode *Node) {
1454 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001455 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001456 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001457 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001458}
1459
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001460SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1461 SDValue Chain = Node->getOperand(0);
1462 SDValue In1 = Node->getOperand(1);
1463 SDValue In2L = Node->getOperand(2);
1464 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001465 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001466 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001467 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001468 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1469 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1470 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1471 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1472 MVT::i32, MVT::i32, MVT::Other, Ops,
1473 array_lengthof(Ops));
1474 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1475 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001476}
Christopher Lambc59e5212007-08-10 21:48:46 +00001477
Owen Andersone50ed302009-08-10 22:56:29 +00001478SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001479 if (Node->hasAnyUseOfValue(0))
1480 return 0;
1481
1482 // Optimize common patterns for __sync_add_and_fetch and
1483 // __sync_sub_and_fetch where the result is not used. This allows us
1484 // to use "lock" version of add, sub, inc, dec instructions.
1485 // FIXME: Do not use special instructions but instead add the "lock"
1486 // prefix to the target node somehow. The extra information will then be
1487 // transferred to machine instruction and it denotes the prefix.
1488 SDValue Chain = Node->getOperand(0);
1489 SDValue Ptr = Node->getOperand(1);
1490 SDValue Val = Node->getOperand(2);
1491 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001492 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001493 return 0;
1494
1495 bool isInc = false, isDec = false, isSub = false, isCN = false;
1496 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1497 if (CN) {
1498 isCN = true;
1499 int64_t CNVal = CN->getSExtValue();
1500 if (CNVal == 1)
1501 isInc = true;
1502 else if (CNVal == -1)
1503 isDec = true;
1504 else if (CNVal >= 0)
1505 Val = CurDAG->getTargetConstant(CNVal, NVT);
1506 else {
1507 isSub = true;
1508 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1509 }
1510 } else if (Val.hasOneUse() &&
1511 Val.getOpcode() == ISD::SUB &&
1512 X86::isZeroNode(Val.getOperand(0))) {
1513 isSub = true;
1514 Val = Val.getOperand(1);
1515 }
1516
1517 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001518 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001519 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001520 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001521 if (isInc)
1522 Opc = X86::LOCK_INC8m;
1523 else if (isDec)
1524 Opc = X86::LOCK_DEC8m;
1525 else if (isSub) {
1526 if (isCN)
1527 Opc = X86::LOCK_SUB8mi;
1528 else
1529 Opc = X86::LOCK_SUB8mr;
1530 } else {
1531 if (isCN)
1532 Opc = X86::LOCK_ADD8mi;
1533 else
1534 Opc = X86::LOCK_ADD8mr;
1535 }
1536 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001537 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001538 if (isInc)
1539 Opc = X86::LOCK_INC16m;
1540 else if (isDec)
1541 Opc = X86::LOCK_DEC16m;
1542 else if (isSub) {
1543 if (isCN) {
1544 if (Predicate_i16immSExt8(Val.getNode()))
1545 Opc = X86::LOCK_SUB16mi8;
1546 else
1547 Opc = X86::LOCK_SUB16mi;
1548 } else
1549 Opc = X86::LOCK_SUB16mr;
1550 } else {
1551 if (isCN) {
1552 if (Predicate_i16immSExt8(Val.getNode()))
1553 Opc = X86::LOCK_ADD16mi8;
1554 else
1555 Opc = X86::LOCK_ADD16mi;
1556 } else
1557 Opc = X86::LOCK_ADD16mr;
1558 }
1559 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001560 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001561 if (isInc)
1562 Opc = X86::LOCK_INC32m;
1563 else if (isDec)
1564 Opc = X86::LOCK_DEC32m;
1565 else if (isSub) {
1566 if (isCN) {
1567 if (Predicate_i32immSExt8(Val.getNode()))
1568 Opc = X86::LOCK_SUB32mi8;
1569 else
1570 Opc = X86::LOCK_SUB32mi;
1571 } else
1572 Opc = X86::LOCK_SUB32mr;
1573 } else {
1574 if (isCN) {
1575 if (Predicate_i32immSExt8(Val.getNode()))
1576 Opc = X86::LOCK_ADD32mi8;
1577 else
1578 Opc = X86::LOCK_ADD32mi;
1579 } else
1580 Opc = X86::LOCK_ADD32mr;
1581 }
1582 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001583 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001584 if (isInc)
1585 Opc = X86::LOCK_INC64m;
1586 else if (isDec)
1587 Opc = X86::LOCK_DEC64m;
1588 else if (isSub) {
1589 Opc = X86::LOCK_SUB64mr;
1590 if (isCN) {
1591 if (Predicate_i64immSExt8(Val.getNode()))
1592 Opc = X86::LOCK_SUB64mi8;
1593 else if (Predicate_i64immSExt32(Val.getNode()))
1594 Opc = X86::LOCK_SUB64mi32;
1595 }
1596 } else {
1597 Opc = X86::LOCK_ADD64mr;
1598 if (isCN) {
1599 if (Predicate_i64immSExt8(Val.getNode()))
1600 Opc = X86::LOCK_ADD64mi8;
1601 else if (Predicate_i64immSExt32(Val.getNode()))
1602 Opc = X86::LOCK_ADD64mi32;
1603 }
1604 }
1605 break;
1606 }
1607
1608 DebugLoc dl = Node->getDebugLoc();
Dan Gohman602b0c82009-09-25 18:54:59 +00001609 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetInstrInfo::IMPLICIT_DEF,
1610 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001611 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1612 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001613 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001614 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1615 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1616 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001617 SDValue RetVals[] = { Undef, Ret };
1618 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1619 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001620 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1621 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1622 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001623 SDValue RetVals[] = { Undef, Ret };
1624 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1625 }
1626}
1627
Dan Gohman11596ed2009-10-09 20:35:19 +00001628/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1629/// any uses which require the SF or OF bits to be accurate.
1630static bool HasNoSignedComparisonUses(SDNode *N) {
1631 // Examine each user of the node.
1632 for (SDNode::use_iterator UI = N->use_begin(),
1633 UE = N->use_end(); UI != UE; ++UI) {
1634 // Only examine CopyToReg uses.
1635 if (UI->getOpcode() != ISD::CopyToReg)
1636 return false;
1637 // Only examine CopyToReg uses that copy to EFLAGS.
1638 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1639 X86::EFLAGS)
1640 return false;
1641 // Examine each user of the CopyToReg use.
1642 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1643 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1644 // Only examine the Flag result.
1645 if (FlagUI.getUse().getResNo() != 1) continue;
1646 // Anything unusual: assume conservatively.
1647 if (!FlagUI->isMachineOpcode()) return false;
1648 // Examine the opcode of the user.
1649 switch (FlagUI->getMachineOpcode()) {
1650 // These comparisons don't treat the most significant bit specially.
1651 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1652 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1653 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1654 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
1655 case X86::JA: case X86::JAE: case X86::JB: case X86::JBE:
1656 case X86::JE: case X86::JNE: case X86::JP: case X86::JNP:
1657 case X86::CMOVA16rr: case X86::CMOVA16rm:
1658 case X86::CMOVA32rr: case X86::CMOVA32rm:
1659 case X86::CMOVA64rr: case X86::CMOVA64rm:
1660 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1661 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1662 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1663 case X86::CMOVB16rr: case X86::CMOVB16rm:
1664 case X86::CMOVB32rr: case X86::CMOVB32rm:
1665 case X86::CMOVB64rr: case X86::CMOVB64rm:
1666 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1667 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1668 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1669 case X86::CMOVE16rr: case X86::CMOVE16rm:
1670 case X86::CMOVE32rr: case X86::CMOVE32rm:
1671 case X86::CMOVE64rr: case X86::CMOVE64rm:
1672 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1673 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1674 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1675 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1676 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1677 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1678 case X86::CMOVP16rr: case X86::CMOVP16rm:
1679 case X86::CMOVP32rr: case X86::CMOVP32rm:
1680 case X86::CMOVP64rr: case X86::CMOVP64rm:
1681 continue;
1682 // Anything else: assume conservatively.
1683 default: return false;
1684 }
1685 }
1686 }
1687 return true;
1688}
1689
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001690SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001691 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001692 unsigned Opc, MOpc;
1693 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001694 DebugLoc dl = Node->getDebugLoc();
1695
Evan Chengf597dc72006-02-10 22:24:32 +00001696#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001697 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001698 dbgs() << std::string(Indent, ' ') << "Selecting: ";
Bill Wendling12321672009-08-07 21:33:25 +00001699 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001700 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001701 });
Evan Cheng23addc02006-02-10 22:46:26 +00001702 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001703#endif
1704
Dan Gohmane8be6c62008-07-17 19:10:17 +00001705 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001706#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001707 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001708 dbgs() << std::string(Indent-2, ' ') << "== ";
Bill Wendling12321672009-08-07 21:33:25 +00001709 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001710 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001711 });
Evan Cheng23addc02006-02-10 22:46:26 +00001712 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001713#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001714 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001715 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001716
Evan Cheng0114e942006-01-06 20:36:21 +00001717 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001718 default: break;
1719 case X86ISD::GlobalBaseReg:
1720 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001721
Dan Gohman72677342009-08-02 16:10:52 +00001722 case X86ISD::ATOMOR64_DAG:
1723 return SelectAtomic64(Node, X86::ATOMOR6432);
1724 case X86ISD::ATOMXOR64_DAG:
1725 return SelectAtomic64(Node, X86::ATOMXOR6432);
1726 case X86ISD::ATOMADD64_DAG:
1727 return SelectAtomic64(Node, X86::ATOMADD6432);
1728 case X86ISD::ATOMSUB64_DAG:
1729 return SelectAtomic64(Node, X86::ATOMSUB6432);
1730 case X86ISD::ATOMNAND64_DAG:
1731 return SelectAtomic64(Node, X86::ATOMNAND6432);
1732 case X86ISD::ATOMAND64_DAG:
1733 return SelectAtomic64(Node, X86::ATOMAND6432);
1734 case X86ISD::ATOMSWAP64_DAG:
1735 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001736
Dan Gohman72677342009-08-02 16:10:52 +00001737 case ISD::ATOMIC_LOAD_ADD: {
1738 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1739 if (RetVal)
1740 return RetVal;
1741 break;
1742 }
1743
1744 case ISD::SMUL_LOHI:
1745 case ISD::UMUL_LOHI: {
1746 SDValue N0 = Node->getOperand(0);
1747 SDValue N1 = Node->getOperand(1);
1748
1749 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001750 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001751 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001752 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001753 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1754 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1755 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1756 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001757 }
Bill Wendling12321672009-08-07 21:33:25 +00001758 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001759 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001760 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001761 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1762 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1763 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1764 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001765 }
Bill Wendling12321672009-08-07 21:33:25 +00001766 }
Dan Gohman72677342009-08-02 16:10:52 +00001767
1768 unsigned LoReg, HiReg;
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: LoReg = X86::AL; HiReg = X86::AH; break;
1772 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1773 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1774 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001775 }
1776
1777 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001778 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001779 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001780 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001781 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001782 if (foldedLoad)
1783 std::swap(N0, N1);
1784 }
1785
1786 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1787 N0, SDValue()).getValue(1);
1788
1789 if (foldedLoad) {
1790 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1791 InFlag };
1792 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001793 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1794 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001795 InFlag = SDValue(CNode, 1);
1796 // Update the chain.
1797 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1798 } else {
1799 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001800 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001801 }
1802
1803 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001804 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001805 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1806 LoReg, NVT, InFlag);
1807 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001808 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001809#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001810 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001811 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001812 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001813 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001814 });
Dan Gohman72677342009-08-02 16:10:52 +00001815#endif
1816 }
1817 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001818 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001819 SDValue Result;
1820 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1821 // Prevent use of AH in a REX instruction by referencing AX instead.
1822 // Shift it down 8 bits.
1823 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001824 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001825 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001826 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1827 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001828 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001829 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001830 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1831 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001832 } else {
1833 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1834 HiReg, NVT, InFlag);
1835 InFlag = Result.getValue(2);
1836 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001837 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001838#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001839 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001840 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001841 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001842 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001843 });
Dan Gohman72677342009-08-02 16:10:52 +00001844#endif
1845 }
1846
1847#ifndef NDEBUG
1848 Indent -= 2;
1849#endif
1850
1851 return NULL;
1852 }
1853
1854 case ISD::SDIVREM:
1855 case ISD::UDIVREM: {
1856 SDValue N0 = Node->getOperand(0);
1857 SDValue N1 = Node->getOperand(1);
1858
1859 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001860 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001861 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001862 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001863 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1864 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1865 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1866 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001867 }
Bill Wendling12321672009-08-07 21:33:25 +00001868 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001869 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001870 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001871 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1872 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1873 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1874 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001875 }
Bill Wendling12321672009-08-07 21:33:25 +00001876 }
Dan Gohman72677342009-08-02 16:10:52 +00001877
Chris Lattner9e323832009-12-23 01:45:04 +00001878 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001879 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001880 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001881 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001882 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001883 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001884 ClrOpcode = 0;
1885 SExtOpcode = X86::CBW;
1886 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001887 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001888 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001889 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001890 SExtOpcode = X86::CWD;
1891 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001892 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001893 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001894 ClrOpcode = X86::MOV32r0;
1895 SExtOpcode = X86::CDQ;
1896 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001897 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001898 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001899 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001900 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001901 break;
1902 }
1903
Dan Gohman72677342009-08-02 16:10:52 +00001904 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001905 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001906 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001907
Dan Gohman72677342009-08-02 16:10:52 +00001908 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001909 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001910 // Special case for div8, just use a move with zero extension to AX to
1911 // clear the upper 8 bits (AH).
1912 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001913 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001914 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1915 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001916 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1917 MVT::Other, Ops,
1918 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001919 Chain = Move.getValue(1);
1920 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001921 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001922 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001923 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001924 Chain = CurDAG->getEntryNode();
1925 }
1926 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1927 InFlag = Chain.getValue(1);
1928 } else {
1929 InFlag =
1930 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1931 LoReg, N0, SDValue()).getValue(1);
1932 if (isSigned && !signBitIsZero) {
1933 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001934 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001935 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001936 } else {
1937 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001938 SDValue ClrNode =
1939 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001940 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001941 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001942 }
Evan Cheng948f3432006-01-06 23:19:29 +00001943 }
Dan Gohman525178c2007-10-08 18:33:35 +00001944
Dan Gohman72677342009-08-02 16:10:52 +00001945 if (foldedLoad) {
1946 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1947 InFlag };
1948 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001949 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1950 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001951 InFlag = SDValue(CNode, 1);
1952 // Update the chain.
1953 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1954 } else {
1955 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001956 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001957 }
Evan Cheng948f3432006-01-06 23:19:29 +00001958
Dan Gohman72677342009-08-02 16:10:52 +00001959 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001960 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001961 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1962 LoReg, NVT, InFlag);
1963 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001964 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001965#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001966 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001967 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001968 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001969 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001970 });
Dan Gohman72677342009-08-02 16:10:52 +00001971#endif
1972 }
1973 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001974 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001975 SDValue Result;
1976 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1977 // Prevent use of AH in a REX instruction by referencing AX instead.
1978 // Shift it down 8 bits.
1979 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001980 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001981 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001982 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00001983 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001984 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00001985 0);
1986 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001987 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1988 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001989 } else {
1990 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1991 HiReg, NVT, InFlag);
1992 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00001993 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001994 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001995#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001996 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001997 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001998 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001999 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002000 });
Dan Gohmana37c9f72007-09-25 18:23:27 +00002001#endif
Dan Gohman72677342009-08-02 16:10:52 +00002002 }
Evan Chengf597dc72006-02-10 22:24:32 +00002003
2004#ifndef NDEBUG
Dan Gohman72677342009-08-02 16:10:52 +00002005 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002006#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002007
Dan Gohman72677342009-08-02 16:10:52 +00002008 return NULL;
2009 }
2010
Dan Gohman6a402dc2009-08-19 18:16:17 +00002011 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002012 SDValue N0 = Node->getOperand(0);
2013 SDValue N1 = Node->getOperand(1);
2014
2015 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2016 // use a smaller encoding.
2017 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2018 N0.getValueType() != MVT::i8 &&
2019 X86::isZeroNode(N1)) {
2020 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2021 if (!C) break;
2022
2023 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002024 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2025 (!(C->getZExtValue() & 0x80) ||
2026 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002027 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2028 SDValue Reg = N0.getNode()->getOperand(0);
2029
2030 // On x86-32, only the ABCD registers have 8-bit subregisters.
2031 if (!Subtarget->is64Bit()) {
2032 TargetRegisterClass *TRC = 0;
2033 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2034 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2035 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2036 default: llvm_unreachable("Unsupported TEST operand type!");
2037 }
2038 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002039 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2040 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002041 }
2042
2043 // Extract the l-register.
2044 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2045 MVT::i8, Reg);
2046
2047 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002048 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002049 }
2050
2051 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002052 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2053 (!(C->getZExtValue() & 0x8000) ||
2054 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002055 // Shift the immediate right by 8 bits.
2056 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2057 MVT::i8);
2058 SDValue Reg = N0.getNode()->getOperand(0);
2059
2060 // Put the value in an ABCD register.
2061 TargetRegisterClass *TRC = 0;
2062 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2063 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2064 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2065 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2066 default: llvm_unreachable("Unsupported TEST operand type!");
2067 }
2068 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002069 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2070 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002071
2072 // Extract the h-register.
2073 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2074 MVT::i8, Reg);
2075
2076 // Emit a testb. No special NOREX tricks are needed since there's
2077 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002078 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2079 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002080 }
2081
2082 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2083 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002084 N0.getValueType() != MVT::i16 &&
2085 (!(C->getZExtValue() & 0x8000) ||
2086 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002087 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2088 SDValue Reg = N0.getNode()->getOperand(0);
2089
2090 // Extract the 16-bit subregister.
2091 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2092 MVT::i16, Reg);
2093
2094 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002095 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002096 }
2097
2098 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2099 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002100 N0.getValueType() == MVT::i64 &&
2101 (!(C->getZExtValue() & 0x80000000) ||
2102 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002103 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2104 SDValue Reg = N0.getNode()->getOperand(0);
2105
2106 // Extract the 32-bit subregister.
2107 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2108 MVT::i32, Reg);
2109
2110 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002111 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002112 }
2113 }
2114 break;
2115 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002116 }
2117
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002118 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002119
Evan Chengf597dc72006-02-10 22:24:32 +00002120#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002121 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00002122 dbgs() << std::string(Indent-2, ' ') << "=> ";
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002123 if (ResNode == NULL || ResNode == Node)
2124 Node->dump(CurDAG);
Bill Wendling12321672009-08-07 21:33:25 +00002125 else
2126 ResNode->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00002127 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002128 });
Evan Cheng23addc02006-02-10 22:46:26 +00002129 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002130#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002131
2132 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002133}
2134
Chris Lattnerc0bad572006-06-08 18:03:49 +00002135bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002136SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002137 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002138 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002139 switch (ConstraintCode) {
2140 case 'o': // offsetable ??
2141 case 'v': // not offsetable ??
2142 default: return true;
2143 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002144 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002145 return true;
2146 break;
2147 }
2148
Evan Cheng04699902006-08-26 01:05:16 +00002149 OutOps.push_back(Op0);
2150 OutOps.push_back(Op1);
2151 OutOps.push_back(Op2);
2152 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002153 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002154 return false;
2155}
2156
Chris Lattnerc961eea2005-11-16 01:54:32 +00002157/// createX86ISelDag - This pass converts a legalized DAG into a
2158/// X86-specific DAG, ready for instruction scheduling.
2159///
Bill Wendling98a366d2009-04-29 23:29:43 +00002160FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2161 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002162 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002163}