Chris Lattner | 5930d3d | 2005-11-16 22:59:19 +0000 | [diff] [blame] | 1 | //===- X86ISelDAGToDAG.cpp - A DAG pattern matching inst selector for X86 -===// |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | f3ebc3f | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 7 | // |
| 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 Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 16 | #include "X86InstrBuilder.h" |
Evan Cheng | f55b738 | 2008-01-05 00:41:47 +0000 | [diff] [blame] | 17 | #include "X86MachineFunctionInfo.h" |
Chris Lattner | 7c55126 | 2006-01-11 01:15:34 +0000 | [diff] [blame] | 18 | #include "X86RegisterInfo.h" |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 19 | #include "X86Subtarget.h" |
Evan Cheng | 2dd2c65 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 20 | #include "X86TargetMachine.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 21 | #include "llvm/ADT/Statistic.h" |
Evan Cheng | 73a1ad9 | 2006-01-10 20:26:56 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineFrameInfo.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 23 | #include "llvm/CodeGen/MachineFunction.h" |
Chris Lattner | 7c55126 | 2006-01-11 01:15:34 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineInstrBuilder.h" |
Chris Lattner | a10fff5 | 2007-12-31 04:13:23 +0000 | [diff] [blame] | 25 | #include "llvm/CodeGen/MachineRegisterInfo.h" |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 26 | #include "llvm/CodeGen/SelectionDAGISel.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 27 | #include "llvm/IR/Instructions.h" |
| 28 | #include "llvm/IR/Intrinsics.h" |
| 29 | #include "llvm/IR/Type.h" |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 30 | #include "llvm/Support/Debug.h" |
Torok Edwin | fb8d6d5 | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 31 | #include "llvm/Support/ErrorHandling.h" |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 32 | #include "llvm/Support/MathExtras.h" |
Torok Edwin | fb8d6d5 | 2009-07-08 20:53:28 +0000 | [diff] [blame] | 33 | #include "llvm/Support/raw_ostream.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 34 | #include "llvm/Target/TargetMachine.h" |
| 35 | #include "llvm/Target/TargetOptions.h" |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 36 | using namespace llvm; |
| 37 | |
Chandler Carruth | 84e68b2 | 2014-04-22 02:41:26 +0000 | [diff] [blame] | 38 | #define DEBUG_TYPE "x86-isel" |
| 39 | |
Chris Lattner | 1ef9cd4 | 2006-12-19 22:59:26 +0000 | [diff] [blame] | 40 | STATISTIC(NumLoadMoved, "Number of loads moved below TokenFactor"); |
| 41 | |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 42 | //===----------------------------------------------------------------------===// |
| 43 | // Pattern Matcher Implementation |
| 44 | //===----------------------------------------------------------------------===// |
| 45 | |
| 46 | namespace { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 47 | /// X86ISelAddressMode - This corresponds to X86AddressMode, but uses |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 48 | /// SDValue's instead of register numbers for the leaves of the matched |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 49 | /// tree. |
| 50 | struct X86ISelAddressMode { |
| 51 | enum { |
| 52 | RegBase, |
Chris Lattner | aa237256 | 2006-05-24 17:04:05 +0000 | [diff] [blame] | 53 | FrameIndexBase |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 54 | } BaseType; |
| 55 | |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 56 | // This is really a union, discriminated by BaseType! |
| 57 | SDValue Base_Reg; |
| 58 | int Base_FrameIndex; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 59 | |
| 60 | unsigned Scale; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 61 | SDValue IndexReg; |
Dan Gohman | 059c4fa | 2008-11-11 15:52:29 +0000 | [diff] [blame] | 62 | int32_t Disp; |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 63 | SDValue Segment; |
Dan Gohman | bcaf681 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 64 | const GlobalValue *GV; |
| 65 | const Constant *CP; |
| 66 | const BlockAddress *BlockAddr; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 67 | const char *ES; |
| 68 | int JT; |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 69 | unsigned Align; // CP alignment. |
Chris Lattner | bd7e26d | 2009-06-26 05:51:45 +0000 | [diff] [blame] | 70 | unsigned char SymbolFlags; // X86II::MO_* |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 71 | |
| 72 | X86ISelAddressMode() |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 73 | : BaseType(RegBase), Base_FrameIndex(0), Scale(1), IndexReg(), Disp(0), |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 74 | Segment(), GV(nullptr), CP(nullptr), BlockAddr(nullptr), ES(nullptr), |
| 75 | JT(-1), Align(0), SymbolFlags(X86II::MO_NO_FLAG) { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 76 | } |
Dan Gohman | 4e3e3de | 2009-02-07 00:43:41 +0000 | [diff] [blame] | 77 | |
| 78 | bool hasSymbolicDisplacement() const { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 79 | return GV != nullptr || CP != nullptr || ES != nullptr || |
| 80 | JT != -1 || BlockAddr != nullptr; |
Dan Gohman | 4e3e3de | 2009-02-07 00:43:41 +0000 | [diff] [blame] | 81 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 82 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 83 | bool hasBaseOrIndexReg() const { |
Tim Northover | 97347a8 | 2013-09-19 11:33:53 +0000 | [diff] [blame] | 84 | return BaseType == FrameIndexBase || |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 85 | IndexReg.getNode() != nullptr || Base_Reg.getNode() != nullptr; |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 86 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 87 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 88 | /// isRIPRelative - Return true if this addressing mode is already RIP |
| 89 | /// relative. |
| 90 | bool isRIPRelative() const { |
| 91 | if (BaseType != RegBase) return false; |
| 92 | if (RegisterSDNode *RegNode = |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 93 | dyn_cast_or_null<RegisterSDNode>(Base_Reg.getNode())) |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 94 | return RegNode->getReg() == X86::RIP; |
| 95 | return false; |
| 96 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 97 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 98 | void setBaseReg(SDValue Reg) { |
| 99 | BaseType = RegBase; |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 100 | Base_Reg = Reg; |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 101 | } |
Dan Gohman | 4e3e3de | 2009-02-07 00:43:41 +0000 | [diff] [blame] | 102 | |
Manman Ren | 19f49ac | 2012-09-11 22:23:19 +0000 | [diff] [blame] | 103 | #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) |
Dale Johannesen | dafdbf7 | 2008-08-11 23:46:25 +0000 | [diff] [blame] | 104 | void dump() { |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 105 | dbgs() << "X86ISelAddressMode " << this << '\n'; |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 106 | dbgs() << "Base_Reg "; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 107 | if (Base_Reg.getNode()) |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 108 | Base_Reg.getNode()->dump(); |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 109 | else |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 110 | dbgs() << "nul"; |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 111 | dbgs() << " Base.FrameIndex " << Base_FrameIndex << '\n' |
Benjamin Kramer | 940fbb0 | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 112 | << " Scale" << Scale << '\n' |
| 113 | << "IndexReg "; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 114 | if (IndexReg.getNode()) |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 115 | IndexReg.getNode()->dump(); |
| 116 | else |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 117 | dbgs() << "nul"; |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 118 | dbgs() << " Disp " << Disp << '\n' |
Benjamin Kramer | 940fbb0 | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 119 | << "GV "; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 120 | if (GV) |
| 121 | GV->dump(); |
| 122 | else |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 123 | dbgs() << "nul"; |
| 124 | dbgs() << " CP "; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 125 | if (CP) |
| 126 | CP->dump(); |
| 127 | else |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 128 | dbgs() << "nul"; |
| 129 | dbgs() << '\n' |
Benjamin Kramer | 940fbb0 | 2009-08-23 11:52:17 +0000 | [diff] [blame] | 130 | << "ES "; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 131 | if (ES) |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 132 | dbgs() << ES; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 133 | else |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 134 | dbgs() << "nul"; |
| 135 | dbgs() << " JT" << JT << " Align" << Align << '\n'; |
Dale Johannesen | dafdbf7 | 2008-08-11 23:46:25 +0000 | [diff] [blame] | 136 | } |
Manman Ren | 742534c | 2012-09-06 19:06:06 +0000 | [diff] [blame] | 137 | #endif |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 138 | }; |
| 139 | } |
| 140 | |
| 141 | namespace { |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 142 | //===--------------------------------------------------------------------===// |
| 143 | /// ISel - X86 specific code to select X86 machine instructions for |
| 144 | /// SelectionDAG operations. |
| 145 | /// |
Craig Topper | 26eec09 | 2014-03-31 06:22:15 +0000 | [diff] [blame] | 146 | class X86DAGToDAGISel final : public SelectionDAGISel { |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 147 | /// Subtarget - Keep a pointer to the X86Subtarget around so that we can |
| 148 | /// make the right decision when generating code for different targets. |
| 149 | const X86Subtarget *Subtarget; |
Evan Cheng | 5588de9 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 150 | |
Evan Cheng | 7d6fa97 | 2008-09-26 23:41:32 +0000 | [diff] [blame] | 151 | /// OptForSize - If true, selector should try to optimize for code size |
| 152 | /// instead of performance. |
| 153 | bool OptForSize; |
| 154 | |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 155 | public: |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 156 | explicit X86DAGToDAGISel(X86TargetMachine &tm, CodeGenOpt::Level OptLevel) |
Bill Wendling | 084669a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 157 | : SelectionDAGISel(tm, OptLevel), |
Dan Gohman | 4751bb9 | 2009-06-03 20:20:00 +0000 | [diff] [blame] | 158 | Subtarget(&tm.getSubtarget<X86Subtarget>()), |
Devang Patel | 1b76f2c | 2008-10-01 23:18:38 +0000 | [diff] [blame] | 159 | OptForSize(false) {} |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 160 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 161 | const char *getPassName() const override { |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 162 | return "X86 DAG->DAG Instruction Selection"; |
| 163 | } |
| 164 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 165 | void EmitFunctionEntryCode() override; |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 166 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 167 | bool IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const override; |
Evan Cheng | 5e73ff2 | 2010-02-15 19:41:07 +0000 | [diff] [blame] | 168 | |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 169 | void PreprocessISelDAG() override; |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 170 | |
Jakob Stoklund Olesen | 08aede2 | 2010-09-03 00:35:18 +0000 | [diff] [blame] | 171 | inline bool immSext8(SDNode *N) const { |
| 172 | return isInt<8>(cast<ConstantSDNode>(N)->getSExtValue()); |
| 173 | } |
| 174 | |
| 175 | // i64immSExt32 predicate - True if the 64-bit immediate fits in a 32-bit |
| 176 | // sign extended field. |
| 177 | inline bool i64immSExt32(SDNode *N) const { |
| 178 | uint64_t v = cast<ConstantSDNode>(N)->getZExtValue(); |
| 179 | return (int64_t)v == (int32_t)v; |
| 180 | } |
| 181 | |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 182 | // Include the pieces autogenerated from the target description. |
| 183 | #include "X86GenDAGISel.inc" |
| 184 | |
| 185 | private: |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 186 | SDNode *Select(SDNode *N) override; |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 187 | SDNode *SelectGather(SDNode *N, unsigned Opc); |
Dale Johannesen | 867d549 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 188 | SDNode *SelectAtomic64(SDNode *Node, unsigned Opc); |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 189 | SDNode *SelectAtomicLoadArith(SDNode *Node, MVT NVT); |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 190 | |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 191 | bool FoldOffsetIntoAddress(uint64_t Offset, X86ISelAddressMode &AM); |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 192 | bool MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM); |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 193 | bool MatchWrapper(SDValue N, X86ISelAddressMode &AM); |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 194 | bool MatchAddress(SDValue N, X86ISelAddressMode &AM); |
| 195 | bool MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM, |
| 196 | unsigned Depth); |
Rafael Espindola | 9277379 | 2009-03-31 16:16:57 +0000 | [diff] [blame] | 197 | bool MatchAddressBase(SDValue N, X86ISelAddressMode &AM); |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 198 | bool SelectAddr(SDNode *Parent, SDValue N, SDValue &Base, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 199 | SDValue &Scale, SDValue &Index, SDValue &Disp, |
| 200 | SDValue &Segment); |
Tim Northover | 3a1fd4c | 2013-06-01 09:55:14 +0000 | [diff] [blame] | 201 | bool SelectMOV64Imm32(SDValue N, SDValue &Imm); |
Chris Lattner | 0e023ea | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 202 | bool SelectLEAAddr(SDValue N, SDValue &Base, |
Chris Lattner | f469307 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 203 | SDValue &Scale, SDValue &Index, SDValue &Disp, |
| 204 | SDValue &Segment); |
Tim Northover | 6833e3f | 2013-06-10 20:43:49 +0000 | [diff] [blame] | 205 | bool SelectLEA64_32Addr(SDValue N, SDValue &Base, |
| 206 | SDValue &Scale, SDValue &Index, SDValue &Disp, |
| 207 | SDValue &Segment); |
Chris Lattner | 0e023ea | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 208 | bool SelectTLSADDRAddr(SDValue N, SDValue &Base, |
Chris Lattner | f469307 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 209 | SDValue &Scale, SDValue &Index, SDValue &Disp, |
| 210 | SDValue &Segment); |
Chris Lattner | bd6e193 | 2010-03-01 22:51:11 +0000 | [diff] [blame] | 211 | bool SelectScalarSSELoad(SDNode *Root, SDValue N, |
Chris Lattner | afac7dad | 2010-02-16 22:35:06 +0000 | [diff] [blame] | 212 | SDValue &Base, SDValue &Scale, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 213 | SDValue &Index, SDValue &Disp, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 214 | SDValue &Segment, |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 215 | SDValue &NodeWithChain); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 216 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 217 | bool TryFoldLoad(SDNode *P, SDValue N, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 218 | SDValue &Base, SDValue &Scale, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 219 | SDValue &Index, SDValue &Disp, |
| 220 | SDValue &Segment); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 221 | |
Chris Lattner | ba1ed58 | 2006-06-08 18:03:49 +0000 | [diff] [blame] | 222 | /// SelectInlineAsmMemoryOperand - Implement addressing mode selection for |
| 223 | /// inline asm expressions. |
Craig Topper | 2d9361e | 2014-03-09 07:44:38 +0000 | [diff] [blame] | 224 | bool SelectInlineAsmMemoryOperand(const SDValue &Op, |
| 225 | char ConstraintCode, |
| 226 | std::vector<SDValue> &OutOps) override; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 227 | |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 228 | void EmitSpecialCodeForMain(MachineBasicBlock *BB, MachineFrameInfo *MFI); |
| 229 | |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 230 | inline void getAddressOperands(X86ISelAddressMode &AM, SDValue &Base, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 231 | SDValue &Scale, SDValue &Index, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 232 | SDValue &Disp, SDValue &Segment) { |
Evan Cheng | 67ed58e | 2005-12-12 21:49:40 +0000 | [diff] [blame] | 233 | Base = (AM.BaseType == X86ISelAddressMode::FrameIndexBase) ? |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 234 | CurDAG->getTargetFrameIndex(AM.Base_FrameIndex, |
| 235 | getTargetLowering()->getPointerTy()) : |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 236 | AM.Base_Reg; |
Evan Cheng | 1d71248 | 2005-12-17 09:13:43 +0000 | [diff] [blame] | 237 | Scale = getI8Imm(AM.Scale); |
Evan Cheng | 67ed58e | 2005-12-12 21:49:40 +0000 | [diff] [blame] | 238 | Index = AM.IndexReg; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 239 | // These are 32-bit even in 64-bit mode since RIP relative offset |
| 240 | // is 32-bit. |
| 241 | if (AM.GV) |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 242 | Disp = CurDAG->getTargetGlobalAddress(AM.GV, SDLoc(), |
Devang Patel | a3ca21b | 2010-07-06 22:08:15 +0000 | [diff] [blame] | 243 | MVT::i32, AM.Disp, |
Chris Lattner | bd7e26d | 2009-06-26 05:51:45 +0000 | [diff] [blame] | 244 | AM.SymbolFlags); |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 245 | else if (AM.CP) |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 246 | Disp = CurDAG->getTargetConstantPool(AM.CP, MVT::i32, |
Chris Lattner | bd7e26d | 2009-06-26 05:51:45 +0000 | [diff] [blame] | 247 | AM.Align, AM.Disp, AM.SymbolFlags); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 248 | else if (AM.ES) { |
| 249 | assert(!AM.Disp && "Non-zero displacement is ignored with ES."); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 250 | Disp = CurDAG->getTargetExternalSymbol(AM.ES, MVT::i32, AM.SymbolFlags); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 251 | } else if (AM.JT != -1) { |
| 252 | assert(!AM.Disp && "Non-zero displacement is ignored with JT."); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 253 | Disp = CurDAG->getTargetJumpTable(AM.JT, MVT::i32, AM.SymbolFlags); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 254 | } else if (AM.BlockAddr) |
| 255 | Disp = CurDAG->getTargetBlockAddress(AM.BlockAddr, MVT::i32, AM.Disp, |
| 256 | AM.SymbolFlags); |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 257 | else |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 258 | Disp = CurDAG->getTargetConstant(AM.Disp, MVT::i32); |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 259 | |
| 260 | if (AM.Segment.getNode()) |
| 261 | Segment = AM.Segment; |
| 262 | else |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 263 | Segment = CurDAG->getRegister(0, MVT::i32); |
Evan Cheng | 67ed58e | 2005-12-12 21:49:40 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 266 | /// getI8Imm - Return a target constant with the specified value, of type |
| 267 | /// i8. |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 268 | inline SDValue getI8Imm(unsigned Imm) { |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 269 | return CurDAG->getTargetConstant(Imm, MVT::i8); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 270 | } |
| 271 | |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 272 | /// getI32Imm - Return a target constant with the specified value, of type |
| 273 | /// i32. |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 274 | inline SDValue getI32Imm(unsigned Imm) { |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 275 | return CurDAG->getTargetConstant(Imm, MVT::i32); |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 276 | } |
Evan Cheng | d49cc36 | 2006-02-10 22:24:32 +0000 | [diff] [blame] | 277 | |
Dan Gohman | 2430073 | 2008-09-23 18:22:58 +0000 | [diff] [blame] | 278 | /// getGlobalBaseReg - Return an SDNode that returns the value of |
| 279 | /// the global base register. Output instructions required to |
| 280 | /// initialize the global base register, if necessary. |
| 281 | /// |
Evan Cheng | 61413a3 | 2006-08-26 05:34:46 +0000 | [diff] [blame] | 282 | SDNode *getGlobalBaseReg(); |
Evan Cheng | 5588de9 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 283 | |
Dan Gohman | 4751bb9 | 2009-06-03 20:20:00 +0000 | [diff] [blame] | 284 | /// getTargetMachine - Return a reference to the TargetMachine, casted |
| 285 | /// to the target-specific type. |
Jakub Staszak | e167cf5 | 2013-02-19 21:54:59 +0000 | [diff] [blame] | 286 | const X86TargetMachine &getTargetMachine() const { |
Dan Gohman | 4751bb9 | 2009-06-03 20:20:00 +0000 | [diff] [blame] | 287 | return static_cast<const X86TargetMachine &>(TM); |
| 288 | } |
| 289 | |
| 290 | /// getInstrInfo - Return a reference to the TargetInstrInfo, casted |
| 291 | /// to the target-specific type. |
Jakub Staszak | e167cf5 | 2013-02-19 21:54:59 +0000 | [diff] [blame] | 292 | const X86InstrInfo *getInstrInfo() const { |
Dan Gohman | 4751bb9 | 2009-06-03 20:20:00 +0000 | [diff] [blame] | 293 | return getTargetMachine().getInstrInfo(); |
| 294 | } |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 295 | }; |
| 296 | } |
| 297 | |
Evan Cheng | 72bb66a | 2006-08-08 00:31:00 +0000 | [diff] [blame] | 298 | |
Evan Cheng | 5e73ff2 | 2010-02-15 19:41:07 +0000 | [diff] [blame] | 299 | bool |
| 300 | X86DAGToDAGISel::IsProfitableToFold(SDValue N, SDNode *U, SDNode *Root) const { |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 301 | if (OptLevel == CodeGenOpt::None) return false; |
Evan Cheng | b86375c | 2006-10-14 08:33:25 +0000 | [diff] [blame] | 302 | |
Evan Cheng | 5e73ff2 | 2010-02-15 19:41:07 +0000 | [diff] [blame] | 303 | if (!N.hasOneUse()) |
| 304 | return false; |
| 305 | |
| 306 | if (N.getOpcode() != ISD::LOAD) |
| 307 | return true; |
| 308 | |
| 309 | // If N is a load, do additional profitability checks. |
| 310 | if (U == Root) { |
Evan Cheng | 83bdb38 | 2008-11-27 00:49:46 +0000 | [diff] [blame] | 311 | switch (U->getOpcode()) { |
| 312 | default: break; |
Dan Gohman | 85d4fdf | 2010-01-04 20:51:50 +0000 | [diff] [blame] | 313 | case X86ISD::ADD: |
| 314 | case X86ISD::SUB: |
| 315 | case X86ISD::AND: |
| 316 | case X86ISD::XOR: |
| 317 | case X86ISD::OR: |
Evan Cheng | 83bdb38 | 2008-11-27 00:49:46 +0000 | [diff] [blame] | 318 | case ISD::ADD: |
| 319 | case ISD::ADDC: |
| 320 | case ISD::ADDE: |
| 321 | case ISD::AND: |
| 322 | case ISD::OR: |
| 323 | case ISD::XOR: { |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 324 | SDValue Op1 = U->getOperand(1); |
| 325 | |
Evan Cheng | 83bdb38 | 2008-11-27 00:49:46 +0000 | [diff] [blame] | 326 | // If the other operand is a 8-bit immediate we should fold the immediate |
| 327 | // instead. This reduces code size. |
| 328 | // e.g. |
| 329 | // movl 4(%esp), %eax |
| 330 | // addl $4, %eax |
| 331 | // vs. |
| 332 | // movl $4, %eax |
| 333 | // addl 4(%esp), %eax |
| 334 | // The former is 2 bytes shorter. In case where the increment is 1, then |
| 335 | // the saving can be 4 bytes (by using incl %eax). |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 336 | if (ConstantSDNode *Imm = dyn_cast<ConstantSDNode>(Op1)) |
Dan Gohman | 2293eb6 | 2009-03-14 02:07:16 +0000 | [diff] [blame] | 337 | if (Imm->getAPIntValue().isSignedIntN(8)) |
| 338 | return false; |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 339 | |
| 340 | // If the other operand is a TLS address, we should fold it instead. |
| 341 | // This produces |
| 342 | // movl %gs:0, %eax |
| 343 | // leal i@NTPOFF(%eax), %eax |
| 344 | // instead of |
| 345 | // movl $i@NTPOFF, %eax |
| 346 | // addl %gs:0, %eax |
| 347 | // if the block also has an access to a second TLS address this will save |
| 348 | // a load. |
Alp Toker | f907b89 | 2013-12-05 05:44:44 +0000 | [diff] [blame] | 349 | // FIXME: This is probably also true for non-TLS addresses. |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 350 | if (Op1.getOpcode() == X86ISD::Wrapper) { |
| 351 | SDValue Val = Op1.getOperand(0); |
| 352 | if (Val.getOpcode() == ISD::TargetGlobalTLSAddress) |
| 353 | return false; |
| 354 | } |
Evan Cheng | 83bdb38 | 2008-11-27 00:49:46 +0000 | [diff] [blame] | 355 | } |
| 356 | } |
Evan Cheng | 5e73ff2 | 2010-02-15 19:41:07 +0000 | [diff] [blame] | 357 | } |
| 358 | |
| 359 | return true; |
| 360 | } |
| 361 | |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 362 | /// MoveBelowCallOrigChain - Replace the original chain operand of the call with |
| 363 | /// load's chain operand and move load below the call's chain operand. |
| 364 | static void MoveBelowOrigChain(SelectionDAG *CurDAG, SDValue Load, |
Evan Cheng | 214156c | 2012-10-02 23:49:13 +0000 | [diff] [blame] | 365 | SDValue Call, SDValue OrigChain) { |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 366 | SmallVector<SDValue, 8> Ops; |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 367 | SDValue Chain = OrigChain.getOperand(0); |
Evan Cheng | 6c7e851 | 2009-01-26 18:43:34 +0000 | [diff] [blame] | 368 | if (Chain.getNode() == Load.getNode()) |
| 369 | Ops.push_back(Load.getOperand(0)); |
| 370 | else { |
| 371 | assert(Chain.getOpcode() == ISD::TokenFactor && |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 372 | "Unexpected chain operand"); |
Evan Cheng | 6c7e851 | 2009-01-26 18:43:34 +0000 | [diff] [blame] | 373 | for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) |
| 374 | if (Chain.getOperand(i).getNode() == Load.getNode()) |
| 375 | Ops.push_back(Load.getOperand(0)); |
| 376 | else |
| 377 | Ops.push_back(Chain.getOperand(i)); |
| 378 | SDValue NewChain = |
Craig Topper | 48d114b | 2014-04-26 18:35:24 +0000 | [diff] [blame] | 379 | CurDAG->getNode(ISD::TokenFactor, SDLoc(Load), MVT::Other, Ops); |
Evan Cheng | 6c7e851 | 2009-01-26 18:43:34 +0000 | [diff] [blame] | 380 | Ops.clear(); |
| 381 | Ops.push_back(NewChain); |
| 382 | } |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 383 | for (unsigned i = 1, e = OrigChain.getNumOperands(); i != e; ++i) |
| 384 | Ops.push_back(OrigChain.getOperand(i)); |
Craig Topper | 8c0b4d0 | 2014-04-28 05:57:50 +0000 | [diff] [blame] | 385 | CurDAG->UpdateNodeOperands(OrigChain.getNode(), Ops); |
Dan Gohman | 92c11ac | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 386 | CurDAG->UpdateNodeOperands(Load.getNode(), Call.getOperand(0), |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 387 | Load.getOperand(1), Load.getOperand(2)); |
Evan Cheng | 214156c | 2012-10-02 23:49:13 +0000 | [diff] [blame] | 388 | |
Evan Cheng | 214156c | 2012-10-02 23:49:13 +0000 | [diff] [blame] | 389 | unsigned NumOps = Call.getNode()->getNumOperands(); |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 390 | Ops.clear(); |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 391 | Ops.push_back(SDValue(Load.getNode(), 1)); |
Evan Cheng | 214156c | 2012-10-02 23:49:13 +0000 | [diff] [blame] | 392 | for (unsigned i = 1, e = NumOps; i != e; ++i) |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 393 | Ops.push_back(Call.getOperand(i)); |
Craig Topper | 8c0b4d0 | 2014-04-28 05:57:50 +0000 | [diff] [blame] | 394 | CurDAG->UpdateNodeOperands(Call.getNode(), Ops); |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 395 | } |
| 396 | |
| 397 | /// isCalleeLoad - Return true if call address is a load and it can be |
| 398 | /// moved below CALLSEQ_START and the chains leading up to the call. |
| 399 | /// Return the CALLSEQ_START by reference as a second output. |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 400 | /// In the case of a tail call, there isn't a callseq node between the call |
| 401 | /// chain and the load. |
| 402 | static bool isCalleeLoad(SDValue Callee, SDValue &Chain, bool HasCallSeq) { |
Evan Cheng | 847ad44 | 2012-10-05 01:48:22 +0000 | [diff] [blame] | 403 | // The transformation is somewhat dangerous if the call's chain was glued to |
| 404 | // the call. After MoveBelowOrigChain the load is moved between the call and |
| 405 | // the chain, this can create a cycle if the load is not folded. So it is |
| 406 | // *really* important that we are sure the load will be folded. |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 407 | if (Callee.getNode() == Chain.getNode() || !Callee.hasOneUse()) |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 408 | return false; |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 409 | LoadSDNode *LD = dyn_cast<LoadSDNode>(Callee.getNode()); |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 410 | if (!LD || |
| 411 | LD->isVolatile() || |
| 412 | LD->getAddressingMode() != ISD::UNINDEXED || |
| 413 | LD->getExtensionType() != ISD::NON_EXTLOAD) |
| 414 | return false; |
| 415 | |
| 416 | // Now let's find the callseq_start. |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 417 | while (HasCallSeq && Chain.getOpcode() != ISD::CALLSEQ_START) { |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 418 | if (!Chain.hasOneUse()) |
| 419 | return false; |
| 420 | Chain = Chain.getOperand(0); |
| 421 | } |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 422 | |
| 423 | if (!Chain.getNumOperands()) |
| 424 | return false; |
Evan Cheng | 3fb03e2 | 2013-01-06 19:00:15 +0000 | [diff] [blame] | 425 | // Since we are not checking for AA here, conservatively abort if the chain |
| 426 | // writes to memory. It's not safe to move the callee (a load) across a store. |
| 427 | if (isa<MemSDNode>(Chain.getNode()) && |
| 428 | cast<MemSDNode>(Chain.getNode())->writeMem()) |
| 429 | return false; |
Evan Cheng | 6c7e851 | 2009-01-26 18:43:34 +0000 | [diff] [blame] | 430 | if (Chain.getOperand(0).getNode() == Callee.getNode()) |
| 431 | return true; |
| 432 | if (Chain.getOperand(0).getOpcode() == ISD::TokenFactor && |
Dan Gohman | 520a685 | 2009-09-15 01:22:01 +0000 | [diff] [blame] | 433 | Callee.getValue(1).isOperandOf(Chain.getOperand(0).getNode()) && |
| 434 | Callee.getValue(1).hasOneUse()) |
Evan Cheng | 6c7e851 | 2009-01-26 18:43:34 +0000 | [diff] [blame] | 435 | return true; |
| 436 | return false; |
Evan Cheng | f00f1e5 | 2008-08-25 21:27:18 +0000 | [diff] [blame] | 437 | } |
| 438 | |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 439 | void X86DAGToDAGISel::PreprocessISelDAG() { |
Chris Lattner | 82cc533 | 2010-03-04 01:43:43 +0000 | [diff] [blame] | 440 | // OptForSize is used in pattern predicates that isel is matching. |
Bill Wendling | 698e84f | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 441 | OptForSize = MF->getFunction()->getAttributes(). |
| 442 | hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 443 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 444 | for (SelectionDAG::allnodes_iterator I = CurDAG->allnodes_begin(), |
| 445 | E = CurDAG->allnodes_end(); I != E; ) { |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 446 | SDNode *N = I++; // Preincrement iterator to avoid invalidation issues. |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 447 | |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 448 | if (OptLevel != CodeGenOpt::None && |
Michael Liao | 96b4260 | 2013-03-28 23:13:21 +0000 | [diff] [blame] | 449 | // Only does this when target favors doesn't favor register indirect |
| 450 | // call. |
| 451 | ((N->getOpcode() == X86ISD::CALL && !Subtarget->callRegIndirect()) || |
Evan Cheng | 847ad44 | 2012-10-05 01:48:22 +0000 | [diff] [blame] | 452 | (N->getOpcode() == X86ISD::TC_RETURN && |
Nick Lewycky | f41a80e | 2013-01-13 19:03:55 +0000 | [diff] [blame] | 453 | // Only does this if load can be folded into TC_RETURN. |
Evan Cheng | 847ad44 | 2012-10-05 01:48:22 +0000 | [diff] [blame] | 454 | (Subtarget->is64Bit() || |
| 455 | getTargetMachine().getRelocationModel() != Reloc::PIC_)))) { |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 456 | /// Also try moving call address load from outside callseq_start to just |
| 457 | /// before the call to allow it to be folded. |
| 458 | /// |
| 459 | /// [Load chain] |
| 460 | /// ^ |
| 461 | /// | |
| 462 | /// [Load] |
| 463 | /// ^ ^ |
| 464 | /// | | |
| 465 | /// / \-- |
| 466 | /// / | |
| 467 | ///[CALLSEQ_START] | |
| 468 | /// ^ | |
| 469 | /// | | |
| 470 | /// [LOAD/C2Reg] | |
| 471 | /// | | |
| 472 | /// \ / |
| 473 | /// \ / |
| 474 | /// [CALL] |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 475 | bool HasCallSeq = N->getOpcode() == X86ISD::CALL; |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 476 | SDValue Chain = N->getOperand(0); |
| 477 | SDValue Load = N->getOperand(1); |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 478 | if (!isCalleeLoad(Load, Chain, HasCallSeq)) |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 479 | continue; |
Evan Cheng | d703df6 | 2010-03-14 03:48:46 +0000 | [diff] [blame] | 480 | MoveBelowOrigChain(CurDAG, Load, SDValue(N, 0), Chain); |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 481 | ++NumLoadMoved; |
| 482 | continue; |
| 483 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 484 | |
Chris Lattner | 8d63704 | 2010-03-02 23:12:51 +0000 | [diff] [blame] | 485 | // Lower fpround and fpextend nodes that target the FP stack to be store and |
| 486 | // load to the stack. This is a gross hack. We would like to simply mark |
| 487 | // these as being illegal, but when we do that, legalize produces these when |
| 488 | // it expands calls, then expands these in the same legalize pass. We would |
| 489 | // like dag combine to be able to hack on these between the call expansion |
| 490 | // and the node legalization. As such this pass basically does "really |
| 491 | // late" legalization of these inline with the X86 isel pass. |
| 492 | // FIXME: This should only happen when not compiled with -O0. |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 493 | if (N->getOpcode() != ISD::FP_ROUND && N->getOpcode() != ISD::FP_EXTEND) |
| 494 | continue; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 495 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 496 | MVT SrcVT = N->getOperand(0).getSimpleValueType(); |
| 497 | MVT DstVT = N->getSimpleValueType(0); |
Bruno Cardoso Lopes | 616fe60 | 2011-08-01 21:54:05 +0000 | [diff] [blame] | 498 | |
| 499 | // If any of the sources are vectors, no fp stack involved. |
| 500 | if (SrcVT.isVector() || DstVT.isVector()) |
| 501 | continue; |
| 502 | |
| 503 | // If the source and destination are SSE registers, then this is a legal |
| 504 | // conversion that should not be lowered. |
Benjamin Kramer | 02ff1cd | 2013-06-27 11:07:42 +0000 | [diff] [blame] | 505 | const X86TargetLowering *X86Lowering = |
| 506 | static_cast<const X86TargetLowering *>(getTargetLowering()); |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 507 | bool SrcIsSSE = X86Lowering->isScalarFPTypeInSSEReg(SrcVT); |
| 508 | bool DstIsSSE = X86Lowering->isScalarFPTypeInSSEReg(DstVT); |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 509 | if (SrcIsSSE && DstIsSSE) |
| 510 | continue; |
| 511 | |
Chris Lattner | d587e58 | 2008-03-09 07:05:32 +0000 | [diff] [blame] | 512 | if (!SrcIsSSE && !DstIsSSE) { |
| 513 | // If this is an FPStack extension, it is a noop. |
| 514 | if (N->getOpcode() == ISD::FP_EXTEND) |
| 515 | continue; |
| 516 | // If this is a value-preserving FPStack truncation, it is a noop. |
| 517 | if (N->getConstantOperandVal(1)) |
| 518 | continue; |
| 519 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 520 | |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 521 | // Here we could have an FP stack truncation or an FPStack <-> SSE convert. |
| 522 | // FPStack has extload and truncstore. SSE can fold direct loads into other |
| 523 | // operations. Based on this, decide what we want to do. |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 524 | MVT MemVT; |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 525 | if (N->getOpcode() == ISD::FP_ROUND) |
| 526 | MemVT = DstVT; // FP_ROUND must use DstVT, we can't do a 'trunc load'. |
| 527 | else |
| 528 | MemVT = SrcIsSSE ? SrcVT : DstVT; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 529 | |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 530 | SDValue MemTmp = CurDAG->CreateStackTemporary(MemVT); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 531 | SDLoc dl(N); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 532 | |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 533 | // FIXME: optimize the case where the src/dest is a load or store? |
Dale Johannesen | 14f2d9d | 2009-02-03 21:48:12 +0000 | [diff] [blame] | 534 | SDValue Store = CurDAG->getTruncStore(CurDAG->getEntryNode(), dl, |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 535 | N->getOperand(0), |
Chris Lattner | 3d178ed | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 536 | MemTmp, MachinePointerInfo(), MemVT, |
David Greene | cbd39c5 | 2010-02-15 16:57:43 +0000 | [diff] [blame] | 537 | false, false, 0); |
Stuart Hastings | 81c4306 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 538 | SDValue Result = CurDAG->getExtLoad(ISD::EXTLOAD, dl, DstVT, Store, MemTmp, |
Chris Lattner | 3d178ed | 2010-09-21 17:04:51 +0000 | [diff] [blame] | 539 | MachinePointerInfo(), |
| 540 | MemVT, false, false, 0); |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 541 | |
| 542 | // We're about to replace all uses of the FP_ROUND/FP_EXTEND with the |
| 543 | // extload we created. This will cause general havok on the dag because |
| 544 | // anything below the conversion could be folded into other existing nodes. |
| 545 | // To avoid invalidating 'I', back it up to the convert node. |
| 546 | --I; |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 547 | CurDAG->ReplaceAllUsesOfValueWith(SDValue(N, 0), Result); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 548 | |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 549 | // Now that we did that, the node is dead. Increment the iterator to the |
| 550 | // next node to process, then delete N. |
| 551 | ++I; |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 552 | CurDAG->DeleteNode(N); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 553 | } |
Chris Lattner | a91f77e | 2008-01-24 08:07:48 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 556 | |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 557 | /// EmitSpecialCodeForMain - Emit any code that needs to be executed only in |
| 558 | /// the main function. |
| 559 | void X86DAGToDAGISel::EmitSpecialCodeForMain(MachineBasicBlock *BB, |
| 560 | MachineFrameInfo *MFI) { |
| 561 | const TargetInstrInfo *TII = TM.getInstrInfo(); |
Bill Wendling | 81d4071 | 2011-01-06 00:47:10 +0000 | [diff] [blame] | 562 | if (Subtarget->isTargetCygMing()) { |
| 563 | unsigned CallOp = |
Jakob Stoklund Olesen | 97e3115 | 2012-02-16 17:56:02 +0000 | [diff] [blame] | 564 | Subtarget->is64Bit() ? X86::CALL64pcrel32 : X86::CALLpcrel32; |
Chris Lattner | 6f306d7 | 2010-04-02 20:16:16 +0000 | [diff] [blame] | 565 | BuildMI(BB, DebugLoc(), |
Bill Wendling | 81d4071 | 2011-01-06 00:47:10 +0000 | [diff] [blame] | 566 | TII->get(CallOp)).addExternalSymbol("__main"); |
| 567 | } |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 568 | } |
| 569 | |
Dan Gohman | c87b74d | 2010-04-14 20:17:22 +0000 | [diff] [blame] | 570 | void X86DAGToDAGISel::EmitFunctionEntryCode() { |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 571 | // If this is main, emit special code for main. |
Dan Gohman | c87b74d | 2010-04-14 20:17:22 +0000 | [diff] [blame] | 572 | if (const Function *Fn = MF->getFunction()) |
| 573 | if (Fn->hasExternalLinkage() && Fn->getName() == "main") |
| 574 | EmitSpecialCodeForMain(MF->begin(), MF->getFrameInfo()); |
Anton Korobeynikov | 9091074 | 2007-09-25 21:52:30 +0000 | [diff] [blame] | 575 | } |
| 576 | |
Eli Friedman | 344ec79 | 2011-07-13 21:29:53 +0000 | [diff] [blame] | 577 | static bool isDispSafeForFrameIndex(int64_t Val) { |
| 578 | // On 64-bit platforms, we can run into an issue where a frame index |
| 579 | // includes a displacement that, when added to the explicit displacement, |
| 580 | // will overflow the displacement field. Assuming that the frame index |
| 581 | // displacement fits into a 31-bit integer (which is only slightly more |
| 582 | // aggressive than the current fundamental assumption that it fits into |
| 583 | // a 32-bit integer), a 31-bit disp should always be safe. |
| 584 | return isInt<31>(Val); |
| 585 | } |
| 586 | |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 587 | bool X86DAGToDAGISel::FoldOffsetIntoAddress(uint64_t Offset, |
| 588 | X86ISelAddressMode &AM) { |
| 589 | int64_t Val = AM.Disp + Offset; |
| 590 | CodeModel::Model M = TM.getCodeModel(); |
Eli Friedman | 344ec79 | 2011-07-13 21:29:53 +0000 | [diff] [blame] | 591 | if (Subtarget->is64Bit()) { |
| 592 | if (!X86::isOffsetSuitableForCodeModel(Val, M, |
| 593 | AM.hasSymbolicDisplacement())) |
| 594 | return true; |
| 595 | // In addition to the checks required for a register base, check that |
| 596 | // we do not try to use an unsafe Disp with a frame index. |
| 597 | if (AM.BaseType == X86ISelAddressMode::FrameIndexBase && |
| 598 | !isDispSafeForFrameIndex(Val)) |
| 599 | return true; |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 600 | } |
Eli Friedman | 344ec79 | 2011-07-13 21:29:53 +0000 | [diff] [blame] | 601 | AM.Disp = Val; |
| 602 | return false; |
| 603 | |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 604 | } |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 605 | |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 606 | bool X86DAGToDAGISel::MatchLoadInAddress(LoadSDNode *N, X86ISelAddressMode &AM){ |
| 607 | SDValue Address = N->getOperand(1); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 608 | |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 609 | // load gs:0 -> GS segment register. |
| 610 | // load fs:0 -> FS segment register. |
| 611 | // |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 612 | // This optimization is valid because the GNU TLS model defines that |
| 613 | // gs:0 (or fs:0 on X86-64) contains its own address. |
| 614 | // For more information see http://people.redhat.com/drepper/tls.pdf |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 615 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Address)) |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 616 | if (C->getSExtValue() == 0 && AM.Segment.getNode() == nullptr && |
David Chisnall | 5b8c168 | 2012-07-24 20:04:16 +0000 | [diff] [blame] | 617 | Subtarget->isTargetLinux()) |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 618 | switch (N->getPointerInfo().getAddrSpace()) { |
| 619 | case 256: |
| 620 | AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16); |
| 621 | return false; |
| 622 | case 257: |
| 623 | AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16); |
| 624 | return false; |
| 625 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 626 | |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 627 | return true; |
| 628 | } |
| 629 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 630 | /// MatchWrapper - Try to match X86ISD::Wrapper and X86ISD::WrapperRIP nodes |
| 631 | /// into an addressing mode. These wrap things that will resolve down into a |
| 632 | /// symbol reference. If no match is possible, this returns true, otherwise it |
Anton Korobeynikov | 741ea0d | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 633 | /// returns false. |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 634 | bool X86DAGToDAGISel::MatchWrapper(SDValue N, X86ISelAddressMode &AM) { |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 635 | // If the addressing mode already has a symbol as the displacement, we can |
| 636 | // never match another symbol. |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 637 | if (AM.hasSymbolicDisplacement()) |
| 638 | return true; |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 639 | |
| 640 | SDValue N0 = N.getOperand(0); |
Anton Korobeynikov | 741ea0d | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 641 | CodeModel::Model M = TM.getCodeModel(); |
| 642 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 643 | // Handle X86-64 rip-relative addresses. We check this before checking direct |
| 644 | // folding because RIP is preferable to non-RIP accesses. |
Chandler Carruth | 3779ac1 | 2012-04-09 02:13:06 +0000 | [diff] [blame] | 645 | if (Subtarget->is64Bit() && N.getOpcode() == X86ISD::WrapperRIP && |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 646 | // Under X86-64 non-small code model, GV (and friends) are 64-bits, so |
| 647 | // they cannot be folded into immediate fields. |
| 648 | // FIXME: This can be improved for kernel and other models? |
Chandler Carruth | 3779ac1 | 2012-04-09 02:13:06 +0000 | [diff] [blame] | 649 | (M == CodeModel::Small || M == CodeModel::Kernel)) { |
| 650 | // Base and index reg must be 0 in order to use %rip as base. |
| 651 | if (AM.hasBaseOrIndexReg()) |
| 652 | return true; |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 653 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) { |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 654 | X86ISelAddressMode Backup = AM; |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 655 | AM.GV = G->getGlobal(); |
Chris Lattner | bd7e26d | 2009-06-26 05:51:45 +0000 | [diff] [blame] | 656 | AM.SymbolFlags = G->getTargetFlags(); |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 657 | if (FoldOffsetIntoAddress(G->getOffset(), AM)) { |
| 658 | AM = Backup; |
| 659 | return true; |
| 660 | } |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 661 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) { |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 662 | X86ISelAddressMode Backup = AM; |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 663 | AM.CP = CP->getConstVal(); |
| 664 | AM.Align = CP->getAlignment(); |
Chris Lattner | 1d3b65a | 2009-06-26 05:56:49 +0000 | [diff] [blame] | 665 | AM.SymbolFlags = CP->getTargetFlags(); |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 666 | if (FoldOffsetIntoAddress(CP->getOffset(), AM)) { |
| 667 | AM = Backup; |
| 668 | return true; |
| 669 | } |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 670 | } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) { |
| 671 | AM.ES = S->getSymbol(); |
| 672 | AM.SymbolFlags = S->getTargetFlags(); |
Chris Lattner | 50ba5c3 | 2009-11-01 03:25:03 +0000 | [diff] [blame] | 673 | } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) { |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 674 | AM.JT = J->getIndex(); |
| 675 | AM.SymbolFlags = J->getTargetFlags(); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 676 | } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) { |
| 677 | X86ISelAddressMode Backup = AM; |
| 678 | AM.BlockAddr = BA->getBlockAddress(); |
| 679 | AM.SymbolFlags = BA->getTargetFlags(); |
| 680 | if (FoldOffsetIntoAddress(BA->getOffset(), AM)) { |
| 681 | AM = Backup; |
| 682 | return true; |
| 683 | } |
| 684 | } else |
| 685 | llvm_unreachable("Unhandled symbol reference node."); |
Anton Korobeynikov | 741ea0d | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 686 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 687 | if (N.getOpcode() == X86ISD::WrapperRIP) |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 688 | AM.setBaseReg(CurDAG->getRegister(X86::RIP, MVT::i64)); |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 689 | return false; |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | // Handle the case when globals fit in our immediate field: This is true for |
Chandler Carruth | 3779ac1 | 2012-04-09 02:13:06 +0000 | [diff] [blame] | 693 | // X86-32 always and X86-64 when in -mcmodel=small mode. In 64-bit |
| 694 | // mode, this only applies to a non-RIP-relative computation. |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 695 | if (!Subtarget->is64Bit() || |
Chandler Carruth | 3779ac1 | 2012-04-09 02:13:06 +0000 | [diff] [blame] | 696 | M == CodeModel::Small || M == CodeModel::Kernel) { |
| 697 | assert(N.getOpcode() != X86ISD::WrapperRIP && |
| 698 | "RIP-relative addressing already handled"); |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 699 | if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(N0)) { |
| 700 | AM.GV = G->getGlobal(); |
| 701 | AM.Disp += G->getOffset(); |
| 702 | AM.SymbolFlags = G->getTargetFlags(); |
| 703 | } else if (ConstantPoolSDNode *CP = dyn_cast<ConstantPoolSDNode>(N0)) { |
| 704 | AM.CP = CP->getConstVal(); |
| 705 | AM.Align = CP->getAlignment(); |
| 706 | AM.Disp += CP->getOffset(); |
| 707 | AM.SymbolFlags = CP->getTargetFlags(); |
| 708 | } else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(N0)) { |
| 709 | AM.ES = S->getSymbol(); |
| 710 | AM.SymbolFlags = S->getTargetFlags(); |
Chris Lattner | 50ba5c3 | 2009-11-01 03:25:03 +0000 | [diff] [blame] | 711 | } else if (JumpTableSDNode *J = dyn_cast<JumpTableSDNode>(N0)) { |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 712 | AM.JT = J->getIndex(); |
| 713 | AM.SymbolFlags = J->getTargetFlags(); |
Michael Liao | abb87d4 | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 714 | } else if (BlockAddressSDNode *BA = dyn_cast<BlockAddressSDNode>(N0)) { |
| 715 | AM.BlockAddr = BA->getBlockAddress(); |
| 716 | AM.Disp += BA->getOffset(); |
| 717 | AM.SymbolFlags = BA->getTargetFlags(); |
| 718 | } else |
| 719 | llvm_unreachable("Unhandled symbol reference node."); |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 720 | return false; |
| 721 | } |
| 722 | |
| 723 | return true; |
| 724 | } |
| 725 | |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 726 | /// MatchAddress - Add the specified node to the specified addressing mode, |
| 727 | /// returning true if it cannot be done. This just pattern matches for the |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 728 | /// addressing mode. |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 729 | bool X86DAGToDAGISel::MatchAddress(SDValue N, X86ISelAddressMode &AM) { |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 730 | if (MatchAddressRecursively(N, AM, 0)) |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 731 | return true; |
| 732 | |
| 733 | // Post-processing: Convert lea(,%reg,2) to lea(%reg,%reg), which has |
| 734 | // a smaller encoding and avoids a scaled-index. |
| 735 | if (AM.Scale == 2 && |
| 736 | AM.BaseType == X86ISelAddressMode::RegBase && |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 737 | AM.Base_Reg.getNode() == nullptr) { |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 738 | AM.Base_Reg = AM.IndexReg; |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 739 | AM.Scale = 1; |
| 740 | } |
| 741 | |
Dan Gohman | 0504608 | 2009-08-20 18:23:44 +0000 | [diff] [blame] | 742 | // Post-processing: Convert foo to foo(%rip), even in non-PIC mode, |
| 743 | // because it has a smaller encoding. |
| 744 | // TODO: Which other code models can use this? |
| 745 | if (TM.getCodeModel() == CodeModel::Small && |
| 746 | Subtarget->is64Bit() && |
| 747 | AM.Scale == 1 && |
| 748 | AM.BaseType == X86ISelAddressMode::RegBase && |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 749 | AM.Base_Reg.getNode() == nullptr && |
| 750 | AM.IndexReg.getNode() == nullptr && |
Dan Gohman | 0f6bf2d | 2009-08-25 17:47:44 +0000 | [diff] [blame] | 751 | AM.SymbolFlags == X86II::MO_NO_FLAG && |
Dan Gohman | 0504608 | 2009-08-20 18:23:44 +0000 | [diff] [blame] | 752 | AM.hasSymbolicDisplacement()) |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 753 | AM.Base_Reg = CurDAG->getRegister(X86::RIP, MVT::i64); |
Dan Gohman | 0504608 | 2009-08-20 18:23:44 +0000 | [diff] [blame] | 754 | |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 755 | return false; |
| 756 | } |
| 757 | |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 758 | // Insert a node into the DAG at least before the Pos node's position. This |
| 759 | // will reposition the node as needed, and will assign it a node ID that is <= |
| 760 | // the Pos node's ID. Note that this does *not* preserve the uniqueness of node |
| 761 | // IDs! The selection DAG must no longer depend on their uniqueness when this |
| 762 | // is used. |
| 763 | static void InsertDAGNode(SelectionDAG &DAG, SDValue Pos, SDValue N) { |
| 764 | if (N.getNode()->getNodeId() == -1 || |
| 765 | N.getNode()->getNodeId() > Pos.getNode()->getNodeId()) { |
| 766 | DAG.RepositionNode(Pos.getNode(), N.getNode()); |
| 767 | N.getNode()->setNodeId(Pos.getNode()->getNodeId()); |
| 768 | } |
| 769 | } |
| 770 | |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 771 | // Transform "(X >> (8-C1)) & C2" to "(X >> 8) & 0xff)" if safe. This |
| 772 | // allows us to convert the shift and and into an h-register extract and |
| 773 | // a scaled index. Returns false if the simplification is performed. |
| 774 | static bool FoldMaskAndShiftToExtract(SelectionDAG &DAG, SDValue N, |
| 775 | uint64_t Mask, |
| 776 | SDValue Shift, SDValue X, |
| 777 | X86ISelAddressMode &AM) { |
| 778 | if (Shift.getOpcode() != ISD::SRL || |
| 779 | !isa<ConstantSDNode>(Shift.getOperand(1)) || |
| 780 | !Shift.hasOneUse()) |
| 781 | return true; |
| 782 | |
| 783 | int ScaleLog = 8 - Shift.getConstantOperandVal(1); |
| 784 | if (ScaleLog <= 0 || ScaleLog >= 4 || |
| 785 | Mask != (0xffu << ScaleLog)) |
| 786 | return true; |
| 787 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 788 | MVT VT = N.getSimpleValueType(); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 789 | SDLoc DL(N); |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 790 | SDValue Eight = DAG.getConstant(8, MVT::i8); |
| 791 | SDValue NewMask = DAG.getConstant(0xff, VT); |
| 792 | SDValue Srl = DAG.getNode(ISD::SRL, DL, VT, X, Eight); |
| 793 | SDValue And = DAG.getNode(ISD::AND, DL, VT, Srl, NewMask); |
| 794 | SDValue ShlCount = DAG.getConstant(ScaleLog, MVT::i8); |
| 795 | SDValue Shl = DAG.getNode(ISD::SHL, DL, VT, And, ShlCount); |
| 796 | |
Chandler Carruth | eb21da0 | 2012-01-12 01:34:44 +0000 | [diff] [blame] | 797 | // Insert the new nodes into the topological ordering. We must do this in |
| 798 | // a valid topological ordering as nothing is going to go back and re-sort |
| 799 | // these nodes. We continually insert before 'N' in sequence as this is |
| 800 | // essentially a pre-flattened and pre-sorted sequence of nodes. There is no |
| 801 | // hierarchy left to express. |
| 802 | InsertDAGNode(DAG, N, Eight); |
| 803 | InsertDAGNode(DAG, N, Srl); |
| 804 | InsertDAGNode(DAG, N, NewMask); |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 805 | InsertDAGNode(DAG, N, And); |
Chandler Carruth | eb21da0 | 2012-01-12 01:34:44 +0000 | [diff] [blame] | 806 | InsertDAGNode(DAG, N, ShlCount); |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 807 | InsertDAGNode(DAG, N, Shl); |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 808 | DAG.ReplaceAllUsesWith(N, Shl); |
| 809 | AM.IndexReg = And; |
| 810 | AM.Scale = (1 << ScaleLog); |
| 811 | return false; |
| 812 | } |
| 813 | |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 814 | // Transforms "(X << C1) & C2" to "(X & (C2>>C1)) << C1" if safe and if this |
| 815 | // allows us to fold the shift into this addressing mode. Returns false if the |
| 816 | // transform succeeded. |
| 817 | static bool FoldMaskedShiftToScaledMask(SelectionDAG &DAG, SDValue N, |
| 818 | uint64_t Mask, |
| 819 | SDValue Shift, SDValue X, |
| 820 | X86ISelAddressMode &AM) { |
| 821 | if (Shift.getOpcode() != ISD::SHL || |
| 822 | !isa<ConstantSDNode>(Shift.getOperand(1))) |
| 823 | return true; |
| 824 | |
| 825 | // Not likely to be profitable if either the AND or SHIFT node has more |
| 826 | // than one use (unless all uses are for address computation). Besides, |
| 827 | // isel mechanism requires their node ids to be reused. |
| 828 | if (!N.hasOneUse() || !Shift.hasOneUse()) |
| 829 | return true; |
| 830 | |
| 831 | // Verify that the shift amount is something we can fold. |
| 832 | unsigned ShiftAmt = Shift.getConstantOperandVal(1); |
| 833 | if (ShiftAmt != 1 && ShiftAmt != 2 && ShiftAmt != 3) |
| 834 | return true; |
| 835 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 836 | MVT VT = N.getSimpleValueType(); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 837 | SDLoc DL(N); |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 838 | SDValue NewMask = DAG.getConstant(Mask >> ShiftAmt, VT); |
| 839 | SDValue NewAnd = DAG.getNode(ISD::AND, DL, VT, X, NewMask); |
| 840 | SDValue NewShift = DAG.getNode(ISD::SHL, DL, VT, NewAnd, Shift.getOperand(1)); |
| 841 | |
Chandler Carruth | eb21da0 | 2012-01-12 01:34:44 +0000 | [diff] [blame] | 842 | // Insert the new nodes into the topological ordering. We must do this in |
| 843 | // a valid topological ordering as nothing is going to go back and re-sort |
| 844 | // these nodes. We continually insert before 'N' in sequence as this is |
| 845 | // essentially a pre-flattened and pre-sorted sequence of nodes. There is no |
| 846 | // hierarchy left to express. |
| 847 | InsertDAGNode(DAG, N, NewMask); |
| 848 | InsertDAGNode(DAG, N, NewAnd); |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 849 | InsertDAGNode(DAG, N, NewShift); |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 850 | DAG.ReplaceAllUsesWith(N, NewShift); |
| 851 | |
| 852 | AM.Scale = 1 << ShiftAmt; |
| 853 | AM.IndexReg = NewAnd; |
| 854 | return false; |
| 855 | } |
| 856 | |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 857 | // Implement some heroics to detect shifts of masked values where the mask can |
| 858 | // be replaced by extending the shift and undoing that in the addressing mode |
| 859 | // scale. Patterns such as (shl (srl x, c1), c2) are canonicalized into (and |
| 860 | // (srl x, SHIFT), MASK) by DAGCombines that don't know the shl can be done in |
| 861 | // the addressing mode. This results in code such as: |
| 862 | // |
| 863 | // int f(short *y, int *lookup_table) { |
| 864 | // ... |
| 865 | // return *y + lookup_table[*y >> 11]; |
| 866 | // } |
| 867 | // |
| 868 | // Turning into: |
| 869 | // movzwl (%rdi), %eax |
| 870 | // movl %eax, %ecx |
| 871 | // shrl $11, %ecx |
| 872 | // addl (%rsi,%rcx,4), %eax |
| 873 | // |
| 874 | // Instead of: |
| 875 | // movzwl (%rdi), %eax |
| 876 | // movl %eax, %ecx |
| 877 | // shrl $9, %ecx |
| 878 | // andl $124, %rcx |
| 879 | // addl (%rsi,%rcx), %eax |
| 880 | // |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 881 | // Note that this function assumes the mask is provided as a mask *after* the |
| 882 | // value is shifted. The input chain may or may not match that, but computing |
| 883 | // such a mask is trivial. |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 884 | static bool FoldMaskAndShiftToScale(SelectionDAG &DAG, SDValue N, |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 885 | uint64_t Mask, |
| 886 | SDValue Shift, SDValue X, |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 887 | X86ISelAddressMode &AM) { |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 888 | if (Shift.getOpcode() != ISD::SRL || !Shift.hasOneUse() || |
| 889 | !isa<ConstantSDNode>(Shift.getOperand(1))) |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 890 | return true; |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 891 | |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 892 | unsigned ShiftAmt = Shift.getConstantOperandVal(1); |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 893 | unsigned MaskLZ = countLeadingZeros(Mask); |
| 894 | unsigned MaskTZ = countTrailingZeros(Mask); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 895 | |
| 896 | // The amount of shift we're trying to fit into the addressing mode is taken |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 897 | // from the trailing zeros of the mask. |
| 898 | unsigned AMShiftAmt = MaskTZ; |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 899 | |
| 900 | // There is nothing we can do here unless the mask is removing some bits. |
| 901 | // Also, the addressing mode can only represent shifts of 1, 2, or 3 bits. |
| 902 | if (AMShiftAmt <= 0 || AMShiftAmt > 3) return true; |
| 903 | |
| 904 | // We also need to ensure that mask is a continuous run of bits. |
| 905 | if (CountTrailingOnes_64(Mask >> MaskTZ) + MaskTZ + MaskLZ != 64) return true; |
| 906 | |
| 907 | // Scale the leading zero count down based on the actual size of the value. |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 908 | // Also scale it down based on the size of the shift. |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 909 | MaskLZ -= (64 - X.getSimpleValueType().getSizeInBits()) + ShiftAmt; |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 910 | |
| 911 | // The final check is to ensure that any masked out high bits of X are |
| 912 | // already known to be zero. Otherwise, the mask has a semantic impact |
| 913 | // other than masking out a couple of low bits. Unfortunately, because of |
| 914 | // the mask, zero extensions will be removed from operands in some cases. |
| 915 | // This code works extra hard to look through extensions because we can |
| 916 | // replace them with zero extensions cheaply if necessary. |
| 917 | bool ReplacingAnyExtend = false; |
| 918 | if (X.getOpcode() == ISD::ANY_EXTEND) { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 919 | unsigned ExtendBits = X.getSimpleValueType().getSizeInBits() - |
| 920 | X.getOperand(0).getSimpleValueType().getSizeInBits(); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 921 | // Assume that we'll replace the any-extend with a zero-extend, and |
| 922 | // narrow the search to the extended value. |
| 923 | X = X.getOperand(0); |
| 924 | MaskLZ = ExtendBits > MaskLZ ? 0 : MaskLZ - ExtendBits; |
| 925 | ReplacingAnyExtend = true; |
| 926 | } |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 927 | APInt MaskedHighBits = |
| 928 | APInt::getHighBitsSet(X.getSimpleValueType().getSizeInBits(), MaskLZ); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 929 | APInt KnownZero, KnownOne; |
Jay Foad | a0653a3 | 2014-05-14 21:14:37 +0000 | [diff] [blame] | 930 | DAG.computeKnownBits(X, KnownZero, KnownOne); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 931 | if (MaskedHighBits != KnownZero) return true; |
| 932 | |
| 933 | // We've identified a pattern that can be transformed into a single shift |
| 934 | // and an addressing mode. Make it so. |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 935 | MVT VT = N.getSimpleValueType(); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 936 | if (ReplacingAnyExtend) { |
| 937 | assert(X.getValueType() != VT); |
| 938 | // We looked through an ANY_EXTEND node, insert a ZERO_EXTEND. |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 939 | SDValue NewX = DAG.getNode(ISD::ZERO_EXTEND, SDLoc(X), VT, X); |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 940 | InsertDAGNode(DAG, N, NewX); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 941 | X = NewX; |
| 942 | } |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 943 | SDLoc DL(N); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 944 | SDValue NewSRLAmt = DAG.getConstant(ShiftAmt + AMShiftAmt, MVT::i8); |
| 945 | SDValue NewSRL = DAG.getNode(ISD::SRL, DL, VT, X, NewSRLAmt); |
| 946 | SDValue NewSHLAmt = DAG.getConstant(AMShiftAmt, MVT::i8); |
| 947 | SDValue NewSHL = DAG.getNode(ISD::SHL, DL, VT, NewSRL, NewSHLAmt); |
Chandler Carruth | eb21da0 | 2012-01-12 01:34:44 +0000 | [diff] [blame] | 948 | |
| 949 | // Insert the new nodes into the topological ordering. We must do this in |
| 950 | // a valid topological ordering as nothing is going to go back and re-sort |
| 951 | // these nodes. We continually insert before 'N' in sequence as this is |
| 952 | // essentially a pre-flattened and pre-sorted sequence of nodes. There is no |
| 953 | // hierarchy left to express. |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 954 | InsertDAGNode(DAG, N, NewSRLAmt); |
| 955 | InsertDAGNode(DAG, N, NewSRL); |
| 956 | InsertDAGNode(DAG, N, NewSHLAmt); |
| 957 | InsertDAGNode(DAG, N, NewSHL); |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 958 | DAG.ReplaceAllUsesWith(N, NewSHL); |
| 959 | |
| 960 | AM.Scale = 1 << AMShiftAmt; |
| 961 | AM.IndexReg = NewSRL; |
| 962 | return false; |
| 963 | } |
| 964 | |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 965 | bool X86DAGToDAGISel::MatchAddressRecursively(SDValue N, X86ISelAddressMode &AM, |
| 966 | unsigned Depth) { |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 967 | SDLoc dl(N); |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 968 | DEBUG({ |
David Greene | dbdb1b2 | 2010-01-05 01:29:08 +0000 | [diff] [blame] | 969 | dbgs() << "MatchAddress: "; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 970 | AM.dump(); |
| 971 | }); |
Dan Gohman | ccb3611 | 2007-08-13 20:03:06 +0000 | [diff] [blame] | 972 | // Limit recursion. |
| 973 | if (Depth > 5) |
Rafael Espindola | 9277379 | 2009-03-31 16:16:57 +0000 | [diff] [blame] | 974 | return MatchAddressBase(N, AM); |
Anton Korobeynikov | 741ea0d | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 975 | |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 976 | // If this is already a %rip relative address, we can only merge immediates |
| 977 | // into it. Instead of handling this in every case, we handle it here. |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 978 | // RIP relative addressing: %rip + 32-bit displacement! |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 979 | if (AM.isRIPRelative()) { |
| 980 | // FIXME: JumpTable and ExternalSymbol address currently don't like |
| 981 | // displacements. It isn't very important, but this should be fixed for |
| 982 | // consistency. |
| 983 | if (!AM.ES && AM.JT != -1) return true; |
Anton Korobeynikov | 741ea0d | 2009-08-05 23:01:26 +0000 | [diff] [blame] | 984 | |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 985 | if (ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N)) |
| 986 | if (!FoldOffsetIntoAddress(Cst->getSExtValue(), AM)) |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 987 | return false; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 988 | return true; |
| 989 | } |
| 990 | |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 991 | switch (N.getOpcode()) { |
| 992 | default: break; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 993 | case ISD::Constant: { |
Dan Gohman | 059c4fa | 2008-11-11 15:52:29 +0000 | [diff] [blame] | 994 | uint64_t Val = cast<ConstantSDNode>(N)->getSExtValue(); |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 995 | if (!FoldOffsetIntoAddress(Val, AM)) |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 996 | return false; |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 997 | break; |
| 998 | } |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 999 | |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 1000 | case X86ISD::Wrapper: |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 1001 | case X86ISD::WrapperRIP: |
Rafael Espindola | 6688b0a | 2009-04-12 21:55:03 +0000 | [diff] [blame] | 1002 | if (!MatchWrapper(N, AM)) |
| 1003 | return false; |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1004 | break; |
| 1005 | |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1006 | case ISD::LOAD: |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 1007 | if (!MatchLoadInAddress(cast<LoadSDNode>(N), AM)) |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1008 | return false; |
| 1009 | break; |
| 1010 | |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1011 | case ISD::FrameIndex: |
Eli Friedman | 344ec79 | 2011-07-13 21:29:53 +0000 | [diff] [blame] | 1012 | if (AM.BaseType == X86ISelAddressMode::RegBase && |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1013 | AM.Base_Reg.getNode() == nullptr && |
Eli Friedman | 344ec79 | 2011-07-13 21:29:53 +0000 | [diff] [blame] | 1014 | (!Subtarget->is64Bit() || isDispSafeForFrameIndex(AM.Disp))) { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1015 | AM.BaseType = X86ISelAddressMode::FrameIndexBase; |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1016 | AM.Base_FrameIndex = cast<FrameIndexSDNode>(N)->getIndex(); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1017 | return false; |
| 1018 | } |
| 1019 | break; |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1020 | |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1021 | case ISD::SHL: |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1022 | if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1023 | break; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1024 | |
Gabor Greif | 81d6a38 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 1025 | if (ConstantSDNode |
| 1026 | *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) { |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1027 | unsigned Val = CN->getZExtValue(); |
Dan Gohman | 824ab40 | 2009-07-22 23:26:55 +0000 | [diff] [blame] | 1028 | // Note that we handle x<<1 as (,x,2) rather than (x,x) here so |
| 1029 | // that the base operand remains free for further matching. If |
| 1030 | // the base doesn't end up getting used, a post-processing step |
| 1031 | // in MatchAddress turns (,x,2) into (x,x), which is cheaper. |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1032 | if (Val == 1 || Val == 2 || Val == 3) { |
| 1033 | AM.Scale = 1 << Val; |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1034 | SDValue ShVal = N.getNode()->getOperand(0); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1035 | |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1036 | // Okay, we know that we have a scale by now. However, if the scaled |
| 1037 | // value is an add of something and a constant, we can fold the |
| 1038 | // constant into the disp field here. |
Chris Lattner | 46c01a3 | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 1039 | if (CurDAG->isBaseWithConstantOffset(ShVal)) { |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1040 | AM.IndexReg = ShVal.getNode()->getOperand(0); |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1041 | ConstantSDNode *AddVal = |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1042 | cast<ConstantSDNode>(ShVal.getNode()->getOperand(1)); |
Richard Smith | 228e6d4 | 2012-08-24 23:29:28 +0000 | [diff] [blame] | 1043 | uint64_t Disp = (uint64_t)AddVal->getSExtValue() << Val; |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 1044 | if (!FoldOffsetIntoAddress(Disp, AM)) |
| 1045 | return false; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1046 | } |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 1047 | |
| 1048 | AM.IndexReg = ShVal; |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1049 | return false; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1050 | } |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1051 | } |
Jakub Staszak | 43fafaf | 2013-01-04 23:01:26 +0000 | [diff] [blame] | 1052 | break; |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1053 | |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 1054 | case ISD::SRL: { |
| 1055 | // Scale must not be used already. |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1056 | if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break; |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 1057 | |
| 1058 | SDValue And = N.getOperand(0); |
| 1059 | if (And.getOpcode() != ISD::AND) break; |
| 1060 | SDValue X = And.getOperand(0); |
| 1061 | |
| 1062 | // We only handle up to 64-bit values here as those are what matter for |
| 1063 | // addressing mode optimizations. |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1064 | if (X.getSimpleValueType().getSizeInBits() > 64) break; |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 1065 | |
| 1066 | // The mask used for the transform is expected to be post-shift, but we |
| 1067 | // found the shift first so just apply the shift to the mask before passing |
| 1068 | // it down. |
| 1069 | if (!isa<ConstantSDNode>(N.getOperand(1)) || |
| 1070 | !isa<ConstantSDNode>(And.getOperand(1))) |
| 1071 | break; |
| 1072 | uint64_t Mask = And.getConstantOperandVal(1) >> N.getConstantOperandVal(1); |
| 1073 | |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 1074 | // Try to fold the mask and shift into the scale, and return false if we |
| 1075 | // succeed. |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 1076 | if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, N, X, AM)) |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 1077 | return false; |
| 1078 | break; |
Chandler Carruth | 3dbcda8 | 2012-01-11 09:35:02 +0000 | [diff] [blame] | 1079 | } |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 1080 | |
Dan Gohman | bf47495 | 2007-10-22 20:22:24 +0000 | [diff] [blame] | 1081 | case ISD::SMUL_LOHI: |
| 1082 | case ISD::UMUL_LOHI: |
| 1083 | // A mul_lohi where we need the low part can be folded as a plain multiply. |
Gabor Greif | abfdf92 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 1084 | if (N.getResNo() != 0) break; |
Dan Gohman | bf47495 | 2007-10-22 20:22:24 +0000 | [diff] [blame] | 1085 | // FALL THROUGH |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1086 | case ISD::MUL: |
Evan Cheng | a84a318 | 2009-03-30 21:36:47 +0000 | [diff] [blame] | 1087 | case X86ISD::MUL_IMM: |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1088 | // X*[3,5,9] -> X+X*[2,4,8] |
Dan Gohman | f14b77e | 2008-11-05 04:14:16 +0000 | [diff] [blame] | 1089 | if (AM.BaseType == X86ISelAddressMode::RegBase && |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1090 | AM.Base_Reg.getNode() == nullptr && |
| 1091 | AM.IndexReg.getNode() == nullptr) { |
Gabor Greif | 81d6a38 | 2008-08-31 15:37:04 +0000 | [diff] [blame] | 1092 | if (ConstantSDNode |
| 1093 | *CN = dyn_cast<ConstantSDNode>(N.getNode()->getOperand(1))) |
Dan Gohman | effb894 | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1094 | if (CN->getZExtValue() == 3 || CN->getZExtValue() == 5 || |
| 1095 | CN->getZExtValue() == 9) { |
| 1096 | AM.Scale = unsigned(CN->getZExtValue())-1; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1097 | |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1098 | SDValue MulVal = N.getNode()->getOperand(0); |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1099 | SDValue Reg; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1100 | |
| 1101 | // Okay, we know that we have a scale by now. However, if the scaled |
| 1102 | // value is an add of something and a constant, we can fold the |
| 1103 | // constant into the disp field here. |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1104 | if (MulVal.getNode()->getOpcode() == ISD::ADD && MulVal.hasOneUse() && |
| 1105 | isa<ConstantSDNode>(MulVal.getNode()->getOperand(1))) { |
| 1106 | Reg = MulVal.getNode()->getOperand(0); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1107 | ConstantSDNode *AddVal = |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1108 | cast<ConstantSDNode>(MulVal.getNode()->getOperand(1)); |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 1109 | uint64_t Disp = AddVal->getSExtValue() * CN->getZExtValue(); |
| 1110 | if (FoldOffsetIntoAddress(Disp, AM)) |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1111 | Reg = N.getNode()->getOperand(0); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1112 | } else { |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1113 | Reg = N.getNode()->getOperand(0); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1114 | } |
| 1115 | |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1116 | AM.IndexReg = AM.Base_Reg = Reg; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1117 | return false; |
| 1118 | } |
Chris Lattner | fe8c530 | 2007-02-04 20:18:17 +0000 | [diff] [blame] | 1119 | } |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1120 | break; |
| 1121 | |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1122 | case ISD::SUB: { |
| 1123 | // Given A-B, if A can be completely folded into the address and |
| 1124 | // the index field with the index field unused, use -B as the index. |
| 1125 | // This is a win if a has multiple parts that can be folded into |
| 1126 | // the address. Also, this saves a mov if the base register has |
| 1127 | // other uses, since it avoids a two-address sub instruction, however |
| 1128 | // it costs an additional mov if the index register has other uses. |
| 1129 | |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1130 | // Add an artificial use to this node so that we can keep track of |
| 1131 | // it if it gets CSE'd with a different node. |
| 1132 | HandleSDNode Handle(N); |
| 1133 | |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1134 | // Test if the LHS of the sub can be folded. |
| 1135 | X86ISelAddressMode Backup = AM; |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1136 | if (MatchAddressRecursively(N.getNode()->getOperand(0), AM, Depth+1)) { |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1137 | AM = Backup; |
| 1138 | break; |
| 1139 | } |
| 1140 | // Test if the index field is free for use. |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 1141 | if (AM.IndexReg.getNode() || AM.isRIPRelative()) { |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1142 | AM = Backup; |
| 1143 | break; |
| 1144 | } |
Evan Cheng | 68333f5 | 2010-03-17 23:58:35 +0000 | [diff] [blame] | 1145 | |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1146 | int Cost = 0; |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1147 | SDValue RHS = Handle.getValue().getNode()->getOperand(1); |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1148 | // If the RHS involves a register with multiple uses, this |
| 1149 | // transformation incurs an extra mov, due to the neg instruction |
| 1150 | // clobbering its operand. |
| 1151 | if (!RHS.getNode()->hasOneUse() || |
| 1152 | RHS.getNode()->getOpcode() == ISD::CopyFromReg || |
| 1153 | RHS.getNode()->getOpcode() == ISD::TRUNCATE || |
| 1154 | RHS.getNode()->getOpcode() == ISD::ANY_EXTEND || |
| 1155 | (RHS.getNode()->getOpcode() == ISD::ZERO_EXTEND && |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1156 | RHS.getNode()->getOperand(0).getValueType() == MVT::i32)) |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1157 | ++Cost; |
| 1158 | // If the base is a register with multiple uses, this |
| 1159 | // transformation may save a mov. |
| 1160 | if ((AM.BaseType == X86ISelAddressMode::RegBase && |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1161 | AM.Base_Reg.getNode() && |
| 1162 | !AM.Base_Reg.getNode()->hasOneUse()) || |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1163 | AM.BaseType == X86ISelAddressMode::FrameIndexBase) |
| 1164 | --Cost; |
| 1165 | // If the folded LHS was interesting, this transformation saves |
| 1166 | // address arithmetic. |
| 1167 | if ((AM.hasSymbolicDisplacement() && !Backup.hasSymbolicDisplacement()) + |
| 1168 | ((AM.Disp != 0) && (Backup.Disp == 0)) + |
| 1169 | (AM.Segment.getNode() && !Backup.Segment.getNode()) >= 2) |
| 1170 | --Cost; |
| 1171 | // If it doesn't look like it may be an overall win, don't do it. |
| 1172 | if (Cost >= 0) { |
| 1173 | AM = Backup; |
| 1174 | break; |
| 1175 | } |
| 1176 | |
| 1177 | // Ok, the transformation is legal and appears profitable. Go for it. |
| 1178 | SDValue Zero = CurDAG->getConstant(0, N.getValueType()); |
| 1179 | SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS); |
| 1180 | AM.IndexReg = Neg; |
| 1181 | AM.Scale = 1; |
| 1182 | |
| 1183 | // Insert the new nodes into the topological ordering. |
Chandler Carruth | 3eacfb8 | 2012-01-11 11:04:36 +0000 | [diff] [blame] | 1184 | InsertDAGNode(*CurDAG, N, Zero); |
| 1185 | InsertDAGNode(*CurDAG, N, Neg); |
Dan Gohman | faf75c8 | 2009-05-11 18:02:53 +0000 | [diff] [blame] | 1186 | return false; |
| 1187 | } |
| 1188 | |
Evan Cheng | bf38a5e | 2009-01-17 07:09:27 +0000 | [diff] [blame] | 1189 | case ISD::ADD: { |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1190 | // Add an artificial use to this node so that we can keep track of |
| 1191 | // it if it gets CSE'd with a different node. |
| 1192 | HandleSDNode Handle(N); |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1193 | |
Evan Cheng | bf38a5e | 2009-01-17 07:09:27 +0000 | [diff] [blame] | 1194 | X86ISelAddressMode Backup = AM; |
Chris Lattner | 35a2e65 | 2011-01-16 08:48:11 +0000 | [diff] [blame] | 1195 | if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) && |
| 1196 | !MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)) |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1197 | return false; |
| 1198 | AM = Backup; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1199 | |
Evan Cheng | 68333f5 | 2010-03-17 23:58:35 +0000 | [diff] [blame] | 1200 | // Try again after commuting the operands. |
Chris Lattner | 35a2e65 | 2011-01-16 08:48:11 +0000 | [diff] [blame] | 1201 | if (!MatchAddressRecursively(Handle.getValue().getOperand(1), AM, Depth+1)&& |
| 1202 | !MatchAddressRecursively(Handle.getValue().getOperand(0), AM, Depth+1)) |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1203 | return false; |
Evan Cheng | bf38a5e | 2009-01-17 07:09:27 +0000 | [diff] [blame] | 1204 | AM = Backup; |
Dan Gohman | a1d9242 | 2009-03-13 02:25:09 +0000 | [diff] [blame] | 1205 | |
| 1206 | // If we couldn't fold both operands into the address at the same time, |
| 1207 | // see if we can just put each operand into a register and fold at least |
| 1208 | // the add. |
| 1209 | if (AM.BaseType == X86ISelAddressMode::RegBase && |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1210 | !AM.Base_Reg.getNode() && |
Chris Lattner | fea81da | 2009-06-27 04:16:01 +0000 | [diff] [blame] | 1211 | !AM.IndexReg.getNode()) { |
Chris Lattner | 35a2e65 | 2011-01-16 08:48:11 +0000 | [diff] [blame] | 1212 | N = Handle.getValue(); |
| 1213 | AM.Base_Reg = N.getOperand(0); |
| 1214 | AM.IndexReg = N.getOperand(1); |
Dan Gohman | a1d9242 | 2009-03-13 02:25:09 +0000 | [diff] [blame] | 1215 | AM.Scale = 1; |
| 1216 | return false; |
| 1217 | } |
Chris Lattner | 35a2e65 | 2011-01-16 08:48:11 +0000 | [diff] [blame] | 1218 | N = Handle.getValue(); |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1219 | break; |
Evan Cheng | bf38a5e | 2009-01-17 07:09:27 +0000 | [diff] [blame] | 1220 | } |
Evan Cheng | 734e1e2 | 2006-05-30 06:59:36 +0000 | [diff] [blame] | 1221 | |
Chris Lattner | fe8c530 | 2007-02-04 20:18:17 +0000 | [diff] [blame] | 1222 | case ISD::OR: |
Sylvestre Ledru | 91ce36c | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1223 | // Handle "X | C" as "X + C" iff X is known to have C bits clear. |
Chris Lattner | 46c01a3 | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 1224 | if (CurDAG->isBaseWithConstantOffset(N)) { |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1225 | X86ISelAddressMode Backup = AM; |
Chris Lattner | 8477678 | 2010-04-20 23:18:40 +0000 | [diff] [blame] | 1226 | ConstantSDNode *CN = cast<ConstantSDNode>(N.getOperand(1)); |
Evan Cheng | 68333f5 | 2010-03-17 23:58:35 +0000 | [diff] [blame] | 1227 | |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1228 | // Start with the LHS as an addr mode. |
Dan Gohman | 99ba4da | 2010-06-18 01:24:29 +0000 | [diff] [blame] | 1229 | if (!MatchAddressRecursively(N.getOperand(0), AM, Depth+1) && |
Eli Friedman | ef67e7d | 2011-07-13 20:44:23 +0000 | [diff] [blame] | 1230 | !FoldOffsetIntoAddress(CN->getSExtValue(), AM)) |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1231 | return false; |
Chris Lattner | ff87f05e | 2007-12-08 07:22:58 +0000 | [diff] [blame] | 1232 | AM = Backup; |
Evan Cheng | 734e1e2 | 2006-05-30 06:59:36 +0000 | [diff] [blame] | 1233 | } |
| 1234 | break; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1235 | |
Evan Cheng | 827d30d | 2007-12-13 00:43:27 +0000 | [diff] [blame] | 1236 | case ISD::AND: { |
Dan Gohman | 57d6bd3 | 2009-04-13 16:09:41 +0000 | [diff] [blame] | 1237 | // Perform some heroic transforms on an and of a constant-count shift |
| 1238 | // with a constant to enable use of the scaled offset field. |
| 1239 | |
Evan Cheng | 827d30d | 2007-12-13 00:43:27 +0000 | [diff] [blame] | 1240 | // Scale must not be used already. |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1241 | if (AM.IndexReg.getNode() != nullptr || AM.Scale != 1) break; |
Evan Cheng | a20a773 | 2008-02-07 08:53:49 +0000 | [diff] [blame] | 1242 | |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 1243 | SDValue Shift = N.getOperand(0); |
| 1244 | if (Shift.getOpcode() != ISD::SRL && Shift.getOpcode() != ISD::SHL) break; |
Dan Gohman | 57d6bd3 | 2009-04-13 16:09:41 +0000 | [diff] [blame] | 1245 | SDValue X = Shift.getOperand(0); |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 1246 | |
| 1247 | // We only handle up to 64-bit values here as those are what matter for |
| 1248 | // addressing mode optimizations. |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1249 | if (X.getSimpleValueType().getSizeInBits() > 64) break; |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 1250 | |
Chandler Carruth | b0049f4 | 2012-01-11 09:35:04 +0000 | [diff] [blame] | 1251 | if (!isa<ConstantSDNode>(N.getOperand(1))) |
| 1252 | break; |
| 1253 | uint64_t Mask = N.getConstantOperandVal(1); |
Evan Cheng | 827d30d | 2007-12-13 00:43:27 +0000 | [diff] [blame] | 1254 | |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 1255 | // Try to fold the mask and shift into an extract and scale. |
Chandler Carruth | b0049f4 | 2012-01-11 09:35:04 +0000 | [diff] [blame] | 1256 | if (!FoldMaskAndShiftToExtract(*CurDAG, N, Mask, Shift, X, AM)) |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 1257 | return false; |
Dan Gohman | 57d6bd3 | 2009-04-13 16:09:41 +0000 | [diff] [blame] | 1258 | |
Chandler Carruth | 51d3076 | 2012-01-11 08:48:20 +0000 | [diff] [blame] | 1259 | // Try to fold the mask and shift directly into the scale. |
Chandler Carruth | b0049f4 | 2012-01-11 09:35:04 +0000 | [diff] [blame] | 1260 | if (!FoldMaskAndShiftToScale(*CurDAG, N, Mask, Shift, X, AM)) |
Chandler Carruth | 55b2cde | 2012-01-11 08:41:08 +0000 | [diff] [blame] | 1261 | return false; |
| 1262 | |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 1263 | // Try to swap the mask and shift to place shifts which can be done as |
| 1264 | // a scale on the outside of the mask. |
Chandler Carruth | b0049f4 | 2012-01-11 09:35:04 +0000 | [diff] [blame] | 1265 | if (!FoldMaskedShiftToScaledMask(*CurDAG, N, Mask, Shift, X, AM)) |
Chandler Carruth | aa01e66 | 2012-01-11 09:35:00 +0000 | [diff] [blame] | 1266 | return false; |
| 1267 | break; |
Evan Cheng | 827d30d | 2007-12-13 00:43:27 +0000 | [diff] [blame] | 1268 | } |
Evan Cheng | 734e1e2 | 2006-05-30 06:59:36 +0000 | [diff] [blame] | 1269 | } |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1270 | |
Rafael Espindola | 9277379 | 2009-03-31 16:16:57 +0000 | [diff] [blame] | 1271 | return MatchAddressBase(N, AM); |
Dan Gohman | ccb3611 | 2007-08-13 20:03:06 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
| 1274 | /// MatchAddressBase - Helper for MatchAddress. Add the specified node to the |
| 1275 | /// specified addressing mode without any further recursion. |
Rafael Espindola | 9277379 | 2009-03-31 16:16:57 +0000 | [diff] [blame] | 1276 | bool X86DAGToDAGISel::MatchAddressBase(SDValue N, X86ISelAddressMode &AM) { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1277 | // Is the base register already occupied? |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1278 | if (AM.BaseType != X86ISelAddressMode::RegBase || AM.Base_Reg.getNode()) { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1279 | // If so, check to see if the scale index register is set. |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1280 | if (!AM.IndexReg.getNode()) { |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1281 | AM.IndexReg = N; |
| 1282 | AM.Scale = 1; |
| 1283 | return false; |
| 1284 | } |
| 1285 | |
| 1286 | // Otherwise, we cannot select it. |
| 1287 | return true; |
| 1288 | } |
| 1289 | |
| 1290 | // Default, generate it as a register. |
| 1291 | AM.BaseType = X86ISelAddressMode::RegBase; |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1292 | AM.Base_Reg = N; |
Chris Lattner | 3f0f71b | 2005-11-19 02:11:08 +0000 | [diff] [blame] | 1293 | return false; |
| 1294 | } |
| 1295 | |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1296 | /// SelectAddr - returns true if it is able pattern match an addressing mode. |
| 1297 | /// It returns the operands which make up the maximal addressing mode it can |
| 1298 | /// match by reference. |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 1299 | /// |
| 1300 | /// Parent is the parent node of the addr operand that is being matched. It |
| 1301 | /// is always a load, store, atomic node, or null. It is only null when |
| 1302 | /// checking memory operands for inline asm nodes. |
| 1303 | bool X86DAGToDAGISel::SelectAddr(SDNode *Parent, SDValue N, SDValue &Base, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1304 | SDValue &Scale, SDValue &Index, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1305 | SDValue &Disp, SDValue &Segment) { |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1306 | X86ISelAddressMode AM; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1307 | |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 1308 | if (Parent && |
| 1309 | // This list of opcodes are all the nodes that have an "addr:$ptr" operand |
| 1310 | // that are not a MemSDNode, and thus don't have proper addrspace info. |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 1311 | Parent->getOpcode() != ISD::INTRINSIC_W_CHAIN && // unaligned loads, fixme |
Eric Christopher | c1b3e07 | 2010-09-22 20:42:08 +0000 | [diff] [blame] | 1312 | Parent->getOpcode() != ISD::INTRINSIC_VOID && // nontemporal stores |
Michael Liao | 97bf363 | 2012-10-15 22:39:43 +0000 | [diff] [blame] | 1313 | Parent->getOpcode() != X86ISD::TLSCALL && // Fixme |
| 1314 | Parent->getOpcode() != X86ISD::EH_SJLJ_SETJMP && // setjmp |
| 1315 | Parent->getOpcode() != X86ISD::EH_SJLJ_LONGJMP) { // longjmp |
Chris Lattner | 8a236b6 | 2010-09-22 04:39:11 +0000 | [diff] [blame] | 1316 | unsigned AddrSpace = |
| 1317 | cast<MemSDNode>(Parent)->getPointerInfo().getAddrSpace(); |
| 1318 | // AddrSpace 256 -> GS, 257 -> FS. |
| 1319 | if (AddrSpace == 256) |
| 1320 | AM.Segment = CurDAG->getRegister(X86::GS, MVT::i16); |
| 1321 | if (AddrSpace == 257) |
| 1322 | AM.Segment = CurDAG->getRegister(X86::FS, MVT::i16); |
| 1323 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1324 | |
Evan Cheng | 3dfd04e | 2009-12-18 01:59:21 +0000 | [diff] [blame] | 1325 | if (MatchAddress(N, AM)) |
Evan Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 1326 | return false; |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1327 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1328 | MVT VT = N.getSimpleValueType(); |
Evan Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 1329 | if (AM.BaseType == X86ISelAddressMode::RegBase) { |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1330 | if (!AM.Base_Reg.getNode()) |
| 1331 | AM.Base_Reg = CurDAG->getRegister(0, VT); |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1332 | } |
Evan Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 1333 | |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1334 | if (!AM.IndexReg.getNode()) |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 1335 | AM.IndexReg = CurDAG->getRegister(0, VT); |
Evan Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 1336 | |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1337 | getAddressOperands(AM, Base, Scale, Index, Disp, Segment); |
Evan Cheng | bc7a0f44 | 2006-01-11 06:09:51 +0000 | [diff] [blame] | 1338 | return true; |
Evan Cheng | c9fab31 | 2005-12-08 02:01:35 +0000 | [diff] [blame] | 1339 | } |
| 1340 | |
Chris Lattner | 398195e | 2006-10-07 21:55:32 +0000 | [diff] [blame] | 1341 | /// SelectScalarSSELoad - Match a scalar SSE load. In particular, we want to |
| 1342 | /// match a load whose top elements are either undef or zeros. The load flavor |
| 1343 | /// is derived from the type of N, which is either v4f32 or v2f64. |
Chris Lattner | 3f48215 | 2010-02-17 06:07:47 +0000 | [diff] [blame] | 1344 | /// |
| 1345 | /// We also return: |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 1346 | /// PatternChainNode: this is the matched node that has a chain input and |
| 1347 | /// output. |
Chris Lattner | bd6e193 | 2010-03-01 22:51:11 +0000 | [diff] [blame] | 1348 | bool X86DAGToDAGISel::SelectScalarSSELoad(SDNode *Root, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1349 | SDValue N, SDValue &Base, |
| 1350 | SDValue &Scale, SDValue &Index, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1351 | SDValue &Disp, SDValue &Segment, |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 1352 | SDValue &PatternNodeWithChain) { |
Chris Lattner | 398195e | 2006-10-07 21:55:32 +0000 | [diff] [blame] | 1353 | if (N.getOpcode() == ISD::SCALAR_TO_VECTOR) { |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 1354 | PatternNodeWithChain = N.getOperand(0); |
| 1355 | if (ISD::isNON_EXTLoad(PatternNodeWithChain.getNode()) && |
| 1356 | PatternNodeWithChain.hasOneUse() && |
Chris Lattner | 3c29aff | 2010-02-21 04:53:34 +0000 | [diff] [blame] | 1357 | IsProfitableToFold(N.getOperand(0), N.getNode(), Root) && |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1358 | IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) { |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 1359 | LoadSDNode *LD = cast<LoadSDNode>(PatternNodeWithChain); |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 1360 | if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment)) |
Chris Lattner | 398195e | 2006-10-07 21:55:32 +0000 | [diff] [blame] | 1361 | return false; |
| 1362 | return true; |
| 1363 | } |
| 1364 | } |
Chris Lattner | d5fcfaa | 2006-10-11 22:09:58 +0000 | [diff] [blame] | 1365 | |
| 1366 | // Also handle the case where we explicitly require zeros in the top |
Chris Lattner | 398195e | 2006-10-07 21:55:32 +0000 | [diff] [blame] | 1367 | // elements. This is a vector shuffle from the zero vector. |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1368 | if (N.getOpcode() == X86ISD::VZEXT_MOVL && N.getNode()->hasOneUse() && |
Chris Lattner | 5728bdd | 2007-11-25 00:24:49 +0000 | [diff] [blame] | 1369 | // Check to see if the top elements are all zeros (or bitcast of zeros). |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1370 | N.getOperand(0).getOpcode() == ISD::SCALAR_TO_VECTOR && |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1371 | N.getOperand(0).getNode()->hasOneUse() && |
| 1372 | ISD::isNON_EXTLoad(N.getOperand(0).getOperand(0).getNode()) && |
Chris Lattner | afac7dad | 2010-02-16 22:35:06 +0000 | [diff] [blame] | 1373 | N.getOperand(0).getOperand(0).hasOneUse() && |
| 1374 | IsProfitableToFold(N.getOperand(0), N.getNode(), Root) && |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1375 | IsLegalToFold(N.getOperand(0), N.getNode(), Root, OptLevel)) { |
Evan Cheng | 78af38c | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 1376 | // Okay, this is a zero extending load. Fold it. |
| 1377 | LoadSDNode *LD = cast<LoadSDNode>(N.getOperand(0).getOperand(0)); |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 1378 | if (!SelectAddr(LD, LD->getBasePtr(), Base, Scale, Index, Disp, Segment)) |
Evan Cheng | 78af38c | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 1379 | return false; |
Chris Lattner | 18a32ce | 2010-02-21 03:17:59 +0000 | [diff] [blame] | 1380 | PatternNodeWithChain = SDValue(LD, 0); |
Evan Cheng | 78af38c | 2008-05-08 00:57:18 +0000 | [diff] [blame] | 1381 | return true; |
Chris Lattner | d5fcfaa | 2006-10-11 22:09:58 +0000 | [diff] [blame] | 1382 | } |
Chris Lattner | 398195e | 2006-10-07 21:55:32 +0000 | [diff] [blame] | 1383 | return false; |
| 1384 | } |
| 1385 | |
| 1386 | |
Tim Northover | 3a1fd4c | 2013-06-01 09:55:14 +0000 | [diff] [blame] | 1387 | bool X86DAGToDAGISel::SelectMOV64Imm32(SDValue N, SDValue &Imm) { |
| 1388 | if (const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N)) { |
| 1389 | uint64_t ImmVal = CN->getZExtValue(); |
| 1390 | if ((uint32_t)ImmVal != (uint64_t)ImmVal) |
| 1391 | return false; |
| 1392 | |
| 1393 | Imm = CurDAG->getTargetConstant(ImmVal, MVT::i64); |
| 1394 | return true; |
| 1395 | } |
| 1396 | |
| 1397 | // In static codegen with small code model, we can get the address of a label |
| 1398 | // into a register with 'movl'. TableGen has already made sure we're looking |
| 1399 | // at a label of some kind. |
Tim Northover | 6833e3f | 2013-06-10 20:43:49 +0000 | [diff] [blame] | 1400 | assert(N->getOpcode() == X86ISD::Wrapper && |
| 1401 | "Unexpected node type for MOV32ri64"); |
Tim Northover | 3a1fd4c | 2013-06-01 09:55:14 +0000 | [diff] [blame] | 1402 | N = N.getOperand(0); |
| 1403 | |
| 1404 | if (N->getOpcode() != ISD::TargetConstantPool && |
| 1405 | N->getOpcode() != ISD::TargetJumpTable && |
| 1406 | N->getOpcode() != ISD::TargetGlobalAddress && |
| 1407 | N->getOpcode() != ISD::TargetExternalSymbol && |
| 1408 | N->getOpcode() != ISD::TargetBlockAddress) |
| 1409 | return false; |
| 1410 | |
| 1411 | Imm = N; |
| 1412 | return TM.getCodeModel() == CodeModel::Small; |
| 1413 | } |
| 1414 | |
Tim Northover | 6833e3f | 2013-06-10 20:43:49 +0000 | [diff] [blame] | 1415 | bool X86DAGToDAGISel::SelectLEA64_32Addr(SDValue N, SDValue &Base, |
| 1416 | SDValue &Scale, SDValue &Index, |
| 1417 | SDValue &Disp, SDValue &Segment) { |
| 1418 | if (!SelectLEAAddr(N, Base, Scale, Index, Disp, Segment)) |
| 1419 | return false; |
| 1420 | |
| 1421 | SDLoc DL(N); |
| 1422 | RegisterSDNode *RN = dyn_cast<RegisterSDNode>(Base); |
| 1423 | if (RN && RN->getReg() == 0) |
| 1424 | Base = CurDAG->getRegister(0, MVT::i64); |
| 1425 | else if (Base.getValueType() == MVT::i32 && !dyn_cast<FrameIndexSDNode>(N)) { |
| 1426 | // Base could already be %rip, particularly in the x32 ABI. |
| 1427 | Base = SDValue(CurDAG->getMachineNode( |
| 1428 | TargetOpcode::SUBREG_TO_REG, DL, MVT::i64, |
| 1429 | CurDAG->getTargetConstant(0, MVT::i64), |
| 1430 | Base, |
| 1431 | CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)), |
| 1432 | 0); |
| 1433 | } |
| 1434 | |
| 1435 | RN = dyn_cast<RegisterSDNode>(Index); |
| 1436 | if (RN && RN->getReg() == 0) |
| 1437 | Index = CurDAG->getRegister(0, MVT::i64); |
| 1438 | else { |
| 1439 | assert(Index.getValueType() == MVT::i32 && |
| 1440 | "Expect to be extending 32-bit registers for use in LEA"); |
| 1441 | Index = SDValue(CurDAG->getMachineNode( |
| 1442 | TargetOpcode::SUBREG_TO_REG, DL, MVT::i64, |
| 1443 | CurDAG->getTargetConstant(0, MVT::i64), |
| 1444 | Index, |
| 1445 | CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)), |
| 1446 | 0); |
| 1447 | } |
| 1448 | |
| 1449 | return true; |
| 1450 | } |
| 1451 | |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1452 | /// SelectLEAAddr - it calls SelectAddr and determines if the maximal addressing |
| 1453 | /// mode it matches can be cost effectively emitted as an LEA instruction. |
Chris Lattner | 0e023ea | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 1454 | bool X86DAGToDAGISel::SelectLEAAddr(SDValue N, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1455 | SDValue &Base, SDValue &Scale, |
Chris Lattner | f469307 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 1456 | SDValue &Index, SDValue &Disp, |
| 1457 | SDValue &Segment) { |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1458 | X86ISelAddressMode AM; |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 1459 | |
| 1460 | // Set AM.Segment to prevent MatchAddress from using one. LEA doesn't support |
| 1461 | // segments. |
| 1462 | SDValue Copy = AM.Segment; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1463 | SDValue T = CurDAG->getRegister(0, MVT::i32); |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 1464 | AM.Segment = T; |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1465 | if (MatchAddress(N, AM)) |
| 1466 | return false; |
Rafael Espindola | bb834f0 | 2009-04-10 10:09:34 +0000 | [diff] [blame] | 1467 | assert (T == AM.Segment); |
| 1468 | AM.Segment = Copy; |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1469 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1470 | MVT VT = N.getSimpleValueType(); |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1471 | unsigned Complexity = 0; |
| 1472 | if (AM.BaseType == X86ISelAddressMode::RegBase) |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1473 | if (AM.Base_Reg.getNode()) |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1474 | Complexity = 1; |
| 1475 | else |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1476 | AM.Base_Reg = CurDAG->getRegister(0, VT); |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1477 | else if (AM.BaseType == X86ISelAddressMode::FrameIndexBase) |
| 1478 | Complexity = 4; |
| 1479 | |
Gabor Greif | f304a7a | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1480 | if (AM.IndexReg.getNode()) |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1481 | Complexity++; |
| 1482 | else |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 1483 | AM.IndexReg = CurDAG->getRegister(0, VT); |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1484 | |
Chris Lattner | 3e1d917 | 2007-03-20 06:08:29 +0000 | [diff] [blame] | 1485 | // Don't match just leal(,%reg,2). It's cheaper to do addl %reg, %reg, or with |
| 1486 | // a simple shift. |
| 1487 | if (AM.Scale > 1) |
Evan Cheng | 990c360 | 2006-02-28 21:13:57 +0000 | [diff] [blame] | 1488 | Complexity++; |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1489 | |
| 1490 | // FIXME: We are artificially lowering the criteria to turn ADD %reg, $GA |
| 1491 | // to a LEA. This is determined with some expermentation but is by no means |
| 1492 | // optimal (especially for code size consideration). LEA is nice because of |
| 1493 | // its three-address nature. Tweak the cost function again when we can run |
| 1494 | // convertToThreeAddress() at register allocation time. |
Dan Gohman | 4e3e3de | 2009-02-07 00:43:41 +0000 | [diff] [blame] | 1495 | if (AM.hasSymbolicDisplacement()) { |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 1496 | // For X86-64, we should always use lea to materialize RIP relative |
| 1497 | // addresses. |
Evan Cheng | 47e181c | 2006-12-05 22:03:40 +0000 | [diff] [blame] | 1498 | if (Subtarget->is64Bit()) |
Evan Cheng | 11b0a5d | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 1499 | Complexity = 4; |
| 1500 | else |
| 1501 | Complexity += 2; |
| 1502 | } |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1503 | |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1504 | if (AM.Disp && (AM.Base_Reg.getNode() || AM.IndexReg.getNode())) |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1505 | Complexity++; |
| 1506 | |
Chris Lattner | 4d10f1a | 2009-07-11 22:50:33 +0000 | [diff] [blame] | 1507 | // If it isn't worth using an LEA, reject it. |
Chris Lattner | 48cee9b | 2009-07-11 23:07:30 +0000 | [diff] [blame] | 1508 | if (Complexity <= 2) |
Chris Lattner | 4d10f1a | 2009-07-11 22:50:33 +0000 | [diff] [blame] | 1509 | return false; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1510 | |
Chris Lattner | 4d10f1a | 2009-07-11 22:50:33 +0000 | [diff] [blame] | 1511 | getAddressOperands(AM, Base, Scale, Index, Disp, Segment); |
| 1512 | return true; |
Evan Cheng | 77d86ff | 2006-02-25 10:09:08 +0000 | [diff] [blame] | 1513 | } |
| 1514 | |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1515 | /// SelectTLSADDRAddr - This is only run on TargetGlobalTLSAddress nodes. |
Chris Lattner | 0e023ea | 2010-09-21 20:31:19 +0000 | [diff] [blame] | 1516 | bool X86DAGToDAGISel::SelectTLSADDRAddr(SDValue N, SDValue &Base, |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1517 | SDValue &Scale, SDValue &Index, |
Chris Lattner | f469307 | 2010-07-08 23:46:44 +0000 | [diff] [blame] | 1518 | SDValue &Disp, SDValue &Segment) { |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1519 | assert(N.getOpcode() == ISD::TargetGlobalTLSAddress); |
| 1520 | const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1521 | |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1522 | X86ISelAddressMode AM; |
| 1523 | AM.GV = GA->getGlobal(); |
| 1524 | AM.Disp += GA->getOffset(); |
Dan Gohman | 0fd54fb | 2010-04-29 23:30:41 +0000 | [diff] [blame] | 1525 | AM.Base_Reg = CurDAG->getRegister(0, N.getValueType()); |
Chris Lattner | 899abc4 | 2009-06-26 21:18:37 +0000 | [diff] [blame] | 1526 | AM.SymbolFlags = GA->getTargetFlags(); |
| 1527 | |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1528 | if (N.getValueType() == MVT::i32) { |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1529 | AM.Scale = 1; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1530 | AM.IndexReg = CurDAG->getRegister(X86::EBX, MVT::i32); |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1531 | } else { |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1532 | AM.IndexReg = CurDAG->getRegister(0, MVT::i64); |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1533 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1534 | |
Chris Lattner | 7d2b049 | 2009-06-20 20:38:48 +0000 | [diff] [blame] | 1535 | getAddressOperands(AM, Base, Scale, Index, Disp, Segment); |
| 1536 | return true; |
| 1537 | } |
| 1538 | |
| 1539 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 1540 | bool X86DAGToDAGISel::TryFoldLoad(SDNode *P, SDValue N, |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1541 | SDValue &Base, SDValue &Scale, |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1542 | SDValue &Index, SDValue &Disp, |
| 1543 | SDValue &Segment) { |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1544 | if (!ISD::isNON_EXTLoad(N.getNode()) || |
| 1545 | !IsProfitableToFold(N, P, P) || |
Dan Gohman | 21cea8a | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 1546 | !IsLegalToFold(N, P, P, OptLevel)) |
Chris Lattner | dd03070 | 2010-03-02 22:20:06 +0000 | [diff] [blame] | 1547 | return false; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1548 | |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 1549 | return SelectAddr(N.getNode(), |
| 1550 | N.getOperand(1), Base, Scale, Index, Disp, Segment); |
Evan Cheng | 10d2790 | 2006-01-06 20:36:21 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
Dan Gohman | 2430073 | 2008-09-23 18:22:58 +0000 | [diff] [blame] | 1553 | /// getGlobalBaseReg - Return an SDNode that returns the value of |
| 1554 | /// the global base register. Output instructions required to |
| 1555 | /// initialize the global base register, if necessary. |
Evan Cheng | 5588de9 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 1556 | /// |
Evan Cheng | 61413a3 | 2006-08-26 05:34:46 +0000 | [diff] [blame] | 1557 | SDNode *X86DAGToDAGISel::getGlobalBaseReg() { |
Dan Gohman | 4751bb9 | 2009-06-03 20:20:00 +0000 | [diff] [blame] | 1558 | unsigned GlobalBaseReg = getInstrInfo()->getGlobalBaseReg(MF); |
Bill Wendling | a3cd350 | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1559 | return CurDAG->getRegister(GlobalBaseReg, |
| 1560 | getTargetLowering()->getPointerTy()).getNode(); |
Evan Cheng | 5588de9 | 2006-02-18 00:15:05 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
Dale Johannesen | 867d549 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 1563 | SDNode *X86DAGToDAGISel::SelectAtomic64(SDNode *Node, unsigned Opc) { |
| 1564 | SDValue Chain = Node->getOperand(0); |
| 1565 | SDValue In1 = Node->getOperand(1); |
| 1566 | SDValue In2L = Node->getOperand(2); |
| 1567 | SDValue In2H = Node->getOperand(3); |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1568 | |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 1569 | SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4; |
Chris Lattner | d58d7c1 | 2010-09-21 22:07:31 +0000 | [diff] [blame] | 1570 | if (!SelectAddr(Node, In1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1571 | return nullptr; |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 1572 | MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1); |
| 1573 | MemOp[0] = cast<MemSDNode>(Node)->getMemOperand(); |
| 1574 | const SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, In2L, In2H, Chain}; |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1575 | SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 1576 | MVT::i32, MVT::i32, MVT::Other, Ops); |
Dan Gohman | 48b185d | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 1577 | cast<MachineSDNode>(ResNode)->setMemRefs(MemOp, MemOp + 1); |
| 1578 | return ResNode; |
Dale Johannesen | 867d549 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 1579 | } |
Christopher Lamb | b372aba | 2007-08-10 21:48:46 +0000 | [diff] [blame] | 1580 | |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1581 | /// Atomic opcode table |
| 1582 | /// |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1583 | enum AtomicOpc { |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1584 | ADD, |
| 1585 | SUB, |
| 1586 | INC, |
| 1587 | DEC, |
Eric Christopher | abfe313 | 2011-05-17 07:50:41 +0000 | [diff] [blame] | 1588 | OR, |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1589 | AND, |
| 1590 | XOR, |
Eric Christopher | abfe313 | 2011-05-17 07:50:41 +0000 | [diff] [blame] | 1591 | AtomicOpcEnd |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1592 | }; |
| 1593 | |
| 1594 | enum AtomicSz { |
| 1595 | ConstantI8, |
| 1596 | I8, |
| 1597 | SextConstantI16, |
| 1598 | ConstantI16, |
| 1599 | I16, |
| 1600 | SextConstantI32, |
| 1601 | ConstantI32, |
| 1602 | I32, |
| 1603 | SextConstantI64, |
| 1604 | ConstantI64, |
Eric Christopher | abfe313 | 2011-05-17 07:50:41 +0000 | [diff] [blame] | 1605 | I64, |
| 1606 | AtomicSzEnd |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1607 | }; |
| 1608 | |
Craig Topper | 2dac962 | 2012-03-09 07:45:21 +0000 | [diff] [blame] | 1609 | static const uint16_t AtomicOpcTbl[AtomicOpcEnd][AtomicSzEnd] = { |
Eric Christopher | 2a9dbbb | 2011-05-11 21:44:58 +0000 | [diff] [blame] | 1610 | { |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1611 | X86::LOCK_ADD8mi, |
| 1612 | X86::LOCK_ADD8mr, |
| 1613 | X86::LOCK_ADD16mi8, |
| 1614 | X86::LOCK_ADD16mi, |
| 1615 | X86::LOCK_ADD16mr, |
| 1616 | X86::LOCK_ADD32mi8, |
| 1617 | X86::LOCK_ADD32mi, |
| 1618 | X86::LOCK_ADD32mr, |
| 1619 | X86::LOCK_ADD64mi8, |
| 1620 | X86::LOCK_ADD64mi32, |
| 1621 | X86::LOCK_ADD64mr, |
| 1622 | }, |
| 1623 | { |
| 1624 | X86::LOCK_SUB8mi, |
| 1625 | X86::LOCK_SUB8mr, |
| 1626 | X86::LOCK_SUB16mi8, |
| 1627 | X86::LOCK_SUB16mi, |
| 1628 | X86::LOCK_SUB16mr, |
| 1629 | X86::LOCK_SUB32mi8, |
| 1630 | X86::LOCK_SUB32mi, |
| 1631 | X86::LOCK_SUB32mr, |
| 1632 | X86::LOCK_SUB64mi8, |
| 1633 | X86::LOCK_SUB64mi32, |
| 1634 | X86::LOCK_SUB64mr, |
| 1635 | }, |
| 1636 | { |
| 1637 | 0, |
| 1638 | X86::LOCK_INC8m, |
| 1639 | 0, |
| 1640 | 0, |
| 1641 | X86::LOCK_INC16m, |
| 1642 | 0, |
| 1643 | 0, |
| 1644 | X86::LOCK_INC32m, |
| 1645 | 0, |
| 1646 | 0, |
| 1647 | X86::LOCK_INC64m, |
| 1648 | }, |
| 1649 | { |
| 1650 | 0, |
| 1651 | X86::LOCK_DEC8m, |
| 1652 | 0, |
| 1653 | 0, |
| 1654 | X86::LOCK_DEC16m, |
| 1655 | 0, |
| 1656 | 0, |
| 1657 | X86::LOCK_DEC32m, |
| 1658 | 0, |
| 1659 | 0, |
| 1660 | X86::LOCK_DEC64m, |
| 1661 | }, |
| 1662 | { |
Eric Christopher | 2a9dbbb | 2011-05-11 21:44:58 +0000 | [diff] [blame] | 1663 | X86::LOCK_OR8mi, |
| 1664 | X86::LOCK_OR8mr, |
| 1665 | X86::LOCK_OR16mi8, |
| 1666 | X86::LOCK_OR16mi, |
| 1667 | X86::LOCK_OR16mr, |
| 1668 | X86::LOCK_OR32mi8, |
| 1669 | X86::LOCK_OR32mi, |
| 1670 | X86::LOCK_OR32mr, |
| 1671 | X86::LOCK_OR64mi8, |
| 1672 | X86::LOCK_OR64mi32, |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1673 | X86::LOCK_OR64mr, |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1674 | }, |
| 1675 | { |
| 1676 | X86::LOCK_AND8mi, |
| 1677 | X86::LOCK_AND8mr, |
| 1678 | X86::LOCK_AND16mi8, |
| 1679 | X86::LOCK_AND16mi, |
| 1680 | X86::LOCK_AND16mr, |
| 1681 | X86::LOCK_AND32mi8, |
| 1682 | X86::LOCK_AND32mi, |
| 1683 | X86::LOCK_AND32mr, |
| 1684 | X86::LOCK_AND64mi8, |
| 1685 | X86::LOCK_AND64mi32, |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1686 | X86::LOCK_AND64mr, |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1687 | }, |
| 1688 | { |
| 1689 | X86::LOCK_XOR8mi, |
| 1690 | X86::LOCK_XOR8mr, |
| 1691 | X86::LOCK_XOR16mi8, |
| 1692 | X86::LOCK_XOR16mi, |
| 1693 | X86::LOCK_XOR16mr, |
| 1694 | X86::LOCK_XOR32mi8, |
| 1695 | X86::LOCK_XOR32mi, |
| 1696 | X86::LOCK_XOR32mr, |
| 1697 | X86::LOCK_XOR64mi8, |
| 1698 | X86::LOCK_XOR64mi32, |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1699 | X86::LOCK_XOR64mr, |
Eric Christopher | 2a9dbbb | 2011-05-11 21:44:58 +0000 | [diff] [blame] | 1700 | } |
| 1701 | }; |
| 1702 | |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1703 | // Return the target constant operand for atomic-load-op and do simple |
| 1704 | // translations, such as from atomic-load-add to lock-sub. The return value is |
| 1705 | // one of the following 3 cases: |
| 1706 | // + target-constant, the operand could be supported as a target constant. |
| 1707 | // + empty, the operand is not needed any more with the new op selected. |
| 1708 | // + non-empty, otherwise. |
| 1709 | static SDValue getAtomicLoadArithTargetConstant(SelectionDAG *CurDAG, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1710 | SDLoc dl, |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1711 | enum AtomicOpc &Op, MVT NVT, |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1712 | SDValue Val) { |
| 1713 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Val)) { |
| 1714 | int64_t CNVal = CN->getSExtValue(); |
| 1715 | // Quit if not 32-bit imm. |
| 1716 | if ((int32_t)CNVal != CNVal) |
| 1717 | return Val; |
| 1718 | // For atomic-load-add, we could do some optimizations. |
| 1719 | if (Op == ADD) { |
| 1720 | // Translate to INC/DEC if ADD by 1 or -1. |
| 1721 | if ((CNVal == 1) || (CNVal == -1)) { |
| 1722 | Op = (CNVal == 1) ? INC : DEC; |
| 1723 | // No more constant operand after being translated into INC/DEC. |
| 1724 | return SDValue(); |
| 1725 | } |
| 1726 | // Translate to SUB if ADD by negative value. |
| 1727 | if (CNVal < 0) { |
| 1728 | Op = SUB; |
| 1729 | CNVal = -CNVal; |
| 1730 | } |
| 1731 | } |
| 1732 | return CurDAG->getTargetConstant(CNVal, NVT); |
| 1733 | } |
| 1734 | |
| 1735 | // If the value operand is single-used, try to optimize it. |
| 1736 | if (Op == ADD && Val.hasOneUse()) { |
| 1737 | // Translate (atomic-load-add ptr (sub 0 x)) back to (lock-sub x). |
| 1738 | if (Val.getOpcode() == ISD::SUB && X86::isZeroNode(Val.getOperand(0))) { |
| 1739 | Op = SUB; |
| 1740 | return Val.getOperand(1); |
| 1741 | } |
| 1742 | // A special case for i16, which needs truncating as, in most cases, it's |
| 1743 | // promoted to i32. We will translate |
| 1744 | // (atomic-load-add (truncate (sub 0 x))) to (lock-sub (EXTRACT_SUBREG x)) |
| 1745 | if (Val.getOpcode() == ISD::TRUNCATE && NVT == MVT::i16 && |
| 1746 | Val.getOperand(0).getOpcode() == ISD::SUB && |
| 1747 | X86::isZeroNode(Val.getOperand(0).getOperand(0))) { |
| 1748 | Op = SUB; |
| 1749 | Val = Val.getOperand(0); |
| 1750 | return CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, NVT, |
| 1751 | Val.getOperand(1)); |
| 1752 | } |
| 1753 | } |
| 1754 | |
| 1755 | return Val; |
| 1756 | } |
| 1757 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1758 | SDNode *X86DAGToDAGISel::SelectAtomicLoadArith(SDNode *Node, MVT NVT) { |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1759 | if (Node->hasAnyUseOfValue(0)) |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1760 | return nullptr; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1761 | |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1762 | SDLoc dl(Node); |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1763 | |
Eric Christopher | 56a42eb | 2011-05-17 08:16:14 +0000 | [diff] [blame] | 1764 | // Optimize common patterns for __sync_or_and_fetch and similar arith |
| 1765 | // operations where the result is not used. This allows us to use the "lock" |
| 1766 | // version of the arithmetic instruction. |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1767 | SDValue Chain = Node->getOperand(0); |
| 1768 | SDValue Ptr = Node->getOperand(1); |
| 1769 | SDValue Val = Node->getOperand(2); |
| 1770 | SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4; |
| 1771 | if (!SelectAddr(Node, Ptr, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1772 | return nullptr; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1773 | |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1774 | // Which index into the table. |
| 1775 | enum AtomicOpc Op; |
| 1776 | switch (Node->getOpcode()) { |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1777 | default: |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1778 | return nullptr; |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1779 | case ISD::ATOMIC_LOAD_OR: |
| 1780 | Op = OR; |
| 1781 | break; |
| 1782 | case ISD::ATOMIC_LOAD_AND: |
| 1783 | Op = AND; |
| 1784 | break; |
| 1785 | case ISD::ATOMIC_LOAD_XOR: |
| 1786 | Op = XOR; |
| 1787 | break; |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1788 | case ISD::ATOMIC_LOAD_ADD: |
| 1789 | Op = ADD; |
| 1790 | break; |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 1791 | } |
Andrew Trick | 52b8387 | 2013-04-13 06:07:36 +0000 | [diff] [blame] | 1792 | |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1793 | Val = getAtomicLoadArithTargetConstant(CurDAG, dl, Op, NVT, Val); |
| 1794 | bool isUnOp = !Val.getNode(); |
| 1795 | bool isCN = Val.getNode() && (Val.getOpcode() == ISD::TargetConstant); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1796 | |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1797 | unsigned Opc = 0; |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 1798 | switch (NVT.SimpleTy) { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 1799 | default: return nullptr; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1800 | case MVT::i8: |
| 1801 | if (isCN) |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1802 | Opc = AtomicOpcTbl[Op][ConstantI8]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1803 | else |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1804 | Opc = AtomicOpcTbl[Op][I8]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1805 | break; |
| 1806 | case MVT::i16: |
| 1807 | if (isCN) { |
| 1808 | if (immSext8(Val.getNode())) |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1809 | Opc = AtomicOpcTbl[Op][SextConstantI16]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1810 | else |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1811 | Opc = AtomicOpcTbl[Op][ConstantI16]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1812 | } else |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1813 | Opc = AtomicOpcTbl[Op][I16]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1814 | break; |
| 1815 | case MVT::i32: |
| 1816 | if (isCN) { |
| 1817 | if (immSext8(Val.getNode())) |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1818 | Opc = AtomicOpcTbl[Op][SextConstantI32]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1819 | else |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1820 | Opc = AtomicOpcTbl[Op][ConstantI32]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1821 | } else |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1822 | Opc = AtomicOpcTbl[Op][I32]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1823 | break; |
| 1824 | case MVT::i64: |
Eric Christopher | c9321737 | 2011-06-30 00:48:30 +0000 | [diff] [blame] | 1825 | Opc = AtomicOpcTbl[Op][I64]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1826 | if (isCN) { |
| 1827 | if (immSext8(Val.getNode())) |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1828 | Opc = AtomicOpcTbl[Op][SextConstantI64]; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1829 | else if (i64immSExt32(Val.getNode())) |
Eric Christopher | eb47a2a | 2011-05-17 07:47:55 +0000 | [diff] [blame] | 1830 | Opc = AtomicOpcTbl[Op][ConstantI64]; |
Eric Christopher | c9321737 | 2011-06-30 00:48:30 +0000 | [diff] [blame] | 1831 | } |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1832 | break; |
| 1833 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1834 | |
Eric Christopher | c9321737 | 2011-06-30 00:48:30 +0000 | [diff] [blame] | 1835 | assert(Opc != 0 && "Invalid arith lock transform!"); |
| 1836 | |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1837 | SDValue Ret; |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1838 | SDValue Undef = SDValue(CurDAG->getMachineNode(TargetOpcode::IMPLICIT_DEF, |
| 1839 | dl, NVT), 0); |
| 1840 | MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(1); |
| 1841 | MemOp[0] = cast<MemSDNode>(Node)->getMemOperand(); |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1842 | if (isUnOp) { |
| 1843 | SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Chain }; |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 1844 | Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0); |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1845 | } else { |
| 1846 | SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Val, Chain }; |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 1847 | Ret = SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Other, Ops), 0); |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 1848 | } |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1849 | cast<MachineSDNode>(Ret)->setMemRefs(MemOp, MemOp + 1); |
| 1850 | SDValue RetVals[] = { Undef, Ret }; |
Craig Topper | 64941d9 | 2014-04-27 19:20:57 +0000 | [diff] [blame] | 1851 | return CurDAG->getMergeValues(RetVals, dl).getNode(); |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 1852 | } |
| 1853 | |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 1854 | /// HasNoSignedComparisonUses - Test whether the given X86ISD::CMP node has |
| 1855 | /// any uses which require the SF or OF bits to be accurate. |
| 1856 | static bool HasNoSignedComparisonUses(SDNode *N) { |
| 1857 | // Examine each user of the node. |
| 1858 | for (SDNode::use_iterator UI = N->use_begin(), |
| 1859 | UE = N->use_end(); UI != UE; ++UI) { |
| 1860 | // Only examine CopyToReg uses. |
| 1861 | if (UI->getOpcode() != ISD::CopyToReg) |
| 1862 | return false; |
| 1863 | // Only examine CopyToReg uses that copy to EFLAGS. |
| 1864 | if (cast<RegisterSDNode>(UI->getOperand(1))->getReg() != |
| 1865 | X86::EFLAGS) |
| 1866 | return false; |
| 1867 | // Examine each user of the CopyToReg use. |
| 1868 | for (SDNode::use_iterator FlagUI = UI->use_begin(), |
| 1869 | FlagUE = UI->use_end(); FlagUI != FlagUE; ++FlagUI) { |
| 1870 | // Only examine the Flag result. |
| 1871 | if (FlagUI.getUse().getResNo() != 1) continue; |
| 1872 | // Anything unusual: assume conservatively. |
| 1873 | if (!FlagUI->isMachineOpcode()) return false; |
| 1874 | // Examine the opcode of the user. |
| 1875 | switch (FlagUI->getMachineOpcode()) { |
| 1876 | // These comparisons don't treat the most significant bit specially. |
| 1877 | case X86::SETAr: case X86::SETAEr: case X86::SETBr: case X86::SETBEr: |
| 1878 | case X86::SETEr: case X86::SETNEr: case X86::SETPr: case X86::SETNPr: |
| 1879 | case X86::SETAm: case X86::SETAEm: case X86::SETBm: case X86::SETBEm: |
| 1880 | case X86::SETEm: case X86::SETNEm: case X86::SETPm: case X86::SETNPm: |
Chris Lattner | 2b0a7a2 | 2010-02-11 19:25:55 +0000 | [diff] [blame] | 1881 | case X86::JA_4: case X86::JAE_4: case X86::JB_4: case X86::JBE_4: |
| 1882 | case X86::JE_4: case X86::JNE_4: case X86::JP_4: case X86::JNP_4: |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 1883 | case X86::CMOVA16rr: case X86::CMOVA16rm: |
| 1884 | case X86::CMOVA32rr: case X86::CMOVA32rm: |
| 1885 | case X86::CMOVA64rr: case X86::CMOVA64rm: |
| 1886 | case X86::CMOVAE16rr: case X86::CMOVAE16rm: |
| 1887 | case X86::CMOVAE32rr: case X86::CMOVAE32rm: |
| 1888 | case X86::CMOVAE64rr: case X86::CMOVAE64rm: |
| 1889 | case X86::CMOVB16rr: case X86::CMOVB16rm: |
| 1890 | case X86::CMOVB32rr: case X86::CMOVB32rm: |
| 1891 | case X86::CMOVB64rr: case X86::CMOVB64rm: |
Chris Lattner | 1a1c600 | 2010-10-05 23:00:14 +0000 | [diff] [blame] | 1892 | case X86::CMOVBE16rr: case X86::CMOVBE16rm: |
| 1893 | case X86::CMOVBE32rr: case X86::CMOVBE32rm: |
| 1894 | case X86::CMOVBE64rr: case X86::CMOVBE64rm: |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 1895 | case X86::CMOVE16rr: case X86::CMOVE16rm: |
| 1896 | case X86::CMOVE32rr: case X86::CMOVE32rm: |
| 1897 | case X86::CMOVE64rr: case X86::CMOVE64rm: |
| 1898 | case X86::CMOVNE16rr: case X86::CMOVNE16rm: |
| 1899 | case X86::CMOVNE32rr: case X86::CMOVNE32rm: |
| 1900 | case X86::CMOVNE64rr: case X86::CMOVNE64rm: |
| 1901 | case X86::CMOVNP16rr: case X86::CMOVNP16rm: |
| 1902 | case X86::CMOVNP32rr: case X86::CMOVNP32rm: |
| 1903 | case X86::CMOVNP64rr: case X86::CMOVNP64rm: |
| 1904 | case X86::CMOVP16rr: case X86::CMOVP16rm: |
| 1905 | case X86::CMOVP32rr: case X86::CMOVP32rm: |
| 1906 | case X86::CMOVP64rr: case X86::CMOVP64rm: |
| 1907 | continue; |
| 1908 | // Anything else: assume conservatively. |
| 1909 | default: return false; |
| 1910 | } |
| 1911 | } |
| 1912 | } |
| 1913 | return true; |
| 1914 | } |
| 1915 | |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1916 | /// isLoadIncOrDecStore - Check whether or not the chain ending in StoreNode |
| 1917 | /// is suitable for doing the {load; increment or decrement; store} to modify |
| 1918 | /// transformation. |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1919 | static bool isLoadIncOrDecStore(StoreSDNode *StoreNode, unsigned Opc, |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1920 | SDValue StoredVal, SelectionDAG *CurDAG, |
| 1921 | LoadSDNode* &LoadNode, SDValue &InputChain) { |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1922 | |
| 1923 | // is the value stored the result of a DEC or INC? |
| 1924 | if (!(Opc == X86ISD::DEC || Opc == X86ISD::INC)) return false; |
| 1925 | |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1926 | // is the stored value result 0 of the load? |
| 1927 | if (StoredVal.getResNo() != 0) return false; |
| 1928 | |
| 1929 | // are there other uses of the loaded value than the inc or dec? |
| 1930 | if (!StoredVal.getNode()->hasNUsesOfValue(1, 0)) return false; |
| 1931 | |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1932 | // is the store non-extending and non-indexed? |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1933 | if (!ISD::isNormalStore(StoreNode) || StoreNode->isNonTemporal()) |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1934 | return false; |
| 1935 | |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1936 | SDValue Load = StoredVal->getOperand(0); |
| 1937 | // Is the stored value a non-extending and non-indexed load? |
| 1938 | if (!ISD::isNormalLoad(Load.getNode())) return false; |
| 1939 | |
| 1940 | // Return LoadNode by reference. |
| 1941 | LoadNode = cast<LoadSDNode>(Load); |
| 1942 | // is the size of the value one that we can handle? (i.e. 64, 32, 16, or 8) |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1943 | EVT LdVT = LoadNode->getMemoryVT(); |
| 1944 | if (LdVT != MVT::i64 && LdVT != MVT::i32 && LdVT != MVT::i16 && |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1945 | LdVT != MVT::i8) |
| 1946 | return false; |
| 1947 | |
| 1948 | // Is store the only read of the loaded value? |
| 1949 | if (!Load.hasOneUse()) |
| 1950 | return false; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 1951 | |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1952 | // Is the address of the store the same as the load? |
| 1953 | if (LoadNode->getBasePtr() != StoreNode->getBasePtr() || |
| 1954 | LoadNode->getOffset() != StoreNode->getOffset()) |
| 1955 | return false; |
| 1956 | |
| 1957 | // Check if the chain is produced by the load or is a TokenFactor with |
| 1958 | // the load output chain as an operand. Return InputChain by reference. |
| 1959 | SDValue Chain = StoreNode->getChain(); |
| 1960 | |
| 1961 | bool ChainCheck = false; |
| 1962 | if (Chain == Load.getValue(1)) { |
| 1963 | ChainCheck = true; |
| 1964 | InputChain = LoadNode->getChain(); |
| 1965 | } else if (Chain.getOpcode() == ISD::TokenFactor) { |
| 1966 | SmallVector<SDValue, 4> ChainOps; |
| 1967 | for (unsigned i = 0, e = Chain.getNumOperands(); i != e; ++i) { |
| 1968 | SDValue Op = Chain.getOperand(i); |
| 1969 | if (Op == Load.getValue(1)) { |
| 1970 | ChainCheck = true; |
| 1971 | continue; |
| 1972 | } |
Evan Cheng | 58a95f0 | 2012-05-16 01:54:27 +0000 | [diff] [blame] | 1973 | |
| 1974 | // Make sure using Op as part of the chain would not cause a cycle here. |
| 1975 | // In theory, we could check whether the chain node is a predecessor of |
| 1976 | // the load. But that can be very expensive. Instead visit the uses and |
| 1977 | // make sure they all have smaller node id than the load. |
| 1978 | int LoadId = LoadNode->getNodeId(); |
| 1979 | for (SDNode::use_iterator UI = Op.getNode()->use_begin(), |
| 1980 | UE = UI->use_end(); UI != UE; ++UI) { |
| 1981 | if (UI.getUse().getResNo() != 0) |
| 1982 | continue; |
| 1983 | if (UI->getNodeId() > LoadId) |
| 1984 | return false; |
| 1985 | } |
| 1986 | |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1987 | ChainOps.push_back(Op); |
| 1988 | } |
| 1989 | |
| 1990 | if (ChainCheck) |
| 1991 | // Make a new TokenFactor with all the other input chains except |
| 1992 | // for the load. |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1993 | InputChain = CurDAG->getNode(ISD::TokenFactor, SDLoc(Chain), |
Craig Topper | 48d114b | 2014-04-26 18:35:24 +0000 | [diff] [blame] | 1994 | MVT::Other, ChainOps); |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 1995 | } |
| 1996 | if (!ChainCheck) |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 1997 | return false; |
| 1998 | |
| 1999 | return true; |
| 2000 | } |
| 2001 | |
Benjamin Kramer | 8619c37 | 2012-03-29 12:37:26 +0000 | [diff] [blame] | 2002 | /// getFusedLdStOpcode - Get the appropriate X86 opcode for an in memory |
| 2003 | /// increment or decrement. Opc should be X86ISD::DEC or X86ISD::INC. |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2004 | static unsigned getFusedLdStOpcode(EVT &LdVT, unsigned Opc) { |
| 2005 | if (Opc == X86ISD::DEC) { |
| 2006 | if (LdVT == MVT::i64) return X86::DEC64m; |
| 2007 | if (LdVT == MVT::i32) return X86::DEC32m; |
| 2008 | if (LdVT == MVT::i16) return X86::DEC16m; |
| 2009 | if (LdVT == MVT::i8) return X86::DEC8m; |
Benjamin Kramer | 8619c37 | 2012-03-29 12:37:26 +0000 | [diff] [blame] | 2010 | } else { |
| 2011 | assert(Opc == X86ISD::INC && "unrecognized opcode"); |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2012 | if (LdVT == MVT::i64) return X86::INC64m; |
| 2013 | if (LdVT == MVT::i32) return X86::INC32m; |
| 2014 | if (LdVT == MVT::i16) return X86::INC16m; |
| 2015 | if (LdVT == MVT::i8) return X86::INC8m; |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2016 | } |
Benjamin Kramer | 8619c37 | 2012-03-29 12:37:26 +0000 | [diff] [blame] | 2017 | llvm_unreachable("unrecognized size for LdVT"); |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2018 | } |
| 2019 | |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2020 | /// SelectGather - Customized ISel for GATHER operations. |
| 2021 | /// |
| 2022 | SDNode *X86DAGToDAGISel::SelectGather(SDNode *Node, unsigned Opc) { |
| 2023 | // Operands of Gather: VSrc, Base, VIdx, VMask, Scale |
| 2024 | SDValue Chain = Node->getOperand(0); |
| 2025 | SDValue VSrc = Node->getOperand(2); |
| 2026 | SDValue Base = Node->getOperand(3); |
| 2027 | SDValue VIdx = Node->getOperand(4); |
| 2028 | SDValue VMask = Node->getOperand(5); |
| 2029 | ConstantSDNode *Scale = dyn_cast<ConstantSDNode>(Node->getOperand(6)); |
Craig Topper | fbb954f7 | 2012-07-01 02:17:08 +0000 | [diff] [blame] | 2030 | if (!Scale) |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2031 | return nullptr; |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2032 | |
Craig Topper | f7755df | 2012-07-12 06:52:41 +0000 | [diff] [blame] | 2033 | SDVTList VTs = CurDAG->getVTList(VSrc.getValueType(), VSrc.getValueType(), |
| 2034 | MVT::Other); |
| 2035 | |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2036 | // Memory Operands: Base, Scale, Index, Disp, Segment |
| 2037 | SDValue Disp = CurDAG->getTargetConstant(0, MVT::i32); |
| 2038 | SDValue Segment = CurDAG->getRegister(0, MVT::i32); |
| 2039 | const SDValue Ops[] = { VSrc, Base, getI8Imm(Scale->getSExtValue()), VIdx, |
| 2040 | Disp, Segment, VMask, Chain}; |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2041 | SDNode *ResNode = CurDAG->getMachineNode(Opc, SDLoc(Node), VTs, Ops); |
Craig Topper | f7755df | 2012-07-12 06:52:41 +0000 | [diff] [blame] | 2042 | // Node has 2 outputs: VDst and MVT::Other. |
| 2043 | // ResNode has 3 outputs: VDst, VMask_wb, and MVT::Other. |
| 2044 | // We replace VDst of Node with VDst of ResNode, and Other of Node with Other |
| 2045 | // of ResNode. |
| 2046 | ReplaceUses(SDValue(Node, 0), SDValue(ResNode, 0)); |
| 2047 | ReplaceUses(SDValue(Node, 1), SDValue(ResNode, 2)); |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2048 | return ResNode; |
| 2049 | } |
| 2050 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2051 | SDNode *X86DAGToDAGISel::Select(SDNode *Node) { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2052 | MVT NVT = Node->getSimpleValueType(0); |
Evan Cheng | 10d2790 | 2006-01-06 20:36:21 +0000 | [diff] [blame] | 2053 | unsigned Opc, MOpc; |
| 2054 | unsigned Opcode = Node->getOpcode(); |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2055 | SDLoc dl(Node); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2056 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2057 | DEBUG(dbgs() << "Selecting: "; Node->dump(CurDAG); dbgs() << '\n'); |
Evan Cheng | d49cc36 | 2006-02-10 22:24:32 +0000 | [diff] [blame] | 2058 | |
Dan Gohman | 1705968 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 2059 | if (Node->isMachineOpcode()) { |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2060 | DEBUG(dbgs() << "== "; Node->dump(CurDAG); dbgs() << '\n'); |
Tim Northover | 31d093c | 2013-09-22 08:21:56 +0000 | [diff] [blame] | 2061 | Node->setNodeId(-1); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2062 | return nullptr; // Already selected. |
Evan Cheng | 6dc90ca | 2006-02-09 00:37:58 +0000 | [diff] [blame] | 2063 | } |
Evan Cheng | 2ae799a | 2006-01-11 22:15:18 +0000 | [diff] [blame] | 2064 | |
Evan Cheng | 10d2790 | 2006-01-06 20:36:21 +0000 | [diff] [blame] | 2065 | switch (Opcode) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2066 | default: break; |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2067 | case ISD::INTRINSIC_W_CHAIN: { |
| 2068 | unsigned IntNo = cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue(); |
| 2069 | switch (IntNo) { |
| 2070 | default: break; |
| 2071 | case Intrinsic::x86_avx2_gather_d_pd: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2072 | case Intrinsic::x86_avx2_gather_d_pd_256: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2073 | case Intrinsic::x86_avx2_gather_q_pd: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2074 | case Intrinsic::x86_avx2_gather_q_pd_256: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2075 | case Intrinsic::x86_avx2_gather_d_ps: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2076 | case Intrinsic::x86_avx2_gather_d_ps_256: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2077 | case Intrinsic::x86_avx2_gather_q_ps: |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2078 | case Intrinsic::x86_avx2_gather_q_ps_256: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2079 | case Intrinsic::x86_avx2_gather_d_q: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2080 | case Intrinsic::x86_avx2_gather_d_q_256: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2081 | case Intrinsic::x86_avx2_gather_q_q: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2082 | case Intrinsic::x86_avx2_gather_q_q_256: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2083 | case Intrinsic::x86_avx2_gather_d_d: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2084 | case Intrinsic::x86_avx2_gather_d_d_256: |
Manman Ren | 98a5bf2 | 2012-06-29 00:54:20 +0000 | [diff] [blame] | 2085 | case Intrinsic::x86_avx2_gather_q_d: |
Craig Topper | def044b | 2012-07-01 02:05:52 +0000 | [diff] [blame] | 2086 | case Intrinsic::x86_avx2_gather_q_d_256: { |
Michael Liao | 00b20cc | 2013-06-05 18:12:26 +0000 | [diff] [blame] | 2087 | if (!Subtarget->hasAVX2()) |
| 2088 | break; |
Craig Topper | def044b | 2012-07-01 02:05:52 +0000 | [diff] [blame] | 2089 | unsigned Opc; |
| 2090 | switch (IntNo) { |
Craig Topper | 3af251d | 2012-07-01 02:55:34 +0000 | [diff] [blame] | 2091 | default: llvm_unreachable("Impossible intrinsic"); |
Craig Topper | def044b | 2012-07-01 02:05:52 +0000 | [diff] [blame] | 2092 | case Intrinsic::x86_avx2_gather_d_pd: Opc = X86::VGATHERDPDrm; break; |
| 2093 | case Intrinsic::x86_avx2_gather_d_pd_256: Opc = X86::VGATHERDPDYrm; break; |
| 2094 | case Intrinsic::x86_avx2_gather_q_pd: Opc = X86::VGATHERQPDrm; break; |
| 2095 | case Intrinsic::x86_avx2_gather_q_pd_256: Opc = X86::VGATHERQPDYrm; break; |
| 2096 | case Intrinsic::x86_avx2_gather_d_ps: Opc = X86::VGATHERDPSrm; break; |
| 2097 | case Intrinsic::x86_avx2_gather_d_ps_256: Opc = X86::VGATHERDPSYrm; break; |
| 2098 | case Intrinsic::x86_avx2_gather_q_ps: Opc = X86::VGATHERQPSrm; break; |
| 2099 | case Intrinsic::x86_avx2_gather_q_ps_256: Opc = X86::VGATHERQPSYrm; break; |
| 2100 | case Intrinsic::x86_avx2_gather_d_q: Opc = X86::VPGATHERDQrm; break; |
| 2101 | case Intrinsic::x86_avx2_gather_d_q_256: Opc = X86::VPGATHERDQYrm; break; |
| 2102 | case Intrinsic::x86_avx2_gather_q_q: Opc = X86::VPGATHERQQrm; break; |
| 2103 | case Intrinsic::x86_avx2_gather_q_q_256: Opc = X86::VPGATHERQQYrm; break; |
| 2104 | case Intrinsic::x86_avx2_gather_d_d: Opc = X86::VPGATHERDDrm; break; |
| 2105 | case Intrinsic::x86_avx2_gather_d_d_256: Opc = X86::VPGATHERDDYrm; break; |
| 2106 | case Intrinsic::x86_avx2_gather_q_d: Opc = X86::VPGATHERQDrm; break; |
| 2107 | case Intrinsic::x86_avx2_gather_q_d_256: Opc = X86::VPGATHERQDYrm; break; |
| 2108 | } |
Craig Topper | fbb954f7 | 2012-07-01 02:17:08 +0000 | [diff] [blame] | 2109 | SDNode *RetVal = SelectGather(Node, Opc); |
| 2110 | if (RetVal) |
Craig Topper | f7755df | 2012-07-12 06:52:41 +0000 | [diff] [blame] | 2111 | // We already called ReplaceUses inside SelectGather. |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2112 | return nullptr; |
Craig Topper | e15e5f7 | 2012-07-01 02:18:18 +0000 | [diff] [blame] | 2113 | break; |
Craig Topper | def044b | 2012-07-01 02:05:52 +0000 | [diff] [blame] | 2114 | } |
Manman Ren | a098204 | 2012-06-26 19:47:59 +0000 | [diff] [blame] | 2115 | } |
| 2116 | break; |
| 2117 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2118 | case X86ISD::GlobalBaseReg: |
| 2119 | return getGlobalBaseReg(); |
Evan Cheng | e0ed6ec | 2006-02-23 20:41:18 +0000 | [diff] [blame] | 2120 | |
Craig Topper | 3af251d | 2012-07-01 02:55:34 +0000 | [diff] [blame] | 2121 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2122 | case X86ISD::ATOMOR64_DAG: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2123 | case X86ISD::ATOMXOR64_DAG: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2124 | case X86ISD::ATOMADD64_DAG: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2125 | case X86ISD::ATOMSUB64_DAG: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2126 | case X86ISD::ATOMNAND64_DAG: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2127 | case X86ISD::ATOMAND64_DAG: |
Michael Liao | de51caf | 2012-09-25 18:08:13 +0000 | [diff] [blame] | 2128 | case X86ISD::ATOMMAX64_DAG: |
| 2129 | case X86ISD::ATOMMIN64_DAG: |
| 2130 | case X86ISD::ATOMUMAX64_DAG: |
| 2131 | case X86ISD::ATOMUMIN64_DAG: |
Craig Topper | 3af251d | 2012-07-01 02:55:34 +0000 | [diff] [blame] | 2132 | case X86ISD::ATOMSWAP64_DAG: { |
| 2133 | unsigned Opc; |
| 2134 | switch (Opcode) { |
Craig Topper | 22cb0c5 | 2012-08-11 17:44:14 +0000 | [diff] [blame] | 2135 | default: llvm_unreachable("Impossible opcode"); |
Craig Topper | 3af251d | 2012-07-01 02:55:34 +0000 | [diff] [blame] | 2136 | case X86ISD::ATOMOR64_DAG: Opc = X86::ATOMOR6432; break; |
| 2137 | case X86ISD::ATOMXOR64_DAG: Opc = X86::ATOMXOR6432; break; |
| 2138 | case X86ISD::ATOMADD64_DAG: Opc = X86::ATOMADD6432; break; |
| 2139 | case X86ISD::ATOMSUB64_DAG: Opc = X86::ATOMSUB6432; break; |
| 2140 | case X86ISD::ATOMNAND64_DAG: Opc = X86::ATOMNAND6432; break; |
| 2141 | case X86ISD::ATOMAND64_DAG: Opc = X86::ATOMAND6432; break; |
Michael Liao | de51caf | 2012-09-25 18:08:13 +0000 | [diff] [blame] | 2142 | case X86ISD::ATOMMAX64_DAG: Opc = X86::ATOMMAX6432; break; |
| 2143 | case X86ISD::ATOMMIN64_DAG: Opc = X86::ATOMMIN6432; break; |
| 2144 | case X86ISD::ATOMUMAX64_DAG: Opc = X86::ATOMUMAX6432; break; |
| 2145 | case X86ISD::ATOMUMIN64_DAG: Opc = X86::ATOMUMIN6432; break; |
Craig Topper | 3af251d | 2012-07-01 02:55:34 +0000 | [diff] [blame] | 2146 | case X86ISD::ATOMSWAP64_DAG: Opc = X86::ATOMSWAP6432; break; |
| 2147 | } |
| 2148 | SDNode *RetVal = SelectAtomic64(Node, Opc); |
| 2149 | if (RetVal) |
| 2150 | return RetVal; |
| 2151 | break; |
| 2152 | } |
Dale Johannesen | 867d549 | 2008-10-02 18:53:47 +0000 | [diff] [blame] | 2153 | |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 2154 | case ISD::ATOMIC_LOAD_XOR: |
| 2155 | case ISD::ATOMIC_LOAD_AND: |
Michael Liao | 8372539 | 2012-09-19 19:36:58 +0000 | [diff] [blame] | 2156 | case ISD::ATOMIC_LOAD_OR: |
| 2157 | case ISD::ATOMIC_LOAD_ADD: { |
Eric Christopher | a1d9e29 | 2011-05-17 08:10:18 +0000 | [diff] [blame] | 2158 | SDNode *RetVal = SelectAtomicLoadArith(Node, NVT); |
Eric Christopher | 4a34e61 | 2011-05-10 23:57:45 +0000 | [diff] [blame] | 2159 | if (RetVal) |
| 2160 | return RetVal; |
| 2161 | break; |
| 2162 | } |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2163 | case ISD::AND: |
| 2164 | case ISD::OR: |
| 2165 | case ISD::XOR: { |
| 2166 | // For operations of the form (x << C1) op C2, check if we can use a smaller |
| 2167 | // encoding for C2 by transforming it into (x op (C2>>C1)) << C1. |
| 2168 | SDValue N0 = Node->getOperand(0); |
| 2169 | SDValue N1 = Node->getOperand(1); |
| 2170 | |
| 2171 | if (N0->getOpcode() != ISD::SHL || !N0->hasOneUse()) |
| 2172 | break; |
| 2173 | |
| 2174 | // i8 is unshrinkable, i16 should be promoted to i32. |
| 2175 | if (NVT != MVT::i32 && NVT != MVT::i64) |
| 2176 | break; |
| 2177 | |
| 2178 | ConstantSDNode *Cst = dyn_cast<ConstantSDNode>(N1); |
| 2179 | ConstantSDNode *ShlCst = dyn_cast<ConstantSDNode>(N0->getOperand(1)); |
| 2180 | if (!Cst || !ShlCst) |
| 2181 | break; |
| 2182 | |
| 2183 | int64_t Val = Cst->getSExtValue(); |
| 2184 | uint64_t ShlVal = ShlCst->getZExtValue(); |
| 2185 | |
| 2186 | // Make sure that we don't change the operation by removing bits. |
| 2187 | // This only matters for OR and XOR, AND is unaffected. |
Richard Smith | 228e6d4 | 2012-08-24 23:29:28 +0000 | [diff] [blame] | 2188 | uint64_t RemovedBitsMask = (1ULL << ShlVal) - 1; |
| 2189 | if (Opcode != ISD::AND && (Val & RemovedBitsMask) != 0) |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2190 | break; |
| 2191 | |
Craig Topper | 22cb0c5 | 2012-08-11 17:44:14 +0000 | [diff] [blame] | 2192 | unsigned ShlOp, Op; |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2193 | MVT CstVT = NVT; |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2194 | |
| 2195 | // Check the minimum bitwidth for the new constant. |
| 2196 | // TODO: AND32ri is the same as AND64ri32 with zext imm. |
| 2197 | // TODO: MOV32ri+OR64r is cheaper than MOV64ri64+OR64rr |
| 2198 | // TODO: Using 16 and 8 bit operations is also possible for or32 & xor32. |
| 2199 | if (!isInt<8>(Val) && isInt<8>(Val >> ShlVal)) |
| 2200 | CstVT = MVT::i8; |
| 2201 | else if (!isInt<32>(Val) && isInt<32>(Val >> ShlVal)) |
| 2202 | CstVT = MVT::i32; |
| 2203 | |
| 2204 | // Bail if there is no smaller encoding. |
| 2205 | if (NVT == CstVT) |
| 2206 | break; |
| 2207 | |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2208 | switch (NVT.SimpleTy) { |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2209 | default: llvm_unreachable("Unsupported VT!"); |
| 2210 | case MVT::i32: |
| 2211 | assert(CstVT == MVT::i8); |
| 2212 | ShlOp = X86::SHL32ri; |
| 2213 | |
| 2214 | switch (Opcode) { |
Craig Topper | 22cb0c5 | 2012-08-11 17:44:14 +0000 | [diff] [blame] | 2215 | default: llvm_unreachable("Impossible opcode"); |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2216 | case ISD::AND: Op = X86::AND32ri8; break; |
| 2217 | case ISD::OR: Op = X86::OR32ri8; break; |
| 2218 | case ISD::XOR: Op = X86::XOR32ri8; break; |
| 2219 | } |
| 2220 | break; |
| 2221 | case MVT::i64: |
| 2222 | assert(CstVT == MVT::i8 || CstVT == MVT::i32); |
| 2223 | ShlOp = X86::SHL64ri; |
| 2224 | |
| 2225 | switch (Opcode) { |
Craig Topper | 22cb0c5 | 2012-08-11 17:44:14 +0000 | [diff] [blame] | 2226 | default: llvm_unreachable("Impossible opcode"); |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2227 | case ISD::AND: Op = CstVT==MVT::i8? X86::AND64ri8 : X86::AND64ri32; break; |
| 2228 | case ISD::OR: Op = CstVT==MVT::i8? X86::OR64ri8 : X86::OR64ri32; break; |
| 2229 | case ISD::XOR: Op = CstVT==MVT::i8? X86::XOR64ri8 : X86::XOR64ri32; break; |
| 2230 | } |
| 2231 | break; |
| 2232 | } |
| 2233 | |
| 2234 | // Emit the smaller op and the shift. |
| 2235 | SDValue NewCst = CurDAG->getTargetConstant(Val >> ShlVal, CstVT); |
| 2236 | SDNode *New = CurDAG->getMachineNode(Op, dl, NVT, N0->getOperand(0),NewCst); |
| 2237 | return CurDAG->SelectNodeTo(Node, ShlOp, NVT, SDValue(New, 0), |
| 2238 | getI8Imm(ShlVal)); |
Benjamin Kramer | 4c81624 | 2011-04-22 15:30:40 +0000 | [diff] [blame] | 2239 | } |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2240 | case X86ISD::UMUL: { |
| 2241 | SDValue N0 = Node->getOperand(0); |
| 2242 | SDValue N1 = Node->getOperand(1); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2243 | |
Ted Kremenek | b5241b2 | 2011-01-14 22:34:13 +0000 | [diff] [blame] | 2244 | unsigned LoReg; |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2245 | switch (NVT.SimpleTy) { |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2246 | default: llvm_unreachable("Unsupported VT!"); |
Ted Kremenek | b5241b2 | 2011-01-14 22:34:13 +0000 | [diff] [blame] | 2247 | case MVT::i8: LoReg = X86::AL; Opc = X86::MUL8r; break; |
| 2248 | case MVT::i16: LoReg = X86::AX; Opc = X86::MUL16r; break; |
| 2249 | case MVT::i32: LoReg = X86::EAX; Opc = X86::MUL32r; break; |
| 2250 | case MVT::i64: LoReg = X86::RAX; Opc = X86::MUL64r; break; |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2251 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2252 | |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2253 | SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, LoReg, |
| 2254 | N0, SDValue()).getValue(1); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2255 | |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2256 | SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::i32); |
| 2257 | SDValue Ops[] = {N1, InFlag}; |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2258 | SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops); |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2259 | |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2260 | ReplaceUses(SDValue(Node, 0), SDValue(CNode, 0)); |
| 2261 | ReplaceUses(SDValue(Node, 1), SDValue(CNode, 1)); |
| 2262 | ReplaceUses(SDValue(Node, 2), SDValue(CNode, 2)); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2263 | return nullptr; |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2264 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2265 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2266 | case ISD::SMUL_LOHI: |
| 2267 | case ISD::UMUL_LOHI: { |
| 2268 | SDValue N0 = Node->getOperand(0); |
| 2269 | SDValue N1 = Node->getOperand(1); |
| 2270 | |
| 2271 | bool isSigned = Opcode == ISD::SMUL_LOHI; |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2272 | bool hasBMI2 = Subtarget->hasBMI2(); |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2273 | if (!isSigned) { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2274 | switch (NVT.SimpleTy) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2275 | default: llvm_unreachable("Unsupported VT!"); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2276 | case MVT::i8: Opc = X86::MUL8r; MOpc = X86::MUL8m; break; |
| 2277 | case MVT::i16: Opc = X86::MUL16r; MOpc = X86::MUL16m; break; |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2278 | case MVT::i32: Opc = hasBMI2 ? X86::MULX32rr : X86::MUL32r; |
| 2279 | MOpc = hasBMI2 ? X86::MULX32rm : X86::MUL32m; break; |
| 2280 | case MVT::i64: Opc = hasBMI2 ? X86::MULX64rr : X86::MUL64r; |
| 2281 | MOpc = hasBMI2 ? X86::MULX64rm : X86::MUL64m; break; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2282 | } |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2283 | } else { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2284 | switch (NVT.SimpleTy) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2285 | default: llvm_unreachable("Unsupported VT!"); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2286 | case MVT::i8: Opc = X86::IMUL8r; MOpc = X86::IMUL8m; break; |
| 2287 | case MVT::i16: Opc = X86::IMUL16r; MOpc = X86::IMUL16m; break; |
| 2288 | case MVT::i32: Opc = X86::IMUL32r; MOpc = X86::IMUL32m; break; |
| 2289 | case MVT::i64: Opc = X86::IMUL64r; MOpc = X86::IMUL64m; break; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2290 | } |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2291 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2292 | |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2293 | unsigned SrcReg, LoReg, HiReg; |
| 2294 | switch (Opc) { |
| 2295 | default: llvm_unreachable("Unknown MUL opcode!"); |
| 2296 | case X86::IMUL8r: |
| 2297 | case X86::MUL8r: |
| 2298 | SrcReg = LoReg = X86::AL; HiReg = X86::AH; |
| 2299 | break; |
| 2300 | case X86::IMUL16r: |
| 2301 | case X86::MUL16r: |
| 2302 | SrcReg = LoReg = X86::AX; HiReg = X86::DX; |
| 2303 | break; |
| 2304 | case X86::IMUL32r: |
| 2305 | case X86::MUL32r: |
| 2306 | SrcReg = LoReg = X86::EAX; HiReg = X86::EDX; |
| 2307 | break; |
| 2308 | case X86::IMUL64r: |
| 2309 | case X86::MUL64r: |
| 2310 | SrcReg = LoReg = X86::RAX; HiReg = X86::RDX; |
| 2311 | break; |
| 2312 | case X86::MULX32rr: |
| 2313 | SrcReg = X86::EDX; LoReg = HiReg = 0; |
| 2314 | break; |
| 2315 | case X86::MULX64rr: |
| 2316 | SrcReg = X86::RDX; LoReg = HiReg = 0; |
| 2317 | break; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2318 | } |
| 2319 | |
| 2320 | SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4; |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2321 | bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4); |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2322 | // Multiply is commmutative. |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2323 | if (!foldedLoad) { |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2324 | foldedLoad = TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2325 | if (foldedLoad) |
| 2326 | std::swap(N0, N1); |
| 2327 | } |
| 2328 | |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2329 | SDValue InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, SrcReg, |
Craig Topper | a4fd6d6 | 2012-05-23 05:44:51 +0000 | [diff] [blame] | 2330 | N0, SDValue()).getValue(1); |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2331 | SDValue ResHi, ResLo; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2332 | |
| 2333 | if (foldedLoad) { |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2334 | SDValue Chain; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2335 | SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0), |
| 2336 | InFlag }; |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2337 | if (MOpc == X86::MULX32rm || MOpc == X86::MULX64rm) { |
| 2338 | SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Other, MVT::Glue); |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2339 | SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops); |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2340 | ResHi = SDValue(CNode, 0); |
| 2341 | ResLo = SDValue(CNode, 1); |
| 2342 | Chain = SDValue(CNode, 2); |
| 2343 | InFlag = SDValue(CNode, 3); |
| 2344 | } else { |
| 2345 | SDVTList VTs = CurDAG->getVTList(MVT::Other, MVT::Glue); |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2346 | SDNode *CNode = CurDAG->getMachineNode(MOpc, dl, VTs, Ops); |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2347 | Chain = SDValue(CNode, 0); |
| 2348 | InFlag = SDValue(CNode, 1); |
| 2349 | } |
Chris Lattner | 364bb0a | 2010-12-05 07:30:36 +0000 | [diff] [blame] | 2350 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2351 | // Update the chain. |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2352 | ReplaceUses(N1.getValue(1), Chain); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2353 | } else { |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2354 | SDValue Ops[] = { N1, InFlag }; |
| 2355 | if (Opc == X86::MULX32rr || Opc == X86::MULX64rr) { |
| 2356 | SDVTList VTs = CurDAG->getVTList(NVT, NVT, MVT::Glue); |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2357 | SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops); |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2358 | ResHi = SDValue(CNode, 0); |
| 2359 | ResLo = SDValue(CNode, 1); |
| 2360 | InFlag = SDValue(CNode, 2); |
| 2361 | } else { |
| 2362 | SDVTList VTs = CurDAG->getVTList(MVT::Glue); |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2363 | SDNode *CNode = CurDAG->getMachineNode(Opc, dl, VTs, Ops); |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2364 | InFlag = SDValue(CNode, 0); |
| 2365 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2366 | } |
| 2367 | |
Jakob Stoklund Olesen | d7d0d4e | 2010-06-26 00:39:23 +0000 | [diff] [blame] | 2368 | // Prevent use of AH in a REX instruction by referencing AX instead. |
| 2369 | if (HiReg == X86::AH && Subtarget->is64Bit() && |
| 2370 | !SDValue(Node, 1).use_empty()) { |
| 2371 | SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, |
| 2372 | X86::AX, MVT::i16, InFlag); |
| 2373 | InFlag = Result.getValue(2); |
| 2374 | // Get the low part if needed. Don't use getCopyFromReg for aliasing |
| 2375 | // registers. |
| 2376 | if (!SDValue(Node, 0).use_empty()) |
| 2377 | ReplaceUses(SDValue(Node, 1), |
| 2378 | CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result)); |
| 2379 | |
| 2380 | // Shift AX down 8 bits. |
| 2381 | Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16, |
| 2382 | Result, |
| 2383 | CurDAG->getTargetConstant(8, MVT::i8)), 0); |
| 2384 | // Then truncate it down to i8. |
| 2385 | ReplaceUses(SDValue(Node, 1), |
| 2386 | CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result)); |
| 2387 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2388 | // Copy the low half of the result, if it is needed. |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2389 | if (!SDValue(Node, 0).use_empty()) { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2390 | if (!ResLo.getNode()) { |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2391 | assert(LoReg && "Register for low half is not defined!"); |
| 2392 | ResLo = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, LoReg, NVT, |
| 2393 | InFlag); |
| 2394 | InFlag = ResLo.getValue(2); |
| 2395 | } |
| 2396 | ReplaceUses(SDValue(Node, 0), ResLo); |
| 2397 | DEBUG(dbgs() << "=> "; ResLo.getNode()->dump(CurDAG); dbgs() << '\n'); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2398 | } |
| 2399 | // Copy the high half of the result, if it is needed. |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2400 | if (!SDValue(Node, 1).use_empty()) { |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2401 | if (!ResHi.getNode()) { |
Michael Liao | f9f7b55 | 2012-09-26 08:22:37 +0000 | [diff] [blame] | 2402 | assert(HiReg && "Register for high half is not defined!"); |
| 2403 | ResHi = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, HiReg, NVT, |
| 2404 | InFlag); |
| 2405 | InFlag = ResHi.getValue(2); |
| 2406 | } |
| 2407 | ReplaceUses(SDValue(Node, 1), ResHi); |
| 2408 | DEBUG(dbgs() << "=> "; ResHi.getNode()->dump(CurDAG); dbgs() << '\n'); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2409 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2410 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2411 | return nullptr; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2412 | } |
| 2413 | |
| 2414 | case ISD::SDIVREM: |
| 2415 | case ISD::UDIVREM: { |
| 2416 | SDValue N0 = Node->getOperand(0); |
| 2417 | SDValue N1 = Node->getOperand(1); |
| 2418 | |
| 2419 | bool isSigned = Opcode == ISD::SDIVREM; |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2420 | if (!isSigned) { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2421 | switch (NVT.SimpleTy) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2422 | default: llvm_unreachable("Unsupported VT!"); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2423 | case MVT::i8: Opc = X86::DIV8r; MOpc = X86::DIV8m; break; |
| 2424 | case MVT::i16: Opc = X86::DIV16r; MOpc = X86::DIV16m; break; |
| 2425 | case MVT::i32: Opc = X86::DIV32r; MOpc = X86::DIV32m; break; |
| 2426 | case MVT::i64: Opc = X86::DIV64r; MOpc = X86::DIV64m; break; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2427 | } |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2428 | } else { |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2429 | switch (NVT.SimpleTy) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2430 | default: llvm_unreachable("Unsupported VT!"); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2431 | case MVT::i8: Opc = X86::IDIV8r; MOpc = X86::IDIV8m; break; |
| 2432 | case MVT::i16: Opc = X86::IDIV16r; MOpc = X86::IDIV16m; break; |
| 2433 | case MVT::i32: Opc = X86::IDIV32r; MOpc = X86::IDIV32m; break; |
| 2434 | case MVT::i64: Opc = X86::IDIV64r; MOpc = X86::IDIV64m; break; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2435 | } |
Bill Wendling | fe3bdb4 | 2009-08-07 21:33:25 +0000 | [diff] [blame] | 2436 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2437 | |
Chris Lattner | 518b037 | 2009-12-23 01:45:04 +0000 | [diff] [blame] | 2438 | unsigned LoReg, HiReg, ClrReg; |
Tim Northover | 64ec0ff | 2013-05-30 13:19:42 +0000 | [diff] [blame] | 2439 | unsigned SExtOpcode; |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2440 | switch (NVT.SimpleTy) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2441 | default: llvm_unreachable("Unsupported VT!"); |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2442 | case MVT::i8: |
Chris Lattner | 518b037 | 2009-12-23 01:45:04 +0000 | [diff] [blame] | 2443 | LoReg = X86::AL; ClrReg = HiReg = X86::AH; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2444 | SExtOpcode = X86::CBW; |
| 2445 | break; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2446 | case MVT::i16: |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2447 | LoReg = X86::AX; HiReg = X86::DX; |
Tim Northover | 64ec0ff | 2013-05-30 13:19:42 +0000 | [diff] [blame] | 2448 | ClrReg = X86::DX; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2449 | SExtOpcode = X86::CWD; |
| 2450 | break; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2451 | case MVT::i32: |
Chris Lattner | 518b037 | 2009-12-23 01:45:04 +0000 | [diff] [blame] | 2452 | LoReg = X86::EAX; ClrReg = HiReg = X86::EDX; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2453 | SExtOpcode = X86::CDQ; |
| 2454 | break; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2455 | case MVT::i64: |
Chris Lattner | 518b037 | 2009-12-23 01:45:04 +0000 | [diff] [blame] | 2456 | LoReg = X86::RAX; ClrReg = HiReg = X86::RDX; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2457 | SExtOpcode = X86::CQO; |
Evan Cheng | e62288f | 2009-07-30 08:33:02 +0000 | [diff] [blame] | 2458 | break; |
| 2459 | } |
| 2460 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2461 | SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4; |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2462 | bool foldedLoad = TryFoldLoad(Node, N1, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2463 | bool signBitIsZero = CurDAG->SignBitIsZero(N0); |
Dan Gohman | a160361 | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2464 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2465 | SDValue InFlag; |
Owen Anderson | 9f94459 | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2466 | if (NVT == MVT::i8 && (!isSigned || signBitIsZero)) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2467 | // Special case for div8, just use a move with zero extension to AX to |
| 2468 | // clear the upper 8 bits (AH). |
| 2469 | SDValue Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, Move, Chain; |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2470 | if (TryFoldLoad(Node, N0, Tmp0, Tmp1, Tmp2, Tmp3, Tmp4)) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2471 | SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N0.getOperand(0) }; |
| 2472 | Move = |
Stuart Hastings | 91f1d24 | 2011-05-20 19:04:40 +0000 | [diff] [blame] | 2473 | SDValue(CurDAG->getMachineNode(X86::MOVZX32rm8, dl, MVT::i32, |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2474 | MVT::Other, Ops), 0); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2475 | Chain = Move.getValue(1); |
| 2476 | ReplaceUses(N0.getValue(1), Chain); |
Evan Cheng | 10d2790 | 2006-01-06 20:36:21 +0000 | [diff] [blame] | 2477 | } else { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2478 | Move = |
Stuart Hastings | 91f1d24 | 2011-05-20 19:04:40 +0000 | [diff] [blame] | 2479 | SDValue(CurDAG->getMachineNode(X86::MOVZX32rr8, dl, MVT::i32, N0),0); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2480 | Chain = CurDAG->getEntryNode(); |
| 2481 | } |
Stuart Hastings | 91f1d24 | 2011-05-20 19:04:40 +0000 | [diff] [blame] | 2482 | Chain = CurDAG->getCopyToReg(Chain, dl, X86::EAX, Move, SDValue()); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2483 | InFlag = Chain.getValue(1); |
| 2484 | } else { |
| 2485 | InFlag = |
| 2486 | CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, |
| 2487 | LoReg, N0, SDValue()).getValue(1); |
| 2488 | if (isSigned && !signBitIsZero) { |
| 2489 | // Sign extend the low part into the high part. |
Evan Cheng | d1b82d8 | 2006-02-09 07:17:49 +0000 | [diff] [blame] | 2490 | InFlag = |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2491 | SDValue(CurDAG->getMachineNode(SExtOpcode, dl, MVT::Glue, InFlag),0); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2492 | } else { |
| 2493 | // Zero out the high part, effectively zero extending the input. |
Tim Northover | 64ec0ff | 2013-05-30 13:19:42 +0000 | [diff] [blame] | 2494 | SDValue ClrNode = SDValue(CurDAG->getMachineNode(X86::MOV32r0, dl, NVT), 0); |
Craig Topper | 83e042a | 2013-08-15 05:57:07 +0000 | [diff] [blame] | 2495 | switch (NVT.SimpleTy) { |
Tim Northover | 64ec0ff | 2013-05-30 13:19:42 +0000 | [diff] [blame] | 2496 | case MVT::i16: |
| 2497 | ClrNode = |
| 2498 | SDValue(CurDAG->getMachineNode( |
| 2499 | TargetOpcode::EXTRACT_SUBREG, dl, MVT::i16, ClrNode, |
| 2500 | CurDAG->getTargetConstant(X86::sub_16bit, MVT::i32)), |
| 2501 | 0); |
| 2502 | break; |
| 2503 | case MVT::i32: |
| 2504 | break; |
| 2505 | case MVT::i64: |
| 2506 | ClrNode = |
| 2507 | SDValue(CurDAG->getMachineNode( |
| 2508 | TargetOpcode::SUBREG_TO_REG, dl, MVT::i64, |
| 2509 | CurDAG->getTargetConstant(0, MVT::i64), ClrNode, |
| 2510 | CurDAG->getTargetConstant(X86::sub_32bit, MVT::i32)), |
| 2511 | 0); |
| 2512 | break; |
| 2513 | default: |
| 2514 | llvm_unreachable("Unexpected division source"); |
| 2515 | } |
| 2516 | |
Chris Lattner | 518b037 | 2009-12-23 01:45:04 +0000 | [diff] [blame] | 2517 | InFlag = CurDAG->getCopyToReg(CurDAG->getEntryNode(), dl, ClrReg, |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2518 | ClrNode, InFlag).getValue(1); |
Dan Gohman | a160361 | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2519 | } |
Evan Cheng | 92e2797 | 2006-01-06 23:19:29 +0000 | [diff] [blame] | 2520 | } |
Dan Gohman | a160361 | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2521 | |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2522 | if (foldedLoad) { |
| 2523 | SDValue Ops[] = { Tmp0, Tmp1, Tmp2, Tmp3, Tmp4, N1.getOperand(0), |
| 2524 | InFlag }; |
| 2525 | SDNode *CNode = |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2526 | CurDAG->getMachineNode(MOpc, dl, MVT::Other, MVT::Glue, Ops); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2527 | InFlag = SDValue(CNode, 1); |
| 2528 | // Update the chain. |
| 2529 | ReplaceUses(N1.getValue(1), SDValue(CNode, 0)); |
| 2530 | } else { |
| 2531 | InFlag = |
Chris Lattner | 3e5fbd7 | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2532 | SDValue(CurDAG->getMachineNode(Opc, dl, MVT::Glue, N1, InFlag), 0); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2533 | } |
Evan Cheng | 92e2797 | 2006-01-06 23:19:29 +0000 | [diff] [blame] | 2534 | |
Jakob Stoklund Olesen | d7d0d4e | 2010-06-26 00:39:23 +0000 | [diff] [blame] | 2535 | // Prevent use of AH in a REX instruction by referencing AX instead. |
| 2536 | // Shift it down 8 bits. |
Jim Grosbach | 340b6da | 2013-07-09 02:07:28 +0000 | [diff] [blame] | 2537 | // |
| 2538 | // The current assumption of the register allocator is that isel |
| 2539 | // won't generate explicit references to the GPR8_NOREX registers. If |
| 2540 | // the allocator and/or the backend get enhanced to be more robust in |
| 2541 | // that regard, this can be, and should be, removed. |
Jakob Stoklund Olesen | d7d0d4e | 2010-06-26 00:39:23 +0000 | [diff] [blame] | 2542 | if (HiReg == X86::AH && Subtarget->is64Bit() && |
| 2543 | !SDValue(Node, 1).use_empty()) { |
| 2544 | SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, |
| 2545 | X86::AX, MVT::i16, InFlag); |
| 2546 | InFlag = Result.getValue(2); |
| 2547 | |
| 2548 | // If we also need AL (the quotient), get it by extracting a subreg from |
| 2549 | // Result. The fast register allocator does not like multiple CopyFromReg |
| 2550 | // nodes using aliasing registers. |
| 2551 | if (!SDValue(Node, 0).use_empty()) |
| 2552 | ReplaceUses(SDValue(Node, 0), |
| 2553 | CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result)); |
| 2554 | |
| 2555 | // Shift AX right by 8 bits instead of using AH. |
| 2556 | Result = SDValue(CurDAG->getMachineNode(X86::SHR16ri, dl, MVT::i16, |
| 2557 | Result, |
| 2558 | CurDAG->getTargetConstant(8, MVT::i8)), |
| 2559 | 0); |
| 2560 | ReplaceUses(SDValue(Node, 1), |
| 2561 | CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, MVT::i8, Result)); |
| 2562 | } |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2563 | // Copy the division (low) result, if it is needed. |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2564 | if (!SDValue(Node, 0).use_empty()) { |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2565 | SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, |
| 2566 | LoReg, NVT, InFlag); |
| 2567 | InFlag = Result.getValue(2); |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2568 | ReplaceUses(SDValue(Node, 0), Result); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2569 | DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n'); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2570 | } |
| 2571 | // Copy the remainder (high) result, if it is needed. |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2572 | if (!SDValue(Node, 1).use_empty()) { |
Jakob Stoklund Olesen | d7d0d4e | 2010-06-26 00:39:23 +0000 | [diff] [blame] | 2573 | SDValue Result = CurDAG->getCopyFromReg(CurDAG->getEntryNode(), dl, |
| 2574 | HiReg, NVT, InFlag); |
| 2575 | InFlag = Result.getValue(2); |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2576 | ReplaceUses(SDValue(Node, 1), Result); |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2577 | DEBUG(dbgs() << "=> "; Result.getNode()->dump(CurDAG); dbgs() << '\n'); |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2578 | } |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2579 | return nullptr; |
Dan Gohman | 757eee8 | 2009-08-02 16:10:52 +0000 | [diff] [blame] | 2580 | } |
| 2581 | |
Manman Ren | 1be131b | 2012-08-08 00:51:41 +0000 | [diff] [blame] | 2582 | case X86ISD::CMP: |
| 2583 | case X86ISD::SUB: { |
| 2584 | // Sometimes a SUB is used to perform comparison. |
| 2585 | if (Opcode == X86ISD::SUB && Node->hasAnyUseOfValue(0)) |
| 2586 | // This node is not a CMP. |
| 2587 | break; |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2588 | SDValue N0 = Node->getOperand(0); |
| 2589 | SDValue N1 = Node->getOperand(1); |
| 2590 | |
| 2591 | // Look for (X86cmp (and $op, $imm), 0) and see if we can convert it to |
| 2592 | // use a smaller encoding. |
Eli Friedman | 39d0f57 | 2010-08-04 22:40:58 +0000 | [diff] [blame] | 2593 | if (N0.getOpcode() == ISD::TRUNCATE && N0.hasOneUse() && |
| 2594 | HasNoSignedComparisonUses(Node)) |
Evan Cheng | 050df1b | 2010-04-28 08:30:49 +0000 | [diff] [blame] | 2595 | // Look past the truncate if CMP is the only use of it. |
| 2596 | N0 = N0.getOperand(0); |
Dan Gohman | 198b7ff | 2011-11-03 21:49:52 +0000 | [diff] [blame] | 2597 | if ((N0.getNode()->getOpcode() == ISD::AND || |
| 2598 | (N0.getResNo() == 0 && N0.getNode()->getOpcode() == X86ISD::AND)) && |
| 2599 | N0.getNode()->hasOneUse() && |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2600 | N0.getValueType() != MVT::i8 && |
| 2601 | X86::isZeroNode(N1)) { |
| 2602 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0.getNode()->getOperand(1)); |
| 2603 | if (!C) break; |
| 2604 | |
| 2605 | // For example, convert "testl %eax, $8" to "testb %al, $8" |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 2606 | if ((C->getZExtValue() & ~UINT64_C(0xff)) == 0 && |
| 2607 | (!(C->getZExtValue() & 0x80) || |
| 2608 | HasNoSignedComparisonUses(Node))) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2609 | SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i8); |
| 2610 | SDValue Reg = N0.getNode()->getOperand(0); |
| 2611 | |
| 2612 | // On x86-32, only the ABCD registers have 8-bit subregisters. |
| 2613 | if (!Subtarget->is64Bit()) { |
Craig Topper | cc830f8 | 2012-02-22 07:28:11 +0000 | [diff] [blame] | 2614 | const TargetRegisterClass *TRC; |
Craig Topper | 5671010 | 2013-08-15 02:33:50 +0000 | [diff] [blame] | 2615 | switch (N0.getSimpleValueType().SimpleTy) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2616 | case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break; |
| 2617 | case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break; |
| 2618 | default: llvm_unreachable("Unsupported TEST operand type!"); |
| 2619 | } |
| 2620 | SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32); |
Dan Gohman | 32f71d7 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 2621 | Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl, |
| 2622 | Reg.getValueType(), Reg, RC), 0); |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2623 | } |
| 2624 | |
| 2625 | // Extract the l-register. |
Jakob Stoklund Olesen | 9340ea5 | 2010-05-24 14:48:17 +0000 | [diff] [blame] | 2626 | SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit, dl, |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2627 | MVT::i8, Reg); |
| 2628 | |
| 2629 | // Emit a testb. |
Manman Ren | 511c6d0 | 2012-09-28 18:53:24 +0000 | [diff] [blame] | 2630 | SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri, dl, MVT::i32, |
| 2631 | Subreg, Imm); |
| 2632 | // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has |
| 2633 | // one, do not call ReplaceAllUsesWith. |
| 2634 | ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)), |
| 2635 | SDValue(NewNode, 0)); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2636 | return nullptr; |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2637 | } |
| 2638 | |
| 2639 | // For example, "testl %eax, $2048" to "testb %ah, $8". |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 2640 | if ((C->getZExtValue() & ~UINT64_C(0xff00)) == 0 && |
| 2641 | (!(C->getZExtValue() & 0x8000) || |
| 2642 | HasNoSignedComparisonUses(Node))) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2643 | // Shift the immediate right by 8 bits. |
| 2644 | SDValue ShiftedImm = CurDAG->getTargetConstant(C->getZExtValue() >> 8, |
| 2645 | MVT::i8); |
| 2646 | SDValue Reg = N0.getNode()->getOperand(0); |
| 2647 | |
| 2648 | // Put the value in an ABCD register. |
Craig Topper | cc830f8 | 2012-02-22 07:28:11 +0000 | [diff] [blame] | 2649 | const TargetRegisterClass *TRC; |
Craig Topper | 5671010 | 2013-08-15 02:33:50 +0000 | [diff] [blame] | 2650 | switch (N0.getSimpleValueType().SimpleTy) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2651 | case MVT::i64: TRC = &X86::GR64_ABCDRegClass; break; |
| 2652 | case MVT::i32: TRC = &X86::GR32_ABCDRegClass; break; |
| 2653 | case MVT::i16: TRC = &X86::GR16_ABCDRegClass; break; |
| 2654 | default: llvm_unreachable("Unsupported TEST operand type!"); |
| 2655 | } |
| 2656 | SDValue RC = CurDAG->getTargetConstant(TRC->getID(), MVT::i32); |
Dan Gohman | 32f71d7 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 2657 | Reg = SDValue(CurDAG->getMachineNode(X86::COPY_TO_REGCLASS, dl, |
| 2658 | Reg.getValueType(), Reg, RC), 0); |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2659 | |
| 2660 | // Extract the h-register. |
Jakob Stoklund Olesen | 9340ea5 | 2010-05-24 14:48:17 +0000 | [diff] [blame] | 2661 | SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_8bit_hi, dl, |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2662 | MVT::i8, Reg); |
| 2663 | |
Jakob Stoklund Olesen | 729abd3 | 2011-10-08 18:28:28 +0000 | [diff] [blame] | 2664 | // Emit a testb. The EXTRACT_SUBREG becomes a COPY that can only |
| 2665 | // target GR8_NOREX registers, so make sure the register class is |
| 2666 | // forced. |
Manman Ren | 511c6d0 | 2012-09-28 18:53:24 +0000 | [diff] [blame] | 2667 | SDNode *NewNode = CurDAG->getMachineNode(X86::TEST8ri_NOREX, dl, |
| 2668 | MVT::i32, Subreg, ShiftedImm); |
| 2669 | // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has |
| 2670 | // one, do not call ReplaceAllUsesWith. |
| 2671 | ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)), |
| 2672 | SDValue(NewNode, 0)); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2673 | return nullptr; |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2674 | } |
| 2675 | |
| 2676 | // For example, "testl %eax, $32776" to "testw %ax, $32776". |
| 2677 | if ((C->getZExtValue() & ~UINT64_C(0xffff)) == 0 && |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 2678 | N0.getValueType() != MVT::i16 && |
| 2679 | (!(C->getZExtValue() & 0x8000) || |
| 2680 | HasNoSignedComparisonUses(Node))) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2681 | SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i16); |
| 2682 | SDValue Reg = N0.getNode()->getOperand(0); |
| 2683 | |
| 2684 | // Extract the 16-bit subregister. |
Jakob Stoklund Olesen | 9340ea5 | 2010-05-24 14:48:17 +0000 | [diff] [blame] | 2685 | SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_16bit, dl, |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2686 | MVT::i16, Reg); |
| 2687 | |
| 2688 | // Emit a testw. |
Manman Ren | 511c6d0 | 2012-09-28 18:53:24 +0000 | [diff] [blame] | 2689 | SDNode *NewNode = CurDAG->getMachineNode(X86::TEST16ri, dl, MVT::i32, |
| 2690 | Subreg, Imm); |
| 2691 | // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has |
| 2692 | // one, do not call ReplaceAllUsesWith. |
| 2693 | ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)), |
| 2694 | SDValue(NewNode, 0)); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2695 | return nullptr; |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2696 | } |
| 2697 | |
| 2698 | // For example, "testq %rax, $268468232" to "testl %eax, $268468232". |
| 2699 | if ((C->getZExtValue() & ~UINT64_C(0xffffffff)) == 0 && |
Dan Gohman | 7d9dffb | 2009-10-09 20:35:19 +0000 | [diff] [blame] | 2700 | N0.getValueType() == MVT::i64 && |
| 2701 | (!(C->getZExtValue() & 0x80000000) || |
| 2702 | HasNoSignedComparisonUses(Node))) { |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2703 | SDValue Imm = CurDAG->getTargetConstant(C->getZExtValue(), MVT::i32); |
| 2704 | SDValue Reg = N0.getNode()->getOperand(0); |
| 2705 | |
| 2706 | // Extract the 32-bit subregister. |
Jakob Stoklund Olesen | 9340ea5 | 2010-05-24 14:48:17 +0000 | [diff] [blame] | 2707 | SDValue Subreg = CurDAG->getTargetExtractSubreg(X86::sub_32bit, dl, |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2708 | MVT::i32, Reg); |
| 2709 | |
| 2710 | // Emit a testl. |
Manman Ren | 511c6d0 | 2012-09-28 18:53:24 +0000 | [diff] [blame] | 2711 | SDNode *NewNode = CurDAG->getMachineNode(X86::TEST32ri, dl, MVT::i32, |
| 2712 | Subreg, Imm); |
| 2713 | // Replace SUB|CMP with TEST, since SUB has two outputs while TEST has |
| 2714 | // one, do not call ReplaceAllUsesWith. |
| 2715 | ReplaceUses(SDValue(Node, (Opcode == X86ISD::SUB ? 1 : 0)), |
| 2716 | SDValue(NewNode, 0)); |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2717 | return nullptr; |
Dan Gohman | ac33a90 | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 2718 | } |
| 2719 | } |
| 2720 | break; |
| 2721 | } |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2722 | case ISD::STORE: { |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2723 | // Change a chain of {load; incr or dec; store} of the same value into |
| 2724 | // a simple increment or decrement through memory of that value, if the |
| 2725 | // uses of the modified value and its address are suitable. |
Pete Cooper | 48784ed | 2011-11-16 19:03:23 +0000 | [diff] [blame] | 2726 | // The DEC64m tablegen pattern is currently not able to match the case where |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2727 | // the EFLAGS on the original DEC are used. (This also applies to |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2728 | // {INC,DEC}X{64,32,16,8}.) |
| 2729 | // We'll need to improve tablegen to allow flags to be transferred from a |
Pete Cooper | 48784ed | 2011-11-16 19:03:23 +0000 | [diff] [blame] | 2730 | // node in the pattern to the result node. probably with a new keyword |
| 2731 | // for example, we have this |
| 2732 | // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst", |
| 2733 | // [(store (add (loadi64 addr:$dst), -1), addr:$dst), |
| 2734 | // (implicit EFLAGS)]>; |
| 2735 | // but maybe need something like this |
| 2736 | // def DEC64m : RI<0xFF, MRM1m, (outs), (ins i64mem:$dst), "dec{q}\t$dst", |
| 2737 | // [(store (add (loadi64 addr:$dst), -1), addr:$dst), |
| 2738 | // (transferrable EFLAGS)]>; |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2739 | |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2740 | StoreSDNode *StoreNode = cast<StoreSDNode>(Node); |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2741 | SDValue StoredVal = StoreNode->getOperand(1); |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2742 | unsigned Opc = StoredVal->getOpcode(); |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2743 | |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2744 | LoadSDNode *LoadNode = nullptr; |
Evan Cheng | 3e869f0 | 2012-04-12 19:14:21 +0000 | [diff] [blame] | 2745 | SDValue InputChain; |
| 2746 | if (!isLoadIncOrDecStore(StoreNode, Opc, StoredVal, CurDAG, |
| 2747 | LoadNode, InputChain)) |
| 2748 | break; |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2749 | |
| 2750 | SDValue Base, Scale, Index, Disp, Segment; |
| 2751 | if (!SelectAddr(LoadNode, LoadNode->getBasePtr(), |
| 2752 | Base, Scale, Index, Disp, Segment)) |
| 2753 | break; |
| 2754 | |
| 2755 | MachineSDNode::mmo_iterator MemOp = MF->allocateMemRefsArray(2); |
| 2756 | MemOp[0] = StoreNode->getMemOperand(); |
| 2757 | MemOp[1] = LoadNode->getMemOperand(); |
| 2758 | const SDValue Ops[] = { Base, Scale, Index, Disp, Segment, InputChain }; |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2759 | EVT LdVT = LoadNode->getMemoryVT(); |
Joel Jones | 68d59e8 | 2012-03-29 05:45:48 +0000 | [diff] [blame] | 2760 | unsigned newOpc = getFusedLdStOpcode(LdVT, Opc); |
| 2761 | MachineSDNode *Result = CurDAG->getMachineNode(newOpc, |
Andrew Trick | ef9de2a | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2762 | SDLoc(Node), |
Michael Liao | b53d896 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 2763 | MVT::i32, MVT::Other, Ops); |
Pete Cooper | 7c7ba1b | 2011-11-15 21:57:53 +0000 | [diff] [blame] | 2764 | Result->setMemRefs(MemOp, MemOp + 2); |
| 2765 | |
| 2766 | ReplaceUses(SDValue(StoreNode, 0), SDValue(Result, 1)); |
| 2767 | ReplaceUses(SDValue(StoredVal.getNode(), 1), SDValue(Result, 0)); |
| 2768 | |
| 2769 | return Result; |
| 2770 | } |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 2771 | } |
| 2772 | |
Dan Gohman | ea6f91f | 2010-01-05 01:24:18 +0000 | [diff] [blame] | 2773 | SDNode *ResNode = SelectCode(Node); |
Evan Cheng | bd1c5a8 | 2006-08-11 09:08:15 +0000 | [diff] [blame] | 2774 | |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2775 | DEBUG(dbgs() << "=> "; |
Craig Topper | e73658d | 2014-04-28 04:05:08 +0000 | [diff] [blame] | 2776 | if (ResNode == nullptr || ResNode == Node) |
Chris Lattner | f98f124 | 2010-03-02 06:34:30 +0000 | [diff] [blame] | 2777 | Node->dump(CurDAG); |
| 2778 | else |
| 2779 | ResNode->dump(CurDAG); |
| 2780 | dbgs() << '\n'); |
Evan Cheng | bd1c5a8 | 2006-08-11 09:08:15 +0000 | [diff] [blame] | 2781 | |
| 2782 | return ResNode; |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 2783 | } |
| 2784 | |
Chris Lattner | ba1ed58 | 2006-06-08 18:03:49 +0000 | [diff] [blame] | 2785 | bool X86DAGToDAGISel:: |
Dan Gohman | 2ce6f2a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2786 | SelectInlineAsmMemoryOperand(const SDValue &Op, char ConstraintCode, |
Dan Gohman | eb0cee9 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 2787 | std::vector<SDValue> &OutOps) { |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 2788 | SDValue Op0, Op1, Op2, Op3, Op4; |
Chris Lattner | ba1ed58 | 2006-06-08 18:03:49 +0000 | [diff] [blame] | 2789 | switch (ConstraintCode) { |
| 2790 | case 'o': // offsetable ?? |
| 2791 | case 'v': // not offsetable ?? |
| 2792 | default: return true; |
| 2793 | case 'm': // memory |
Craig Topper | 062a2ba | 2014-04-25 05:30:21 +0000 | [diff] [blame] | 2794 | if (!SelectAddr(nullptr, Op, Op0, Op1, Op2, Op3, Op4)) |
Chris Lattner | ba1ed58 | 2006-06-08 18:03:49 +0000 | [diff] [blame] | 2795 | return true; |
| 2796 | break; |
| 2797 | } |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2798 | |
Evan Cheng | 2d48722 | 2006-08-26 01:05:16 +0000 | [diff] [blame] | 2799 | OutOps.push_back(Op0); |
| 2800 | OutOps.push_back(Op1); |
| 2801 | OutOps.push_back(Op2); |
| 2802 | OutOps.push_back(Op3); |
Rafael Espindola | 3b2df10 | 2009-04-08 21:14:34 +0000 | [diff] [blame] | 2803 | OutOps.push_back(Op4); |
Chris Lattner | ba1ed58 | 2006-06-08 18:03:49 +0000 | [diff] [blame] | 2804 | return false; |
| 2805 | } |
| 2806 | |
Chad Rosier | 24c19d2 | 2012-08-01 18:39:17 +0000 | [diff] [blame] | 2807 | /// createX86ISelDag - This pass converts a legalized DAG into a |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 2808 | /// X86-specific DAG, ready for instruction scheduling. |
| 2809 | /// |
Bill Wendling | 026e5d7 | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 2810 | FunctionPass *llvm::createX86ISelDag(X86TargetMachine &TM, |
Craig Topper | f6e7e12 | 2012-03-27 07:21:54 +0000 | [diff] [blame] | 2811 | CodeGenOpt::Level OptLevel) { |
Bill Wendling | 084669a | 2009-04-29 00:15:41 +0000 | [diff] [blame] | 2812 | return new X86DAGToDAGISel(TM, OptLevel); |
Chris Lattner | 655e7df | 2005-11-16 01:54:32 +0000 | [diff] [blame] | 2813 | } |