blob: 40b12c7767a61f3949af468c26f45eb5f3fb0ff1 [file] [log] [blame]
Chris Lattner7a125372005-11-16 22:59:19 +00001//===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===//
Chris Lattnerc961eea2005-11-16 01:54:32 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Chris Lattnerc961eea2005-11-16 01:54:32 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines a DAG pattern matching instruction selector for X86,
11// converting from a legalized dag to a X86 dag.
12//
13//===----------------------------------------------------------------------===//
14
Evan Cheng2ef88a02006-08-07 22:28:20 +000015#define DEBUG_TYPE "x86-isel"
Chris Lattnerc961eea2005-11-16 01:54:32 +000016#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000017#include "X86InstrBuilder.h"
Evan Chengc4c62572006-03-13 23:20:37 +000018#include "X86ISelLowering.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000019#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000020#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000021#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000022#include "X86TargetMachine.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000023#include "llvm/GlobalValue.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/Instructions.h"
Chris Lattner420736d2006-03-25 06:47:10 +000025#include "llvm/Intrinsics.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000026#include "llvm/Support/CFG.h"
Reid Spencer7aa8a452007-01-12 23:22:14 +000027#include "llvm/Type.h"
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000028#include "llvm/CodeGen/MachineConstantPool.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000029#include "llvm/CodeGen/MachineFunction.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000030#include "llvm/CodeGen/MachineFrameInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000031#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000032#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000033#include "llvm/CodeGen/SelectionDAGISel.h"
34#include "llvm/Target/TargetMachine.h"
Evan Chengb7a75a52008-09-26 23:41:32 +000035#include "llvm/Target/TargetOptions.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000036#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000037#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000038#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000039#include "llvm/Support/raw_ostream.h"
Evan Chengcdda25d2008-04-25 08:22:20 +000040#include "llvm/ADT/SmallPtrSet.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000041#include "llvm/ADT/Statistic.h"
42using namespace llvm;
43
Chris Lattner95b2c7d2006-12-19 22:59:26 +000044STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
45
Chris Lattnerc961eea2005-11-16 01:54:32 +000046//===----------------------------------------------------------------------===//
47// Pattern Matcher Implementation
48//===----------------------------------------------------------------------===//
49
50namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000051 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000052 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000053 /// tree.
54 struct X86ISelAddressMode {
55 enum {
56 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000057 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000058 } BaseType;
59
60 struct { // This is really a union, discriminated by BaseType!
Dan Gohman475871a2008-07-27 21:46:04 +000061 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000062 int FrameIndex;
63 } Base;
64
65 unsigned Scale;
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000067 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000068 SDValue Segment;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000069 GlobalValue *GV;
Evan Cheng51a9ed92006-02-25 10:09:08 +000070 Constant *CP;
Chris Lattner43f44aa2009-11-01 03:25:03 +000071 BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000072 const char *ES;
73 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000074 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000075 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000076
77 X86ISelAddressMode()
Chris Lattner18c59872009-06-27 04:16:01 +000078 : BaseType(RegBase), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000079 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000080 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000081 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000082
83 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000084 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000085 }
Chris Lattner18c59872009-06-27 04:16:01 +000086
87 bool hasBaseOrIndexReg() const {
88 return IndexReg.getNode() != 0 || Base.Reg.getNode() != 0;
89 }
90
91 /// isRIPRelative - Return true if this addressing mode is already RIP
92 /// relative.
93 bool isRIPRelative() const {
94 if (BaseType != RegBase) return false;
95 if (RegisterSDNode *RegNode =
96 dyn_cast_or_null<RegisterSDNode>(Base.Reg.getNode()))
97 return RegNode->getReg() == X86::RIP;
98 return false;
99 }
100
101 void setBaseReg(SDValue Reg) {
102 BaseType = RegBase;
103 Base.Reg = Reg;
104 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000105
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000106 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000107 dbgs() << "X86ISelAddressMode " << this << '\n';
108 dbgs() << "Base.Reg ";
Bill Wendling12321672009-08-07 21:33:25 +0000109 if (Base.Reg.getNode() != 0)
110 Base.Reg.getNode()->dump();
111 else
David Greened7f4f242010-01-05 01:29:08 +0000112 dbgs() << "nul";
113 dbgs() << " Base.FrameIndex " << Base.FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000114 << " Scale" << Scale << '\n'
115 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000116 if (IndexReg.getNode() != 0)
117 IndexReg.getNode()->dump();
118 else
David Greened7f4f242010-01-05 01:29:08 +0000119 dbgs() << "nul";
120 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000121 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000122 if (GV)
123 GV->dump();
124 else
David Greened7f4f242010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000127 if (CP)
128 CP->dump();
129 else
David Greened7f4f242010-01-05 01:29:08 +0000130 dbgs() << "nul";
131 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000132 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000133 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000134 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000135 else
David Greened7f4f242010-01-05 01:29:08 +0000136 dbgs() << "nul";
137 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000138 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000139 };
140}
141
142namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000143 //===--------------------------------------------------------------------===//
144 /// ISel - X86 specific code to select X86 machine instructions for
145 /// SelectionDAG operations.
146 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000147 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000148 /// X86Lowering - This object fully describes how to lower LLVM code to an
149 /// X86-specific SelectionDAG.
Dan Gohmanda8ac5f2008-10-03 16:55:19 +0000150 X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000151
152 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
153 /// make the right decision when generating code for different targets.
154 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000155
Evan Chengb7a75a52008-09-26 23:41:32 +0000156 /// OptForSize - If true, selector should try to optimize for code size
157 /// instead of performance.
158 bool OptForSize;
159
Chris Lattnerc961eea2005-11-16 01:54:32 +0000160 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000161 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000162 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000163 X86Lowering(*tm.getTargetLowering()),
164 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000165 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000166
167 virtual const char *getPassName() const {
168 return "X86 DAG->DAG Instruction Selection";
169 }
170
Evan Chengdb8d56b2008-06-30 20:45:06 +0000171 /// InstructionSelect - This callback is invoked by
Chris Lattnerc961eea2005-11-16 01:54:32 +0000172 /// SelectionDAGISel when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000173 virtual void InstructionSelect();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000174
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000175 virtual void EmitFunctionEntryCode(Function &Fn, MachineFunction &MF);
176
Evan Cheng014bf212010-02-15 19:41:07 +0000177 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
178
Chris Lattnerc961eea2005-11-16 01:54:32 +0000179// Include the pieces autogenerated from the target description.
180#include "X86GenDAGISel.inc"
181
182 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000183 SDNode *Select(SDNode *N);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000184 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Owen Andersone50ed302009-08-10 22:56:29 +0000185 SDNode *SelectAtomicLoadAdd(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000186
Rafael Espindola094fad32009-04-08 21:14:34 +0000187 bool MatchSegmentBaseAddress(SDValue N, X86ISelAddressMode &AM);
188 bool MatchLoad(SDValue N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000189 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000190 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
191 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
192 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000193 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000194 bool SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000195 SDValue &Scale, SDValue &Index, SDValue &Disp,
196 SDValue &Segment);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000197 bool SelectLEAAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000198 SDValue &Scale, SDValue &Index, SDValue &Disp);
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000199 bool SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +0000200 SDValue &Scale, SDValue &Index, SDValue &Disp);
Chris Lattnera170b5e2010-02-21 03:17:59 +0000201 bool SelectScalarSSELoadXXX(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000202 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000203 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000204 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000205 SDValue &NodeWithChain);
206
207 // FIXME: Remove this hacky wrapper.
208 bool SelectScalarSSELoad(SDNode *Root, SDValue N, SDValue &Base,
209 SDValue &Scale, SDValue &Index,
210 SDValue &Disp, SDValue &Segment,
Chris Lattner64b49862010-02-17 06:07:47 +0000211 SDValue &PatternChainResult,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000212 SDValue &PatternInputChain) {
213 SDValue Tmp;
214 if (!SelectScalarSSELoadXXX(Root, N, Base, Scale, Index, Disp, Segment,
215 Tmp))
216 return false;
217 PatternInputChain = Tmp.getOperand(0);
218 PatternChainResult = Tmp.getValue(1);
219 return true;
220 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000221 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000222 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000223 SDValue &Index, SDValue &Disp,
224 SDValue &Segment);
Dan Gohmanf350b272008-08-23 02:25:05 +0000225 void PreprocessForRMW();
226 void PreprocessForFPConvert();
Evan Cheng2ef88a02006-08-07 22:28:20 +0000227
Chris Lattnerc0bad572006-06-08 18:03:49 +0000228 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
229 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000230 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000231 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000232 std::vector<SDValue> &OutOps);
Chris Lattnerc0bad572006-06-08 18:03:49 +0000233
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000234 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
235
Dan Gohman475871a2008-07-27 21:46:04 +0000236 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
237 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000238 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000239 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Evan Cheng25ab6902006-09-08 06:48:29 +0000240 CurDAG->getTargetFrameIndex(AM.Base.FrameIndex, TLI.getPointerTy()) :
241 AM.Base.Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000242 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000243 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000244 // These are 32-bit even in 64-bit mode since RIP relative offset
245 // is 32-bit.
246 if (AM.GV)
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetGlobalAddress(AM.GV, MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000248 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000249 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000251 AM.Align, AM.Disp, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000252 else if (AM.ES)
Owen Anderson825b72b2009-08-11 20:47:22 +0000253 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 else if (AM.JT != -1)
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Chris Lattner43f44aa2009-11-01 03:25:03 +0000256 else if (AM.BlockAddr)
Dan Gohman29cbade2009-11-20 23:18:13 +0000257 Disp = CurDAG->getBlockAddress(AM.BlockAddr, MVT::i32,
258 true, AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000259 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000261
262 if (AM.Segment.getNode())
263 Segment = AM.Segment;
264 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000265 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000266 }
267
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000268 /// getI8Imm - Return a target constant with the specified value, of type
269 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000270 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000272 }
273
Chris Lattnerc961eea2005-11-16 01:54:32 +0000274 /// getI16Imm - Return a target constant with the specified value, of type
275 /// i16.
Dan Gohman475871a2008-07-27 21:46:04 +0000276 inline SDValue getI16Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 return CurDAG->getTargetConstant(Imm, MVT::i16);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000278 }
279
280 /// getI32Imm - Return a target constant with the specified value, of type
281 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000282 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000284 }
Evan Chengf597dc72006-02-10 22:24:32 +0000285
Dan Gohman8b746962008-09-23 18:22:58 +0000286 /// getGlobalBaseReg - Return an SDNode that returns the value of
287 /// the global base register. Output instructions required to
288 /// initialize the global base register, if necessary.
289 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000290 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000291
Dan Gohmanc5534622009-06-03 20:20:00 +0000292 /// getTargetMachine - Return a reference to the TargetMachine, casted
293 /// to the target-specific type.
294 const X86TargetMachine &getTargetMachine() {
295 return static_cast<const X86TargetMachine &>(TM);
296 }
297
298 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
299 /// to the target-specific type.
300 const X86InstrInfo *getInstrInfo() {
301 return getTargetMachine().getInstrInfo();
302 }
303
Evan Cheng23addc02006-02-10 22:46:26 +0000304#ifndef NDEBUG
305 unsigned Indent;
306#endif
Chris Lattnerc961eea2005-11-16 01:54:32 +0000307 };
308}
309
Evan Chengf4b4c412006-08-08 00:31:00 +0000310
Evan Cheng014bf212010-02-15 19:41:07 +0000311bool
312X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000313 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000314
Evan Cheng014bf212010-02-15 19:41:07 +0000315 if (!N.hasOneUse())
316 return false;
317
318 if (N.getOpcode() != ISD::LOAD)
319 return true;
320
321 // If N is a load, do additional profitability checks.
322 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000323 switch (U->getOpcode()) {
324 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000325 case X86ISD::ADD:
326 case X86ISD::SUB:
327 case X86ISD::AND:
328 case X86ISD::XOR:
329 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000330 case ISD::ADD:
331 case ISD::ADDC:
332 case ISD::ADDE:
333 case ISD::AND:
334 case ISD::OR:
335 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000336 SDValue Op1 = U->getOperand(1);
337
Evan Cheng884c70c2008-11-27 00:49:46 +0000338 // If the other operand is a 8-bit immediate we should fold the immediate
339 // instead. This reduces code size.
340 // e.g.
341 // movl 4(%esp), %eax
342 // addl $4, %eax
343 // vs.
344 // movl $4, %eax
345 // addl 4(%esp), %eax
346 // The former is 2 bytes shorter. In case where the increment is 1, then
347 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000348 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000349 if (Imm->getAPIntValue().isSignedIntN(8))
350 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000351
352 // If the other operand is a TLS address, we should fold it instead.
353 // This produces
354 // movl %gs:0, %eax
355 // leal i@NTPOFF(%eax), %eax
356 // instead of
357 // movl $i@NTPOFF, %eax
358 // addl %gs:0, %eax
359 // if the block also has an access to a second TLS address this will save
360 // a load.
361 // FIXME: This is probably also true for non TLS addresses.
362 if (Op1.getOpcode() == X86ISD::Wrapper) {
363 SDValue Val = Op1.getOperand(0);
364 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
365 return false;
366 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000367 }
368 }
Evan Cheng014bf212010-02-15 19:41:07 +0000369 }
370
371 return true;
372}
373
Evan Cheng70e674e2006-08-28 20:10:17 +0000374/// MoveBelowTokenFactor - Replace TokenFactor operand with load's chain operand
375/// and move load below the TokenFactor. Replace store's chain operand with
376/// load's chain result.
Dan Gohmanf350b272008-08-23 02:25:05 +0000377static void MoveBelowTokenFactor(SelectionDAG *CurDAG, SDValue Load,
Dan Gohman475871a2008-07-27 21:46:04 +0000378 SDValue Store, SDValue TF) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000379 SmallVector<SDValue, 4> Ops;
Gabor Greifba36cb52008-08-28 21:40:38 +0000380 for (unsigned i = 0, e = TF.getNode()->getNumOperands(); i != e; ++i)
381 if (Load.getNode() == TF.getOperand(i).getNode())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000382 Ops.push_back(Load.getOperand(0));
Evan Cheng70e674e2006-08-28 20:10:17 +0000383 else
Evan Chengab6c3bb2008-08-25 21:27:18 +0000384 Ops.push_back(TF.getOperand(i));
Dan Gohmanaae317a2009-08-06 09:22:57 +0000385 SDValue NewTF = CurDAG->UpdateNodeOperands(TF, &Ops[0], Ops.size());
386 SDValue NewLoad = CurDAG->UpdateNodeOperands(Load, NewTF,
387 Load.getOperand(1),
388 Load.getOperand(2));
389 CurDAG->UpdateNodeOperands(Store, NewLoad.getValue(1), Store.getOperand(1),
Dan Gohmanf350b272008-08-23 02:25:05 +0000390 Store.getOperand(2), Store.getOperand(3));
Evan Cheng70e674e2006-08-28 20:10:17 +0000391}
392
Nate Begeman206a3572009-09-16 03:20:46 +0000393/// isRMWLoad - Return true if N is a load that's part of RMW sub-DAG. The
394/// chain produced by the load must only be used by the store's chain operand,
395/// otherwise this may produce a cycle in the DAG.
Evan Chengcd0baf22008-05-23 21:23:16 +0000396///
Dan Gohman475871a2008-07-27 21:46:04 +0000397static bool isRMWLoad(SDValue N, SDValue Chain, SDValue Address,
398 SDValue &Load) {
David Greeneee9c5952010-01-15 23:23:41 +0000399 if (N.getOpcode() == ISD::BIT_CONVERT) {
400 if (!N.hasOneUse())
401 return false;
Evan Chengcd0baf22008-05-23 21:23:16 +0000402 N = N.getOperand(0);
David Greeneee9c5952010-01-15 23:23:41 +0000403 }
Evan Chengcd0baf22008-05-23 21:23:16 +0000404
405 LoadSDNode *LD = dyn_cast<LoadSDNode>(N);
406 if (!LD || LD->isVolatile())
407 return false;
408 if (LD->getAddressingMode() != ISD::UNINDEXED)
409 return false;
410
411 ISD::LoadExtType ExtType = LD->getExtensionType();
412 if (ExtType != ISD::NON_EXTLOAD && ExtType != ISD::EXTLOAD)
413 return false;
414
415 if (N.hasOneUse() &&
Nate Begeman206a3572009-09-16 03:20:46 +0000416 LD->hasNUsesOfValue(1, 1) &&
Evan Chengcd0baf22008-05-23 21:23:16 +0000417 N.getOperand(1) == Address &&
Nate Begeman206a3572009-09-16 03:20:46 +0000418 LD->isOperandOf(Chain.getNode())) {
Evan Chengcd0baf22008-05-23 21:23:16 +0000419 Load = N;
420 return true;
421 }
422 return false;
423}
424
Evan Chengab6c3bb2008-08-25 21:27:18 +0000425/// MoveBelowCallSeqStart - Replace CALLSEQ_START operand with load's chain
426/// operand and move load below the call's chain operand.
427static void MoveBelowCallSeqStart(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng5b2e5892009-01-26 18:43:34 +0000428 SDValue Call, SDValue CallSeqStart) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000429 SmallVector<SDValue, 8> Ops;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000430 SDValue Chain = CallSeqStart.getOperand(0);
431 if (Chain.getNode() == Load.getNode())
432 Ops.push_back(Load.getOperand(0));
433 else {
434 assert(Chain.getOpcode() == ISD::TokenFactor &&
435 "Unexpected CallSeqStart chain operand");
436 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
437 if (Chain.getOperand(i).getNode() == Load.getNode())
438 Ops.push_back(Load.getOperand(0));
439 else
440 Ops.push_back(Chain.getOperand(i));
441 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000442 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000443 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000444 Ops.clear();
445 Ops.push_back(NewChain);
446 }
447 for (unsigned i = 1, e = CallSeqStart.getNumOperands(); i != e; ++i)
448 Ops.push_back(CallSeqStart.getOperand(i));
449 CurDAG->UpdateNodeOperands(CallSeqStart, &Ops[0], Ops.size());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000450 CurDAG->UpdateNodeOperands(Load, Call.getOperand(0),
451 Load.getOperand(1), Load.getOperand(2));
452 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000453 Ops.push_back(SDValue(Load.getNode(), 1));
454 for (unsigned i = 1, e = Call.getNode()->getNumOperands(); i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000455 Ops.push_back(Call.getOperand(i));
456 CurDAG->UpdateNodeOperands(Call, &Ops[0], Ops.size());
457}
458
459/// isCalleeLoad - Return true if call address is a load and it can be
460/// moved below CALLSEQ_START and the chains leading up to the call.
461/// Return the CALLSEQ_START by reference as a second output.
462static bool isCalleeLoad(SDValue Callee, SDValue &Chain) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000463 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000464 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000465 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000466 if (!LD ||
467 LD->isVolatile() ||
468 LD->getAddressingMode() != ISD::UNINDEXED ||
469 LD->getExtensionType() != ISD::NON_EXTLOAD)
470 return false;
471
472 // Now let's find the callseq_start.
473 while (Chain.getOpcode() != ISD::CALLSEQ_START) {
474 if (!Chain.hasOneUse())
475 return false;
476 Chain = Chain.getOperand(0);
477 }
Evan Cheng5b2e5892009-01-26 18:43:34 +0000478
479 if (Chain.getOperand(0).getNode() == Callee.getNode())
480 return true;
481 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000482 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
483 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000484 return true;
485 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000486}
487
488
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000489/// PreprocessForRMW - Preprocess the DAG to make instruction selection better.
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000490/// This is only run if not in -O0 mode.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000491/// This allows the instruction selector to pick more read-modify-write
492/// instructions. This is a common case:
Evan Cheng70e674e2006-08-28 20:10:17 +0000493///
494/// [Load chain]
495/// ^
496/// |
497/// [Load]
498/// ^ ^
499/// | |
500/// / \-
501/// / |
502/// [TokenFactor] [Op]
503/// ^ ^
504/// | |
505/// \ /
506/// \ /
507/// [Store]
508///
509/// The fact the store's chain operand != load's chain will prevent the
510/// (store (op (load))) instruction from being selected. We can transform it to:
511///
512/// [Load chain]
513/// ^
514/// |
515/// [TokenFactor]
516/// ^
517/// |
518/// [Load]
519/// ^ ^
520/// | |
521/// | \-
522/// | |
523/// | [Op]
524/// | ^
525/// | |
526/// \ /
527/// \ /
528/// [Store]
Dan Gohmanf350b272008-08-23 02:25:05 +0000529void X86DAGToDAGISel::PreprocessForRMW() {
530 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
531 E = CurDAG->allnodes_end(); I != E; ++I) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000532 if (I->getOpcode() == X86ISD::CALL) {
533 /// Also try moving call address load from outside callseq_start to just
534 /// before the call to allow it to be folded.
535 ///
536 /// [Load chain]
537 /// ^
538 /// |
539 /// [Load]
540 /// ^ ^
541 /// | |
542 /// / \--
543 /// / |
544 ///[CALLSEQ_START] |
545 /// ^ |
546 /// | |
547 /// [LOAD/C2Reg] |
548 /// | |
549 /// \ /
550 /// \ /
551 /// [CALL]
552 SDValue Chain = I->getOperand(0);
553 SDValue Load = I->getOperand(1);
554 if (!isCalleeLoad(Load, Chain))
555 continue;
556 MoveBelowCallSeqStart(CurDAG, Load, SDValue(I, 0), Chain);
557 ++NumLoadMoved;
558 continue;
559 }
560
Evan Cheng8b2794a2006-10-13 21:14:26 +0000561 if (!ISD::isNON_TRUNCStore(I))
Evan Cheng70e674e2006-08-28 20:10:17 +0000562 continue;
Dan Gohman475871a2008-07-27 21:46:04 +0000563 SDValue Chain = I->getOperand(0);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000564
Gabor Greifba36cb52008-08-28 21:40:38 +0000565 if (Chain.getNode()->getOpcode() != ISD::TokenFactor)
Evan Cheng70e674e2006-08-28 20:10:17 +0000566 continue;
567
Dan Gohman475871a2008-07-27 21:46:04 +0000568 SDValue N1 = I->getOperand(1);
569 SDValue N2 = I->getOperand(2);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000570 if ((N1.getValueType().isFloatingPoint() &&
571 !N1.getValueType().isVector()) ||
Evan Cheng780413d2006-08-29 18:37:37 +0000572 !N1.hasOneUse())
Evan Cheng70e674e2006-08-28 20:10:17 +0000573 continue;
574
575 bool RModW = false;
Dan Gohman475871a2008-07-27 21:46:04 +0000576 SDValue Load;
Gabor Greifba36cb52008-08-28 21:40:38 +0000577 unsigned Opcode = N1.getNode()->getOpcode();
Evan Cheng70e674e2006-08-28 20:10:17 +0000578 switch (Opcode) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000579 case ISD::ADD:
580 case ISD::MUL:
581 case ISD::AND:
582 case ISD::OR:
583 case ISD::XOR:
584 case ISD::ADDC:
585 case ISD::ADDE:
586 case ISD::VECTOR_SHUFFLE: {
587 SDValue N10 = N1.getOperand(0);
588 SDValue N11 = N1.getOperand(1);
589 RModW = isRMWLoad(N10, Chain, N2, Load);
590 if (!RModW)
591 RModW = isRMWLoad(N11, Chain, N2, Load);
592 break;
593 }
594 case ISD::SUB:
595 case ISD::SHL:
596 case ISD::SRA:
597 case ISD::SRL:
598 case ISD::ROTL:
599 case ISD::ROTR:
600 case ISD::SUBC:
601 case ISD::SUBE:
602 case X86ISD::SHLD:
603 case X86ISD::SHRD: {
604 SDValue N10 = N1.getOperand(0);
605 RModW = isRMWLoad(N10, Chain, N2, Load);
606 break;
607 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000608 }
609
Evan Cheng82a35b32006-08-29 06:44:17 +0000610 if (RModW) {
Dan Gohmanf350b272008-08-23 02:25:05 +0000611 MoveBelowTokenFactor(CurDAG, Load, SDValue(I, 0), Chain);
Evan Cheng82a35b32006-08-29 06:44:17 +0000612 ++NumLoadMoved;
David Greenecf495bc2010-01-20 20:13:31 +0000613 checkForCycles(I);
Evan Cheng82a35b32006-08-29 06:44:17 +0000614 }
Evan Cheng70e674e2006-08-28 20:10:17 +0000615 }
616}
617
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000618
619/// PreprocessForFPConvert - Walk over the dag lowering fpround and fpextend
620/// nodes that target the FP stack to be store and load to the stack. This is a
621/// gross hack. We would like to simply mark these as being illegal, but when
622/// we do that, legalize produces these when it expands calls, then expands
623/// these in the same legalize pass. We would like dag combine to be able to
624/// hack on these between the call expansion and the node legalization. As such
625/// this pass basically does "really late" legalization of these inline with the
626/// X86 isel pass.
Dan Gohmanf350b272008-08-23 02:25:05 +0000627void X86DAGToDAGISel::PreprocessForFPConvert() {
628 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
629 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000630 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
631 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
632 continue;
633
634 // If the source and destination are SSE registers, then this is a legal
635 // conversion that should not be lowered.
Owen Andersone50ed302009-08-10 22:56:29 +0000636 EVT SrcVT = N->getOperand(0).getValueType();
637 EVT DstVT = N->getValueType(0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000638 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
639 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
640 if (SrcIsSSE && DstIsSSE)
641 continue;
642
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000643 if (!SrcIsSSE && !DstIsSSE) {
644 // If this is an FPStack extension, it is a noop.
645 if (N->getOpcode() == ISD::FP_EXTEND)
646 continue;
647 // If this is a value-preserving FPStack truncation, it is a noop.
648 if (N->getConstantOperandVal(1))
649 continue;
650 }
651
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000652 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
653 // FPStack has extload and truncstore. SSE can fold direct loads into other
654 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000655 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000656 if (N->getOpcode() == ISD::FP_ROUND)
657 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
658 else
659 MemVT = SrcIsSSE ? SrcVT : DstVT;
660
Dan Gohmanf350b272008-08-23 02:25:05 +0000661 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000662 DebugLoc dl = N->getDebugLoc();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000663
664 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000665 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000666 N->getOperand(0),
David Greenedb8d9892010-02-15 16:57:43 +0000667 MemTmp, NULL, 0, MemVT,
668 false, false, 0);
Dale Johannesend8392542009-02-03 21:48:12 +0000669 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
David Greenedb8d9892010-02-15 16:57:43 +0000670 NULL, 0, MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000671
672 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
673 // extload we created. This will cause general havok on the dag because
674 // anything below the conversion could be folded into other existing nodes.
675 // To avoid invalidating 'I', back it up to the convert node.
676 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000677 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000678
679 // Now that we did that, the node is dead. Increment the iterator to the
680 // next node to process, then delete N.
681 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000682 CurDAG->DeleteNode(N);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000683 }
684}
685
Chris Lattnerc961eea2005-11-16 01:54:32 +0000686/// InstructionSelectBasicBlock - This callback is invoked by SelectionDAGISel
687/// when it has created a SelectionDAG for us to codegen.
Dan Gohmanf350b272008-08-23 02:25:05 +0000688void X86DAGToDAGISel::InstructionSelect() {
Dan Gohman7571eb52009-08-01 03:42:59 +0000689 const Function *F = MF->getFunction();
Devang Patele76225a2008-10-06 18:03:39 +0000690 OptForSize = F->hasFnAttr(Attribute::OptimizeForSize);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000691
Bill Wendling98a366d2009-04-29 23:29:43 +0000692 if (OptLevel != CodeGenOpt::None)
Dan Gohmanf350b272008-08-23 02:25:05 +0000693 PreprocessForRMW();
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000694
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000695 // FIXME: This should only happen when not compiled with -O0.
Dan Gohmanf350b272008-08-23 02:25:05 +0000696 PreprocessForFPConvert();
Evan Cheng70e674e2006-08-28 20:10:17 +0000697
Chris Lattnerc961eea2005-11-16 01:54:32 +0000698 // Codegen the basic block.
Evan Chengf597dc72006-02-10 22:24:32 +0000699#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000700 DEBUG(dbgs() << "===== Instruction selection begins:\n");
Evan Cheng23addc02006-02-10 22:46:26 +0000701 Indent = 0;
Evan Chengf597dc72006-02-10 22:24:32 +0000702#endif
David Greene8ad4c002008-10-27 21:56:29 +0000703 SelectRoot(*CurDAG);
Evan Chengf597dc72006-02-10 22:24:32 +0000704#ifndef NDEBUG
David Greened7f4f242010-01-05 01:29:08 +0000705 DEBUG(dbgs() << "===== Instruction selection ends:\n");
Evan Chengf597dc72006-02-10 22:24:32 +0000706#endif
Evan Cheng63ce5682006-07-28 00:10:59 +0000707
Dan Gohmanf350b272008-08-23 02:25:05 +0000708 CurDAG->RemoveDeadNodes();
Evan Chengdb8d56b2008-06-30 20:45:06 +0000709}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000710
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000711/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
712/// the main function.
713void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
714 MachineFrameInfo *MFI) {
715 const TargetInstrInfo *TII = TM.getInstrInfo();
716 if (Subtarget->isTargetCygMing())
Dale Johannesen8d13f8f2009-02-13 02:33:27 +0000717 BuildMI(BB, DebugLoc::getUnknownLoc(),
718 TII->get(X86::CALLpcrel32)).addExternalSymbol("__main");
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000719}
720
721void X86DAGToDAGISel::EmitFunctionEntryCode(Function &Fn, MachineFunction &MF) {
722 // If this is main, emit special code for main.
723 MachineBasicBlock *BB = MF.begin();
724 if (Fn.hasExternalLinkage() && Fn.getName() == "main")
725 EmitSpecialCodeForMain(BB, MF.getFrameInfo());
726}
727
Rafael Espindola094fad32009-04-08 21:14:34 +0000728
729bool X86DAGToDAGISel::MatchSegmentBaseAddress(SDValue N,
730 X86ISelAddressMode &AM) {
731 assert(N.getOpcode() == X86ISD::SegmentBaseAddress);
732 SDValue Segment = N.getOperand(0);
733
734 if (AM.Segment.getNode() == 0) {
735 AM.Segment = Segment;
736 return false;
737 }
738
739 return true;
740}
741
742bool X86DAGToDAGISel::MatchLoad(SDValue N, X86ISelAddressMode &AM) {
743 // This optimization is valid because the GNU TLS model defines that
744 // gs:0 (or fs:0 on X86-64) contains its own address.
745 // For more information see http://people.redhat.com/drepper/tls.pdf
746
747 SDValue Address = N.getOperand(1);
748 if (Address.getOpcode() == X86ISD::SegmentBaseAddress &&
749 !MatchSegmentBaseAddress (Address, AM))
750 return false;
751
752 return true;
753}
754
Chris Lattner18c59872009-06-27 04:16:01 +0000755/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
756/// into an addressing mode. These wrap things that will resolve down into a
757/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000758/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000759bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000760 // If the addressing mode already has a symbol as the displacement, we can
761 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000762 if (AM.hasSymbolicDisplacement())
763 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000764
765 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000766 CodeModel::Model M = TM.getCodeModel();
767
Chris Lattner18c59872009-06-27 04:16:01 +0000768 // Handle X86-64 rip-relative addresses. We check this before checking direct
769 // folding because RIP is preferable to non-RIP accesses.
770 if (Subtarget->is64Bit() &&
771 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
772 // they cannot be folded into immediate fields.
773 // FIXME: This can be improved for kernel and other models?
Anton Korobeynikov25f1aa02009-08-21 15:41:56 +0000774 (M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000775 // Base and index reg must be 0 in order to use %rip as base and lowering
776 // must allow RIP.
777 !AM.hasBaseOrIndexReg() && N.getOpcode() == X86ISD::WrapperRIP) {
Chris Lattner18c59872009-06-27 04:16:01 +0000778 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
779 int64_t Offset = AM.Disp + G->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000780 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000781 AM.GV = G->getGlobal();
782 AM.Disp = Offset;
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000783 AM.SymbolFlags = G->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000784 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
785 int64_t Offset = AM.Disp + CP->getOffset();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000786 if (!X86::isOffsetSuitableForCodeModel(Offset, M)) return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000787 AM.CP = CP->getConstVal();
788 AM.Align = CP->getAlignment();
Chris Lattner18c59872009-06-27 04:16:01 +0000789 AM.Disp = Offset;
Chris Lattner0b0deab2009-06-26 05:56:49 +0000790 AM.SymbolFlags = CP->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000791 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
792 AM.ES = S->getSymbol();
793 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000794 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000795 AM.JT = J->getIndex();
796 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000797 } else {
798 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000799 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Rafael Espindola49a168d2009-04-12 21:55:03 +0000800 }
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000801
Chris Lattner18c59872009-06-27 04:16:01 +0000802 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000803 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000804 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000805 }
806
807 // Handle the case when globals fit in our immediate field: This is true for
808 // X86-32 always and X86-64 when in -static -mcmodel=small mode. In 64-bit
809 // mode, this results in a non-RIP-relative computation.
810 if (!Subtarget->is64Bit() ||
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000811 ((M == CodeModel::Small || M == CodeModel::Kernel) &&
Chris Lattner18c59872009-06-27 04:16:01 +0000812 TM.getRelocationModel() == Reloc::Static)) {
813 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
814 AM.GV = G->getGlobal();
815 AM.Disp += G->getOffset();
816 AM.SymbolFlags = G->getTargetFlags();
817 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
818 AM.CP = CP->getConstVal();
819 AM.Align = CP->getAlignment();
820 AM.Disp += CP->getOffset();
821 AM.SymbolFlags = CP->getTargetFlags();
822 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
823 AM.ES = S->getSymbol();
824 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000825 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000826 AM.JT = J->getIndex();
827 AM.SymbolFlags = J->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000828 } else {
829 AM.BlockAddr = cast<BlockAddressSDNode>(N0)->getBlockAddress();
Dan Gohman29cbade2009-11-20 23:18:13 +0000830 AM.SymbolFlags = cast<BlockAddressSDNode>(N0)->getTargetFlags();
Chris Lattner18c59872009-06-27 04:16:01 +0000831 }
Rafael Espindola49a168d2009-04-12 21:55:03 +0000832 return false;
833 }
834
835 return true;
836}
837
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000838/// MatchAddress - Add the specified node to the specified addressing mode,
839/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000840/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000841bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
842 if (MatchAddressRecursively(N, AM, 0))
843 return true;
844
845 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
846 // a smaller encoding and avoids a scaled-index.
847 if (AM.Scale == 2 &&
848 AM.BaseType == X86ISelAddressMode::RegBase &&
849 AM.Base.Reg.getNode() == 0) {
850 AM.Base.Reg = AM.IndexReg;
851 AM.Scale = 1;
852 }
853
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000854 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
855 // because it has a smaller encoding.
856 // TODO: Which other code models can use this?
857 if (TM.getCodeModel() == CodeModel::Small &&
858 Subtarget->is64Bit() &&
859 AM.Scale == 1 &&
860 AM.BaseType == X86ISelAddressMode::RegBase &&
861 AM.Base.Reg.getNode() == 0 &&
862 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000863 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000864 AM.hasSymbolicDisplacement())
865 AM.Base.Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
866
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000867 return false;
868}
869
870bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
871 unsigned Depth) {
Dan Gohman6520e202008-10-18 02:06:02 +0000872 bool is64Bit = Subtarget->is64Bit();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000873 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000874 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000875 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000876 AM.dump();
877 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000878 // Limit recursion.
879 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000880 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000881
882 CodeModel::Model M = TM.getCodeModel();
883
Chris Lattner18c59872009-06-27 04:16:01 +0000884 // If this is already a %rip relative address, we can only merge immediates
885 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000886 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000887 if (AM.isRIPRelative()) {
888 // FIXME: JumpTable and ExternalSymbol address currently don't like
889 // displacements. It isn't very important, but this should be fixed for
890 // consistency.
891 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000892
Chris Lattner18c59872009-06-27 04:16:01 +0000893 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) {
894 int64_t Val = AM.Disp + Cst->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000895 if (X86::isOffsetSuitableForCodeModel(Val, M,
896 AM.hasSymbolicDisplacement())) {
Chris Lattner18c59872009-06-27 04:16:01 +0000897 AM.Disp = Val;
Evan Cheng25ab6902006-09-08 06:48:29 +0000898 return false;
899 }
900 }
901 return true;
902 }
903
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000904 switch (N.getOpcode()) {
905 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000906 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000907 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000908 if (!is64Bit ||
909 X86::isOffsetSuitableForCodeModel(AM.Disp + Val, M,
910 AM.hasSymbolicDisplacement())) {
Evan Cheng25ab6902006-09-08 06:48:29 +0000911 AM.Disp += Val;
912 return false;
913 }
914 break;
915 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000916
Rafael Espindola094fad32009-04-08 21:14:34 +0000917 case X86ISD::SegmentBaseAddress:
918 if (!MatchSegmentBaseAddress(N, AM))
919 return false;
920 break;
921
Rafael Espindola49a168d2009-04-12 21:55:03 +0000922 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000923 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000924 if (!MatchWrapper(N, AM))
925 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000926 break;
927
Rafael Espindola094fad32009-04-08 21:14:34 +0000928 case ISD::LOAD:
929 if (!MatchLoad(N, AM))
930 return false;
931 break;
932
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000933 case ISD::FrameIndex:
Gabor Greif93c53e52008-08-31 15:37:04 +0000934 if (AM.BaseType == X86ISelAddressMode::RegBase
935 && AM.Base.Reg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000936 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
937 AM.Base.FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
938 return false;
939 }
940 break;
Evan Chengec693f72005-12-08 02:01:35 +0000941
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000942 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +0000943 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000944 break;
945
Gabor Greif93c53e52008-08-31 15:37:04 +0000946 if (ConstantSDNode
947 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000948 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000949 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
950 // that the base operand remains free for further matching. If
951 // the base doesn't end up getting used, a post-processing step
952 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000953 if (Val == 1 || Val == 2 || Val == 3) {
954 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +0000955 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000956
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000957 // Okay, we know that we have a scale by now. However, if the scaled
958 // value is an add of something and a constant, we can fold the
959 // constant into the disp field here.
Dan Gohmana10756e2010-01-21 02:09:26 +0000960 if (ShVal.getNode()->getOpcode() == ISD::ADD &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000961 isa<ConstantSDNode>(ShVal.getNode()->getOperand(1))) {
962 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000963 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +0000964 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +0000965 uint64_t Disp = AM.Disp + (AddVal->getSExtValue() << Val);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000966 if (!is64Bit ||
967 X86::isOffsetSuitableForCodeModel(Disp, M,
968 AM.hasSymbolicDisplacement()))
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000969 AM.Disp = Disp;
970 else
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000971 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000972 } else {
973 AM.IndexReg = ShVal;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000974 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000975 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000976 }
977 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000978 }
Evan Chengec693f72005-12-08 02:01:35 +0000979
Dan Gohman83688052007-10-22 20:22:24 +0000980 case ISD::SMUL_LOHI:
981 case ISD::UMUL_LOHI:
982 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000983 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +0000984 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000985 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +0000986 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000987 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +0000988 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Gabor Greifba36cb52008-08-28 21:40:38 +0000989 AM.Base.Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +0000990 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +0000991 if (ConstantSDNode
992 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000993 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
994 CN->getZExtValue() == 9) {
995 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000996
Gabor Greifba36cb52008-08-28 21:40:38 +0000997 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000998 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000999
1000 // Okay, we know that we have a scale by now. However, if the scaled
1001 // value is an add of something and a constant, we can fold the
1002 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001003 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1004 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1005 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001006 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001007 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Evan Cheng8e278262009-01-17 07:09:27 +00001008 uint64_t Disp = AM.Disp + AddVal->getSExtValue() *
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001009 CN->getZExtValue();
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001010 if (!is64Bit ||
1011 X86::isOffsetSuitableForCodeModel(Disp, M,
1012 AM.hasSymbolicDisplacement()))
Evan Cheng25ab6902006-09-08 06:48:29 +00001013 AM.Disp = Disp;
1014 else
Gabor Greifba36cb52008-08-28 21:40:38 +00001015 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001016 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001017 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001018 }
1019
1020 AM.IndexReg = AM.Base.Reg = Reg;
1021 return false;
1022 }
Chris Lattner62412262007-02-04 20:18:17 +00001023 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001024 break;
1025
Dan Gohman3cd90a12009-05-11 18:02:53 +00001026 case ISD::SUB: {
1027 // Given A-B, if A can be completely folded into the address and
1028 // the index field with the index field unused, use -B as the index.
1029 // This is a win if a has multiple parts that can be folded into
1030 // the address. Also, this saves a mov if the base register has
1031 // other uses, since it avoids a two-address sub instruction, however
1032 // it costs an additional mov if the index register has other uses.
1033
1034 // Test if the LHS of the sub can be folded.
1035 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001036 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001037 AM = Backup;
1038 break;
1039 }
1040 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001041 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001042 AM = Backup;
1043 break;
1044 }
1045 int Cost = 0;
1046 SDValue RHS = N.getNode()->getOperand(1);
1047 // If the RHS involves a register with multiple uses, this
1048 // transformation incurs an extra mov, due to the neg instruction
1049 // clobbering its operand.
1050 if (!RHS.getNode()->hasOneUse() ||
1051 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1052 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1053 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1054 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001055 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001056 ++Cost;
1057 // If the base is a register with multiple uses, this
1058 // transformation may save a mov.
1059 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
1060 AM.Base.Reg.getNode() &&
1061 !AM.Base.Reg.getNode()->hasOneUse()) ||
1062 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1063 --Cost;
1064 // If the folded LHS was interesting, this transformation saves
1065 // address arithmetic.
1066 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1067 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1068 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1069 --Cost;
1070 // If it doesn't look like it may be an overall win, don't do it.
1071 if (Cost >= 0) {
1072 AM = Backup;
1073 break;
1074 }
1075
1076 // Ok, the transformation is legal and appears profitable. Go for it.
1077 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1078 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1079 AM.IndexReg = Neg;
1080 AM.Scale = 1;
1081
1082 // Insert the new nodes into the topological ordering.
1083 if (Zero.getNode()->getNodeId() == -1 ||
1084 Zero.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1085 CurDAG->RepositionNode(N.getNode(), Zero.getNode());
1086 Zero.getNode()->setNodeId(N.getNode()->getNodeId());
1087 }
1088 if (Neg.getNode()->getNodeId() == -1 ||
1089 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1090 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
1091 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
1092 }
1093 return false;
1094 }
1095
Evan Cheng8e278262009-01-17 07:09:27 +00001096 case ISD::ADD: {
1097 X86ISelAddressMode Backup = AM;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001098 if (!MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1) &&
1099 !MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001100 return false;
1101 AM = Backup;
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001102 if (!MatchAddressRecursively(N.getNode()->getOperand(1), AM, Depth+1) &&
1103 !MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1))
Evan Cheng8e278262009-01-17 07:09:27 +00001104 return false;
1105 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001106
1107 // If we couldn't fold both operands into the address at the same time,
1108 // see if we can just put each operand into a register and fold at least
1109 // the add.
1110 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1111 !AM.Base.Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001112 !AM.IndexReg.getNode()) {
Dan Gohman77502c92009-03-13 02:25:09 +00001113 AM.Base.Reg = N.getNode()->getOperand(0);
1114 AM.IndexReg = N.getNode()->getOperand(1);
1115 AM.Scale = 1;
1116 return false;
1117 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001118 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001119 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001120
Chris Lattner62412262007-02-04 20:18:17 +00001121 case ISD::OR:
1122 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001123 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N.getOperand(1))) {
1124 X86ISelAddressMode Backup = AM;
Dan Gohman27cae7b2008-11-11 15:52:29 +00001125 uint64_t Offset = CN->getSExtValue();
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001126 // Start with the LHS as an addr mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001127 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001128 // Address could not have picked a GV address for the displacement.
1129 AM.GV == NULL &&
1130 // On x86-64, the resultant disp must fit in 32-bits.
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001131 (!is64Bit ||
1132 X86::isOffsetSuitableForCodeModel(AM.Disp + Offset, M,
1133 AM.hasSymbolicDisplacement())) &&
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001134 // Check to see if the LHS & C is zero.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001135 CurDAG->MaskedValueIsZero(N.getOperand(0), CN->getAPIntValue())) {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001136 AM.Disp += Offset;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001137 return false;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001138 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001139 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001140 }
1141 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001142
1143 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001144 // Perform some heroic transforms on an and of a constant-count shift
1145 // with a constant to enable use of the scaled offset field.
1146
Dan Gohman475871a2008-07-27 21:46:04 +00001147 SDValue Shift = N.getOperand(0);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001148 if (Shift.getNumOperands() != 2) break;
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001149
Evan Cheng1314b002007-12-13 00:43:27 +00001150 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001151 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001152
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001153 SDValue X = Shift.getOperand(0);
Evan Cheng1314b002007-12-13 00:43:27 +00001154 ConstantSDNode *C2 = dyn_cast<ConstantSDNode>(N.getOperand(1));
1155 ConstantSDNode *C1 = dyn_cast<ConstantSDNode>(Shift.getOperand(1));
1156 if (!C1 || !C2) break;
1157
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001158 // Handle "(X >> (8-C1)) & C2" as "(X >> 8) & 0xff)" if safe. This
1159 // allows us to convert the shift and and into an h-register extract and
1160 // a scaled index.
1161 if (Shift.getOpcode() == ISD::SRL && Shift.hasOneUse()) {
1162 unsigned ScaleLog = 8 - C1->getZExtValue();
Rafael Espindola7c366832009-04-16 12:34:53 +00001163 if (ScaleLog > 0 && ScaleLog < 4 &&
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001164 C2->getZExtValue() == (UINT64_C(0xff) << ScaleLog)) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001165 SDValue Eight = CurDAG->getConstant(8, MVT::i8);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001166 SDValue Mask = CurDAG->getConstant(0xff, N.getValueType());
1167 SDValue Srl = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
1168 X, Eight);
1169 SDValue And = CurDAG->getNode(ISD::AND, dl, N.getValueType(),
1170 Srl, Mask);
Owen Anderson825b72b2009-08-11 20:47:22 +00001171 SDValue ShlCount = CurDAG->getConstant(ScaleLog, MVT::i8);
Dan Gohman62ad1382009-04-14 22:45:05 +00001172 SDValue Shl = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
1173 And, ShlCount);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001174
1175 // Insert the new nodes into the topological ordering.
1176 if (Eight.getNode()->getNodeId() == -1 ||
1177 Eight.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1178 CurDAG->RepositionNode(X.getNode(), Eight.getNode());
1179 Eight.getNode()->setNodeId(X.getNode()->getNodeId());
1180 }
1181 if (Mask.getNode()->getNodeId() == -1 ||
1182 Mask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1183 CurDAG->RepositionNode(X.getNode(), Mask.getNode());
1184 Mask.getNode()->setNodeId(X.getNode()->getNodeId());
1185 }
1186 if (Srl.getNode()->getNodeId() == -1 ||
1187 Srl.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1188 CurDAG->RepositionNode(Shift.getNode(), Srl.getNode());
1189 Srl.getNode()->setNodeId(Shift.getNode()->getNodeId());
1190 }
1191 if (And.getNode()->getNodeId() == -1 ||
1192 And.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1193 CurDAG->RepositionNode(N.getNode(), And.getNode());
1194 And.getNode()->setNodeId(N.getNode()->getNodeId());
1195 }
Dan Gohman62ad1382009-04-14 22:45:05 +00001196 if (ShlCount.getNode()->getNodeId() == -1 ||
1197 ShlCount.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1198 CurDAG->RepositionNode(X.getNode(), ShlCount.getNode());
1199 ShlCount.getNode()->setNodeId(N.getNode()->getNodeId());
1200 }
1201 if (Shl.getNode()->getNodeId() == -1 ||
1202 Shl.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1203 CurDAG->RepositionNode(N.getNode(), Shl.getNode());
1204 Shl.getNode()->setNodeId(N.getNode()->getNodeId());
1205 }
1206 CurDAG->ReplaceAllUsesWith(N, Shl);
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001207 AM.IndexReg = And;
1208 AM.Scale = (1 << ScaleLog);
1209 return false;
1210 }
1211 }
1212
1213 // Handle "(X << C1) & C2" as "(X & (C2>>C1)) << C1" if safe and if this
1214 // allows us to fold the shift into this addressing mode.
1215 if (Shift.getOpcode() != ISD::SHL) break;
1216
Evan Cheng1314b002007-12-13 00:43:27 +00001217 // Not likely to be profitable if either the AND or SHIFT node has more
1218 // than one use (unless all uses are for address computation). Besides,
1219 // isel mechanism requires their node ids to be reused.
1220 if (!N.hasOneUse() || !Shift.hasOneUse())
1221 break;
1222
1223 // Verify that the shift amount is something we can fold.
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001224 unsigned ShiftCst = C1->getZExtValue();
Evan Cheng1314b002007-12-13 00:43:27 +00001225 if (ShiftCst != 1 && ShiftCst != 2 && ShiftCst != 3)
1226 break;
1227
1228 // Get the new AND mask, this folds to a constant.
Dale Johannesend8392542009-02-03 21:48:12 +00001229 SDValue NewANDMask = CurDAG->getNode(ISD::SRL, dl, N.getValueType(),
Evan Cheng552e3be2008-10-14 17:15:39 +00001230 SDValue(C2, 0), SDValue(C1, 0));
Dale Johannesend8392542009-02-03 21:48:12 +00001231 SDValue NewAND = CurDAG->getNode(ISD::AND, dl, N.getValueType(), X,
1232 NewANDMask);
1233 SDValue NewSHIFT = CurDAG->getNode(ISD::SHL, dl, N.getValueType(),
Dan Gohman7b8e9642008-10-13 20:52:04 +00001234 NewAND, SDValue(C1, 0));
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001235
1236 // Insert the new nodes into the topological ordering.
1237 if (C1->getNodeId() > X.getNode()->getNodeId()) {
1238 CurDAG->RepositionNode(X.getNode(), C1);
1239 C1->setNodeId(X.getNode()->getNodeId());
1240 }
1241 if (NewANDMask.getNode()->getNodeId() == -1 ||
1242 NewANDMask.getNode()->getNodeId() > X.getNode()->getNodeId()) {
1243 CurDAG->RepositionNode(X.getNode(), NewANDMask.getNode());
1244 NewANDMask.getNode()->setNodeId(X.getNode()->getNodeId());
1245 }
1246 if (NewAND.getNode()->getNodeId() == -1 ||
1247 NewAND.getNode()->getNodeId() > Shift.getNode()->getNodeId()) {
1248 CurDAG->RepositionNode(Shift.getNode(), NewAND.getNode());
1249 NewAND.getNode()->setNodeId(Shift.getNode()->getNodeId());
1250 }
1251 if (NewSHIFT.getNode()->getNodeId() == -1 ||
1252 NewSHIFT.getNode()->getNodeId() > N.getNode()->getNodeId()) {
1253 CurDAG->RepositionNode(N.getNode(), NewSHIFT.getNode());
1254 NewSHIFT.getNode()->setNodeId(N.getNode()->getNodeId());
1255 }
1256
Dan Gohman7b8e9642008-10-13 20:52:04 +00001257 CurDAG->ReplaceAllUsesWith(N, NewSHIFT);
Evan Cheng1314b002007-12-13 00:43:27 +00001258
1259 AM.Scale = 1 << ShiftCst;
1260 AM.IndexReg = NewAND;
1261 return false;
1262 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001263 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001264
Rafael Espindola523249f2009-03-31 16:16:57 +00001265 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001266}
1267
1268/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1269/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001270bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001271 // Is the base register already occupied?
Gabor Greifba36cb52008-08-28 21:40:38 +00001272 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base.Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001273 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001274 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001275 AM.IndexReg = N;
1276 AM.Scale = 1;
1277 return false;
1278 }
1279
1280 // Otherwise, we cannot select it.
1281 return true;
1282 }
1283
1284 // Default, generate it as a register.
1285 AM.BaseType = X86ISelAddressMode::RegBase;
1286 AM.Base.Reg = N;
1287 return false;
1288}
1289
Evan Chengec693f72005-12-08 02:01:35 +00001290/// SelectAddr - returns true if it is able pattern match an addressing mode.
1291/// It returns the operands which make up the maximal addressing mode it can
1292/// match by reference.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001293bool X86DAGToDAGISel::SelectAddr(SDNode *Op, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001294 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001295 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001296 X86ISelAddressMode AM;
Evan Chengc7928f82009-12-18 01:59:21 +00001297 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001298 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001299
Owen Andersone50ed302009-08-10 22:56:29 +00001300 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001301 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001302 if (!AM.Base.Reg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001303 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001304 }
Evan Cheng8700e142006-01-11 06:09:51 +00001305
Gabor Greifba36cb52008-08-28 21:40:38 +00001306 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001307 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001308
Rafael Espindola094fad32009-04-08 21:14:34 +00001309 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001310 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001311}
1312
Chris Lattner3a7cd952006-10-07 21:55:32 +00001313/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1314/// match a load whose top elements are either undef or zeros. The load flavor
1315/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001316///
1317/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001318/// PatternChainNode: this is the matched node that has a chain input and
1319/// output.
1320bool X86DAGToDAGISel::SelectScalarSSELoadXXX(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001321 SDValue N, SDValue &Base,
1322 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001323 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001324 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001325 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001326 PatternNodeWithChain = N.getOperand(0);
1327 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1328 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001329 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1330 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001331 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattner92d3ada2010-02-16 22:35:06 +00001332 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp,Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001333 return false;
1334 return true;
1335 }
1336 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001337
1338 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001339 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001340 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001341 // Check to see if the top elements are all zeros (or bitcast of zeros).
Evan Cheng7e2ff772008-05-08 00:57:18 +00001342 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001343 N.getOperand(0).getNode()->hasOneUse() &&
1344 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001345 N.getOperand(0).getOperand(0).hasOneUse() &&
1346 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
1347 IsLegalToFold(N.getOperand(0), N.getNode(), Root)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001348 // Okay, this is a zero extending load. Fold it.
1349 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattner92d3ada2010-02-16 22:35:06 +00001350 if (!SelectAddr(Root, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001351 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001352 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001353 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001354 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001355 return false;
1356}
1357
1358
Evan Cheng51a9ed92006-02-25 10:09:08 +00001359/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1360/// mode it matches can be cost effectively emitted as an LEA instruction.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001361bool X86DAGToDAGISel::SelectLEAAddr(SDNode *Op, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001362 SDValue &Base, SDValue &Scale,
1363 SDValue &Index, SDValue &Disp) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001364 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001365
1366 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1367 // segments.
1368 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001369 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001370 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001371 if (MatchAddress(N, AM))
1372 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001373 assert (T == AM.Segment);
1374 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001375
Owen Andersone50ed302009-08-10 22:56:29 +00001376 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001377 unsigned Complexity = 0;
1378 if (AM.BaseType == X86ISelAddressMode::RegBase)
Gabor Greifba36cb52008-08-28 21:40:38 +00001379 if (AM.Base.Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001380 Complexity = 1;
1381 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001382 AM.Base.Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001383 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1384 Complexity = 4;
1385
Gabor Greifba36cb52008-08-28 21:40:38 +00001386 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001387 Complexity++;
1388 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001389 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001390
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001391 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1392 // a simple shift.
1393 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001394 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001395
1396 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1397 // to a LEA. This is determined with some expermentation but is by no means
1398 // optimal (especially for code size consideration). LEA is nice because of
1399 // its three-address nature. Tweak the cost function again when we can run
1400 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001401 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001402 // For X86-64, we should always use lea to materialize RIP relative
1403 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001404 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001405 Complexity = 4;
1406 else
1407 Complexity += 2;
1408 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001409
Gabor Greifba36cb52008-08-28 21:40:38 +00001410 if (AM.Disp && (AM.Base.Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001411 Complexity++;
1412
Chris Lattner25142782009-07-11 22:50:33 +00001413 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001414 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001415 return false;
1416
1417 SDValue Segment;
1418 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1419 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001420}
1421
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001422/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001423bool X86DAGToDAGISel::SelectTLSADDRAddr(SDNode *Op, SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001424 SDValue &Scale, SDValue &Index,
1425 SDValue &Disp) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001426 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1427 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
1428
1429 X86ISelAddressMode AM;
1430 AM.GV = GA->getGlobal();
1431 AM.Disp += GA->getOffset();
1432 AM.Base.Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001433 AM.SymbolFlags = GA->getTargetFlags();
1434
Owen Anderson825b72b2009-08-11 20:47:22 +00001435 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001436 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001437 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001438 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001439 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001440 }
1441
1442 SDValue Segment;
1443 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1444 return true;
1445}
1446
1447
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001448bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001449 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001450 SDValue &Index, SDValue &Disp,
1451 SDValue &Segment) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001452 if (ISD::isNON_EXTLoad(N.getNode()) &&
Evan Cheng014bf212010-02-15 19:41:07 +00001453 IsProfitableToFold(N, P, P) &&
1454 IsLegalToFold(N, P, P))
Rafael Espindola094fad32009-04-08 21:14:34 +00001455 return SelectAddr(P, N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001456 return false;
1457}
1458
Dan Gohman8b746962008-09-23 18:22:58 +00001459/// getGlobalBaseReg - Return an SDNode that returns the value of
1460/// the global base register. Output instructions required to
1461/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001462///
Evan Cheng9ade2182006-08-26 05:34:46 +00001463SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001464 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001465 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001466}
1467
Evan Chengb245d922006-05-20 01:36:52 +00001468static SDNode *FindCallStartFromCall(SDNode *Node) {
1469 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Owen Anderson825b72b2009-08-11 20:47:22 +00001470 assert(Node->getOperand(0).getValueType() == MVT::Other &&
Evan Chengb245d922006-05-20 01:36:52 +00001471 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +00001472 return FindCallStartFromCall(Node->getOperand(0).getNode());
Evan Chengb245d922006-05-20 01:36:52 +00001473}
1474
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001475SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1476 SDValue Chain = Node->getOperand(0);
1477 SDValue In1 = Node->getOperand(1);
1478 SDValue In2L = Node->getOperand(2);
1479 SDValue In2H = Node->getOperand(3);
Rafael Espindola094fad32009-04-08 21:14:34 +00001480 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001481 if (!SelectAddr(In1.getNode(), In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001482 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001483 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1484 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1485 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1486 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1487 MVT::i32, MVT::i32, MVT::Other, Ops,
1488 array_lengthof(Ops));
1489 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1490 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001491}
Christopher Lambc59e5212007-08-10 21:48:46 +00001492
Owen Andersone50ed302009-08-10 22:56:29 +00001493SDNode *X86DAGToDAGISel::SelectAtomicLoadAdd(SDNode *Node, EVT NVT) {
Evan Cheng37b73872009-07-30 08:33:02 +00001494 if (Node->hasAnyUseOfValue(0))
1495 return 0;
1496
1497 // Optimize common patterns for __sync_add_and_fetch and
1498 // __sync_sub_and_fetch where the result is not used. This allows us
1499 // to use "lock" version of add, sub, inc, dec instructions.
1500 // FIXME: Do not use special instructions but instead add the "lock"
1501 // prefix to the target node somehow. The extra information will then be
1502 // transferred to machine instruction and it denotes the prefix.
1503 SDValue Chain = Node->getOperand(0);
1504 SDValue Ptr = Node->getOperand(1);
1505 SDValue Val = Node->getOperand(2);
1506 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001507 if (!SelectAddr(Ptr.getNode(), Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Evan Cheng37b73872009-07-30 08:33:02 +00001508 return 0;
1509
1510 bool isInc = false, isDec = false, isSub = false, isCN = false;
1511 ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val);
1512 if (CN) {
1513 isCN = true;
1514 int64_t CNVal = CN->getSExtValue();
1515 if (CNVal == 1)
1516 isInc = true;
1517 else if (CNVal == -1)
1518 isDec = true;
1519 else if (CNVal >= 0)
1520 Val = CurDAG->getTargetConstant(CNVal, NVT);
1521 else {
1522 isSub = true;
1523 Val = CurDAG->getTargetConstant(-CNVal, NVT);
1524 }
1525 } else if (Val.hasOneUse() &&
1526 Val.getOpcode() == ISD::SUB &&
1527 X86::isZeroNode(Val.getOperand(0))) {
1528 isSub = true;
1529 Val = Val.getOperand(1);
1530 }
1531
1532 unsigned Opc = 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001533 switch (NVT.getSimpleVT().SimpleTy) {
Evan Cheng37b73872009-07-30 08:33:02 +00001534 default: return 0;
Owen Anderson825b72b2009-08-11 20:47:22 +00001535 case MVT::i8:
Evan Cheng37b73872009-07-30 08:33:02 +00001536 if (isInc)
1537 Opc = X86::LOCK_INC8m;
1538 else if (isDec)
1539 Opc = X86::LOCK_DEC8m;
1540 else if (isSub) {
1541 if (isCN)
1542 Opc = X86::LOCK_SUB8mi;
1543 else
1544 Opc = X86::LOCK_SUB8mr;
1545 } else {
1546 if (isCN)
1547 Opc = X86::LOCK_ADD8mi;
1548 else
1549 Opc = X86::LOCK_ADD8mr;
1550 }
1551 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001552 case MVT::i16:
Evan Cheng37b73872009-07-30 08:33:02 +00001553 if (isInc)
1554 Opc = X86::LOCK_INC16m;
1555 else if (isDec)
1556 Opc = X86::LOCK_DEC16m;
1557 else if (isSub) {
1558 if (isCN) {
1559 if (Predicate_i16immSExt8(Val.getNode()))
1560 Opc = X86::LOCK_SUB16mi8;
1561 else
1562 Opc = X86::LOCK_SUB16mi;
1563 } else
1564 Opc = X86::LOCK_SUB16mr;
1565 } else {
1566 if (isCN) {
1567 if (Predicate_i16immSExt8(Val.getNode()))
1568 Opc = X86::LOCK_ADD16mi8;
1569 else
1570 Opc = X86::LOCK_ADD16mi;
1571 } else
1572 Opc = X86::LOCK_ADD16mr;
1573 }
1574 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001575 case MVT::i32:
Evan Cheng37b73872009-07-30 08:33:02 +00001576 if (isInc)
1577 Opc = X86::LOCK_INC32m;
1578 else if (isDec)
1579 Opc = X86::LOCK_DEC32m;
1580 else if (isSub) {
1581 if (isCN) {
1582 if (Predicate_i32immSExt8(Val.getNode()))
1583 Opc = X86::LOCK_SUB32mi8;
1584 else
1585 Opc = X86::LOCK_SUB32mi;
1586 } else
1587 Opc = X86::LOCK_SUB32mr;
1588 } else {
1589 if (isCN) {
1590 if (Predicate_i32immSExt8(Val.getNode()))
1591 Opc = X86::LOCK_ADD32mi8;
1592 else
1593 Opc = X86::LOCK_ADD32mi;
1594 } else
1595 Opc = X86::LOCK_ADD32mr;
1596 }
1597 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001598 case MVT::i64:
Evan Cheng37b73872009-07-30 08:33:02 +00001599 if (isInc)
1600 Opc = X86::LOCK_INC64m;
1601 else if (isDec)
1602 Opc = X86::LOCK_DEC64m;
1603 else if (isSub) {
1604 Opc = X86::LOCK_SUB64mr;
1605 if (isCN) {
1606 if (Predicate_i64immSExt8(Val.getNode()))
1607 Opc = X86::LOCK_SUB64mi8;
1608 else if (Predicate_i64immSExt32(Val.getNode()))
1609 Opc = X86::LOCK_SUB64mi32;
1610 }
1611 } else {
1612 Opc = X86::LOCK_ADD64mr;
1613 if (isCN) {
1614 if (Predicate_i64immSExt8(Val.getNode()))
1615 Opc = X86::LOCK_ADD64mi8;
1616 else if (Predicate_i64immSExt32(Val.getNode()))
1617 Opc = X86::LOCK_ADD64mi32;
1618 }
1619 }
1620 break;
1621 }
1622
1623 DebugLoc dl = Node->getDebugLoc();
Chris Lattner518bb532010-02-09 19:54:29 +00001624 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
Dan Gohman602b0c82009-09-25 18:54:59 +00001625 dl, NVT), 0);
Dan Gohmanc76909a2009-09-25 20:36:54 +00001626 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1627 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Evan Cheng37b73872009-07-30 08:33:02 +00001628 if (isInc || isDec) {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001629 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1630 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 6), 0);
1631 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001632 SDValue RetVals[] = { Undef, Ret };
1633 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1634 } else {
Dan Gohmanc76909a2009-09-25 20:36:54 +00001635 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1636 SDValue Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops, 7), 0);
1637 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Evan Cheng37b73872009-07-30 08:33:02 +00001638 SDValue RetVals[] = { Undef, Ret };
1639 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1640 }
1641}
1642
Dan Gohman11596ed2009-10-09 20:35:19 +00001643/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1644/// any uses which require the SF or OF bits to be accurate.
1645static bool HasNoSignedComparisonUses(SDNode *N) {
1646 // Examine each user of the node.
1647 for (SDNode::use_iterator UI = N->use_begin(),
1648 UE = N->use_end(); UI != UE; ++UI) {
1649 // Only examine CopyToReg uses.
1650 if (UI->getOpcode() != ISD::CopyToReg)
1651 return false;
1652 // Only examine CopyToReg uses that copy to EFLAGS.
1653 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1654 X86::EFLAGS)
1655 return false;
1656 // Examine each user of the CopyToReg use.
1657 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1658 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1659 // Only examine the Flag result.
1660 if (FlagUI.getUse().getResNo() != 1) continue;
1661 // Anything unusual: assume conservatively.
1662 if (!FlagUI->isMachineOpcode()) return false;
1663 // Examine the opcode of the user.
1664 switch (FlagUI->getMachineOpcode()) {
1665 // These comparisons don't treat the most significant bit specially.
1666 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1667 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1668 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1669 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001670 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1671 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001672 case X86::CMOVA16rr: case X86::CMOVA16rm:
1673 case X86::CMOVA32rr: case X86::CMOVA32rm:
1674 case X86::CMOVA64rr: case X86::CMOVA64rm:
1675 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1676 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1677 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1678 case X86::CMOVB16rr: case X86::CMOVB16rm:
1679 case X86::CMOVB32rr: case X86::CMOVB32rm:
1680 case X86::CMOVB64rr: case X86::CMOVB64rm:
1681 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1682 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1683 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
1684 case X86::CMOVE16rr: case X86::CMOVE16rm:
1685 case X86::CMOVE32rr: case X86::CMOVE32rm:
1686 case X86::CMOVE64rr: case X86::CMOVE64rm:
1687 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1688 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1689 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1690 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1691 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1692 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1693 case X86::CMOVP16rr: case X86::CMOVP16rm:
1694 case X86::CMOVP32rr: case X86::CMOVP32rm:
1695 case X86::CMOVP64rr: case X86::CMOVP64rm:
1696 continue;
1697 // Anything else: assume conservatively.
1698 default: return false;
1699 }
1700 }
1701 }
1702 return true;
1703}
1704
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001705SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001706 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001707 unsigned Opc, MOpc;
1708 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001709 DebugLoc dl = Node->getDebugLoc();
1710
Evan Chengf597dc72006-02-10 22:24:32 +00001711#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001712 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001713 dbgs() << std::string(Indent, ' ') << "Selecting: ";
Bill Wendling12321672009-08-07 21:33:25 +00001714 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001715 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001716 });
Evan Cheng23addc02006-02-10 22:46:26 +00001717 Indent += 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001718#endif
1719
Dan Gohmane8be6c62008-07-17 19:10:17 +00001720 if (Node->isMachineOpcode()) {
Evan Chengf597dc72006-02-10 22:24:32 +00001721#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001722 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001723 dbgs() << std::string(Indent-2, ' ') << "== ";
Bill Wendling12321672009-08-07 21:33:25 +00001724 Node->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001725 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001726 });
Evan Cheng23addc02006-02-10 22:46:26 +00001727 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00001728#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00001729 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001730 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001731
Evan Cheng0114e942006-01-06 20:36:21 +00001732 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001733 default: break;
1734 case X86ISD::GlobalBaseReg:
1735 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00001736
Dan Gohman72677342009-08-02 16:10:52 +00001737 case X86ISD::ATOMOR64_DAG:
1738 return SelectAtomic64(Node, X86::ATOMOR6432);
1739 case X86ISD::ATOMXOR64_DAG:
1740 return SelectAtomic64(Node, X86::ATOMXOR6432);
1741 case X86ISD::ATOMADD64_DAG:
1742 return SelectAtomic64(Node, X86::ATOMADD6432);
1743 case X86ISD::ATOMSUB64_DAG:
1744 return SelectAtomic64(Node, X86::ATOMSUB6432);
1745 case X86ISD::ATOMNAND64_DAG:
1746 return SelectAtomic64(Node, X86::ATOMNAND6432);
1747 case X86ISD::ATOMAND64_DAG:
1748 return SelectAtomic64(Node, X86::ATOMAND6432);
1749 case X86ISD::ATOMSWAP64_DAG:
1750 return SelectAtomic64(Node, X86::ATOMSWAP6432);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001751
Dan Gohman72677342009-08-02 16:10:52 +00001752 case ISD::ATOMIC_LOAD_ADD: {
1753 SDNode *RetVal = SelectAtomicLoadAdd(Node, NVT);
1754 if (RetVal)
1755 return RetVal;
1756 break;
1757 }
1758
1759 case ISD::SMUL_LOHI:
1760 case ISD::UMUL_LOHI: {
1761 SDValue N0 = Node->getOperand(0);
1762 SDValue N1 = Node->getOperand(1);
1763
1764 bool isSigned = Opcode == ISD::SMUL_LOHI;
Bill Wendling12321672009-08-07 21:33:25 +00001765 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001766 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001767 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001768 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
1769 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
1770 case MVT::i32: Opc = X86::MUL32r; MOpc = X86::MUL32m; break;
1771 case MVT::i64: Opc = X86::MUL64r; MOpc = X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001772 }
Bill Wendling12321672009-08-07 21:33:25 +00001773 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001774 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001775 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001776 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
1777 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
1778 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
1779 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001780 }
Bill Wendling12321672009-08-07 21:33:25 +00001781 }
Dan Gohman72677342009-08-02 16:10:52 +00001782
1783 unsigned LoReg, HiReg;
Owen Anderson825b72b2009-08-11 20:47:22 +00001784 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001785 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001786 case MVT::i8: LoReg = X86::AL; HiReg = X86::AH; break;
1787 case MVT::i16: LoReg = X86::AX; HiReg = X86::DX; break;
1788 case MVT::i32: LoReg = X86::EAX; HiReg = X86::EDX; break;
1789 case MVT::i64: LoReg = X86::RAX; HiReg = X86::RDX; break;
Dan Gohman72677342009-08-02 16:10:52 +00001790 }
1791
1792 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001793 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00001794 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00001795 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001796 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001797 if (foldedLoad)
1798 std::swap(N0, N1);
1799 }
1800
1801 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
1802 N0, SDValue()).getValue(1);
1803
1804 if (foldedLoad) {
1805 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1806 InFlag };
1807 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001808 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1809 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001810 InFlag = SDValue(CNode, 1);
1811 // Update the chain.
1812 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1813 } else {
1814 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001815 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001816 }
1817
1818 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001819 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001820 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1821 LoReg, NVT, InFlag);
1822 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001823 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001824#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001825 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001826 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001827 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001828 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001829 });
Dan Gohman72677342009-08-02 16:10:52 +00001830#endif
1831 }
1832 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001833 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001834 SDValue Result;
1835 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1836 // Prevent use of AH in a REX instruction by referencing AX instead.
1837 // Shift it down 8 bits.
1838 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001839 X86::AX, MVT::i16, InFlag);
Dan Gohman72677342009-08-02 16:10:52 +00001840 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001841 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
1842 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001843 CurDAG->getTargetConstant(8, MVT::i8)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001844 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00001845 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
1846 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00001847 } else {
1848 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1849 HiReg, NVT, InFlag);
1850 InFlag = Result.getValue(2);
1851 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001852 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001853#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001854 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001855 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001856 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001857 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001858 });
Dan Gohman72677342009-08-02 16:10:52 +00001859#endif
1860 }
1861
1862#ifndef NDEBUG
1863 Indent -= 2;
1864#endif
1865
1866 return NULL;
1867 }
1868
1869 case ISD::SDIVREM:
1870 case ISD::UDIVREM: {
1871 SDValue N0 = Node->getOperand(0);
1872 SDValue N1 = Node->getOperand(1);
1873
1874 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00001875 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00001876 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001877 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001878 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
1879 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
1880 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
1881 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001882 }
Bill Wendling12321672009-08-07 21:33:25 +00001883 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001884 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001885 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001886 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
1887 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
1888 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
1889 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00001890 }
Bill Wendling12321672009-08-07 21:33:25 +00001891 }
Dan Gohman72677342009-08-02 16:10:52 +00001892
Chris Lattner9e323832009-12-23 01:45:04 +00001893 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00001894 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00001895 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00001896 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00001897 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00001898 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00001899 ClrOpcode = 0;
1900 SExtOpcode = X86::CBW;
1901 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001902 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00001903 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001904 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00001905 SExtOpcode = X86::CWD;
1906 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001907 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00001908 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00001909 ClrOpcode = X86::MOV32r0;
1910 SExtOpcode = X86::CDQ;
1911 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00001912 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00001913 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001914 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00001915 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00001916 break;
1917 }
1918
Dan Gohman72677342009-08-02 16:10:52 +00001919 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001920 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00001921 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00001922
Dan Gohman72677342009-08-02 16:10:52 +00001923 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00001924 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00001925 // Special case for div8, just use a move with zero extension to AX to
1926 // clear the upper 8 bits (AH).
1927 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001928 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00001929 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
1930 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001931 SDValue(CurDAG->getMachineNode(X86::MOVZX16rm8, dl, MVT::i16,
1932 MVT::Other, Ops,
1933 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001934 Chain = Move.getValue(1);
1935 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00001936 } else {
Dan Gohman72677342009-08-02 16:10:52 +00001937 Move =
Dan Gohman602b0c82009-09-25 18:54:59 +00001938 SDValue(CurDAG->getMachineNode(X86::MOVZX16rr8, dl, MVT::i16, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00001939 Chain = CurDAG->getEntryNode();
1940 }
1941 Chain = CurDAG->getCopyToReg(Chain, dl, X86::AX, Move, SDValue());
1942 InFlag = Chain.getValue(1);
1943 } else {
1944 InFlag =
1945 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
1946 LoReg, N0, SDValue()).getValue(1);
1947 if (isSigned && !signBitIsZero) {
1948 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00001949 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001950 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Flag, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00001951 } else {
1952 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00001953 SDValue ClrNode =
1954 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00001955 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00001956 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00001957 }
Evan Cheng948f3432006-01-06 23:19:29 +00001958 }
Dan Gohman525178c2007-10-08 18:33:35 +00001959
Dan Gohman72677342009-08-02 16:10:52 +00001960 if (foldedLoad) {
1961 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
1962 InFlag };
1963 SDNode *CNode =
Dan Gohman602b0c82009-09-25 18:54:59 +00001964 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Flag, Ops,
1965 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00001966 InFlag = SDValue(CNode, 1);
1967 // Update the chain.
1968 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
1969 } else {
1970 InFlag =
Dan Gohman602b0c82009-09-25 18:54:59 +00001971 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Flag, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00001972 }
Evan Cheng948f3432006-01-06 23:19:29 +00001973
Dan Gohman72677342009-08-02 16:10:52 +00001974 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001975 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001976 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
1977 LoReg, NVT, InFlag);
1978 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001979 ReplaceUses(SDValue(Node, 0), Result);
Dan Gohman72677342009-08-02 16:10:52 +00001980#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00001981 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00001982 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00001983 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00001984 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00001985 });
Dan Gohman72677342009-08-02 16:10:52 +00001986#endif
1987 }
1988 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001989 if (!SDValue(Node, 1).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00001990 SDValue Result;
1991 if (HiReg == X86::AH && Subtarget->is64Bit()) {
1992 // Prevent use of AH in a REX instruction by referencing AX instead.
1993 // Shift it down 8 bits.
1994 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
Owen Anderson825b72b2009-08-11 20:47:22 +00001995 X86::AX, MVT::i16, InFlag);
Dan Gohmana37c9f72007-09-25 18:23:27 +00001996 InFlag = Result.getValue(2);
Dan Gohman602b0c82009-09-25 18:54:59 +00001997 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
Dan Gohman72677342009-08-02 16:10:52 +00001998 Result,
Owen Anderson825b72b2009-08-11 20:47:22 +00001999 CurDAG->getTargetConstant(8, MVT::i8)),
Dan Gohman72677342009-08-02 16:10:52 +00002000 0);
2001 // Then truncate it down to i8.
Dan Gohman6a402dc2009-08-19 18:16:17 +00002002 Result = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2003 MVT::i8, Result);
Dan Gohman72677342009-08-02 16:10:52 +00002004 } else {
2005 Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2006 HiReg, NVT, InFlag);
2007 InFlag = Result.getValue(2);
Evan Chengf7ef26e2007-08-09 21:59:35 +00002008 }
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002009 ReplaceUses(SDValue(Node, 1), Result);
Dan Gohmana37c9f72007-09-25 18:23:27 +00002010#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002011 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00002012 dbgs() << std::string(Indent-2, ' ') << "=> ";
Bill Wendling12321672009-08-07 21:33:25 +00002013 Result.getNode()->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00002014 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002015 });
Dan Gohmana37c9f72007-09-25 18:23:27 +00002016#endif
Dan Gohman72677342009-08-02 16:10:52 +00002017 }
Evan Chengf597dc72006-02-10 22:24:32 +00002018
2019#ifndef NDEBUG
Dan Gohman72677342009-08-02 16:10:52 +00002020 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002021#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002022
Dan Gohman72677342009-08-02 16:10:52 +00002023 return NULL;
2024 }
2025
Dan Gohman6a402dc2009-08-19 18:16:17 +00002026 case X86ISD::CMP: {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002027 SDValue N0 = Node->getOperand(0);
2028 SDValue N1 = Node->getOperand(1);
2029
2030 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2031 // use a smaller encoding.
2032 if (N0.getNode()->getOpcode() == ISD::AND && N0.getNode()->hasOneUse() &&
2033 N0.getValueType() != MVT::i8 &&
2034 X86::isZeroNode(N1)) {
2035 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2036 if (!C) break;
2037
2038 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002039 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2040 (!(C->getZExtValue() & 0x80) ||
2041 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002042 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2043 SDValue Reg = N0.getNode()->getOperand(0);
2044
2045 // On x86-32, only the ABCD registers have 8-bit subregisters.
2046 if (!Subtarget->is64Bit()) {
2047 TargetRegisterClass *TRC = 0;
2048 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2049 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2050 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2051 default: llvm_unreachable("Unsupported TEST operand type!");
2052 }
2053 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002054 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2055 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002056 }
2057
2058 // Extract the l-register.
2059 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT, dl,
2060 MVT::i8, Reg);
2061
2062 // Emit a testb.
Dan Gohman602b0c82009-09-25 18:54:59 +00002063 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002064 }
2065
2066 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002067 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2068 (!(C->getZExtValue() & 0x8000) ||
2069 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002070 // Shift the immediate right by 8 bits.
2071 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2072 MVT::i8);
2073 SDValue Reg = N0.getNode()->getOperand(0);
2074
2075 // Put the value in an ABCD register.
2076 TargetRegisterClass *TRC = 0;
2077 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2078 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2079 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2080 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2081 default: llvm_unreachable("Unsupported TEST operand type!");
2082 }
2083 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002084 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2085 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002086
2087 // Extract the h-register.
2088 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_8BIT_HI, dl,
2089 MVT::i8, Reg);
2090
2091 // Emit a testb. No special NOREX tricks are needed since there's
2092 // only one GPR operand!
Dan Gohman602b0c82009-09-25 18:54:59 +00002093 return CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2094 Subreg, ShiftedImm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002095 }
2096
2097 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2098 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002099 N0.getValueType() != MVT::i16 &&
2100 (!(C->getZExtValue() & 0x8000) ||
2101 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002102 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2103 SDValue Reg = N0.getNode()->getOperand(0);
2104
2105 // Extract the 16-bit subregister.
2106 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_16BIT, dl,
2107 MVT::i16, Reg);
2108
2109 // Emit a testw.
Dan Gohman602b0c82009-09-25 18:54:59 +00002110 return CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002111 }
2112
2113 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2114 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002115 N0.getValueType() == MVT::i64 &&
2116 (!(C->getZExtValue() & 0x80000000) ||
2117 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002118 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2119 SDValue Reg = N0.getNode()->getOperand(0);
2120
2121 // Extract the 32-bit subregister.
2122 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::SUBREG_32BIT, dl,
2123 MVT::i32, Reg);
2124
2125 // Emit a testl.
Dan Gohman602b0c82009-09-25 18:54:59 +00002126 return CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, Subreg, Imm);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002127 }
2128 }
2129 break;
2130 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002131 }
2132
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002133 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002134
Evan Chengf597dc72006-02-10 22:24:32 +00002135#ifndef NDEBUG
Bill Wendling12321672009-08-07 21:33:25 +00002136 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +00002137 dbgs() << std::string(Indent-2, ' ') << "=> ";
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002138 if (ResNode == NULL || ResNode == Node)
2139 Node->dump(CurDAG);
Bill Wendling12321672009-08-07 21:33:25 +00002140 else
2141 ResNode->dump(CurDAG);
David Greened7f4f242010-01-05 01:29:08 +00002142 dbgs() << '\n';
Bill Wendling12321672009-08-07 21:33:25 +00002143 });
Evan Cheng23addc02006-02-10 22:46:26 +00002144 Indent -= 2;
Evan Chengf597dc72006-02-10 22:24:32 +00002145#endif
Evan Cheng64a752f2006-08-11 09:08:15 +00002146
2147 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002148}
2149
Chris Lattnerc0bad572006-06-08 18:03:49 +00002150bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002151SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002152 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002153 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002154 switch (ConstraintCode) {
2155 case 'o': // offsetable ??
2156 case 'v': // not offsetable ??
2157 default: return true;
2158 case 'm': // memory
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002159 if (!SelectAddr(Op.getNode(), Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002160 return true;
2161 break;
2162 }
2163
Evan Cheng04699902006-08-26 01:05:16 +00002164 OutOps.push_back(Op0);
2165 OutOps.push_back(Op1);
2166 OutOps.push_back(Op2);
2167 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002168 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002169 return false;
2170}
2171
Chris Lattnerc961eea2005-11-16 01:54:32 +00002172/// createX86ISelDag - This pass converts a legalized DAG into a
2173/// X86-specific DAG, ready for instruction scheduling.
2174///
Bill Wendling98a366d2009-04-29 23:29:43 +00002175FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
2176 llvm::CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002177 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002178}