blob: 0b8e1c5fa3ddb5a255c60098405aeb564808178e [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 Cheng0475ab52008-01-05 00:41:47 +000018#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000019#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000020#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000021#include "X86TargetMachine.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000022#include "llvm/ADT/Statistic.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000023#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000025#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000026#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000027#include "llvm/CodeGen/SelectionDAGISel.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000028#include "llvm/IR/Instructions.h"
29#include "llvm/IR/Intrinsics.h"
30#include "llvm/IR/Type.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000031#include "llvm/Support/Debug.h"
Torok Edwindac237e2009-07-08 20:53:28 +000032#include "llvm/Support/ErrorHandling.h"
Evan Cheng25ab6902006-09-08 06:48:29 +000033#include "llvm/Support/MathExtras.h"
Torok Edwindac237e2009-07-08 20:53:28 +000034#include "llvm/Support/raw_ostream.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Target/TargetMachine.h"
36#include "llvm/Target/TargetOptions.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000037using namespace llvm;
38
Chris Lattner95b2c7d2006-12-19 22:59:26 +000039STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
40
Chris Lattnerc961eea2005-11-16 01:54:32 +000041//===----------------------------------------------------------------------===//
42// Pattern Matcher Implementation
43//===----------------------------------------------------------------------===//
44
45namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000046 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000047 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000048 /// tree.
49 struct X86ISelAddressMode {
50 enum {
51 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000052 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000053 } BaseType;
54
Dan Gohmanffce6f12010-04-29 23:30:41 +000055 // This is really a union, discriminated by BaseType!
56 SDValue Base_Reg;
57 int Base_FrameIndex;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000058
59 unsigned Scale;
Chad Rosiera20e1e72012-08-01 18:39:17 +000060 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000061 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000062 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000063 const GlobalValue *GV;
64 const Constant *CP;
65 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000066 const char *ES;
67 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000068 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000069 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000070
71 X86ISelAddressMode()
Dan Gohmanffce6f12010-04-29 23:30:41 +000072 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Chris Lattner43f44aa2009-11-01 03:25:03 +000073 Segment(), GV(0), CP(0), BlockAddr(0), ES(0), JT(-1), Align(0),
Dan Gohman79b765d2009-08-25 17:47:44 +000074 SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000075 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000076
77 bool hasSymbolicDisplacement() const {
Chris Lattner43f44aa2009-11-01 03:25:03 +000078 return GV != 0 || CP != 0 || ES != 0 || JT != -1 || BlockAddr != 0;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000079 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000080
Chris Lattner18c59872009-06-27 04:16:01 +000081 bool hasBaseOrIndexReg() const {
Dan Gohmanffce6f12010-04-29 23:30:41 +000082 return IndexReg.getNode() != 0 || Base_Reg.getNode() != 0;
Chris Lattner18c59872009-06-27 04:16:01 +000083 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000084
Chris Lattner18c59872009-06-27 04:16:01 +000085 /// isRIPRelative - Return true if this addressing mode is already RIP
86 /// relative.
87 bool isRIPRelative() const {
88 if (BaseType != RegBase) return false;
89 if (RegisterSDNode *RegNode =
Dan Gohmanffce6f12010-04-29 23:30:41 +000090 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattner18c59872009-06-27 04:16:01 +000091 return RegNode->getReg() == X86::RIP;
92 return false;
93 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000094
Chris Lattner18c59872009-06-27 04:16:01 +000095 void setBaseReg(SDValue Reg) {
96 BaseType = RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +000097 Base_Reg = Reg;
Chris Lattner18c59872009-06-27 04:16:01 +000098 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000099
Manman Renb720be62012-09-11 22:23:19 +0000100#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000101 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000102 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohmanffce6f12010-04-29 23:30:41 +0000103 dbgs() << "Base_Reg ";
104 if (Base_Reg.getNode() != 0)
Chad Rosiera20e1e72012-08-01 18:39:17 +0000105 Base_Reg.getNode()->dump();
Bill Wendling12321672009-08-07 21:33:25 +0000106 else
David Greened7f4f242010-01-05 01:29:08 +0000107 dbgs() << "nul";
Dan Gohmanffce6f12010-04-29 23:30:41 +0000108 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000109 << " Scale" << Scale << '\n'
110 << "IndexReg ";
Bill Wendling12321672009-08-07 21:33:25 +0000111 if (IndexReg.getNode() != 0)
112 IndexReg.getNode()->dump();
113 else
Chad Rosiera20e1e72012-08-01 18:39:17 +0000114 dbgs() << "nul";
David Greened7f4f242010-01-05 01:29:08 +0000115 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000116 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000117 if (GV)
118 GV->dump();
119 else
David Greened7f4f242010-01-05 01:29:08 +0000120 dbgs() << "nul";
121 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000122 if (CP)
123 CP->dump();
124 else
David Greened7f4f242010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000127 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000128 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000129 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000130 else
David Greened7f4f242010-01-05 01:29:08 +0000131 dbgs() << "nul";
132 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000133 }
Manman Ren77e300e2012-09-06 19:06:06 +0000134#endif
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000135 };
136}
137
138namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000139 //===--------------------------------------------------------------------===//
140 /// ISel - X86 specific code to select X86 machine instructions for
141 /// SelectionDAG operations.
142 ///
Nick Lewycky6726b6d2009-10-25 06:33:48 +0000143 class X86DAGToDAGISel : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000144 /// X86Lowering - This object fully describes how to lower LLVM code to an
145 /// X86-specific SelectionDAG.
Dan Gohmand858e902010-04-17 15:26:15 +0000146 const X86TargetLowering &X86Lowering;
Chris Lattnerc961eea2005-11-16 01:54:32 +0000147
148 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
149 /// make the right decision when generating code for different targets.
150 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000151
Evan Chengb7a75a52008-09-26 23:41:32 +0000152 /// OptForSize - If true, selector should try to optimize for code size
153 /// instead of performance.
154 bool OptForSize;
155
Chris Lattnerc961eea2005-11-16 01:54:32 +0000156 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000157 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000158 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000159 X86Lowering(*tm.getTargetLowering()),
160 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000161 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000162
163 virtual const char *getPassName() const {
164 return "X86 DAG->DAG Instruction Selection";
165 }
166
Dan Gohman64652652010-04-14 20:17:22 +0000167 virtual void EmitFunctionEntryCode();
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000168
Evan Cheng014bf212010-02-15 19:41:07 +0000169 virtual bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const;
170
Chris Lattner7c306da2010-03-02 06:34:30 +0000171 virtual void PreprocessISelDAG();
172
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000173 inline bool immSext8(SDNode *N) const {
174 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
175 }
176
177 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
178 // sign extended field.
179 inline bool i64immSExt32(SDNode *N) const {
180 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
181 return (int64_t)v == (int32_t)v;
182 }
183
Chris Lattnerc961eea2005-11-16 01:54:32 +0000184// Include the pieces autogenerated from the target description.
185#include "X86GenDAGISel.inc"
186
187 private:
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000188 SDNode *Select(SDNode *N);
Manman Ren1f7a1b62012-06-26 19:47:59 +0000189 SDNode *SelectGather(SDNode *N, unsigned Opc);
Dale Johannesen48c1bc22008-10-02 18:53:47 +0000190 SDNode *SelectAtomic64(SDNode *Node, unsigned Opc);
Eric Christopherc324f722011-05-17 08:10:18 +0000191 SDNode *SelectAtomicLoadArith(SDNode *Node, EVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000192
Eli Friedman4977eb52011-07-13 20:44:23 +0000193 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000194 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000195 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000196 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
197 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
198 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000199 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000200 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000201 SDValue &Scale, SDValue &Index, SDValue &Disp,
202 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000203 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000204 SDValue &Scale, SDValue &Index, SDValue &Disp,
205 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000206 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000207 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000209 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000210 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000211 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000212 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000213 SDValue &NodeWithChain);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000214
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000215 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000217 SDValue &Index, SDValue &Disp,
218 SDValue &Segment);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000219
Chris Lattnerc0bad572006-06-08 18:03:49 +0000220 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
221 /// inline asm expressions.
Dan Gohman475871a2008-07-27 21:46:04 +0000222 virtual bool SelectInlineAsmMemoryOperand(const SDValue &Op,
Chris Lattnerc0bad572006-06-08 18:03:49 +0000223 char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +0000224 std::vector<SDValue> &OutOps);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000225
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000226 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
227
Chad Rosiera20e1e72012-08-01 18:39:17 +0000228 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000229 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000230 SDValue &Disp, SDValue &Segment) {
Evan Chenge5280532005-12-12 21:49:40 +0000231 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ?
Dan Gohmanffce6f12010-04-29 23:30:41 +0000232 CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, TLI.getPointerTy()) :
233 AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000234 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000235 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000236 // These are 32-bit even in 64-bit mode since RIP relative offset
237 // is 32-bit.
238 if (AM.GV)
Devang Patel0d881da2010-07-06 22:08:15 +0000239 Disp = CurDAG->getTargetGlobalAddress(AM.GV, DebugLoc(),
240 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000241 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000242 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000243 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000244 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000245 else if (AM.ES) {
246 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000247 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000248 } else if (AM.JT != -1) {
249 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000250 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000251 } else if (AM.BlockAddr)
252 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
253 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000254 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000255 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000256
257 if (AM.Segment.getNode())
258 Segment = AM.Segment;
259 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000260 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000261 }
262
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000263 /// getI8Imm - Return a target constant with the specified value, of type
264 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000265 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000267 }
268
Chris Lattnerc961eea2005-11-16 01:54:32 +0000269 /// getI32Imm - Return a target constant with the specified value, of type
270 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000271 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000272 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000273 }
Evan Chengf597dc72006-02-10 22:24:32 +0000274
Dan Gohman8b746962008-09-23 18:22:58 +0000275 /// getGlobalBaseReg - Return an SDNode that returns the value of
276 /// the global base register. Output instructions required to
277 /// initialize the global base register, if necessary.
278 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000279 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000280
Dan Gohmanc5534622009-06-03 20:20:00 +0000281 /// getTargetMachine - Return a reference to the TargetMachine, casted
282 /// to the target-specific type.
283 const X86TargetMachine &getTargetMachine() {
284 return static_cast<const X86TargetMachine &>(TM);
285 }
286
287 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
288 /// to the target-specific type.
289 const X86InstrInfo *getInstrInfo() {
290 return getTargetMachine().getInstrInfo();
291 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000292 };
293}
294
Evan Chengf4b4c412006-08-08 00:31:00 +0000295
Evan Cheng014bf212010-02-15 19:41:07 +0000296bool
297X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000298 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000299
Evan Cheng014bf212010-02-15 19:41:07 +0000300 if (!N.hasOneUse())
301 return false;
302
303 if (N.getOpcode() != ISD::LOAD)
304 return true;
305
306 // If N is a load, do additional profitability checks.
307 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000308 switch (U->getOpcode()) {
309 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000310 case X86ISD::ADD:
311 case X86ISD::SUB:
312 case X86ISD::AND:
313 case X86ISD::XOR:
314 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000315 case ISD::ADD:
316 case ISD::ADDC:
317 case ISD::ADDE:
318 case ISD::AND:
319 case ISD::OR:
320 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000321 SDValue Op1 = U->getOperand(1);
322
Evan Cheng884c70c2008-11-27 00:49:46 +0000323 // If the other operand is a 8-bit immediate we should fold the immediate
324 // instead. This reduces code size.
325 // e.g.
326 // movl 4(%esp), %eax
327 // addl $4, %eax
328 // vs.
329 // movl $4, %eax
330 // addl 4(%esp), %eax
331 // The former is 2 bytes shorter. In case where the increment is 1, then
332 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000333 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000334 if (Imm->getAPIntValue().isSignedIntN(8))
335 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000336
337 // If the other operand is a TLS address, we should fold it instead.
338 // This produces
339 // movl %gs:0, %eax
340 // leal i@NTPOFF(%eax), %eax
341 // instead of
342 // movl $i@NTPOFF, %eax
343 // addl %gs:0, %eax
344 // if the block also has an access to a second TLS address this will save
345 // a load.
346 // FIXME: This is probably also true for non TLS addresses.
347 if (Op1.getOpcode() == X86ISD::Wrapper) {
348 SDValue Val = Op1.getOperand(0);
349 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
350 return false;
351 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000352 }
353 }
Evan Cheng014bf212010-02-15 19:41:07 +0000354 }
355
356 return true;
357}
358
Evan Chengf48ef032010-03-14 03:48:46 +0000359/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
360/// load's chain operand and move load below the call's chain operand.
361static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng2b87e062012-10-02 23:49:13 +0000362 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000363 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000364 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000365 if (Chain.getNode() == Load.getNode())
366 Ops.push_back(Load.getOperand(0));
367 else {
368 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000369 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000370 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
371 if (Chain.getOperand(i).getNode() == Load.getNode())
372 Ops.push_back(Load.getOperand(0));
373 else
374 Ops.push_back(Chain.getOperand(i));
375 SDValue NewChain =
Dale Johannesened2eee62009-02-06 01:31:28 +0000376 CurDAG->getNode(ISD::TokenFactor, Load.getDebugLoc(),
Owen Anderson825b72b2009-08-11 20:47:22 +0000377 MVT::Other, &Ops[0], Ops.size());
Evan Cheng5b2e5892009-01-26 18:43:34 +0000378 Ops.clear();
379 Ops.push_back(NewChain);
380 }
Evan Chengf48ef032010-03-14 03:48:46 +0000381 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
382 Ops.push_back(OrigChain.getOperand(i));
Dan Gohman027657d2010-06-18 15:30:29 +0000383 CurDAG->UpdateNodeOperands(OrigChain.getNode(), &Ops[0], Ops.size());
384 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000385 Load.getOperand(1), Load.getOperand(2));
Evan Cheng2b87e062012-10-02 23:49:13 +0000386
Evan Cheng2b87e062012-10-02 23:49:13 +0000387 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengab6c3bb2008-08-25 21:27:18 +0000388 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000389 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng2b87e062012-10-02 23:49:13 +0000390 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000391 Ops.push_back(Call.getOperand(i));
Evan Cheng2a294782012-10-05 01:48:22 +0000392 CurDAG->UpdateNodeOperands(Call.getNode(), &Ops[0], NumOps);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000393}
394
395/// isCalleeLoad - Return true if call address is a load and it can be
396/// moved below CALLSEQ_START and the chains leading up to the call.
397/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000398/// In the case of a tail call, there isn't a callseq node between the call
399/// chain and the load.
400static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng2a294782012-10-05 01:48:22 +0000401 // The transformation is somewhat dangerous if the call's chain was glued to
402 // the call. After MoveBelowOrigChain the load is moved between the call and
403 // the chain, this can create a cycle if the load is not folded. So it is
404 // *really* important that we are sure the load will be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +0000405 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000406 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000407 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000408 if (!LD ||
409 LD->isVolatile() ||
410 LD->getAddressingMode() != ISD::UNINDEXED ||
411 LD->getExtensionType() != ISD::NON_EXTLOAD)
412 return false;
413
414 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000415 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000416 if (!Chain.hasOneUse())
417 return false;
418 Chain = Chain.getOperand(0);
419 }
Evan Chengf48ef032010-03-14 03:48:46 +0000420
421 if (!Chain.getNumOperands())
422 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000423 if (Chain.getOperand(0).getNode() == Callee.getNode())
424 return true;
425 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000426 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
427 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000428 return true;
429 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000430}
431
Chris Lattnerfb444af2010-03-02 23:12:51 +0000432void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000433 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling831737d2012-12-30 10:32:01 +0000434 OptForSize = MF->getFunction()->getAttributes().
435 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000436
Dan Gohmanf350b272008-08-23 02:25:05 +0000437 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
438 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000439 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000440
Evan Chengf48ef032010-03-14 03:48:46 +0000441 if (OptLevel != CodeGenOpt::None &&
442 (N->getOpcode() == X86ISD::CALL ||
Evan Cheng2a294782012-10-05 01:48:22 +0000443 (N->getOpcode() == X86ISD::TC_RETURN &&
444 // Only does this if load can be foled into TC_RETURN.
445 (Subtarget->is64Bit() ||
446 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000447 /// Also try moving call address load from outside callseq_start to just
448 /// before the call to allow it to be folded.
449 ///
450 /// [Load chain]
451 /// ^
452 /// |
453 /// [Load]
454 /// ^ ^
455 /// | |
456 /// / \--
457 /// / |
458 ///[CALLSEQ_START] |
459 /// ^ |
460 /// | |
461 /// [LOAD/C2Reg] |
462 /// | |
463 /// \ /
464 /// \ /
465 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000466 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000467 SDValue Chain = N->getOperand(0);
468 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000469 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000470 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000471 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000472 ++NumLoadMoved;
473 continue;
474 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000475
Chris Lattnerfb444af2010-03-02 23:12:51 +0000476 // Lower fpround and fpextend nodes that target the FP stack to be store and
477 // load to the stack. This is a gross hack. We would like to simply mark
478 // these as being illegal, but when we do that, legalize produces these when
479 // it expands calls, then expands these in the same legalize pass. We would
480 // like dag combine to be able to hack on these between the call expansion
481 // and the node legalization. As such this pass basically does "really
482 // late" legalization of these inline with the X86 isel pass.
483 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000484 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
485 continue;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000486
Owen Andersone50ed302009-08-10 22:56:29 +0000487 EVT SrcVT = N->getOperand(0).getValueType();
488 EVT DstVT = N->getValueType(0);
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000489
490 // If any of the sources are vectors, no fp stack involved.
491 if (SrcVT.isVector() || DstVT.isVector())
492 continue;
493
494 // If the source and destination are SSE registers, then this is a legal
495 // conversion that should not be lowered.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000496 bool SrcIsSSE = X86Lowering.isScalarFPTypeInSSEReg(SrcVT);
497 bool DstIsSSE = X86Lowering.isScalarFPTypeInSSEReg(DstVT);
498 if (SrcIsSSE && DstIsSSE)
499 continue;
500
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000501 if (!SrcIsSSE && !DstIsSSE) {
502 // If this is an FPStack extension, it is a noop.
503 if (N->getOpcode() == ISD::FP_EXTEND)
504 continue;
505 // If this is a value-preserving FPStack truncation, it is a noop.
506 if (N->getConstantOperandVal(1))
507 continue;
508 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000509
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000510 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
511 // FPStack has extload and truncstore. SSE can fold direct loads into other
512 // operations. Based on this, decide what we want to do.
Owen Andersone50ed302009-08-10 22:56:29 +0000513 EVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000514 if (N->getOpcode() == ISD::FP_ROUND)
515 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
516 else
517 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000518
Dan Gohmanf350b272008-08-23 02:25:05 +0000519 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Dale Johannesend8392542009-02-03 21:48:12 +0000520 DebugLoc dl = N->getDebugLoc();
Chad Rosiera20e1e72012-08-01 18:39:17 +0000521
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000522 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000523 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000524 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000525 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000526 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000527 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000528 MachinePointerInfo(),
529 MemVT, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000530
531 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
532 // extload we created. This will cause general havok on the dag because
533 // anything below the conversion could be folded into other existing nodes.
534 // To avoid invalidating 'I', back it up to the convert node.
535 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000536 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000537
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000538 // Now that we did that, the node is dead. Increment the iterator to the
539 // next node to process, then delete N.
540 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000541 CurDAG->DeleteNode(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000542 }
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000543}
544
Chris Lattnerc961eea2005-11-16 01:54:32 +0000545
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000546/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
547/// the main function.
548void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
549 MachineFrameInfo *MFI) {
550 const TargetInstrInfo *TII = TM.getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000551 if (Subtarget->isTargetCygMing()) {
552 unsigned CallOp =
Jakob Stoklund Olesen527a08b2012-02-16 17:56:02 +0000553 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000554 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000555 TII->get(CallOp)).addExternalSymbol("__main");
556 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000557}
558
Dan Gohman64652652010-04-14 20:17:22 +0000559void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000560 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000561 if (const Function *Fn = MF->getFunction())
562 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
563 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000564}
565
Eli Friedman2a019462011-07-13 21:29:53 +0000566static bool isDispSafeForFrameIndex(int64_t Val) {
567 // On 64-bit platforms, we can run into an issue where a frame index
568 // includes a displacement that, when added to the explicit displacement,
569 // will overflow the displacement field. Assuming that the frame index
570 // displacement fits into a 31-bit integer (which is only slightly more
571 // aggressive than the current fundamental assumption that it fits into
572 // a 32-bit integer), a 31-bit disp should always be safe.
573 return isInt<31>(Val);
574}
575
Eli Friedman4977eb52011-07-13 20:44:23 +0000576bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
577 X86ISelAddressMode &AM) {
578 int64_t Val = AM.Disp + Offset;
579 CodeModel::Model M = TM.getCodeModel();
Eli Friedman2a019462011-07-13 21:29:53 +0000580 if (Subtarget->is64Bit()) {
581 if (!X86::isOffsetSuitableForCodeModel(Val, M,
582 AM.hasSymbolicDisplacement()))
583 return true;
584 // In addition to the checks required for a register base, check that
585 // we do not try to use an unsafe Disp with a frame index.
586 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
587 !isDispSafeForFrameIndex(Val))
588 return true;
Eli Friedman4977eb52011-07-13 20:44:23 +0000589 }
Eli Friedman2a019462011-07-13 21:29:53 +0000590 AM.Disp = Val;
591 return false;
592
Eli Friedman4977eb52011-07-13 20:44:23 +0000593}
Rafael Espindola094fad32009-04-08 21:14:34 +0000594
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000595bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
596 SDValue Address = N->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000597
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000598 // load gs:0 -> GS segment register.
599 // load fs:0 -> FS segment register.
600 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000601 // This optimization is valid because the GNU TLS model defines that
602 // gs:0 (or fs:0 on X86-64) contains its own address.
603 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000604 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
605 if (C->getSExtValue() == 0 && AM.Segment.getNode() == 0 &&
David Chisnall23a62cb2012-07-24 20:04:16 +0000606 Subtarget->isTargetLinux())
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000607 switch (N->getPointerInfo().getAddrSpace()) {
608 case 256:
609 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
610 return false;
611 case 257:
612 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
613 return false;
614 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000615
Rafael Espindola094fad32009-04-08 21:14:34 +0000616 return true;
617}
618
Chris Lattner18c59872009-06-27 04:16:01 +0000619/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
620/// into an addressing mode. These wrap things that will resolve down into a
621/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000622/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000623bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000624 // If the addressing mode already has a symbol as the displacement, we can
625 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000626 if (AM.hasSymbolicDisplacement())
627 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000628
629 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000630 CodeModel::Model M = TM.getCodeModel();
631
Chris Lattner18c59872009-06-27 04:16:01 +0000632 // Handle X86-64 rip-relative addresses. We check this before checking direct
633 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000634 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattner18c59872009-06-27 04:16:01 +0000635 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
636 // they cannot be folded into immediate fields.
637 // FIXME: This can be improved for kernel and other models?
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000638 (M == CodeModel::Small || M == CodeModel::Kernel)) {
639 // Base and index reg must be 0 in order to use %rip as base.
640 if (AM.hasBaseOrIndexReg())
641 return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000642 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000643 X86ISelAddressMode Backup = AM;
Chris Lattner18c59872009-06-27 04:16:01 +0000644 AM.GV = G->getGlobal();
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000645 AM.SymbolFlags = G->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000646 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
647 AM = Backup;
648 return true;
649 }
Chris Lattner18c59872009-06-27 04:16:01 +0000650 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000651 X86ISelAddressMode Backup = AM;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000652 AM.CP = CP->getConstVal();
653 AM.Align = CP->getAlignment();
Chris Lattner0b0deab2009-06-26 05:56:49 +0000654 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000655 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
656 AM = Backup;
657 return true;
658 }
Chris Lattner18c59872009-06-27 04:16:01 +0000659 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
660 AM.ES = S->getSymbol();
661 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000662 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000663 AM.JT = J->getIndex();
664 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000665 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
666 X86ISelAddressMode Backup = AM;
667 AM.BlockAddr = BA->getBlockAddress();
668 AM.SymbolFlags = BA->getTargetFlags();
669 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
670 AM = Backup;
671 return true;
672 }
673 } else
674 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000675
Chris Lattner18c59872009-06-27 04:16:01 +0000676 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000677 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000678 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000679 }
680
681 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000682 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
683 // mode, this only applies to a non-RIP-relative computation.
Chris Lattner18c59872009-06-27 04:16:01 +0000684 if (!Subtarget->is64Bit() ||
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000685 M == CodeModel::Small || M == CodeModel::Kernel) {
686 assert(N.getOpcode() != X86ISD::WrapperRIP &&
687 "RIP-relative addressing already handled");
Chris Lattner18c59872009-06-27 04:16:01 +0000688 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
689 AM.GV = G->getGlobal();
690 AM.Disp += G->getOffset();
691 AM.SymbolFlags = G->getTargetFlags();
692 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
693 AM.CP = CP->getConstVal();
694 AM.Align = CP->getAlignment();
695 AM.Disp += CP->getOffset();
696 AM.SymbolFlags = CP->getTargetFlags();
697 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
698 AM.ES = S->getSymbol();
699 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000700 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000701 AM.JT = J->getIndex();
702 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000703 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
704 AM.BlockAddr = BA->getBlockAddress();
705 AM.Disp += BA->getOffset();
706 AM.SymbolFlags = BA->getTargetFlags();
707 } else
708 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola49a168d2009-04-12 21:55:03 +0000709 return false;
710 }
711
712 return true;
713}
714
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000715/// MatchAddress - Add the specified node to the specified addressing mode,
716/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000717/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000718bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000719 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000720 return true;
721
722 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
723 // a smaller encoding and avoids a scaled-index.
724 if (AM.Scale == 2 &&
725 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000726 AM.Base_Reg.getNode() == 0) {
727 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000728 AM.Scale = 1;
729 }
730
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000731 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
732 // because it has a smaller encoding.
733 // TODO: Which other code models can use this?
734 if (TM.getCodeModel() == CodeModel::Small &&
735 Subtarget->is64Bit() &&
736 AM.Scale == 1 &&
737 AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +0000738 AM.Base_Reg.getNode() == 0 &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000739 AM.IndexReg.getNode() == 0 &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000740 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000741 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000742 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000743
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000744 return false;
745}
746
Chandler Carruthd65a9102012-01-11 11:04:36 +0000747// Insert a node into the DAG at least before the Pos node's position. This
748// will reposition the node as needed, and will assign it a node ID that is <=
749// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
750// IDs! The selection DAG must no longer depend on their uniqueness when this
751// is used.
752static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
753 if (N.getNode()->getNodeId() == -1 ||
754 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
755 DAG.RepositionNode(Pos.getNode(), N.getNode());
756 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
757 }
758}
759
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000760// Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This
761// allows us to convert the shift and and into an h-register extract and
762// a scaled index. Returns false if the simplification is performed.
763static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
764 uint64_t Mask,
765 SDValue Shift, SDValue X,
766 X86ISelAddressMode &AM) {
767 if (Shift.getOpcode() != ISD::SRL ||
768 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
769 !Shift.hasOneUse())
770 return true;
771
772 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
773 if (ScaleLog <= 0 || ScaleLog >= 4 ||
774 Mask != (0xffu << ScaleLog))
775 return true;
776
777 EVT VT = N.getValueType();
778 DebugLoc DL = N.getDebugLoc();
779 SDValue Eight = DAG.getConstant(8, MVT::i8);
780 SDValue NewMask = DAG.getConstant(0xff, VT);
781 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
782 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
783 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
784 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
785
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000786 // Insert the new nodes into the topological ordering. We must do this in
787 // a valid topological ordering as nothing is going to go back and re-sort
788 // these nodes. We continually insert before 'N' in sequence as this is
789 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
790 // hierarchy left to express.
791 InsertDAGNode(DAG, N, Eight);
792 InsertDAGNode(DAG, N, Srl);
793 InsertDAGNode(DAG, N, NewMask);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000794 InsertDAGNode(DAG, N, And);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000795 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000796 InsertDAGNode(DAG, N, Shl);
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000797 DAG.ReplaceAllUsesWith(N, Shl);
798 AM.IndexReg = And;
799 AM.Scale = (1 << ScaleLog);
800 return false;
801}
802
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000803// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
804// allows us to fold the shift into this addressing mode. Returns false if the
805// transform succeeded.
806static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
807 uint64_t Mask,
808 SDValue Shift, SDValue X,
809 X86ISelAddressMode &AM) {
810 if (Shift.getOpcode() != ISD::SHL ||
811 !isa<ConstantSDNode>(Shift.getOperand(1)))
812 return true;
813
814 // Not likely to be profitable if either the AND or SHIFT node has more
815 // than one use (unless all uses are for address computation). Besides,
816 // isel mechanism requires their node ids to be reused.
817 if (!N.hasOneUse() || !Shift.hasOneUse())
818 return true;
819
820 // Verify that the shift amount is something we can fold.
821 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
822 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
823 return true;
824
825 EVT VT = N.getValueType();
826 DebugLoc DL = N.getDebugLoc();
827 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
828 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
829 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
830
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000831 // Insert the new nodes into the topological ordering. We must do this in
832 // a valid topological ordering as nothing is going to go back and re-sort
833 // these nodes. We continually insert before 'N' in sequence as this is
834 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
835 // hierarchy left to express.
836 InsertDAGNode(DAG, N, NewMask);
837 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000838 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000839 DAG.ReplaceAllUsesWith(N, NewShift);
840
841 AM.Scale = 1 << ShiftAmt;
842 AM.IndexReg = NewAnd;
843 return false;
844}
845
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000846// Implement some heroics to detect shifts of masked values where the mask can
847// be replaced by extending the shift and undoing that in the addressing mode
848// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
849// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
850// the addressing mode. This results in code such as:
851//
852// int f(short *y, int *lookup_table) {
853// ...
854// return *y + lookup_table[*y >> 11];
855// }
856//
857// Turning into:
858// movzwl (%rdi), %eax
859// movl %eax, %ecx
860// shrl $11, %ecx
861// addl (%rsi,%rcx,4), %eax
862//
863// Instead of:
864// movzwl (%rdi), %eax
865// movl %eax, %ecx
866// shrl $9, %ecx
867// andl $124, %rcx
868// addl (%rsi,%rcx), %eax
869//
Chandler Carruthdddcd782012-01-11 09:35:02 +0000870// Note that this function assumes the mask is provided as a mask *after* the
871// value is shifted. The input chain may or may not match that, but computing
872// such a mask is trivial.
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000873static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruthdddcd782012-01-11 09:35:02 +0000874 uint64_t Mask,
875 SDValue Shift, SDValue X,
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000876 X86ISelAddressMode &AM) {
Chandler Carruthdddcd782012-01-11 09:35:02 +0000877 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
878 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000879 return true;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000880
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000881 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
882 unsigned MaskLZ = CountLeadingZeros_64(Mask);
883 unsigned MaskTZ = CountTrailingZeros_64(Mask);
884
885 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruthdddcd782012-01-11 09:35:02 +0000886 // from the trailing zeros of the mask.
887 unsigned AMShiftAmt = MaskTZ;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000888
889 // There is nothing we can do here unless the mask is removing some bits.
890 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
891 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
892
893 // We also need to ensure that mask is a continuous run of bits.
894 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
895
896 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruthdddcd782012-01-11 09:35:02 +0000897 // Also scale it down based on the size of the shift.
898 MaskLZ -= (64 - X.getValueSizeInBits()) + ShiftAmt;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000899
900 // The final check is to ensure that any masked out high bits of X are
901 // already known to be zero. Otherwise, the mask has a semantic impact
902 // other than masking out a couple of low bits. Unfortunately, because of
903 // the mask, zero extensions will be removed from operands in some cases.
904 // This code works extra hard to look through extensions because we can
905 // replace them with zero extensions cheaply if necessary.
906 bool ReplacingAnyExtend = false;
907 if (X.getOpcode() == ISD::ANY_EXTEND) {
908 unsigned ExtendBits =
909 X.getValueSizeInBits() - X.getOperand(0).getValueSizeInBits();
910 // Assume that we'll replace the any-extend with a zero-extend, and
911 // narrow the search to the extended value.
912 X = X.getOperand(0);
913 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
914 ReplacingAnyExtend = true;
915 }
916 APInt MaskedHighBits = APInt::getHighBitsSet(X.getValueSizeInBits(),
917 MaskLZ);
918 APInt KnownZero, KnownOne;
Rafael Espindola26c8dcc2012-04-04 12:51:34 +0000919 DAG.ComputeMaskedBits(X, KnownZero, KnownOne);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000920 if (MaskedHighBits != KnownZero) return true;
921
922 // We've identified a pattern that can be transformed into a single shift
923 // and an addressing mode. Make it so.
924 EVT VT = N.getValueType();
925 if (ReplacingAnyExtend) {
926 assert(X.getValueType() != VT);
927 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
928 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, X.getDebugLoc(), VT, X);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000929 InsertDAGNode(DAG, N, NewX);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000930 X = NewX;
931 }
932 DebugLoc DL = N.getDebugLoc();
933 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
934 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
935 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
936 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000937
938 // Insert the new nodes into the topological ordering. We must do this in
939 // a valid topological ordering as nothing is going to go back and re-sort
940 // these nodes. We continually insert before 'N' in sequence as this is
941 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
942 // hierarchy left to express.
Chandler Carruthd65a9102012-01-11 11:04:36 +0000943 InsertDAGNode(DAG, N, NewSRLAmt);
944 InsertDAGNode(DAG, N, NewSRL);
945 InsertDAGNode(DAG, N, NewSHLAmt);
946 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000947 DAG.ReplaceAllUsesWith(N, NewSHL);
948
949 AM.Scale = 1 << AMShiftAmt;
950 AM.IndexReg = NewSRL;
951 return false;
952}
953
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000954bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
955 unsigned Depth) {
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000956 DebugLoc dl = N.getDebugLoc();
Bill Wendling12321672009-08-07 21:33:25 +0000957 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000958 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000959 AM.dump();
960 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000961 // Limit recursion.
962 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000963 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000964
Chris Lattner18c59872009-06-27 04:16:01 +0000965 // If this is already a %rip relative address, we can only merge immediates
966 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000967 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000968 if (AM.isRIPRelative()) {
969 // FIXME: JumpTable and ExternalSymbol address currently don't like
970 // displacements. It isn't very important, but this should be fixed for
971 // consistency.
972 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000973
Eli Friedman4977eb52011-07-13 20:44:23 +0000974 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
975 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000976 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000977 return true;
978 }
979
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000980 switch (N.getOpcode()) {
981 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +0000982 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +0000983 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedman4977eb52011-07-13 20:44:23 +0000984 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng25ab6902006-09-08 06:48:29 +0000985 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +0000986 break;
987 }
Evan Cheng51a9ed92006-02-25 10:09:08 +0000988
Rafael Espindola49a168d2009-04-12 21:55:03 +0000989 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +0000990 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +0000991 if (!MatchWrapper(N, AM))
992 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +0000993 break;
994
Rafael Espindola094fad32009-04-08 21:14:34 +0000995 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000996 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +0000997 return false;
998 break;
999
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001000 case ISD::FrameIndex:
Eli Friedman2a019462011-07-13 21:29:53 +00001001 if (AM.BaseType == X86ISelAddressMode::RegBase &&
1002 AM.Base_Reg.getNode() == 0 &&
1003 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001004 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001005 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001006 return false;
1007 }
1008 break;
Evan Chengec693f72005-12-08 02:01:35 +00001009
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001010 case ISD::SHL:
Chris Lattner18c59872009-06-27 04:16:01 +00001011 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001012 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001013
Gabor Greif93c53e52008-08-31 15:37:04 +00001014 if (ConstantSDNode
1015 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001016 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001017 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1018 // that the base operand remains free for further matching. If
1019 // the base doesn't end up getting used, a post-processing step
1020 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001021 if (Val == 1 || Val == 2 || Val == 3) {
1022 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +00001023 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001024
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001025 // Okay, we know that we have a scale by now. However, if the scaled
1026 // value is an add of something and a constant, we can fold the
1027 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001028 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001029 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001030 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001031 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith1144af32012-08-24 23:29:28 +00001032 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedman4977eb52011-07-13 20:44:23 +00001033 if (!FoldOffsetIntoAddress(Disp, AM))
1034 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001035 }
Eli Friedman4977eb52011-07-13 20:44:23 +00001036
1037 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001038 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001039 }
1040 break;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001041 }
Evan Chengec693f72005-12-08 02:01:35 +00001042
Chandler Carruthdddcd782012-01-11 09:35:02 +00001043 case ISD::SRL: {
1044 // Scale must not be used already.
1045 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
1046
1047 SDValue And = N.getOperand(0);
1048 if (And.getOpcode() != ISD::AND) break;
1049 SDValue X = And.getOperand(0);
1050
1051 // We only handle up to 64-bit values here as those are what matter for
1052 // addressing mode optimizations.
1053 if (X.getValueSizeInBits() > 64) break;
1054
1055 // The mask used for the transform is expected to be post-shift, but we
1056 // found the shift first so just apply the shift to the mask before passing
1057 // it down.
1058 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1059 !isa<ConstantSDNode>(And.getOperand(1)))
1060 break;
1061 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1062
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001063 // Try to fold the mask and shift into the scale, and return false if we
1064 // succeed.
Chandler Carruthdddcd782012-01-11 09:35:02 +00001065 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001066 return false;
1067 break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001068 }
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001069
Dan Gohman83688052007-10-22 20:22:24 +00001070 case ISD::SMUL_LOHI:
1071 case ISD::UMUL_LOHI:
1072 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001073 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +00001074 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001075 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +00001076 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001077 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001078 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001079 AM.Base_Reg.getNode() == 0 &&
Chris Lattner18c59872009-06-27 04:16:01 +00001080 AM.IndexReg.getNode() == 0) {
Gabor Greif93c53e52008-08-31 15:37:04 +00001081 if (ConstantSDNode
1082 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001083 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1084 CN->getZExtValue() == 9) {
1085 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001086
Gabor Greifba36cb52008-08-28 21:40:38 +00001087 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001088 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001089
1090 // Okay, we know that we have a scale by now. However, if the scaled
1091 // value is an add of something and a constant, we can fold the
1092 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001093 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1094 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1095 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001096 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001097 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +00001098 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1099 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greifba36cb52008-08-28 21:40:38 +00001100 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001101 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001102 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001103 }
1104
Dan Gohmanffce6f12010-04-29 23:30:41 +00001105 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001106 return false;
1107 }
Chris Lattner62412262007-02-04 20:18:17 +00001108 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001109 break;
1110
Dan Gohman3cd90a12009-05-11 18:02:53 +00001111 case ISD::SUB: {
1112 // Given A-B, if A can be completely folded into the address and
1113 // the index field with the index field unused, use -B as the index.
1114 // This is a win if a has multiple parts that can be folded into
1115 // the address. Also, this saves a mov if the base register has
1116 // other uses, since it avoids a two-address sub instruction, however
1117 // it costs an additional mov if the index register has other uses.
1118
Dan Gohmane5408102010-06-18 01:24:29 +00001119 // Add an artificial use to this node so that we can keep track of
1120 // it if it gets CSE'd with a different node.
1121 HandleSDNode Handle(N);
1122
Dan Gohman3cd90a12009-05-11 18:02:53 +00001123 // Test if the LHS of the sub can be folded.
1124 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +00001125 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001126 AM = Backup;
1127 break;
1128 }
1129 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001130 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001131 AM = Backup;
1132 break;
1133 }
Evan Chengf3caa522010-03-17 23:58:35 +00001134
Dan Gohman3cd90a12009-05-11 18:02:53 +00001135 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +00001136 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001137 // If the RHS involves a register with multiple uses, this
1138 // transformation incurs an extra mov, due to the neg instruction
1139 // clobbering its operand.
1140 if (!RHS.getNode()->hasOneUse() ||
1141 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1142 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1143 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1144 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001145 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001146 ++Cost;
1147 // If the base is a register with multiple uses, this
1148 // transformation may save a mov.
1149 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001150 AM.Base_Reg.getNode() &&
1151 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +00001152 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1153 --Cost;
1154 // If the folded LHS was interesting, this transformation saves
1155 // address arithmetic.
1156 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1157 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1158 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1159 --Cost;
1160 // If it doesn't look like it may be an overall win, don't do it.
1161 if (Cost >= 0) {
1162 AM = Backup;
1163 break;
1164 }
1165
1166 // Ok, the transformation is legal and appears profitable. Go for it.
1167 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1168 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1169 AM.IndexReg = Neg;
1170 AM.Scale = 1;
1171
1172 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +00001173 InsertDAGNode(*CurDAG, N, Zero);
1174 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001175 return false;
1176 }
1177
Evan Cheng8e278262009-01-17 07:09:27 +00001178 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +00001179 // Add an artificial use to this node so that we can keep track of
1180 // it if it gets CSE'd with a different node.
1181 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +00001182
Evan Cheng8e278262009-01-17 07:09:27 +00001183 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001184 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1185 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001186 return false;
1187 AM = Backup;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001188
Evan Chengf3caa522010-03-17 23:58:35 +00001189 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001190 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1191 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001192 return false;
Evan Cheng8e278262009-01-17 07:09:27 +00001193 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001194
1195 // If we couldn't fold both operands into the address at the same time,
1196 // see if we can just put each operand into a register and fold at least
1197 // the add.
1198 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001199 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001200 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001201 N = Handle.getValue();
1202 AM.Base_Reg = N.getOperand(0);
1203 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +00001204 AM.Scale = 1;
1205 return false;
1206 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001207 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001208 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001209 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001210
Chris Lattner62412262007-02-04 20:18:17 +00001211 case ISD::OR:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001212 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001213 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001214 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +00001215 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Chengf3caa522010-03-17 23:58:35 +00001216
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001217 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +00001218 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedman4977eb52011-07-13 20:44:23 +00001219 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001220 return false;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001221 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001222 }
1223 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001224
Evan Cheng1314b002007-12-13 00:43:27 +00001225 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001226 // Perform some heroic transforms on an and of a constant-count shift
1227 // with a constant to enable use of the scaled offset field.
1228
Evan Cheng1314b002007-12-13 00:43:27 +00001229 // Scale must not be used already.
Gabor Greifba36cb52008-08-28 21:40:38 +00001230 if (AM.IndexReg.getNode() != 0 || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001231
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001232 SDValue Shift = N.getOperand(0);
1233 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001234 SDValue X = Shift.getOperand(0);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001235
1236 // We only handle up to 64-bit values here as those are what matter for
1237 // addressing mode optimizations.
1238 if (X.getValueSizeInBits() > 64) break;
1239
Chandler Carruth93b73582012-01-11 09:35:04 +00001240 if (!isa<ConstantSDNode>(N.getOperand(1)))
1241 break;
1242 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng1314b002007-12-13 00:43:27 +00001243
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001244 // Try to fold the mask and shift into an extract and scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001245 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001246 return false;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001247
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001248 // Try to fold the mask and shift directly into the scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001249 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001250 return false;
1251
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001252 // Try to swap the mask and shift to place shifts which can be done as
1253 // a scale on the outside of the mask.
Chandler Carruth93b73582012-01-11 09:35:04 +00001254 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001255 return false;
1256 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001257 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001258 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001259
Rafael Espindola523249f2009-03-31 16:16:57 +00001260 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001261}
1262
1263/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1264/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001265bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001266 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001267 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001268 // If so, check to see if the scale index register is set.
Chris Lattner18c59872009-06-27 04:16:01 +00001269 if (AM.IndexReg.getNode() == 0) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001270 AM.IndexReg = N;
1271 AM.Scale = 1;
1272 return false;
1273 }
1274
1275 // Otherwise, we cannot select it.
1276 return true;
1277 }
1278
1279 // Default, generate it as a register.
1280 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001281 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001282 return false;
1283}
1284
Evan Chengec693f72005-12-08 02:01:35 +00001285/// SelectAddr - returns true if it is able pattern match an addressing mode.
1286/// It returns the operands which make up the maximal addressing mode it can
1287/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001288///
1289/// Parent is the parent node of the addr operand that is being matched. It
1290/// is always a load, store, atomic node, or null. It is only null when
1291/// checking memory operands for inline asm nodes.
1292bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001293 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001294 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001295 X86ISelAddressMode AM;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001296
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001297 if (Parent &&
1298 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1299 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001300 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001301 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao6c0e04c2012-10-15 22:39:43 +00001302 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1303 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1304 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001305 unsigned AddrSpace =
1306 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1307 // AddrSpace 256 -> GS, 257 -> FS.
1308 if (AddrSpace == 256)
1309 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1310 if (AddrSpace == 257)
1311 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1312 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001313
Evan Chengc7928f82009-12-18 01:59:21 +00001314 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001315 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001316
Owen Andersone50ed302009-08-10 22:56:29 +00001317 EVT VT = N.getValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001318 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001319 if (!AM.Base_Reg.getNode())
1320 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001321 }
Evan Cheng8700e142006-01-11 06:09:51 +00001322
Gabor Greifba36cb52008-08-28 21:40:38 +00001323 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001324 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001325
Rafael Espindola094fad32009-04-08 21:14:34 +00001326 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001327 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001328}
1329
Chris Lattner3a7cd952006-10-07 21:55:32 +00001330/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1331/// match a load whose top elements are either undef or zeros. The load flavor
1332/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001333///
1334/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001335/// PatternChainNode: this is the matched node that has a chain input and
1336/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001337bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001338 SDValue N, SDValue &Base,
1339 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001340 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001341 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001342 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001343 PatternNodeWithChain = N.getOperand(0);
1344 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1345 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001346 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001347 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001348 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001349 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001350 return false;
1351 return true;
1352 }
1353 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001354
1355 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001356 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001357 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001358 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosiera20e1e72012-08-01 18:39:17 +00001359 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001360 N.getOperand(0).getNode()->hasOneUse() &&
1361 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001362 N.getOperand(0).getOperand(0).hasOneUse() &&
1363 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001364 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001365 // Okay, this is a zero extending load. Fold it.
1366 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001367 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001368 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001369 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001370 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001371 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001372 return false;
1373}
1374
1375
Evan Cheng51a9ed92006-02-25 10:09:08 +00001376/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1377/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001378bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001379 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001380 SDValue &Index, SDValue &Disp,
1381 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001382 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001383
1384 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1385 // segments.
1386 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001387 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001388 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001389 if (MatchAddress(N, AM))
1390 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001391 assert (T == AM.Segment);
1392 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001393
Owen Andersone50ed302009-08-10 22:56:29 +00001394 EVT VT = N.getValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001395 unsigned Complexity = 0;
1396 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001397 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001398 Complexity = 1;
1399 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001400 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001401 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1402 Complexity = 4;
1403
Gabor Greifba36cb52008-08-28 21:40:38 +00001404 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001405 Complexity++;
1406 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001407 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001408
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001409 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1410 // a simple shift.
1411 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001412 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001413
1414 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1415 // to a LEA. This is determined with some expermentation but is by no means
1416 // optimal (especially for code size consideration). LEA is nice because of
1417 // its three-address nature. Tweak the cost function again when we can run
1418 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001419 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001420 // For X86-64, we should always use lea to materialize RIP relative
1421 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001422 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001423 Complexity = 4;
1424 else
1425 Complexity += 2;
1426 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001427
Dan Gohmanffce6f12010-04-29 23:30:41 +00001428 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001429 Complexity++;
1430
Chris Lattner25142782009-07-11 22:50:33 +00001431 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001432 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001433 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001434
Chris Lattner25142782009-07-11 22:50:33 +00001435 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1436 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001437}
1438
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001439/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001440bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001441 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001442 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001443 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1444 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +00001445
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001446 X86ISelAddressMode AM;
1447 AM.GV = GA->getGlobal();
1448 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001449 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001450 AM.SymbolFlags = GA->getTargetFlags();
1451
Owen Anderson825b72b2009-08-11 20:47:22 +00001452 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001453 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001454 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001455 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001456 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001457 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001458
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001459 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1460 return true;
1461}
1462
1463
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001464bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001465 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001466 SDValue &Index, SDValue &Disp,
1467 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001468 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1469 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001470 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001471 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001472
Chris Lattnerb86faa12010-09-21 22:07:31 +00001473 return SelectAddr(N.getNode(),
1474 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001475}
1476
Dan Gohman8b746962008-09-23 18:22:58 +00001477/// getGlobalBaseReg - Return an SDNode that returns the value of
1478/// the global base register. Output instructions required to
1479/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001480///
Evan Cheng9ade2182006-08-26 05:34:46 +00001481SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001482 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Gabor Greifba36cb52008-08-28 21:40:38 +00001483 return CurDAG->getRegister(GlobalBaseReg, TLI.getPointerTy()).getNode();
Evan Cheng7ccced62006-02-18 00:15:05 +00001484}
1485
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001486SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) {
1487 SDValue Chain = Node->getOperand(0);
1488 SDValue In1 = Node->getOperand(1);
1489 SDValue In2L = Node->getOperand(2);
1490 SDValue In2H = Node->getOperand(3);
Michael Liaocd9ede92012-09-19 19:36:58 +00001491
Rafael Espindola094fad32009-04-08 21:14:34 +00001492 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattnerb86faa12010-09-21 22:07:31 +00001493 if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001494 return NULL;
Dan Gohmanc76909a2009-09-25 20:36:54 +00001495 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1496 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
1497 const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain};
1498 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
1499 MVT::i32, MVT::i32, MVT::Other, Ops,
1500 array_lengthof(Ops));
1501 cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1);
1502 return ResNode;
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001503}
Christopher Lambc59e5212007-08-10 21:48:46 +00001504
Michael Liaocd9ede92012-09-19 19:36:58 +00001505/// Atomic opcode table
1506///
Eric Christopher8102bf02011-05-17 07:47:55 +00001507enum AtomicOpc {
Michael Liaocd9ede92012-09-19 19:36:58 +00001508 ADD,
1509 SUB,
1510 INC,
1511 DEC,
Eric Christopher811c2b72011-05-17 07:50:41 +00001512 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001513 AND,
1514 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001515 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001516};
1517
1518enum AtomicSz {
1519 ConstantI8,
1520 I8,
1521 SextConstantI16,
1522 ConstantI16,
1523 I16,
1524 SextConstantI32,
1525 ConstantI32,
1526 I32,
1527 SextConstantI64,
1528 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001529 I64,
1530 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001531};
1532
Craig Topper72051bf2012-03-09 07:45:21 +00001533static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001534 {
Michael Liaocd9ede92012-09-19 19:36:58 +00001535 X86::LOCK_ADD8mi,
1536 X86::LOCK_ADD8mr,
1537 X86::LOCK_ADD16mi8,
1538 X86::LOCK_ADD16mi,
1539 X86::LOCK_ADD16mr,
1540 X86::LOCK_ADD32mi8,
1541 X86::LOCK_ADD32mi,
1542 X86::LOCK_ADD32mr,
1543 X86::LOCK_ADD64mi8,
1544 X86::LOCK_ADD64mi32,
1545 X86::LOCK_ADD64mr,
1546 },
1547 {
1548 X86::LOCK_SUB8mi,
1549 X86::LOCK_SUB8mr,
1550 X86::LOCK_SUB16mi8,
1551 X86::LOCK_SUB16mi,
1552 X86::LOCK_SUB16mr,
1553 X86::LOCK_SUB32mi8,
1554 X86::LOCK_SUB32mi,
1555 X86::LOCK_SUB32mr,
1556 X86::LOCK_SUB64mi8,
1557 X86::LOCK_SUB64mi32,
1558 X86::LOCK_SUB64mr,
1559 },
1560 {
1561 0,
1562 X86::LOCK_INC8m,
1563 0,
1564 0,
1565 X86::LOCK_INC16m,
1566 0,
1567 0,
1568 X86::LOCK_INC32m,
1569 0,
1570 0,
1571 X86::LOCK_INC64m,
1572 },
1573 {
1574 0,
1575 X86::LOCK_DEC8m,
1576 0,
1577 0,
1578 X86::LOCK_DEC16m,
1579 0,
1580 0,
1581 X86::LOCK_DEC32m,
1582 0,
1583 0,
1584 X86::LOCK_DEC64m,
1585 },
1586 {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001587 X86::LOCK_OR8mi,
1588 X86::LOCK_OR8mr,
1589 X86::LOCK_OR16mi8,
1590 X86::LOCK_OR16mi,
1591 X86::LOCK_OR16mr,
1592 X86::LOCK_OR32mi8,
1593 X86::LOCK_OR32mi,
1594 X86::LOCK_OR32mr,
1595 X86::LOCK_OR64mi8,
1596 X86::LOCK_OR64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001597 X86::LOCK_OR64mr,
Eric Christopherc324f722011-05-17 08:10:18 +00001598 },
1599 {
1600 X86::LOCK_AND8mi,
1601 X86::LOCK_AND8mr,
1602 X86::LOCK_AND16mi8,
1603 X86::LOCK_AND16mi,
1604 X86::LOCK_AND16mr,
1605 X86::LOCK_AND32mi8,
1606 X86::LOCK_AND32mi,
1607 X86::LOCK_AND32mr,
1608 X86::LOCK_AND64mi8,
1609 X86::LOCK_AND64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001610 X86::LOCK_AND64mr,
Eric Christopherc324f722011-05-17 08:10:18 +00001611 },
1612 {
1613 X86::LOCK_XOR8mi,
1614 X86::LOCK_XOR8mr,
1615 X86::LOCK_XOR16mi8,
1616 X86::LOCK_XOR16mi,
1617 X86::LOCK_XOR16mr,
1618 X86::LOCK_XOR32mi8,
1619 X86::LOCK_XOR32mi,
1620 X86::LOCK_XOR32mr,
1621 X86::LOCK_XOR64mi8,
1622 X86::LOCK_XOR64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001623 X86::LOCK_XOR64mr,
Eric Christopherc493a1f2011-05-11 21:44:58 +00001624 }
1625};
1626
Michael Liaocd9ede92012-09-19 19:36:58 +00001627// Return the target constant operand for atomic-load-op and do simple
1628// translations, such as from atomic-load-add to lock-sub. The return value is
1629// one of the following 3 cases:
1630// + target-constant, the operand could be supported as a target constant.
1631// + empty, the operand is not needed any more with the new op selected.
1632// + non-empty, otherwise.
1633static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
1634 DebugLoc dl,
1635 enum AtomicOpc &Op, EVT NVT,
1636 SDValue Val) {
1637 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1638 int64_t CNVal = CN->getSExtValue();
1639 // Quit if not 32-bit imm.
1640 if ((int32_t)CNVal != CNVal)
1641 return Val;
1642 // For atomic-load-add, we could do some optimizations.
1643 if (Op == ADD) {
1644 // Translate to INC/DEC if ADD by 1 or -1.
1645 if ((CNVal == 1) || (CNVal == -1)) {
1646 Op = (CNVal == 1) ? INC : DEC;
1647 // No more constant operand after being translated into INC/DEC.
1648 return SDValue();
1649 }
1650 // Translate to SUB if ADD by negative value.
1651 if (CNVal < 0) {
1652 Op = SUB;
1653 CNVal = -CNVal;
1654 }
1655 }
1656 return CurDAG->getTargetConstant(CNVal, NVT);
1657 }
1658
1659 // If the value operand is single-used, try to optimize it.
1660 if (Op == ADD && Val.hasOneUse()) {
1661 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1662 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1663 Op = SUB;
1664 return Val.getOperand(1);
1665 }
1666 // A special case for i16, which needs truncating as, in most cases, it's
1667 // promoted to i32. We will translate
1668 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1669 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1670 Val.getOperand(0).getOpcode() == ISD::SUB &&
1671 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1672 Op = SUB;
1673 Val = Val.getOperand(0);
1674 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1675 Val.getOperand(1));
1676 }
1677 }
1678
1679 return Val;
1680}
1681
Eric Christopherc324f722011-05-17 08:10:18 +00001682SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, EVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001683 if (Node->hasAnyUseOfValue(0))
1684 return 0;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001685
Michael Liaocd9ede92012-09-19 19:36:58 +00001686 DebugLoc dl = Node->getDebugLoc();
1687
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001688 // Optimize common patterns for __sync_or_and_fetch and similar arith
1689 // operations where the result is not used. This allows us to use the "lock"
1690 // version of the arithmetic instruction.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001691 SDValue Chain = Node->getOperand(0);
1692 SDValue Ptr = Node->getOperand(1);
1693 SDValue Val = Node->getOperand(2);
1694 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
1695 if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4))
1696 return 0;
1697
Eric Christopherc324f722011-05-17 08:10:18 +00001698 // Which index into the table.
1699 enum AtomicOpc Op;
1700 switch (Node->getOpcode()) {
Michael Liaocd9ede92012-09-19 19:36:58 +00001701 default:
1702 return 0;
Eric Christopherc324f722011-05-17 08:10:18 +00001703 case ISD::ATOMIC_LOAD_OR:
1704 Op = OR;
1705 break;
1706 case ISD::ATOMIC_LOAD_AND:
1707 Op = AND;
1708 break;
1709 case ISD::ATOMIC_LOAD_XOR:
1710 Op = XOR;
1711 break;
Michael Liaocd9ede92012-09-19 19:36:58 +00001712 case ISD::ATOMIC_LOAD_ADD:
1713 Op = ADD;
1714 break;
Eric Christopherc324f722011-05-17 08:10:18 +00001715 }
Michael Liaocd9ede92012-09-19 19:36:58 +00001716
1717 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val);
1718 bool isUnOp = !Val.getNode();
1719 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosiera20e1e72012-08-01 18:39:17 +00001720
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001721 unsigned Opc = 0;
1722 switch (NVT.getSimpleVT().SimpleTy) {
1723 default: return 0;
1724 case MVT::i8:
1725 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001726 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001727 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001728 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001729 break;
1730 case MVT::i16:
1731 if (isCN) {
1732 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001733 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001734 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001735 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001736 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001737 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001738 break;
1739 case MVT::i32:
1740 if (isCN) {
1741 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001742 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001743 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001744 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001745 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001746 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001747 break;
1748 case MVT::i64:
Eric Christopher5d8aa342011-06-30 00:48:30 +00001749 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001750 if (isCN) {
1751 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001752 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001753 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001754 Opc = AtomicOpcTbl[Op][ConstantI64];
Eric Christopher5d8aa342011-06-30 00:48:30 +00001755 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001756 break;
1757 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001758
Eric Christopher5d8aa342011-06-30 00:48:30 +00001759 assert(Opc != 0 && "Invalid arith lock transform!");
1760
Michael Liaocd9ede92012-09-19 19:36:58 +00001761 SDValue Ret;
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001762 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1763 dl, NVT), 0);
1764 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1765 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Michael Liaocd9ede92012-09-19 19:36:58 +00001766 if (isUnOp) {
1767 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain };
1768 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops,
1769 array_lengthof(Ops)), 0);
1770 } else {
1771 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain };
1772 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops,
1773 array_lengthof(Ops)), 0);
1774 }
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001775 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
1776 SDValue RetVals[] = { Undef, Ret };
1777 return CurDAG->getMergeValues(RetVals, 2, dl).getNode();
1778}
1779
Dan Gohman11596ed2009-10-09 20:35:19 +00001780/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1781/// any uses which require the SF or OF bits to be accurate.
1782static bool HasNoSignedComparisonUses(SDNode *N) {
1783 // Examine each user of the node.
1784 for (SDNode::use_iterator UI = N->use_begin(),
1785 UE = N->use_end(); UI != UE; ++UI) {
1786 // Only examine CopyToReg uses.
1787 if (UI->getOpcode() != ISD::CopyToReg)
1788 return false;
1789 // Only examine CopyToReg uses that copy to EFLAGS.
1790 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1791 X86::EFLAGS)
1792 return false;
1793 // Examine each user of the CopyToReg use.
1794 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1795 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1796 // Only examine the Flag result.
1797 if (FlagUI.getUse().getResNo() != 1) continue;
1798 // Anything unusual: assume conservatively.
1799 if (!FlagUI->isMachineOpcode()) return false;
1800 // Examine the opcode of the user.
1801 switch (FlagUI->getMachineOpcode()) {
1802 // These comparisons don't treat the most significant bit specially.
1803 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1804 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1805 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1806 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001807 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1808 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001809 case X86::CMOVA16rr: case X86::CMOVA16rm:
1810 case X86::CMOVA32rr: case X86::CMOVA32rm:
1811 case X86::CMOVA64rr: case X86::CMOVA64rm:
1812 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1813 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1814 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1815 case X86::CMOVB16rr: case X86::CMOVB16rm:
1816 case X86::CMOVB32rr: case X86::CMOVB32rm:
1817 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001818 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1819 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1820 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001821 case X86::CMOVE16rr: case X86::CMOVE16rm:
1822 case X86::CMOVE32rr: case X86::CMOVE32rm:
1823 case X86::CMOVE64rr: case X86::CMOVE64rm:
1824 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1825 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1826 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1827 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1828 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1829 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1830 case X86::CMOVP16rr: case X86::CMOVP16rm:
1831 case X86::CMOVP32rr: case X86::CMOVP32rm:
1832 case X86::CMOVP64rr: case X86::CMOVP64rm:
1833 continue;
1834 // Anything else: assume conservatively.
1835 default: return false;
1836 }
1837 }
1838 }
1839 return true;
1840}
1841
Joel Jones76d03102012-03-29 05:45:48 +00001842/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1843/// is suitable for doing the {load; increment or decrement; store} to modify
1844/// transformation.
Chad Rosiera20e1e72012-08-01 18:39:17 +00001845static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Chengf0bcecc2012-04-12 19:14:21 +00001846 SDValue StoredVal, SelectionDAG *CurDAG,
1847 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones76d03102012-03-29 05:45:48 +00001848
1849 // is the value stored the result of a DEC or INC?
1850 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1851
Joel Jones76d03102012-03-29 05:45:48 +00001852 // is the stored value result 0 of the load?
1853 if (StoredVal.getResNo() != 0) return false;
1854
1855 // are there other uses of the loaded value than the inc or dec?
1856 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1857
Joel Jones76d03102012-03-29 05:45:48 +00001858 // is the store non-extending and non-indexed?
Evan Chengf0bcecc2012-04-12 19:14:21 +00001859 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones76d03102012-03-29 05:45:48 +00001860 return false;
1861
Evan Chengf0bcecc2012-04-12 19:14:21 +00001862 SDValue Load = StoredVal->getOperand(0);
1863 // Is the stored value a non-extending and non-indexed load?
1864 if (!ISD::isNormalLoad(Load.getNode())) return false;
1865
1866 // Return LoadNode by reference.
1867 LoadNode = cast<LoadSDNode>(Load);
1868 // is the size of the value one that we can handle? (i.e. 64, 32, 16, or 8)
Chad Rosiera20e1e72012-08-01 18:39:17 +00001869 EVT LdVT = LoadNode->getMemoryVT();
1870 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Chengf0bcecc2012-04-12 19:14:21 +00001871 LdVT != MVT::i8)
1872 return false;
1873
1874 // Is store the only read of the loaded value?
1875 if (!Load.hasOneUse())
1876 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001877
Evan Chengf0bcecc2012-04-12 19:14:21 +00001878 // Is the address of the store the same as the load?
1879 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1880 LoadNode->getOffset() != StoreNode->getOffset())
1881 return false;
1882
1883 // Check if the chain is produced by the load or is a TokenFactor with
1884 // the load output chain as an operand. Return InputChain by reference.
1885 SDValue Chain = StoreNode->getChain();
1886
1887 bool ChainCheck = false;
1888 if (Chain == Load.getValue(1)) {
1889 ChainCheck = true;
1890 InputChain = LoadNode->getChain();
1891 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1892 SmallVector<SDValue, 4> ChainOps;
1893 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1894 SDValue Op = Chain.getOperand(i);
1895 if (Op == Load.getValue(1)) {
1896 ChainCheck = true;
1897 continue;
1898 }
Evan Cheng61003662012-05-16 01:54:27 +00001899
1900 // Make sure using Op as part of the chain would not cause a cycle here.
1901 // In theory, we could check whether the chain node is a predecessor of
1902 // the load. But that can be very expensive. Instead visit the uses and
1903 // make sure they all have smaller node id than the load.
1904 int LoadId = LoadNode->getNodeId();
1905 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1906 UE = UI->use_end(); UI != UE; ++UI) {
1907 if (UI.getUse().getResNo() != 0)
1908 continue;
1909 if (UI->getNodeId() > LoadId)
1910 return false;
1911 }
1912
Evan Chengf0bcecc2012-04-12 19:14:21 +00001913 ChainOps.push_back(Op);
1914 }
1915
1916 if (ChainCheck)
1917 // Make a new TokenFactor with all the other input chains except
1918 // for the load.
1919 InputChain = CurDAG->getNode(ISD::TokenFactor, Chain.getDebugLoc(),
1920 MVT::Other, &ChainOps[0], ChainOps.size());
1921 }
1922 if (!ChainCheck)
Joel Jones76d03102012-03-29 05:45:48 +00001923 return false;
1924
1925 return true;
1926}
1927
Benjamin Kramer73478402012-03-29 12:37:26 +00001928/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
1929/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones76d03102012-03-29 05:45:48 +00001930static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
1931 if (Opc == X86ISD::DEC) {
1932 if (LdVT == MVT::i64) return X86::DEC64m;
1933 if (LdVT == MVT::i32) return X86::DEC32m;
1934 if (LdVT == MVT::i16) return X86::DEC16m;
1935 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer73478402012-03-29 12:37:26 +00001936 } else {
1937 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones76d03102012-03-29 05:45:48 +00001938 if (LdVT == MVT::i64) return X86::INC64m;
1939 if (LdVT == MVT::i32) return X86::INC32m;
1940 if (LdVT == MVT::i16) return X86::INC16m;
1941 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones76d03102012-03-29 05:45:48 +00001942 }
Benjamin Kramer73478402012-03-29 12:37:26 +00001943 llvm_unreachable("unrecognized size for LdVT");
Joel Jones76d03102012-03-29 05:45:48 +00001944}
1945
Manman Ren1f7a1b62012-06-26 19:47:59 +00001946/// SelectGather - Customized ISel for GATHER operations.
1947///
1948SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
1949 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
1950 SDValue Chain = Node->getOperand(0);
1951 SDValue VSrc = Node->getOperand(2);
1952 SDValue Base = Node->getOperand(3);
1953 SDValue VIdx = Node->getOperand(4);
1954 SDValue VMask = Node->getOperand(5);
1955 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topper15d39ad2012-07-01 02:17:08 +00001956 if (!Scale)
1957 return 0;
Manman Ren1f7a1b62012-06-26 19:47:59 +00001958
Craig Topper5aba78b2012-07-12 06:52:41 +00001959 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
1960 MVT::Other);
1961
Manman Ren1f7a1b62012-06-26 19:47:59 +00001962 // Memory Operands: Base, Scale, Index, Disp, Segment
1963 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
1964 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
1965 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
1966 Disp, Segment, VMask, Chain};
1967 SDNode *ResNode = CurDAG->getMachineNode(Opc, Node->getDebugLoc(),
Craig Topper5aba78b2012-07-12 06:52:41 +00001968 VTs, Ops, array_lengthof(Ops));
1969 // Node has 2 outputs: VDst and MVT::Other.
1970 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
1971 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
1972 // of ResNode.
1973 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
1974 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Ren1f7a1b62012-06-26 19:47:59 +00001975 return ResNode;
1976}
1977
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001978SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Owen Andersone50ed302009-08-10 22:56:29 +00001979 EVT NVT = Node->getValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00001980 unsigned Opc, MOpc;
1981 unsigned Opcode = Node->getOpcode();
Dale Johannesend8392542009-02-03 21:48:12 +00001982 DebugLoc dl = Node->getDebugLoc();
Chad Rosiera20e1e72012-08-01 18:39:17 +00001983
Chris Lattner7c306da2010-03-02 06:34:30 +00001984 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00001985
Dan Gohmane8be6c62008-07-17 19:10:17 +00001986 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00001987 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00001988 return NULL; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00001989 }
Evan Cheng38262ca2006-01-11 22:15:18 +00001990
Evan Cheng0114e942006-01-06 20:36:21 +00001991 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00001992 default: break;
Manman Ren1f7a1b62012-06-26 19:47:59 +00001993 case ISD::INTRINSIC_W_CHAIN: {
1994 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
1995 switch (IntNo) {
1996 default: break;
1997 case Intrinsic::x86_avx2_gather_d_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00001998 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00001999 case Intrinsic::x86_avx2_gather_q_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002000 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002001 case Intrinsic::x86_avx2_gather_d_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002002 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002003 case Intrinsic::x86_avx2_gather_q_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002004 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren40307c72012-06-29 00:54:20 +00002005 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren40307c72012-06-29 00:54:20 +00002006 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002007 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren40307c72012-06-29 00:54:20 +00002008 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002009 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren40307c72012-06-29 00:54:20 +00002010 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren40307c72012-06-29 00:54:20 +00002011 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperde6e4842012-07-01 02:05:52 +00002012 case Intrinsic::x86_avx2_gather_q_d_256: {
2013 unsigned Opc;
2014 switch (IntNo) {
Craig Topper51e89c02012-07-01 02:55:34 +00002015 default: llvm_unreachable("Impossible intrinsic");
Craig Topperde6e4842012-07-01 02:05:52 +00002016 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2017 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2018 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2019 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2020 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2021 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2022 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2023 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2024 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2025 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2026 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2027 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2028 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2029 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2030 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2031 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2032 }
Craig Topper15d39ad2012-07-01 02:17:08 +00002033 SDNode *RetVal = SelectGather(Node, Opc);
2034 if (RetVal)
Craig Topper5aba78b2012-07-12 06:52:41 +00002035 // We already called ReplaceUses inside SelectGather.
2036 return NULL;
Craig Topper65b382c2012-07-01 02:18:18 +00002037 break;
Craig Topperde6e4842012-07-01 02:05:52 +00002038 }
Manman Ren1f7a1b62012-06-26 19:47:59 +00002039 }
2040 break;
2041 }
Dan Gohman72677342009-08-02 16:10:52 +00002042 case X86ISD::GlobalBaseReg:
2043 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00002044
Craig Topper51e89c02012-07-01 02:55:34 +00002045
Dan Gohman72677342009-08-02 16:10:52 +00002046 case X86ISD::ATOMOR64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002047 case X86ISD::ATOMXOR64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002048 case X86ISD::ATOMADD64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002049 case X86ISD::ATOMSUB64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002050 case X86ISD::ATOMNAND64_DAG:
Dan Gohman72677342009-08-02 16:10:52 +00002051 case X86ISD::ATOMAND64_DAG:
Michael Liaoe5e8f762012-09-25 18:08:13 +00002052 case X86ISD::ATOMMAX64_DAG:
2053 case X86ISD::ATOMMIN64_DAG:
2054 case X86ISD::ATOMUMAX64_DAG:
2055 case X86ISD::ATOMUMIN64_DAG:
Craig Topper51e89c02012-07-01 02:55:34 +00002056 case X86ISD::ATOMSWAP64_DAG: {
2057 unsigned Opc;
2058 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002059 default: llvm_unreachable("Impossible opcode");
Craig Topper51e89c02012-07-01 02:55:34 +00002060 case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break;
2061 case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break;
2062 case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break;
2063 case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break;
2064 case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break;
2065 case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break;
Michael Liaoe5e8f762012-09-25 18:08:13 +00002066 case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break;
2067 case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break;
2068 case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break;
2069 case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break;
Craig Topper51e89c02012-07-01 02:55:34 +00002070 case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break;
2071 }
2072 SDNode *RetVal = SelectAtomic64(Node, Opc);
2073 if (RetVal)
2074 return RetVal;
2075 break;
2076 }
Dale Johannesen48c1bc22008-10-02 18:53:47 +00002077
Eric Christopherc324f722011-05-17 08:10:18 +00002078 case ISD::ATOMIC_LOAD_XOR:
2079 case ISD::ATOMIC_LOAD_AND:
Michael Liaocd9ede92012-09-19 19:36:58 +00002080 case ISD::ATOMIC_LOAD_OR:
2081 case ISD::ATOMIC_LOAD_ADD: {
Eric Christopherc324f722011-05-17 08:10:18 +00002082 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00002083 if (RetVal)
2084 return RetVal;
2085 break;
2086 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002087 case ISD::AND:
2088 case ISD::OR:
2089 case ISD::XOR: {
2090 // For operations of the form (x << C1) op C2, check if we can use a smaller
2091 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2092 SDValue N0 = Node->getOperand(0);
2093 SDValue N1 = Node->getOperand(1);
2094
2095 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2096 break;
2097
2098 // i8 is unshrinkable, i16 should be promoted to i32.
2099 if (NVT != MVT::i32 && NVT != MVT::i64)
2100 break;
2101
2102 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2103 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2104 if (!Cst || !ShlCst)
2105 break;
2106
2107 int64_t Val = Cst->getSExtValue();
2108 uint64_t ShlVal = ShlCst->getZExtValue();
2109
2110 // Make sure that we don't change the operation by removing bits.
2111 // This only matters for OR and XOR, AND is unaffected.
Richard Smith1144af32012-08-24 23:29:28 +00002112 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2113 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002114 break;
2115
Craig Topper28654222012-08-11 17:44:14 +00002116 unsigned ShlOp, Op;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002117 EVT CstVT = NVT;
2118
2119 // Check the minimum bitwidth for the new constant.
2120 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2121 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2122 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2123 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2124 CstVT = MVT::i8;
2125 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2126 CstVT = MVT::i32;
2127
2128 // Bail if there is no smaller encoding.
2129 if (NVT == CstVT)
2130 break;
2131
2132 switch (NVT.getSimpleVT().SimpleTy) {
2133 default: llvm_unreachable("Unsupported VT!");
2134 case MVT::i32:
2135 assert(CstVT == MVT::i8);
2136 ShlOp = X86::SHL32ri;
2137
2138 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002139 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002140 case ISD::AND: Op = X86::AND32ri8; break;
2141 case ISD::OR: Op = X86::OR32ri8; break;
2142 case ISD::XOR: Op = X86::XOR32ri8; break;
2143 }
2144 break;
2145 case MVT::i64:
2146 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2147 ShlOp = X86::SHL64ri;
2148
2149 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002150 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002151 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2152 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2153 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2154 }
2155 break;
2156 }
2157
2158 // Emit the smaller op and the shift.
2159 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2160 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2161 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2162 getI8Imm(ShlVal));
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002163 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002164 case X86ISD::UMUL: {
2165 SDValue N0 = Node->getOperand(0);
2166 SDValue N1 = Node->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002167
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002168 unsigned LoReg;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002169 switch (NVT.getSimpleVT().SimpleTy) {
2170 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002171 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2172 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2173 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2174 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002175 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002176
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002177 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2178 N0, SDValue()).getValue(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002179
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002180 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2181 SDValue Ops[] = {N1, InFlag};
2182 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops, 2);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002183
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002184 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2185 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2186 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
2187 return NULL;
2188 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002189
Dan Gohman72677342009-08-02 16:10:52 +00002190 case ISD::SMUL_LOHI:
2191 case ISD::UMUL_LOHI: {
2192 SDValue N0 = Node->getOperand(0);
2193 SDValue N1 = Node->getOperand(1);
2194
2195 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liao0832a722012-09-26 08:22:37 +00002196 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendling12321672009-08-07 21:33:25 +00002197 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002198 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002199 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002200 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2201 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liao0832a722012-09-26 08:22:37 +00002202 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2203 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2204 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2205 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002206 }
Bill Wendling12321672009-08-07 21:33:25 +00002207 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002208 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002209 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002210 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2211 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2212 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2213 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002214 }
Bill Wendling12321672009-08-07 21:33:25 +00002215 }
Dan Gohman72677342009-08-02 16:10:52 +00002216
Michael Liao0832a722012-09-26 08:22:37 +00002217 unsigned SrcReg, LoReg, HiReg;
2218 switch (Opc) {
2219 default: llvm_unreachable("Unknown MUL opcode!");
2220 case X86::IMUL8r:
2221 case X86::MUL8r:
2222 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2223 break;
2224 case X86::IMUL16r:
2225 case X86::MUL16r:
2226 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2227 break;
2228 case X86::IMUL32r:
2229 case X86::MUL32r:
2230 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2231 break;
2232 case X86::IMUL64r:
2233 case X86::MUL64r:
2234 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2235 break;
2236 case X86::MULX32rr:
2237 SrcReg = X86::EDX; LoReg = HiReg = 0;
2238 break;
2239 case X86::MULX64rr:
2240 SrcReg = X86::RDX; LoReg = HiReg = 0;
2241 break;
Dan Gohman72677342009-08-02 16:10:52 +00002242 }
2243
2244 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002245 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00002246 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00002247 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002248 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002249 if (foldedLoad)
2250 std::swap(N0, N1);
2251 }
2252
Michael Liao0832a722012-09-26 08:22:37 +00002253 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Topper88097812012-05-23 05:44:51 +00002254 N0, SDValue()).getValue(1);
Michael Liao0832a722012-09-26 08:22:37 +00002255 SDValue ResHi, ResLo;
Dan Gohman72677342009-08-02 16:10:52 +00002256
2257 if (foldedLoad) {
Michael Liao0832a722012-09-26 08:22:37 +00002258 SDValue Chain;
Dan Gohman72677342009-08-02 16:10:52 +00002259 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2260 InFlag };
Michael Liao0832a722012-09-26 08:22:37 +00002261 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2262 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
2263 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops,
2264 array_lengthof(Ops));
2265 ResHi = SDValue(CNode, 0);
2266 ResLo = SDValue(CNode, 1);
2267 Chain = SDValue(CNode, 2);
2268 InFlag = SDValue(CNode, 3);
2269 } else {
2270 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
2271 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops,
2272 array_lengthof(Ops));
2273 Chain = SDValue(CNode, 0);
2274 InFlag = SDValue(CNode, 1);
2275 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002276
Dan Gohman72677342009-08-02 16:10:52 +00002277 // Update the chain.
Michael Liao0832a722012-09-26 08:22:37 +00002278 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman72677342009-08-02 16:10:52 +00002279 } else {
Michael Liao0832a722012-09-26 08:22:37 +00002280 SDValue Ops[] = { N1, InFlag };
2281 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2282 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
2283 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops,
2284 array_lengthof(Ops));
2285 ResHi = SDValue(CNode, 0);
2286 ResLo = SDValue(CNode, 1);
2287 InFlag = SDValue(CNode, 2);
2288 } else {
2289 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
2290 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops,
2291 array_lengthof(Ops));
2292 InFlag = SDValue(CNode, 0);
2293 }
Dan Gohman72677342009-08-02 16:10:52 +00002294 }
2295
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002296 // Prevent use of AH in a REX instruction by referencing AX instead.
2297 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2298 !SDValue(Node, 1).use_empty()) {
2299 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2300 X86::AX, MVT::i16, InFlag);
2301 InFlag = Result.getValue(2);
2302 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2303 // registers.
2304 if (!SDValue(Node, 0).use_empty())
2305 ReplaceUses(SDValue(Node, 1),
2306 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2307
2308 // Shift AX down 8 bits.
2309 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2310 Result,
2311 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2312 // Then truncate it down to i8.
2313 ReplaceUses(SDValue(Node, 1),
2314 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2315 }
Dan Gohman72677342009-08-02 16:10:52 +00002316 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002317 if (!SDValue(Node, 0).use_empty()) {
Michael Liao0832a722012-09-26 08:22:37 +00002318 if (ResLo.getNode() == 0) {
2319 assert(LoReg && "Register for low half is not defined!");
2320 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2321 InFlag);
2322 InFlag = ResLo.getValue(2);
2323 }
2324 ReplaceUses(SDValue(Node, 0), ResLo);
2325 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002326 }
2327 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002328 if (!SDValue(Node, 1).use_empty()) {
Michael Liao0832a722012-09-26 08:22:37 +00002329 if (ResHi.getNode() == 0) {
2330 assert(HiReg && "Register for high half is not defined!");
2331 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2332 InFlag);
2333 InFlag = ResHi.getValue(2);
2334 }
2335 ReplaceUses(SDValue(Node, 1), ResHi);
2336 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002337 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002338
Dan Gohman72677342009-08-02 16:10:52 +00002339 return NULL;
2340 }
2341
2342 case ISD::SDIVREM:
2343 case ISD::UDIVREM: {
2344 SDValue N0 = Node->getOperand(0);
2345 SDValue N1 = Node->getOperand(1);
2346
2347 bool isSigned = Opcode == ISD::SDIVREM;
Bill Wendling12321672009-08-07 21:33:25 +00002348 if (!isSigned) {
Owen Anderson825b72b2009-08-11 20:47:22 +00002349 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002350 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002351 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2352 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2353 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2354 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002355 }
Bill Wendling12321672009-08-07 21:33:25 +00002356 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00002357 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002358 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002359 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2360 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2361 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2362 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002363 }
Bill Wendling12321672009-08-07 21:33:25 +00002364 }
Dan Gohman72677342009-08-02 16:10:52 +00002365
Chris Lattner9e323832009-12-23 01:45:04 +00002366 unsigned LoReg, HiReg, ClrReg;
Dan Gohman72677342009-08-02 16:10:52 +00002367 unsigned ClrOpcode, SExtOpcode;
Owen Anderson825b72b2009-08-11 20:47:22 +00002368 switch (NVT.getSimpleVT().SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002369 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002370 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00002371 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00002372 ClrOpcode = 0;
2373 SExtOpcode = X86::CBW;
2374 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002375 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00002376 LoReg = X86::AX; HiReg = X86::DX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002377 ClrOpcode = X86::MOV16r0; ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00002378 SExtOpcode = X86::CWD;
2379 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002380 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00002381 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00002382 ClrOpcode = X86::MOV32r0;
2383 SExtOpcode = X86::CDQ;
2384 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002385 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00002386 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002387 ClrOpcode = X86::MOV64r0;
Dan Gohman72677342009-08-02 16:10:52 +00002388 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00002389 break;
2390 }
2391
Dan Gohman72677342009-08-02 16:10:52 +00002392 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002393 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002394 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002395
Dan Gohman72677342009-08-02 16:10:52 +00002396 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002397 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002398 // Special case for div8, just use a move with zero extension to AX to
2399 // clear the upper 8 bits (AH).
2400 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002401 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002402 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2403 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002404 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Dan Gohman602b0c82009-09-25 18:54:59 +00002405 MVT::Other, Ops,
2406 array_lengthof(Ops)), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002407 Chain = Move.getValue(1);
2408 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002409 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002410 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002411 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002412 Chain = CurDAG->getEntryNode();
2413 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002414 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002415 InFlag = Chain.getValue(1);
2416 } else {
2417 InFlag =
2418 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2419 LoReg, N0, SDValue()).getValue(1);
2420 if (isSigned && !signBitIsZero) {
2421 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002422 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002423 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002424 } else {
2425 // Zero out the high part, effectively zero extending the input.
Dan Gohmanf1b4d262010-01-12 04:42:54 +00002426 SDValue ClrNode =
2427 SDValue(CurDAG->getMachineNode(ClrOpcode, dl, NVT), 0);
Chris Lattner9e323832009-12-23 01:45:04 +00002428 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002429 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002430 }
Evan Cheng948f3432006-01-06 23:19:29 +00002431 }
Dan Gohman525178c2007-10-08 18:33:35 +00002432
Dan Gohman72677342009-08-02 16:10:52 +00002433 if (foldedLoad) {
2434 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2435 InFlag };
2436 SDNode *CNode =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002437 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops,
Dan Gohman602b0c82009-09-25 18:54:59 +00002438 array_lengthof(Ops));
Dan Gohman72677342009-08-02 16:10:52 +00002439 InFlag = SDValue(CNode, 1);
2440 // Update the chain.
2441 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2442 } else {
2443 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002444 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002445 }
Evan Cheng948f3432006-01-06 23:19:29 +00002446
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002447 // Prevent use of AH in a REX instruction by referencing AX instead.
2448 // Shift it down 8 bits.
2449 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2450 !SDValue(Node, 1).use_empty()) {
2451 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2452 X86::AX, MVT::i16, InFlag);
2453 InFlag = Result.getValue(2);
2454
2455 // If we also need AL (the quotient), get it by extracting a subreg from
2456 // Result. The fast register allocator does not like multiple CopyFromReg
2457 // nodes using aliasing registers.
2458 if (!SDValue(Node, 0).use_empty())
2459 ReplaceUses(SDValue(Node, 0),
2460 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2461
2462 // Shift AX right by 8 bits instead of using AH.
2463 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2464 Result,
2465 CurDAG->getTargetConstant(8, MVT::i8)),
2466 0);
2467 ReplaceUses(SDValue(Node, 1),
2468 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2469 }
Dan Gohman72677342009-08-02 16:10:52 +00002470 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002471 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002472 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2473 LoReg, NVT, InFlag);
2474 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002475 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002476 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002477 }
2478 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002479 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002480 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2481 HiReg, NVT, InFlag);
2482 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002483 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002484 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002485 }
Dan Gohman72677342009-08-02 16:10:52 +00002486 return NULL;
2487 }
2488
Manman Ren39ad5682012-08-08 00:51:41 +00002489 case X86ISD::CMP:
2490 case X86ISD::SUB: {
2491 // Sometimes a SUB is used to perform comparison.
2492 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2493 // This node is not a CMP.
2494 break;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002495 SDValue N0 = Node->getOperand(0);
2496 SDValue N1 = Node->getOperand(1);
2497
2498 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2499 // use a smaller encoding.
Eli Friedman77524422010-08-04 22:40:58 +00002500 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2501 HasNoSignedComparisonUses(Node))
Evan Cheng2bce5f4b2010-04-28 08:30:49 +00002502 // Look past the truncate if CMP is the only use of it.
2503 N0 = N0.getOperand(0);
Dan Gohman65fd6562011-11-03 21:49:52 +00002504 if ((N0.getNode()->getOpcode() == ISD::AND ||
2505 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2506 N0.getNode()->hasOneUse() &&
Dan Gohman6a402dc2009-08-19 18:16:17 +00002507 N0.getValueType() != MVT::i8 &&
2508 X86::isZeroNode(N1)) {
2509 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2510 if (!C) break;
2511
2512 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002513 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2514 (!(C->getZExtValue() & 0x80) ||
2515 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002516 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2517 SDValue Reg = N0.getNode()->getOperand(0);
2518
2519 // On x86-32, only the ABCD registers have 8-bit subregisters.
2520 if (!Subtarget->is64Bit()) {
Craig Topperc528e462012-02-22 07:28:11 +00002521 const TargetRegisterClass *TRC;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002522 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2523 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2524 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2525 default: llvm_unreachable("Unsupported TEST operand type!");
2526 }
2527 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002528 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2529 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002530 }
2531
2532 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002533 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002534 MVT::i8, Reg);
2535
2536 // Emit a testb.
Manman Renbc96bcd2012-09-28 18:53:24 +00002537 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2538 Subreg, Imm);
2539 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2540 // one, do not call ReplaceAllUsesWith.
2541 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2542 SDValue(NewNode, 0));
2543 return NULL;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002544 }
2545
2546 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002547 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2548 (!(C->getZExtValue() & 0x8000) ||
2549 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002550 // Shift the immediate right by 8 bits.
2551 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2552 MVT::i8);
2553 SDValue Reg = N0.getNode()->getOperand(0);
2554
2555 // Put the value in an ABCD register.
Craig Topperc528e462012-02-22 07:28:11 +00002556 const TargetRegisterClass *TRC;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002557 switch (N0.getValueType().getSimpleVT().SimpleTy) {
2558 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2559 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2560 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2561 default: llvm_unreachable("Unsupported TEST operand type!");
2562 }
2563 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002564 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2565 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002566
2567 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002568 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002569 MVT::i8, Reg);
2570
Jakob Stoklund Olesened744822011-10-08 18:28:28 +00002571 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2572 // target GR8_NOREX registers, so make sure the register class is
2573 // forced.
Manman Renbc96bcd2012-09-28 18:53:24 +00002574 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2575 MVT::i32, Subreg, ShiftedImm);
2576 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2577 // one, do not call ReplaceAllUsesWith.
2578 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2579 SDValue(NewNode, 0));
2580 return NULL;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002581 }
2582
2583 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2584 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002585 N0.getValueType() != MVT::i16 &&
2586 (!(C->getZExtValue() & 0x8000) ||
2587 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002588 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2589 SDValue Reg = N0.getNode()->getOperand(0);
2590
2591 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002592 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002593 MVT::i16, Reg);
2594
2595 // Emit a testw.
Manman Renbc96bcd2012-09-28 18:53:24 +00002596 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2597 Subreg, Imm);
2598 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2599 // one, do not call ReplaceAllUsesWith.
2600 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2601 SDValue(NewNode, 0));
2602 return NULL;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002603 }
2604
2605 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2606 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002607 N0.getValueType() == MVT::i64 &&
2608 (!(C->getZExtValue() & 0x80000000) ||
2609 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002610 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2611 SDValue Reg = N0.getNode()->getOperand(0);
2612
2613 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002614 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002615 MVT::i32, Reg);
2616
2617 // Emit a testl.
Manman Renbc96bcd2012-09-28 18:53:24 +00002618 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2619 Subreg, Imm);
2620 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2621 // one, do not call ReplaceAllUsesWith.
2622 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2623 SDValue(NewNode, 0));
2624 return NULL;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002625 }
2626 }
2627 break;
2628 }
Pete Cooper2d496892011-11-15 21:57:53 +00002629 case ISD::STORE: {
Joel Jones76d03102012-03-29 05:45:48 +00002630 // Change a chain of {load; incr or dec; store} of the same value into
2631 // a simple increment or decrement through memory of that value, if the
2632 // uses of the modified value and its address are suitable.
Pete Coopercd75e442011-11-16 19:03:23 +00002633 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosiera20e1e72012-08-01 18:39:17 +00002634 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones76d03102012-03-29 05:45:48 +00002635 // {INC,DEC}X{64,32,16,8}.)
2636 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Coopercd75e442011-11-16 19:03:23 +00002637 // node in the pattern to the result node. probably with a new keyword
2638 // for example, we have this
2639 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2640 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2641 // (implicit EFLAGS)]>;
2642 // but maybe need something like this
2643 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2644 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2645 // (transferrable EFLAGS)]>;
Joel Jones76d03102012-03-29 05:45:48 +00002646
Pete Cooper2d496892011-11-15 21:57:53 +00002647 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper2d496892011-11-15 21:57:53 +00002648 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones76d03102012-03-29 05:45:48 +00002649 unsigned Opc = StoredVal->getOpcode();
Pete Cooper2d496892011-11-15 21:57:53 +00002650
Evan Chengf0bcecc2012-04-12 19:14:21 +00002651 LoadSDNode *LoadNode = 0;
2652 SDValue InputChain;
2653 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2654 LoadNode, InputChain))
2655 break;
Pete Cooper2d496892011-11-15 21:57:53 +00002656
2657 SDValue Base, Scale, Index, Disp, Segment;
2658 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2659 Base, Scale, Index, Disp, Segment))
2660 break;
2661
2662 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2663 MemOp[0] = StoreNode->getMemOperand();
2664 MemOp[1] = LoadNode->getMemOperand();
2665 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosiera20e1e72012-08-01 18:39:17 +00002666 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones76d03102012-03-29 05:45:48 +00002667 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2668 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Pete Cooper2d496892011-11-15 21:57:53 +00002669 Node->getDebugLoc(),
2670 MVT::i32, MVT::Other, Ops,
2671 array_lengthof(Ops));
2672 Result->setMemRefs(MemOp, MemOp + 2);
2673
2674 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2675 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2676
2677 return Result;
2678 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002679 }
2680
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002681 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002682
Chris Lattner7c306da2010-03-02 06:34:30 +00002683 DEBUG(dbgs() << "=> ";
2684 if (ResNode == NULL || ResNode == Node)
2685 Node->dump(CurDAG);
2686 else
2687 ResNode->dump(CurDAG);
2688 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002689
2690 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002691}
2692
Chris Lattnerc0bad572006-06-08 18:03:49 +00002693bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002694SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002695 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002696 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002697 switch (ConstraintCode) {
2698 case 'o': // offsetable ??
2699 case 'v': // not offsetable ??
2700 default: return true;
2701 case 'm': // memory
Chris Lattnerb86faa12010-09-21 22:07:31 +00002702 if (!SelectAddr(0, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002703 return true;
2704 break;
2705 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002706
Evan Cheng04699902006-08-26 01:05:16 +00002707 OutOps.push_back(Op0);
2708 OutOps.push_back(Op1);
2709 OutOps.push_back(Op2);
2710 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002711 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002712 return false;
2713}
2714
Chad Rosiera20e1e72012-08-01 18:39:17 +00002715/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattnerc961eea2005-11-16 01:54:32 +00002716/// X86-specific DAG, ready for instruction scheduling.
2717///
Bill Wendling98a366d2009-04-29 23:29:43 +00002718FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperc89c7442012-03-27 07:21:54 +00002719 CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002720 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002721}