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