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