blob: 3ef7b2c7697bbeb6e8b95cfcce4a22d729ed6b47 [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
15#include "X86.h"
Evan Cheng8700e142006-01-11 06:09:51 +000016#include "X86InstrBuilder.h"
Evan Cheng0475ab52008-01-05 00:41:47 +000017#include "X86MachineFunctionInfo.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000018#include "X86RegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000019#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000020#include "X86TargetMachine.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000021#include "llvm/ADT/Statistic.h"
Evan Chengaaca22c2006-01-10 20:26:56 +000022#include "llvm/CodeGen/MachineFrameInfo.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000023#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner92cb0af2006-01-11 01:15:34 +000024#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000025#include "llvm/CodeGen/MachineRegisterInfo.h"
Chris Lattnerc961eea2005-11-16 01:54:32 +000026#include "llvm/CodeGen/SelectionDAGISel.h"
Stephen Hines37ed9c12014-12-01 14:51:49 -080027#include "llvm/IR/Function.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"
Stephen Hines37ed9c12014-12-01 14:51:49 -080037#include <stdint.h>
Chris Lattnerc961eea2005-11-16 01:54:32 +000038using namespace llvm;
39
Stephen Hinesdce4a402014-05-29 02:49:00 -070040#define DEBUG_TYPE "x86-isel"
41
Chris Lattner95b2c7d2006-12-19 22:59:26 +000042STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor");
43
Chris Lattnerc961eea2005-11-16 01:54:32 +000044//===----------------------------------------------------------------------===//
45// Pattern Matcher Implementation
46//===----------------------------------------------------------------------===//
47
48namespace {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000049 /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses
Dan Gohman475871a2008-07-27 21:46:04 +000050 /// SDValue's instead of register numbers for the leaves of the matched
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000051 /// tree.
52 struct X86ISelAddressMode {
53 enum {
54 RegBase,
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000055 FrameIndexBase
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000056 } BaseType;
57
Dan Gohmanffce6f12010-04-29 23:30:41 +000058 // This is really a union, discriminated by BaseType!
59 SDValue Base_Reg;
60 int Base_FrameIndex;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000061
62 unsigned Scale;
Chad Rosiera20e1e72012-08-01 18:39:17 +000063 SDValue IndexReg;
Dan Gohman27cae7b2008-11-11 15:52:29 +000064 int32_t Disp;
Rafael Espindola094fad32009-04-08 21:14:34 +000065 SDValue Segment;
Dan Gohman46510a72010-04-15 01:51:59 +000066 const GlobalValue *GV;
67 const Constant *CP;
68 const BlockAddress *BlockAddr;
Evan Cheng25ab6902006-09-08 06:48:29 +000069 const char *ES;
70 int JT;
Evan Cheng51a9ed92006-02-25 10:09:08 +000071 unsigned Align; // CP alignment.
Chris Lattnerb8afeb92009-06-26 05:51:45 +000072 unsigned char SymbolFlags; // X86II::MO_*
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000073
74 X86ISelAddressMode()
Dan Gohmanffce6f12010-04-29 23:30:41 +000075 : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0),
Stephen Hinesdce4a402014-05-29 02:49:00 -070076 Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr),
77 JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +000078 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000079
80 bool hasSymbolicDisplacement() const {
Stephen Hinesdce4a402014-05-29 02:49:00 -070081 return GV != nullptr || CP != nullptr || ES != nullptr ||
82 JT != -1 || BlockAddr != nullptr;
Dan Gohman2d0a1cc2009-02-07 00:43:41 +000083 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000084
Chris Lattner18c59872009-06-27 04:16:01 +000085 bool hasBaseOrIndexReg() const {
Tim Northoveradadf882013-09-19 11:33:53 +000086 return BaseType == FrameIndexBase ||
Stephen Hinesdce4a402014-05-29 02:49:00 -070087 IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr;
Chris Lattner18c59872009-06-27 04:16:01 +000088 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000089
Chris Lattner18c59872009-06-27 04:16:01 +000090 /// isRIPRelative - Return true if this addressing mode is already RIP
91 /// relative.
92 bool isRIPRelative() const {
93 if (BaseType != RegBase) return false;
94 if (RegisterSDNode *RegNode =
Dan Gohmanffce6f12010-04-29 23:30:41 +000095 dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode()))
Chris Lattner18c59872009-06-27 04:16:01 +000096 return RegNode->getReg() == X86::RIP;
97 return false;
98 }
Chad Rosiera20e1e72012-08-01 18:39:17 +000099
Chris Lattner18c59872009-06-27 04:16:01 +0000100 void setBaseReg(SDValue Reg) {
101 BaseType = RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +0000102 Base_Reg = Reg;
Chris Lattner18c59872009-06-27 04:16:01 +0000103 }
Dan Gohman2d0a1cc2009-02-07 00:43:41 +0000104
Manman Renb720be62012-09-11 22:23:19 +0000105#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000106 void dump() {
David Greened7f4f242010-01-05 01:29:08 +0000107 dbgs() << "X86ISelAddressMode " << this << '\n';
Dan Gohmanffce6f12010-04-29 23:30:41 +0000108 dbgs() << "Base_Reg ";
Stephen Hinesdce4a402014-05-29 02:49:00 -0700109 if (Base_Reg.getNode())
Chad Rosiera20e1e72012-08-01 18:39:17 +0000110 Base_Reg.getNode()->dump();
Bill Wendling12321672009-08-07 21:33:25 +0000111 else
David Greened7f4f242010-01-05 01:29:08 +0000112 dbgs() << "nul";
Dan Gohmanffce6f12010-04-29 23:30:41 +0000113 dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000114 << " Scale" << Scale << '\n'
115 << "IndexReg ";
Stephen Hinesdce4a402014-05-29 02:49:00 -0700116 if (IndexReg.getNode())
Bill Wendling12321672009-08-07 21:33:25 +0000117 IndexReg.getNode()->dump();
118 else
Chad Rosiera20e1e72012-08-01 18:39:17 +0000119 dbgs() << "nul";
David Greened7f4f242010-01-05 01:29:08 +0000120 dbgs() << " Disp " << Disp << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000121 << "GV ";
Bill Wendling12321672009-08-07 21:33:25 +0000122 if (GV)
123 GV->dump();
124 else
David Greened7f4f242010-01-05 01:29:08 +0000125 dbgs() << "nul";
126 dbgs() << " CP ";
Bill Wendling12321672009-08-07 21:33:25 +0000127 if (CP)
128 CP->dump();
129 else
David Greened7f4f242010-01-05 01:29:08 +0000130 dbgs() << "nul";
131 dbgs() << '\n'
Benjamin Kramer072a56e2009-08-23 11:52:17 +0000132 << "ES ";
Bill Wendling12321672009-08-07 21:33:25 +0000133 if (ES)
David Greened7f4f242010-01-05 01:29:08 +0000134 dbgs() << ES;
Bill Wendling12321672009-08-07 21:33:25 +0000135 else
David Greened7f4f242010-01-05 01:29:08 +0000136 dbgs() << "nul";
137 dbgs() << " JT" << JT << " Align" << Align << '\n';
Dale Johannesen50dd1d02008-08-11 23:46:25 +0000138 }
Manman Ren77e300e2012-09-06 19:06:06 +0000139#endif
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000140 };
141}
142
143namespace {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000144 //===--------------------------------------------------------------------===//
145 /// ISel - X86 specific code to select X86 machine instructions for
146 /// SelectionDAG operations.
147 ///
Stephen Hines36b56882014-04-23 16:57:46 -0700148 class X86DAGToDAGISel final : public SelectionDAGISel {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000149 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
150 /// make the right decision when generating code for different targets.
151 const X86Subtarget *Subtarget;
Evan Cheng7ccced62006-02-18 00:15:05 +0000152
Evan Chengb7a75a52008-09-26 23:41:32 +0000153 /// OptForSize - If true, selector should try to optimize for code size
154 /// instead of performance.
155 bool OptForSize;
156
Chris Lattnerc961eea2005-11-16 01:54:32 +0000157 public:
Bill Wendling98a366d2009-04-29 23:29:43 +0000158 explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000159 : SelectionDAGISel(tm, OptLevel),
Dan Gohmanc5534622009-06-03 20:20:00 +0000160 Subtarget(&tm.getSubtarget<X86Subtarget>()),
Devang Patel4ae641f2008-10-01 23:18:38 +0000161 OptForSize(false) {}
Chris Lattnerc961eea2005-11-16 01:54:32 +0000162
Stephen Hines36b56882014-04-23 16:57:46 -0700163 const char *getPassName() const override {
Chris Lattnerc961eea2005-11-16 01:54:32 +0000164 return "X86 DAG->DAG Instruction Selection";
165 }
166
Stephen Hinesdce4a402014-05-29 02:49:00 -0700167 bool runOnMachineFunction(MachineFunction &MF) override {
168 // Reset the subtarget each time through.
169 Subtarget = &TM.getSubtarget<X86Subtarget>();
170 SelectionDAGISel::runOnMachineFunction(MF);
171 return true;
172 }
173
Stephen Hines36b56882014-04-23 16:57:46 -0700174 void EmitFunctionEntryCode() override;
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000175
Stephen Hines36b56882014-04-23 16:57:46 -0700176 bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const override;
Evan Cheng014bf212010-02-15 19:41:07 +0000177
Stephen Hines36b56882014-04-23 16:57:46 -0700178 void PreprocessISelDAG() override;
Chris Lattner7c306da2010-03-02 06:34:30 +0000179
Jakob Stoklund Olesen3061c442010-09-03 00:35:18 +0000180 inline bool immSext8(SDNode *N) const {
181 return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue());
182 }
183
184 // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit
185 // sign extended field.
186 inline bool i64immSExt32(SDNode *N) const {
187 uint64_t v = cast<ConstantSDNode>(N)->getZExtValue();
188 return (int64_t)v == (int32_t)v;
189 }
190
Chris Lattnerc961eea2005-11-16 01:54:32 +0000191// Include the pieces autogenerated from the target description.
192#include "X86GenDAGISel.inc"
193
194 private:
Stephen Hines36b56882014-04-23 16:57:46 -0700195 SDNode *Select(SDNode *N) override;
Manman Ren1f7a1b62012-06-26 19:47:59 +0000196 SDNode *SelectGather(SDNode *N, unsigned Opc);
Craig Topper07ad0c42013-08-15 05:57:07 +0000197 SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000198
Eli Friedman4977eb52011-07-13 20:44:23 +0000199 bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM);
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000200 bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM);
Rafael Espindola49a168d2009-04-12 21:55:03 +0000201 bool MatchWrapper(SDValue N, X86ISelAddressMode &AM);
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000202 bool MatchAddress(SDValue N, X86ISelAddressMode &AM);
203 bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
204 unsigned Depth);
Rafael Espindola523249f2009-03-31 16:16:57 +0000205 bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM);
Chris Lattnerb86faa12010-09-21 22:07:31 +0000206 bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Rafael Espindola094fad32009-04-08 21:14:34 +0000207 SDValue &Scale, SDValue &Index, SDValue &Disp,
208 SDValue &Segment);
Tim Northover85c622d2013-06-01 09:55:14 +0000209 bool SelectMOV64Imm32(SDValue N, SDValue &Imm);
Chris Lattner52a261b2010-09-21 20:31:19 +0000210 bool SelectLEAAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000211 SDValue &Scale, SDValue &Index, SDValue &Disp,
212 SDValue &Segment);
Tim Northovere5609f32013-06-10 20:43:49 +0000213 bool SelectLEA64_32Addr(SDValue N, SDValue &Base,
214 SDValue &Scale, SDValue &Index, SDValue &Disp,
215 SDValue &Segment);
Chris Lattner52a261b2010-09-21 20:31:19 +0000216 bool SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner599b5312010-07-08 23:46:44 +0000217 SDValue &Scale, SDValue &Index, SDValue &Disp,
218 SDValue &Segment);
Chris Lattnere60f7b42010-03-01 22:51:11 +0000219 bool SelectScalarSSELoad(SDNode *Root, SDValue N,
Chris Lattner92d3ada2010-02-16 22:35:06 +0000220 SDValue &Base, SDValue &Scale,
Dan Gohman475871a2008-07-27 21:46:04 +0000221 SDValue &Index, SDValue &Disp,
Rafael Espindola094fad32009-04-08 21:14:34 +0000222 SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +0000223 SDValue &NodeWithChain);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000224
Dan Gohmaneeb3a002010-01-05 01:24:18 +0000225 bool TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +0000226 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +0000227 SDValue &Index, SDValue &Disp,
228 SDValue &Segment);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000229
Chris Lattnerc0bad572006-06-08 18:03:49 +0000230 /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for
231 /// inline asm expressions.
Stephen Hines36b56882014-04-23 16:57:46 -0700232 bool SelectInlineAsmMemoryOperand(const SDValue &Op,
233 char ConstraintCode,
234 std::vector<SDValue> &OutOps) override;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000235
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000236 void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI);
237
Chad Rosiera20e1e72012-08-01 18:39:17 +0000238 inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +0000239 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +0000240 SDValue &Disp, SDValue &Segment) {
Stephen Hines37ed9c12014-12-01 14:51:49 -0800241 Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
242 ? CurDAG->getTargetFrameIndex(AM.Base_FrameIndex,
243 TLI->getPointerTy())
244 : AM.Base_Reg;
Evan Chengbdce7b42005-12-17 09:13:43 +0000245 Scale = getI8Imm(AM.Scale);
Evan Chenge5280532005-12-12 21:49:40 +0000246 Index = AM.IndexReg;
Evan Cheng25ab6902006-09-08 06:48:29 +0000247 // These are 32-bit even in 64-bit mode since RIP relative offset
248 // is 32-bit.
249 if (AM.GV)
Andrew Trickac6d9be2013-05-25 02:42:55 +0000250 Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(),
Devang Patel0d881da2010-07-06 22:08:15 +0000251 MVT::i32, AM.Disp,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000252 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000253 else if (AM.CP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000254 Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32,
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000255 AM.Align, AM.Disp, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000256 else if (AM.ES) {
257 assert(!AM.Disp && "Non-zero displacement is ignored with ES.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000258 Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000259 } else if (AM.JT != -1) {
260 assert(!AM.Disp && "Non-zero displacement is ignored with JT.");
Owen Anderson825b72b2009-08-11 20:47:22 +0000261 Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags);
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000262 } else if (AM.BlockAddr)
263 Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp,
264 AM.SymbolFlags);
Evan Cheng25ab6902006-09-08 06:48:29 +0000265 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000266 Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32);
Rafael Espindola094fad32009-04-08 21:14:34 +0000267
268 if (AM.Segment.getNode())
269 Segment = AM.Segment;
270 else
Owen Anderson825b72b2009-08-11 20:47:22 +0000271 Segment = CurDAG->getRegister(0, MVT::i32);
Evan Chenge5280532005-12-12 21:49:40 +0000272 }
273
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000274 /// getI8Imm - Return a target constant with the specified value, of type
275 /// i8.
Dan Gohman475871a2008-07-27 21:46:04 +0000276 inline SDValue getI8Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000277 return CurDAG->getTargetConstant(Imm, MVT::i8);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000278 }
279
Chris Lattnerc961eea2005-11-16 01:54:32 +0000280 /// getI32Imm - Return a target constant with the specified value, of type
281 /// i32.
Dan Gohman475871a2008-07-27 21:46:04 +0000282 inline SDValue getI32Imm(unsigned Imm) {
Owen Anderson825b72b2009-08-11 20:47:22 +0000283 return CurDAG->getTargetConstant(Imm, MVT::i32);
Chris Lattnerc961eea2005-11-16 01:54:32 +0000284 }
Evan Chengf597dc72006-02-10 22:24:32 +0000285
Dan Gohman8b746962008-09-23 18:22:58 +0000286 /// getGlobalBaseReg - Return an SDNode that returns the value of
287 /// the global base register. Output instructions required to
288 /// initialize the global base register, if necessary.
289 ///
Evan Cheng9ade2182006-08-26 05:34:46 +0000290 SDNode *getGlobalBaseReg();
Evan Cheng7ccced62006-02-18 00:15:05 +0000291
Dan Gohmanc5534622009-06-03 20:20:00 +0000292 /// getTargetMachine - Return a reference to the TargetMachine, casted
293 /// to the target-specific type.
Jakub Staszak608e3552013-02-19 21:54:59 +0000294 const X86TargetMachine &getTargetMachine() const {
Dan Gohmanc5534622009-06-03 20:20:00 +0000295 return static_cast<const X86TargetMachine &>(TM);
296 }
297
298 /// getInstrInfo - Return a reference to the TargetInstrInfo, casted
299 /// to the target-specific type.
Jakub Staszak608e3552013-02-19 21:54:59 +0000300 const X86InstrInfo *getInstrInfo() const {
Stephen Hines37ed9c12014-12-01 14:51:49 -0800301 return getTargetMachine().getSubtargetImpl()->getInstrInfo();
302 }
303
304 /// \brief Address-mode matching performs shift-of-and to and-of-shift
305 /// reassociation in order to expose more scaled addressing
306 /// opportunities.
307 bool ComplexPatternFuncMutatesDAG() const override {
308 return true;
Dan Gohmanc5534622009-06-03 20:20:00 +0000309 }
Chris Lattnerc961eea2005-11-16 01:54:32 +0000310 };
311}
312
Evan Chengf4b4c412006-08-08 00:31:00 +0000313
Evan Cheng014bf212010-02-15 19:41:07 +0000314bool
315X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const {
Bill Wendling98a366d2009-04-29 23:29:43 +0000316 if (OptLevel == CodeGenOpt::None) return false;
Evan Cheng27e1fe92006-10-14 08:33:25 +0000317
Evan Cheng014bf212010-02-15 19:41:07 +0000318 if (!N.hasOneUse())
319 return false;
320
321 if (N.getOpcode() != ISD::LOAD)
322 return true;
323
324 // If N is a load, do additional profitability checks.
325 if (U == Root) {
Evan Cheng884c70c2008-11-27 00:49:46 +0000326 switch (U->getOpcode()) {
327 default: break;
Dan Gohman9ef51c82010-01-04 20:51:50 +0000328 case X86ISD::ADD:
329 case X86ISD::SUB:
330 case X86ISD::AND:
331 case X86ISD::XOR:
332 case X86ISD::OR:
Evan Cheng884c70c2008-11-27 00:49:46 +0000333 case ISD::ADD:
334 case ISD::ADDC:
335 case ISD::ADDE:
336 case ISD::AND:
337 case ISD::OR:
338 case ISD::XOR: {
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000339 SDValue Op1 = U->getOperand(1);
340
Evan Cheng884c70c2008-11-27 00:49:46 +0000341 // If the other operand is a 8-bit immediate we should fold the immediate
342 // instead. This reduces code size.
343 // e.g.
344 // movl 4(%esp), %eax
345 // addl $4, %eax
346 // vs.
347 // movl $4, %eax
348 // addl 4(%esp), %eax
349 // The former is 2 bytes shorter. In case where the increment is 1, then
350 // the saving can be 4 bytes (by using incl %eax).
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000351 if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1))
Dan Gohman9a49d312009-03-14 02:07:16 +0000352 if (Imm->getAPIntValue().isSignedIntN(8))
353 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000354
355 // If the other operand is a TLS address, we should fold it instead.
356 // This produces
357 // movl %gs:0, %eax
358 // leal i@NTPOFF(%eax), %eax
359 // instead of
360 // movl $i@NTPOFF, %eax
361 // addl %gs:0, %eax
362 // if the block also has an access to a second TLS address this will save
363 // a load.
Stephen Hines36b56882014-04-23 16:57:46 -0700364 // FIXME: This is probably also true for non-TLS addresses.
Rafael Espindoladbcfb302009-04-10 10:09:34 +0000365 if (Op1.getOpcode() == X86ISD::Wrapper) {
366 SDValue Val = Op1.getOperand(0);
367 if (Val.getOpcode() == ISD::TargetGlobalTLSAddress)
368 return false;
369 }
Evan Cheng884c70c2008-11-27 00:49:46 +0000370 }
371 }
Evan Cheng014bf212010-02-15 19:41:07 +0000372 }
373
374 return true;
375}
376
Evan Chengf48ef032010-03-14 03:48:46 +0000377/// MoveBelowCallOrigChain - Replace the original chain operand of the call with
378/// load's chain operand and move load below the call's chain operand.
379static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load,
Evan Cheng2b87e062012-10-02 23:49:13 +0000380 SDValue Call, SDValue OrigChain) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000381 SmallVector<SDValue, 8> Ops;
Evan Chengf48ef032010-03-14 03:48:46 +0000382 SDValue Chain = OrigChain.getOperand(0);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000383 if (Chain.getNode() == Load.getNode())
384 Ops.push_back(Load.getOperand(0));
385 else {
386 assert(Chain.getOpcode() == ISD::TokenFactor &&
Evan Chengf48ef032010-03-14 03:48:46 +0000387 "Unexpected chain operand");
Evan Cheng5b2e5892009-01-26 18:43:34 +0000388 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i)
389 if (Chain.getOperand(i).getNode() == Load.getNode())
390 Ops.push_back(Load.getOperand(0));
391 else
392 Ops.push_back(Chain.getOperand(i));
393 SDValue NewChain =
Stephen Hinesdce4a402014-05-29 02:49:00 -0700394 CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops);
Evan Cheng5b2e5892009-01-26 18:43:34 +0000395 Ops.clear();
396 Ops.push_back(NewChain);
397 }
Evan Chengf48ef032010-03-14 03:48:46 +0000398 for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i)
399 Ops.push_back(OrigChain.getOperand(i));
Stephen Hinesdce4a402014-05-29 02:49:00 -0700400 CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops);
Dan Gohman027657d2010-06-18 15:30:29 +0000401 CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0),
Evan Chengab6c3bb2008-08-25 21:27:18 +0000402 Load.getOperand(1), Load.getOperand(2));
Evan Cheng2b87e062012-10-02 23:49:13 +0000403
Evan Cheng2b87e062012-10-02 23:49:13 +0000404 unsigned NumOps = Call.getNode()->getNumOperands();
Evan Chengab6c3bb2008-08-25 21:27:18 +0000405 Ops.clear();
Gabor Greifba36cb52008-08-28 21:40:38 +0000406 Ops.push_back(SDValue(Load.getNode(), 1));
Evan Cheng2b87e062012-10-02 23:49:13 +0000407 for (unsigned i = 1, e = NumOps; i != e; ++i)
Evan Chengab6c3bb2008-08-25 21:27:18 +0000408 Ops.push_back(Call.getOperand(i));
Stephen Hinesdce4a402014-05-29 02:49:00 -0700409 CurDAG->UpdateNodeOperands(Call.getNode(), Ops);
Evan Chengab6c3bb2008-08-25 21:27:18 +0000410}
411
412/// isCalleeLoad - Return true if call address is a load and it can be
413/// moved below CALLSEQ_START and the chains leading up to the call.
414/// Return the CALLSEQ_START by reference as a second output.
Evan Chengf48ef032010-03-14 03:48:46 +0000415/// In the case of a tail call, there isn't a callseq node between the call
416/// chain and the load.
417static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) {
Evan Cheng2a294782012-10-05 01:48:22 +0000418 // The transformation is somewhat dangerous if the call's chain was glued to
419 // the call. After MoveBelowOrigChain the load is moved between the call and
420 // the chain, this can create a cycle if the load is not folded. So it is
421 // *really* important that we are sure the load will be folded.
Gabor Greifba36cb52008-08-28 21:40:38 +0000422 if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse())
Evan Chengab6c3bb2008-08-25 21:27:18 +0000423 return false;
Gabor Greifba36cb52008-08-28 21:40:38 +0000424 LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode());
Evan Chengab6c3bb2008-08-25 21:27:18 +0000425 if (!LD ||
426 LD->isVolatile() ||
427 LD->getAddressingMode() != ISD::UNINDEXED ||
428 LD->getExtensionType() != ISD::NON_EXTLOAD)
429 return false;
430
431 // Now let's find the callseq_start.
Evan Chengf48ef032010-03-14 03:48:46 +0000432 while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) {
Evan Chengab6c3bb2008-08-25 21:27:18 +0000433 if (!Chain.hasOneUse())
434 return false;
435 Chain = Chain.getOperand(0);
436 }
Evan Chengf48ef032010-03-14 03:48:46 +0000437
438 if (!Chain.getNumOperands())
439 return false;
Evan Cheng700843e2013-01-06 19:00:15 +0000440 // Since we are not checking for AA here, conservatively abort if the chain
441 // writes to memory. It's not safe to move the callee (a load) across a store.
442 if (isa<MemSDNode>(Chain.getNode()) &&
443 cast<MemSDNode>(Chain.getNode())->writeMem())
444 return false;
Evan Cheng5b2e5892009-01-26 18:43:34 +0000445 if (Chain.getOperand(0).getNode() == Callee.getNode())
446 return true;
447 if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor &&
Dan Gohman1e038a82009-09-15 01:22:01 +0000448 Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) &&
449 Callee.getValue(1).hasOneUse())
Evan Cheng5b2e5892009-01-26 18:43:34 +0000450 return true;
451 return false;
Evan Chengab6c3bb2008-08-25 21:27:18 +0000452}
453
Chris Lattnerfb444af2010-03-02 23:12:51 +0000454void X86DAGToDAGISel::PreprocessISelDAG() {
Chris Lattner97d85342010-03-04 01:43:43 +0000455 // OptForSize is used in pattern predicates that isel is matching.
Bill Wendling831737d2012-12-30 10:32:01 +0000456 OptForSize = MF->getFunction()->getAttributes().
457 hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000458
Dan Gohmanf350b272008-08-23 02:25:05 +0000459 for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(),
460 E = CurDAG->allnodes_end(); I != E; ) {
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000461 SDNode *N = I++; // Preincrement iterator to avoid invalidation issues.
Chris Lattnerfb444af2010-03-02 23:12:51 +0000462
Evan Chengf48ef032010-03-14 03:48:46 +0000463 if (OptLevel != CodeGenOpt::None &&
Michael Liao816f6d02013-03-28 23:13:21 +0000464 // Only does this when target favors doesn't favor register indirect
465 // call.
466 ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) ||
Evan Cheng2a294782012-10-05 01:48:22 +0000467 (N->getOpcode() == X86ISD::TC_RETURN &&
Nick Lewycky50c023d2013-01-13 19:03:55 +0000468 // Only does this if load can be folded into TC_RETURN.
Evan Cheng2a294782012-10-05 01:48:22 +0000469 (Subtarget->is64Bit() ||
470 getTargetMachine().getRelocationModel() != Reloc::PIC_)))) {
Chris Lattnerfb444af2010-03-02 23:12:51 +0000471 /// Also try moving call address load from outside callseq_start to just
472 /// before the call to allow it to be folded.
473 ///
474 /// [Load chain]
475 /// ^
476 /// |
477 /// [Load]
478 /// ^ ^
479 /// | |
480 /// / \--
481 /// / |
482 ///[CALLSEQ_START] |
483 /// ^ |
484 /// | |
485 /// [LOAD/C2Reg] |
486 /// | |
487 /// \ /
488 /// \ /
489 /// [CALL]
Evan Chengf48ef032010-03-14 03:48:46 +0000490 bool HasCallSeq = N->getOpcode() == X86ISD::CALL;
Chris Lattnerfb444af2010-03-02 23:12:51 +0000491 SDValue Chain = N->getOperand(0);
492 SDValue Load = N->getOperand(1);
Evan Chengf48ef032010-03-14 03:48:46 +0000493 if (!isCalleeLoad(Load, Chain, HasCallSeq))
Chris Lattnerfb444af2010-03-02 23:12:51 +0000494 continue;
Evan Chengf48ef032010-03-14 03:48:46 +0000495 MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain);
Chris Lattnerfb444af2010-03-02 23:12:51 +0000496 ++NumLoadMoved;
497 continue;
498 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000499
Chris Lattnerfb444af2010-03-02 23:12:51 +0000500 // Lower fpround and fpextend nodes that target the FP stack to be store and
501 // load to the stack. This is a gross hack. We would like to simply mark
502 // these as being illegal, but when we do that, legalize produces these when
503 // it expands calls, then expands these in the same legalize pass. We would
504 // like dag combine to be able to hack on these between the call expansion
505 // and the node legalization. As such this pass basically does "really
506 // late" legalization of these inline with the X86 isel pass.
507 // FIXME: This should only happen when not compiled with -O0.
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000508 if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND)
509 continue;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000510
Craig Topper07ad0c42013-08-15 05:57:07 +0000511 MVT SrcVT = N->getOperand(0).getSimpleValueType();
512 MVT DstVT = N->getSimpleValueType(0);
Bruno Cardoso Lopesaed890b2011-08-01 21:54:05 +0000513
514 // If any of the sources are vectors, no fp stack involved.
515 if (SrcVT.isVector() || DstVT.isVector())
516 continue;
517
518 // If the source and destination are SSE registers, then this is a legal
519 // conversion that should not be lowered.
Benjamin Kramer872bb362013-06-27 11:07:42 +0000520 const X86TargetLowering *X86Lowering =
Stephen Hines37ed9c12014-12-01 14:51:49 -0800521 static_cast<const X86TargetLowering *>(TLI);
Bill Wendlingba54bca2013-06-19 21:36:55 +0000522 bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT);
523 bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000524 if (SrcIsSSE && DstIsSSE)
525 continue;
526
Chris Lattner6fa2f9c2008-03-09 07:05:32 +0000527 if (!SrcIsSSE && !DstIsSSE) {
528 // If this is an FPStack extension, it is a noop.
529 if (N->getOpcode() == ISD::FP_EXTEND)
530 continue;
531 // If this is a value-preserving FPStack truncation, it is a noop.
532 if (N->getConstantOperandVal(1))
533 continue;
534 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000535
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000536 // Here we could have an FP stack truncation or an FPStack <-> SSE convert.
537 // FPStack has extload and truncstore. SSE can fold direct loads into other
538 // operations. Based on this, decide what we want to do.
Craig Topper07ad0c42013-08-15 05:57:07 +0000539 MVT MemVT;
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000540 if (N->getOpcode() == ISD::FP_ROUND)
541 MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'.
542 else
543 MemVT = SrcIsSSE ? SrcVT : DstVT;
Chad Rosiera20e1e72012-08-01 18:39:17 +0000544
Dan Gohmanf350b272008-08-23 02:25:05 +0000545 SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT);
Andrew Trickac6d9be2013-05-25 02:42:55 +0000546 SDLoc dl(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000547
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000548 // FIXME: optimize the case where the src/dest is a load or store?
Dale Johannesend8392542009-02-03 21:48:12 +0000549 SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl,
Dan Gohmanf350b272008-08-23 02:25:05 +0000550 N->getOperand(0),
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000551 MemTmp, MachinePointerInfo(), MemVT,
David Greenedb8d9892010-02-15 16:57:43 +0000552 false, false, 0);
Stuart Hastingsa9011292011-02-16 16:23:55 +0000553 SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp,
Chris Lattner3d6ccfb2010-09-21 17:04:51 +0000554 MachinePointerInfo(),
Stephen Hines37ed9c12014-12-01 14:51:49 -0800555 MemVT, false, false, false, 0);
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000556
557 // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the
558 // extload we created. This will cause general havok on the dag because
559 // anything below the conversion could be folded into other existing nodes.
560 // To avoid invalidating 'I', back it up to the convert node.
561 --I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000562 CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000563
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000564 // Now that we did that, the node is dead. Increment the iterator to the
565 // next node to process, then delete N.
566 ++I;
Dan Gohmanf350b272008-08-23 02:25:05 +0000567 CurDAG->DeleteNode(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000568 }
Chris Lattnerd43d00c2008-01-24 08:07:48 +0000569}
570
Chris Lattnerc961eea2005-11-16 01:54:32 +0000571
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000572/// EmitSpecialCodeForMain - Emit any code that needs to be executed only in
573/// the main function.
574void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB,
575 MachineFrameInfo *MFI) {
Stephen Hines37ed9c12014-12-01 14:51:49 -0800576 const TargetInstrInfo *TII = TM.getSubtargetImpl()->getInstrInfo();
Bill Wendling78d15762011-01-06 00:47:10 +0000577 if (Subtarget->isTargetCygMing()) {
578 unsigned CallOp =
Jakob Stoklund Olesen527a08b2012-02-16 17:56:02 +0000579 Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32;
Chris Lattnerc7f3ace2010-04-02 20:16:16 +0000580 BuildMI(BB, DebugLoc(),
Bill Wendling78d15762011-01-06 00:47:10 +0000581 TII->get(CallOp)).addExternalSymbol("__main");
582 }
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000583}
584
Dan Gohman64652652010-04-14 20:17:22 +0000585void X86DAGToDAGISel::EmitFunctionEntryCode() {
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000586 // If this is main, emit special code for main.
Dan Gohman64652652010-04-14 20:17:22 +0000587 if (const Function *Fn = MF->getFunction())
588 if (Fn->hasExternalLinkage() && Fn->getName() == "main")
589 EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo());
Anton Korobeynikov2fe12592007-09-25 21:52:30 +0000590}
591
Eli Friedman2a019462011-07-13 21:29:53 +0000592static bool isDispSafeForFrameIndex(int64_t Val) {
593 // On 64-bit platforms, we can run into an issue where a frame index
594 // includes a displacement that, when added to the explicit displacement,
595 // will overflow the displacement field. Assuming that the frame index
596 // displacement fits into a 31-bit integer (which is only slightly more
597 // aggressive than the current fundamental assumption that it fits into
598 // a 32-bit integer), a 31-bit disp should always be safe.
599 return isInt<31>(Val);
600}
601
Eli Friedman4977eb52011-07-13 20:44:23 +0000602bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset,
603 X86ISelAddressMode &AM) {
604 int64_t Val = AM.Disp + Offset;
605 CodeModel::Model M = TM.getCodeModel();
Eli Friedman2a019462011-07-13 21:29:53 +0000606 if (Subtarget->is64Bit()) {
607 if (!X86::isOffsetSuitableForCodeModel(Val, M,
608 AM.hasSymbolicDisplacement()))
609 return true;
610 // In addition to the checks required for a register base, check that
611 // we do not try to use an unsafe Disp with a frame index.
612 if (AM.BaseType == X86ISelAddressMode::FrameIndexBase &&
613 !isDispSafeForFrameIndex(Val))
614 return true;
Eli Friedman4977eb52011-07-13 20:44:23 +0000615 }
Eli Friedman2a019462011-07-13 21:29:53 +0000616 AM.Disp = Val;
617 return false;
618
Eli Friedman4977eb52011-07-13 20:44:23 +0000619}
Rafael Espindola094fad32009-04-08 21:14:34 +0000620
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000621bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){
622 SDValue Address = N->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +0000623
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000624 // load gs:0 -> GS segment register.
625 // load fs:0 -> FS segment register.
626 //
Rafael Espindola094fad32009-04-08 21:14:34 +0000627 // This optimization is valid because the GNU TLS model defines that
628 // gs:0 (or fs:0 on X86-64) contains its own address.
629 // For more information see http://people.redhat.com/drepper/tls.pdf
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000630 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address))
Stephen Hinesdce4a402014-05-29 02:49:00 -0700631 if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr &&
David Chisnall23a62cb2012-07-24 20:04:16 +0000632 Subtarget->isTargetLinux())
Chris Lattnerf93b90c2010-09-22 04:39:11 +0000633 switch (N->getPointerInfo().getAddrSpace()) {
634 case 256:
635 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
636 return false;
637 case 257:
638 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
639 return false;
640 }
Chad Rosiera20e1e72012-08-01 18:39:17 +0000641
Rafael Espindola094fad32009-04-08 21:14:34 +0000642 return true;
643}
644
Chris Lattner18c59872009-06-27 04:16:01 +0000645/// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes
646/// into an addressing mode. These wrap things that will resolve down into a
647/// symbol reference. If no match is possible, this returns true, otherwise it
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000648/// returns false.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000649bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) {
Chris Lattner18c59872009-06-27 04:16:01 +0000650 // If the addressing mode already has a symbol as the displacement, we can
651 // never match another symbol.
Rafael Espindola49a168d2009-04-12 21:55:03 +0000652 if (AM.hasSymbolicDisplacement())
653 return true;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000654
655 SDValue N0 = N.getOperand(0);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000656 CodeModel::Model M = TM.getCodeModel();
657
Chris Lattner18c59872009-06-27 04:16:01 +0000658 // Handle X86-64 rip-relative addresses. We check this before checking direct
659 // folding because RIP is preferable to non-RIP accesses.
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000660 if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP &&
Chris Lattner18c59872009-06-27 04:16:01 +0000661 // Under X86-64 non-small code model, GV (and friends) are 64-bits, so
662 // they cannot be folded into immediate fields.
663 // FIXME: This can be improved for kernel and other models?
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000664 (M == CodeModel::Small || M == CodeModel::Kernel)) {
665 // Base and index reg must be 0 in order to use %rip as base.
666 if (AM.hasBaseOrIndexReg())
667 return true;
Chris Lattner18c59872009-06-27 04:16:01 +0000668 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000669 X86ISelAddressMode Backup = AM;
Chris Lattner18c59872009-06-27 04:16:01 +0000670 AM.GV = G->getGlobal();
Chris Lattnerb8afeb92009-06-26 05:51:45 +0000671 AM.SymbolFlags = G->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000672 if (FoldOffsetIntoAddress(G->getOffset(), AM)) {
673 AM = Backup;
674 return true;
675 }
Chris Lattner18c59872009-06-27 04:16:01 +0000676 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
Eli Friedman4977eb52011-07-13 20:44:23 +0000677 X86ISelAddressMode Backup = AM;
Rafael Espindola49a168d2009-04-12 21:55:03 +0000678 AM.CP = CP->getConstVal();
679 AM.Align = CP->getAlignment();
Chris Lattner0b0deab2009-06-26 05:56:49 +0000680 AM.SymbolFlags = CP->getTargetFlags();
Eli Friedman4977eb52011-07-13 20:44:23 +0000681 if (FoldOffsetIntoAddress(CP->getOffset(), AM)) {
682 AM = Backup;
683 return true;
684 }
Chris Lattner18c59872009-06-27 04:16:01 +0000685 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
686 AM.ES = S->getSymbol();
687 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000688 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000689 AM.JT = J->getIndex();
690 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000691 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
692 X86ISelAddressMode Backup = AM;
693 AM.BlockAddr = BA->getBlockAddress();
694 AM.SymbolFlags = BA->getTargetFlags();
695 if (FoldOffsetIntoAddress(BA->getOffset(), AM)) {
696 AM = Backup;
697 return true;
698 }
699 } else
700 llvm_unreachable("Unhandled symbol reference node.");
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000701
Chris Lattner18c59872009-06-27 04:16:01 +0000702 if (N.getOpcode() == X86ISD::WrapperRIP)
Owen Anderson825b72b2009-08-11 20:47:22 +0000703 AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64));
Rafael Espindola49a168d2009-04-12 21:55:03 +0000704 return false;
Chris Lattner18c59872009-06-27 04:16:01 +0000705 }
706
707 // Handle the case when globals fit in our immediate field: This is true for
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000708 // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit
709 // mode, this only applies to a non-RIP-relative computation.
Chris Lattner18c59872009-06-27 04:16:01 +0000710 if (!Subtarget->is64Bit() ||
Chandler Carruthab5a55e2012-04-09 02:13:06 +0000711 M == CodeModel::Small || M == CodeModel::Kernel) {
712 assert(N.getOpcode() != X86ISD::WrapperRIP &&
713 "RIP-relative addressing already handled");
Chris Lattner18c59872009-06-27 04:16:01 +0000714 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) {
715 AM.GV = G->getGlobal();
716 AM.Disp += G->getOffset();
717 AM.SymbolFlags = G->getTargetFlags();
718 } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) {
719 AM.CP = CP->getConstVal();
720 AM.Align = CP->getAlignment();
721 AM.Disp += CP->getOffset();
722 AM.SymbolFlags = CP->getTargetFlags();
723 } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) {
724 AM.ES = S->getSymbol();
725 AM.SymbolFlags = S->getTargetFlags();
Chris Lattner43f44aa2009-11-01 03:25:03 +0000726 } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) {
Chris Lattner18c59872009-06-27 04:16:01 +0000727 AM.JT = J->getIndex();
728 AM.SymbolFlags = J->getTargetFlags();
Michael Liao6c7ccaa2012-09-12 21:43:09 +0000729 } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) {
730 AM.BlockAddr = BA->getBlockAddress();
731 AM.Disp += BA->getOffset();
732 AM.SymbolFlags = BA->getTargetFlags();
733 } else
734 llvm_unreachable("Unhandled symbol reference node.");
Rafael Espindola49a168d2009-04-12 21:55:03 +0000735 return false;
736 }
737
738 return true;
739}
740
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +0000741/// MatchAddress - Add the specified node to the specified addressing mode,
742/// returning true if it cannot be done. This just pattern matches for the
Chris Lattner5aaddaa2007-12-08 07:22:58 +0000743/// addressing mode.
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000744bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) {
Dan Gohmane5408102010-06-18 01:24:29 +0000745 if (MatchAddressRecursively(N, AM, 0))
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000746 return true;
747
748 // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has
749 // a smaller encoding and avoids a scaled-index.
750 if (AM.Scale == 2 &&
751 AM.BaseType == X86ISelAddressMode::RegBase &&
Stephen Hinesdce4a402014-05-29 02:49:00 -0700752 AM.Base_Reg.getNode() == nullptr) {
Dan Gohmanffce6f12010-04-29 23:30:41 +0000753 AM.Base_Reg = AM.IndexReg;
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000754 AM.Scale = 1;
755 }
756
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000757 // Post-processing: Convert foo to foo(%rip), even in non-PIC mode,
758 // because it has a smaller encoding.
759 // TODO: Which other code models can use this?
760 if (TM.getCodeModel() == CodeModel::Small &&
761 Subtarget->is64Bit() &&
762 AM.Scale == 1 &&
763 AM.BaseType == X86ISelAddressMode::RegBase &&
Stephen Hinesdce4a402014-05-29 02:49:00 -0700764 AM.Base_Reg.getNode() == nullptr &&
765 AM.IndexReg.getNode() == nullptr &&
Dan Gohman79b765d2009-08-25 17:47:44 +0000766 AM.SymbolFlags == X86II::MO_NO_FLAG &&
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000767 AM.hasSymbolicDisplacement())
Dan Gohmanffce6f12010-04-29 23:30:41 +0000768 AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64);
Dan Gohmanef74e9b2009-08-20 18:23:44 +0000769
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000770 return false;
771}
772
Chandler Carruthd65a9102012-01-11 11:04:36 +0000773// Insert a node into the DAG at least before the Pos node's position. This
774// will reposition the node as needed, and will assign it a node ID that is <=
775// the Pos node's ID. Note that this does *not* preserve the uniqueness of node
776// IDs! The selection DAG must no longer depend on their uniqueness when this
777// is used.
778static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) {
779 if (N.getNode()->getNodeId() == -1 ||
780 N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) {
781 DAG.RepositionNode(Pos.getNode(), N.getNode());
782 N.getNode()->setNodeId(Pos.getNode()->getNodeId());
783 }
784}
785
Stephen Hines37ed9c12014-12-01 14:51:49 -0800786// Transform "(X >> (8-C1)) & (0xff << C1)" to "((X >> 8) & 0xff) << C1" if
787// safe. This allows us to convert the shift and and into an h-register
788// extract and a scaled index. Returns false if the simplification is
789// performed.
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000790static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N,
791 uint64_t Mask,
792 SDValue Shift, SDValue X,
793 X86ISelAddressMode &AM) {
794 if (Shift.getOpcode() != ISD::SRL ||
795 !isa<ConstantSDNode>(Shift.getOperand(1)) ||
796 !Shift.hasOneUse())
797 return true;
798
799 int ScaleLog = 8 - Shift.getConstantOperandVal(1);
800 if (ScaleLog <= 0 || ScaleLog >= 4 ||
801 Mask != (0xffu << ScaleLog))
802 return true;
803
Craig Topper07ad0c42013-08-15 05:57:07 +0000804 MVT VT = N.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000805 SDLoc DL(N);
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000806 SDValue Eight = DAG.getConstant(8, MVT::i8);
807 SDValue NewMask = DAG.getConstant(0xff, VT);
808 SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight);
809 SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask);
810 SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8);
811 SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount);
812
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000813 // Insert the new nodes into the topological ordering. We must do this in
814 // a valid topological ordering as nothing is going to go back and re-sort
815 // these nodes. We continually insert before 'N' in sequence as this is
816 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
817 // hierarchy left to express.
818 InsertDAGNode(DAG, N, Eight);
819 InsertDAGNode(DAG, N, Srl);
820 InsertDAGNode(DAG, N, NewMask);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000821 InsertDAGNode(DAG, N, And);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000822 InsertDAGNode(DAG, N, ShlCount);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000823 InsertDAGNode(DAG, N, Shl);
Chandler Carruth6ae18e52012-01-11 08:48:20 +0000824 DAG.ReplaceAllUsesWith(N, Shl);
825 AM.IndexReg = And;
826 AM.Scale = (1 << ScaleLog);
827 return false;
828}
829
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000830// Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this
831// allows us to fold the shift into this addressing mode. Returns false if the
832// transform succeeded.
833static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N,
834 uint64_t Mask,
835 SDValue Shift, SDValue X,
836 X86ISelAddressMode &AM) {
837 if (Shift.getOpcode() != ISD::SHL ||
838 !isa<ConstantSDNode>(Shift.getOperand(1)))
839 return true;
840
841 // Not likely to be profitable if either the AND or SHIFT node has more
842 // than one use (unless all uses are for address computation). Besides,
843 // isel mechanism requires their node ids to be reused.
844 if (!N.hasOneUse() || !Shift.hasOneUse())
845 return true;
846
847 // Verify that the shift amount is something we can fold.
848 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
849 if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3)
850 return true;
851
Craig Topper07ad0c42013-08-15 05:57:07 +0000852 MVT VT = N.getSimpleValueType();
Andrew Trickac6d9be2013-05-25 02:42:55 +0000853 SDLoc DL(N);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000854 SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT);
855 SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask);
856 SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1));
857
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000858 // Insert the new nodes into the topological ordering. We must do this in
859 // a valid topological ordering as nothing is going to go back and re-sort
860 // these nodes. We continually insert before 'N' in sequence as this is
861 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
862 // hierarchy left to express.
863 InsertDAGNode(DAG, N, NewMask);
864 InsertDAGNode(DAG, N, NewAnd);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000865 InsertDAGNode(DAG, N, NewShift);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +0000866 DAG.ReplaceAllUsesWith(N, NewShift);
867
868 AM.Scale = 1 << ShiftAmt;
869 AM.IndexReg = NewAnd;
870 return false;
871}
872
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000873// Implement some heroics to detect shifts of masked values where the mask can
874// be replaced by extending the shift and undoing that in the addressing mode
875// scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and
876// (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in
877// the addressing mode. This results in code such as:
878//
879// int f(short *y, int *lookup_table) {
880// ...
881// return *y + lookup_table[*y >> 11];
882// }
883//
884// Turning into:
885// movzwl (%rdi), %eax
886// movl %eax, %ecx
887// shrl $11, %ecx
888// addl (%rsi,%rcx,4), %eax
889//
890// Instead of:
891// movzwl (%rdi), %eax
892// movl %eax, %ecx
893// shrl $9, %ecx
894// andl $124, %rcx
895// addl (%rsi,%rcx), %eax
896//
Chandler Carruthdddcd782012-01-11 09:35:02 +0000897// Note that this function assumes the mask is provided as a mask *after* the
898// value is shifted. The input chain may or may not match that, but computing
899// such a mask is trivial.
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000900static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N,
Chandler Carruthdddcd782012-01-11 09:35:02 +0000901 uint64_t Mask,
902 SDValue Shift, SDValue X,
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000903 X86ISelAddressMode &AM) {
Chandler Carruthdddcd782012-01-11 09:35:02 +0000904 if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() ||
905 !isa<ConstantSDNode>(Shift.getOperand(1)))
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000906 return true;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000907
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000908 unsigned ShiftAmt = Shift.getConstantOperandVal(1);
Michael J. Spencerc6af2432013-05-24 22:23:49 +0000909 unsigned MaskLZ = countLeadingZeros(Mask);
910 unsigned MaskTZ = countTrailingZeros(Mask);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000911
912 // The amount of shift we're trying to fit into the addressing mode is taken
Chandler Carruthdddcd782012-01-11 09:35:02 +0000913 // from the trailing zeros of the mask.
914 unsigned AMShiftAmt = MaskTZ;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000915
916 // There is nothing we can do here unless the mask is removing some bits.
917 // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits.
918 if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true;
919
920 // We also need to ensure that mask is a continuous run of bits.
921 if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true;
922
923 // Scale the leading zero count down based on the actual size of the value.
Chandler Carruthdddcd782012-01-11 09:35:02 +0000924 // Also scale it down based on the size of the shift.
Craig Topper07ad0c42013-08-15 05:57:07 +0000925 MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt;
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000926
927 // The final check is to ensure that any masked out high bits of X are
928 // already known to be zero. Otherwise, the mask has a semantic impact
929 // other than masking out a couple of low bits. Unfortunately, because of
930 // the mask, zero extensions will be removed from operands in some cases.
931 // This code works extra hard to look through extensions because we can
932 // replace them with zero extensions cheaply if necessary.
933 bool ReplacingAnyExtend = false;
934 if (X.getOpcode() == ISD::ANY_EXTEND) {
Craig Topper07ad0c42013-08-15 05:57:07 +0000935 unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() -
936 X.getOperand(0).getSimpleValueType().getSizeInBits();
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000937 // Assume that we'll replace the any-extend with a zero-extend, and
938 // narrow the search to the extended value.
939 X = X.getOperand(0);
940 MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits;
941 ReplacingAnyExtend = true;
942 }
Craig Topper07ad0c42013-08-15 05:57:07 +0000943 APInt MaskedHighBits =
944 APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000945 APInt KnownZero, KnownOne;
Stephen Hinesdce4a402014-05-29 02:49:00 -0700946 DAG.computeKnownBits(X, KnownZero, KnownOne);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000947 if (MaskedHighBits != KnownZero) return true;
948
949 // We've identified a pattern that can be transformed into a single shift
950 // and an addressing mode. Make it so.
Craig Topper07ad0c42013-08-15 05:57:07 +0000951 MVT VT = N.getSimpleValueType();
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000952 if (ReplacingAnyExtend) {
953 assert(X.getValueType() != VT);
954 // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND.
Andrew Trickac6d9be2013-05-25 02:42:55 +0000955 SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X);
Chandler Carruthd65a9102012-01-11 11:04:36 +0000956 InsertDAGNode(DAG, N, NewX);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000957 X = NewX;
958 }
Andrew Trickac6d9be2013-05-25 02:42:55 +0000959 SDLoc DL(N);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000960 SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8);
961 SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt);
962 SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8);
963 SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt);
Chandler Carruth0fe9a922012-01-12 01:34:44 +0000964
965 // Insert the new nodes into the topological ordering. We must do this in
966 // a valid topological ordering as nothing is going to go back and re-sort
967 // these nodes. We continually insert before 'N' in sequence as this is
968 // essentially a pre-flattened and pre-sorted sequence of nodes. There is no
969 // hierarchy left to express.
Chandler Carruthd65a9102012-01-11 11:04:36 +0000970 InsertDAGNode(DAG, N, NewSRLAmt);
971 InsertDAGNode(DAG, N, NewSRL);
972 InsertDAGNode(DAG, N, NewSHLAmt);
973 InsertDAGNode(DAG, N, NewSHL);
Chandler Carruthf103b3d2012-01-11 08:41:08 +0000974 DAG.ReplaceAllUsesWith(N, NewSHL);
975
976 AM.Scale = 1 << AMShiftAmt;
977 AM.IndexReg = NewSRL;
978 return false;
979}
980
Dan Gohman41d0b9d2009-07-22 23:26:55 +0000981bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM,
982 unsigned Depth) {
Andrew Trickac6d9be2013-05-25 02:42:55 +0000983 SDLoc dl(N);
Bill Wendling12321672009-08-07 21:33:25 +0000984 DEBUG({
David Greened7f4f242010-01-05 01:29:08 +0000985 dbgs() << "MatchAddress: ";
Bill Wendling12321672009-08-07 21:33:25 +0000986 AM.dump();
987 });
Dan Gohmanbadb2d22007-08-13 20:03:06 +0000988 // Limit recursion.
989 if (Depth > 5)
Rafael Espindola523249f2009-03-31 16:16:57 +0000990 return MatchAddressBase(N, AM);
Anton Korobeynikovb5e01722009-08-05 23:01:26 +0000991
Chris Lattner18c59872009-06-27 04:16:01 +0000992 // If this is already a %rip relative address, we can only merge immediates
993 // into it. Instead of handling this in every case, we handle it here.
Evan Cheng25ab6902006-09-08 06:48:29 +0000994 // RIP relative addressing: %rip + 32-bit displacement!
Chris Lattner18c59872009-06-27 04:16:01 +0000995 if (AM.isRIPRelative()) {
996 // FIXME: JumpTable and ExternalSymbol address currently don't like
997 // displacements. It isn't very important, but this should be fixed for
998 // consistency.
999 if (!AM.ES && AM.JT != -1) return true;
Anton Korobeynikovb5e01722009-08-05 23:01:26 +00001000
Eli Friedman4977eb52011-07-13 20:44:23 +00001001 if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N))
1002 if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM))
Evan Cheng25ab6902006-09-08 06:48:29 +00001003 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +00001004 return true;
1005 }
1006
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001007 switch (N.getOpcode()) {
1008 default: break;
Evan Cheng25ab6902006-09-08 06:48:29 +00001009 case ISD::Constant: {
Dan Gohman27cae7b2008-11-11 15:52:29 +00001010 uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue();
Eli Friedman4977eb52011-07-13 20:44:23 +00001011 if (!FoldOffsetIntoAddress(Val, AM))
Evan Cheng25ab6902006-09-08 06:48:29 +00001012 return false;
Evan Cheng25ab6902006-09-08 06:48:29 +00001013 break;
1014 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001015
Rafael Espindola49a168d2009-04-12 21:55:03 +00001016 case X86ISD::Wrapper:
Chris Lattner18c59872009-06-27 04:16:01 +00001017 case X86ISD::WrapperRIP:
Rafael Espindola49a168d2009-04-12 21:55:03 +00001018 if (!MatchWrapper(N, AM))
1019 return false;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001020 break;
1021
Rafael Espindola094fad32009-04-08 21:14:34 +00001022 case ISD::LOAD:
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001023 if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM))
Rafael Espindola094fad32009-04-08 21:14:34 +00001024 return false;
1025 break;
1026
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001027 case ISD::FrameIndex:
Eli Friedman2a019462011-07-13 21:29:53 +00001028 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Stephen Hinesdce4a402014-05-29 02:49:00 -07001029 AM.Base_Reg.getNode() == nullptr &&
Eli Friedman2a019462011-07-13 21:29:53 +00001030 (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001031 AM.BaseType = X86ISelAddressMode::FrameIndexBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001032 AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001033 return false;
1034 }
1035 break;
Evan Chengec693f72005-12-08 02:01:35 +00001036
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001037 case ISD::SHL:
Stephen Hinesdce4a402014-05-29 02:49:00 -07001038 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1)
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001039 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001040
Gabor Greif93c53e52008-08-31 15:37:04 +00001041 if (ConstantSDNode
1042 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001043 unsigned Val = CN->getZExtValue();
Dan Gohman41d0b9d2009-07-22 23:26:55 +00001044 // Note that we handle x<<1 as (,x,2) rather than (x,x) here so
1045 // that the base operand remains free for further matching. If
1046 // the base doesn't end up getting used, a post-processing step
1047 // in MatchAddress turns (,x,2) into (x,x), which is cheaper.
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001048 if (Val == 1 || Val == 2 || Val == 3) {
1049 AM.Scale = 1 << Val;
Gabor Greifba36cb52008-08-28 21:40:38 +00001050 SDValue ShVal = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001051
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001052 // Okay, we know that we have a scale by now. However, if the scaled
1053 // value is an add of something and a constant, we can fold the
1054 // constant into the disp field here.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001055 if (CurDAG->isBaseWithConstantOffset(ShVal)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001056 AM.IndexReg = ShVal.getNode()->getOperand(0);
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001057 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001058 cast<ConstantSDNode>(ShVal.getNode()->getOperand(1));
Richard Smith1144af32012-08-24 23:29:28 +00001059 uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val;
Eli Friedman4977eb52011-07-13 20:44:23 +00001060 if (!FoldOffsetIntoAddress(Disp, AM))
1061 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001062 }
Eli Friedman4977eb52011-07-13 20:44:23 +00001063
1064 AM.IndexReg = ShVal;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001065 return false;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001066 }
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001067 }
Jakub Staszak18d0f122013-01-04 23:01:26 +00001068 break;
Evan Chengec693f72005-12-08 02:01:35 +00001069
Chandler Carruthdddcd782012-01-11 09:35:02 +00001070 case ISD::SRL: {
1071 // Scale must not be used already.
Stephen Hinesdce4a402014-05-29 02:49:00 -07001072 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001073
1074 SDValue And = N.getOperand(0);
1075 if (And.getOpcode() != ISD::AND) break;
1076 SDValue X = And.getOperand(0);
1077
1078 // We only handle up to 64-bit values here as those are what matter for
1079 // addressing mode optimizations.
Craig Topper07ad0c42013-08-15 05:57:07 +00001080 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001081
1082 // The mask used for the transform is expected to be post-shift, but we
1083 // found the shift first so just apply the shift to the mask before passing
1084 // it down.
1085 if (!isa<ConstantSDNode>(N.getOperand(1)) ||
1086 !isa<ConstantSDNode>(And.getOperand(1)))
1087 break;
1088 uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1);
1089
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001090 // Try to fold the mask and shift into the scale, and return false if we
1091 // succeed.
Chandler Carruthdddcd782012-01-11 09:35:02 +00001092 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001093 return false;
1094 break;
Chandler Carruthdddcd782012-01-11 09:35:02 +00001095 }
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001096
Dan Gohman83688052007-10-22 20:22:24 +00001097 case ISD::SMUL_LOHI:
1098 case ISD::UMUL_LOHI:
1099 // A mul_lohi where we need the low part can be folded as a plain multiply.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001100 if (N.getResNo() != 0) break;
Dan Gohman83688052007-10-22 20:22:24 +00001101 // FALL THROUGH
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001102 case ISD::MUL:
Evan Cheng73f24c92009-03-30 21:36:47 +00001103 case X86ISD::MUL_IMM:
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001104 // X*[3,5,9] -> X+X*[2,4,8]
Dan Gohman8be6bbe2008-11-05 04:14:16 +00001105 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Stephen Hinesdce4a402014-05-29 02:49:00 -07001106 AM.Base_Reg.getNode() == nullptr &&
1107 AM.IndexReg.getNode() == nullptr) {
Gabor Greif93c53e52008-08-31 15:37:04 +00001108 if (ConstantSDNode
1109 *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1)))
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001110 if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 ||
1111 CN->getZExtValue() == 9) {
1112 AM.Scale = unsigned(CN->getZExtValue())-1;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001113
Gabor Greifba36cb52008-08-28 21:40:38 +00001114 SDValue MulVal = N.getNode()->getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +00001115 SDValue Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001116
1117 // Okay, we know that we have a scale by now. However, if the scaled
1118 // value is an add of something and a constant, we can fold the
1119 // constant into the disp field here.
Gabor Greifba36cb52008-08-28 21:40:38 +00001120 if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() &&
1121 isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) {
1122 Reg = MulVal.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001123 ConstantSDNode *AddVal =
Gabor Greifba36cb52008-08-28 21:40:38 +00001124 cast<ConstantSDNode>(MulVal.getNode()->getOperand(1));
Eli Friedman4977eb52011-07-13 20:44:23 +00001125 uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue();
1126 if (FoldOffsetIntoAddress(Disp, AM))
Gabor Greifba36cb52008-08-28 21:40:38 +00001127 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001128 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00001129 Reg = N.getNode()->getOperand(0);
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001130 }
1131
Dan Gohmanffce6f12010-04-29 23:30:41 +00001132 AM.IndexReg = AM.Base_Reg = Reg;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001133 return false;
1134 }
Chris Lattner62412262007-02-04 20:18:17 +00001135 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001136 break;
1137
Dan Gohman3cd90a12009-05-11 18:02:53 +00001138 case ISD::SUB: {
1139 // Given A-B, if A can be completely folded into the address and
1140 // the index field with the index field unused, use -B as the index.
1141 // This is a win if a has multiple parts that can be folded into
1142 // the address. Also, this saves a mov if the base register has
1143 // other uses, since it avoids a two-address sub instruction, however
1144 // it costs an additional mov if the index register has other uses.
1145
Dan Gohmane5408102010-06-18 01:24:29 +00001146 // Add an artificial use to this node so that we can keep track of
1147 // it if it gets CSE'd with a different node.
1148 HandleSDNode Handle(N);
1149
Dan Gohman3cd90a12009-05-11 18:02:53 +00001150 // Test if the LHS of the sub can be folded.
1151 X86ISelAddressMode Backup = AM;
Dan Gohmane5408102010-06-18 01:24:29 +00001152 if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001153 AM = Backup;
1154 break;
1155 }
1156 // Test if the index field is free for use.
Chris Lattner18c59872009-06-27 04:16:01 +00001157 if (AM.IndexReg.getNode() || AM.isRIPRelative()) {
Dan Gohman3cd90a12009-05-11 18:02:53 +00001158 AM = Backup;
1159 break;
1160 }
Evan Chengf3caa522010-03-17 23:58:35 +00001161
Dan Gohman3cd90a12009-05-11 18:02:53 +00001162 int Cost = 0;
Dan Gohmane5408102010-06-18 01:24:29 +00001163 SDValue RHS = Handle.getValue().getNode()->getOperand(1);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001164 // If the RHS involves a register with multiple uses, this
1165 // transformation incurs an extra mov, due to the neg instruction
1166 // clobbering its operand.
1167 if (!RHS.getNode()->hasOneUse() ||
1168 RHS.getNode()->getOpcode() == ISD::CopyFromReg ||
1169 RHS.getNode()->getOpcode() == ISD::TRUNCATE ||
1170 RHS.getNode()->getOpcode() == ISD::ANY_EXTEND ||
1171 (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND &&
Owen Anderson825b72b2009-08-11 20:47:22 +00001172 RHS.getNode()->getOperand(0).getValueType() == MVT::i32))
Dan Gohman3cd90a12009-05-11 18:02:53 +00001173 ++Cost;
1174 // If the base is a register with multiple uses, this
1175 // transformation may save a mov.
1176 if ((AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001177 AM.Base_Reg.getNode() &&
1178 !AM.Base_Reg.getNode()->hasOneUse()) ||
Dan Gohman3cd90a12009-05-11 18:02:53 +00001179 AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1180 --Cost;
1181 // If the folded LHS was interesting, this transformation saves
1182 // address arithmetic.
1183 if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) +
1184 ((AM.Disp != 0) && (Backup.Disp == 0)) +
1185 (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2)
1186 --Cost;
1187 // If it doesn't look like it may be an overall win, don't do it.
1188 if (Cost >= 0) {
1189 AM = Backup;
1190 break;
1191 }
1192
1193 // Ok, the transformation is legal and appears profitable. Go for it.
1194 SDValue Zero = CurDAG->getConstant(0, N.getValueType());
1195 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
1196 AM.IndexReg = Neg;
1197 AM.Scale = 1;
1198
1199 // Insert the new nodes into the topological ordering.
Chandler Carruthd65a9102012-01-11 11:04:36 +00001200 InsertDAGNode(*CurDAG, N, Zero);
1201 InsertDAGNode(*CurDAG, N, Neg);
Dan Gohman3cd90a12009-05-11 18:02:53 +00001202 return false;
1203 }
1204
Evan Cheng8e278262009-01-17 07:09:27 +00001205 case ISD::ADD: {
Dan Gohmane5408102010-06-18 01:24:29 +00001206 // Add an artificial use to this node so that we can keep track of
1207 // it if it gets CSE'd with a different node.
1208 HandleSDNode Handle(N);
Dan Gohmane5408102010-06-18 01:24:29 +00001209
Evan Cheng8e278262009-01-17 07:09:27 +00001210 X86ISelAddressMode Backup = AM;
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001211 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
1212 !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001213 return false;
1214 AM = Backup;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001215
Evan Chengf3caa522010-03-17 23:58:35 +00001216 // Try again after commuting the operands.
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001217 if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&&
1218 !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1))
Dan Gohmane5408102010-06-18 01:24:29 +00001219 return false;
Evan Cheng8e278262009-01-17 07:09:27 +00001220 AM = Backup;
Dan Gohman77502c92009-03-13 02:25:09 +00001221
1222 // If we couldn't fold both operands into the address at the same time,
1223 // see if we can just put each operand into a register and fold at least
1224 // the add.
1225 if (AM.BaseType == X86ISelAddressMode::RegBase &&
Dan Gohmanffce6f12010-04-29 23:30:41 +00001226 !AM.Base_Reg.getNode() &&
Chris Lattner18c59872009-06-27 04:16:01 +00001227 !AM.IndexReg.getNode()) {
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001228 N = Handle.getValue();
1229 AM.Base_Reg = N.getOperand(0);
1230 AM.IndexReg = N.getOperand(1);
Dan Gohman77502c92009-03-13 02:25:09 +00001231 AM.Scale = 1;
1232 return false;
1233 }
Chris Lattnerdec28ce2011-01-16 08:48:11 +00001234 N = Handle.getValue();
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001235 break;
Evan Cheng8e278262009-01-17 07:09:27 +00001236 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001237
Chris Lattner62412262007-02-04 20:18:17 +00001238 case ISD::OR:
Sylvestre Ledru94c22712012-09-27 10:14:43 +00001239 // Handle "X | C" as "X + C" iff X is known to have C bits clear.
Chris Lattner0a9481f2011-02-13 22:25:43 +00001240 if (CurDAG->isBaseWithConstantOffset(N)) {
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001241 X86ISelAddressMode Backup = AM;
Chris Lattnerd6139422010-04-20 23:18:40 +00001242 ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1));
Evan Chengf3caa522010-03-17 23:58:35 +00001243
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001244 // Start with the LHS as an addr mode.
Dan Gohmane5408102010-06-18 01:24:29 +00001245 if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) &&
Eli Friedman4977eb52011-07-13 20:44:23 +00001246 !FoldOffsetIntoAddress(CN->getSExtValue(), AM))
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001247 return false;
Chris Lattner5aaddaa2007-12-08 07:22:58 +00001248 AM = Backup;
Evan Chenge6ad27e2006-05-30 06:59:36 +00001249 }
1250 break;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001251
Evan Cheng1314b002007-12-13 00:43:27 +00001252 case ISD::AND: {
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001253 // Perform some heroic transforms on an and of a constant-count shift
1254 // with a constant to enable use of the scaled offset field.
1255
Evan Cheng1314b002007-12-13 00:43:27 +00001256 // Scale must not be used already.
Stephen Hinesdce4a402014-05-29 02:49:00 -07001257 if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break;
Evan Chengbe3bf422008-02-07 08:53:49 +00001258
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001259 SDValue Shift = N.getOperand(0);
1260 if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001261 SDValue X = Shift.getOperand(0);
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001262
1263 // We only handle up to 64-bit values here as those are what matter for
1264 // addressing mode optimizations.
Craig Topper07ad0c42013-08-15 05:57:07 +00001265 if (X.getSimpleValueType().getSizeInBits() > 64) break;
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001266
Chandler Carruth93b73582012-01-11 09:35:04 +00001267 if (!isa<ConstantSDNode>(N.getOperand(1)))
1268 break;
1269 uint64_t Mask = N.getConstantOperandVal(1);
Evan Cheng1314b002007-12-13 00:43:27 +00001270
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001271 // Try to fold the mask and shift into an extract and scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001272 if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001273 return false;
Dan Gohman21e3dfb2009-04-13 16:09:41 +00001274
Chandler Carruth6ae18e52012-01-11 08:48:20 +00001275 // Try to fold the mask and shift directly into the scale.
Chandler Carruth93b73582012-01-11 09:35:04 +00001276 if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthf103b3d2012-01-11 08:41:08 +00001277 return false;
1278
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001279 // Try to swap the mask and shift to place shifts which can be done as
1280 // a scale on the outside of the mask.
Chandler Carruth93b73582012-01-11 09:35:04 +00001281 if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM))
Chandler Carruthfde2c1a2012-01-11 09:35:00 +00001282 return false;
1283 break;
Evan Cheng1314b002007-12-13 00:43:27 +00001284 }
Evan Chenge6ad27e2006-05-30 06:59:36 +00001285 }
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001286
Rafael Espindola523249f2009-03-31 16:16:57 +00001287 return MatchAddressBase(N, AM);
Dan Gohmanbadb2d22007-08-13 20:03:06 +00001288}
1289
1290/// MatchAddressBase - Helper for MatchAddress. Add the specified node to the
1291/// specified addressing mode without any further recursion.
Rafael Espindola523249f2009-03-31 16:16:57 +00001292bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001293 // Is the base register already occupied?
Dan Gohmanffce6f12010-04-29 23:30:41 +00001294 if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001295 // If so, check to see if the scale index register is set.
Stephen Hinesdce4a402014-05-29 02:49:00 -07001296 if (!AM.IndexReg.getNode()) {
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001297 AM.IndexReg = N;
1298 AM.Scale = 1;
1299 return false;
1300 }
1301
1302 // Otherwise, we cannot select it.
1303 return true;
1304 }
1305
1306 // Default, generate it as a register.
1307 AM.BaseType = X86ISelAddressMode::RegBase;
Dan Gohmanffce6f12010-04-29 23:30:41 +00001308 AM.Base_Reg = N;
Chris Lattnerf9ce9fb2005-11-19 02:11:08 +00001309 return false;
1310}
1311
Evan Chengec693f72005-12-08 02:01:35 +00001312/// SelectAddr - returns true if it is able pattern match an addressing mode.
1313/// It returns the operands which make up the maximal addressing mode it can
1314/// match by reference.
Chris Lattnerb86faa12010-09-21 22:07:31 +00001315///
1316/// Parent is the parent node of the addr operand that is being matched. It
1317/// is always a load, store, atomic node, or null. It is only null when
1318/// checking memory operands for inline asm nodes.
1319bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base,
Dan Gohman475871a2008-07-27 21:46:04 +00001320 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001321 SDValue &Disp, SDValue &Segment) {
Evan Chengec693f72005-12-08 02:01:35 +00001322 X86ISelAddressMode AM;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001323
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001324 if (Parent &&
1325 // This list of opcodes are all the nodes that have an "addr:$ptr" operand
1326 // that are not a MemSDNode, and thus don't have proper addrspace info.
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001327 Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme
Eric Christopher56a8b812010-09-22 20:42:08 +00001328 Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores
Michael Liao6c0e04c2012-10-15 22:39:43 +00001329 Parent->getOpcode() != X86ISD::TLSCALL && // Fixme
1330 Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp
1331 Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp
Chris Lattnerf93b90c2010-09-22 04:39:11 +00001332 unsigned AddrSpace =
1333 cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace();
1334 // AddrSpace 256 -> GS, 257 -> FS.
1335 if (AddrSpace == 256)
1336 AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16);
1337 if (AddrSpace == 257)
1338 AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16);
1339 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001340
Evan Chengc7928f82009-12-18 01:59:21 +00001341 if (MatchAddress(N, AM))
Evan Cheng8700e142006-01-11 06:09:51 +00001342 return false;
Evan Chengec693f72005-12-08 02:01:35 +00001343
Craig Topper07ad0c42013-08-15 05:57:07 +00001344 MVT VT = N.getSimpleValueType();
Evan Cheng8700e142006-01-11 06:09:51 +00001345 if (AM.BaseType == X86ISelAddressMode::RegBase) {
Dan Gohmanffce6f12010-04-29 23:30:41 +00001346 if (!AM.Base_Reg.getNode())
1347 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Chengec693f72005-12-08 02:01:35 +00001348 }
Evan Cheng8700e142006-01-11 06:09:51 +00001349
Gabor Greifba36cb52008-08-28 21:40:38 +00001350 if (!AM.IndexReg.getNode())
Evan Cheng25ab6902006-09-08 06:48:29 +00001351 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng8700e142006-01-11 06:09:51 +00001352
Rafael Espindola094fad32009-04-08 21:14:34 +00001353 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
Evan Cheng8700e142006-01-11 06:09:51 +00001354 return true;
Evan Chengec693f72005-12-08 02:01:35 +00001355}
1356
Chris Lattner3a7cd952006-10-07 21:55:32 +00001357/// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to
1358/// match a load whose top elements are either undef or zeros. The load flavor
1359/// is derived from the type of N, which is either v4f32 or v2f64.
Chris Lattner64b49862010-02-17 06:07:47 +00001360///
1361/// We also return:
Chris Lattnera170b5e2010-02-21 03:17:59 +00001362/// PatternChainNode: this is the matched node that has a chain input and
1363/// output.
Chris Lattnere60f7b42010-03-01 22:51:11 +00001364bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root,
Dan Gohman475871a2008-07-27 21:46:04 +00001365 SDValue N, SDValue &Base,
1366 SDValue &Scale, SDValue &Index,
Rafael Espindola094fad32009-04-08 21:14:34 +00001367 SDValue &Disp, SDValue &Segment,
Chris Lattnera170b5e2010-02-21 03:17:59 +00001368 SDValue &PatternNodeWithChain) {
Chris Lattner3a7cd952006-10-07 21:55:32 +00001369 if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001370 PatternNodeWithChain = N.getOperand(0);
1371 if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) &&
1372 PatternNodeWithChain.hasOneUse() &&
Chris Lattnerf1c64282010-02-21 04:53:34 +00001373 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001374 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Chris Lattnera170b5e2010-02-21 03:17:59 +00001375 LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain);
Chris Lattnerb86faa12010-09-21 22:07:31 +00001376 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Chris Lattner3a7cd952006-10-07 21:55:32 +00001377 return false;
1378 return true;
1379 }
1380 }
Chris Lattner4fe4f252006-10-11 22:09:58 +00001381
1382 // Also handle the case where we explicitly require zeros in the top
Chris Lattner3a7cd952006-10-07 21:55:32 +00001383 // elements. This is a vector shuffle from the zero vector.
Gabor Greifba36cb52008-08-28 21:40:38 +00001384 if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() &&
Chris Lattner8a594482007-11-25 00:24:49 +00001385 // Check to see if the top elements are all zeros (or bitcast of zeros).
Chad Rosiera20e1e72012-08-01 18:39:17 +00001386 N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR &&
Gabor Greifba36cb52008-08-28 21:40:38 +00001387 N.getOperand(0).getNode()->hasOneUse() &&
1388 ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) &&
Chris Lattner92d3ada2010-02-16 22:35:06 +00001389 N.getOperand(0).getOperand(0).hasOneUse() &&
1390 IsProfitableToFold(N.getOperand(0), N.getNode(), Root) &&
Dan Gohmand858e902010-04-17 15:26:15 +00001391 IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) {
Evan Cheng7e2ff772008-05-08 00:57:18 +00001392 // Okay, this is a zero extending load. Fold it.
1393 LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0));
Chris Lattnerb86faa12010-09-21 22:07:31 +00001394 if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment))
Evan Cheng7e2ff772008-05-08 00:57:18 +00001395 return false;
Chris Lattnera170b5e2010-02-21 03:17:59 +00001396 PatternNodeWithChain = SDValue(LD, 0);
Evan Cheng7e2ff772008-05-08 00:57:18 +00001397 return true;
Chris Lattner4fe4f252006-10-11 22:09:58 +00001398 }
Chris Lattner3a7cd952006-10-07 21:55:32 +00001399 return false;
1400}
1401
1402
Tim Northover85c622d2013-06-01 09:55:14 +00001403bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) {
1404 if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) {
1405 uint64_t ImmVal = CN->getZExtValue();
1406 if ((uint32_t)ImmVal != (uint64_t)ImmVal)
1407 return false;
1408
1409 Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64);
1410 return true;
1411 }
1412
1413 // In static codegen with small code model, we can get the address of a label
1414 // into a register with 'movl'. TableGen has already made sure we're looking
1415 // at a label of some kind.
Tim Northovere5609f32013-06-10 20:43:49 +00001416 assert(N->getOpcode() == X86ISD::Wrapper &&
1417 "Unexpected node type for MOV32ri64");
Tim Northover85c622d2013-06-01 09:55:14 +00001418 N = N.getOperand(0);
1419
1420 if (N->getOpcode() != ISD::TargetConstantPool &&
1421 N->getOpcode() != ISD::TargetJumpTable &&
1422 N->getOpcode() != ISD::TargetGlobalAddress &&
1423 N->getOpcode() != ISD::TargetExternalSymbol &&
1424 N->getOpcode() != ISD::TargetBlockAddress)
1425 return false;
1426
1427 Imm = N;
1428 return TM.getCodeModel() == CodeModel::Small;
1429}
1430
Tim Northovere5609f32013-06-10 20:43:49 +00001431bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base,
1432 SDValue &Scale, SDValue &Index,
1433 SDValue &Disp, SDValue &Segment) {
1434 if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment))
1435 return false;
1436
1437 SDLoc DL(N);
1438 RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base);
1439 if (RN && RN->getReg() == 0)
1440 Base = CurDAG->getRegister(0, MVT::i64);
Stephen Hines37ed9c12014-12-01 14:51:49 -08001441 else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(Base)) {
Tim Northovere5609f32013-06-10 20:43:49 +00001442 // Base could already be %rip, particularly in the x32 ABI.
1443 Base = SDValue(CurDAG->getMachineNode(
1444 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1445 CurDAG->getTargetConstant(0, MVT::i64),
1446 Base,
1447 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1448 0);
1449 }
1450
1451 RN = dyn_cast<RegisterSDNode>(Index);
1452 if (RN && RN->getReg() == 0)
1453 Index = CurDAG->getRegister(0, MVT::i64);
1454 else {
1455 assert(Index.getValueType() == MVT::i32 &&
1456 "Expect to be extending 32-bit registers for use in LEA");
1457 Index = SDValue(CurDAG->getMachineNode(
1458 TargetOpcode::SUBREG_TO_REG, DL, MVT::i64,
1459 CurDAG->getTargetConstant(0, MVT::i64),
1460 Index,
1461 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
1462 0);
1463 }
1464
1465 return true;
1466}
1467
Evan Cheng51a9ed92006-02-25 10:09:08 +00001468/// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing
1469/// mode it matches can be cost effectively emitted as an LEA instruction.
Chris Lattner52a261b2010-09-21 20:31:19 +00001470bool X86DAGToDAGISel::SelectLEAAddr(SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001471 SDValue &Base, SDValue &Scale,
Chris Lattner599b5312010-07-08 23:46:44 +00001472 SDValue &Index, SDValue &Disp,
1473 SDValue &Segment) {
Evan Cheng51a9ed92006-02-25 10:09:08 +00001474 X86ISelAddressMode AM;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001475
1476 // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support
1477 // segments.
1478 SDValue Copy = AM.Segment;
Owen Anderson825b72b2009-08-11 20:47:22 +00001479 SDValue T = CurDAG->getRegister(0, MVT::i32);
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001480 AM.Segment = T;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001481 if (MatchAddress(N, AM))
1482 return false;
Rafael Espindoladbcfb302009-04-10 10:09:34 +00001483 assert (T == AM.Segment);
1484 AM.Segment = Copy;
Rafael Espindola094fad32009-04-08 21:14:34 +00001485
Craig Topper07ad0c42013-08-15 05:57:07 +00001486 MVT VT = N.getSimpleValueType();
Evan Cheng51a9ed92006-02-25 10:09:08 +00001487 unsigned Complexity = 0;
1488 if (AM.BaseType == X86ISelAddressMode::RegBase)
Dan Gohmanffce6f12010-04-29 23:30:41 +00001489 if (AM.Base_Reg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001490 Complexity = 1;
1491 else
Dan Gohmanffce6f12010-04-29 23:30:41 +00001492 AM.Base_Reg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001493 else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase)
1494 Complexity = 4;
1495
Gabor Greifba36cb52008-08-28 21:40:38 +00001496 if (AM.IndexReg.getNode())
Evan Cheng51a9ed92006-02-25 10:09:08 +00001497 Complexity++;
1498 else
Evan Cheng25ab6902006-09-08 06:48:29 +00001499 AM.IndexReg = CurDAG->getRegister(0, VT);
Evan Cheng51a9ed92006-02-25 10:09:08 +00001500
Chris Lattnera16b7cb2007-03-20 06:08:29 +00001501 // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with
1502 // a simple shift.
1503 if (AM.Scale > 1)
Evan Cheng8c03fe42006-02-28 21:13:57 +00001504 Complexity++;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001505
1506 // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA
1507 // to a LEA. This is determined with some expermentation but is by no means
1508 // optimal (especially for code size consideration). LEA is nice because of
1509 // its three-address nature. Tweak the cost function again when we can run
1510 // convertToThreeAddress() at register allocation time.
Dan Gohman2d0a1cc2009-02-07 00:43:41 +00001511 if (AM.hasSymbolicDisplacement()) {
Evan Cheng25ab6902006-09-08 06:48:29 +00001512 // For X86-64, we should always use lea to materialize RIP relative
1513 // addresses.
Evan Cheng953fa042006-12-05 22:03:40 +00001514 if (Subtarget->is64Bit())
Evan Cheng25ab6902006-09-08 06:48:29 +00001515 Complexity = 4;
1516 else
1517 Complexity += 2;
1518 }
Evan Cheng51a9ed92006-02-25 10:09:08 +00001519
Dan Gohmanffce6f12010-04-29 23:30:41 +00001520 if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode()))
Evan Cheng51a9ed92006-02-25 10:09:08 +00001521 Complexity++;
1522
Chris Lattner25142782009-07-11 22:50:33 +00001523 // If it isn't worth using an LEA, reject it.
Chris Lattner14f75112009-07-11 23:07:30 +00001524 if (Complexity <= 2)
Chris Lattner25142782009-07-11 22:50:33 +00001525 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001526
Chris Lattner25142782009-07-11 22:50:33 +00001527 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1528 return true;
Evan Cheng51a9ed92006-02-25 10:09:08 +00001529}
1530
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001531/// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes.
Chris Lattner52a261b2010-09-21 20:31:19 +00001532bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base,
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001533 SDValue &Scale, SDValue &Index,
Chris Lattner599b5312010-07-08 23:46:44 +00001534 SDValue &Disp, SDValue &Segment) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001535 assert(N.getOpcode() == ISD::TargetGlobalTLSAddress);
1536 const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N);
Chad Rosiera20e1e72012-08-01 18:39:17 +00001537
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001538 X86ISelAddressMode AM;
1539 AM.GV = GA->getGlobal();
1540 AM.Disp += GA->getOffset();
Dan Gohmanffce6f12010-04-29 23:30:41 +00001541 AM.Base_Reg = CurDAG->getRegister(0, N.getValueType());
Chris Lattnerba8ef452009-06-26 21:18:37 +00001542 AM.SymbolFlags = GA->getTargetFlags();
1543
Owen Anderson825b72b2009-08-11 20:47:22 +00001544 if (N.getValueType() == MVT::i32) {
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001545 AM.Scale = 1;
Owen Anderson825b72b2009-08-11 20:47:22 +00001546 AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001547 } else {
Owen Anderson825b72b2009-08-11 20:47:22 +00001548 AM.IndexReg = CurDAG->getRegister(0, MVT::i64);
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001549 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001550
Chris Lattner5c0b16d2009-06-20 20:38:48 +00001551 getAddressOperands(AM, Base, Scale, Index, Disp, Segment);
1552 return true;
1553}
1554
1555
Dan Gohmaneeb3a002010-01-05 01:24:18 +00001556bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N,
Dan Gohman475871a2008-07-27 21:46:04 +00001557 SDValue &Base, SDValue &Scale,
Rafael Espindola094fad32009-04-08 21:14:34 +00001558 SDValue &Index, SDValue &Disp,
1559 SDValue &Segment) {
Chris Lattnerd1b73822010-03-02 22:20:06 +00001560 if (!ISD::isNON_EXTLoad(N.getNode()) ||
1561 !IsProfitableToFold(N, P, P) ||
Dan Gohmand858e902010-04-17 15:26:15 +00001562 !IsLegalToFold(N, P, P, OptLevel))
Chris Lattnerd1b73822010-03-02 22:20:06 +00001563 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001564
Chris Lattnerb86faa12010-09-21 22:07:31 +00001565 return SelectAddr(N.getNode(),
1566 N.getOperand(1), Base, Scale, Index, Disp, Segment);
Evan Cheng0114e942006-01-06 20:36:21 +00001567}
1568
Dan Gohman8b746962008-09-23 18:22:58 +00001569/// getGlobalBaseReg - Return an SDNode that returns the value of
1570/// the global base register. Output instructions required to
1571/// initialize the global base register, if necessary.
Evan Cheng7ccced62006-02-18 00:15:05 +00001572///
Evan Cheng9ade2182006-08-26 05:34:46 +00001573SDNode *X86DAGToDAGISel::getGlobalBaseReg() {
Dan Gohmanc5534622009-06-03 20:20:00 +00001574 unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF);
Stephen Hines37ed9c12014-12-01 14:51:49 -08001575 return CurDAG->getRegister(GlobalBaseReg, TLI->getPointerTy()).getNode();
Dale Johannesen48c1bc22008-10-02 18:53:47 +00001576}
Christopher Lambc59e5212007-08-10 21:48:46 +00001577
Michael Liaocd9ede92012-09-19 19:36:58 +00001578/// Atomic opcode table
1579///
Eric Christopher8102bf02011-05-17 07:47:55 +00001580enum AtomicOpc {
Michael Liaocd9ede92012-09-19 19:36:58 +00001581 ADD,
1582 SUB,
1583 INC,
1584 DEC,
Eric Christopher811c2b72011-05-17 07:50:41 +00001585 OR,
Eric Christopherc324f722011-05-17 08:10:18 +00001586 AND,
1587 XOR,
Eric Christopher811c2b72011-05-17 07:50:41 +00001588 AtomicOpcEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001589};
1590
1591enum AtomicSz {
1592 ConstantI8,
1593 I8,
1594 SextConstantI16,
1595 ConstantI16,
1596 I16,
1597 SextConstantI32,
1598 ConstantI32,
1599 I32,
1600 SextConstantI64,
1601 ConstantI64,
Eric Christopher811c2b72011-05-17 07:50:41 +00001602 I64,
1603 AtomicSzEnd
Eric Christopher8102bf02011-05-17 07:47:55 +00001604};
1605
Craig Topper72051bf2012-03-09 07:45:21 +00001606static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001607 {
Michael Liaocd9ede92012-09-19 19:36:58 +00001608 X86::LOCK_ADD8mi,
1609 X86::LOCK_ADD8mr,
1610 X86::LOCK_ADD16mi8,
1611 X86::LOCK_ADD16mi,
1612 X86::LOCK_ADD16mr,
1613 X86::LOCK_ADD32mi8,
1614 X86::LOCK_ADD32mi,
1615 X86::LOCK_ADD32mr,
1616 X86::LOCK_ADD64mi8,
1617 X86::LOCK_ADD64mi32,
1618 X86::LOCK_ADD64mr,
1619 },
1620 {
1621 X86::LOCK_SUB8mi,
1622 X86::LOCK_SUB8mr,
1623 X86::LOCK_SUB16mi8,
1624 X86::LOCK_SUB16mi,
1625 X86::LOCK_SUB16mr,
1626 X86::LOCK_SUB32mi8,
1627 X86::LOCK_SUB32mi,
1628 X86::LOCK_SUB32mr,
1629 X86::LOCK_SUB64mi8,
1630 X86::LOCK_SUB64mi32,
1631 X86::LOCK_SUB64mr,
1632 },
1633 {
1634 0,
1635 X86::LOCK_INC8m,
1636 0,
1637 0,
1638 X86::LOCK_INC16m,
1639 0,
1640 0,
1641 X86::LOCK_INC32m,
1642 0,
1643 0,
1644 X86::LOCK_INC64m,
1645 },
1646 {
1647 0,
1648 X86::LOCK_DEC8m,
1649 0,
1650 0,
1651 X86::LOCK_DEC16m,
1652 0,
1653 0,
1654 X86::LOCK_DEC32m,
1655 0,
1656 0,
1657 X86::LOCK_DEC64m,
1658 },
1659 {
Eric Christopherc493a1f2011-05-11 21:44:58 +00001660 X86::LOCK_OR8mi,
1661 X86::LOCK_OR8mr,
1662 X86::LOCK_OR16mi8,
1663 X86::LOCK_OR16mi,
1664 X86::LOCK_OR16mr,
1665 X86::LOCK_OR32mi8,
1666 X86::LOCK_OR32mi,
1667 X86::LOCK_OR32mr,
1668 X86::LOCK_OR64mi8,
1669 X86::LOCK_OR64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001670 X86::LOCK_OR64mr,
Eric Christopherc324f722011-05-17 08:10:18 +00001671 },
1672 {
1673 X86::LOCK_AND8mi,
1674 X86::LOCK_AND8mr,
1675 X86::LOCK_AND16mi8,
1676 X86::LOCK_AND16mi,
1677 X86::LOCK_AND16mr,
1678 X86::LOCK_AND32mi8,
1679 X86::LOCK_AND32mi,
1680 X86::LOCK_AND32mr,
1681 X86::LOCK_AND64mi8,
1682 X86::LOCK_AND64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001683 X86::LOCK_AND64mr,
Eric Christopherc324f722011-05-17 08:10:18 +00001684 },
1685 {
1686 X86::LOCK_XOR8mi,
1687 X86::LOCK_XOR8mr,
1688 X86::LOCK_XOR16mi8,
1689 X86::LOCK_XOR16mi,
1690 X86::LOCK_XOR16mr,
1691 X86::LOCK_XOR32mi8,
1692 X86::LOCK_XOR32mi,
1693 X86::LOCK_XOR32mr,
1694 X86::LOCK_XOR64mi8,
1695 X86::LOCK_XOR64mi32,
Michael Liaocd9ede92012-09-19 19:36:58 +00001696 X86::LOCK_XOR64mr,
Eric Christopherc493a1f2011-05-11 21:44:58 +00001697 }
1698};
1699
Michael Liaocd9ede92012-09-19 19:36:58 +00001700// Return the target constant operand for atomic-load-op and do simple
1701// translations, such as from atomic-load-add to lock-sub. The return value is
1702// one of the following 3 cases:
1703// + target-constant, the operand could be supported as a target constant.
1704// + empty, the operand is not needed any more with the new op selected.
1705// + non-empty, otherwise.
1706static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG,
Andrew Trickac6d9be2013-05-25 02:42:55 +00001707 SDLoc dl,
Craig Topper07ad0c42013-08-15 05:57:07 +00001708 enum AtomicOpc &Op, MVT NVT,
Stephen Hines37ed9c12014-12-01 14:51:49 -08001709 SDValue Val,
1710 const X86Subtarget *Subtarget) {
Michael Liaocd9ede92012-09-19 19:36:58 +00001711 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) {
1712 int64_t CNVal = CN->getSExtValue();
1713 // Quit if not 32-bit imm.
1714 if ((int32_t)CNVal != CNVal)
1715 return Val;
Stephen Hines37ed9c12014-12-01 14:51:49 -08001716 // Quit if INT32_MIN: it would be negated as it is negative and overflow,
1717 // producing an immediate that does not fit in the 32 bits available for
1718 // an immediate operand to sub. However, it still fits in 32 bits for the
1719 // add (since it is not negated) so we can return target-constant.
1720 if (CNVal == INT32_MIN)
1721 return CurDAG->getTargetConstant(CNVal, NVT);
Michael Liaocd9ede92012-09-19 19:36:58 +00001722 // For atomic-load-add, we could do some optimizations.
1723 if (Op == ADD) {
1724 // Translate to INC/DEC if ADD by 1 or -1.
Stephen Hines37ed9c12014-12-01 14:51:49 -08001725 if (((CNVal == 1) || (CNVal == -1)) && !Subtarget->slowIncDec()) {
Michael Liaocd9ede92012-09-19 19:36:58 +00001726 Op = (CNVal == 1) ? INC : DEC;
1727 // No more constant operand after being translated into INC/DEC.
1728 return SDValue();
1729 }
1730 // Translate to SUB if ADD by negative value.
1731 if (CNVal < 0) {
1732 Op = SUB;
1733 CNVal = -CNVal;
1734 }
1735 }
1736 return CurDAG->getTargetConstant(CNVal, NVT);
1737 }
1738
1739 // If the value operand is single-used, try to optimize it.
1740 if (Op == ADD && Val.hasOneUse()) {
1741 // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x).
1742 if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) {
1743 Op = SUB;
1744 return Val.getOperand(1);
1745 }
1746 // A special case for i16, which needs truncating as, in most cases, it's
1747 // promoted to i32. We will translate
1748 // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x))
1749 if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 &&
1750 Val.getOperand(0).getOpcode() == ISD::SUB &&
1751 X86::isZeroNode(Val.getOperand(0).getOperand(0))) {
1752 Op = SUB;
1753 Val = Val.getOperand(0);
1754 return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT,
1755 Val.getOperand(1));
1756 }
1757 }
1758
1759 return Val;
1760}
1761
Craig Topper07ad0c42013-08-15 05:57:07 +00001762SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) {
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001763 if (Node->hasAnyUseOfValue(0))
Stephen Hinesdce4a402014-05-29 02:49:00 -07001764 return nullptr;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001765
Andrew Trickac6d9be2013-05-25 02:42:55 +00001766 SDLoc dl(Node);
Michael Liaocd9ede92012-09-19 19:36:58 +00001767
Eric Christopher6abb7ba2011-05-17 08:16:14 +00001768 // Optimize common patterns for __sync_or_and_fetch and similar arith
1769 // operations where the result is not used. This allows us to use the "lock"
1770 // version of the arithmetic instruction.
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001771 SDValue Chain = Node->getOperand(0);
1772 SDValue Ptr = Node->getOperand(1);
1773 SDValue Val = Node->getOperand(2);
Stephen Hines37ed9c12014-12-01 14:51:49 -08001774 SDValue Base, Scale, Index, Disp, Segment;
1775 if (!SelectAddr(Node, Ptr, Base, Scale, Index, Disp, Segment))
Stephen Hinesdce4a402014-05-29 02:49:00 -07001776 return nullptr;
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001777
Eric Christopherc324f722011-05-17 08:10:18 +00001778 // Which index into the table.
1779 enum AtomicOpc Op;
1780 switch (Node->getOpcode()) {
Michael Liaocd9ede92012-09-19 19:36:58 +00001781 default:
Stephen Hinesdce4a402014-05-29 02:49:00 -07001782 return nullptr;
Eric Christopherc324f722011-05-17 08:10:18 +00001783 case ISD::ATOMIC_LOAD_OR:
1784 Op = OR;
1785 break;
1786 case ISD::ATOMIC_LOAD_AND:
1787 Op = AND;
1788 break;
1789 case ISD::ATOMIC_LOAD_XOR:
1790 Op = XOR;
1791 break;
Michael Liaocd9ede92012-09-19 19:36:58 +00001792 case ISD::ATOMIC_LOAD_ADD:
1793 Op = ADD;
1794 break;
Eric Christopherc324f722011-05-17 08:10:18 +00001795 }
Andrew Trickc706dc72013-04-13 06:07:36 +00001796
Stephen Hines37ed9c12014-12-01 14:51:49 -08001797 Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val, Subtarget);
Michael Liaocd9ede92012-09-19 19:36:58 +00001798 bool isUnOp = !Val.getNode();
1799 bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant);
Chad Rosiera20e1e72012-08-01 18:39:17 +00001800
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001801 unsigned Opc = 0;
Craig Topper07ad0c42013-08-15 05:57:07 +00001802 switch (NVT.SimpleTy) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07001803 default: return nullptr;
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001804 case MVT::i8:
1805 if (isCN)
Eric Christopher8102bf02011-05-17 07:47:55 +00001806 Opc = AtomicOpcTbl[Op][ConstantI8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001807 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001808 Opc = AtomicOpcTbl[Op][I8];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001809 break;
1810 case MVT::i16:
1811 if (isCN) {
1812 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001813 Opc = AtomicOpcTbl[Op][SextConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001814 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001815 Opc = AtomicOpcTbl[Op][ConstantI16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001816 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001817 Opc = AtomicOpcTbl[Op][I16];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001818 break;
1819 case MVT::i32:
1820 if (isCN) {
1821 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001822 Opc = AtomicOpcTbl[Op][SextConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001823 else
Eric Christopher8102bf02011-05-17 07:47:55 +00001824 Opc = AtomicOpcTbl[Op][ConstantI32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001825 } else
Eric Christopher8102bf02011-05-17 07:47:55 +00001826 Opc = AtomicOpcTbl[Op][I32];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001827 break;
1828 case MVT::i64:
1829 if (isCN) {
1830 if (immSext8(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001831 Opc = AtomicOpcTbl[Op][SextConstantI64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001832 else if (i64immSExt32(Val.getNode()))
Eric Christopher8102bf02011-05-17 07:47:55 +00001833 Opc = AtomicOpcTbl[Op][ConstantI64];
Stephen Hines37ed9c12014-12-01 14:51:49 -08001834 else
1835 llvm_unreachable("True 64 bits constant in SelectAtomicLoadArith");
1836 } else
1837 Opc = AtomicOpcTbl[Op][I64];
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001838 break;
1839 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00001840
Eric Christopher5d8aa342011-06-30 00:48:30 +00001841 assert(Opc != 0 && "Invalid arith lock transform!");
1842
Stephen Hines37ed9c12014-12-01 14:51:49 -08001843 // Building the new node.
Michael Liaocd9ede92012-09-19 19:36:58 +00001844 SDValue Ret;
Michael Liaocd9ede92012-09-19 19:36:58 +00001845 if (isUnOp) {
Stephen Hines37ed9c12014-12-01 14:51:49 -08001846 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Chain };
Michael Liao2a8bea72013-04-19 22:22:57 +00001847 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liaocd9ede92012-09-19 19:36:58 +00001848 } else {
Stephen Hines37ed9c12014-12-01 14:51:49 -08001849 SDValue Ops[] = { Base, Scale, Index, Disp, Segment, Val, Chain };
Michael Liao2a8bea72013-04-19 22:22:57 +00001850 Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0);
Michael Liaocd9ede92012-09-19 19:36:58 +00001851 }
Stephen Hines37ed9c12014-12-01 14:51:49 -08001852
1853 // Copying the MachineMemOperand.
1854 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1);
1855 MemOp[0] = cast<MemSDNode>(Node)->getMemOperand();
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001856 cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1);
Stephen Hines37ed9c12014-12-01 14:51:49 -08001857
1858 // We need to have two outputs as that is what the original instruction had.
1859 // So we add a dummy, undefined output. This is safe as we checked first
1860 // that no-one uses our output anyway.
1861 SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF,
1862 dl, NVT), 0);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001863 SDValue RetVals[] = { Undef, Ret };
Stephen Hinesdce4a402014-05-29 02:49:00 -07001864 return CurDAG->getMergeValues(RetVals, dl).getNode();
Eric Christopherb38fe4b2011-05-10 23:57:45 +00001865}
1866
Dan Gohman11596ed2009-10-09 20:35:19 +00001867/// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has
1868/// any uses which require the SF or OF bits to be accurate.
1869static bool HasNoSignedComparisonUses(SDNode *N) {
1870 // Examine each user of the node.
1871 for (SDNode::use_iterator UI = N->use_begin(),
1872 UE = N->use_end(); UI != UE; ++UI) {
1873 // Only examine CopyToReg uses.
1874 if (UI->getOpcode() != ISD::CopyToReg)
1875 return false;
1876 // Only examine CopyToReg uses that copy to EFLAGS.
1877 if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() !=
1878 X86::EFLAGS)
1879 return false;
1880 // Examine each user of the CopyToReg use.
1881 for (SDNode::use_iterator FlagUI = UI->use_begin(),
1882 FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) {
1883 // Only examine the Flag result.
1884 if (FlagUI.getUse().getResNo() != 1) continue;
1885 // Anything unusual: assume conservatively.
1886 if (!FlagUI->isMachineOpcode()) return false;
1887 // Examine the opcode of the user.
1888 switch (FlagUI->getMachineOpcode()) {
1889 // These comparisons don't treat the most significant bit specially.
1890 case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr:
1891 case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr:
1892 case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm:
1893 case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm:
Chris Lattnerbd13fb62010-02-11 19:25:55 +00001894 case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4:
1895 case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4:
Dan Gohman11596ed2009-10-09 20:35:19 +00001896 case X86::CMOVA16rr: case X86::CMOVA16rm:
1897 case X86::CMOVA32rr: case X86::CMOVA32rm:
1898 case X86::CMOVA64rr: case X86::CMOVA64rm:
1899 case X86::CMOVAE16rr: case X86::CMOVAE16rm:
1900 case X86::CMOVAE32rr: case X86::CMOVAE32rm:
1901 case X86::CMOVAE64rr: case X86::CMOVAE64rm:
1902 case X86::CMOVB16rr: case X86::CMOVB16rm:
1903 case X86::CMOVB32rr: case X86::CMOVB32rm:
1904 case X86::CMOVB64rr: case X86::CMOVB64rm:
Chris Lattner25cbf502010-10-05 23:00:14 +00001905 case X86::CMOVBE16rr: case X86::CMOVBE16rm:
1906 case X86::CMOVBE32rr: case X86::CMOVBE32rm:
1907 case X86::CMOVBE64rr: case X86::CMOVBE64rm:
Dan Gohman11596ed2009-10-09 20:35:19 +00001908 case X86::CMOVE16rr: case X86::CMOVE16rm:
1909 case X86::CMOVE32rr: case X86::CMOVE32rm:
1910 case X86::CMOVE64rr: case X86::CMOVE64rm:
1911 case X86::CMOVNE16rr: case X86::CMOVNE16rm:
1912 case X86::CMOVNE32rr: case X86::CMOVNE32rm:
1913 case X86::CMOVNE64rr: case X86::CMOVNE64rm:
1914 case X86::CMOVNP16rr: case X86::CMOVNP16rm:
1915 case X86::CMOVNP32rr: case X86::CMOVNP32rm:
1916 case X86::CMOVNP64rr: case X86::CMOVNP64rm:
1917 case X86::CMOVP16rr: case X86::CMOVP16rm:
1918 case X86::CMOVP32rr: case X86::CMOVP32rm:
1919 case X86::CMOVP64rr: case X86::CMOVP64rm:
1920 continue;
1921 // Anything else: assume conservatively.
1922 default: return false;
1923 }
1924 }
1925 }
1926 return true;
1927}
1928
Joel Jones76d03102012-03-29 05:45:48 +00001929/// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode
1930/// is suitable for doing the {load; increment or decrement; store} to modify
1931/// transformation.
Chad Rosiera20e1e72012-08-01 18:39:17 +00001932static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc,
Evan Chengf0bcecc2012-04-12 19:14:21 +00001933 SDValue StoredVal, SelectionDAG *CurDAG,
1934 LoadSDNode* &LoadNode, SDValue &InputChain) {
Joel Jones76d03102012-03-29 05:45:48 +00001935
1936 // is the value stored the result of a DEC or INC?
1937 if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false;
1938
Joel Jones76d03102012-03-29 05:45:48 +00001939 // is the stored value result 0 of the load?
1940 if (StoredVal.getResNo() != 0) return false;
1941
1942 // are there other uses of the loaded value than the inc or dec?
1943 if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false;
1944
Joel Jones76d03102012-03-29 05:45:48 +00001945 // is the store non-extending and non-indexed?
Evan Chengf0bcecc2012-04-12 19:14:21 +00001946 if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal())
Joel Jones76d03102012-03-29 05:45:48 +00001947 return false;
1948
Evan Chengf0bcecc2012-04-12 19:14:21 +00001949 SDValue Load = StoredVal->getOperand(0);
1950 // Is the stored value a non-extending and non-indexed load?
1951 if (!ISD::isNormalLoad(Load.getNode())) return false;
1952
1953 // Return LoadNode by reference.
1954 LoadNode = cast<LoadSDNode>(Load);
1955 // 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 +00001956 EVT LdVT = LoadNode->getMemoryVT();
1957 if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 &&
Evan Chengf0bcecc2012-04-12 19:14:21 +00001958 LdVT != MVT::i8)
1959 return false;
1960
1961 // Is store the only read of the loaded value?
1962 if (!Load.hasOneUse())
1963 return false;
Chad Rosiera20e1e72012-08-01 18:39:17 +00001964
Evan Chengf0bcecc2012-04-12 19:14:21 +00001965 // Is the address of the store the same as the load?
1966 if (LoadNode->getBasePtr() != StoreNode->getBasePtr() ||
1967 LoadNode->getOffset() != StoreNode->getOffset())
1968 return false;
1969
1970 // Check if the chain is produced by the load or is a TokenFactor with
1971 // the load output chain as an operand. Return InputChain by reference.
1972 SDValue Chain = StoreNode->getChain();
1973
1974 bool ChainCheck = false;
1975 if (Chain == Load.getValue(1)) {
1976 ChainCheck = true;
1977 InputChain = LoadNode->getChain();
1978 } else if (Chain.getOpcode() == ISD::TokenFactor) {
1979 SmallVector<SDValue, 4> ChainOps;
1980 for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) {
1981 SDValue Op = Chain.getOperand(i);
1982 if (Op == Load.getValue(1)) {
1983 ChainCheck = true;
1984 continue;
1985 }
Evan Cheng61003662012-05-16 01:54:27 +00001986
1987 // Make sure using Op as part of the chain would not cause a cycle here.
1988 // In theory, we could check whether the chain node is a predecessor of
1989 // the load. But that can be very expensive. Instead visit the uses and
1990 // make sure they all have smaller node id than the load.
1991 int LoadId = LoadNode->getNodeId();
1992 for (SDNode::use_iterator UI = Op.getNode()->use_begin(),
1993 UE = UI->use_end(); UI != UE; ++UI) {
1994 if (UI.getUse().getResNo() != 0)
1995 continue;
1996 if (UI->getNodeId() > LoadId)
1997 return false;
1998 }
1999
Evan Chengf0bcecc2012-04-12 19:14:21 +00002000 ChainOps.push_back(Op);
2001 }
2002
2003 if (ChainCheck)
2004 // Make a new TokenFactor with all the other input chains except
2005 // for the load.
Andrew Trickac6d9be2013-05-25 02:42:55 +00002006 InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain),
Stephen Hinesdce4a402014-05-29 02:49:00 -07002007 MVT::Other, ChainOps);
Evan Chengf0bcecc2012-04-12 19:14:21 +00002008 }
2009 if (!ChainCheck)
Joel Jones76d03102012-03-29 05:45:48 +00002010 return false;
2011
2012 return true;
2013}
2014
Benjamin Kramer73478402012-03-29 12:37:26 +00002015/// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory
2016/// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC.
Joel Jones76d03102012-03-29 05:45:48 +00002017static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) {
2018 if (Opc == X86ISD::DEC) {
2019 if (LdVT == MVT::i64) return X86::DEC64m;
2020 if (LdVT == MVT::i32) return X86::DEC32m;
2021 if (LdVT == MVT::i16) return X86::DEC16m;
2022 if (LdVT == MVT::i8) return X86::DEC8m;
Benjamin Kramer73478402012-03-29 12:37:26 +00002023 } else {
2024 assert(Opc == X86ISD::INC && "unrecognized opcode");
Joel Jones76d03102012-03-29 05:45:48 +00002025 if (LdVT == MVT::i64) return X86::INC64m;
2026 if (LdVT == MVT::i32) return X86::INC32m;
2027 if (LdVT == MVT::i16) return X86::INC16m;
2028 if (LdVT == MVT::i8) return X86::INC8m;
Joel Jones76d03102012-03-29 05:45:48 +00002029 }
Benjamin Kramer73478402012-03-29 12:37:26 +00002030 llvm_unreachable("unrecognized size for LdVT");
Joel Jones76d03102012-03-29 05:45:48 +00002031}
2032
Manman Ren1f7a1b62012-06-26 19:47:59 +00002033/// SelectGather - Customized ISel for GATHER operations.
2034///
2035SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) {
2036 // Operands of Gather: VSrc, Base, VIdx, VMask, Scale
2037 SDValue Chain = Node->getOperand(0);
2038 SDValue VSrc = Node->getOperand(2);
2039 SDValue Base = Node->getOperand(3);
2040 SDValue VIdx = Node->getOperand(4);
2041 SDValue VMask = Node->getOperand(5);
2042 ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6));
Craig Topper15d39ad2012-07-01 02:17:08 +00002043 if (!Scale)
Stephen Hinesdce4a402014-05-29 02:49:00 -07002044 return nullptr;
Manman Ren1f7a1b62012-06-26 19:47:59 +00002045
Craig Topper5aba78b2012-07-12 06:52:41 +00002046 SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(),
2047 MVT::Other);
2048
Manman Ren1f7a1b62012-06-26 19:47:59 +00002049 // Memory Operands: Base, Scale, Index, Disp, Segment
2050 SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32);
2051 SDValue Segment = CurDAG->getRegister(0, MVT::i32);
2052 const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx,
2053 Disp, Segment, VMask, Chain};
Andrew Trickac6d9be2013-05-25 02:42:55 +00002054 SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops);
Craig Topper5aba78b2012-07-12 06:52:41 +00002055 // Node has 2 outputs: VDst and MVT::Other.
2056 // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other.
2057 // We replace VDst of Node with VDst of ResNode, and Other of Node with Other
2058 // of ResNode.
2059 ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0));
2060 ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2));
Manman Ren1f7a1b62012-06-26 19:47:59 +00002061 return ResNode;
2062}
2063
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002064SDNode *X86DAGToDAGISel::Select(SDNode *Node) {
Craig Topper07ad0c42013-08-15 05:57:07 +00002065 MVT NVT = Node->getSimpleValueType(0);
Evan Cheng0114e942006-01-06 20:36:21 +00002066 unsigned Opc, MOpc;
2067 unsigned Opcode = Node->getOpcode();
Andrew Trickac6d9be2013-05-25 02:42:55 +00002068 SDLoc dl(Node);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002069
Chris Lattner7c306da2010-03-02 06:34:30 +00002070 DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n');
Evan Chengf597dc72006-02-10 22:24:32 +00002071
Dan Gohmane8be6c62008-07-17 19:10:17 +00002072 if (Node->isMachineOpcode()) {
Chris Lattner7c306da2010-03-02 06:34:30 +00002073 DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n');
Tim Northover3e84ad22013-09-22 08:21:56 +00002074 Node->setNodeId(-1);
Stephen Hinesdce4a402014-05-29 02:49:00 -07002075 return nullptr; // Already selected.
Evan Cheng34167212006-02-09 00:37:58 +00002076 }
Evan Cheng38262ca2006-01-11 22:15:18 +00002077
Evan Cheng0114e942006-01-06 20:36:21 +00002078 switch (Opcode) {
Dan Gohman72677342009-08-02 16:10:52 +00002079 default: break;
Manman Ren1f7a1b62012-06-26 19:47:59 +00002080 case ISD::INTRINSIC_W_CHAIN: {
2081 unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue();
2082 switch (IntNo) {
2083 default: break;
2084 case Intrinsic::x86_avx2_gather_d_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002085 case Intrinsic::x86_avx2_gather_d_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002086 case Intrinsic::x86_avx2_gather_q_pd:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002087 case Intrinsic::x86_avx2_gather_q_pd_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002088 case Intrinsic::x86_avx2_gather_d_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002089 case Intrinsic::x86_avx2_gather_d_ps_256:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002090 case Intrinsic::x86_avx2_gather_q_ps:
Manman Ren1f7a1b62012-06-26 19:47:59 +00002091 case Intrinsic::x86_avx2_gather_q_ps_256:
Manman Ren40307c72012-06-29 00:54:20 +00002092 case Intrinsic::x86_avx2_gather_d_q:
Manman Ren40307c72012-06-29 00:54:20 +00002093 case Intrinsic::x86_avx2_gather_d_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002094 case Intrinsic::x86_avx2_gather_q_q:
Manman Ren40307c72012-06-29 00:54:20 +00002095 case Intrinsic::x86_avx2_gather_q_q_256:
Manman Ren40307c72012-06-29 00:54:20 +00002096 case Intrinsic::x86_avx2_gather_d_d:
Manman Ren40307c72012-06-29 00:54:20 +00002097 case Intrinsic::x86_avx2_gather_d_d_256:
Manman Ren40307c72012-06-29 00:54:20 +00002098 case Intrinsic::x86_avx2_gather_q_d:
Craig Topperde6e4842012-07-01 02:05:52 +00002099 case Intrinsic::x86_avx2_gather_q_d_256: {
Michael Liao9a508ef2013-06-05 18:12:26 +00002100 if (!Subtarget->hasAVX2())
2101 break;
Craig Topperde6e4842012-07-01 02:05:52 +00002102 unsigned Opc;
2103 switch (IntNo) {
Craig Topper51e89c02012-07-01 02:55:34 +00002104 default: llvm_unreachable("Impossible intrinsic");
Craig Topperde6e4842012-07-01 02:05:52 +00002105 case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break;
2106 case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break;
2107 case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break;
2108 case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break;
2109 case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break;
2110 case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break;
2111 case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break;
2112 case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break;
2113 case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break;
2114 case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break;
2115 case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break;
2116 case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break;
2117 case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break;
2118 case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break;
2119 case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break;
2120 case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break;
2121 }
Craig Topper15d39ad2012-07-01 02:17:08 +00002122 SDNode *RetVal = SelectGather(Node, Opc);
2123 if (RetVal)
Craig Topper5aba78b2012-07-12 06:52:41 +00002124 // We already called ReplaceUses inside SelectGather.
Stephen Hinesdce4a402014-05-29 02:49:00 -07002125 return nullptr;
Craig Topper65b382c2012-07-01 02:18:18 +00002126 break;
Craig Topperde6e4842012-07-01 02:05:52 +00002127 }
Manman Ren1f7a1b62012-06-26 19:47:59 +00002128 }
2129 break;
2130 }
Dan Gohman72677342009-08-02 16:10:52 +00002131 case X86ISD::GlobalBaseReg:
2132 return getGlobalBaseReg();
Evan Cheng020d2e82006-02-23 20:41:18 +00002133
Stephen Hines37ed9c12014-12-01 14:51:49 -08002134 case X86ISD::SHRUNKBLEND: {
2135 // SHRUNKBLEND selects like a regular VSELECT.
2136 SDValue VSelect = CurDAG->getNode(
2137 ISD::VSELECT, SDLoc(Node), Node->getValueType(0), Node->getOperand(0),
2138 Node->getOperand(1), Node->getOperand(2));
2139 ReplaceUses(SDValue(Node, 0), VSelect);
2140 SelectCode(VSelect.getNode());
2141 // We already called ReplaceUses.
2142 return nullptr;
2143 }
Craig Topper51e89c02012-07-01 02:55:34 +00002144
Eric Christopherc324f722011-05-17 08:10:18 +00002145 case ISD::ATOMIC_LOAD_XOR:
2146 case ISD::ATOMIC_LOAD_AND:
Michael Liaocd9ede92012-09-19 19:36:58 +00002147 case ISD::ATOMIC_LOAD_OR:
2148 case ISD::ATOMIC_LOAD_ADD: {
Eric Christopherc324f722011-05-17 08:10:18 +00002149 SDNode *RetVal = SelectAtomicLoadArith(Node, NVT);
Eric Christopherb38fe4b2011-05-10 23:57:45 +00002150 if (RetVal)
2151 return RetVal;
2152 break;
2153 }
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002154 case ISD::AND:
2155 case ISD::OR:
2156 case ISD::XOR: {
2157 // For operations of the form (x << C1) op C2, check if we can use a smaller
2158 // encoding for C2 by transforming it into (x op (C2>>C1)) << C1.
2159 SDValue N0 = Node->getOperand(0);
2160 SDValue N1 = Node->getOperand(1);
2161
2162 if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse())
2163 break;
2164
2165 // i8 is unshrinkable, i16 should be promoted to i32.
2166 if (NVT != MVT::i32 && NVT != MVT::i64)
2167 break;
2168
2169 ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1);
2170 ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1));
2171 if (!Cst || !ShlCst)
2172 break;
2173
2174 int64_t Val = Cst->getSExtValue();
2175 uint64_t ShlVal = ShlCst->getZExtValue();
2176
2177 // Make sure that we don't change the operation by removing bits.
2178 // This only matters for OR and XOR, AND is unaffected.
Richard Smith1144af32012-08-24 23:29:28 +00002179 uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1;
2180 if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0)
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002181 break;
2182
Craig Topper28654222012-08-11 17:44:14 +00002183 unsigned ShlOp, Op;
Craig Topper07ad0c42013-08-15 05:57:07 +00002184 MVT CstVT = NVT;
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002185
2186 // Check the minimum bitwidth for the new constant.
2187 // TODO: AND32ri is the same as AND64ri32 with zext imm.
2188 // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr
2189 // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32.
2190 if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal))
2191 CstVT = MVT::i8;
2192 else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal))
2193 CstVT = MVT::i32;
2194
2195 // Bail if there is no smaller encoding.
2196 if (NVT == CstVT)
2197 break;
2198
Craig Topper07ad0c42013-08-15 05:57:07 +00002199 switch (NVT.SimpleTy) {
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002200 default: llvm_unreachable("Unsupported VT!");
2201 case MVT::i32:
2202 assert(CstVT == MVT::i8);
2203 ShlOp = X86::SHL32ri;
2204
2205 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002206 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002207 case ISD::AND: Op = X86::AND32ri8; break;
2208 case ISD::OR: Op = X86::OR32ri8; break;
2209 case ISD::XOR: Op = X86::XOR32ri8; break;
2210 }
2211 break;
2212 case MVT::i64:
2213 assert(CstVT == MVT::i8 || CstVT == MVT::i32);
2214 ShlOp = X86::SHL64ri;
2215
2216 switch (Opcode) {
Craig Topper28654222012-08-11 17:44:14 +00002217 default: llvm_unreachable("Impossible opcode");
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002218 case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break;
2219 case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break;
2220 case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break;
2221 }
2222 break;
2223 }
2224
2225 // Emit the smaller op and the shift.
2226 SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT);
2227 SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst);
2228 return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0),
2229 getI8Imm(ShlVal));
Benjamin Kramerb20a8fc2011-04-22 15:30:40 +00002230 }
Stephen Hines37ed9c12014-12-01 14:51:49 -08002231 case X86ISD::UMUL8:
2232 case X86ISD::SMUL8: {
2233 SDValue N0 = Node->getOperand(0);
2234 SDValue N1 = Node->getOperand(1);
2235
2236 Opc = (Opcode == X86ISD::SMUL8 ? X86::IMUL8r : X86::MUL8r);
2237
2238 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, X86::AL,
2239 N0, SDValue()).getValue(1);
2240
2241 SDVTList VTs = CurDAG->getVTList(NVT, MVT::i32);
2242 SDValue Ops[] = {N1, InFlag};
2243 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
2244
2245 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2246 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2247 return nullptr;
2248 }
2249
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002250 case X86ISD::UMUL: {
2251 SDValue N0 = Node->getOperand(0);
2252 SDValue N1 = Node->getOperand(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002253
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002254 unsigned LoReg;
Craig Topper07ad0c42013-08-15 05:57:07 +00002255 switch (NVT.SimpleTy) {
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002256 default: llvm_unreachable("Unsupported VT!");
Ted Kremenekd7f696e2011-01-14 22:34:13 +00002257 case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break;
2258 case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break;
2259 case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break;
2260 case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002261 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002262
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002263 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg,
2264 N0, SDValue()).getValue(1);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002265
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002266 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32);
2267 SDValue Ops[] = {N1, InFlag};
Michael Liao2a8bea72013-04-19 22:22:57 +00002268 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Chad Rosiera20e1e72012-08-01 18:39:17 +00002269
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002270 ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0));
2271 ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1));
2272 ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2));
Stephen Hinesdce4a402014-05-29 02:49:00 -07002273 return nullptr;
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002274 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002275
Dan Gohman72677342009-08-02 16:10:52 +00002276 case ISD::SMUL_LOHI:
2277 case ISD::UMUL_LOHI: {
2278 SDValue N0 = Node->getOperand(0);
2279 SDValue N1 = Node->getOperand(1);
2280
2281 bool isSigned = Opcode == ISD::SMUL_LOHI;
Michael Liao0832a722012-09-26 08:22:37 +00002282 bool hasBMI2 = Subtarget->hasBMI2();
Bill Wendling12321672009-08-07 21:33:25 +00002283 if (!isSigned) {
Craig Topper07ad0c42013-08-15 05:57:07 +00002284 switch (NVT.SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002285 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002286 case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break;
2287 case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break;
Michael Liao0832a722012-09-26 08:22:37 +00002288 case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r;
2289 MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break;
2290 case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r;
2291 MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002292 }
Bill Wendling12321672009-08-07 21:33:25 +00002293 } else {
Craig Topper07ad0c42013-08-15 05:57:07 +00002294 switch (NVT.SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002295 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002296 case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break;
2297 case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break;
2298 case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break;
2299 case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002300 }
Bill Wendling12321672009-08-07 21:33:25 +00002301 }
Dan Gohman72677342009-08-02 16:10:52 +00002302
Michael Liao0832a722012-09-26 08:22:37 +00002303 unsigned SrcReg, LoReg, HiReg;
2304 switch (Opc) {
2305 default: llvm_unreachable("Unknown MUL opcode!");
2306 case X86::IMUL8r:
2307 case X86::MUL8r:
2308 SrcReg = LoReg = X86::AL; HiReg = X86::AH;
2309 break;
2310 case X86::IMUL16r:
2311 case X86::MUL16r:
2312 SrcReg = LoReg = X86::AX; HiReg = X86::DX;
2313 break;
2314 case X86::IMUL32r:
2315 case X86::MUL32r:
2316 SrcReg = LoReg = X86::EAX; HiReg = X86::EDX;
2317 break;
2318 case X86::IMUL64r:
2319 case X86::MUL64r:
2320 SrcReg = LoReg = X86::RAX; HiReg = X86::RDX;
2321 break;
2322 case X86::MULX32rr:
2323 SrcReg = X86::EDX; LoReg = HiReg = 0;
2324 break;
2325 case X86::MULX64rr:
2326 SrcReg = X86::RDX; LoReg = HiReg = 0;
2327 break;
Dan Gohman72677342009-08-02 16:10:52 +00002328 }
2329
2330 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002331 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Bill Wendling12321672009-08-07 21:33:25 +00002332 // Multiply is commmutative.
Dan Gohman72677342009-08-02 16:10:52 +00002333 if (!foldedLoad) {
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002334 foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002335 if (foldedLoad)
2336 std::swap(N0, N1);
2337 }
2338
Michael Liao0832a722012-09-26 08:22:37 +00002339 SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg,
Craig Topper88097812012-05-23 05:44:51 +00002340 N0, SDValue()).getValue(1);
Michael Liao0832a722012-09-26 08:22:37 +00002341 SDValue ResHi, ResLo;
Dan Gohman72677342009-08-02 16:10:52 +00002342
2343 if (foldedLoad) {
Michael Liao0832a722012-09-26 08:22:37 +00002344 SDValue Chain;
Dan Gohman72677342009-08-02 16:10:52 +00002345 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2346 InFlag };
Michael Liao0832a722012-09-26 08:22:37 +00002347 if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) {
2348 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue);
Michael Liao2a8bea72013-04-19 22:22:57 +00002349 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liao0832a722012-09-26 08:22:37 +00002350 ResHi = SDValue(CNode, 0);
2351 ResLo = SDValue(CNode, 1);
2352 Chain = SDValue(CNode, 2);
2353 InFlag = SDValue(CNode, 3);
2354 } else {
2355 SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue);
Michael Liao2a8bea72013-04-19 22:22:57 +00002356 SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops);
Michael Liao0832a722012-09-26 08:22:37 +00002357 Chain = SDValue(CNode, 0);
2358 InFlag = SDValue(CNode, 1);
2359 }
Chris Lattnerb20e0b12010-12-05 07:30:36 +00002360
Dan Gohman72677342009-08-02 16:10:52 +00002361 // Update the chain.
Michael Liao0832a722012-09-26 08:22:37 +00002362 ReplaceUses(N1.getValue(1), Chain);
Dan Gohman72677342009-08-02 16:10:52 +00002363 } else {
Michael Liao0832a722012-09-26 08:22:37 +00002364 SDValue Ops[] = { N1, InFlag };
2365 if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) {
2366 SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue);
Michael Liao2a8bea72013-04-19 22:22:57 +00002367 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liao0832a722012-09-26 08:22:37 +00002368 ResHi = SDValue(CNode, 0);
2369 ResLo = SDValue(CNode, 1);
2370 InFlag = SDValue(CNode, 2);
2371 } else {
2372 SDVTList VTs = CurDAG->getVTList(MVT::Glue);
Michael Liao2a8bea72013-04-19 22:22:57 +00002373 SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops);
Michael Liao0832a722012-09-26 08:22:37 +00002374 InFlag = SDValue(CNode, 0);
2375 }
Dan Gohman72677342009-08-02 16:10:52 +00002376 }
2377
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002378 // Prevent use of AH in a REX instruction by referencing AX instead.
2379 if (HiReg == X86::AH && Subtarget->is64Bit() &&
2380 !SDValue(Node, 1).use_empty()) {
2381 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2382 X86::AX, MVT::i16, InFlag);
2383 InFlag = Result.getValue(2);
2384 // Get the low part if needed. Don't use getCopyFromReg for aliasing
2385 // registers.
2386 if (!SDValue(Node, 0).use_empty())
2387 ReplaceUses(SDValue(Node, 1),
2388 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2389
2390 // Shift AX down 8 bits.
2391 Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16,
2392 Result,
2393 CurDAG->getTargetConstant(8, MVT::i8)), 0);
2394 // Then truncate it down to i8.
2395 ReplaceUses(SDValue(Node, 1),
2396 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result));
2397 }
Dan Gohman72677342009-08-02 16:10:52 +00002398 // Copy the low half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002399 if (!SDValue(Node, 0).use_empty()) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07002400 if (!ResLo.getNode()) {
Michael Liao0832a722012-09-26 08:22:37 +00002401 assert(LoReg && "Register for low half is not defined!");
2402 ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT,
2403 InFlag);
2404 InFlag = ResLo.getValue(2);
2405 }
2406 ReplaceUses(SDValue(Node, 0), ResLo);
2407 DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002408 }
2409 // Copy the high half of the result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002410 if (!SDValue(Node, 1).use_empty()) {
Stephen Hinesdce4a402014-05-29 02:49:00 -07002411 if (!ResHi.getNode()) {
Michael Liao0832a722012-09-26 08:22:37 +00002412 assert(HiReg && "Register for high half is not defined!");
2413 ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT,
2414 InFlag);
2415 InFlag = ResHi.getValue(2);
2416 }
2417 ReplaceUses(SDValue(Node, 1), ResHi);
2418 DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002419 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002420
Stephen Hinesdce4a402014-05-29 02:49:00 -07002421 return nullptr;
Dan Gohman72677342009-08-02 16:10:52 +00002422 }
2423
2424 case ISD::SDIVREM:
Stephen Hines37ed9c12014-12-01 14:51:49 -08002425 case ISD::UDIVREM:
2426 case X86ISD::SDIVREM8_SEXT_HREG:
2427 case X86ISD::UDIVREM8_ZEXT_HREG: {
Dan Gohman72677342009-08-02 16:10:52 +00002428 SDValue N0 = Node->getOperand(0);
2429 SDValue N1 = Node->getOperand(1);
2430
Stephen Hines37ed9c12014-12-01 14:51:49 -08002431 bool isSigned = (Opcode == ISD::SDIVREM ||
2432 Opcode == X86ISD::SDIVREM8_SEXT_HREG);
Bill Wendling12321672009-08-07 21:33:25 +00002433 if (!isSigned) {
Craig Topper07ad0c42013-08-15 05:57:07 +00002434 switch (NVT.SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002435 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002436 case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break;
2437 case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break;
2438 case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break;
2439 case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002440 }
Bill Wendling12321672009-08-07 21:33:25 +00002441 } else {
Craig Topper07ad0c42013-08-15 05:57:07 +00002442 switch (NVT.SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002443 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002444 case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break;
2445 case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break;
2446 case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break;
2447 case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break;
Dan Gohman72677342009-08-02 16:10:52 +00002448 }
Bill Wendling12321672009-08-07 21:33:25 +00002449 }
Dan Gohman72677342009-08-02 16:10:52 +00002450
Chris Lattner9e323832009-12-23 01:45:04 +00002451 unsigned LoReg, HiReg, ClrReg;
Tim Northover15983b82013-05-30 13:19:42 +00002452 unsigned SExtOpcode;
Craig Topper07ad0c42013-08-15 05:57:07 +00002453 switch (NVT.SimpleTy) {
Dan Gohman72677342009-08-02 16:10:52 +00002454 default: llvm_unreachable("Unsupported VT!");
Owen Anderson825b72b2009-08-11 20:47:22 +00002455 case MVT::i8:
Chris Lattner9e323832009-12-23 01:45:04 +00002456 LoReg = X86::AL; ClrReg = HiReg = X86::AH;
Dan Gohman72677342009-08-02 16:10:52 +00002457 SExtOpcode = X86::CBW;
2458 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002459 case MVT::i16:
Dan Gohman72677342009-08-02 16:10:52 +00002460 LoReg = X86::AX; HiReg = X86::DX;
Tim Northover15983b82013-05-30 13:19:42 +00002461 ClrReg = X86::DX;
Dan Gohman72677342009-08-02 16:10:52 +00002462 SExtOpcode = X86::CWD;
2463 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002464 case MVT::i32:
Chris Lattner9e323832009-12-23 01:45:04 +00002465 LoReg = X86::EAX; ClrReg = HiReg = X86::EDX;
Dan Gohman72677342009-08-02 16:10:52 +00002466 SExtOpcode = X86::CDQ;
2467 break;
Owen Anderson825b72b2009-08-11 20:47:22 +00002468 case MVT::i64:
Chris Lattner9e323832009-12-23 01:45:04 +00002469 LoReg = X86::RAX; ClrReg = HiReg = X86::RDX;
Dan Gohman72677342009-08-02 16:10:52 +00002470 SExtOpcode = X86::CQO;
Evan Cheng37b73872009-07-30 08:33:02 +00002471 break;
2472 }
2473
Dan Gohman72677342009-08-02 16:10:52 +00002474 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002475 bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4);
Dan Gohman72677342009-08-02 16:10:52 +00002476 bool signBitIsZero = CurDAG->SignBitIsZero(N0);
Dan Gohman525178c2007-10-08 18:33:35 +00002477
Dan Gohman72677342009-08-02 16:10:52 +00002478 SDValue InFlag;
Owen Anderson825b72b2009-08-11 20:47:22 +00002479 if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) {
Dan Gohman72677342009-08-02 16:10:52 +00002480 // Special case for div8, just use a move with zero extension to AX to
2481 // clear the upper 8 bits (AH).
2482 SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain;
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002483 if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) {
Dan Gohman72677342009-08-02 16:10:52 +00002484 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) };
2485 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002486 SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32,
Michael Liao2a8bea72013-04-19 22:22:57 +00002487 MVT::Other, Ops), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002488 Chain = Move.getValue(1);
2489 ReplaceUses(N0.getValue(1), Chain);
Evan Cheng0114e942006-01-06 20:36:21 +00002490 } else {
Dan Gohman72677342009-08-02 16:10:52 +00002491 Move =
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002492 SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0);
Dan Gohman72677342009-08-02 16:10:52 +00002493 Chain = CurDAG->getEntryNode();
2494 }
Stuart Hastings0e29ed02011-05-20 19:04:40 +00002495 Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue());
Dan Gohman72677342009-08-02 16:10:52 +00002496 InFlag = Chain.getValue(1);
2497 } else {
2498 InFlag =
2499 CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl,
2500 LoReg, N0, SDValue()).getValue(1);
2501 if (isSigned && !signBitIsZero) {
2502 // Sign extend the low part into the high part.
Evan Cheng7e9b26f2006-02-09 07:17:49 +00002503 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002504 SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0);
Dan Gohman72677342009-08-02 16:10:52 +00002505 } else {
2506 // Zero out the high part, effectively zero extending the input.
Tim Northover15983b82013-05-30 13:19:42 +00002507 SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0);
Craig Topper07ad0c42013-08-15 05:57:07 +00002508 switch (NVT.SimpleTy) {
Tim Northover15983b82013-05-30 13:19:42 +00002509 case MVT::i16:
2510 ClrNode =
2511 SDValue(CurDAG->getMachineNode(
2512 TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode,
2513 CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)),
2514 0);
2515 break;
2516 case MVT::i32:
2517 break;
2518 case MVT::i64:
2519 ClrNode =
2520 SDValue(CurDAG->getMachineNode(
2521 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2522 CurDAG->getTargetConstant(0, MVT::i64), ClrNode,
2523 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2524 0);
2525 break;
2526 default:
2527 llvm_unreachable("Unexpected division source");
2528 }
2529
Chris Lattner9e323832009-12-23 01:45:04 +00002530 InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg,
Dan Gohman72677342009-08-02 16:10:52 +00002531 ClrNode, InFlag).getValue(1);
Dan Gohman525178c2007-10-08 18:33:35 +00002532 }
Evan Cheng948f3432006-01-06 23:19:29 +00002533 }
Dan Gohman525178c2007-10-08 18:33:35 +00002534
Dan Gohman72677342009-08-02 16:10:52 +00002535 if (foldedLoad) {
2536 SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0),
2537 InFlag };
2538 SDNode *CNode =
Michael Liao2a8bea72013-04-19 22:22:57 +00002539 CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops);
Dan Gohman72677342009-08-02 16:10:52 +00002540 InFlag = SDValue(CNode, 1);
2541 // Update the chain.
2542 ReplaceUses(N1.getValue(1), SDValue(CNode, 0));
2543 } else {
2544 InFlag =
Chris Lattnerf1b4eaf2010-12-21 02:38:05 +00002545 SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0);
Dan Gohman72677342009-08-02 16:10:52 +00002546 }
Evan Cheng948f3432006-01-06 23:19:29 +00002547
Stephen Hines37ed9c12014-12-01 14:51:49 -08002548 // Prevent use of AH in a REX instruction by explicitly copying it to
2549 // an ABCD_L register.
Jim Grosbach842b1bd2013-07-09 02:07:28 +00002550 //
2551 // The current assumption of the register allocator is that isel
Stephen Hines37ed9c12014-12-01 14:51:49 -08002552 // won't generate explicit references to the GR8_ABCD_H registers. If
Jim Grosbach842b1bd2013-07-09 02:07:28 +00002553 // the allocator and/or the backend get enhanced to be more robust in
2554 // that regard, this can be, and should be, removed.
Stephen Hines37ed9c12014-12-01 14:51:49 -08002555 if (HiReg == X86::AH && !SDValue(Node, 1).use_empty()) {
2556 SDValue AHCopy = CurDAG->getRegister(X86::AH, MVT::i8);
2557 unsigned AHExtOpcode =
2558 isSigned ? X86::MOVSX32_NOREXrr8 : X86::MOVZX32_NOREXrr8;
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002559
Stephen Hines37ed9c12014-12-01 14:51:49 -08002560 SDNode *RNode = CurDAG->getMachineNode(AHExtOpcode, dl, MVT::i32,
2561 MVT::Glue, AHCopy, InFlag);
2562 SDValue Result(RNode, 0);
2563 InFlag = SDValue(RNode, 1);
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002564
Stephen Hines37ed9c12014-12-01 14:51:49 -08002565 if (Opcode == X86ISD::UDIVREM8_ZEXT_HREG ||
2566 Opcode == X86ISD::SDIVREM8_SEXT_HREG) {
2567 if (Node->getValueType(1) == MVT::i64) {
2568 // It's not possible to directly movsx AH to a 64bit register, because
2569 // the latter needs the REX prefix, but the former can't have it.
2570 assert(Opcode != X86ISD::SDIVREM8_SEXT_HREG &&
2571 "Unexpected i64 sext of h-register");
2572 Result =
2573 SDValue(CurDAG->getMachineNode(
2574 TargetOpcode::SUBREG_TO_REG, dl, MVT::i64,
2575 CurDAG->getTargetConstant(0, MVT::i64), Result,
2576 CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)),
2577 0);
2578 }
2579 } else {
2580 Result =
2581 CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result);
2582 }
2583 ReplaceUses(SDValue(Node, 1), Result);
2584 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002585 }
Dan Gohman72677342009-08-02 16:10:52 +00002586 // Copy the division (low) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002587 if (!SDValue(Node, 0).use_empty()) {
Dan Gohman72677342009-08-02 16:10:52 +00002588 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2589 LoReg, NVT, InFlag);
2590 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002591 ReplaceUses(SDValue(Node, 0), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002592 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002593 }
2594 // Copy the remainder (high) result, if it is needed.
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002595 if (!SDValue(Node, 1).use_empty()) {
Jakob Stoklund Olesen4f5d84e2010-06-26 00:39:23 +00002596 SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl,
2597 HiReg, NVT, InFlag);
2598 InFlag = Result.getValue(2);
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002599 ReplaceUses(SDValue(Node, 1), Result);
Chris Lattner7c306da2010-03-02 06:34:30 +00002600 DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n');
Dan Gohman72677342009-08-02 16:10:52 +00002601 }
Stephen Hinesdce4a402014-05-29 02:49:00 -07002602 return nullptr;
Dan Gohman72677342009-08-02 16:10:52 +00002603 }
2604
Manman Ren39ad5682012-08-08 00:51:41 +00002605 case X86ISD::CMP:
2606 case X86ISD::SUB: {
2607 // Sometimes a SUB is used to perform comparison.
2608 if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0))
2609 // This node is not a CMP.
2610 break;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002611 SDValue N0 = Node->getOperand(0);
2612 SDValue N1 = Node->getOperand(1);
2613
Stephen Hines37ed9c12014-12-01 14:51:49 -08002614 if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() &&
2615 HasNoSignedComparisonUses(Node)) {
2616 // Look for (X86cmp (truncate $op, i1), 0) and try to convert to a
2617 // smaller encoding
2618 if (Opcode == X86ISD::CMP && N0.getValueType() == MVT::i1 &&
2619 X86::isZeroNode(N1)) {
2620 SDValue Reg = N0.getOperand(0);
2621 SDValue Imm = CurDAG->getTargetConstant(1, MVT::i8);
2622
2623 // Emit testb
2624 if (Reg.getScalarValueSizeInBits() > 8)
2625 Reg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Reg);
2626 // Emit a testb.
2627 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2628 Reg, Imm);
2629 ReplaceUses(SDValue(Node, 0), SDValue(NewNode, 0));
2630 return nullptr;
2631 }
2632
2633 N0 = N0.getOperand(0);
2634 }
Dan Gohman6a402dc2009-08-19 18:16:17 +00002635 // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to
2636 // use a smaller encoding.
Stephen Hines37ed9c12014-12-01 14:51:49 -08002637 // Look past the truncate if CMP is the only use of it.
Dan Gohman65fd6562011-11-03 21:49:52 +00002638 if ((N0.getNode()->getOpcode() == ISD::AND ||
2639 (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) &&
2640 N0.getNode()->hasOneUse() &&
Dan Gohman6a402dc2009-08-19 18:16:17 +00002641 N0.getValueType() != MVT::i8 &&
2642 X86::isZeroNode(N1)) {
2643 ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1));
2644 if (!C) break;
2645
2646 // For example, convert "testl %eax, $8" to "testb %al, $8"
Dan Gohman11596ed2009-10-09 20:35:19 +00002647 if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 &&
2648 (!(C->getZExtValue() & 0x80) ||
2649 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002650 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8);
2651 SDValue Reg = N0.getNode()->getOperand(0);
2652
2653 // On x86-32, only the ABCD registers have 8-bit subregisters.
2654 if (!Subtarget->is64Bit()) {
Craig Topperc528e462012-02-22 07:28:11 +00002655 const TargetRegisterClass *TRC;
Craig Topper5a0910b2013-08-15 02:33:50 +00002656 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002657 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2658 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2659 default: llvm_unreachable("Unsupported TEST operand type!");
2660 }
2661 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002662 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2663 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002664 }
2665
2666 // Extract the l-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002667 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002668 MVT::i8, Reg);
2669
2670 // Emit a testb.
Manman Renbc96bcd2012-09-28 18:53:24 +00002671 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32,
2672 Subreg, Imm);
2673 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2674 // one, do not call ReplaceAllUsesWith.
2675 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2676 SDValue(NewNode, 0));
Stephen Hinesdce4a402014-05-29 02:49:00 -07002677 return nullptr;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002678 }
2679
2680 // For example, "testl %eax, $2048" to "testb %ah, $8".
Dan Gohman11596ed2009-10-09 20:35:19 +00002681 if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 &&
2682 (!(C->getZExtValue() & 0x8000) ||
2683 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002684 // Shift the immediate right by 8 bits.
2685 SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8,
2686 MVT::i8);
2687 SDValue Reg = N0.getNode()->getOperand(0);
2688
2689 // Put the value in an ABCD register.
Craig Topperc528e462012-02-22 07:28:11 +00002690 const TargetRegisterClass *TRC;
Craig Topper5a0910b2013-08-15 02:33:50 +00002691 switch (N0.getSimpleValueType().SimpleTy) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002692 case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break;
2693 case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break;
2694 case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break;
2695 default: llvm_unreachable("Unsupported TEST operand type!");
2696 }
2697 SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32);
Dan Gohman602b0c82009-09-25 18:54:59 +00002698 Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl,
2699 Reg.getValueType(), Reg, RC), 0);
Dan Gohman6a402dc2009-08-19 18:16:17 +00002700
2701 // Extract the h-register.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002702 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002703 MVT::i8, Reg);
2704
Jakob Stoklund Olesened744822011-10-08 18:28:28 +00002705 // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only
2706 // target GR8_NOREX registers, so make sure the register class is
2707 // forced.
Manman Renbc96bcd2012-09-28 18:53:24 +00002708 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl,
2709 MVT::i32, Subreg, ShiftedImm);
2710 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2711 // one, do not call ReplaceAllUsesWith.
2712 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2713 SDValue(NewNode, 0));
Stephen Hinesdce4a402014-05-29 02:49:00 -07002714 return nullptr;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002715 }
2716
2717 // For example, "testl %eax, $32776" to "testw %ax, $32776".
2718 if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002719 N0.getValueType() != MVT::i16 &&
2720 (!(C->getZExtValue() & 0x8000) ||
2721 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002722 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16);
2723 SDValue Reg = N0.getNode()->getOperand(0);
2724
2725 // Extract the 16-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002726 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002727 MVT::i16, Reg);
2728
2729 // Emit a testw.
Manman Renbc96bcd2012-09-28 18:53:24 +00002730 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32,
2731 Subreg, Imm);
2732 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2733 // one, do not call ReplaceAllUsesWith.
2734 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2735 SDValue(NewNode, 0));
Stephen Hinesdce4a402014-05-29 02:49:00 -07002736 return nullptr;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002737 }
2738
2739 // For example, "testq %rax, $268468232" to "testl %eax, $268468232".
2740 if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 &&
Dan Gohman11596ed2009-10-09 20:35:19 +00002741 N0.getValueType() == MVT::i64 &&
2742 (!(C->getZExtValue() & 0x80000000) ||
2743 HasNoSignedComparisonUses(Node))) {
Dan Gohman6a402dc2009-08-19 18:16:17 +00002744 SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32);
2745 SDValue Reg = N0.getNode()->getOperand(0);
2746
2747 // Extract the 32-bit subregister.
Jakob Stoklund Olesen3458e9e2010-05-24 14:48:17 +00002748 SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl,
Dan Gohman6a402dc2009-08-19 18:16:17 +00002749 MVT::i32, Reg);
2750
2751 // Emit a testl.
Manman Renbc96bcd2012-09-28 18:53:24 +00002752 SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32,
2753 Subreg, Imm);
2754 // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has
2755 // one, do not call ReplaceAllUsesWith.
2756 ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)),
2757 SDValue(NewNode, 0));
Stephen Hinesdce4a402014-05-29 02:49:00 -07002758 return nullptr;
Dan Gohman6a402dc2009-08-19 18:16:17 +00002759 }
2760 }
2761 break;
2762 }
Pete Cooper2d496892011-11-15 21:57:53 +00002763 case ISD::STORE: {
Joel Jones76d03102012-03-29 05:45:48 +00002764 // Change a chain of {load; incr or dec; store} of the same value into
2765 // a simple increment or decrement through memory of that value, if the
2766 // uses of the modified value and its address are suitable.
Pete Coopercd75e442011-11-16 19:03:23 +00002767 // The DEC64m tablegen pattern is currently not able to match the case where
Chad Rosiera20e1e72012-08-01 18:39:17 +00002768 // the EFLAGS on the original DEC are used. (This also applies to
Joel Jones76d03102012-03-29 05:45:48 +00002769 // {INC,DEC}X{64,32,16,8}.)
2770 // We'll need to improve tablegen to allow flags to be transferred from a
Pete Coopercd75e442011-11-16 19:03:23 +00002771 // node in the pattern to the result node. probably with a new keyword
2772 // for example, we have this
2773 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2774 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2775 // (implicit EFLAGS)]>;
2776 // but maybe need something like this
2777 // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst",
2778 // [(store (add (loadi64 addr:$dst), -1), addr:$dst),
2779 // (transferrable EFLAGS)]>;
Joel Jones76d03102012-03-29 05:45:48 +00002780
Pete Cooper2d496892011-11-15 21:57:53 +00002781 StoreSDNode *StoreNode = cast<StoreSDNode>(Node);
Pete Cooper2d496892011-11-15 21:57:53 +00002782 SDValue StoredVal = StoreNode->getOperand(1);
Joel Jones76d03102012-03-29 05:45:48 +00002783 unsigned Opc = StoredVal->getOpcode();
Pete Cooper2d496892011-11-15 21:57:53 +00002784
Stephen Hinesdce4a402014-05-29 02:49:00 -07002785 LoadSDNode *LoadNode = nullptr;
Evan Chengf0bcecc2012-04-12 19:14:21 +00002786 SDValue InputChain;
2787 if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG,
2788 LoadNode, InputChain))
2789 break;
Pete Cooper2d496892011-11-15 21:57:53 +00002790
2791 SDValue Base, Scale, Index, Disp, Segment;
2792 if (!SelectAddr(LoadNode, LoadNode->getBasePtr(),
2793 Base, Scale, Index, Disp, Segment))
2794 break;
2795
2796 MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2);
2797 MemOp[0] = StoreNode->getMemOperand();
2798 MemOp[1] = LoadNode->getMemOperand();
2799 const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain };
Chad Rosiera20e1e72012-08-01 18:39:17 +00002800 EVT LdVT = LoadNode->getMemoryVT();
Joel Jones76d03102012-03-29 05:45:48 +00002801 unsigned newOpc = getFusedLdStOpcode(LdVT, Opc);
2802 MachineSDNode *Result = CurDAG->getMachineNode(newOpc,
Andrew Trickac6d9be2013-05-25 02:42:55 +00002803 SDLoc(Node),
Michael Liao2a8bea72013-04-19 22:22:57 +00002804 MVT::i32, MVT::Other, Ops);
Pete Cooper2d496892011-11-15 21:57:53 +00002805 Result->setMemRefs(MemOp, MemOp + 2);
2806
2807 ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1));
2808 ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0));
2809
2810 return Result;
2811 }
Chris Lattnerc961eea2005-11-16 01:54:32 +00002812 }
2813
Dan Gohmaneeb3a002010-01-05 01:24:18 +00002814 SDNode *ResNode = SelectCode(Node);
Evan Cheng64a752f2006-08-11 09:08:15 +00002815
Chris Lattner7c306da2010-03-02 06:34:30 +00002816 DEBUG(dbgs() << "=> ";
Stephen Hinesdce4a402014-05-29 02:49:00 -07002817 if (ResNode == nullptr || ResNode == Node)
Chris Lattner7c306da2010-03-02 06:34:30 +00002818 Node->dump(CurDAG);
2819 else
2820 ResNode->dump(CurDAG);
2821 dbgs() << '\n');
Evan Cheng64a752f2006-08-11 09:08:15 +00002822
2823 return ResNode;
Chris Lattnerc961eea2005-11-16 01:54:32 +00002824}
2825
Chris Lattnerc0bad572006-06-08 18:03:49 +00002826bool X86DAGToDAGISel::
Dan Gohman475871a2008-07-27 21:46:04 +00002827SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode,
Dan Gohmanf350b272008-08-23 02:25:05 +00002828 std::vector<SDValue> &OutOps) {
Rafael Espindola094fad32009-04-08 21:14:34 +00002829 SDValue Op0, Op1, Op2, Op3, Op4;
Chris Lattnerc0bad572006-06-08 18:03:49 +00002830 switch (ConstraintCode) {
2831 case 'o': // offsetable ??
2832 case 'v': // not offsetable ??
2833 default: return true;
2834 case 'm': // memory
Stephen Hinesdce4a402014-05-29 02:49:00 -07002835 if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4))
Chris Lattnerc0bad572006-06-08 18:03:49 +00002836 return true;
2837 break;
2838 }
Chad Rosiera20e1e72012-08-01 18:39:17 +00002839
Evan Cheng04699902006-08-26 01:05:16 +00002840 OutOps.push_back(Op0);
2841 OutOps.push_back(Op1);
2842 OutOps.push_back(Op2);
2843 OutOps.push_back(Op3);
Rafael Espindola094fad32009-04-08 21:14:34 +00002844 OutOps.push_back(Op4);
Chris Lattnerc0bad572006-06-08 18:03:49 +00002845 return false;
2846}
2847
Chad Rosiera20e1e72012-08-01 18:39:17 +00002848/// createX86ISelDag - This pass converts a legalized DAG into a
Chris Lattnerc961eea2005-11-16 01:54:32 +00002849/// X86-specific DAG, ready for instruction scheduling.
2850///
Bill Wendling98a366d2009-04-29 23:29:43 +00002851FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM,
Craig Topperc89c7442012-03-27 07:21:54 +00002852 CodeGenOpt::Level OptLevel) {
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00002853 return new X86DAGToDAGISel(TM, OptLevel);
Chris Lattnerc961eea2005-11-16 01:54:32 +00002854}