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