Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1 | //===-- SelectionDAG.cpp - Implement the SelectionDAG data structures -----===// |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 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. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 10 | // This implements the SelectionDAG class. |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
Bill Wendling | e36025e | 2009-12-21 19:34:59 +0000 | [diff] [blame] | 13 | |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 14 | #include "llvm/CodeGen/SelectionDAG.h" |
Evan Cheng | a8efe28 | 2010-03-14 19:56:39 +0000 | [diff] [blame] | 15 | #include "SDNodeDbgValue.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/SetVector.h" |
| 17 | #include "llvm/ADT/SmallPtrSet.h" |
| 18 | #include "llvm/ADT/SmallSet.h" |
| 19 | #include "llvm/ADT/SmallVector.h" |
| 20 | #include "llvm/ADT/StringExtras.h" |
Chandler Carruth | be04929 | 2013-01-07 03:08:10 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/TargetTransformInfo.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/ValueTracking.h" |
| 23 | #include "llvm/Assembly/Writer.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/CodeGen/MachineBasicBlock.h" |
| 25 | #include "llvm/CodeGen/MachineConstantPool.h" |
| 26 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 27 | #include "llvm/CodeGen/MachineModuleInfo.h" |
Bill Wendling | 0bcbd1d | 2012-06-28 00:05:13 +0000 | [diff] [blame] | 28 | #include "llvm/DebugInfo.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 29 | #include "llvm/IR/CallingConv.h" |
| 30 | #include "llvm/IR/Constants.h" |
| 31 | #include "llvm/IR/DataLayout.h" |
| 32 | #include "llvm/IR/DerivedTypes.h" |
| 33 | #include "llvm/IR/Function.h" |
| 34 | #include "llvm/IR/GlobalAlias.h" |
| 35 | #include "llvm/IR/GlobalVariable.h" |
| 36 | #include "llvm/IR/Intrinsics.h" |
Bill Wendling | 6f287b2 | 2008-09-30 21:22:07 +0000 | [diff] [blame] | 37 | #include "llvm/Support/CommandLine.h" |
David Greene | 55d146e | 2010-01-05 01:24:36 +0000 | [diff] [blame] | 38 | #include "llvm/Support/Debug.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 39 | #include "llvm/Support/ErrorHandling.h" |
Owen Anderson | b445908 | 2009-06-25 17:09:00 +0000 | [diff] [blame] | 40 | #include "llvm/Support/ManagedStatic.h" |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 41 | #include "llvm/Support/MathExtras.h" |
Michael J. Spencer | 1f6efa3 | 2010-11-29 18:16:10 +0000 | [diff] [blame] | 42 | #include "llvm/Support/Mutex.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 43 | #include "llvm/Support/raw_ostream.h" |
| 44 | #include "llvm/Target/TargetInstrInfo.h" |
| 45 | #include "llvm/Target/TargetIntrinsicInfo.h" |
| 46 | #include "llvm/Target/TargetLowering.h" |
| 47 | #include "llvm/Target/TargetMachine.h" |
| 48 | #include "llvm/Target/TargetOptions.h" |
| 49 | #include "llvm/Target/TargetRegisterInfo.h" |
| 50 | #include "llvm/Target/TargetSelectionDAGInfo.h" |
Jeff Cohen | fd161e9 | 2005-01-09 20:41:56 +0000 | [diff] [blame] | 51 | #include <algorithm> |
Jeff Cohen | 97af751 | 2006-12-02 02:22:01 +0000 | [diff] [blame] | 52 | #include <cmath> |
Chris Lattner | e25738c | 2004-06-02 04:28:06 +0000 | [diff] [blame] | 53 | using namespace llvm; |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 54 | |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 55 | /// makeVTList - Return an instance of the SDVTList struct initialized with the |
| 56 | /// specified members. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 57 | static SDVTList makeVTList(const EVT *VTs, unsigned NumVTs) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 58 | SDVTList Res = {VTs, NumVTs}; |
| 59 | return Res; |
| 60 | } |
| 61 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 62 | // Default null implementations of the callbacks. |
| 63 | void SelectionDAG::DAGUpdateListener::NodeDeleted(SDNode*, SDNode*) {} |
| 64 | void SelectionDAG::DAGUpdateListener::NodeUpdated(SDNode*) {} |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 65 | |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 66 | //===----------------------------------------------------------------------===// |
| 67 | // ConstantFPSDNode Class |
| 68 | //===----------------------------------------------------------------------===// |
| 69 | |
| 70 | /// isExactlyValue - We don't rely on operator== working on double values, as |
| 71 | /// it returns true for things that are clearly not equal, like -0.0 and 0.0. |
| 72 | /// As such, this method can be used to do an exact bit-for-bit comparison of |
| 73 | /// two floating point values. |
Dale Johannesen | e6c1742 | 2007-08-26 01:18:27 +0000 | [diff] [blame] | 74 | bool ConstantFPSDNode::isExactlyValue(const APFloat& V) const { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 75 | return getValueAPF().bitwiseIsEqual(V); |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 76 | } |
| 77 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 78 | bool ConstantFPSDNode::isValueValidForType(EVT VT, |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 79 | const APFloat& Val) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 80 | assert(VT.isFloatingPoint() && "Can only convert between FP types"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 81 | |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 82 | // convert modifies in place, so make a copy. |
| 83 | APFloat Val2 = APFloat(Val); |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 84 | bool losesInfo; |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 85 | (void) Val2.convert(SelectionDAG::EVTToAPFloatSemantics(VT), |
| 86 | APFloat::rmNearestTiesToEven, |
Dale Johannesen | 23a9855 | 2008-10-09 23:00:39 +0000 | [diff] [blame] | 87 | &losesInfo); |
| 88 | return !losesInfo; |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 91 | //===----------------------------------------------------------------------===// |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 92 | // ISD Namespace |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 93 | //===----------------------------------------------------------------------===// |
Chris Lattner | 5cdcc58 | 2005-01-09 20:52:51 +0000 | [diff] [blame] | 94 | |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 95 | /// isBuildVectorAllOnes - Return true if the specified node is a |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 96 | /// BUILD_VECTOR where all of the elements are ~0 or undef. |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 97 | bool ISD::isBuildVectorAllOnes(const SDNode *N) { |
Chris Lattner | 547a16f | 2006-04-15 23:38:00 +0000 | [diff] [blame] | 98 | // Look through a bit convert. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 99 | if (N->getOpcode() == ISD::BITCAST) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 100 | N = N->getOperand(0).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 101 | |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 102 | if (N->getOpcode() != ISD::BUILD_VECTOR) return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 103 | |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 104 | unsigned i = 0, e = N->getNumOperands(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 105 | |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 106 | // Skip over all of the undef values. |
| 107 | while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF) |
| 108 | ++i; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 109 | |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 110 | // Do not accept an all-undef vector. |
| 111 | if (i == e) return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 112 | |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 113 | // Do not accept build_vectors that aren't all constants or which have non-~0 |
Jim Grosbach | 331ff3b | 2012-03-21 17:48:04 +0000 | [diff] [blame] | 114 | // elements. We have to be a bit careful here, as the type of the constant |
| 115 | // may not be the same as the type of the vector elements due to type |
| 116 | // legalization (the elements are promoted to a legal type for the target and |
| 117 | // a vector of a type may be legal when the base element type is not). |
| 118 | // We only want to check enough bits to cover the vector elements, because |
| 119 | // we care if the resultant vector is all ones, not whether the individual |
| 120 | // constants are. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 121 | SDValue NotZero = N->getOperand(i); |
Jim Grosbach | 331ff3b | 2012-03-21 17:48:04 +0000 | [diff] [blame] | 122 | unsigned EltSize = N->getValueType(0).getVectorElementType().getSizeInBits(); |
Jakub Staszak | 554c676 | 2012-09-30 21:24:57 +0000 | [diff] [blame] | 123 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(NotZero)) { |
| 124 | if (CN->getAPIntValue().countTrailingOnes() < EltSize) |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 125 | return false; |
Jakub Staszak | 554c676 | 2012-09-30 21:24:57 +0000 | [diff] [blame] | 126 | } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(NotZero)) { |
| 127 | if (CFPN->getValueAPF().bitcastToAPInt().countTrailingOnes() < EltSize) |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 128 | return false; |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 129 | } else |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 130 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 132 | // Okay, we have at least one ~0 value, check to see if the rest match or are |
Jim Grosbach | 331ff3b | 2012-03-21 17:48:04 +0000 | [diff] [blame] | 133 | // undefs. Even with the above element type twiddling, this should be OK, as |
| 134 | // the same type legalization should have applied to all the elements. |
Chris Lattner | 61d4399 | 2006-03-25 22:57:01 +0000 | [diff] [blame] | 135 | for (++i; i != e; ++i) |
| 136 | if (N->getOperand(i) != NotZero && |
| 137 | N->getOperand(i).getOpcode() != ISD::UNDEF) |
| 138 | return false; |
| 139 | return true; |
| 140 | } |
| 141 | |
| 142 | |
Evan Cheng | 4a14784 | 2006-03-26 09:50:58 +0000 | [diff] [blame] | 143 | /// isBuildVectorAllZeros - Return true if the specified node is a |
| 144 | /// BUILD_VECTOR where all of the elements are 0 or undef. |
| 145 | bool ISD::isBuildVectorAllZeros(const SDNode *N) { |
Chris Lattner | 547a16f | 2006-04-15 23:38:00 +0000 | [diff] [blame] | 146 | // Look through a bit convert. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 147 | if (N->getOpcode() == ISD::BITCAST) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 148 | N = N->getOperand(0).getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 149 | |
Evan Cheng | 4a14784 | 2006-03-26 09:50:58 +0000 | [diff] [blame] | 150 | if (N->getOpcode() != ISD::BUILD_VECTOR) return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 151 | |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 152 | unsigned i = 0, e = N->getNumOperands(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 153 | |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 154 | // Skip over all of the undef values. |
| 155 | while (i != e && N->getOperand(i).getOpcode() == ISD::UNDEF) |
| 156 | ++i; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 157 | |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 158 | // Do not accept an all-undef vector. |
| 159 | if (i == e) return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 160 | |
Dan Gohman | 68f32cb | 2009-06-04 16:49:15 +0000 | [diff] [blame] | 161 | // Do not accept build_vectors that aren't all constants or which have non-0 |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 162 | // elements. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 163 | SDValue Zero = N->getOperand(i); |
Jakub Staszak | 554c676 | 2012-09-30 21:24:57 +0000 | [diff] [blame] | 164 | if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Zero)) { |
| 165 | if (!CN->isNullValue()) |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 166 | return false; |
Jakub Staszak | 554c676 | 2012-09-30 21:24:57 +0000 | [diff] [blame] | 167 | } else if (ConstantFPSDNode *CFPN = dyn_cast<ConstantFPSDNode>(Zero)) { |
| 168 | if (!CFPN->getValueAPF().isPosZero()) |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 169 | return false; |
| 170 | } else |
| 171 | return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 172 | |
Dan Gohman | 68f32cb | 2009-06-04 16:49:15 +0000 | [diff] [blame] | 173 | // Okay, we have at least one 0 value, check to see if the rest match or are |
Evan Cheng | a8df166 | 2006-03-27 06:58:47 +0000 | [diff] [blame] | 174 | // undefs. |
| 175 | for (++i; i != e; ++i) |
| 176 | if (N->getOperand(i) != Zero && |
| 177 | N->getOperand(i).getOpcode() != ISD::UNDEF) |
| 178 | return false; |
| 179 | return true; |
Evan Cheng | 4a14784 | 2006-03-26 09:50:58 +0000 | [diff] [blame] | 180 | } |
| 181 | |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 182 | /// isScalarToVector - Return true if the specified node is a |
| 183 | /// ISD::SCALAR_TO_VECTOR node or a BUILD_VECTOR node where only the low |
| 184 | /// element is not an undef. |
| 185 | bool ISD::isScalarToVector(const SDNode *N) { |
| 186 | if (N->getOpcode() == ISD::SCALAR_TO_VECTOR) |
| 187 | return true; |
| 188 | |
| 189 | if (N->getOpcode() != ISD::BUILD_VECTOR) |
| 190 | return false; |
| 191 | if (N->getOperand(0).getOpcode() == ISD::UNDEF) |
| 192 | return false; |
| 193 | unsigned NumElems = N->getNumOperands(); |
Mon P Wang | cab98e3 | 2010-11-19 19:08:12 +0000 | [diff] [blame] | 194 | if (NumElems == 1) |
| 195 | return false; |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 196 | for (unsigned i = 1; i < NumElems; ++i) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 197 | SDValue V = N->getOperand(i); |
Evan Cheng | efec751 | 2008-02-18 23:04:32 +0000 | [diff] [blame] | 198 | if (V.getOpcode() != ISD::UNDEF) |
| 199 | return false; |
| 200 | } |
| 201 | return true; |
| 202 | } |
| 203 | |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 204 | /// allOperandsUndef - Return true if the node has at least one operand |
| 205 | /// and all operands of the specified node are ISD::UNDEF. |
| 206 | bool ISD::allOperandsUndef(const SDNode *N) { |
| 207 | // Return false if the node has no operands. |
| 208 | // This is "logically inconsistent" with the definition of "all" but |
| 209 | // is probably the desired behavior. |
| 210 | if (N->getNumOperands() == 0) |
| 211 | return false; |
| 212 | |
| 213 | for (unsigned i = 0, e = N->getNumOperands(); i != e ; ++i) |
| 214 | if (N->getOperand(i).getOpcode() != ISD::UNDEF) |
| 215 | return false; |
| 216 | |
| 217 | return true; |
| 218 | } |
| 219 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 220 | /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X) |
| 221 | /// when given the operation for (X op Y). |
| 222 | ISD::CondCode ISD::getSetCCSwappedOperands(ISD::CondCode Operation) { |
| 223 | // To perform this operation, we just need to swap the L and G bits of the |
| 224 | // operation. |
| 225 | unsigned OldL = (Operation >> 2) & 1; |
| 226 | unsigned OldG = (Operation >> 1) & 1; |
| 227 | return ISD::CondCode((Operation & ~6) | // Keep the N, U, E bits |
| 228 | (OldL << 1) | // New G bit |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 229 | (OldG << 2)); // New L bit. |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | /// getSetCCInverse - Return the operation corresponding to !(X op Y), where |
| 233 | /// 'op' is a valid SetCC operation. |
| 234 | ISD::CondCode ISD::getSetCCInverse(ISD::CondCode Op, bool isInteger) { |
| 235 | unsigned Operation = Op; |
| 236 | if (isInteger) |
| 237 | Operation ^= 7; // Flip L, G, E bits, but not U. |
| 238 | else |
| 239 | Operation ^= 15; // Flip all of the condition bits. |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 240 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 241 | if (Operation > ISD::SETTRUE2) |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 242 | Operation &= ~8; // Don't let N and U bits get set. |
| 243 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 244 | return ISD::CondCode(Operation); |
| 245 | } |
| 246 | |
| 247 | |
| 248 | /// isSignedOp - For an integer comparison, return 1 if the comparison is a |
| 249 | /// signed operation and 2 if the result is an unsigned comparison. Return zero |
| 250 | /// if the operation does not depend on the sign of the input (setne and seteq). |
| 251 | static int isSignedOp(ISD::CondCode Opcode) { |
| 252 | switch (Opcode) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 253 | default: llvm_unreachable("Illegal integer setcc operation!"); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 254 | case ISD::SETEQ: |
| 255 | case ISD::SETNE: return 0; |
| 256 | case ISD::SETLT: |
| 257 | case ISD::SETLE: |
| 258 | case ISD::SETGT: |
| 259 | case ISD::SETGE: return 1; |
| 260 | case ISD::SETULT: |
| 261 | case ISD::SETULE: |
| 262 | case ISD::SETUGT: |
| 263 | case ISD::SETUGE: return 2; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | /// getSetCCOrOperation - Return the result of a logical OR between different |
| 268 | /// comparisons of identical values: ((X op1 Y) | (X op2 Y)). This function |
| 269 | /// returns SETCC_INVALID if it is not possible to represent the resultant |
| 270 | /// comparison. |
| 271 | ISD::CondCode ISD::getSetCCOrOperation(ISD::CondCode Op1, ISD::CondCode Op2, |
| 272 | bool isInteger) { |
| 273 | if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3) |
| 274 | // Cannot fold a signed integer setcc with an unsigned integer setcc. |
| 275 | return ISD::SETCC_INVALID; |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 276 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 277 | unsigned Op = Op1 | Op2; // Combine all of the condition bits. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 278 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 279 | // If the N and U bits get set then the resultant comparison DOES suddenly |
| 280 | // care about orderedness, and is true when ordered. |
| 281 | if (Op > ISD::SETTRUE2) |
Chris Lattner | e41102b | 2006-05-12 17:03:46 +0000 | [diff] [blame] | 282 | Op &= ~16; // Clear the U bit if the N bit is set. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 283 | |
Chris Lattner | e41102b | 2006-05-12 17:03:46 +0000 | [diff] [blame] | 284 | // Canonicalize illegal integer setcc's. |
| 285 | if (isInteger && Op == ISD::SETUNE) // e.g. SETUGT | SETULT |
| 286 | Op = ISD::SETNE; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 287 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 288 | return ISD::CondCode(Op); |
| 289 | } |
| 290 | |
| 291 | /// getSetCCAndOperation - Return the result of a logical AND between different |
| 292 | /// comparisons of identical values: ((X op1 Y) & (X op2 Y)). This |
| 293 | /// function returns zero if it is not possible to represent the resultant |
| 294 | /// comparison. |
| 295 | ISD::CondCode ISD::getSetCCAndOperation(ISD::CondCode Op1, ISD::CondCode Op2, |
| 296 | bool isInteger) { |
| 297 | if (isInteger && (isSignedOp(Op1) | isSignedOp(Op2)) == 3) |
| 298 | // Cannot fold a signed setcc with an unsigned setcc. |
Misha Brukman | edf128a | 2005-04-21 22:36:52 +0000 | [diff] [blame] | 299 | return ISD::SETCC_INVALID; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 300 | |
| 301 | // Combine all of the condition bits. |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 302 | ISD::CondCode Result = ISD::CondCode(Op1 & Op2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 303 | |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 304 | // Canonicalize illegal integer setcc's. |
| 305 | if (isInteger) { |
| 306 | switch (Result) { |
| 307 | default: break; |
Chris Lattner | 883a52d | 2006-06-28 18:29:47 +0000 | [diff] [blame] | 308 | case ISD::SETUO : Result = ISD::SETFALSE; break; // SETUGT & SETULT |
Dan Gohman | d64a78c | 2008-05-14 18:17:09 +0000 | [diff] [blame] | 309 | case ISD::SETOEQ: // SETEQ & SETU[LG]E |
Chris Lattner | 883a52d | 2006-06-28 18:29:47 +0000 | [diff] [blame] | 310 | case ISD::SETUEQ: Result = ISD::SETEQ ; break; // SETUGE & SETULE |
| 311 | case ISD::SETOLT: Result = ISD::SETULT ; break; // SETULT & SETNE |
| 312 | case ISD::SETOGT: Result = ISD::SETUGT ; break; // SETUGT & SETNE |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 313 | } |
| 314 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 315 | |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 316 | return Result; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 317 | } |
| 318 | |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 319 | //===----------------------------------------------------------------------===// |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 320 | // SDNode Profile Support |
| 321 | //===----------------------------------------------------------------------===// |
| 322 | |
Jim Laskey | def69b9 | 2006-10-27 23:52:51 +0000 | [diff] [blame] | 323 | /// AddNodeIDOpcode - Add the node opcode to the NodeID data. |
| 324 | /// |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 325 | static void AddNodeIDOpcode(FoldingSetNodeID &ID, unsigned OpC) { |
| 326 | ID.AddInteger(OpC); |
| 327 | } |
| 328 | |
| 329 | /// AddNodeIDValueTypes - Value type lists are intern'd so we can represent them |
| 330 | /// solely with their pointer. |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 331 | static void AddNodeIDValueTypes(FoldingSetNodeID &ID, SDVTList VTList) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 332 | ID.AddPointer(VTList.VTs); |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 333 | } |
| 334 | |
Jim Laskey | def69b9 | 2006-10-27 23:52:51 +0000 | [diff] [blame] | 335 | /// AddNodeIDOperands - Various routines for adding operands to the NodeID data. |
| 336 | /// |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 337 | static void AddNodeIDOperands(FoldingSetNodeID &ID, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 338 | const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 339 | for (; NumOps; --NumOps, ++Ops) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 340 | ID.AddPointer(Ops->getNode()); |
Gabor Greif | 99a6cb9 | 2008-08-26 22:36:50 +0000 | [diff] [blame] | 341 | ID.AddInteger(Ops->getResNo()); |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 342 | } |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 343 | } |
| 344 | |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 345 | /// AddNodeIDOperands - Various routines for adding operands to the NodeID data. |
| 346 | /// |
| 347 | static void AddNodeIDOperands(FoldingSetNodeID &ID, |
| 348 | const SDUse *Ops, unsigned NumOps) { |
| 349 | for (; NumOps; --NumOps, ++Ops) { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 350 | ID.AddPointer(Ops->getNode()); |
| 351 | ID.AddInteger(Ops->getResNo()); |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 352 | } |
| 353 | } |
| 354 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 355 | static void AddNodeIDNode(FoldingSetNodeID &ID, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 356 | unsigned short OpC, SDVTList VTList, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 357 | const SDValue *OpList, unsigned N) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 358 | AddNodeIDOpcode(ID, OpC); |
| 359 | AddNodeIDValueTypes(ID, VTList); |
| 360 | AddNodeIDOperands(ID, OpList, N); |
| 361 | } |
| 362 | |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 363 | /// AddNodeIDCustom - If this is an SDNode with special info, add this info to |
| 364 | /// the NodeID data. |
| 365 | static void AddNodeIDCustom(FoldingSetNodeID &ID, const SDNode *N) { |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 366 | switch (N->getOpcode()) { |
Chris Lattner | 2a4ed82 | 2009-06-25 21:21:14 +0000 | [diff] [blame] | 367 | case ISD::TargetExternalSymbol: |
| 368 | case ISD::ExternalSymbol: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 369 | llvm_unreachable("Should only be used on nodes with operands"); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 370 | default: break; // Normal nodes don't need extra info. |
| 371 | case ISD::TargetConstant: |
| 372 | case ISD::Constant: |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 373 | ID.AddPointer(cast<ConstantSDNode>(N)->getConstantIntValue()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 374 | break; |
| 375 | case ISD::TargetConstantFP: |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 376 | case ISD::ConstantFP: { |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 377 | ID.AddPointer(cast<ConstantFPSDNode>(N)->getConstantFPValue()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 378 | break; |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 379 | } |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 380 | case ISD::TargetGlobalAddress: |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 381 | case ISD::GlobalAddress: |
| 382 | case ISD::TargetGlobalTLSAddress: |
| 383 | case ISD::GlobalTLSAddress: { |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 384 | const GlobalAddressSDNode *GA = cast<GlobalAddressSDNode>(N); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 385 | ID.AddPointer(GA->getGlobal()); |
| 386 | ID.AddInteger(GA->getOffset()); |
Chris Lattner | 2a4ed82 | 2009-06-25 21:21:14 +0000 | [diff] [blame] | 387 | ID.AddInteger(GA->getTargetFlags()); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 388 | ID.AddInteger(GA->getAddressSpace()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 389 | break; |
| 390 | } |
| 391 | case ISD::BasicBlock: |
| 392 | ID.AddPointer(cast<BasicBlockSDNode>(N)->getBasicBlock()); |
| 393 | break; |
| 394 | case ISD::Register: |
| 395 | ID.AddInteger(cast<RegisterSDNode>(N)->getReg()); |
| 396 | break; |
Jakob Stoklund Olesen | 9cf37e8 | 2012-01-18 23:52:12 +0000 | [diff] [blame] | 397 | case ISD::RegisterMask: |
| 398 | ID.AddPointer(cast<RegisterMaskSDNode>(N)->getRegMask()); |
| 399 | break; |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 400 | case ISD::SRCVALUE: |
| 401 | ID.AddPointer(cast<SrcValueSDNode>(N)->getValue()); |
| 402 | break; |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 403 | case ISD::FrameIndex: |
| 404 | case ISD::TargetFrameIndex: |
| 405 | ID.AddInteger(cast<FrameIndexSDNode>(N)->getIndex()); |
| 406 | break; |
| 407 | case ISD::JumpTable: |
| 408 | case ISD::TargetJumpTable: |
| 409 | ID.AddInteger(cast<JumpTableSDNode>(N)->getIndex()); |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 410 | ID.AddInteger(cast<JumpTableSDNode>(N)->getTargetFlags()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 411 | break; |
| 412 | case ISD::ConstantPool: |
| 413 | case ISD::TargetConstantPool: { |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 414 | const ConstantPoolSDNode *CP = cast<ConstantPoolSDNode>(N); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 415 | ID.AddInteger(CP->getAlignment()); |
| 416 | ID.AddInteger(CP->getOffset()); |
| 417 | if (CP->isMachineConstantPoolEntry()) |
Jim Grosbach | 5405d58 | 2011-09-27 20:59:33 +0000 | [diff] [blame] | 418 | CP->getMachineCPVal()->addSelectionDAGCSEId(ID); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 419 | else |
| 420 | ID.AddPointer(CP->getConstVal()); |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 421 | ID.AddInteger(CP->getTargetFlags()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 422 | break; |
| 423 | } |
Jakob Stoklund Olesen | 74500bd | 2012-08-07 22:37:05 +0000 | [diff] [blame] | 424 | case ISD::TargetIndex: { |
| 425 | const TargetIndexSDNode *TI = cast<TargetIndexSDNode>(N); |
| 426 | ID.AddInteger(TI->getIndex()); |
| 427 | ID.AddInteger(TI->getOffset()); |
| 428 | ID.AddInteger(TI->getTargetFlags()); |
| 429 | break; |
| 430 | } |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 431 | case ISD::LOAD: { |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 432 | const LoadSDNode *LD = cast<LoadSDNode>(N); |
Duncan Sands | 3b3adbb | 2008-06-06 12:49:32 +0000 | [diff] [blame] | 433 | ID.AddInteger(LD->getMemoryVT().getRawBits()); |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 434 | ID.AddInteger(LD->getRawSubclassData()); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 435 | ID.AddInteger(LD->getPointerInfo().getAddrSpace()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 436 | break; |
| 437 | } |
| 438 | case ISD::STORE: { |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 439 | const StoreSDNode *ST = cast<StoreSDNode>(N); |
Duncan Sands | 3b3adbb | 2008-06-06 12:49:32 +0000 | [diff] [blame] | 440 | ID.AddInteger(ST->getMemoryVT().getRawBits()); |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 441 | ID.AddInteger(ST->getRawSubclassData()); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 442 | ID.AddInteger(ST->getPointerInfo().getAddrSpace()); |
Dale Johannesen | 2041a0e | 2007-03-30 21:38:07 +0000 | [diff] [blame] | 443 | break; |
| 444 | } |
Dan Gohman | 0b1d4a7 | 2008-12-23 21:37:04 +0000 | [diff] [blame] | 445 | case ISD::ATOMIC_CMP_SWAP: |
| 446 | case ISD::ATOMIC_SWAP: |
| 447 | case ISD::ATOMIC_LOAD_ADD: |
| 448 | case ISD::ATOMIC_LOAD_SUB: |
| 449 | case ISD::ATOMIC_LOAD_AND: |
| 450 | case ISD::ATOMIC_LOAD_OR: |
| 451 | case ISD::ATOMIC_LOAD_XOR: |
| 452 | case ISD::ATOMIC_LOAD_NAND: |
| 453 | case ISD::ATOMIC_LOAD_MIN: |
| 454 | case ISD::ATOMIC_LOAD_MAX: |
| 455 | case ISD::ATOMIC_LOAD_UMIN: |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 456 | case ISD::ATOMIC_LOAD_UMAX: |
| 457 | case ISD::ATOMIC_LOAD: |
| 458 | case ISD::ATOMIC_STORE: { |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 459 | const AtomicSDNode *AT = cast<AtomicSDNode>(N); |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 460 | ID.AddInteger(AT->getMemoryVT().getRawBits()); |
| 461 | ID.AddInteger(AT->getRawSubclassData()); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 462 | ID.AddInteger(AT->getPointerInfo().getAddrSpace()); |
| 463 | break; |
| 464 | } |
| 465 | case ISD::PREFETCH: { |
| 466 | const MemSDNode *PF = cast<MemSDNode>(N); |
| 467 | ID.AddInteger(PF->getPointerInfo().getAddrSpace()); |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 468 | break; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 469 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 470 | case ISD::VECTOR_SHUFFLE: { |
| 471 | const ShuffleVectorSDNode *SVN = cast<ShuffleVectorSDNode>(N); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 472 | for (unsigned i = 0, e = N->getValueType(0).getVectorNumElements(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 473 | i != e; ++i) |
| 474 | ID.AddInteger(SVN->getMaskElt(i)); |
| 475 | break; |
| 476 | } |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 477 | case ISD::TargetBlockAddress: |
| 478 | case ISD::BlockAddress: { |
Michael Liao | 6c7ccaa | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 479 | const BlockAddressSDNode *BA = cast<BlockAddressSDNode>(N); |
| 480 | ID.AddPointer(BA->getBlockAddress()); |
| 481 | ID.AddInteger(BA->getOffset()); |
| 482 | ID.AddInteger(BA->getTargetFlags()); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 483 | break; |
| 484 | } |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 485 | } // end switch (N->getOpcode()) |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 486 | |
| 487 | // Target specific memory nodes could also have address spaces to check. |
| 488 | if (N->isTargetMemoryOpcode()) |
| 489 | ID.AddInteger(cast<MemSDNode>(N)->getPointerInfo().getAddrSpace()); |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 490 | } |
| 491 | |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 492 | /// AddNodeIDNode - Generic routine for adding a nodes info to the NodeID |
| 493 | /// data. |
| 494 | static void AddNodeIDNode(FoldingSetNodeID &ID, const SDNode *N) { |
| 495 | AddNodeIDOpcode(ID, N->getOpcode()); |
| 496 | // Add the return value info. |
| 497 | AddNodeIDValueTypes(ID, N->getVTList()); |
| 498 | // Add the operand info. |
| 499 | AddNodeIDOperands(ID, N->op_begin(), N->getNumOperands()); |
| 500 | |
| 501 | // Handle SDNode leafs with special info. |
| 502 | AddNodeIDCustom(ID, N); |
| 503 | } |
| 504 | |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 505 | /// encodeMemSDNodeFlags - Generic routine for computing a value for use in |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 506 | /// the CSE map that carries volatility, temporalness, indexing mode, and |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 507 | /// extension/truncation information. |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 508 | /// |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 509 | static inline unsigned |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 510 | encodeMemSDNodeFlags(int ConvType, ISD::MemIndexedMode AM, bool isVolatile, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 511 | bool isNonTemporal, bool isInvariant) { |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 512 | assert((ConvType & 3) == ConvType && |
| 513 | "ConvType may not require more than 2 bits!"); |
| 514 | assert((AM & 7) == AM && |
| 515 | "AM may not require more than 3 bits!"); |
| 516 | return ConvType | |
| 517 | (AM << 2) | |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 518 | (isVolatile << 5) | |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 519 | (isNonTemporal << 6) | |
| 520 | (isInvariant << 7); |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 521 | } |
| 522 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 523 | //===----------------------------------------------------------------------===// |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 524 | // SelectionDAG Class |
| 525 | //===----------------------------------------------------------------------===// |
Chris Lattner | b48da39 | 2005-01-23 04:39:44 +0000 | [diff] [blame] | 526 | |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 527 | /// doNotCSE - Return true if CSE should not be performed for this node. |
| 528 | static bool doNotCSE(SDNode *N) { |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 529 | if (N->getValueType(0) == MVT::Glue) |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 530 | return true; // Never CSE anything that produces a flag. |
| 531 | |
| 532 | switch (N->getOpcode()) { |
| 533 | default: break; |
| 534 | case ISD::HANDLENODE: |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 535 | case ISD::EH_LABEL: |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 536 | return true; // Never CSE these nodes. |
| 537 | } |
| 538 | |
| 539 | // Check that remaining values produced are not flags. |
| 540 | for (unsigned i = 1, e = N->getNumValues(); i != e; ++i) |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 541 | if (N->getValueType(i) == MVT::Glue) |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 542 | return true; // Never CSE anything that produces a flag. |
| 543 | |
| 544 | return false; |
| 545 | } |
| 546 | |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 547 | /// RemoveDeadNodes - This method deletes all unreachable nodes in the |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 548 | /// SelectionDAG. |
| 549 | void SelectionDAG::RemoveDeadNodes() { |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 550 | // Create a dummy node (which is not added to allnodes), that adds a reference |
| 551 | // to the root node, preventing it from being deleted. |
Chris Lattner | 9503859 | 2005-10-05 06:35:28 +0000 | [diff] [blame] | 552 | HandleSDNode Dummy(getRoot()); |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 553 | |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 554 | SmallVector<SDNode*, 128> DeadNodes; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 555 | |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 556 | // Add all obviously-dead nodes to the DeadNodes worklist. |
Chris Lattner | de202b3 | 2005-11-09 23:47:37 +0000 | [diff] [blame] | 557 | for (allnodes_iterator I = allnodes_begin(), E = allnodes_end(); I != E; ++I) |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 558 | if (I->use_empty()) |
| 559 | DeadNodes.push_back(I); |
| 560 | |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 561 | RemoveDeadNodes(DeadNodes); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 562 | |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 563 | // If the root changed (e.g. it was a dead load, update the root). |
| 564 | setRoot(Dummy.getValue()); |
| 565 | } |
| 566 | |
| 567 | /// RemoveDeadNodes - This method deletes the unreachable nodes in the |
| 568 | /// given list, and any nodes that become unreachable as a result. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 569 | void SelectionDAG::RemoveDeadNodes(SmallVectorImpl<SDNode *> &DeadNodes) { |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 570 | |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 571 | // Process the worklist, deleting the nodes and adding their uses to the |
| 572 | // worklist. |
| 573 | while (!DeadNodes.empty()) { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 574 | SDNode *N = DeadNodes.pop_back_val(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 575 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 576 | for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) |
| 577 | DUL->NodeDeleted(N, 0); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 578 | |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 579 | // Take the node out of the appropriate CSE map. |
| 580 | RemoveNodeFromCSEMaps(N); |
| 581 | |
| 582 | // Next, brutally remove the operand list. This is safe to do, as there are |
| 583 | // no cycles in the graph. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 584 | for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) { |
| 585 | SDUse &Use = *I++; |
| 586 | SDNode *Operand = Use.getNode(); |
| 587 | Use.set(SDValue()); |
| 588 | |
Chris Lattner | 190a418 | 2006-08-04 17:45:20 +0000 | [diff] [blame] | 589 | // Now that we removed this operand, see if there are no uses of it left. |
| 590 | if (Operand->use_empty()) |
| 591 | DeadNodes.push_back(Operand); |
Chris Lattner | f469cb6 | 2005-11-08 18:52:27 +0000 | [diff] [blame] | 592 | } |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 593 | |
Dan Gohman | c533612 | 2009-01-19 22:39:36 +0000 | [diff] [blame] | 594 | DeallocateNode(N); |
Chris Lattner | f469cb6 | 2005-11-08 18:52:27 +0000 | [diff] [blame] | 595 | } |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 598 | void SelectionDAG::RemoveDeadNode(SDNode *N){ |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 599 | SmallVector<SDNode*, 16> DeadNodes(1, N); |
Eli Friedman | 2efa35f | 2011-11-08 01:25:24 +0000 | [diff] [blame] | 600 | |
| 601 | // Create a dummy node that adds a reference to the root node, preventing |
| 602 | // it from being deleted. (This matters if the root is an operand of the |
| 603 | // dead node.) |
| 604 | HandleSDNode Dummy(getRoot()); |
| 605 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 606 | RemoveDeadNodes(DeadNodes); |
Evan Cheng | 130a647 | 2006-10-12 20:34:05 +0000 | [diff] [blame] | 607 | } |
| 608 | |
Chris Lattner | c26aefa | 2005-08-29 21:59:31 +0000 | [diff] [blame] | 609 | void SelectionDAG::DeleteNode(SDNode *N) { |
Chris Lattner | c26aefa | 2005-08-29 21:59:31 +0000 | [diff] [blame] | 610 | // First take this out of the appropriate CSE map. |
| 611 | RemoveNodeFromCSEMaps(N); |
| 612 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 613 | // Finally, remove uses due to operands of this node, remove from the |
Chris Lattner | 1e111c7 | 2005-09-07 05:37:01 +0000 | [diff] [blame] | 614 | // AllNodes list, and delete the node. |
| 615 | DeleteNodeNotInCSEMaps(N); |
| 616 | } |
| 617 | |
| 618 | void SelectionDAG::DeleteNodeNotInCSEMaps(SDNode *N) { |
Dan Gohman | e77f89d | 2009-01-25 16:20:37 +0000 | [diff] [blame] | 619 | assert(N != AllNodes.begin() && "Cannot delete the entry node!"); |
| 620 | assert(N->use_empty() && "Cannot delete a node that is not dead!"); |
Dan Gohman | c533612 | 2009-01-19 22:39:36 +0000 | [diff] [blame] | 621 | |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 622 | // Drop all of the operands and decrement used node's use counts. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 623 | N->DropOperands(); |
Bill Wendling | a1dc602 | 2008-10-19 20:51:12 +0000 | [diff] [blame] | 624 | |
Dan Gohman | c533612 | 2009-01-19 22:39:36 +0000 | [diff] [blame] | 625 | DeallocateNode(N); |
| 626 | } |
| 627 | |
| 628 | void SelectionDAG::DeallocateNode(SDNode *N) { |
| 629 | if (N->OperandsNeedDelete) |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 630 | delete[] N->OperandList; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 631 | |
Dan Gohman | c533612 | 2009-01-19 22:39:36 +0000 | [diff] [blame] | 632 | // Set the opcode to DELETED_NODE to help catch bugs when node |
| 633 | // memory is reallocated. |
| 634 | N->NodeType = ISD::DELETED_NODE; |
| 635 | |
Dan Gohman | 1146728 | 2008-08-26 01:44:34 +0000 | [diff] [blame] | 636 | NodeAllocator.Deallocate(AllNodes.remove(N)); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 637 | |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 638 | // If any of the SDDbgValue nodes refer to this SDNode, invalidate them. |
Benjamin Kramer | 22a54c1 | 2011-06-18 13:13:44 +0000 | [diff] [blame] | 639 | ArrayRef<SDDbgValue*> DbgVals = DbgInfo->getSDDbgValues(N); |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 640 | for (unsigned i = 0, e = DbgVals.size(); i != e; ++i) |
| 641 | DbgVals[i]->setIsInvalidated(); |
Chris Lattner | c26aefa | 2005-08-29 21:59:31 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 644 | /// RemoveNodeFromCSEMaps - Take the specified node out of the CSE map that |
| 645 | /// correspond to it. This is useful when we're about to delete or repurpose |
| 646 | /// the node. We don't want future request for structurally identical nodes |
| 647 | /// to return N anymore. |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 648 | bool SelectionDAG::RemoveNodeFromCSEMaps(SDNode *N) { |
Chris Lattner | 6621e3b | 2005-09-02 19:15:44 +0000 | [diff] [blame] | 649 | bool Erased = false; |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 650 | switch (N->getOpcode()) { |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 651 | case ISD::HANDLENODE: return false; // noop. |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 652 | case ISD::CONDCODE: |
| 653 | assert(CondCodeNodes[cast<CondCodeSDNode>(N)->get()] && |
| 654 | "Cond code doesn't exist!"); |
Chris Lattner | 6621e3b | 2005-09-02 19:15:44 +0000 | [diff] [blame] | 655 | Erased = CondCodeNodes[cast<CondCodeSDNode>(N)->get()] != 0; |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 656 | CondCodeNodes[cast<CondCodeSDNode>(N)->get()] = 0; |
| 657 | break; |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 658 | case ISD::ExternalSymbol: |
| 659 | Erased = ExternalSymbols.erase(cast<ExternalSymbolSDNode>(N)->getSymbol()); |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 660 | break; |
Chris Lattner | 1af2231 | 2009-06-25 18:45:50 +0000 | [diff] [blame] | 661 | case ISD::TargetExternalSymbol: { |
| 662 | ExternalSymbolSDNode *ESN = cast<ExternalSymbolSDNode>(N); |
| 663 | Erased = TargetExternalSymbols.erase( |
| 664 | std::pair<std::string,unsigned char>(ESN->getSymbol(), |
| 665 | ESN->getTargetFlags())); |
Andrew Lenharth | 2a2de66 | 2005-10-23 03:40:17 +0000 | [diff] [blame] | 666 | break; |
Chris Lattner | 1af2231 | 2009-06-25 18:45:50 +0000 | [diff] [blame] | 667 | } |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 668 | case ISD::VALUETYPE: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 669 | EVT VT = cast<VTSDNode>(N)->getVT(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 670 | if (VT.isExtended()) { |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 671 | Erased = ExtendedValueTypeNodes.erase(VT); |
| 672 | } else { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 673 | Erased = ValueTypeNodes[VT.getSimpleVT().SimpleTy] != 0; |
| 674 | ValueTypeNodes[VT.getSimpleVT().SimpleTy] = 0; |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 675 | } |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 676 | break; |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 677 | } |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 678 | default: |
Chris Lattner | 4a283e9 | 2006-08-11 18:38:11 +0000 | [diff] [blame] | 679 | // Remove it from the CSE Map. |
Duncan Sands | a30b7d2 | 2010-12-12 13:22:50 +0000 | [diff] [blame] | 680 | assert(N->getOpcode() != ISD::DELETED_NODE && "DELETED_NODE in CSEMap!"); |
| 681 | assert(N->getOpcode() != ISD::EntryToken && "EntryToken in CSEMap!"); |
Chris Lattner | 4a283e9 | 2006-08-11 18:38:11 +0000 | [diff] [blame] | 682 | Erased = CSEMap.RemoveNode(N); |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 683 | break; |
| 684 | } |
Chris Lattner | 6621e3b | 2005-09-02 19:15:44 +0000 | [diff] [blame] | 685 | #ifndef NDEBUG |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 686 | // Verify that the node was actually in one of the CSE maps, unless it has a |
Chris Lattner | 6621e3b | 2005-09-02 19:15:44 +0000 | [diff] [blame] | 687 | // flag result (which cannot be CSE'd) or is one of the special cases that are |
| 688 | // not subject to CSE. |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 689 | if (!Erased && N->getValueType(N->getNumValues()-1) != MVT::Glue && |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 690 | !N->isMachineOpcode() && !doNotCSE(N)) { |
Dan Gohman | b5bec2b | 2007-06-19 14:13:56 +0000 | [diff] [blame] | 691 | N->dump(this); |
David Greene | 55d146e | 2010-01-05 01:24:36 +0000 | [diff] [blame] | 692 | dbgs() << "\n"; |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 693 | llvm_unreachable("Node is not in map!"); |
Chris Lattner | 6621e3b | 2005-09-02 19:15:44 +0000 | [diff] [blame] | 694 | } |
| 695 | #endif |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 696 | return Erased; |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 697 | } |
| 698 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 699 | /// AddModifiedNodeToCSEMaps - The specified node has been removed from the CSE |
| 700 | /// maps and modified in place. Add it back to the CSE maps, unless an identical |
| 701 | /// node already exists, in which case transfer all its users to the existing |
| 702 | /// node. This transfer can potentially trigger recursive merging. |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 703 | /// |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 704 | void |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 705 | SelectionDAG::AddModifiedNodeToCSEMaps(SDNode *N) { |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 706 | // For node types that aren't CSE'd, just act as if no identical node |
| 707 | // already exists. |
| 708 | if (!doNotCSE(N)) { |
| 709 | SDNode *Existing = CSEMap.GetOrInsertNode(N); |
| 710 | if (Existing != N) { |
| 711 | // If there was already an existing matching node, use ReplaceAllUsesWith |
| 712 | // to replace the dead one with the existing one. This can cause |
| 713 | // recursive merging of other unrelated nodes down the line. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 714 | ReplaceAllUsesWith(N, Existing); |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 715 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 716 | // N is now dead. Inform the listeners and delete it. |
| 717 | for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) |
| 718 | DUL->NodeDeleted(N, Existing); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 719 | DeleteNodeNotInCSEMaps(N); |
| 720 | return; |
| 721 | } |
| 722 | } |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 723 | |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 724 | // If the node doesn't already exist, we updated it. Inform listeners. |
| 725 | for (DAGUpdateListener *DUL = UpdateListeners; DUL; DUL = DUL->Next) |
| 726 | DUL->NodeUpdated(N); |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 727 | } |
| 728 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 729 | /// FindModifiedNodeSlot - Find a slot for the specified node if its operands |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 730 | /// were replaced with those specified. If this node is never memoized, |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 731 | /// return null, otherwise return a pointer to the slot it would take. If a |
| 732 | /// node already exists with these operands, the slot will be non-null. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 733 | SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, SDValue Op, |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 734 | void *&InsertPos) { |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 735 | if (doNotCSE(N)) |
| 736 | return 0; |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 737 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 738 | SDValue Ops[] = { Op }; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 739 | FoldingSetNodeID ID; |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 740 | AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 1); |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 741 | AddNodeIDCustom(ID, N); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 742 | SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 743 | return Node; |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 744 | } |
| 745 | |
| 746 | /// FindModifiedNodeSlot - Find a slot for the specified node if its operands |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 747 | /// were replaced with those specified. If this node is never memoized, |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 748 | /// return null, otherwise return a pointer to the slot it would take. If a |
| 749 | /// node already exists with these operands, the slot will be non-null. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 750 | SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 751 | SDValue Op1, SDValue Op2, |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 752 | void *&InsertPos) { |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 753 | if (doNotCSE(N)) |
| 754 | return 0; |
| 755 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 756 | SDValue Ops[] = { Op1, Op2 }; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 757 | FoldingSetNodeID ID; |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 758 | AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, 2); |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 759 | AddNodeIDCustom(ID, N); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 760 | SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 761 | return Node; |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 762 | } |
| 763 | |
| 764 | |
| 765 | /// FindModifiedNodeSlot - Find a slot for the specified node if its operands |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 766 | /// were replaced with those specified. If this node is never memoized, |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 767 | /// return null, otherwise return a pointer to the slot it would take. If a |
| 768 | /// node already exists with these operands, the slot will be non-null. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 769 | SDNode *SelectionDAG::FindModifiedNodeSlot(SDNode *N, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 770 | const SDValue *Ops,unsigned NumOps, |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 771 | void *&InsertPos) { |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 772 | if (doNotCSE(N)) |
| 773 | return 0; |
Evan Cheng | 71e8685 | 2008-07-08 20:06:39 +0000 | [diff] [blame] | 774 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 775 | FoldingSetNodeID ID; |
Dan Gohman | 575e2f4 | 2007-06-04 15:49:41 +0000 | [diff] [blame] | 776 | AddNodeIDNode(ID, N->getOpcode(), N->getVTList(), Ops, NumOps); |
Duncan Sands | 0dc4045 | 2008-10-27 15:30:53 +0000 | [diff] [blame] | 777 | AddNodeIDCustom(ID, N); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 778 | SDNode *Node = CSEMap.FindNodeOrInsertPos(ID, InsertPos); |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 779 | return Node; |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 780 | } |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 781 | |
Benjamin Kramer | 3ca1363 | 2010-11-20 15:53:24 +0000 | [diff] [blame] | 782 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 783 | /// VerifyNodeCommon - Sanity check the given node. Aborts if it is invalid. |
| 784 | static void VerifyNodeCommon(SDNode *N) { |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 785 | switch (N->getOpcode()) { |
| 786 | default: |
| 787 | break; |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 788 | case ISD::BUILD_PAIR: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 789 | EVT VT = N->getValueType(0); |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 790 | assert(N->getNumValues() == 1 && "Too many results!"); |
| 791 | assert(!VT.isVector() && (VT.isInteger() || VT.isFloatingPoint()) && |
| 792 | "Wrong return type!"); |
| 793 | assert(N->getNumOperands() == 2 && "Wrong number of operands!"); |
| 794 | assert(N->getOperand(0).getValueType() == N->getOperand(1).getValueType() && |
| 795 | "Mismatched operand types!"); |
| 796 | assert(N->getOperand(0).getValueType().isInteger() == VT.isInteger() && |
| 797 | "Wrong operand type!"); |
| 798 | assert(VT.getSizeInBits() == 2 * N->getOperand(0).getValueSizeInBits() && |
| 799 | "Wrong return type size"); |
| 800 | break; |
| 801 | } |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 802 | case ISD::BUILD_VECTOR: { |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 803 | assert(N->getNumValues() == 1 && "Too many results!"); |
| 804 | assert(N->getValueType(0).isVector() && "Wrong return type!"); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 805 | assert(N->getNumOperands() == N->getValueType(0).getVectorNumElements() && |
Duncan Sands | d22ec5f | 2008-10-29 14:22:20 +0000 | [diff] [blame] | 806 | "Wrong number of operands!"); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 807 | EVT EltVT = N->getValueType(0).getVectorElementType(); |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 808 | for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ++I) { |
Rafael Espindola | 15684b2 | 2009-04-24 12:40:33 +0000 | [diff] [blame] | 809 | assert((I->getValueType() == EltVT || |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 810 | (EltVT.isInteger() && I->getValueType().isInteger() && |
| 811 | EltVT.bitsLE(I->getValueType()))) && |
| 812 | "Wrong operand type!"); |
Eli Friedman | 9db817f | 2011-09-09 21:04:06 +0000 | [diff] [blame] | 813 | assert(I->getValueType() == N->getOperand(0).getValueType() && |
| 814 | "Operands must all have the same type"); |
| 815 | } |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 816 | break; |
| 817 | } |
| 818 | } |
| 819 | } |
| 820 | |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 821 | /// VerifySDNode - Sanity check the given SDNode. Aborts if it is invalid. |
| 822 | static void VerifySDNode(SDNode *N) { |
| 823 | // The SDNode allocators cannot be used to allocate nodes with fields that are |
| 824 | // not present in an SDNode! |
| 825 | assert(!isa<MemSDNode>(N) && "Bad MemSDNode!"); |
| 826 | assert(!isa<ShuffleVectorSDNode>(N) && "Bad ShuffleVectorSDNode!"); |
| 827 | assert(!isa<ConstantSDNode>(N) && "Bad ConstantSDNode!"); |
| 828 | assert(!isa<ConstantFPSDNode>(N) && "Bad ConstantFPSDNode!"); |
| 829 | assert(!isa<GlobalAddressSDNode>(N) && "Bad GlobalAddressSDNode!"); |
| 830 | assert(!isa<FrameIndexSDNode>(N) && "Bad FrameIndexSDNode!"); |
| 831 | assert(!isa<JumpTableSDNode>(N) && "Bad JumpTableSDNode!"); |
| 832 | assert(!isa<ConstantPoolSDNode>(N) && "Bad ConstantPoolSDNode!"); |
| 833 | assert(!isa<BasicBlockSDNode>(N) && "Bad BasicBlockSDNode!"); |
| 834 | assert(!isa<SrcValueSDNode>(N) && "Bad SrcValueSDNode!"); |
| 835 | assert(!isa<MDNodeSDNode>(N) && "Bad MDNodeSDNode!"); |
| 836 | assert(!isa<RegisterSDNode>(N) && "Bad RegisterSDNode!"); |
| 837 | assert(!isa<BlockAddressSDNode>(N) && "Bad BlockAddressSDNode!"); |
| 838 | assert(!isa<EHLabelSDNode>(N) && "Bad EHLabelSDNode!"); |
| 839 | assert(!isa<ExternalSymbolSDNode>(N) && "Bad ExternalSymbolSDNode!"); |
| 840 | assert(!isa<CondCodeSDNode>(N) && "Bad CondCodeSDNode!"); |
| 841 | assert(!isa<CvtRndSatSDNode>(N) && "Bad CvtRndSatSDNode!"); |
| 842 | assert(!isa<VTSDNode>(N) && "Bad VTSDNode!"); |
| 843 | assert(!isa<MachineSDNode>(N) && "Bad MachineSDNode!"); |
| 844 | |
| 845 | VerifyNodeCommon(N); |
| 846 | } |
| 847 | |
| 848 | /// VerifyMachineNode - Sanity check the given MachineNode. Aborts if it is |
| 849 | /// invalid. |
| 850 | static void VerifyMachineNode(SDNode *N) { |
| 851 | // The MachineNode allocators cannot be used to allocate nodes with fields |
| 852 | // that are not present in a MachineNode! |
| 853 | // Currently there are no such nodes. |
| 854 | |
| 855 | VerifyNodeCommon(N); |
| 856 | } |
Benjamin Kramer | 3ca1363 | 2010-11-20 15:53:24 +0000 | [diff] [blame] | 857 | #endif // NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 858 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 859 | /// getEVTAlignment - Compute the default alignment value for the |
Dan Gohman | 9c6e70e | 2008-07-08 23:46:32 +0000 | [diff] [blame] | 860 | /// given type. |
| 861 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 862 | unsigned SelectionDAG::getEVTAlignment(EVT VT) const { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 863 | Type *Ty = VT == MVT::iPTR ? |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 864 | PointerType::get(Type::getInt8Ty(*getContext()), 0) : |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 865 | VT.getTypeForEVT(*getContext()); |
Dan Gohman | 9c6e70e | 2008-07-08 23:46:32 +0000 | [diff] [blame] | 866 | |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 867 | return TM.getTargetLowering()->getDataLayout()->getABITypeAlignment(Ty); |
Dan Gohman | 9c6e70e | 2008-07-08 23:46:32 +0000 | [diff] [blame] | 868 | } |
Chris Lattner | 0e12e6e | 2005-01-07 21:09:16 +0000 | [diff] [blame] | 869 | |
Dale Johannesen | 92570c4 | 2009-02-07 02:15:05 +0000 | [diff] [blame] | 870 | // EntryNode could meaningfully have debug info if we can find it... |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 871 | SelectionDAG::SelectionDAG(const TargetMachine &tm, CodeGenOpt::Level OL) |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 872 | : TM(tm), TSI(*tm.getSelectionDAGInfo()), TTI(0), OptLevel(OL), |
| 873 | EntryNode(ISD::EntryToken, 0, DebugLoc(), getVTList(MVT::Other)), |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 874 | Root(getEntryNode()), UpdateListeners(0) { |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 875 | AllNodes.push_back(&EntryNode); |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 876 | DbgInfo = new SDDbgInfo(); |
Dan Gohman | 6f17966 | 2008-08-23 00:50:30 +0000 | [diff] [blame] | 877 | } |
| 878 | |
Chandler Carruth | e4b4edd | 2013-01-05 12:32:17 +0000 | [diff] [blame] | 879 | void SelectionDAG::init(MachineFunction &mf, const TargetTransformInfo *tti) { |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 880 | MF = &mf; |
Chandler Carruth | e4b4edd | 2013-01-05 12:32:17 +0000 | [diff] [blame] | 881 | TTI = tti; |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 882 | Context = &mf.getFunction()->getContext(); |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 883 | } |
| 884 | |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 885 | SelectionDAG::~SelectionDAG() { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 886 | assert(!UpdateListeners && "Dangling registered DAGUpdateListeners"); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 887 | allnodes_clear(); |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 888 | delete DbgInfo; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 889 | } |
| 890 | |
| 891 | void SelectionDAG::allnodes_clear() { |
Dan Gohman | 1146728 | 2008-08-26 01:44:34 +0000 | [diff] [blame] | 892 | assert(&*AllNodes.begin() == &EntryNode); |
| 893 | AllNodes.remove(AllNodes.begin()); |
Dan Gohman | c533612 | 2009-01-19 22:39:36 +0000 | [diff] [blame] | 894 | while (!AllNodes.empty()) |
| 895 | DeallocateNode(AllNodes.begin()); |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 896 | } |
| 897 | |
Dan Gohman | 7c3234c | 2008-08-27 23:52:12 +0000 | [diff] [blame] | 898 | void SelectionDAG::clear() { |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 899 | allnodes_clear(); |
| 900 | OperandAllocator.Reset(); |
| 901 | CSEMap.clear(); |
| 902 | |
| 903 | ExtendedValueTypeNodes.clear(); |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 904 | ExternalSymbols.clear(); |
| 905 | TargetExternalSymbols.clear(); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 906 | std::fill(CondCodeNodes.begin(), CondCodeNodes.end(), |
| 907 | static_cast<CondCodeSDNode*>(0)); |
| 908 | std::fill(ValueTypeNodes.begin(), ValueTypeNodes.end(), |
| 909 | static_cast<SDNode*>(0)); |
| 910 | |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 911 | EntryNode.UseList = 0; |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 912 | AllNodes.push_back(&EntryNode); |
| 913 | Root = getEntryNode(); |
Evan Cheng | 31441b7 | 2010-03-29 20:48:30 +0000 | [diff] [blame] | 914 | DbgInfo->clear(); |
Dan Gohman | f350b27 | 2008-08-23 02:25:05 +0000 | [diff] [blame] | 915 | } |
| 916 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 917 | SDValue SelectionDAG::getAnyExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) { |
Nadav Rotem | a3c42f3 | 2011-09-27 11:16:47 +0000 | [diff] [blame] | 918 | return VT.bitsGT(Op.getValueType()) ? |
| 919 | getNode(ISD::ANY_EXTEND, DL, VT, Op) : |
| 920 | getNode(ISD::TRUNCATE, DL, VT, Op); |
| 921 | } |
| 922 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 923 | SDValue SelectionDAG::getSExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) { |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 924 | return VT.bitsGT(Op.getValueType()) ? |
| 925 | getNode(ISD::SIGN_EXTEND, DL, VT, Op) : |
| 926 | getNode(ISD::TRUNCATE, DL, VT, Op); |
| 927 | } |
| 928 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 929 | SDValue SelectionDAG::getZExtOrTrunc(SDValue Op, SDLoc DL, EVT VT) { |
Duncan Sands | 3a66a68 | 2009-10-13 21:04:12 +0000 | [diff] [blame] | 930 | return VT.bitsGT(Op.getValueType()) ? |
| 931 | getNode(ISD::ZERO_EXTEND, DL, VT, Op) : |
| 932 | getNode(ISD::TRUNCATE, DL, VT, Op); |
| 933 | } |
| 934 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 935 | SDValue SelectionDAG::getZeroExtendInReg(SDValue Op, SDLoc DL, EVT VT) { |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 936 | assert(!VT.isVector() && |
| 937 | "getZeroExtendInReg should use the vector element type instead of " |
| 938 | "the vector type!"); |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 939 | if (Op.getValueType() == VT) return Op; |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 940 | unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits(); |
| 941 | APInt Imm = APInt::getLowBitsSet(BitWidth, |
Bill Wendling | 6ce610f | 2009-01-30 22:23:15 +0000 | [diff] [blame] | 942 | VT.getSizeInBits()); |
| 943 | return getNode(ISD::AND, DL, Op.getValueType(), Op, |
| 944 | getConstant(Imm, Op.getValueType())); |
| 945 | } |
| 946 | |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 947 | /// getNOT - Create a bitwise NOT operation as (XOR Val, -1). |
| 948 | /// |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 949 | SDValue SelectionDAG::getNOT(SDLoc DL, SDValue Val, EVT VT) { |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 950 | EVT EltVT = VT.getScalarType(); |
Dan Gohman | bd209ab | 2009-04-20 22:51:43 +0000 | [diff] [blame] | 951 | SDValue NegOne = |
| 952 | getConstant(APInt::getAllOnesValue(EltVT.getSizeInBits()), VT); |
Bill Wendling | 41b9d27 | 2009-01-30 22:11:22 +0000 | [diff] [blame] | 953 | return getNode(ISD::XOR, DL, VT, Val, NegOne); |
| 954 | } |
| 955 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 956 | SDValue SelectionDAG::getConstant(uint64_t Val, EVT VT, bool isT) { |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 957 | EVT EltVT = VT.getScalarType(); |
Dan Gohman | ce9bc12 | 2009-01-27 20:39:34 +0000 | [diff] [blame] | 958 | assert((EltVT.getSizeInBits() >= 64 || |
| 959 | (uint64_t)((int64_t)Val >> EltVT.getSizeInBits()) + 1 < 2) && |
| 960 | "getConstant with a uint64_t value that doesn't fit in the type!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 961 | return getConstant(APInt(EltVT.getSizeInBits(), Val), VT, isT); |
Dan Gohman | 6394b09 | 2008-02-08 22:59:30 +0000 | [diff] [blame] | 962 | } |
| 963 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 964 | SDValue SelectionDAG::getConstant(const APInt &Val, EVT VT, bool isT) { |
Owen Anderson | eed707b | 2009-07-24 23:12:02 +0000 | [diff] [blame] | 965 | return getConstant(*ConstantInt::get(*Context, Val), VT, isT); |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 966 | } |
| 967 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 968 | SDValue SelectionDAG::getConstant(const ConstantInt &Val, EVT VT, bool isT) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 969 | assert(VT.isInteger() && "Cannot create FP integer constant!"); |
Dan Gohman | 8908132 | 2007-12-12 22:21:26 +0000 | [diff] [blame] | 970 | |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 971 | EVT EltVT = VT.getScalarType(); |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 972 | const ConstantInt *Elt = &Val; |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 973 | |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 974 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 975 | |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 976 | // In some cases the vector type is legal but the element type is illegal and |
| 977 | // needs to be promoted, for example v8i8 on ARM. In this case, promote the |
| 978 | // inserted value (the type does not need to match the vector element type). |
| 979 | // Any extra bits introduced will be truncated away. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 980 | if (VT.isVector() && TLI->getTypeAction(*getContext(), EltVT) == |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 981 | TargetLowering::TypePromoteInteger) { |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 982 | EltVT = TLI->getTypeToTransformTo(*getContext(), EltVT); |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 983 | APInt NewVal = Elt->getValue().zext(EltVT.getSizeInBits()); |
| 984 | Elt = ConstantInt::get(*getContext(), NewVal); |
| 985 | } |
| 986 | |
| 987 | assert(Elt->getBitWidth() == EltVT.getSizeInBits() && |
| 988 | "APInt size does not match type size!"); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 989 | unsigned Opc = isT ? ISD::TargetConstant : ISD::Constant; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 990 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 991 | AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0); |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 992 | ID.AddPointer(Elt); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 993 | void *IP = 0; |
Dan Gohman | 8908132 | 2007-12-12 22:21:26 +0000 | [diff] [blame] | 994 | SDNode *N = NULL; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 995 | if ((N = CSEMap.FindNodeOrInsertPos(ID, IP))) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 996 | if (!VT.isVector()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 997 | return SDValue(N, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 998 | |
Dan Gohman | 8908132 | 2007-12-12 22:21:26 +0000 | [diff] [blame] | 999 | if (!N) { |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 1000 | N = new (NodeAllocator) ConstantSDNode(isT, Elt, EltVT); |
Dan Gohman | 8908132 | 2007-12-12 22:21:26 +0000 | [diff] [blame] | 1001 | CSEMap.InsertNode(N, IP); |
| 1002 | AllNodes.push_back(N); |
| 1003 | } |
| 1004 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1005 | SDValue Result(N, 0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1006 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1007 | SmallVector<SDValue, 8> Ops; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1008 | Ops.assign(VT.getVectorNumElements(), Result); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1009 | Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, &Ops[0], Ops.size()); |
Dan Gohman | 8908132 | 2007-12-12 22:21:26 +0000 | [diff] [blame] | 1010 | } |
| 1011 | return Result; |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 1012 | } |
| 1013 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1014 | SDValue SelectionDAG::getIntPtrConstant(uint64_t Val, bool isTarget) { |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1015 | return getConstant(Val, TM.getTargetLowering()->getPointerTy(), isTarget); |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 1016 | } |
| 1017 | |
| 1018 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1019 | SDValue SelectionDAG::getConstantFP(const APFloat& V, EVT VT, bool isTarget) { |
Owen Anderson | 6f83c9c | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 1020 | return getConstantFP(*ConstantFP::get(*getContext(), V), VT, isTarget); |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1023 | SDValue SelectionDAG::getConstantFP(const ConstantFP& V, EVT VT, bool isTarget){ |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1024 | assert(VT.isFloatingPoint() && "Cannot create integer FP constant!"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1025 | |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 1026 | EVT EltVT = VT.getScalarType(); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1027 | |
Chris Lattner | d865861 | 2005-02-17 20:17:32 +0000 | [diff] [blame] | 1028 | // Do the map lookup using the actual bit pattern for the floating point |
| 1029 | // value, so that we don't have problems with 0.0 comparing equal to -0.0, and |
| 1030 | // we don't have issues with SNANs. |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1031 | unsigned Opc = isTarget ? ISD::TargetConstantFP : ISD::ConstantFP; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1032 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1033 | AddNodeIDNode(ID, Opc, getVTList(EltVT), 0, 0); |
Dan Gohman | 4fbd796 | 2008-09-12 18:08:03 +0000 | [diff] [blame] | 1034 | ID.AddPointer(&V); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1035 | void *IP = 0; |
Evan Cheng | c908dcd | 2007-06-29 21:36:04 +0000 | [diff] [blame] | 1036 | SDNode *N = NULL; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1037 | if ((N = CSEMap.FindNodeOrInsertPos(ID, IP))) |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1038 | if (!VT.isVector()) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1039 | return SDValue(N, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1040 | |
Evan Cheng | c908dcd | 2007-06-29 21:36:04 +0000 | [diff] [blame] | 1041 | if (!N) { |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1042 | N = new (NodeAllocator) ConstantFPSDNode(isTarget, &V, EltVT); |
Evan Cheng | c908dcd | 2007-06-29 21:36:04 +0000 | [diff] [blame] | 1043 | CSEMap.InsertNode(N, IP); |
| 1044 | AllNodes.push_back(N); |
| 1045 | } |
| 1046 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1047 | SDValue Result(N, 0); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1048 | if (VT.isVector()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1049 | SmallVector<SDValue, 8> Ops; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1050 | Ops.assign(VT.getVectorNumElements(), Result); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1051 | // FIXME SDLoc info might be appropriate here |
| 1052 | Result = getNode(ISD::BUILD_VECTOR, SDLoc(), VT, &Ops[0], Ops.size()); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 1053 | } |
| 1054 | return Result; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1055 | } |
| 1056 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1057 | SDValue SelectionDAG::getConstantFP(double Val, EVT VT, bool isTarget) { |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 1058 | EVT EltVT = VT.getScalarType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1059 | if (EltVT==MVT::f32) |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 1060 | return getConstantFP(APFloat((float)Val), VT, isTarget); |
Dale Johannesen | 0a406ae | 2010-05-07 21:35:53 +0000 | [diff] [blame] | 1061 | else if (EltVT==MVT::f64) |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 1062 | return getConstantFP(APFloat(Val), VT, isTarget); |
Hal Finkel | 6eb7a42 | 2012-12-30 19:03:32 +0000 | [diff] [blame] | 1063 | else if (EltVT==MVT::f80 || EltVT==MVT::f128 || EltVT==MVT::ppcf128 || |
| 1064 | EltVT==MVT::f16) { |
Dale Johannesen | 0a406ae | 2010-05-07 21:35:53 +0000 | [diff] [blame] | 1065 | bool ignored; |
| 1066 | APFloat apf = APFloat(Val); |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 1067 | apf.convert(EVTToAPFloatSemantics(EltVT), APFloat::rmNearestTiesToEven, |
Dale Johannesen | 0a406ae | 2010-05-07 21:35:53 +0000 | [diff] [blame] | 1068 | &ignored); |
| 1069 | return getConstantFP(apf, VT, isTarget); |
Craig Topper | 5e25ee8 | 2012-02-05 08:31:47 +0000 | [diff] [blame] | 1070 | } else |
| 1071 | llvm_unreachable("Unsupported type in getConstantFP"); |
Dale Johannesen | f04afdb | 2007-08-30 00:23:21 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1074 | SDValue SelectionDAG::getGlobalAddress(const GlobalValue *GV, SDLoc DL, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1075 | EVT VT, int64_t Offset, |
Chris Lattner | 2a4ed82 | 2009-06-25 21:21:14 +0000 | [diff] [blame] | 1076 | bool isTargetGA, |
| 1077 | unsigned char TargetFlags) { |
| 1078 | assert((TargetFlags == 0 || isTargetGA) && |
| 1079 | "Cannot set target flags on target-independent globals"); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1080 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1081 | // Truncate (with sign-extension) the offset value to the pointer size. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1082 | unsigned BitWidth = TM.getTargetLowering()->getPointerTy().getSizeInBits(); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1083 | if (BitWidth < 64) |
Richard Smith | 1144af3 | 2012-08-24 23:29:28 +0000 | [diff] [blame] | 1084 | Offset = SignExtend64(Offset, BitWidth); |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 1085 | |
Anton Korobeynikov | 4d86e2a | 2008-03-11 22:38:53 +0000 | [diff] [blame] | 1086 | const GlobalVariable *GVar = dyn_cast<GlobalVariable>(GV); |
| 1087 | if (!GVar) { |
Anton Korobeynikov | c73ede0 | 2008-03-22 07:53:40 +0000 | [diff] [blame] | 1088 | // If GV is an alias then use the aliasee for determining thread-localness. |
Anton Korobeynikov | 4d86e2a | 2008-03-11 22:38:53 +0000 | [diff] [blame] | 1089 | if (const GlobalAlias *GA = dyn_cast<GlobalAlias>(GV)) |
Anton Korobeynikov | 19e861a | 2008-09-09 20:05:04 +0000 | [diff] [blame] | 1090 | GVar = dyn_cast_or_null<GlobalVariable>(GA->resolveAliasedGlobal(false)); |
Anton Korobeynikov | 4d86e2a | 2008-03-11 22:38:53 +0000 | [diff] [blame] | 1091 | } |
| 1092 | |
Chris Lattner | 2a4ed82 | 2009-06-25 21:21:14 +0000 | [diff] [blame] | 1093 | unsigned Opc; |
Lauro Ramos Venancio | b3a0417 | 2007-04-20 21:38:10 +0000 | [diff] [blame] | 1094 | if (GVar && GVar->isThreadLocal()) |
| 1095 | Opc = isTargetGA ? ISD::TargetGlobalTLSAddress : ISD::GlobalTLSAddress; |
| 1096 | else |
| 1097 | Opc = isTargetGA ? ISD::TargetGlobalAddress : ISD::GlobalAddress; |
Anton Korobeynikov | 4d86e2a | 2008-03-11 22:38:53 +0000 | [diff] [blame] | 1098 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1099 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1100 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1101 | ID.AddPointer(GV); |
| 1102 | ID.AddInteger(Offset); |
Chris Lattner | 2a4ed82 | 2009-06-25 21:21:14 +0000 | [diff] [blame] | 1103 | ID.AddInteger(TargetFlags); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 1104 | ID.AddInteger(GV->getType()->getAddressSpace()); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1105 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1106 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 74692c0 | 2009-01-25 16:21:38 +0000 | [diff] [blame] | 1107 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1108 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1109 | SDNode *N = new (NodeAllocator) GlobalAddressSDNode(Opc, DL.getIROrder(), |
| 1110 | DL.getDebugLoc(), GV, VT, |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1111 | Offset, TargetFlags); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1112 | CSEMap.InsertNode(N, IP); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1113 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1114 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1115 | } |
| 1116 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1117 | SDValue SelectionDAG::getFrameIndex(int FI, EVT VT, bool isTarget) { |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1118 | unsigned Opc = isTarget ? ISD::TargetFrameIndex : ISD::FrameIndex; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1119 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1120 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1121 | ID.AddInteger(FI); |
| 1122 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1123 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1124 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1125 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1126 | SDNode *N = new (NodeAllocator) FrameIndexSDNode(FI, VT, isTarget); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1127 | CSEMap.InsertNode(N, IP); |
Chris Lattner | afb2dd4 | 2005-08-25 00:43:01 +0000 | [diff] [blame] | 1128 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1129 | return SDValue(N, 0); |
Chris Lattner | afb2dd4 | 2005-08-25 00:43:01 +0000 | [diff] [blame] | 1130 | } |
| 1131 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1132 | SDValue SelectionDAG::getJumpTable(int JTI, EVT VT, bool isTarget, |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1133 | unsigned char TargetFlags) { |
| 1134 | assert((TargetFlags == 0 || isTarget) && |
| 1135 | "Cannot set target flags on target-independent jump tables"); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1136 | unsigned Opc = isTarget ? ISD::TargetJumpTable : ISD::JumpTable; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1137 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1138 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1139 | ID.AddInteger(JTI); |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1140 | ID.AddInteger(TargetFlags); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1141 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1142 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1143 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1144 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1145 | SDNode *N = new (NodeAllocator) JumpTableSDNode(JTI, VT, isTarget, |
| 1146 | TargetFlags); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1147 | CSEMap.InsertNode(N, IP); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1148 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1149 | return SDValue(N, 0); |
Nate Begeman | 37efe67 | 2006-04-22 18:53:45 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1152 | SDValue SelectionDAG::getConstantPool(const Constant *C, EVT VT, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1153 | unsigned Alignment, int Offset, |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1154 | bool isTarget, |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1155 | unsigned char TargetFlags) { |
| 1156 | assert((TargetFlags == 0 || isTarget) && |
| 1157 | "Cannot set target flags on target-independent globals"); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 1158 | if (Alignment == 0) |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1159 | Alignment = |
| 1160 | TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType()); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1161 | unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1162 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1163 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1164 | ID.AddInteger(Alignment); |
| 1165 | ID.AddInteger(Offset); |
Chris Lattner | 130fc13 | 2006-08-14 20:12:44 +0000 | [diff] [blame] | 1166 | ID.AddPointer(C); |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1167 | ID.AddInteger(TargetFlags); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1168 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1169 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1170 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1171 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1172 | SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset, |
| 1173 | Alignment, TargetFlags); |
Chris Lattner | c9f8f41 | 2006-08-11 21:55:30 +0000 | [diff] [blame] | 1174 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 4025a9c | 2005-08-25 05:03:06 +0000 | [diff] [blame] | 1175 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1176 | return SDValue(N, 0); |
Chris Lattner | 4025a9c | 2005-08-25 05:03:06 +0000 | [diff] [blame] | 1177 | } |
| 1178 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1179 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1180 | SDValue SelectionDAG::getConstantPool(MachineConstantPoolValue *C, EVT VT, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1181 | unsigned Alignment, int Offset, |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1182 | bool isTarget, |
| 1183 | unsigned char TargetFlags) { |
| 1184 | assert((TargetFlags == 0 || isTarget) && |
| 1185 | "Cannot set target flags on target-independent globals"); |
Dan Gohman | 50284d8 | 2008-09-16 22:05:41 +0000 | [diff] [blame] | 1186 | if (Alignment == 0) |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1187 | Alignment = |
| 1188 | TM.getTargetLowering()->getDataLayout()->getPrefTypeAlignment(C->getType()); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1189 | unsigned Opc = isTarget ? ISD::TargetConstantPool : ISD::ConstantPool; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1190 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1191 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1192 | ID.AddInteger(Alignment); |
| 1193 | ID.AddInteger(Offset); |
Jim Grosbach | 5405d58 | 2011-09-27 20:59:33 +0000 | [diff] [blame] | 1194 | C->addSelectionDAGCSEId(ID); |
Chris Lattner | f5a5546 | 2009-06-25 21:35:31 +0000 | [diff] [blame] | 1195 | ID.AddInteger(TargetFlags); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1196 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1197 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1198 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1199 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1200 | SDNode *N = new (NodeAllocator) ConstantPoolSDNode(isTarget, C, VT, Offset, |
| 1201 | Alignment, TargetFlags); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1202 | CSEMap.InsertNode(N, IP); |
| 1203 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1204 | return SDValue(N, 0); |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 1205 | } |
| 1206 | |
Jakob Stoklund Olesen | 74500bd | 2012-08-07 22:37:05 +0000 | [diff] [blame] | 1207 | SDValue SelectionDAG::getTargetIndex(int Index, EVT VT, int64_t Offset, |
| 1208 | unsigned char TargetFlags) { |
| 1209 | FoldingSetNodeID ID; |
| 1210 | AddNodeIDNode(ID, ISD::TargetIndex, getVTList(VT), 0, 0); |
| 1211 | ID.AddInteger(Index); |
| 1212 | ID.AddInteger(Offset); |
| 1213 | ID.AddInteger(TargetFlags); |
| 1214 | void *IP = 0; |
| 1215 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
| 1216 | return SDValue(E, 0); |
| 1217 | |
| 1218 | SDNode *N = new (NodeAllocator) TargetIndexSDNode(Index, VT, Offset, |
| 1219 | TargetFlags); |
| 1220 | CSEMap.InsertNode(N, IP); |
| 1221 | AllNodes.push_back(N); |
| 1222 | return SDValue(N, 0); |
| 1223 | } |
| 1224 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1225 | SDValue SelectionDAG::getBasicBlock(MachineBasicBlock *MBB) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1226 | FoldingSetNodeID ID; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1227 | AddNodeIDNode(ID, ISD::BasicBlock, getVTList(MVT::Other), 0, 0); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1228 | ID.AddPointer(MBB); |
| 1229 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1230 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1231 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1232 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1233 | SDNode *N = new (NodeAllocator) BasicBlockSDNode(MBB); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1234 | CSEMap.InsertNode(N, IP); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1235 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1236 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1237 | } |
| 1238 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1239 | SDValue SelectionDAG::getValueType(EVT VT) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1240 | if (VT.isSimple() && (unsigned)VT.getSimpleVT().SimpleTy >= |
| 1241 | ValueTypeNodes.size()) |
| 1242 | ValueTypeNodes.resize(VT.getSimpleVT().SimpleTy+1); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 1243 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1244 | SDNode *&N = VT.isExtended() ? |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1245 | ExtendedValueTypeNodes[VT] : ValueTypeNodes[VT.getSimpleVT().SimpleTy]; |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 1246 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1247 | if (N) return SDValue(N, 0); |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1248 | N = new (NodeAllocator) VTSDNode(VT); |
Duncan Sands | f411b83 | 2007-10-17 13:49:58 +0000 | [diff] [blame] | 1249 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1250 | return SDValue(N, 0); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1253 | SDValue SelectionDAG::getExternalSymbol(const char *Sym, EVT VT) { |
Bill Wendling | 056292f | 2008-09-16 21:48:12 +0000 | [diff] [blame] | 1254 | SDNode *&N = ExternalSymbols[Sym]; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1255 | if (N) return SDValue(N, 0); |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1256 | N = new (NodeAllocator) ExternalSymbolSDNode(false, Sym, 0, VT); |
Andrew Lenharth | 2a2de66 | 2005-10-23 03:40:17 +0000 | [diff] [blame] | 1257 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1258 | return SDValue(N, 0); |
Andrew Lenharth | 2a2de66 | 2005-10-23 03:40:17 +0000 | [diff] [blame] | 1259 | } |
| 1260 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1261 | SDValue SelectionDAG::getTargetExternalSymbol(const char *Sym, EVT VT, |
Chris Lattner | 1af2231 | 2009-06-25 18:45:50 +0000 | [diff] [blame] | 1262 | unsigned char TargetFlags) { |
| 1263 | SDNode *&N = |
| 1264 | TargetExternalSymbols[std::pair<std::string,unsigned char>(Sym, |
| 1265 | TargetFlags)]; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1266 | if (N) return SDValue(N, 0); |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1267 | N = new (NodeAllocator) ExternalSymbolSDNode(true, Sym, TargetFlags, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1268 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1269 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1270 | } |
| 1271 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1272 | SDValue SelectionDAG::getCondCode(ISD::CondCode Cond) { |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 1273 | if ((unsigned)Cond >= CondCodeNodes.size()) |
| 1274 | CondCodeNodes.resize(Cond+1); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1275 | |
Chris Lattner | 079a27a | 2005-08-09 20:40:02 +0000 | [diff] [blame] | 1276 | if (CondCodeNodes[Cond] == 0) { |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1277 | CondCodeSDNode *N = new (NodeAllocator) CondCodeSDNode(Cond); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 1278 | CondCodeNodes[Cond] = N; |
| 1279 | AllNodes.push_back(N); |
Chris Lattner | 079a27a | 2005-08-09 20:40:02 +0000 | [diff] [blame] | 1280 | } |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1281 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1282 | return SDValue(CondCodeNodes[Cond], 0); |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 1283 | } |
| 1284 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1285 | // commuteShuffle - swaps the values of N1 and N2, and swaps all indices in |
| 1286 | // the shuffle mask M that point at N1 to point at N2, and indices that point |
| 1287 | // N2 to point at N1. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1288 | static void commuteShuffle(SDValue &N1, SDValue &N2, SmallVectorImpl<int> &M) { |
| 1289 | std::swap(N1, N2); |
| 1290 | int NElts = M.size(); |
| 1291 | for (int i = 0; i != NElts; ++i) { |
| 1292 | if (M[i] >= NElts) |
| 1293 | M[i] -= NElts; |
| 1294 | else if (M[i] >= 0) |
| 1295 | M[i] += NElts; |
| 1296 | } |
| 1297 | } |
| 1298 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1299 | SDValue SelectionDAG::getVectorShuffle(EVT VT, SDLoc dl, SDValue N1, |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1300 | SDValue N2, const int *Mask) { |
Craig Topper | ad445a6 | 2013-08-09 04:37:24 +0000 | [diff] [blame] | 1301 | assert(VT == N1.getValueType() && VT == N2.getValueType() && |
| 1302 | "Invalid VECTOR_SHUFFLE"); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1303 | |
| 1304 | // Canonicalize shuffle undef, undef -> undef |
| 1305 | if (N1.getOpcode() == ISD::UNDEF && N2.getOpcode() == ISD::UNDEF) |
Dan Gohman | 2e4284d | 2009-07-09 00:46:33 +0000 | [diff] [blame] | 1306 | return getUNDEF(VT); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1307 | |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1308 | // Validate that all indices in Mask are within the range of the elements |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1309 | // input to the shuffle. |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1310 | unsigned NElts = VT.getVectorNumElements(); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1311 | SmallVector<int, 8> MaskVec; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1312 | for (unsigned i = 0; i != NElts; ++i) { |
| 1313 | assert(Mask[i] < (int)(NElts * 2) && "Index out of range"); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1314 | MaskVec.push_back(Mask[i]); |
| 1315 | } |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1316 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1317 | // Canonicalize shuffle v, v -> v, undef |
| 1318 | if (N1 == N2) { |
| 1319 | N2 = getUNDEF(VT); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1320 | for (unsigned i = 0; i != NElts; ++i) |
| 1321 | if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1322 | } |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1323 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1324 | // Canonicalize shuffle undef, v -> v, undef. Commute the shuffle mask. |
| 1325 | if (N1.getOpcode() == ISD::UNDEF) |
| 1326 | commuteShuffle(N1, N2, MaskVec); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1327 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1328 | // Canonicalize all index into lhs, -> shuffle lhs, undef |
| 1329 | // Canonicalize all index into rhs, -> shuffle rhs, undef |
| 1330 | bool AllLHS = true, AllRHS = true; |
| 1331 | bool N2Undef = N2.getOpcode() == ISD::UNDEF; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1332 | for (unsigned i = 0; i != NElts; ++i) { |
| 1333 | if (MaskVec[i] >= (int)NElts) { |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1334 | if (N2Undef) |
| 1335 | MaskVec[i] = -1; |
| 1336 | else |
| 1337 | AllLHS = false; |
| 1338 | } else if (MaskVec[i] >= 0) { |
| 1339 | AllRHS = false; |
| 1340 | } |
| 1341 | } |
| 1342 | if (AllLHS && AllRHS) |
| 1343 | return getUNDEF(VT); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1344 | if (AllLHS && !N2Undef) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1345 | N2 = getUNDEF(VT); |
| 1346 | if (AllRHS) { |
| 1347 | N1 = getUNDEF(VT); |
| 1348 | commuteShuffle(N1, N2, MaskVec); |
| 1349 | } |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1350 | |
Craig Topper | eee2a11 | 2013-08-08 08:03:12 +0000 | [diff] [blame] | 1351 | // If Identity shuffle return that node. |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1352 | bool Identity = true; |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1353 | for (unsigned i = 0; i != NElts; ++i) { |
| 1354 | if (MaskVec[i] >= 0 && MaskVec[i] != (int)i) Identity = false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1355 | } |
Craig Topper | ad445a6 | 2013-08-09 04:37:24 +0000 | [diff] [blame] | 1356 | if (Identity && NElts) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1357 | return N1; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1358 | |
| 1359 | FoldingSetNodeID ID; |
| 1360 | SDValue Ops[2] = { N1, N2 }; |
| 1361 | AddNodeIDNode(ID, ISD::VECTOR_SHUFFLE, getVTList(VT), Ops, 2); |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 1362 | for (unsigned i = 0; i != NElts; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1363 | ID.AddInteger(MaskVec[i]); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1364 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1365 | void* IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1366 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1367 | return SDValue(E, 0); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1368 | |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1369 | // Allocate the mask array for the node out of the BumpPtrAllocator, since |
| 1370 | // SDNode doesn't have access to it. This memory will be "leaked" when |
| 1371 | // the node is deallocated, but recovered when the NodeAllocator is released. |
| 1372 | int *MaskAlloc = OperandAllocator.Allocate<int>(NElts); |
| 1373 | memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int)); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1374 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1375 | ShuffleVectorSDNode *N = |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 1376 | new (NodeAllocator) ShuffleVectorSDNode(VT, dl.getIROrder(), |
| 1377 | dl.getDebugLoc(), N1, N2, |
| 1378 | MaskAlloc); |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 1379 | CSEMap.InsertNode(N, IP); |
| 1380 | AllNodes.push_back(N); |
| 1381 | return SDValue(N, 0); |
| 1382 | } |
| 1383 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1384 | SDValue SelectionDAG::getConvertRndSat(EVT VT, SDLoc dl, |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1385 | SDValue Val, SDValue DTy, |
| 1386 | SDValue STy, SDValue Rnd, SDValue Sat, |
| 1387 | ISD::CvtCode Code) { |
Mon P Wang | b0e341b | 2009-02-05 04:47:42 +0000 | [diff] [blame] | 1388 | // If the src and dest types are the same and the conversion is between |
| 1389 | // integer types of the same sign or two floats, no conversion is necessary. |
| 1390 | if (DTy == STy && |
| 1391 | (Code == ISD::CVT_UU || Code == ISD::CVT_SS || Code == ISD::CVT_FF)) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1392 | return Val; |
| 1393 | |
| 1394 | FoldingSetNodeID ID; |
Mon P Wang | bdea348 | 2009-11-07 04:46:25 +0000 | [diff] [blame] | 1395 | SDValue Ops[] = { Val, DTy, STy, Rnd, Sat }; |
| 1396 | AddNodeIDNode(ID, ISD::CONVERT_RNDSAT, getVTList(VT), &Ops[0], 5); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1397 | void* IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1398 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1399 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1400 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 1401 | CvtRndSatSDNode *N = new (NodeAllocator) CvtRndSatSDNode(VT, dl.getIROrder(), |
| 1402 | dl.getDebugLoc(), |
| 1403 | Ops, 5, Code); |
Dale Johannesen | a04b757 | 2009-02-03 23:04:43 +0000 | [diff] [blame] | 1404 | CSEMap.InsertNode(N, IP); |
| 1405 | AllNodes.push_back(N); |
| 1406 | return SDValue(N, 0); |
| 1407 | } |
| 1408 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1409 | SDValue SelectionDAG::getRegister(unsigned RegNo, EVT VT) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1410 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 1411 | AddNodeIDNode(ID, ISD::Register, getVTList(VT), 0, 0); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1412 | ID.AddInteger(RegNo); |
| 1413 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1414 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1415 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1416 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1417 | SDNode *N = new (NodeAllocator) RegisterSDNode(RegNo, VT); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1418 | CSEMap.InsertNode(N, IP); |
| 1419 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1420 | return SDValue(N, 0); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1421 | } |
| 1422 | |
Jakob Stoklund Olesen | 9cf37e8 | 2012-01-18 23:52:12 +0000 | [diff] [blame] | 1423 | SDValue SelectionDAG::getRegisterMask(const uint32_t *RegMask) { |
| 1424 | FoldingSetNodeID ID; |
| 1425 | AddNodeIDNode(ID, ISD::RegisterMask, getVTList(MVT::Untyped), 0, 0); |
| 1426 | ID.AddPointer(RegMask); |
| 1427 | void *IP = 0; |
| 1428 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
| 1429 | return SDValue(E, 0); |
| 1430 | |
| 1431 | SDNode *N = new (NodeAllocator) RegisterMaskSDNode(RegMask); |
| 1432 | CSEMap.InsertNode(N, IP); |
| 1433 | AllNodes.push_back(N); |
| 1434 | return SDValue(N, 0); |
| 1435 | } |
| 1436 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1437 | SDValue SelectionDAG::getEHLabel(SDLoc dl, SDValue Root, MCSymbol *Label) { |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 1438 | FoldingSetNodeID ID; |
| 1439 | SDValue Ops[] = { Root }; |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 1440 | AddNodeIDNode(ID, ISD::EH_LABEL, getVTList(MVT::Other), &Ops[0], 1); |
| 1441 | ID.AddPointer(Label); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 1442 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1443 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 1444 | return SDValue(E, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1445 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 1446 | SDNode *N = new (NodeAllocator) EHLabelSDNode(dl.getIROrder(), |
| 1447 | dl.getDebugLoc(), Root, Label); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 1448 | CSEMap.InsertNode(N, IP); |
| 1449 | AllNodes.push_back(N); |
| 1450 | return SDValue(N, 0); |
| 1451 | } |
| 1452 | |
Chris Lattner | 7561d48 | 2010-03-14 02:33:54 +0000 | [diff] [blame] | 1453 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 1454 | SDValue SelectionDAG::getBlockAddress(const BlockAddress *BA, EVT VT, |
Michael Liao | 6c7ccaa | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 1455 | int64_t Offset, |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 1456 | bool isTarget, |
| 1457 | unsigned char TargetFlags) { |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 1458 | unsigned Opc = isTarget ? ISD::TargetBlockAddress : ISD::BlockAddress; |
| 1459 | |
| 1460 | FoldingSetNodeID ID; |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 1461 | AddNodeIDNode(ID, Opc, getVTList(VT), 0, 0); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 1462 | ID.AddPointer(BA); |
Michael Liao | 6c7ccaa | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 1463 | ID.AddInteger(Offset); |
Dan Gohman | 29cbade | 2009-11-20 23:18:13 +0000 | [diff] [blame] | 1464 | ID.AddInteger(TargetFlags); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 1465 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1466 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 1467 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1468 | |
Michael Liao | 6c7ccaa | 2012-09-12 21:43:09 +0000 | [diff] [blame] | 1469 | SDNode *N = new (NodeAllocator) BlockAddressSDNode(Opc, VT, BA, Offset, |
| 1470 | TargetFlags); |
Dan Gohman | 8c2b525 | 2009-10-30 01:27:03 +0000 | [diff] [blame] | 1471 | CSEMap.InsertNode(N, IP); |
| 1472 | AllNodes.push_back(N); |
| 1473 | return SDValue(N, 0); |
| 1474 | } |
| 1475 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1476 | SDValue SelectionDAG::getSrcValue(const Value *V) { |
Duncan Sands | 1df9859 | 2010-02-16 11:11:14 +0000 | [diff] [blame] | 1477 | assert((!V || V->getType()->isPointerTy()) && |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1478 | "SrcValue is not a pointer?"); |
| 1479 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 1480 | FoldingSetNodeID ID; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1481 | AddNodeIDNode(ID, ISD::SRCVALUE, getVTList(MVT::Other), 0, 0); |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1482 | ID.AddPointer(V); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1483 | |
Chris Lattner | 61b0941 | 2006-08-11 21:01:22 +0000 | [diff] [blame] | 1484 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 1485 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1486 | return SDValue(E, 0); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1487 | |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 1488 | SDNode *N = new (NodeAllocator) SrcValueSDNode(V); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1489 | CSEMap.InsertNode(N, IP); |
| 1490 | AllNodes.push_back(N); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1491 | return SDValue(N, 0); |
Dan Gohman | 69de193 | 2008-02-06 22:27:42 +0000 | [diff] [blame] | 1492 | } |
| 1493 | |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1494 | /// getMDNode - Return an MDNodeSDNode which holds an MDNode. |
| 1495 | SDValue SelectionDAG::getMDNode(const MDNode *MD) { |
| 1496 | FoldingSetNodeID ID; |
| 1497 | AddNodeIDNode(ID, ISD::MDNODE_SDNODE, getVTList(MVT::Other), 0, 0); |
| 1498 | ID.AddPointer(MD); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1499 | |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1500 | void *IP = 0; |
| 1501 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
| 1502 | return SDValue(E, 0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1503 | |
Chris Lattner | decc267 | 2010-04-07 05:20:54 +0000 | [diff] [blame] | 1504 | SDNode *N = new (NodeAllocator) MDNodeSDNode(MD); |
| 1505 | CSEMap.InsertNode(N, IP); |
| 1506 | AllNodes.push_back(N); |
| 1507 | return SDValue(N, 0); |
| 1508 | } |
| 1509 | |
| 1510 | |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1511 | /// getShiftAmountOperand - Return the specified value casted to |
| 1512 | /// the target's desired shift amount type. |
Owen Anderson | 6154f6c | 2011-03-07 18:29:47 +0000 | [diff] [blame] | 1513 | SDValue SelectionDAG::getShiftAmountOperand(EVT LHSTy, SDValue Op) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1514 | EVT OpTy = Op.getValueType(); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1515 | EVT ShTy = TM.getTargetLowering()->getShiftAmountTy(LHSTy); |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1516 | if (OpTy == ShTy || OpTy.isVector()) return Op; |
| 1517 | |
| 1518 | ISD::NodeType Opcode = OpTy.bitsGT(ShTy) ? ISD::TRUNCATE : ISD::ZERO_EXTEND; |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1519 | return getNode(Opcode, SDLoc(Op), ShTy, Op); |
Duncan Sands | 92abc62 | 2009-01-31 15:50:11 +0000 | [diff] [blame] | 1520 | } |
| 1521 | |
Chris Lattner | 37ce9df | 2007-10-15 17:47:20 +0000 | [diff] [blame] | 1522 | /// CreateStackTemporary - Create a stack temporary, suitable for holding the |
| 1523 | /// specified value type. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1524 | SDValue SelectionDAG::CreateStackTemporary(EVT VT, unsigned minAlign) { |
Chris Lattner | 37ce9df | 2007-10-15 17:47:20 +0000 | [diff] [blame] | 1525 | MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo(); |
Dan Gohman | 4e918b2 | 2009-09-23 21:07:02 +0000 | [diff] [blame] | 1526 | unsigned ByteSize = VT.getStoreSize(); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1527 | Type *Ty = VT.getTypeForEVT(*getContext()); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1528 | const TargetLowering *TLI = TM.getTargetLowering(); |
Mon P Wang | 364d73d | 2008-07-05 20:40:31 +0000 | [diff] [blame] | 1529 | unsigned StackAlign = |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1530 | std::max((unsigned)TLI->getDataLayout()->getPrefTypeAlignment(Ty), minAlign); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1531 | |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 1532 | int FrameIdx = FrameInfo->CreateStackObject(ByteSize, StackAlign, false); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1533 | return getFrameIndex(FrameIdx, TLI->getPointerTy()); |
Chris Lattner | 37ce9df | 2007-10-15 17:47:20 +0000 | [diff] [blame] | 1534 | } |
| 1535 | |
Duncan Sands | 47d9dcc | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 1536 | /// CreateStackTemporary - Create a stack temporary suitable for holding |
| 1537 | /// either of the specified value types. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1538 | SDValue SelectionDAG::CreateStackTemporary(EVT VT1, EVT VT2) { |
Duncan Sands | 47d9dcc | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 1539 | unsigned Bytes = std::max(VT1.getStoreSizeInBits(), |
| 1540 | VT2.getStoreSizeInBits())/8; |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 1541 | Type *Ty1 = VT1.getTypeForEVT(*getContext()); |
| 1542 | Type *Ty2 = VT2.getTypeForEVT(*getContext()); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1543 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 1544 | const DataLayout *TD = TLI->getDataLayout(); |
Duncan Sands | 47d9dcc | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 1545 | unsigned Align = std::max(TD->getPrefTypeAlignment(Ty1), |
| 1546 | TD->getPrefTypeAlignment(Ty2)); |
| 1547 | |
| 1548 | MachineFrameInfo *FrameInfo = getMachineFunction().getFrameInfo(); |
David Greene | 3f2bf85 | 2009-11-12 20:49:22 +0000 | [diff] [blame] | 1549 | int FrameIdx = FrameInfo->CreateStackObject(Bytes, Align, false); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1550 | return getFrameIndex(FrameIdx, TLI->getPointerTy()); |
Duncan Sands | 47d9dcc | 2008-12-09 21:33:20 +0000 | [diff] [blame] | 1551 | } |
| 1552 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1553 | SDValue SelectionDAG::FoldSetCC(EVT VT, SDValue N1, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1554 | SDValue N2, ISD::CondCode Cond, SDLoc dl) { |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1555 | // These setcc operations always fold. |
| 1556 | switch (Cond) { |
| 1557 | default: break; |
| 1558 | case ISD::SETFALSE: |
Chris Lattner | f30b73b | 2005-01-18 02:52:03 +0000 | [diff] [blame] | 1559 | case ISD::SETFALSE2: return getConstant(0, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1560 | case ISD::SETTRUE: |
Tim Northover | a5eeb9d | 2013-09-06 12:38:12 +0000 | [diff] [blame] | 1561 | case ISD::SETTRUE2: { |
| 1562 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 1563 | TargetLowering::BooleanContent Cnt = TLI->getBooleanContents(VT.isVector()); |
| 1564 | return getConstant( |
| 1565 | Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT); |
| 1566 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1567 | |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 1568 | case ISD::SETOEQ: |
| 1569 | case ISD::SETOGT: |
| 1570 | case ISD::SETOGE: |
| 1571 | case ISD::SETOLT: |
| 1572 | case ISD::SETOLE: |
| 1573 | case ISD::SETONE: |
| 1574 | case ISD::SETO: |
| 1575 | case ISD::SETUO: |
| 1576 | case ISD::SETUEQ: |
| 1577 | case ISD::SETUNE: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1578 | assert(!N1.getValueType().isInteger() && "Illegal setcc for integer!"); |
Chris Lattner | a83385f | 2006-04-27 05:01:07 +0000 | [diff] [blame] | 1579 | break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1580 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1581 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1582 | if (ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode())) { |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 1583 | const APInt &C2 = N2C->getAPIntValue(); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1584 | if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) { |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 1585 | const APInt &C1 = N1C->getAPIntValue(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1586 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1587 | switch (Cond) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1588 | default: llvm_unreachable("Unknown integer setcc!"); |
Chris Lattner | f30b73b | 2005-01-18 02:52:03 +0000 | [diff] [blame] | 1589 | case ISD::SETEQ: return getConstant(C1 == C2, VT); |
| 1590 | case ISD::SETNE: return getConstant(C1 != C2, VT); |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 1591 | case ISD::SETULT: return getConstant(C1.ult(C2), VT); |
| 1592 | case ISD::SETUGT: return getConstant(C1.ugt(C2), VT); |
| 1593 | case ISD::SETULE: return getConstant(C1.ule(C2), VT); |
| 1594 | case ISD::SETUGE: return getConstant(C1.uge(C2), VT); |
| 1595 | case ISD::SETLT: return getConstant(C1.slt(C2), VT); |
| 1596 | case ISD::SETGT: return getConstant(C1.sgt(C2), VT); |
| 1597 | case ISD::SETLE: return getConstant(C1.sle(C2), VT); |
| 1598 | case ISD::SETGE: return getConstant(C1.sge(C2), VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1599 | } |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1600 | } |
Chris Lattner | 67255a1 | 2005-04-07 18:14:58 +0000 | [diff] [blame] | 1601 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1602 | if (ConstantFPSDNode *N1C = dyn_cast<ConstantFPSDNode>(N1.getNode())) { |
| 1603 | if (ConstantFPSDNode *N2C = dyn_cast<ConstantFPSDNode>(N2.getNode())) { |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1604 | APFloat::cmpResult R = N1C->getValueAPF().compare(N2C->getValueAPF()); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1605 | switch (Cond) { |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1606 | default: break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1607 | case ISD::SETEQ: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1608 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1609 | // fall through |
| 1610 | case ISD::SETOEQ: return getConstant(R==APFloat::cmpEqual, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1611 | case ISD::SETNE: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1612 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1613 | // fall through |
| 1614 | case ISD::SETONE: return getConstant(R==APFloat::cmpGreaterThan || |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1615 | R==APFloat::cmpLessThan, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1616 | case ISD::SETLT: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1617 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1618 | // fall through |
| 1619 | case ISD::SETOLT: return getConstant(R==APFloat::cmpLessThan, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1620 | case ISD::SETGT: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1621 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1622 | // fall through |
| 1623 | case ISD::SETOGT: return getConstant(R==APFloat::cmpGreaterThan, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1624 | case ISD::SETLE: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1625 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1626 | // fall through |
| 1627 | case ISD::SETOLE: return getConstant(R==APFloat::cmpLessThan || |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1628 | R==APFloat::cmpEqual, VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1629 | case ISD::SETGE: if (R==APFloat::cmpUnordered) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1630 | return getUNDEF(VT); |
Dale Johannesen | ee84768 | 2007-08-31 17:03:33 +0000 | [diff] [blame] | 1631 | // fall through |
| 1632 | case ISD::SETOGE: return getConstant(R==APFloat::cmpGreaterThan || |
Dale Johannesen | eaf0894 | 2007-08-31 04:03:46 +0000 | [diff] [blame] | 1633 | R==APFloat::cmpEqual, VT); |
| 1634 | case ISD::SETO: return getConstant(R!=APFloat::cmpUnordered, VT); |
| 1635 | case ISD::SETUO: return getConstant(R==APFloat::cmpUnordered, VT); |
| 1636 | case ISD::SETUEQ: return getConstant(R==APFloat::cmpUnordered || |
| 1637 | R==APFloat::cmpEqual, VT); |
| 1638 | case ISD::SETUNE: return getConstant(R!=APFloat::cmpEqual, VT); |
| 1639 | case ISD::SETULT: return getConstant(R==APFloat::cmpUnordered || |
| 1640 | R==APFloat::cmpLessThan, VT); |
| 1641 | case ISD::SETUGT: return getConstant(R==APFloat::cmpGreaterThan || |
| 1642 | R==APFloat::cmpUnordered, VT); |
| 1643 | case ISD::SETULE: return getConstant(R!=APFloat::cmpGreaterThan, VT); |
| 1644 | case ISD::SETUGE: return getConstant(R!=APFloat::cmpLessThan, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1645 | } |
| 1646 | } else { |
| 1647 | // Ensure that the constant occurs on the RHS. |
Tom Stellard | 12d43f9 | 2013-09-28 02:50:38 +0000 | [diff] [blame] | 1648 | ISD::CondCode SwappedCond = ISD::getSetCCSwappedOperands(Cond); |
| 1649 | MVT CompVT = N1.getValueType().getSimpleVT(); |
| 1650 | if (!TM.getTargetLowering()->isCondCodeLegal(SwappedCond, CompVT)) |
| 1651 | return SDValue(); |
| 1652 | |
| 1653 | return getSetCC(dl, VT, N2, N1, SwappedCond); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1654 | } |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 1655 | } |
| 1656 | |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 1657 | // Could not fold it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1658 | return SDValue(); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1661 | /// SignBitIsZero - Return true if the sign bit of Op is known to be zero. We |
| 1662 | /// use this predicate to simplify operations downstream. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1663 | bool SelectionDAG::SignBitIsZero(SDValue Op, unsigned Depth) const { |
Chris Lattner | a4f7318 | 2009-07-07 23:28:46 +0000 | [diff] [blame] | 1664 | // This predicate is not safe for vector operations. |
| 1665 | if (Op.getValueType().isVector()) |
| 1666 | return false; |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 1667 | |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 1668 | unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1669 | return MaskedValueIsZero(Op, APInt::getSignBit(BitWidth), Depth); |
| 1670 | } |
| 1671 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1672 | /// MaskedValueIsZero - Return true if 'V & Mask' is known to be zero. We use |
| 1673 | /// this predicate to simplify operations downstream. Mask is known to be zero |
| 1674 | /// for bits that V cannot have. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1675 | bool SelectionDAG::MaskedValueIsZero(SDValue Op, const APInt &Mask, |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1676 | unsigned Depth) const { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1677 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1678 | ComputeMaskedBits(Op, KnownZero, KnownOne, Depth); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1679 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1680 | return (KnownZero & Mask) == Mask; |
| 1681 | } |
| 1682 | |
| 1683 | /// ComputeMaskedBits - Determine which of the bits specified in Mask are |
| 1684 | /// known to be either zero or one and return them in the KnownZero/KnownOne |
| 1685 | /// bitsets. This code only analyzes bits in Mask, in order to short-circuit |
| 1686 | /// processing. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1687 | void SelectionDAG::ComputeMaskedBits(SDValue Op, APInt &KnownZero, |
| 1688 | APInt &KnownOne, unsigned Depth) const { |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1689 | const TargetLowering *TLI = TM.getTargetLowering(); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1690 | unsigned BitWidth = Op.getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | d9fe41c | 2008-02-13 23:13:32 +0000 | [diff] [blame] | 1691 | |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1692 | KnownZero = KnownOne = APInt(BitWidth, 0); // Don't know anything. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1693 | if (Depth == 6) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1694 | return; // Limit search depth. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1695 | |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1696 | APInt KnownZero2, KnownOne2; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1697 | |
| 1698 | switch (Op.getOpcode()) { |
| 1699 | case ISD::Constant: |
| 1700 | // We know all of the bits for a constant! |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1701 | KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue(); |
| 1702 | KnownZero = ~KnownOne; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1703 | return; |
| 1704 | case ISD::AND: |
| 1705 | // If either the LHS or the RHS are Zero, the result is zero. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1706 | ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); |
| 1707 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1708 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1709 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1710 | |
| 1711 | // Output known-1 bits are only known if set in both the LHS & RHS. |
| 1712 | KnownOne &= KnownOne2; |
| 1713 | // Output known-0 are known to be clear if zero in either the LHS | RHS. |
| 1714 | KnownZero |= KnownZero2; |
| 1715 | return; |
| 1716 | case ISD::OR: |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1717 | ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); |
| 1718 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1719 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1720 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 1721 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1722 | // Output known-0 bits are only known if clear in both the LHS & RHS. |
| 1723 | KnownZero &= KnownZero2; |
| 1724 | // Output known-1 are known to be set if set in either the LHS | RHS. |
| 1725 | KnownOne |= KnownOne2; |
| 1726 | return; |
| 1727 | case ISD::XOR: { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1728 | ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); |
| 1729 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1730 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1731 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 1732 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1733 | // Output known-0 bits are known if clear or set in both the LHS & RHS. |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1734 | APInt KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1735 | // Output known-1 are known to be set if set in only one of the LHS, RHS. |
| 1736 | KnownOne = (KnownZero & KnownOne2) | (KnownOne & KnownZero2); |
| 1737 | KnownZero = KnownZeroOut; |
| 1738 | return; |
| 1739 | } |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1740 | case ISD::MUL: { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1741 | ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); |
| 1742 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1743 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1744 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 1745 | |
| 1746 | // If low bits are zero in either operand, output low known-0 bits. |
| 1747 | // Also compute a conserative estimate for high known-0 bits. |
| 1748 | // More trickiness is possible, but this is sufficient for the |
| 1749 | // interesting case of alignment computation. |
Jay Foad | 7a874dd | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1750 | KnownOne.clearAllBits(); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1751 | unsigned TrailZ = KnownZero.countTrailingOnes() + |
| 1752 | KnownZero2.countTrailingOnes(); |
| 1753 | unsigned LeadZ = std::max(KnownZero.countLeadingOnes() + |
Dan Gohman | 42ac929 | 2008-05-07 00:35:55 +0000 | [diff] [blame] | 1754 | KnownZero2.countLeadingOnes(), |
| 1755 | BitWidth) - BitWidth; |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1756 | |
| 1757 | TrailZ = std::min(TrailZ, BitWidth); |
| 1758 | LeadZ = std::min(LeadZ, BitWidth); |
| 1759 | KnownZero = APInt::getLowBitsSet(BitWidth, TrailZ) | |
| 1760 | APInt::getHighBitsSet(BitWidth, LeadZ); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1761 | return; |
| 1762 | } |
| 1763 | case ISD::UDIV: { |
| 1764 | // For the purposes of computing leading zeros we can conservatively |
| 1765 | // treat a udiv as a logical right shift by the power of 2 known to |
Dan Gohman | 1d9cd50 | 2008-05-02 21:30:02 +0000 | [diff] [blame] | 1766 | // be less than the denominator. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1767 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1768 | unsigned LeadZ = KnownZero2.countLeadingOnes(); |
| 1769 | |
Jay Foad | 7a874dd | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1770 | KnownOne2.clearAllBits(); |
| 1771 | KnownZero2.clearAllBits(); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1772 | ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1); |
Dan Gohman | 1d9cd50 | 2008-05-02 21:30:02 +0000 | [diff] [blame] | 1773 | unsigned RHSUnknownLeadingOnes = KnownOne2.countLeadingZeros(); |
| 1774 | if (RHSUnknownLeadingOnes != BitWidth) |
| 1775 | LeadZ = std::min(BitWidth, |
| 1776 | LeadZ + BitWidth - RHSUnknownLeadingOnes - 1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1777 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1778 | KnownZero = APInt::getHighBitsSet(BitWidth, LeadZ); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 1779 | return; |
| 1780 | } |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1781 | case ISD::SELECT: |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1782 | ComputeMaskedBits(Op.getOperand(2), KnownZero, KnownOne, Depth+1); |
| 1783 | ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1784 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1785 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 1786 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1787 | // Only known if known in both the LHS and RHS. |
| 1788 | KnownOne &= KnownOne2; |
| 1789 | KnownZero &= KnownZero2; |
| 1790 | return; |
| 1791 | case ISD::SELECT_CC: |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1792 | ComputeMaskedBits(Op.getOperand(3), KnownZero, KnownOne, Depth+1); |
| 1793 | ComputeMaskedBits(Op.getOperand(2), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1794 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1795 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 1796 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1797 | // Only known if known in both the LHS and RHS. |
| 1798 | KnownOne &= KnownOne2; |
| 1799 | KnownZero &= KnownZero2; |
| 1800 | return; |
Bill Wendling | 253174b | 2008-11-22 07:24:01 +0000 | [diff] [blame] | 1801 | case ISD::SADDO: |
| 1802 | case ISD::UADDO: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 1803 | case ISD::SSUBO: |
| 1804 | case ISD::USUBO: |
| 1805 | case ISD::SMULO: |
| 1806 | case ISD::UMULO: |
Bill Wendling | 253174b | 2008-11-22 07:24:01 +0000 | [diff] [blame] | 1807 | if (Op.getResNo() != 1) |
| 1808 | return; |
Duncan Sands | 0322808 | 2008-11-23 15:47:28 +0000 | [diff] [blame] | 1809 | // The boolean result conforms to getBooleanContents. Fall through. |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1810 | case ISD::SETCC: |
| 1811 | // If we know the result of a setcc has the top bits zero, use this info. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 1812 | if (TLI->getBooleanContents(Op.getValueType().isVector()) == |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 1813 | TargetLowering::ZeroOrOneBooleanContent && BitWidth > 1) |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1814 | KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - 1); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1815 | return; |
| 1816 | case ISD::SHL: |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1817 | // (shl X, C1) & C2 == 0 iff (X & C2 >>u C1) == 0 |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1818 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1819 | unsigned ShAmt = SA->getZExtValue(); |
Dan Gohman | d4cf992 | 2008-02-26 18:50:50 +0000 | [diff] [blame] | 1820 | |
| 1821 | // If the shift count is an invalid immediate, don't do anything. |
| 1822 | if (ShAmt >= BitWidth) |
| 1823 | return; |
| 1824 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1825 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1826 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | d4cf992 | 2008-02-26 18:50:50 +0000 | [diff] [blame] | 1827 | KnownZero <<= ShAmt; |
| 1828 | KnownOne <<= ShAmt; |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1829 | // low bits known zero. |
Dan Gohman | d4cf992 | 2008-02-26 18:50:50 +0000 | [diff] [blame] | 1830 | KnownZero |= APInt::getLowBitsSet(BitWidth, ShAmt); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1831 | } |
| 1832 | return; |
| 1833 | case ISD::SRL: |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1834 | // (ushr X, C1) & C2 == 0 iff (-1 >> C1) & C2 == 0 |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1835 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1836 | unsigned ShAmt = SA->getZExtValue(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1837 | |
Dan Gohman | d4cf992 | 2008-02-26 18:50:50 +0000 | [diff] [blame] | 1838 | // If the shift count is an invalid immediate, don't do anything. |
| 1839 | if (ShAmt >= BitWidth) |
| 1840 | return; |
| 1841 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1842 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1843 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1844 | KnownZero = KnownZero.lshr(ShAmt); |
| 1845 | KnownOne = KnownOne.lshr(ShAmt); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1846 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1847 | APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1848 | KnownZero |= HighBits; // High bits known zero. |
| 1849 | } |
| 1850 | return; |
| 1851 | case ISD::SRA: |
| 1852 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1853 | unsigned ShAmt = SA->getZExtValue(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1854 | |
Dan Gohman | d4cf992 | 2008-02-26 18:50:50 +0000 | [diff] [blame] | 1855 | // If the shift count is an invalid immediate, don't do anything. |
| 1856 | if (ShAmt >= BitWidth) |
| 1857 | return; |
| 1858 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1859 | // If any of the demanded bits are produced by the sign extension, we also |
| 1860 | // demand the input sign bit. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1861 | APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1862 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1863 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1864 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1865 | KnownZero = KnownZero.lshr(ShAmt); |
| 1866 | KnownOne = KnownOne.lshr(ShAmt); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1867 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1868 | // Handle the sign bits. |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1869 | APInt SignBit = APInt::getSignBit(BitWidth); |
| 1870 | SignBit = SignBit.lshr(ShAmt); // Adjust to where it is now in the mask. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1871 | |
Dan Gohman | ca93a43 | 2008-02-20 16:30:17 +0000 | [diff] [blame] | 1872 | if (KnownZero.intersects(SignBit)) { |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1873 | KnownZero |= HighBits; // New bits are known zero. |
Dan Gohman | ca93a43 | 2008-02-20 16:30:17 +0000 | [diff] [blame] | 1874 | } else if (KnownOne.intersects(SignBit)) { |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1875 | KnownOne |= HighBits; // New bits are known one. |
| 1876 | } |
| 1877 | } |
| 1878 | return; |
| 1879 | case ISD::SIGN_EXTEND_INREG: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1880 | EVT EVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 1881 | unsigned EBits = EVT.getScalarType().getSizeInBits(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1882 | |
| 1883 | // Sign extension. Compute the demanded bits in the result that are not |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1884 | // present in the input. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1885 | APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - EBits); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1886 | |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 1887 | APInt InSignBit = APInt::getSignBit(EBits); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1888 | APInt InputDemandedBits = APInt::getLowBitsSet(BitWidth, EBits); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1889 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1890 | // If the sign extended bits are demanded, we know that the sign |
| 1891 | // bit is demanded. |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1892 | InSignBit = InSignBit.zext(BitWidth); |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 1893 | if (NewBits.getBoolValue()) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1894 | InputDemandedBits |= InSignBit; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1895 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1896 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
| 1897 | KnownOne &= InputDemandedBits; |
| 1898 | KnownZero &= InputDemandedBits; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1899 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 1900 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1901 | // If the sign bit of the input is known set or clear, then we know the |
| 1902 | // top bits of the result. |
Dan Gohman | ca93a43 | 2008-02-20 16:30:17 +0000 | [diff] [blame] | 1903 | if (KnownZero.intersects(InSignBit)) { // Input sign bit known clear |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1904 | KnownZero |= NewBits; |
| 1905 | KnownOne &= ~NewBits; |
Dan Gohman | ca93a43 | 2008-02-20 16:30:17 +0000 | [diff] [blame] | 1906 | } else if (KnownOne.intersects(InSignBit)) { // Input sign bit known set |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1907 | KnownOne |= NewBits; |
| 1908 | KnownZero &= ~NewBits; |
| 1909 | } else { // Input sign bit unknown |
| 1910 | KnownZero &= ~NewBits; |
| 1911 | KnownOne &= ~NewBits; |
| 1912 | } |
| 1913 | return; |
| 1914 | } |
| 1915 | case ISD::CTTZ: |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1916 | case ISD::CTTZ_ZERO_UNDEF: |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1917 | case ISD::CTLZ: |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 1918 | case ISD::CTLZ_ZERO_UNDEF: |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1919 | case ISD::CTPOP: { |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1920 | unsigned LowBits = Log2_32(BitWidth)+1; |
| 1921 | KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - LowBits); |
Jay Foad | 7a874dd | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 1922 | KnownOne.clearAllBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1923 | return; |
| 1924 | } |
| 1925 | case ISD::LOAD: { |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 1926 | LoadSDNode *LD = cast<LoadSDNode>(Op); |
Nadav Rotem | 7745175 | 2013-03-20 22:53:44 +0000 | [diff] [blame] | 1927 | // If this is a ZEXTLoad and we are looking at the loaded value. |
| 1928 | if (ISD::isZEXTLoad(Op.getNode()) && Op.getResNo() == 0) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1929 | EVT VT = LD->getMemoryVT(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 1930 | unsigned MemBits = VT.getScalarType().getSizeInBits(); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1931 | KnownZero |= APInt::getHighBitsSet(BitWidth, BitWidth - MemBits); |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 1932 | } else if (const MDNode *Ranges = LD->getRanges()) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1933 | computeMaskedBitsLoad(*Ranges, KnownZero); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1934 | } |
| 1935 | return; |
| 1936 | } |
| 1937 | case ISD::ZERO_EXTEND: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1938 | EVT InVT = Op.getOperand(0).getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 1939 | unsigned InBits = InVT.getScalarType().getSizeInBits(); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1940 | APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1941 | KnownZero = KnownZero.trunc(InBits); |
| 1942 | KnownOne = KnownOne.trunc(InBits); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1943 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1944 | KnownZero = KnownZero.zext(BitWidth); |
| 1945 | KnownOne = KnownOne.zext(BitWidth); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1946 | KnownZero |= NewBits; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1947 | return; |
| 1948 | } |
| 1949 | case ISD::SIGN_EXTEND: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1950 | EVT InVT = Op.getOperand(0).getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 1951 | unsigned InBits = InVT.getScalarType().getSizeInBits(); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1952 | APInt InSignBit = APInt::getSignBit(InBits); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1953 | APInt NewBits = APInt::getHighBitsSet(BitWidth, BitWidth - InBits); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1954 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1955 | KnownZero = KnownZero.trunc(InBits); |
| 1956 | KnownOne = KnownOne.trunc(InBits); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1957 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 1958 | |
| 1959 | // Note if the sign bit is known to be zero or one. |
| 1960 | bool SignBitKnownZero = KnownZero.isNegative(); |
| 1961 | bool SignBitKnownOne = KnownOne.isNegative(); |
| 1962 | assert(!(SignBitKnownZero && SignBitKnownOne) && |
| 1963 | "Sign bit can't be known to be both zero and one!"); |
| 1964 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1965 | KnownZero = KnownZero.zext(BitWidth); |
| 1966 | KnownOne = KnownOne.zext(BitWidth); |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 1967 | |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 1968 | // If the sign bit is known zero or one, the top bits match. |
| 1969 | if (SignBitKnownZero) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1970 | KnownZero |= NewBits; |
Dan Gohman | 977a76f | 2008-02-13 22:28:48 +0000 | [diff] [blame] | 1971 | else if (SignBitKnownOne) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1972 | KnownOne |= NewBits; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1973 | return; |
| 1974 | } |
| 1975 | case ISD::ANY_EXTEND: { |
Evan Cheng | 2766a47 | 2012-12-06 19:13:27 +0000 | [diff] [blame] | 1976 | EVT InVT = Op.getOperand(0).getValueType(); |
| 1977 | unsigned InBits = InVT.getScalarType().getSizeInBits(); |
| 1978 | KnownZero = KnownZero.trunc(InBits); |
| 1979 | KnownOne = KnownOne.trunc(InBits); |
| 1980 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
| 1981 | KnownZero = KnownZero.zext(BitWidth); |
| 1982 | KnownOne = KnownOne.zext(BitWidth); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1983 | return; |
| 1984 | } |
| 1985 | case ISD::TRUNCATE: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1986 | EVT InVT = Op.getOperand(0).getValueType(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 1987 | unsigned InBits = InVT.getScalarType().getSizeInBits(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1988 | KnownZero = KnownZero.zext(InBits); |
| 1989 | KnownOne = KnownOne.zext(InBits); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1990 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 1991 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 1992 | KnownZero = KnownZero.trunc(BitWidth); |
| 1993 | KnownOne = KnownOne.trunc(BitWidth); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 1994 | break; |
| 1995 | } |
| 1996 | case ISD::AssertZext: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1997 | EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1998 | APInt InMask = APInt::getLowBitsSet(BitWidth, VT.getSizeInBits()); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1999 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
| 2000 | KnownZero |= (~InMask); |
Nadav Rotem | 7ee0e5a | 2012-07-16 18:34:53 +0000 | [diff] [blame] | 2001 | KnownOne &= (~KnownZero); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2002 | return; |
| 2003 | } |
Chris Lattner | d268a49 | 2007-12-22 21:26:52 +0000 | [diff] [blame] | 2004 | case ISD::FGETSIGN: |
| 2005 | // All bits are zero except the low bit. |
Dan Gohman | fd29e0e | 2008-02-13 00:35:47 +0000 | [diff] [blame] | 2006 | KnownZero = APInt::getHighBitsSet(BitWidth, BitWidth - 1); |
Chris Lattner | d268a49 | 2007-12-22 21:26:52 +0000 | [diff] [blame] | 2007 | return; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2008 | |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2009 | case ISD::SUB: { |
| 2010 | if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) { |
| 2011 | // We know that the top bits of C-X are clear if X contains less bits |
| 2012 | // than C (i.e. no wrap-around can happen). For example, 20-X is |
| 2013 | // positive if we can prove that X is >= 0 and < 16. |
| 2014 | if (CLHS->getAPIntValue().isNonNegative()) { |
| 2015 | unsigned NLZ = (CLHS->getAPIntValue()+1).countLeadingZeros(); |
| 2016 | // NLZ can't be BitWidth with no sign bit |
| 2017 | APInt MaskV = APInt::getHighBitsSet(BitWidth, NLZ+1); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2018 | ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2019 | |
| 2020 | // If all of the MaskV bits are known to be zero, then we know the |
| 2021 | // output top bits are zero, because we now know that the output is |
| 2022 | // from [0-C]. |
| 2023 | if ((KnownZero2 & MaskV) == MaskV) { |
| 2024 | unsigned NLZ2 = CLHS->getAPIntValue().countLeadingZeros(); |
| 2025 | // Top bits known zero. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2026 | KnownZero = APInt::getHighBitsSet(BitWidth, NLZ2); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2027 | } |
| 2028 | } |
| 2029 | } |
| 2030 | } |
| 2031 | // fall through |
Chris Lattner | da60588 | 2010-12-19 20:38:28 +0000 | [diff] [blame] | 2032 | case ISD::ADD: |
| 2033 | case ISD::ADDE: { |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2034 | // Output known-0 bits are known if clear or set in both the low clear bits |
| 2035 | // common to both LHS & RHS. For example, 8+(X<<3) is known to have the |
| 2036 | // low 3 bits clear. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2037 | ComputeMaskedBits(Op.getOperand(0), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2038 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2039 | unsigned KnownZeroOut = KnownZero2.countTrailingOnes(); |
| 2040 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2041 | ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2042 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2043 | KnownZeroOut = std::min(KnownZeroOut, |
| 2044 | KnownZero2.countTrailingOnes()); |
| 2045 | |
Chris Lattner | da60588 | 2010-12-19 20:38:28 +0000 | [diff] [blame] | 2046 | if (Op.getOpcode() == ISD::ADD) { |
| 2047 | KnownZero |= APInt::getLowBitsSet(BitWidth, KnownZeroOut); |
| 2048 | return; |
| 2049 | } |
| 2050 | |
| 2051 | // With ADDE, a carry bit may be added in, so we can only use this |
| 2052 | // information if we know (at least) that the low two bits are clear. We |
| 2053 | // then return to the caller that the low bit is unknown but that other bits |
| 2054 | // are known zero. |
| 2055 | if (KnownZeroOut >= 2) // ADDE |
| 2056 | KnownZero |= APInt::getBitsSet(BitWidth, 1, KnownZeroOut); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2057 | return; |
| 2058 | } |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2059 | case ISD::SREM: |
| 2060 | if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Duncan Sands | 5c2873a | 2010-01-29 09:45:26 +0000 | [diff] [blame] | 2061 | const APInt &RA = Rem->getAPIntValue().abs(); |
| 2062 | if (RA.isPowerOf2()) { |
| 2063 | APInt LowBits = RA - 1; |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2064 | APInt Mask2 = LowBits | APInt::getSignBit(BitWidth); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2065 | ComputeMaskedBits(Op.getOperand(0), KnownZero2,KnownOne2,Depth+1); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2066 | |
Duncan Sands | 5c2873a | 2010-01-29 09:45:26 +0000 | [diff] [blame] | 2067 | // The low bits of the first operand are unchanged by the srem. |
| 2068 | KnownZero = KnownZero2 & LowBits; |
| 2069 | KnownOne = KnownOne2 & LowBits; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2070 | |
Duncan Sands | 5c2873a | 2010-01-29 09:45:26 +0000 | [diff] [blame] | 2071 | // If the first operand is non-negative or has all low bits zero, then |
| 2072 | // the upper bits are all zero. |
| 2073 | if (KnownZero2[BitWidth-1] || ((KnownZero2 & LowBits) == LowBits)) |
| 2074 | KnownZero |= ~LowBits; |
| 2075 | |
| 2076 | // If the first operand is negative and not all low bits are zero, then |
| 2077 | // the upper bits are all one. |
| 2078 | if (KnownOne2[BitWidth-1] && ((KnownOne2 & LowBits) != 0)) |
| 2079 | KnownOne |= ~LowBits; |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2080 | assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?"); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2081 | } |
| 2082 | } |
| 2083 | return; |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2084 | case ISD::UREM: { |
| 2085 | if (ConstantSDNode *Rem = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | 9b44c1f | 2008-07-03 00:52:03 +0000 | [diff] [blame] | 2086 | const APInt &RA = Rem->getAPIntValue(); |
Dan Gohman | 23e1df8 | 2008-05-06 00:51:48 +0000 | [diff] [blame] | 2087 | if (RA.isPowerOf2()) { |
| 2088 | APInt LowBits = (RA - 1); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2089 | KnownZero |= ~LowBits; |
| 2090 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne,Depth+1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2091 | assert((KnownZero & KnownOne) == 0&&"Bits known to be one AND zero?"); |
| 2092 | break; |
| 2093 | } |
| 2094 | } |
| 2095 | |
| 2096 | // Since the result is less than or equal to either operand, any leading |
| 2097 | // zero bits in either operand must also exist in the result. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2098 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
| 2099 | ComputeMaskedBits(Op.getOperand(1), KnownZero2, KnownOne2, Depth+1); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2100 | |
| 2101 | uint32_t Leaders = std::max(KnownZero.countLeadingOnes(), |
| 2102 | KnownZero2.countLeadingOnes()); |
Jay Foad | 7a874dd | 2010-12-01 08:53:58 +0000 | [diff] [blame] | 2103 | KnownOne.clearAllBits(); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2104 | KnownZero = APInt::getHighBitsSet(BitWidth, Leaders); |
Dan Gohman | 23e8b71 | 2008-04-28 17:02:21 +0000 | [diff] [blame] | 2105 | return; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2106 | } |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 2107 | case ISD::FrameIndex: |
| 2108 | case ISD::TargetFrameIndex: |
| 2109 | if (unsigned Align = InferPtrAlignment(Op)) { |
| 2110 | // The low bits are known zero if the pointer is aligned. |
| 2111 | KnownZero = APInt::getLowBitsSet(BitWidth, Log2_32(Align)); |
| 2112 | return; |
| 2113 | } |
| 2114 | break; |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2115 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2116 | default: |
Evan Cheng | b5a55d9 | 2011-05-24 01:48:22 +0000 | [diff] [blame] | 2117 | if (Op.getOpcode() < ISD::BUILTIN_OP_END) |
| 2118 | break; |
| 2119 | // Fallthrough |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2120 | case ISD::INTRINSIC_WO_CHAIN: |
| 2121 | case ISD::INTRINSIC_W_CHAIN: |
| 2122 | case ISD::INTRINSIC_VOID: |
Evan Cheng | b5a55d9 | 2011-05-24 01:48:22 +0000 | [diff] [blame] | 2123 | // Allow the target to implement this method for its nodes. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2124 | TLI->computeMaskedBitsForTargetNode(Op, KnownZero, KnownOne, *this, Depth); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2125 | return; |
| 2126 | } |
| 2127 | } |
| 2128 | |
| 2129 | /// ComputeNumSignBits - Return the number of times the sign bit of the |
| 2130 | /// register is replicated into the other bits. We know that at least 1 bit |
| 2131 | /// is always equal to the sign bit (itself), but other cases can give us |
| 2132 | /// information. For example, immediately after an "SRA X, 2", we know that |
| 2133 | /// the top 3 bits are all equal to each other, so we return 3. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2134 | unsigned SelectionDAG::ComputeNumSignBits(SDValue Op, unsigned Depth) const{ |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2135 | const TargetLowering *TLI = TM.getTargetLowering(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2136 | EVT VT = Op.getValueType(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2137 | assert(VT.isInteger() && "Invalid VT!"); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 2138 | unsigned VTBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2139 | unsigned Tmp, Tmp2; |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2140 | unsigned FirstAnswer = 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2141 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2142 | if (Depth == 6) |
| 2143 | return 1; // Limit search depth. |
| 2144 | |
| 2145 | switch (Op.getOpcode()) { |
| 2146 | default: break; |
| 2147 | case ISD::AssertSext: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2148 | Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2149 | return VTBits-Tmp+1; |
| 2150 | case ISD::AssertZext: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2151 | Tmp = cast<VTSDNode>(Op.getOperand(1))->getVT().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2152 | return VTBits-Tmp; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2153 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2154 | case ISD::Constant: { |
Dan Gohman | bb271ff | 2008-03-03 23:35:36 +0000 | [diff] [blame] | 2155 | const APInt &Val = cast<ConstantSDNode>(Op)->getAPIntValue(); |
Cameron Zwarich | 9b6af8d | 2011-02-24 10:00:20 +0000 | [diff] [blame] | 2156 | return Val.getNumSignBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2157 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2158 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2159 | case ISD::SIGN_EXTEND: |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 2160 | Tmp = |
| 2161 | VTBits-Op.getOperand(0).getValueType().getScalarType().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2162 | return ComputeNumSignBits(Op.getOperand(0), Depth+1) + Tmp; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2163 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2164 | case ISD::SIGN_EXTEND_INREG: |
| 2165 | // Max of the input and what this extends. |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 2166 | Tmp = |
| 2167 | cast<VTSDNode>(Op.getOperand(1))->getVT().getScalarType().getSizeInBits(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2168 | Tmp = VTBits-Tmp+1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2169 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2170 | Tmp2 = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
| 2171 | return std::max(Tmp, Tmp2); |
| 2172 | |
| 2173 | case ISD::SRA: |
| 2174 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
| 2175 | // SRA X, C -> adds C sign bits. |
| 2176 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2177 | Tmp += C->getZExtValue(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2178 | if (Tmp > VTBits) Tmp = VTBits; |
| 2179 | } |
| 2180 | return Tmp; |
| 2181 | case ISD::SHL: |
| 2182 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 2183 | // shl destroys sign bits. |
| 2184 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2185 | if (C->getZExtValue() >= VTBits || // Bad shift. |
| 2186 | C->getZExtValue() >= Tmp) break; // Shifted all sign bits out. |
| 2187 | return Tmp - C->getZExtValue(); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2188 | } |
| 2189 | break; |
| 2190 | case ISD::AND: |
| 2191 | case ISD::OR: |
| 2192 | case ISD::XOR: // NOT is handled here. |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2193 | // Logical binary ops preserve the number of sign bits at the worst. |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2194 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2195 | if (Tmp != 1) { |
| 2196 | Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1); |
| 2197 | FirstAnswer = std::min(Tmp, Tmp2); |
| 2198 | // We computed what we know about the sign bits as our first |
| 2199 | // answer. Now proceed to the generic code that uses |
| 2200 | // ComputeMaskedBits, and pick whichever answer is better. |
| 2201 | } |
| 2202 | break; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2203 | |
| 2204 | case ISD::SELECT: |
Dan Gohman | c84941b | 2008-05-20 20:59:51 +0000 | [diff] [blame] | 2205 | Tmp = ComputeNumSignBits(Op.getOperand(1), Depth+1); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2206 | if (Tmp == 1) return 1; // Early out. |
Dan Gohman | c84941b | 2008-05-20 20:59:51 +0000 | [diff] [blame] | 2207 | Tmp2 = ComputeNumSignBits(Op.getOperand(2), Depth+1); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2208 | return std::min(Tmp, Tmp2); |
Bill Wendling | 253174b | 2008-11-22 07:24:01 +0000 | [diff] [blame] | 2209 | |
| 2210 | case ISD::SADDO: |
| 2211 | case ISD::UADDO: |
Bill Wendling | 74c3765 | 2008-12-09 22:08:41 +0000 | [diff] [blame] | 2212 | case ISD::SSUBO: |
| 2213 | case ISD::USUBO: |
| 2214 | case ISD::SMULO: |
| 2215 | case ISD::UMULO: |
Bill Wendling | 253174b | 2008-11-22 07:24:01 +0000 | [diff] [blame] | 2216 | if (Op.getResNo() != 1) |
| 2217 | break; |
Duncan Sands | 0322808 | 2008-11-23 15:47:28 +0000 | [diff] [blame] | 2218 | // The boolean result conforms to getBooleanContents. Fall through. |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2219 | case ISD::SETCC: |
| 2220 | // If setcc returns 0/-1, all bits are sign bits. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2221 | if (TLI->getBooleanContents(Op.getValueType().isVector()) == |
Duncan Sands | 0322808 | 2008-11-23 15:47:28 +0000 | [diff] [blame] | 2222 | TargetLowering::ZeroOrNegativeOneBooleanContent) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2223 | return VTBits; |
| 2224 | break; |
| 2225 | case ISD::ROTL: |
| 2226 | case ISD::ROTR: |
| 2227 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2228 | unsigned RotAmt = C->getZExtValue() & (VTBits-1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2229 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2230 | // Handle rotate right by N like a rotate left by 32-N. |
| 2231 | if (Op.getOpcode() == ISD::ROTR) |
| 2232 | RotAmt = (VTBits-RotAmt) & (VTBits-1); |
| 2233 | |
| 2234 | // If we aren't rotating out all of the known-in sign bits, return the |
| 2235 | // number that are left. This handles rotl(sext(x), 1) for example. |
| 2236 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
| 2237 | if (Tmp > RotAmt+1) return Tmp-RotAmt; |
| 2238 | } |
| 2239 | break; |
| 2240 | case ISD::ADD: |
| 2241 | // Add can have at most one carry bit. Thus we know that the output |
| 2242 | // is, at worst, one more bit than the inputs. |
| 2243 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
| 2244 | if (Tmp == 1) return 1; // Early out. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2245 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2246 | // Special case decrementing a value (ADD X, -1): |
Dan Gohman | 0001e56 | 2009-02-24 02:00:40 +0000 | [diff] [blame] | 2247 | if (ConstantSDNode *CRHS = dyn_cast<ConstantSDNode>(Op.getOperand(1))) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2248 | if (CRHS->isAllOnesValue()) { |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2249 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2250 | ComputeMaskedBits(Op.getOperand(0), KnownZero, KnownOne, Depth+1); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2251 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2252 | // If the input is known to be 0 or 1, the output is 0/-1, which is all |
| 2253 | // sign bits set. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2254 | if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue()) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2255 | return VTBits; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2256 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2257 | // If we are subtracting one from a positive number, there is no carry |
| 2258 | // out of the result. |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2259 | if (KnownZero.isNegative()) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2260 | return Tmp; |
| 2261 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2262 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2263 | Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1); |
| 2264 | if (Tmp2 == 1) return 1; |
David Blaikie | 4d6ccb5 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 2265 | return std::min(Tmp, Tmp2)-1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2266 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2267 | case ISD::SUB: |
| 2268 | Tmp2 = ComputeNumSignBits(Op.getOperand(1), Depth+1); |
| 2269 | if (Tmp2 == 1) return 1; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2270 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2271 | // Handle NEG. |
| 2272 | if (ConstantSDNode *CLHS = dyn_cast<ConstantSDNode>(Op.getOperand(0))) |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2273 | if (CLHS->isNullValue()) { |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2274 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2275 | ComputeMaskedBits(Op.getOperand(1), KnownZero, KnownOne, Depth+1); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2276 | // If the input is known to be 0 or 1, the output is 0/-1, which is all |
| 2277 | // sign bits set. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2278 | if ((KnownZero | APInt(VTBits, 1)).isAllOnesValue()) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2279 | return VTBits; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2280 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2281 | // If the input is known to be positive (the sign bit is known clear), |
| 2282 | // the output of the NEG has the same number of sign bits as the input. |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2283 | if (KnownZero.isNegative()) |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2284 | return Tmp2; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2285 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2286 | // Otherwise, we treat this like a SUB. |
| 2287 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2288 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2289 | // Sub can have at most one carry bit. Thus we know that the output |
| 2290 | // is, at worst, one more bit than the inputs. |
| 2291 | Tmp = ComputeNumSignBits(Op.getOperand(0), Depth+1); |
| 2292 | if (Tmp == 1) return 1; // Early out. |
David Blaikie | 4d6ccb5 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 2293 | return std::min(Tmp, Tmp2)-1; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2294 | case ISD::TRUNCATE: |
| 2295 | // FIXME: it's tricky to do anything useful for this, but it is an important |
| 2296 | // case for targets like X86. |
| 2297 | break; |
| 2298 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2299 | |
Nadav Rotem | 7745175 | 2013-03-20 22:53:44 +0000 | [diff] [blame] | 2300 | // If we are looking at the loaded value of the SDNode. |
| 2301 | if (Op.getResNo() == 0) { |
| 2302 | // Handle LOADX separately here. EXTLOAD case will fallthrough. |
| 2303 | if (LoadSDNode *LD = dyn_cast<LoadSDNode>(Op)) { |
| 2304 | unsigned ExtType = LD->getExtensionType(); |
| 2305 | switch (ExtType) { |
| 2306 | default: break; |
| 2307 | case ISD::SEXTLOAD: // '17' bits known |
| 2308 | Tmp = LD->getMemoryVT().getScalarType().getSizeInBits(); |
| 2309 | return VTBits-Tmp+1; |
| 2310 | case ISD::ZEXTLOAD: // '16' bits known |
| 2311 | Tmp = LD->getMemoryVT().getScalarType().getSizeInBits(); |
| 2312 | return VTBits-Tmp; |
| 2313 | } |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2314 | } |
| 2315 | } |
| 2316 | |
| 2317 | // Allow the target to implement this method for its nodes. |
| 2318 | if (Op.getOpcode() >= ISD::BUILTIN_OP_END || |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2319 | Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2320 | Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || |
| 2321 | Op.getOpcode() == ISD::INTRINSIC_VOID) { |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 2322 | unsigned NumBits = TLI->ComputeNumSignBitsForTargetNode(Op, Depth); |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2323 | if (NumBits > 1) FirstAnswer = std::max(FirstAnswer, NumBits); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2324 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2325 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2326 | // Finally, if we can prove that the top bits of the result are 0's or 1's, |
| 2327 | // use this information. |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2328 | APInt KnownZero, KnownOne; |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2329 | ComputeMaskedBits(Op, KnownZero, KnownOne, Depth); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2330 | |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 2331 | APInt Mask; |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2332 | if (KnownZero.isNegative()) { // sign bit is 0 |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2333 | Mask = KnownZero; |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2334 | } else if (KnownOne.isNegative()) { // sign bit is 1; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2335 | Mask = KnownOne; |
| 2336 | } else { |
| 2337 | // Nothing known. |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2338 | return FirstAnswer; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2339 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2340 | |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2341 | // Okay, we know that the sign bit in Mask is set. Use CLZ to determine |
| 2342 | // the number of identical bits in the top of the input value. |
Dan Gohman | b3564aa | 2008-02-27 01:23:58 +0000 | [diff] [blame] | 2343 | Mask = ~Mask; |
| 2344 | Mask <<= Mask.getBitWidth()-VTBits; |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2345 | // Return # leading zeros. We use 'min' here in case Val was zero before |
| 2346 | // shifting. We don't want to return '64' as for an i32 "0". |
Dan Gohman | a332f17 | 2008-05-23 02:28:01 +0000 | [diff] [blame] | 2347 | return std::max(FirstAnswer, std::min(VTBits, Mask.countLeadingZeros())); |
Dan Gohman | ea859be | 2007-06-22 14:59:07 +0000 | [diff] [blame] | 2348 | } |
| 2349 | |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 2350 | /// isBaseWithConstantOffset - Return true if the specified operand is an |
| 2351 | /// ISD::ADD with a ConstantSDNode on the right-hand side, or if it is an |
| 2352 | /// ISD::OR with a ConstantSDNode that is guaranteed to have the same |
| 2353 | /// semantics as an ADD. This handles the equivalence: |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2354 | /// X|Cst == X+Cst iff X&Cst = 0. |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 2355 | bool SelectionDAG::isBaseWithConstantOffset(SDValue Op) const { |
| 2356 | if ((Op.getOpcode() != ISD::ADD && Op.getOpcode() != ISD::OR) || |
| 2357 | !isa<ConstantSDNode>(Op.getOperand(1))) |
| 2358 | return false; |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2359 | |
| 2360 | if (Op.getOpcode() == ISD::OR && |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 2361 | !MaskedValueIsZero(Op.getOperand(0), |
| 2362 | cast<ConstantSDNode>(Op.getOperand(1))->getAPIntValue())) |
| 2363 | return false; |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2364 | |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 2365 | return true; |
| 2366 | } |
| 2367 | |
| 2368 | |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 2369 | bool SelectionDAG::isKnownNeverNaN(SDValue Op) const { |
| 2370 | // If we're told that NaNs won't happen, assume they won't. |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 2371 | if (getTarget().Options.NoNaNsFPMath) |
Dan Gohman | 8d44b28 | 2009-09-03 20:34:31 +0000 | [diff] [blame] | 2372 | return true; |
| 2373 | |
| 2374 | // If the value is a constant, we can obviously see if it is a NaN or not. |
| 2375 | if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) |
| 2376 | return !C->getValueAPF().isNaN(); |
| 2377 | |
| 2378 | // TODO: Recognize more cases here. |
| 2379 | |
| 2380 | return false; |
| 2381 | } |
Chris Lattner | 51dabfb | 2006-10-14 00:41:01 +0000 | [diff] [blame] | 2382 | |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 2383 | bool SelectionDAG::isKnownNeverZero(SDValue Op) const { |
| 2384 | // If the value is a constant, we can obviously see if it is a zero or not. |
| 2385 | if (const ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Op)) |
| 2386 | return !C->isZero(); |
| 2387 | |
| 2388 | // TODO: Recognize more cases here. |
Evan Cheng | b5a55d9 | 2011-05-24 01:48:22 +0000 | [diff] [blame] | 2389 | switch (Op.getOpcode()) { |
| 2390 | default: break; |
| 2391 | case ISD::OR: |
| 2392 | if (const ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) |
| 2393 | return !C->isNullValue(); |
| 2394 | break; |
| 2395 | } |
Dan Gohman | e832693 | 2010-02-24 06:52:40 +0000 | [diff] [blame] | 2396 | |
| 2397 | return false; |
| 2398 | } |
| 2399 | |
| 2400 | bool SelectionDAG::isEqualTo(SDValue A, SDValue B) const { |
| 2401 | // Check the obvious case. |
| 2402 | if (A == B) return true; |
| 2403 | |
| 2404 | // For for negative and positive zero. |
| 2405 | if (const ConstantFPSDNode *CA = dyn_cast<ConstantFPSDNode>(A)) |
| 2406 | if (const ConstantFPSDNode *CB = dyn_cast<ConstantFPSDNode>(B)) |
| 2407 | if (CA->isZero() && CB->isZero()) return true; |
| 2408 | |
| 2409 | // Otherwise they may not be equal. |
| 2410 | return false; |
| 2411 | } |
| 2412 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2413 | /// getNode - Gets or creates the specified node. |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 2414 | /// |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2415 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 2416 | FoldingSetNodeID ID; |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 2417 | AddNodeIDNode(ID, Opcode, getVTList(VT), 0, 0); |
Chris Lattner | 4a283e9 | 2006-08-11 18:38:11 +0000 | [diff] [blame] | 2418 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 2419 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2420 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 2421 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 2422 | SDNode *N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), |
| 2423 | DL.getDebugLoc(), getVTList(VT)); |
Chris Lattner | 4a283e9 | 2006-08-11 18:38:11 +0000 | [diff] [blame] | 2424 | CSEMap.InsertNode(N, IP); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2425 | |
Chris Lattner | 4a283e9 | 2006-08-11 18:38:11 +0000 | [diff] [blame] | 2426 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 2427 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 2428 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 2429 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2430 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2431 | } |
| 2432 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2433 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2434 | EVT VT, SDValue Operand) { |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 2435 | // Constant fold unary operations with an integer constant operand. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2436 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Operand.getNode())) { |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2437 | const APInt &Val = C->getAPIntValue(); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2438 | switch (Opcode) { |
| 2439 | default: break; |
Evan Cheng | eb49c4e | 2008-03-06 17:42:34 +0000 | [diff] [blame] | 2440 | case ISD::SIGN_EXTEND: |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 2441 | return getConstant(Val.sextOrTrunc(VT.getSizeInBits()), VT); |
Chris Lattner | 4ed11b4 | 2005-09-02 00:17:32 +0000 | [diff] [blame] | 2442 | case ISD::ANY_EXTEND: |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2443 | case ISD::ZERO_EXTEND: |
Evan Cheng | eb49c4e | 2008-03-06 17:42:34 +0000 | [diff] [blame] | 2444 | case ISD::TRUNCATE: |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 2445 | return getConstant(Val.zextOrTrunc(VT.getSizeInBits()), VT); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 2446 | case ISD::UINT_TO_FP: |
| 2447 | case ISD::SINT_TO_FP: { |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 2448 | APFloat apf(EVTToAPFloatSemantics(VT), |
| 2449 | APInt::getNullValue(VT.getSizeInBits())); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2450 | (void)apf.convertFromAPInt(Val, |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2451 | Opcode==ISD::SINT_TO_FP, |
| 2452 | APFloat::rmNearestTiesToEven); |
Dale Johannesen | 73328d1 | 2007-09-19 23:55:34 +0000 | [diff] [blame] | 2453 | return getConstantFP(apf, VT); |
| 2454 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2455 | case ISD::BITCAST: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2456 | if (VT == MVT::f32 && C->getValueType(0) == MVT::i32) |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 2457 | return getConstantFP(APFloat(APFloat::IEEEsingle, Val), VT); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2458 | else if (VT == MVT::f64 && C->getValueType(0) == MVT::i64) |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 2459 | return getConstantFP(APFloat(APFloat::IEEEdouble, Val), VT); |
Chris Lattner | 9468377 | 2005-12-23 05:30:37 +0000 | [diff] [blame] | 2460 | break; |
Nate Begeman | 1b5db7a | 2006-01-16 08:07:10 +0000 | [diff] [blame] | 2461 | case ISD::BSWAP: |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2462 | return getConstant(Val.byteSwap(), VT); |
Nate Begeman | 1b5db7a | 2006-01-16 08:07:10 +0000 | [diff] [blame] | 2463 | case ISD::CTPOP: |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2464 | return getConstant(Val.countPopulation(), VT); |
Nate Begeman | 1b5db7a | 2006-01-16 08:07:10 +0000 | [diff] [blame] | 2465 | case ISD::CTLZ: |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 2466 | case ISD::CTLZ_ZERO_UNDEF: |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2467 | return getConstant(Val.countLeadingZeros(), VT); |
Nate Begeman | 1b5db7a | 2006-01-16 08:07:10 +0000 | [diff] [blame] | 2468 | case ISD::CTTZ: |
Chandler Carruth | 63974b2 | 2011-12-13 01:56:10 +0000 | [diff] [blame] | 2469 | case ISD::CTTZ_ZERO_UNDEF: |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 2470 | return getConstant(Val.countTrailingZeros(), VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2471 | } |
| 2472 | } |
| 2473 | |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 2474 | // Constant fold unary operations with a floating point constant operand. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2475 | if (ConstantFPSDNode *C = dyn_cast<ConstantFPSDNode>(Operand.getNode())) { |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 2476 | APFloat V = C->getValueAPF(); // make copy |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2477 | switch (Opcode) { |
| 2478 | case ISD::FNEG: |
| 2479 | V.changeSign(); |
| 2480 | return getConstantFP(V, VT); |
| 2481 | case ISD::FABS: |
| 2482 | V.clearSign(); |
| 2483 | return getConstantFP(V, VT); |
| 2484 | case ISD::FCEIL: { |
| 2485 | APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardPositive); |
| 2486 | if (fs == APFloat::opOK || fs == APFloat::opInexact) |
Dale Johannesen | db44bf8 | 2007-10-16 23:38:29 +0000 | [diff] [blame] | 2487 | return getConstantFP(V, VT); |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2488 | break; |
| 2489 | } |
| 2490 | case ISD::FTRUNC: { |
| 2491 | APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardZero); |
| 2492 | if (fs == APFloat::opOK || fs == APFloat::opInexact) |
Dale Johannesen | db44bf8 | 2007-10-16 23:38:29 +0000 | [diff] [blame] | 2493 | return getConstantFP(V, VT); |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2494 | break; |
| 2495 | } |
| 2496 | case ISD::FFLOOR: { |
| 2497 | APFloat::opStatus fs = V.roundToIntegral(APFloat::rmTowardNegative); |
| 2498 | if (fs == APFloat::opOK || fs == APFloat::opInexact) |
Dale Johannesen | db44bf8 | 2007-10-16 23:38:29 +0000 | [diff] [blame] | 2499 | return getConstantFP(V, VT); |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2500 | break; |
| 2501 | } |
| 2502 | case ISD::FP_EXTEND: { |
| 2503 | bool ignored; |
| 2504 | // This can return overflow, underflow, or inexact; we don't care. |
| 2505 | // FIXME need to be more flexible about rounding mode. |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 2506 | (void)V.convert(EVTToAPFloatSemantics(VT), |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2507 | APFloat::rmNearestTiesToEven, &ignored); |
| 2508 | return getConstantFP(V, VT); |
| 2509 | } |
| 2510 | case ISD::FP_TO_SINT: |
| 2511 | case ISD::FP_TO_UINT: { |
| 2512 | integerPart x[2]; |
| 2513 | bool ignored; |
| 2514 | assert(integerPartWidth >= 64); |
| 2515 | // FIXME need to be more flexible about rounding mode. |
| 2516 | APFloat::opStatus s = V.convertToInteger(x, VT.getSizeInBits(), |
| 2517 | Opcode==ISD::FP_TO_SINT, |
| 2518 | APFloat::rmTowardZero, &ignored); |
| 2519 | if (s==APFloat::opInvalidOp) // inexact is OK, in fact usual |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 2520 | break; |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 2521 | APInt api(VT.getSizeInBits(), x); |
| 2522 | return getConstant(api, VT); |
| 2523 | } |
| 2524 | case ISD::BITCAST: |
| 2525 | if (VT == MVT::i32 && C->getValueType(0) == MVT::f32) |
| 2526 | return getConstant((uint32_t)V.bitcastToAPInt().getZExtValue(), VT); |
| 2527 | else if (VT == MVT::i64 && C->getValueType(0) == MVT::f64) |
| 2528 | return getConstant(V.bitcastToAPInt().getZExtValue(), VT); |
| 2529 | break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2530 | } |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 2531 | } |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2532 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2533 | unsigned OpOpcode = Operand.getNode()->getOpcode(); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2534 | switch (Opcode) { |
Chris Lattner | a93ec3e | 2005-01-21 18:01:22 +0000 | [diff] [blame] | 2535 | case ISD::TokenFactor: |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2536 | case ISD::MERGE_VALUES: |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 2537 | case ISD::CONCAT_VECTORS: |
Duncan Sands | aaffa05 | 2008-12-01 11:41:29 +0000 | [diff] [blame] | 2538 | return Operand; // Factor, merge or concat of one node? No need. |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 2539 | case ISD::FP_ROUND: llvm_unreachable("Invalid method to make FP_ROUND node"); |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2540 | case ISD::FP_EXTEND: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2541 | assert(VT.isFloatingPoint() && |
| 2542 | Operand.getValueType().isFloatingPoint() && "Invalid FP cast!"); |
Chris Lattner | 7e2e033 | 2008-01-16 17:59:31 +0000 | [diff] [blame] | 2543 | if (Operand.getValueType() == VT) return Operand; // noop conversion. |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2544 | assert((!VT.isVector() || |
| 2545 | VT.getVectorNumElements() == |
| 2546 | Operand.getValueType().getVectorNumElements()) && |
| 2547 | "Vector element count mismatch!"); |
Chris Lattner | 5d03f21 | 2008-03-11 06:21:08 +0000 | [diff] [blame] | 2548 | if (Operand.getOpcode() == ISD::UNDEF) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2549 | return getUNDEF(VT); |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2550 | break; |
Chris Lattner | 5d03f21 | 2008-03-11 06:21:08 +0000 | [diff] [blame] | 2551 | case ISD::SIGN_EXTEND: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2552 | assert(VT.isInteger() && Operand.getValueType().isInteger() && |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2553 | "Invalid SIGN_EXTEND!"); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2554 | if (Operand.getValueType() == VT) return Operand; // noop extension |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2555 | assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) && |
| 2556 | "Invalid sext node, dst < src!"); |
| 2557 | assert((!VT.isVector() || |
| 2558 | VT.getVectorNumElements() == |
| 2559 | Operand.getValueType().getVectorNumElements()) && |
| 2560 | "Vector element count mismatch!"); |
Nadav Rotem | 0c8607b | 2013-01-20 08:35:56 +0000 | [diff] [blame] | 2561 | if (OpOpcode == ISD::SIGN_EXTEND || OpOpcode == ISD::ZERO_EXTEND) |
| 2562 | return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0)); |
| 2563 | else if (OpOpcode == ISD::UNDEF) |
Evan Cheng | bf34a5e | 2011-03-15 02:22:10 +0000 | [diff] [blame] | 2564 | // sext(undef) = 0, because the top bits will all be the same. |
| 2565 | return getConstant(0, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2566 | break; |
| 2567 | case ISD::ZERO_EXTEND: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2568 | assert(VT.isInteger() && Operand.getValueType().isInteger() && |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2569 | "Invalid ZERO_EXTEND!"); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2570 | if (Operand.getValueType() == VT) return Operand; // noop extension |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2571 | assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) && |
| 2572 | "Invalid zext node, dst < src!"); |
| 2573 | assert((!VT.isVector() || |
| 2574 | VT.getVectorNumElements() == |
| 2575 | Operand.getValueType().getVectorNumElements()) && |
| 2576 | "Vector element count mismatch!"); |
Chris Lattner | 5a6bace | 2005-04-07 19:43:53 +0000 | [diff] [blame] | 2577 | if (OpOpcode == ISD::ZERO_EXTEND) // (zext (zext x)) -> (zext x) |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 2578 | return getNode(ISD::ZERO_EXTEND, DL, VT, |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2579 | Operand.getNode()->getOperand(0)); |
Evan Cheng | bf34a5e | 2011-03-15 02:22:10 +0000 | [diff] [blame] | 2580 | else if (OpOpcode == ISD::UNDEF) |
| 2581 | // zext(undef) = 0, because the top bits will be zero. |
| 2582 | return getConstant(0, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2583 | break; |
Chris Lattner | 4ed11b4 | 2005-09-02 00:17:32 +0000 | [diff] [blame] | 2584 | case ISD::ANY_EXTEND: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2585 | assert(VT.isInteger() && Operand.getValueType().isInteger() && |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2586 | "Invalid ANY_EXTEND!"); |
Chris Lattner | 4ed11b4 | 2005-09-02 00:17:32 +0000 | [diff] [blame] | 2587 | if (Operand.getValueType() == VT) return Operand; // noop extension |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2588 | assert(Operand.getValueType().getScalarType().bitsLT(VT.getScalarType()) && |
| 2589 | "Invalid anyext node, dst < src!"); |
| 2590 | assert((!VT.isVector() || |
| 2591 | VT.getVectorNumElements() == |
| 2592 | Operand.getValueType().getVectorNumElements()) && |
| 2593 | "Vector element count mismatch!"); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2594 | |
Dan Gohman | 9e86a73 | 2010-06-18 00:08:30 +0000 | [diff] [blame] | 2595 | if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND || |
| 2596 | OpOpcode == ISD::ANY_EXTEND) |
Chris Lattner | 4ed11b4 | 2005-09-02 00:17:32 +0000 | [diff] [blame] | 2597 | // (ext (zext x)) -> (zext x) and (ext (sext x)) -> (sext x) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2598 | return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0)); |
Evan Cheng | 5ae1da9 | 2011-03-14 18:15:55 +0000 | [diff] [blame] | 2599 | else if (OpOpcode == ISD::UNDEF) |
| 2600 | return getUNDEF(VT); |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 2601 | |
| 2602 | // (ext (trunx x)) -> x |
| 2603 | if (OpOpcode == ISD::TRUNCATE) { |
| 2604 | SDValue OpOp = Operand.getNode()->getOperand(0); |
| 2605 | if (OpOp.getValueType() == VT) |
| 2606 | return OpOp; |
| 2607 | } |
Chris Lattner | 4ed11b4 | 2005-09-02 00:17:32 +0000 | [diff] [blame] | 2608 | break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2609 | case ISD::TRUNCATE: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2610 | assert(VT.isInteger() && Operand.getValueType().isInteger() && |
Chris Lattner | ff33cc4 | 2007-04-09 05:23:13 +0000 | [diff] [blame] | 2611 | "Invalid TRUNCATE!"); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2612 | if (Operand.getValueType() == VT) return Operand; // noop truncate |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2613 | assert(Operand.getValueType().getScalarType().bitsGT(VT.getScalarType()) && |
| 2614 | "Invalid truncate node, src < dst!"); |
| 2615 | assert((!VT.isVector() || |
| 2616 | VT.getVectorNumElements() == |
| 2617 | Operand.getValueType().getVectorNumElements()) && |
| 2618 | "Vector element count mismatch!"); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2619 | if (OpOpcode == ISD::TRUNCATE) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2620 | return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0)); |
Craig Topper | 799ea5c | 2012-01-15 01:05:11 +0000 | [diff] [blame] | 2621 | if (OpOpcode == ISD::ZERO_EXTEND || OpOpcode == ISD::SIGN_EXTEND || |
| 2622 | OpOpcode == ISD::ANY_EXTEND) { |
Chris Lattner | fd8c39b | 2005-01-07 21:56:24 +0000 | [diff] [blame] | 2623 | // If the source is smaller than the dest, we still need an extend. |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 2624 | if (Operand.getNode()->getOperand(0).getValueType().getScalarType() |
| 2625 | .bitsLT(VT.getScalarType())) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2626 | return getNode(OpOpcode, DL, VT, Operand.getNode()->getOperand(0)); |
Craig Topper | 799ea5c | 2012-01-15 01:05:11 +0000 | [diff] [blame] | 2627 | if (Operand.getNode()->getOperand(0).getValueType().bitsGT(VT)) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2628 | return getNode(ISD::TRUNCATE, DL, VT, Operand.getNode()->getOperand(0)); |
Craig Topper | 799ea5c | 2012-01-15 01:05:11 +0000 | [diff] [blame] | 2629 | return Operand.getNode()->getOperand(0); |
Chris Lattner | fd8c39b | 2005-01-07 21:56:24 +0000 | [diff] [blame] | 2630 | } |
Craig Topper | 799ea5c | 2012-01-15 01:05:11 +0000 | [diff] [blame] | 2631 | if (OpOpcode == ISD::UNDEF) |
| 2632 | return getUNDEF(VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2633 | break; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2634 | case ISD::BITCAST: |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 2635 | // Basic sanity checking. |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2636 | assert(VT.getSizeInBits() == Operand.getValueType().getSizeInBits() |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2637 | && "Cannot BITCAST between types of different sizes!"); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 2638 | if (VT == Operand.getValueType()) return Operand; // noop conversion. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2639 | if (OpOpcode == ISD::BITCAST) // bitconv(bitconv(x)) -> bitconv(x) |
| 2640 | return getNode(ISD::BITCAST, DL, VT, Operand.getOperand(0)); |
Chris Lattner | 08da55e | 2006-04-04 01:02:22 +0000 | [diff] [blame] | 2641 | if (OpOpcode == ISD::UNDEF) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2642 | return getUNDEF(VT); |
Chris Lattner | 3548189 | 2005-12-23 00:16:34 +0000 | [diff] [blame] | 2643 | break; |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 2644 | case ISD::SCALAR_TO_VECTOR: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2645 | assert(VT.isVector() && !Operand.getValueType().isVector() && |
Duncan Sands | b10b5ac | 2009-04-18 20:16:54 +0000 | [diff] [blame] | 2646 | (VT.getVectorElementType() == Operand.getValueType() || |
| 2647 | (VT.getVectorElementType().isInteger() && |
| 2648 | Operand.getValueType().isInteger() && |
| 2649 | VT.getVectorElementType().bitsLE(Operand.getValueType()))) && |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 2650 | "Illegal SCALAR_TO_VECTOR node!"); |
Chris Lattner | f3ba434 | 2008-03-08 23:43:36 +0000 | [diff] [blame] | 2651 | if (OpOpcode == ISD::UNDEF) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 2652 | return getUNDEF(VT); |
Chris Lattner | f3ba434 | 2008-03-08 23:43:36 +0000 | [diff] [blame] | 2653 | // scalar_to_vector(extract_vector_elt V, 0) -> V, top bits are undefined. |
| 2654 | if (OpOpcode == ISD::EXTRACT_VECTOR_ELT && |
| 2655 | isa<ConstantSDNode>(Operand.getOperand(1)) && |
| 2656 | Operand.getConstantOperandVal(1) == 0 && |
| 2657 | Operand.getOperand(0).getValueType() == VT) |
| 2658 | return Operand.getOperand(0); |
Chris Lattner | ce87215 | 2006-03-19 06:31:19 +0000 | [diff] [blame] | 2659 | break; |
Chris Lattner | 485df9b | 2005-04-09 03:02:46 +0000 | [diff] [blame] | 2660 | case ISD::FNEG: |
Mon P Wang | a7b6cff | 2009-01-31 06:07:45 +0000 | [diff] [blame] | 2661 | // -(X-Y) -> (Y-X) is unsafe because when X==Y, -0.0 != +0.0 |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 2662 | if (getTarget().Options.UnsafeFPMath && OpOpcode == ISD::FSUB) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2663 | return getNode(ISD::FSUB, DL, VT, Operand.getNode()->getOperand(1), |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2664 | Operand.getNode()->getOperand(0)); |
Chris Lattner | 485df9b | 2005-04-09 03:02:46 +0000 | [diff] [blame] | 2665 | if (OpOpcode == ISD::FNEG) // --X -> X |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2666 | return Operand.getNode()->getOperand(0); |
Chris Lattner | 485df9b | 2005-04-09 03:02:46 +0000 | [diff] [blame] | 2667 | break; |
| 2668 | case ISD::FABS: |
| 2669 | if (OpOpcode == ISD::FNEG) // abs(-X) -> abs(X) |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 2670 | return getNode(ISD::FABS, DL, VT, Operand.getNode()->getOperand(0)); |
Chris Lattner | 485df9b | 2005-04-09 03:02:46 +0000 | [diff] [blame] | 2671 | break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2672 | } |
| 2673 | |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 2674 | SDNode *N; |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 2675 | SDVTList VTs = getVTList(VT); |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 2676 | if (VT != MVT::Glue) { // Don't CSE flag producing nodes |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 2677 | FoldingSetNodeID ID; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2678 | SDValue Ops[1] = { Operand }; |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 2679 | AddNodeIDNode(ID, Opcode, VTs, Ops, 1); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 2680 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 2681 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2682 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 2683 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 2684 | N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), |
| 2685 | DL.getDebugLoc(), VTs, Operand); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 2686 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 2687 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 2688 | N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), |
| 2689 | DL.getDebugLoc(), VTs, Operand); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 2690 | } |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 2691 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 2692 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 2693 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 2694 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 2695 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2696 | return SDValue(N, 0); |
Chris Lattner | 78ec311 | 2003-08-11 14:57:33 +0000 | [diff] [blame] | 2697 | } |
| 2698 | |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2699 | SDValue SelectionDAG::FoldConstantArithmetic(unsigned Opcode, EVT VT, |
| 2700 | SDNode *Cst1, SDNode *Cst2) { |
| 2701 | SmallVector<std::pair<ConstantSDNode *, ConstantSDNode *>, 4> Inputs; |
| 2702 | SmallVector<SDValue, 4> Outputs; |
| 2703 | EVT SVT = VT.getScalarType(); |
Bill Wendling | 688d1c4 | 2008-09-24 10:16:24 +0000 | [diff] [blame] | 2704 | |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2705 | ConstantSDNode *Scalar1 = dyn_cast<ConstantSDNode>(Cst1); |
| 2706 | ConstantSDNode *Scalar2 = dyn_cast<ConstantSDNode>(Cst2); |
| 2707 | if (Scalar1 && Scalar2) { |
| 2708 | // Scalar instruction. |
| 2709 | Inputs.push_back(std::make_pair(Scalar1, Scalar2)); |
| 2710 | } else { |
| 2711 | // For vectors extract each constant element into Inputs so we can constant |
| 2712 | // fold them individually. |
| 2713 | BuildVectorSDNode *BV1 = dyn_cast<BuildVectorSDNode>(Cst1); |
| 2714 | BuildVectorSDNode *BV2 = dyn_cast<BuildVectorSDNode>(Cst2); |
| 2715 | if (!BV1 || !BV2) |
| 2716 | return SDValue(); |
| 2717 | |
| 2718 | assert(BV1->getNumOperands() == BV2->getNumOperands() && "Out of sync!"); |
| 2719 | |
| 2720 | for (unsigned I = 0, E = BV1->getNumOperands(); I != E; ++I) { |
| 2721 | ConstantSDNode *V1 = dyn_cast<ConstantSDNode>(BV1->getOperand(I)); |
| 2722 | ConstantSDNode *V2 = dyn_cast<ConstantSDNode>(BV2->getOperand(I)); |
| 2723 | if (!V1 || !V2) // Not a constant, bail. |
| 2724 | return SDValue(); |
| 2725 | |
| 2726 | // Avoid BUILD_VECTOR nodes that perform implicit truncation. |
| 2727 | // FIXME: This is valid and could be handled by truncating the APInts. |
| 2728 | if (V1->getValueType(0) != SVT || V2->getValueType(0) != SVT) |
| 2729 | return SDValue(); |
| 2730 | |
| 2731 | Inputs.push_back(std::make_pair(V1, V2)); |
| 2732 | } |
Bill Wendling | 688d1c4 | 2008-09-24 10:16:24 +0000 | [diff] [blame] | 2733 | } |
| 2734 | |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2735 | // We have a number of constant values, constant fold them element by element. |
| 2736 | for (unsigned I = 0, E = Inputs.size(); I != E; ++I) { |
| 2737 | const APInt &C1 = Inputs[I].first->getAPIntValue(); |
| 2738 | const APInt &C2 = Inputs[I].second->getAPIntValue(); |
| 2739 | |
| 2740 | switch (Opcode) { |
| 2741 | case ISD::ADD: |
| 2742 | Outputs.push_back(getConstant(C1 + C2, SVT)); |
| 2743 | break; |
| 2744 | case ISD::SUB: |
| 2745 | Outputs.push_back(getConstant(C1 - C2, SVT)); |
| 2746 | break; |
| 2747 | case ISD::MUL: |
| 2748 | Outputs.push_back(getConstant(C1 * C2, SVT)); |
| 2749 | break; |
| 2750 | case ISD::UDIV: |
| 2751 | if (!C2.getBoolValue()) |
| 2752 | return SDValue(); |
| 2753 | Outputs.push_back(getConstant(C1.udiv(C2), SVT)); |
| 2754 | break; |
| 2755 | case ISD::UREM: |
| 2756 | if (!C2.getBoolValue()) |
| 2757 | return SDValue(); |
| 2758 | Outputs.push_back(getConstant(C1.urem(C2), SVT)); |
| 2759 | break; |
| 2760 | case ISD::SDIV: |
| 2761 | if (!C2.getBoolValue()) |
| 2762 | return SDValue(); |
| 2763 | Outputs.push_back(getConstant(C1.sdiv(C2), SVT)); |
| 2764 | break; |
| 2765 | case ISD::SREM: |
| 2766 | if (!C2.getBoolValue()) |
| 2767 | return SDValue(); |
| 2768 | Outputs.push_back(getConstant(C1.srem(C2), SVT)); |
| 2769 | break; |
| 2770 | case ISD::AND: |
| 2771 | Outputs.push_back(getConstant(C1 & C2, SVT)); |
| 2772 | break; |
| 2773 | case ISD::OR: |
| 2774 | Outputs.push_back(getConstant(C1 | C2, SVT)); |
| 2775 | break; |
| 2776 | case ISD::XOR: |
| 2777 | Outputs.push_back(getConstant(C1 ^ C2, SVT)); |
| 2778 | break; |
| 2779 | case ISD::SHL: |
| 2780 | Outputs.push_back(getConstant(C1 << C2, SVT)); |
| 2781 | break; |
| 2782 | case ISD::SRL: |
| 2783 | Outputs.push_back(getConstant(C1.lshr(C2), SVT)); |
| 2784 | break; |
| 2785 | case ISD::SRA: |
| 2786 | Outputs.push_back(getConstant(C1.ashr(C2), SVT)); |
| 2787 | break; |
| 2788 | case ISD::ROTL: |
| 2789 | Outputs.push_back(getConstant(C1.rotl(C2), SVT)); |
| 2790 | break; |
| 2791 | case ISD::ROTR: |
| 2792 | Outputs.push_back(getConstant(C1.rotr(C2), SVT)); |
| 2793 | break; |
| 2794 | default: |
| 2795 | return SDValue(); |
| 2796 | } |
| 2797 | } |
| 2798 | |
| 2799 | // Handle the scalar case first. |
Silviu Baranga | 0206683 | 2013-04-25 09:32:33 +0000 | [diff] [blame] | 2800 | if (Scalar1 && Scalar2) |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2801 | return Outputs.back(); |
| 2802 | |
| 2803 | // Otherwise build a big vector out of the scalar elements we generated. |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2804 | return getNode(ISD::BUILD_VECTOR, SDLoc(), VT, Outputs.data(), |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2805 | Outputs.size()); |
Bill Wendling | 688d1c4 | 2008-09-24 10:16:24 +0000 | [diff] [blame] | 2806 | } |
| 2807 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2808 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, SDValue N1, |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 2809 | SDValue N2) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2810 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
| 2811 | ConstantSDNode *N2C = dyn_cast<ConstantSDNode>(N2.getNode()); |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2812 | switch (Opcode) { |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2813 | default: break; |
Chris Lattner | 39908e0 | 2005-01-19 18:01:40 +0000 | [diff] [blame] | 2814 | case ISD::TokenFactor: |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2815 | assert(VT == MVT::Other && N1.getValueType() == MVT::Other && |
| 2816 | N2.getValueType() == MVT::Other && "Invalid token factor!"); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2817 | // Fold trivial token factors. |
| 2818 | if (N1.getOpcode() == ISD::EntryToken) return N2; |
| 2819 | if (N2.getOpcode() == ISD::EntryToken) return N1; |
Dan Gohman | 38ac062 | 2008-10-01 15:11:19 +0000 | [diff] [blame] | 2820 | if (N1 == N2) return N1; |
Chris Lattner | 39908e0 | 2005-01-19 18:01:40 +0000 | [diff] [blame] | 2821 | break; |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 2822 | case ISD::CONCAT_VECTORS: |
Nadav Rotem | b87bdac | 2012-07-15 08:38:23 +0000 | [diff] [blame] | 2823 | // Concat of UNDEFs is UNDEF. |
| 2824 | if (N1.getOpcode() == ISD::UNDEF && |
| 2825 | N2.getOpcode() == ISD::UNDEF) |
| 2826 | return getUNDEF(VT); |
| 2827 | |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 2828 | // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to |
| 2829 | // one big BUILD_VECTOR. |
| 2830 | if (N1.getOpcode() == ISD::BUILD_VECTOR && |
| 2831 | N2.getOpcode() == ISD::BUILD_VECTOR) { |
Gabor Greif | 481c4c0 | 2010-07-22 17:18:03 +0000 | [diff] [blame] | 2832 | SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), |
| 2833 | N1.getNode()->op_end()); |
Dan Gohman | 403a8cd | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 2834 | Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end()); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 2835 | return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size()); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 2836 | } |
| 2837 | break; |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2838 | case ISD::AND: |
Dale Johannesen | 7899551 | 2010-05-15 18:38:02 +0000 | [diff] [blame] | 2839 | assert(VT.isInteger() && "This operator does not apply to FP types!"); |
| 2840 | assert(N1.getValueType() == N2.getValueType() && |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2841 | N1.getValueType() == VT && "Binary operator types must match!"); |
| 2842 | // (X & 0) -> 0. This commonly occurs when legalizing i64 values, so it's |
| 2843 | // worth handling here. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2844 | if (N2C && N2C->isNullValue()) |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2845 | return N2; |
Chris Lattner | 9967c15 | 2008-01-26 01:05:42 +0000 | [diff] [blame] | 2846 | if (N2C && N2C->isAllOnesValue()) // X & -1 -> X |
| 2847 | return N1; |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2848 | break; |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2849 | case ISD::OR: |
| 2850 | case ISD::XOR: |
Dan Gohman | 33b625b | 2008-06-02 22:27:05 +0000 | [diff] [blame] | 2851 | case ISD::ADD: |
| 2852 | case ISD::SUB: |
Dale Johannesen | 7899551 | 2010-05-15 18:38:02 +0000 | [diff] [blame] | 2853 | assert(VT.isInteger() && "This operator does not apply to FP types!"); |
| 2854 | assert(N1.getValueType() == N2.getValueType() && |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2855 | N1.getValueType() == VT && "Binary operator types must match!"); |
Dan Gohman | 33b625b | 2008-06-02 22:27:05 +0000 | [diff] [blame] | 2856 | // (X ^|+- 0) -> X. This commonly occurs when legalizing i64 values, so |
| 2857 | // it's worth handling here. |
Dan Gohman | 002e5d0 | 2008-03-13 22:13:53 +0000 | [diff] [blame] | 2858 | if (N2C && N2C->isNullValue()) |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2859 | return N1; |
| 2860 | break; |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2861 | case ISD::UDIV: |
| 2862 | case ISD::UREM: |
Chris Lattner | e5eb6f8 | 2005-05-15 05:39:08 +0000 | [diff] [blame] | 2863 | case ISD::MULHU: |
| 2864 | case ISD::MULHS: |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2865 | case ISD::MUL: |
| 2866 | case ISD::SDIV: |
| 2867 | case ISD::SREM: |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 2868 | assert(VT.isInteger() && "This operator does not apply to FP types!"); |
Dale Johannesen | 7899551 | 2010-05-15 18:38:02 +0000 | [diff] [blame] | 2869 | assert(N1.getValueType() == N2.getValueType() && |
| 2870 | N1.getValueType() == VT && "Binary operator types must match!"); |
| 2871 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 2872 | case ISD::FADD: |
| 2873 | case ISD::FSUB: |
| 2874 | case ISD::FMUL: |
| 2875 | case ISD::FDIV: |
| 2876 | case ISD::FREM: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 2877 | if (getTarget().Options.UnsafeFPMath) { |
Dan Gohman | a90c8e6 | 2009-01-23 19:10:37 +0000 | [diff] [blame] | 2878 | if (Opcode == ISD::FADD) { |
| 2879 | // 0+x --> x |
| 2880 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1)) |
| 2881 | if (CFP->getValueAPF().isZero()) |
| 2882 | return N2; |
| 2883 | // x+0 --> x |
| 2884 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2)) |
| 2885 | if (CFP->getValueAPF().isZero()) |
| 2886 | return N1; |
| 2887 | } else if (Opcode == ISD::FSUB) { |
| 2888 | // x-0 --> x |
| 2889 | if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N2)) |
| 2890 | if (CFP->getValueAPF().isZero()) |
| 2891 | return N1; |
Michael Ilseman | 10def39 | 2012-09-10 17:00:37 +0000 | [diff] [blame] | 2892 | } else if (Opcode == ISD::FMUL) { |
| 2893 | ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1); |
| 2894 | SDValue V = N2; |
| 2895 | |
| 2896 | // If the first operand isn't the constant, try the second |
| 2897 | if (!CFP) { |
| 2898 | CFP = dyn_cast<ConstantFPSDNode>(N2); |
| 2899 | V = N1; |
| 2900 | } |
| 2901 | |
| 2902 | if (CFP) { |
| 2903 | // 0*x --> 0 |
| 2904 | if (CFP->isZero()) |
| 2905 | return SDValue(CFP,0); |
| 2906 | // 1*x --> x |
| 2907 | if (CFP->isExactlyValue(1.0)) |
| 2908 | return V; |
| 2909 | } |
Dan Gohman | a90c8e6 | 2009-01-23 19:10:37 +0000 | [diff] [blame] | 2910 | } |
Dan Gohman | 760f86f | 2009-01-22 21:58:43 +0000 | [diff] [blame] | 2911 | } |
Dale Johannesen | 7899551 | 2010-05-15 18:38:02 +0000 | [diff] [blame] | 2912 | assert(VT.isFloatingPoint() && "This operator only applies to FP types!"); |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2913 | assert(N1.getValueType() == N2.getValueType() && |
| 2914 | N1.getValueType() == VT && "Binary operator types must match!"); |
| 2915 | break; |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 2916 | case ISD::FCOPYSIGN: // N1 and result must match. N1/N2 need not match. |
| 2917 | assert(N1.getValueType() == VT && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2918 | N1.getValueType().isFloatingPoint() && |
| 2919 | N2.getValueType().isFloatingPoint() && |
Chris Lattner | a09f848 | 2006-03-05 05:09:38 +0000 | [diff] [blame] | 2920 | "Invalid FCOPYSIGN!"); |
| 2921 | break; |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2922 | case ISD::SHL: |
| 2923 | case ISD::SRA: |
| 2924 | case ISD::SRL: |
Nate Begeman | 35ef913 | 2006-01-11 21:21:00 +0000 | [diff] [blame] | 2925 | case ISD::ROTL: |
| 2926 | case ISD::ROTR: |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2927 | assert(VT == N1.getValueType() && |
| 2928 | "Shift operators return type must be the same as their first arg"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2929 | assert(VT.isInteger() && N2.getValueType().isInteger() && |
Chris Lattner | 349db17 | 2008-07-02 17:01:57 +0000 | [diff] [blame] | 2930 | "Shifts only work on integers"); |
Michael Liao | a6b20ce | 2013-03-01 18:40:30 +0000 | [diff] [blame] | 2931 | assert((!VT.isVector() || VT == N2.getValueType()) && |
| 2932 | "Vector shift amounts must be in the same as their first arg"); |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 2933 | // Verify that the shift amount VT is bit enough to hold valid shift |
| 2934 | // amounts. This catches things like trying to shift an i1024 value by an |
| 2935 | // i8, which is easy to fall into in generic code that uses |
| 2936 | // TLI.getShiftAmount(). |
| 2937 | assert(N2.getValueType().getSizeInBits() >= |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2938 | Log2_32_Ceil(N1.getValueType().getSizeInBits()) && |
Chris Lattner | e075118 | 2011-02-13 19:09:16 +0000 | [diff] [blame] | 2939 | "Invalid use of small shift amount with oversized value!"); |
Chris Lattner | 349db17 | 2008-07-02 17:01:57 +0000 | [diff] [blame] | 2940 | |
| 2941 | // Always fold shifts of i1 values so the code generator doesn't need to |
| 2942 | // handle them. Since we know the size of the shift has to be less than the |
| 2943 | // size of the value, the shift/rotate count is guaranteed to be zero. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2944 | if (VT == MVT::i1) |
Chris Lattner | 349db17 | 2008-07-02 17:01:57 +0000 | [diff] [blame] | 2945 | return N1; |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 2946 | if (N2C && N2C->isNullValue()) |
| 2947 | return N1; |
Chris Lattner | 7636512 | 2005-01-16 02:23:22 +0000 | [diff] [blame] | 2948 | break; |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2949 | case ISD::FP_ROUND_INREG: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2950 | EVT EVT = cast<VTSDNode>(N2)->getVT(); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2951 | assert(VT == N1.getValueType() && "Not an inreg round!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2952 | assert(VT.isFloatingPoint() && EVT.isFloatingPoint() && |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2953 | "Cannot FP_ROUND_INREG integer types"); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 2954 | assert(EVT.isVector() == VT.isVector() && |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2955 | "FP_ROUND_INREG type should be vector iff the operand " |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 2956 | "type is vector!"); |
| 2957 | assert((!EVT.isVector() || |
| 2958 | EVT.getVectorNumElements() == VT.getVectorNumElements()) && |
| 2959 | "Vector element counts must match in FP_ROUND_INREG"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 2960 | assert(EVT.bitsLE(VT) && "Not rounding down!"); |
Duncan Sands | 17001ce | 2011-10-18 12:44:00 +0000 | [diff] [blame] | 2961 | (void)EVT; |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2962 | if (cast<VTSDNode>(N2)->getVT() == VT) return N1; // Not actually rounding. |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2963 | break; |
| 2964 | } |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2965 | case ISD::FP_ROUND: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2966 | assert(VT.isFloatingPoint() && |
| 2967 | N1.getValueType().isFloatingPoint() && |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 2968 | VT.bitsLE(N1.getValueType()) && |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2969 | isa<ConstantSDNode>(N2) && "Invalid FP_ROUND!"); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2970 | if (N1.getValueType() == VT) return N1; // noop conversion. |
Chris Lattner | 0bd4893 | 2008-01-17 07:00:52 +0000 | [diff] [blame] | 2971 | break; |
Nate Begeman | 56eb868 | 2005-08-30 02:44:00 +0000 | [diff] [blame] | 2972 | case ISD::AssertSext: |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2973 | case ISD::AssertZext: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2974 | EVT EVT = cast<VTSDNode>(N2)->getVT(); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2975 | assert(VT == N1.getValueType() && "Not an inreg extend!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2976 | assert(VT.isInteger() && EVT.isInteger() && |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2977 | "Cannot *_EXTEND_INREG FP types"); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 2978 | assert(!EVT.isVector() && |
| 2979 | "AssertSExt/AssertZExt type should be the vector element type " |
| 2980 | "rather than the vector type!"); |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 2981 | assert(EVT.bitsLE(VT) && "Not extending!"); |
Duncan Sands | d885dbd | 2008-02-10 10:08:52 +0000 | [diff] [blame] | 2982 | if (VT == EVT) return N1; // noop assertion. |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2983 | break; |
| 2984 | } |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2985 | case ISD::SIGN_EXTEND_INREG: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2986 | EVT EVT = cast<VTSDNode>(N2)->getVT(); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2987 | assert(VT == N1.getValueType() && "Not an inreg extend!"); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2988 | assert(VT.isInteger() && EVT.isInteger() && |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2989 | "Cannot *_EXTEND_INREG FP types"); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 2990 | assert(EVT.isVector() == VT.isVector() && |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 2991 | "SIGN_EXTEND_INREG type should be vector iff the operand " |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 2992 | "type is vector!"); |
| 2993 | assert((!EVT.isVector() || |
| 2994 | EVT.getVectorNumElements() == VT.getVectorNumElements()) && |
| 2995 | "Vector element counts must match in SIGN_EXTEND_INREG"); |
| 2996 | assert(EVT.bitsLE(VT) && "Not extending!"); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2997 | if (EVT == VT) return N1; // Not actually extending |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 2998 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 2999 | if (N1C) { |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 3000 | APInt Val = N1C->getAPIntValue(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 3001 | unsigned FromBits = EVT.getScalarType().getSizeInBits(); |
Dan Gohman | 6c23150 | 2008-02-29 01:47:35 +0000 | [diff] [blame] | 3002 | Val <<= Val.getBitWidth()-FromBits; |
Evan Cheng | 433f6f6 | 2008-03-06 08:20:51 +0000 | [diff] [blame] | 3003 | Val = Val.ashr(Val.getBitWidth()-FromBits); |
Chris Lattner | b9ebacd | 2006-05-06 23:05:41 +0000 | [diff] [blame] | 3004 | return getConstant(Val, VT); |
| 3005 | } |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3006 | break; |
| 3007 | } |
| 3008 | case ISD::EXTRACT_VECTOR_ELT: |
Chris Lattner | f3ba434 | 2008-03-08 23:43:36 +0000 | [diff] [blame] | 3009 | // EXTRACT_VECTOR_ELT of an UNDEF is an UNDEF. |
| 3010 | if (N1.getOpcode() == ISD::UNDEF) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 3011 | return getUNDEF(VT); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3012 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3013 | // EXTRACT_VECTOR_ELT of CONCAT_VECTORS is often formed while lowering is |
| 3014 | // expanding copies of large vectors from registers. |
Dan Gohman | 6ab6422 | 2008-08-13 21:51:37 +0000 | [diff] [blame] | 3015 | if (N2C && |
| 3016 | N1.getOpcode() == ISD::CONCAT_VECTORS && |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3017 | N1.getNumOperands() > 0) { |
| 3018 | unsigned Factor = |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3019 | N1.getOperand(0).getValueType().getVectorNumElements(); |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 3020 | return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3021 | N1.getOperand(N2C->getZExtValue() / Factor), |
| 3022 | getConstant(N2C->getZExtValue() % Factor, |
| 3023 | N2.getValueType())); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3024 | } |
| 3025 | |
| 3026 | // EXTRACT_VECTOR_ELT of BUILD_VECTOR is often formed while lowering is |
| 3027 | // expanding large vector constants. |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 3028 | if (N2C && N1.getOpcode() == ISD::BUILD_VECTOR) { |
| 3029 | SDValue Elt = N1.getOperand(N2C->getZExtValue()); |
James Molloy | 8cd08bf | 2012-09-10 14:01:21 +0000 | [diff] [blame] | 3030 | |
| 3031 | if (VT != Elt.getValueType()) |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 3032 | // If the vector element type is not legal, the BUILD_VECTOR operands |
James Molloy | 8cd08bf | 2012-09-10 14:01:21 +0000 | [diff] [blame] | 3033 | // are promoted and implicitly truncated, and the result implicitly |
| 3034 | // extended. Make that explicit here. |
| 3035 | Elt = getAnyExtOrTrunc(Elt, DL, VT); |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 3036 | |
Bob Wilson | b1303d0 | 2009-04-13 22:05:19 +0000 | [diff] [blame] | 3037 | return Elt; |
| 3038 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3039 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3040 | // EXTRACT_VECTOR_ELT of INSERT_VECTOR_ELT is often formed when vector |
| 3041 | // operations are lowered to scalars. |
Dan Gohman | 6ab6422 | 2008-08-13 21:51:37 +0000 | [diff] [blame] | 3042 | if (N1.getOpcode() == ISD::INSERT_VECTOR_ELT) { |
Mon P Wang | 87c46d8 | 2010-02-01 22:15:09 +0000 | [diff] [blame] | 3043 | // If the indices are the same, return the inserted element else |
| 3044 | // if the indices are known different, extract the element from |
Dan Gohman | 197e88f | 2009-01-29 16:10:46 +0000 | [diff] [blame] | 3045 | // the original vector. |
Bill Wendling | d71bb56 | 2010-04-30 22:19:17 +0000 | [diff] [blame] | 3046 | SDValue N1Op2 = N1.getOperand(2); |
| 3047 | ConstantSDNode *N1Op2C = dyn_cast<ConstantSDNode>(N1Op2.getNode()); |
| 3048 | |
| 3049 | if (N1Op2C && N2C) { |
| 3050 | if (N1Op2C->getZExtValue() == N2C->getZExtValue()) { |
| 3051 | if (VT == N1.getOperand(1).getValueType()) |
| 3052 | return N1.getOperand(1); |
| 3053 | else |
| 3054 | return getSExtOrTrunc(N1.getOperand(1), DL, VT); |
| 3055 | } |
| 3056 | |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 3057 | return getNode(ISD::EXTRACT_VECTOR_ELT, DL, VT, N1.getOperand(0), N2); |
Bill Wendling | d71bb56 | 2010-04-30 22:19:17 +0000 | [diff] [blame] | 3058 | } |
Dan Gohman | 6ab6422 | 2008-08-13 21:51:37 +0000 | [diff] [blame] | 3059 | } |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3060 | break; |
| 3061 | case ISD::EXTRACT_ELEMENT: |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3062 | assert(N2C && (unsigned)N2C->getZExtValue() < 2 && "Bad EXTRACT_ELEMENT!"); |
Duncan Sands | 041cde2 | 2008-06-25 20:24:48 +0000 | [diff] [blame] | 3063 | assert(!N1.getValueType().isVector() && !VT.isVector() && |
| 3064 | (N1.getValueType().isInteger() == VT.isInteger()) && |
Eli Friedman | 6cdc1f4 | 2011-08-02 18:38:35 +0000 | [diff] [blame] | 3065 | N1.getValueType() != VT && |
Duncan Sands | 041cde2 | 2008-06-25 20:24:48 +0000 | [diff] [blame] | 3066 | "Wrong types for EXTRACT_ELEMENT!"); |
Duncan Sands | 25eb043 | 2008-03-12 20:30:08 +0000 | [diff] [blame] | 3067 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3068 | // EXTRACT_ELEMENT of BUILD_PAIR is often formed while legalize is expanding |
| 3069 | // 64-bit integers into 32-bit parts. Instead of building the extract of |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3070 | // the BUILD_PAIR, only to have legalize rip it apart, just do it now. |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3071 | if (N1.getOpcode() == ISD::BUILD_PAIR) |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3072 | return N1.getOperand(N2C->getZExtValue()); |
Duncan Sands | 25eb043 | 2008-03-12 20:30:08 +0000 | [diff] [blame] | 3073 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3074 | // EXTRACT_ELEMENT of a constant int is also very common. |
| 3075 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N1)) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3076 | unsigned ElementSize = VT.getSizeInBits(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3077 | unsigned Shift = ElementSize * N2C->getZExtValue(); |
Dan Gohman | 4c931fc | 2008-03-24 16:38:05 +0000 | [diff] [blame] | 3078 | APInt ShiftedVal = C->getAPIntValue().lshr(Shift); |
| 3079 | return getConstant(ShiftedVal.trunc(ElementSize), VT); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3080 | } |
| 3081 | break; |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3082 | case ISD::EXTRACT_SUBVECTOR: { |
| 3083 | SDValue Index = N2; |
| 3084 | if (VT.isSimple() && N1.getValueType().isSimple()) { |
| 3085 | assert(VT.isVector() && N1.getValueType().isVector() && |
| 3086 | "Extract subvector VTs must be a vectors!"); |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 3087 | assert(VT.getVectorElementType() == |
| 3088 | N1.getValueType().getVectorElementType() && |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3089 | "Extract subvector VTs must have the same element type!"); |
Craig Topper | 0ff1190 | 2013-08-15 02:44:19 +0000 | [diff] [blame] | 3090 | assert(VT.getSimpleVT() <= N1.getSimpleValueType() && |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3091 | "Extract subvector must be from larger vector to smaller vector!"); |
| 3092 | |
Matt Beaumont-Gay | 9a14a36 | 2011-02-01 22:12:50 +0000 | [diff] [blame] | 3093 | if (isa<ConstantSDNode>(Index.getNode())) { |
| 3094 | assert((VT.getVectorNumElements() + |
| 3095 | cast<ConstantSDNode>(Index.getNode())->getZExtValue() |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3096 | <= N1.getValueType().getVectorNumElements()) |
| 3097 | && "Extract subvector overflow!"); |
| 3098 | } |
| 3099 | |
| 3100 | // Trivial extraction. |
Craig Topper | 0ff1190 | 2013-08-15 02:44:19 +0000 | [diff] [blame] | 3101 | if (VT.getSimpleVT() == N1.getSimpleValueType()) |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3102 | return N1; |
| 3103 | } |
Duncan Sands | f83b1f6 | 2008-02-20 17:38:09 +0000 | [diff] [blame] | 3104 | break; |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3105 | } |
David Greene | 9158509 | 2011-01-26 15:38:49 +0000 | [diff] [blame] | 3106 | } |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3107 | |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 3108 | // Perform trivial constant folding. |
| 3109 | SDValue SV = FoldConstantArithmetic(Opcode, VT, N1.getNode(), N2.getNode()); |
| 3110 | if (SV.getNode()) return SV; |
| 3111 | |
| 3112 | // Canonicalize constant to RHS if commutative. |
| 3113 | if (N1C && !N2C && isCommutativeBinOp(Opcode)) { |
| 3114 | std::swap(N1C, N2C); |
| 3115 | std::swap(N1, N2); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3116 | } |
| 3117 | |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3118 | // Constant fold FP operations. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3119 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1.getNode()); |
| 3120 | ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2.getNode()); |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3121 | if (N1CFP) { |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3122 | if (!N2CFP && isCommutativeBinOp(Opcode)) { |
Benjamin Kramer | 4969310 | 2013-02-04 15:19:18 +0000 | [diff] [blame] | 3123 | // Canonicalize constant to RHS if commutative. |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3124 | std::swap(N1CFP, N2CFP); |
| 3125 | std::swap(N1, N2); |
Ulrich Weigand | e669c93 | 2012-10-29 18:35:49 +0000 | [diff] [blame] | 3126 | } else if (N2CFP) { |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3127 | APFloat V1 = N1CFP->getValueAPF(), V2 = N2CFP->getValueAPF(); |
| 3128 | APFloat::opStatus s; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3129 | switch (Opcode) { |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3130 | case ISD::FADD: |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3131 | s = V1.add(V2, APFloat::rmNearestTiesToEven); |
Chris Lattner | 8e1f7ac | 2008-01-22 19:09:33 +0000 | [diff] [blame] | 3132 | if (s != APFloat::opInvalidOp) |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3133 | return getConstantFP(V1, VT); |
| 3134 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3135 | case ISD::FSUB: |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3136 | s = V1.subtract(V2, APFloat::rmNearestTiesToEven); |
| 3137 | if (s!=APFloat::opInvalidOp) |
| 3138 | return getConstantFP(V1, VT); |
| 3139 | break; |
| 3140 | case ISD::FMUL: |
| 3141 | s = V1.multiply(V2, APFloat::rmNearestTiesToEven); |
| 3142 | if (s!=APFloat::opInvalidOp) |
| 3143 | return getConstantFP(V1, VT); |
| 3144 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3145 | case ISD::FDIV: |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3146 | s = V1.divide(V2, APFloat::rmNearestTiesToEven); |
| 3147 | if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero) |
| 3148 | return getConstantFP(V1, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3149 | break; |
Chris Lattner | 01b3d73 | 2005-09-28 22:28:18 +0000 | [diff] [blame] | 3150 | case ISD::FREM : |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3151 | s = V1.mod(V2, APFloat::rmNearestTiesToEven); |
| 3152 | if (s!=APFloat::opInvalidOp && s!=APFloat::opDivByZero) |
| 3153 | return getConstantFP(V1, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3154 | break; |
Dale Johannesen | c4dd3c3 | 2007-08-31 23:34:27 +0000 | [diff] [blame] | 3155 | case ISD::FCOPYSIGN: |
| 3156 | V1.copySign(V2); |
| 3157 | return getConstantFP(V1, VT); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3158 | default: break; |
| 3159 | } |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3160 | } |
Owen Anderson | 06886aa | 2012-04-10 22:46:53 +0000 | [diff] [blame] | 3161 | |
| 3162 | if (Opcode == ISD::FP_ROUND) { |
| 3163 | APFloat V = N1CFP->getValueAPF(); // make copy |
| 3164 | bool ignored; |
| 3165 | // This can return overflow, underflow, or inexact; we don't care. |
| 3166 | // FIXME need to be more flexible about rounding mode. |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 3167 | (void)V.convert(EVTToAPFloatSemantics(VT), |
Owen Anderson | 06886aa | 2012-04-10 22:46:53 +0000 | [diff] [blame] | 3168 | APFloat::rmNearestTiesToEven, &ignored); |
| 3169 | return getConstantFP(V, VT); |
| 3170 | } |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3171 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3172 | |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3173 | // Canonicalize an UNDEF to the RHS, even over a constant. |
| 3174 | if (N1.getOpcode() == ISD::UNDEF) { |
| 3175 | if (isCommutativeBinOp(Opcode)) { |
| 3176 | std::swap(N1, N2); |
| 3177 | } else { |
| 3178 | switch (Opcode) { |
| 3179 | case ISD::FP_ROUND_INREG: |
| 3180 | case ISD::SIGN_EXTEND_INREG: |
| 3181 | case ISD::SUB: |
| 3182 | case ISD::FSUB: |
| 3183 | case ISD::FDIV: |
| 3184 | case ISD::FREM: |
Chris Lattner | 2cfd674 | 2006-05-08 17:29:49 +0000 | [diff] [blame] | 3185 | case ISD::SRA: |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3186 | return N1; // fold op(undef, arg2) -> undef |
| 3187 | case ISD::UDIV: |
| 3188 | case ISD::SDIV: |
| 3189 | case ISD::UREM: |
| 3190 | case ISD::SREM: |
Chris Lattner | 2cfd674 | 2006-05-08 17:29:49 +0000 | [diff] [blame] | 3191 | case ISD::SRL: |
| 3192 | case ISD::SHL: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3193 | if (!VT.isVector()) |
Chris Lattner | 964dd86 | 2007-04-25 00:00:45 +0000 | [diff] [blame] | 3194 | return getConstant(0, VT); // fold op(undef, arg2) -> 0 |
| 3195 | // For vectors, we can't easily build an all zero vector, just return |
| 3196 | // the LHS. |
| 3197 | return N2; |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3198 | } |
| 3199 | } |
| 3200 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3201 | |
| 3202 | // Fold a bunch of operators when the RHS is undef. |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3203 | if (N2.getOpcode() == ISD::UNDEF) { |
| 3204 | switch (Opcode) { |
Evan Cheng | 26471c4 | 2008-03-25 20:08:07 +0000 | [diff] [blame] | 3205 | case ISD::XOR: |
| 3206 | if (N1.getOpcode() == ISD::UNDEF) |
| 3207 | // Handle undef ^ undef -> 0 special case. This is a common |
| 3208 | // idiom (misuse). |
| 3209 | return getConstant(0, VT); |
| 3210 | // fallthrough |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3211 | case ISD::ADD: |
Chris Lattner | 175415e | 2007-03-04 20:01:46 +0000 | [diff] [blame] | 3212 | case ISD::ADDC: |
| 3213 | case ISD::ADDE: |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3214 | case ISD::SUB: |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3215 | case ISD::UDIV: |
| 3216 | case ISD::SDIV: |
| 3217 | case ISD::UREM: |
| 3218 | case ISD::SREM: |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3219 | return N2; // fold op(arg1, undef) -> undef |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 3220 | case ISD::FADD: |
| 3221 | case ISD::FSUB: |
| 3222 | case ISD::FMUL: |
| 3223 | case ISD::FDIV: |
| 3224 | case ISD::FREM: |
Nick Lewycky | 8a8d479 | 2011-12-02 22:16:29 +0000 | [diff] [blame] | 3225 | if (getTarget().Options.UnsafeFPMath) |
Dan Gohman | 77b81fe | 2009-06-04 17:12:12 +0000 | [diff] [blame] | 3226 | return N2; |
| 3227 | break; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3228 | case ISD::MUL: |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3229 | case ISD::AND: |
Chris Lattner | 2cfd674 | 2006-05-08 17:29:49 +0000 | [diff] [blame] | 3230 | case ISD::SRL: |
| 3231 | case ISD::SHL: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3232 | if (!VT.isVector()) |
Chris Lattner | 964dd86 | 2007-04-25 00:00:45 +0000 | [diff] [blame] | 3233 | return getConstant(0, VT); // fold op(arg1, undef) -> 0 |
| 3234 | // For vectors, we can't easily build an all zero vector, just return |
| 3235 | // the LHS. |
| 3236 | return N1; |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3237 | case ISD::OR: |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3238 | if (!VT.isVector()) |
Duncan Sands | b0d5cdd | 2009-02-01 18:06:53 +0000 | [diff] [blame] | 3239 | return getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT); |
Chris Lattner | 964dd86 | 2007-04-25 00:00:45 +0000 | [diff] [blame] | 3240 | // For vectors, we can't easily build an all one vector, just return |
| 3241 | // the LHS. |
| 3242 | return N1; |
Chris Lattner | 2cfd674 | 2006-05-08 17:29:49 +0000 | [diff] [blame] | 3243 | case ISD::SRA: |
| 3244 | return N1; |
Chris Lattner | 62b5772 | 2006-04-20 05:39:12 +0000 | [diff] [blame] | 3245 | } |
| 3246 | } |
Chris Lattner | 15e4b01 | 2005-07-10 00:07:11 +0000 | [diff] [blame] | 3247 | |
Chris Lattner | 27e9b41 | 2005-05-11 18:57:39 +0000 | [diff] [blame] | 3248 | // Memoize this node if possible. |
| 3249 | SDNode *N; |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 3250 | SDVTList VTs = getVTList(VT); |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3251 | if (VT != MVT::Glue) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3252 | SDValue Ops[] = { N1, N2 }; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 3253 | FoldingSetNodeID ID; |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 3254 | AddNodeIDNode(ID, Opcode, VTs, Ops, 2); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 3255 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 3256 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3257 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 3258 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 3259 | N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), |
| 3260 | DL.getDebugLoc(), VTs, N1, N2); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 3261 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 27e9b41 | 2005-05-11 18:57:39 +0000 | [diff] [blame] | 3262 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 3263 | N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), |
| 3264 | DL.getDebugLoc(), VTs, N1, N2); |
Chris Lattner | 27e9b41 | 2005-05-11 18:57:39 +0000 | [diff] [blame] | 3265 | } |
| 3266 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3267 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 3268 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 3269 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 3270 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3271 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3272 | } |
| 3273 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3274 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 3275 | SDValue N1, SDValue N2, SDValue N3) { |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3276 | // Perform various simplifications. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3277 | ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode()); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3278 | switch (Opcode) { |
Owen Anderson | 58dcd20 | 2013-05-09 22:27:13 +0000 | [diff] [blame] | 3279 | case ISD::FMA: { |
| 3280 | ConstantFPSDNode *N1CFP = dyn_cast<ConstantFPSDNode>(N1); |
| 3281 | ConstantFPSDNode *N2CFP = dyn_cast<ConstantFPSDNode>(N2); |
| 3282 | ConstantFPSDNode *N3CFP = dyn_cast<ConstantFPSDNode>(N3); |
| 3283 | if (N1CFP && N2CFP && N3CFP) { |
| 3284 | APFloat V1 = N1CFP->getValueAPF(); |
| 3285 | const APFloat &V2 = N2CFP->getValueAPF(); |
| 3286 | const APFloat &V3 = N3CFP->getValueAPF(); |
| 3287 | APFloat::opStatus s = |
| 3288 | V1.fusedMultiplyAdd(V2, V3, APFloat::rmNearestTiesToEven); |
| 3289 | if (s != APFloat::opInvalidOp) |
| 3290 | return getConstantFP(V1, VT); |
| 3291 | } |
| 3292 | break; |
| 3293 | } |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 3294 | case ISD::CONCAT_VECTORS: |
| 3295 | // A CONCAT_VECTOR with all operands BUILD_VECTOR can be simplified to |
| 3296 | // one big BUILD_VECTOR. |
| 3297 | if (N1.getOpcode() == ISD::BUILD_VECTOR && |
| 3298 | N2.getOpcode() == ISD::BUILD_VECTOR && |
| 3299 | N3.getOpcode() == ISD::BUILD_VECTOR) { |
Gabor Greif | 481c4c0 | 2010-07-22 17:18:03 +0000 | [diff] [blame] | 3300 | SmallVector<SDValue, 16> Elts(N1.getNode()->op_begin(), |
| 3301 | N1.getNode()->op_end()); |
Dan Gohman | 403a8cd | 2010-06-21 19:47:52 +0000 | [diff] [blame] | 3302 | Elts.append(N2.getNode()->op_begin(), N2.getNode()->op_end()); |
| 3303 | Elts.append(N3.getNode()->op_begin(), N3.getNode()->op_end()); |
Evan Cheng | a87008d | 2009-02-25 22:49:59 +0000 | [diff] [blame] | 3304 | return getNode(ISD::BUILD_VECTOR, DL, VT, &Elts[0], Elts.size()); |
Dan Gohman | 7f8613e | 2008-08-14 20:04:46 +0000 | [diff] [blame] | 3305 | } |
| 3306 | break; |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 3307 | case ISD::SETCC: { |
Chris Lattner | 51dabfb | 2006-10-14 00:41:01 +0000 | [diff] [blame] | 3308 | // Use FoldSetCC to simplify SETCC's. |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 3309 | SDValue Simp = FoldSetCC(VT, N1, N2, cast<CondCodeSDNode>(N3)->get(), DL); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3310 | if (Simp.getNode()) return Simp; |
Chris Lattner | 7cf7e3f | 2005-08-09 20:20:18 +0000 | [diff] [blame] | 3311 | break; |
| 3312 | } |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3313 | case ISD::SELECT: |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3314 | if (N1C) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3315 | if (N1C->getZExtValue()) |
David Blaikie | 4d6ccb5 | 2012-01-20 21:51:11 +0000 | [diff] [blame] | 3316 | return N2; // select true, X, Y -> X |
| 3317 | return N3; // select false, X, Y -> Y |
Anton Korobeynikov | 4c71dfe | 2008-02-20 11:10:28 +0000 | [diff] [blame] | 3318 | } |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3319 | |
| 3320 | if (N2 == N3) return N2; // select C, X, X -> X |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3321 | break; |
Chris Lattner | fb194b9 | 2006-03-19 23:56:04 +0000 | [diff] [blame] | 3322 | case ISD::VECTOR_SHUFFLE: |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 3323 | llvm_unreachable("should use getVectorShuffle constructor!"); |
David Greene | cfe33c4 | 2011-01-26 19:13:22 +0000 | [diff] [blame] | 3324 | case ISD::INSERT_SUBVECTOR: { |
| 3325 | SDValue Index = N3; |
| 3326 | if (VT.isSimple() && N1.getValueType().isSimple() |
| 3327 | && N2.getValueType().isSimple()) { |
| 3328 | assert(VT.isVector() && N1.getValueType().isVector() && |
| 3329 | N2.getValueType().isVector() && |
| 3330 | "Insert subvector VTs must be a vectors"); |
| 3331 | assert(VT == N1.getValueType() && |
| 3332 | "Dest and insert subvector source types must match!"); |
Craig Topper | 0ff1190 | 2013-08-15 02:44:19 +0000 | [diff] [blame] | 3333 | assert(N2.getSimpleValueType() <= N1.getSimpleValueType() && |
David Greene | cfe33c4 | 2011-01-26 19:13:22 +0000 | [diff] [blame] | 3334 | "Insert subvector must be from smaller vector to larger vector!"); |
Matt Beaumont-Gay | 9a14a36 | 2011-02-01 22:12:50 +0000 | [diff] [blame] | 3335 | if (isa<ConstantSDNode>(Index.getNode())) { |
| 3336 | assert((N2.getValueType().getVectorNumElements() + |
| 3337 | cast<ConstantSDNode>(Index.getNode())->getZExtValue() |
David Greene | cfe33c4 | 2011-01-26 19:13:22 +0000 | [diff] [blame] | 3338 | <= VT.getVectorNumElements()) |
| 3339 | && "Insert subvector overflow!"); |
| 3340 | } |
| 3341 | |
| 3342 | // Trivial insertion. |
Craig Topper | 0ff1190 | 2013-08-15 02:44:19 +0000 | [diff] [blame] | 3343 | if (VT.getSimpleVT() == N2.getSimpleValueType()) |
David Greene | cfe33c4 | 2011-01-26 19:13:22 +0000 | [diff] [blame] | 3344 | return N2; |
| 3345 | } |
| 3346 | break; |
| 3347 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3348 | case ISD::BITCAST: |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 3349 | // Fold bit_convert nodes from a type to themselves. |
| 3350 | if (N1.getValueType() == VT) |
| 3351 | return N1; |
Chris Lattner | 4829b1c | 2007-04-12 05:58:43 +0000 | [diff] [blame] | 3352 | break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3353 | } |
| 3354 | |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 3355 | // Memoize node if it doesn't produce a flag. |
| 3356 | SDNode *N; |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 3357 | SDVTList VTs = getVTList(VT); |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 3358 | if (VT != MVT::Glue) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3359 | SDValue Ops[] = { N1, N2, N3 }; |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 3360 | FoldingSetNodeID ID; |
Chris Lattner | 63e3f14 | 2007-02-04 07:28:00 +0000 | [diff] [blame] | 3361 | AddNodeIDNode(ID, Opcode, VTs, Ops, 3); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 3362 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 3363 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3364 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 3365 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 3366 | N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), |
| 3367 | DL.getDebugLoc(), VTs, N1, N2, N3); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 3368 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 3369 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 3370 | N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), |
| 3371 | DL.getDebugLoc(), VTs, N1, N2, N3); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 3372 | } |
Daniel Dunbar | 819309e | 2009-12-16 20:10:05 +0000 | [diff] [blame] | 3373 | |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3374 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 3375 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 3376 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 3377 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3378 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 3379 | } |
| 3380 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3381 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 3382 | SDValue N1, SDValue N2, SDValue N3, |
| 3383 | SDValue N4) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3384 | SDValue Ops[] = { N1, N2, N3, N4 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 3385 | return getNode(Opcode, DL, VT, Ops, 4); |
Andrew Lenharth | 2d86ea2 | 2005-04-27 20:10:01 +0000 | [diff] [blame] | 3386 | } |
| 3387 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3388 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 3389 | SDValue N1, SDValue N2, SDValue N3, |
| 3390 | SDValue N4, SDValue N5) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3391 | SDValue Ops[] = { N1, N2, N3, N4, N5 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 3392 | return getNode(Opcode, DL, VT, Ops, 5); |
Chris Lattner | 9fadb4c | 2005-07-10 00:29:18 +0000 | [diff] [blame] | 3393 | } |
| 3394 | |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 3395 | /// getStackArgumentTokenFactor - Compute a TokenFactor to force all |
| 3396 | /// the incoming stack arguments to be loaded from the stack. |
| 3397 | SDValue SelectionDAG::getStackArgumentTokenFactor(SDValue Chain) { |
| 3398 | SmallVector<SDValue, 8> ArgChains; |
| 3399 | |
| 3400 | // Include the original chain at the beginning of the list. When this is |
| 3401 | // used by target LowerCall hooks, this helps legalize find the |
| 3402 | // CALLSEQ_BEGIN node. |
| 3403 | ArgChains.push_back(Chain); |
| 3404 | |
| 3405 | // Add a chain value for each stack argument. |
| 3406 | for (SDNode::use_iterator U = getEntryNode().getNode()->use_begin(), |
| 3407 | UE = getEntryNode().getNode()->use_end(); U != UE; ++U) |
| 3408 | if (LoadSDNode *L = dyn_cast<LoadSDNode>(*U)) |
| 3409 | if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(L->getBasePtr())) |
| 3410 | if (FI->getIndex() < 0) |
| 3411 | ArgChains.push_back(SDValue(L, 1)); |
| 3412 | |
| 3413 | // Build a tokenfactor for all the chains. |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3414 | return getNode(ISD::TokenFactor, SDLoc(Chain), MVT::Other, |
Dan Gohman | 98ca4f2 | 2009-08-05 01:29:28 +0000 | [diff] [blame] | 3415 | &ArgChains[0], ArgChains.size()); |
| 3416 | } |
| 3417 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3418 | /// getMemsetValue - Vectorized representation of the memset value |
| 3419 | /// operand. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3420 | static SDValue getMemsetValue(SDValue Value, EVT VT, SelectionDAG &DAG, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3421 | SDLoc dl) { |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3422 | assert(Value.getOpcode() != ISD::UNDEF); |
| 3423 | |
Chris Lattner | 5cf0b6e | 2010-02-24 22:44:06 +0000 | [diff] [blame] | 3424 | unsigned NumBits = VT.getScalarType().getSizeInBits(); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3425 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Value)) { |
Benjamin Kramer | ad4da0f | 2013-02-20 13:00:06 +0000 | [diff] [blame] | 3426 | assert(C->getAPIntValue().getBitWidth() == 8); |
| 3427 | APInt Val = APInt::getSplat(NumBits, C->getAPIntValue()); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3428 | if (VT.isInteger()) |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3429 | return DAG.getConstant(Val, VT); |
Tim Northover | 0a29cb0 | 2013-01-22 09:46:31 +0000 | [diff] [blame] | 3430 | return DAG.getConstantFP(APFloat(DAG.EVTToAPFloatSemantics(VT), Val), VT); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3431 | } |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3432 | |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 3433 | Value = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, Value); |
Benjamin Kramer | 8c06aa1 | 2011-01-02 19:44:58 +0000 | [diff] [blame] | 3434 | if (NumBits > 8) { |
| 3435 | // Use a multiplication with 0x010101... to extend the input to the |
| 3436 | // required length. |
Benjamin Kramer | ad4da0f | 2013-02-20 13:00:06 +0000 | [diff] [blame] | 3437 | APInt Magic = APInt::getSplat(NumBits, APInt(8, 0x01)); |
Benjamin Kramer | 8c06aa1 | 2011-01-02 19:44:58 +0000 | [diff] [blame] | 3438 | Value = DAG.getNode(ISD::MUL, dl, VT, Value, DAG.getConstant(Magic, VT)); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3439 | } |
| 3440 | |
| 3441 | return Value; |
Rafael Espindola | 5c0d6ed | 2007-10-19 10:41:11 +0000 | [diff] [blame] | 3442 | } |
| 3443 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3444 | /// getMemsetStringVal - Similar to getMemsetValue. Except this is only |
| 3445 | /// used when a memcpy is turned into a memset when the source is a constant |
| 3446 | /// string ptr. |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3447 | static SDValue getMemsetStringVal(EVT VT, SDLoc dl, SelectionDAG &DAG, |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3448 | const TargetLowering &TLI, StringRef Str) { |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 3449 | // Handle vector with all elements zero. |
| 3450 | if (Str.empty()) { |
| 3451 | if (VT.isInteger()) |
| 3452 | return DAG.getConstant(0, VT); |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 3453 | else if (VT == MVT::f32 || VT == MVT::f64) |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3454 | return DAG.getConstantFP(0.0, VT); |
| 3455 | else if (VT.isVector()) { |
| 3456 | unsigned NumElts = VT.getVectorNumElements(); |
| 3457 | MVT EltVT = (VT.getVectorElementType() == MVT::f32) ? MVT::i32 : MVT::i64; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3458 | return DAG.getNode(ISD::BITCAST, dl, VT, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3459 | DAG.getConstant(0, EVT::getVectorVT(*DAG.getContext(), |
| 3460 | EltVT, NumElts))); |
| 3461 | } else |
| 3462 | llvm_unreachable("Expected type!"); |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 3463 | } |
| 3464 | |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3465 | assert(!VT.isVector() && "Can't handle vector type here!"); |
Evan Cheng | 4ff23d0 | 2013-01-10 22:13:27 +0000 | [diff] [blame] | 3466 | unsigned NumVTBits = VT.getSizeInBits(); |
| 3467 | unsigned NumVTBytes = NumVTBits / 8; |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3468 | unsigned NumBytes = std::min(NumVTBytes, unsigned(Str.size())); |
| 3469 | |
Evan Cheng | 4ff23d0 | 2013-01-10 22:13:27 +0000 | [diff] [blame] | 3470 | APInt Val(NumVTBits, 0); |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3471 | if (TLI.isLittleEndian()) { |
| 3472 | for (unsigned i = 0; i != NumBytes; ++i) |
| 3473 | Val |= (uint64_t)(unsigned char)Str[i] << i*8; |
| 3474 | } else { |
| 3475 | for (unsigned i = 0; i != NumBytes; ++i) |
| 3476 | Val |= (uint64_t)(unsigned char)Str[i] << (NumVTBytes-i-1)*8; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3477 | } |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3478 | |
Evan Cheng | e07f85e | 2012-12-11 23:26:14 +0000 | [diff] [blame] | 3479 | // If the "cost" of materializing the integer immediate is 1 or free, then |
| 3480 | // it is cost effective to turn the load into the immediate. |
Chandler Carruth | e4b4edd | 2013-01-05 12:32:17 +0000 | [diff] [blame] | 3481 | const TargetTransformInfo *TTI = DAG.getTargetTransformInfo(); |
| 3482 | if (TTI->getIntImmCost(Val, VT.getTypeForEVT(*DAG.getContext())) < 2) |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3483 | return DAG.getConstant(Val, VT); |
| 3484 | return SDValue(0, 0); |
Rafael Espindola | 5c0d6ed | 2007-10-19 10:41:11 +0000 | [diff] [blame] | 3485 | } |
| 3486 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 3487 | /// getMemBasePlusOffset - Returns base and offset node for the |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3488 | /// |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3489 | static SDValue getMemBasePlusOffset(SDValue Base, unsigned Offset, SDLoc dl, |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3490 | SelectionDAG &DAG) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3491 | EVT VT = Base.getValueType(); |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3492 | return DAG.getNode(ISD::ADD, dl, |
Dale Johannesen | dbfd8db | 2009-02-03 01:55:44 +0000 | [diff] [blame] | 3493 | VT, Base, DAG.getConstant(Offset, VT)); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3494 | } |
| 3495 | |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3496 | /// isMemSrcFromString - Returns true if memcpy source is a string constant. |
| 3497 | /// |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3498 | static bool isMemSrcFromString(SDValue Src, StringRef &Str) { |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3499 | unsigned SrcDelta = 0; |
| 3500 | GlobalAddressSDNode *G = NULL; |
| 3501 | if (Src.getOpcode() == ISD::GlobalAddress) |
| 3502 | G = cast<GlobalAddressSDNode>(Src); |
| 3503 | else if (Src.getOpcode() == ISD::ADD && |
| 3504 | Src.getOperand(0).getOpcode() == ISD::GlobalAddress && |
| 3505 | Src.getOperand(1).getOpcode() == ISD::Constant) { |
| 3506 | G = cast<GlobalAddressSDNode>(Src.getOperand(0)); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 3507 | SrcDelta = cast<ConstantSDNode>(Src.getOperand(1))->getZExtValue(); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3508 | } |
| 3509 | if (!G) |
| 3510 | return false; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3511 | |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3512 | return getConstantStringInfo(G->getGlobal(), Str, SrcDelta, false); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3513 | } |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3514 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3515 | /// FindOptimalMemOpLowering - Determines the optimial series memory ops |
| 3516 | /// to replace the memset / memcpy. Return true if the number of memory ops |
| 3517 | /// is below the threshold. It returns the types of the sequence of |
| 3518 | /// memory ops to perform memset / memcpy by reference. |
| 3519 | static bool FindOptimalMemOpLowering(std::vector<EVT> &MemOps, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3520 | unsigned Limit, uint64_t Size, |
| 3521 | unsigned DstAlign, unsigned SrcAlign, |
Evan Cheng | 946a3a9 | 2012-12-12 02:34:41 +0000 | [diff] [blame] | 3522 | bool IsMemset, |
| 3523 | bool ZeroMemset, |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 3524 | bool MemcpyStrSrc, |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3525 | bool AllowOverlap, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3526 | SelectionDAG &DAG, |
| 3527 | const TargetLowering &TLI) { |
| 3528 | assert((SrcAlign == 0 || SrcAlign >= DstAlign) && |
| 3529 | "Expecting memcpy / memset source to meet alignment requirement!"); |
Eric Christopher | 882e1e1 | 2011-07-06 22:41:18 +0000 | [diff] [blame] | 3530 | // If 'SrcAlign' is zero, that means the memory operation does not need to |
| 3531 | // load the value, i.e. memset or memcpy from constant string. Otherwise, |
| 3532 | // it's the inferred alignment of the source. 'DstAlign', on the other hand, |
| 3533 | // is the specified alignment of the memory operation. If it is zero, that |
| 3534 | // means it's possible to change the alignment of the destination. |
| 3535 | // 'MemcpyStrSrc' indicates whether the memcpy source is constant so it does |
| 3536 | // not need to be loaded. |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3537 | EVT VT = TLI.getOptimalMemOpType(Size, DstAlign, SrcAlign, |
Evan Cheng | 946a3a9 | 2012-12-12 02:34:41 +0000 | [diff] [blame] | 3538 | IsMemset, ZeroMemset, MemcpyStrSrc, |
Dan Gohman | 4bcf0a9 | 2010-04-16 20:22:43 +0000 | [diff] [blame] | 3539 | DAG.getMachineFunction()); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3540 | |
Chris Lattner | acee647 | 2010-03-07 07:45:08 +0000 | [diff] [blame] | 3541 | if (VT == MVT::Other) { |
Chandler Carruth | 426c2bf | 2012-11-01 09:14:31 +0000 | [diff] [blame] | 3542 | if (DstAlign >= TLI.getDataLayout()->getPointerPrefAlignment() || |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3543 | TLI.allowsUnalignedMemoryAccesses(VT)) { |
Evan Cheng | 18141ee | 2010-04-05 23:33:29 +0000 | [diff] [blame] | 3544 | VT = TLI.getPointerTy(); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3545 | } else { |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3546 | switch (DstAlign & 7) { |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3547 | case 0: VT = MVT::i64; break; |
| 3548 | case 4: VT = MVT::i32; break; |
| 3549 | case 2: VT = MVT::i16; break; |
| 3550 | default: VT = MVT::i8; break; |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3551 | } |
| 3552 | } |
| 3553 | |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 3554 | MVT LVT = MVT::i64; |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3555 | while (!TLI.isTypeLegal(LVT)) |
Owen Anderson | 766b5ef | 2009-08-11 21:59:30 +0000 | [diff] [blame] | 3556 | LVT = (MVT::SimpleValueType)(LVT.SimpleTy - 1); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3557 | assert(LVT.isInteger()); |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3558 | |
Duncan Sands | 8e4eb09 | 2008-06-08 20:54:56 +0000 | [diff] [blame] | 3559 | if (VT.bitsGT(LVT)) |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3560 | VT = LVT; |
| 3561 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3562 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3563 | unsigned NumMemOps = 0; |
| 3564 | while (Size != 0) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3565 | unsigned VTSize = VT.getSizeInBits() / 8; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3566 | while (VTSize > Size) { |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3567 | // For now, only use non-vector load / store's for the left-over pieces. |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3568 | EVT NewVT = VT; |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3569 | unsigned NewVTSize; |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3570 | |
| 3571 | bool Found = false; |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3572 | if (VT.isVector() || VT.isFloatingPoint()) { |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3573 | NewVT = (VT.getSizeInBits() > 64) ? MVT::i64 : MVT::i32; |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3574 | if (TLI.isOperationLegalOrCustom(ISD::STORE, NewVT) && |
Evan Cheng | 7d34267 | 2012-12-12 01:32:07 +0000 | [diff] [blame] | 3575 | TLI.isSafeMemOpType(NewVT.getSimpleVT())) |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3576 | Found = true; |
| 3577 | else if (NewVT == MVT::i64 && |
| 3578 | TLI.isOperationLegalOrCustom(ISD::STORE, MVT::f64) && |
Evan Cheng | 7d34267 | 2012-12-12 01:32:07 +0000 | [diff] [blame] | 3579 | TLI.isSafeMemOpType(MVT::f64)) { |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3580 | // i64 is usually not legal on 32-bit targets, but f64 may be. |
| 3581 | NewVT = MVT::f64; |
| 3582 | Found = true; |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3583 | } |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3584 | } |
| 3585 | |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3586 | if (!Found) { |
| 3587 | do { |
| 3588 | NewVT = (MVT::SimpleValueType)(NewVT.getSimpleVT().SimpleTy - 1); |
| 3589 | if (NewVT == MVT::i8) |
| 3590 | break; |
Evan Cheng | 7d34267 | 2012-12-12 01:32:07 +0000 | [diff] [blame] | 3591 | } while (!TLI.isSafeMemOpType(NewVT.getSimpleVT())); |
Evan Cheng | 61f4dfe | 2012-12-12 00:42:09 +0000 | [diff] [blame] | 3592 | } |
| 3593 | NewVTSize = NewVT.getSizeInBits() / 8; |
| 3594 | |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3595 | // If the new VT cannot cover all of the remaining bits, then consider |
| 3596 | // issuing a (or a pair of) unaligned and overlapping load / store. |
| 3597 | // FIXME: Only does this for 64-bit or more since we don't have proper |
| 3598 | // cost model for unaligned load / store. |
| 3599 | bool Fast; |
Evan Cheng | a16e49d | 2012-12-12 20:43:23 +0000 | [diff] [blame] | 3600 | if (NumMemOps && AllowOverlap && |
| 3601 | VTSize >= 8 && NewVTSize < Size && |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3602 | TLI.allowsUnalignedMemoryAccesses(VT, &Fast) && Fast) |
| 3603 | VTSize = Size; |
| 3604 | else { |
| 3605 | VT = NewVT; |
| 3606 | VTSize = NewVTSize; |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3607 | } |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3608 | } |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3609 | |
Evan Cheng | a16e49d | 2012-12-12 20:43:23 +0000 | [diff] [blame] | 3610 | if (++NumMemOps > Limit) |
| 3611 | return false; |
| 3612 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3613 | MemOps.push_back(VT); |
| 3614 | Size -= VTSize; |
| 3615 | } |
| 3616 | |
| 3617 | return true; |
| 3618 | } |
| 3619 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3620 | static SDValue getMemcpyLoadsAndStores(SelectionDAG &DAG, SDLoc dl, |
Evan Cheng | 87bd191 | 2010-03-30 18:08:53 +0000 | [diff] [blame] | 3621 | SDValue Chain, SDValue Dst, |
| 3622 | SDValue Src, uint64_t Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3623 | unsigned Align, bool isVol, |
| 3624 | bool AlwaysInline, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3625 | MachinePointerInfo DstPtrInfo, |
| 3626 | MachinePointerInfo SrcPtrInfo) { |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3627 | // Turn a memcpy of undef to nop. |
| 3628 | if (Src.getOpcode() == ISD::UNDEF) |
| 3629 | return Chain; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3630 | |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3631 | // Expand memcpy to a series of load and store ops if the size operand falls |
| 3632 | // below a certain threshold. |
Duncan Sands | 69300a2 | 2010-11-05 15:20:29 +0000 | [diff] [blame] | 3633 | // TODO: In the AlwaysInline case, if the size is big then generate a loop |
| 3634 | // rather than maybe a humongous number of loads and stores. |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3635 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3636 | std::vector<EVT> MemOps; |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3637 | bool DstAlignCanChange = false; |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3638 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3639 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Bill Wendling | 6765834 | 2012-10-09 07:45:08 +0000 | [diff] [blame] | 3640 | bool OptSize = |
Bill Wendling | 831737d | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 3641 | MF.getFunction()->getAttributes(). |
| 3642 | hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3643 | FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); |
| 3644 | if (FI && !MFI->isFixedObjectIndex(FI->getIndex())) |
| 3645 | DstAlignCanChange = true; |
| 3646 | unsigned SrcAlign = DAG.InferPtrAlignment(Src); |
| 3647 | if (Align > SrcAlign) |
| 3648 | SrcAlign = Align; |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3649 | StringRef Str; |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3650 | bool CopyFromStr = isMemSrcFromString(Src, Str); |
| 3651 | bool isZeroStr = CopyFromStr && Str.empty(); |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3652 | unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemcpy(OptSize); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 3653 | |
Evan Cheng | 94107ba | 2010-04-01 18:19:11 +0000 | [diff] [blame] | 3654 | if (!FindOptimalMemOpLowering(MemOps, Limit, Size, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3655 | (DstAlignCanChange ? 0 : Align), |
Evan Cheng | c3b0c34 | 2010-04-08 07:37:57 +0000 | [diff] [blame] | 3656 | (isZeroStr ? 0 : SrcAlign), |
Evan Cheng | 946a3a9 | 2012-12-12 02:34:41 +0000 | [diff] [blame] | 3657 | false, false, CopyFromStr, true, DAG, TLI)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3658 | return SDValue(); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3659 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3660 | if (DstAlignCanChange) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3661 | Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 3662 | unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty); |
Lang Hames | 2d95e43 | 2013-01-31 20:23:43 +0000 | [diff] [blame] | 3663 | |
| 3664 | // Don't promote to an alignment that would require dynamic stack |
Stephen Lin | 155615d | 2013-07-08 00:37:03 +0000 | [diff] [blame] | 3665 | // realignment. |
Lang Hames | 2d95e43 | 2013-01-31 20:23:43 +0000 | [diff] [blame] | 3666 | const TargetRegisterInfo *TRI = MF.getTarget().getRegisterInfo(); |
| 3667 | if (!TRI->needsStackRealignment(MF)) |
| 3668 | while (NewAlign > Align && |
| 3669 | TLI.getDataLayout()->exceedsNaturalStackAlignment(NewAlign)) |
| 3670 | NewAlign /= 2; |
| 3671 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3672 | if (NewAlign > Align) { |
| 3673 | // Give the stack frame object a larger alignment if needed. |
| 3674 | if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign) |
| 3675 | MFI->setObjectAlignment(FI->getIndex(), NewAlign); |
| 3676 | Align = NewAlign; |
| 3677 | } |
| 3678 | } |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3679 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3680 | SmallVector<SDValue, 8> OutChains; |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3681 | unsigned NumMemOps = MemOps.size(); |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 3682 | uint64_t SrcOff = 0, DstOff = 0; |
Chris Lattner | 7453f8a | 2009-09-20 17:32:21 +0000 | [diff] [blame] | 3683 | for (unsigned i = 0; i != NumMemOps; ++i) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3684 | EVT VT = MemOps[i]; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3685 | unsigned VTSize = VT.getSizeInBits() / 8; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3686 | SDValue Value, Store; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3687 | |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3688 | if (VTSize > Size) { |
| 3689 | // Issuing an unaligned load / store pair that overlaps with the previous |
| 3690 | // pair. Adjust the offset accordingly. |
| 3691 | assert(i == NumMemOps-1 && i != 0); |
| 3692 | SrcOff -= VTSize - Size; |
| 3693 | DstOff -= VTSize - Size; |
| 3694 | } |
| 3695 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3696 | if (CopyFromStr && |
| 3697 | (isZeroStr || (VT.isInteger() && !VT.isVector()))) { |
Evan Cheng | f0df031 | 2008-05-15 08:39:06 +0000 | [diff] [blame] | 3698 | // It's unlikely a store of a vector immediate can be done in a single |
| 3699 | // instruction. It would require a load from a constantpool first. |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3700 | // We only handle zero vectors here. |
Evan Cheng | 0ff39b3 | 2008-06-30 07:31:25 +0000 | [diff] [blame] | 3701 | // FIXME: Handle other cases where store of vector immediate is done in |
| 3702 | // a single instruction. |
Chris Lattner | 18c7f80 | 2012-02-05 02:29:43 +0000 | [diff] [blame] | 3703 | Value = getMemsetStringVal(VT, dl, DAG, TLI, Str.substr(SrcOff)); |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3704 | if (Value.getNode()) |
| 3705 | Store = DAG.getStore(Chain, dl, Value, |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3706 | getMemBasePlusOffset(Dst, DstOff, dl, DAG), |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3707 | DstPtrInfo.getWithOffset(DstOff), isVol, |
| 3708 | false, Align); |
| 3709 | } |
| 3710 | |
| 3711 | if (!Store.getNode()) { |
Dale Johannesen | 08bc98e | 2009-06-22 20:59:07 +0000 | [diff] [blame] | 3712 | // The type might not be legal for the target. This should only happen |
| 3713 | // if the type is smaller than a legal type, as on PPC, so the right |
Dale Johannesen | 8539cfd | 2009-06-24 17:11:31 +0000 | [diff] [blame] | 3714 | // thing to do is generate a LoadExt/StoreTrunc pair. These simplify |
| 3715 | // to Load/Store if NVT==VT. |
Dale Johannesen | 08bc98e | 2009-06-22 20:59:07 +0000 | [diff] [blame] | 3716 | // FIXME does the case above also need this? |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 3717 | EVT NVT = TLI.getTypeToTransformTo(*DAG.getContext(), VT); |
Dale Johannesen | 8539cfd | 2009-06-24 17:11:31 +0000 | [diff] [blame] | 3718 | assert(NVT.bitsGE(VT)); |
Stuart Hastings | a901129 | 2011-02-16 16:23:55 +0000 | [diff] [blame] | 3719 | Value = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Chain, |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3720 | getMemBasePlusOffset(Src, SrcOff, dl, DAG), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3721 | SrcPtrInfo.getWithOffset(SrcOff), VT, isVol, false, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3722 | MinAlign(SrcAlign, SrcOff)); |
Dale Johannesen | 8539cfd | 2009-06-24 17:11:31 +0000 | [diff] [blame] | 3723 | Store = DAG.getTruncStore(Chain, dl, Value, |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3724 | getMemBasePlusOffset(Dst, DstOff, dl, DAG), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3725 | DstPtrInfo.getWithOffset(DstOff), VT, isVol, |
| 3726 | false, Align); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3727 | } |
| 3728 | OutChains.push_back(Store); |
| 3729 | SrcOff += VTSize; |
| 3730 | DstOff += VTSize; |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3731 | Size -= VTSize; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3732 | } |
| 3733 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3734 | return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3735 | &OutChains[0], OutChains.size()); |
| 3736 | } |
| 3737 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3738 | static SDValue getMemmoveLoadsAndStores(SelectionDAG &DAG, SDLoc dl, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3739 | SDValue Chain, SDValue Dst, |
| 3740 | SDValue Src, uint64_t Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3741 | unsigned Align, bool isVol, |
| 3742 | bool AlwaysInline, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3743 | MachinePointerInfo DstPtrInfo, |
| 3744 | MachinePointerInfo SrcPtrInfo) { |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3745 | // Turn a memmove of undef to nop. |
| 3746 | if (Src.getOpcode() == ISD::UNDEF) |
| 3747 | return Chain; |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3748 | |
| 3749 | // Expand memmove to a series of load and store ops if the size operand falls |
| 3750 | // below a certain threshold. |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3751 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3752 | std::vector<EVT> MemOps; |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3753 | bool DstAlignCanChange = false; |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3754 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3755 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Bill Wendling | 831737d | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 3756 | bool OptSize = MF.getFunction()->getAttributes(). |
| 3757 | hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3758 | FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); |
| 3759 | if (FI && !MFI->isFixedObjectIndex(FI->getIndex())) |
| 3760 | DstAlignCanChange = true; |
| 3761 | unsigned SrcAlign = DAG.InferPtrAlignment(Src); |
| 3762 | if (Align > SrcAlign) |
| 3763 | SrcAlign = Align; |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3764 | unsigned Limit = AlwaysInline ? ~0U : TLI.getMaxStoresPerMemmove(OptSize); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3765 | |
Evan Cheng | 94107ba | 2010-04-01 18:19:11 +0000 | [diff] [blame] | 3766 | if (!FindOptimalMemOpLowering(MemOps, Limit, Size, |
Evan Cheng | 946a3a9 | 2012-12-12 02:34:41 +0000 | [diff] [blame] | 3767 | (DstAlignCanChange ? 0 : Align), SrcAlign, |
| 3768 | false, false, false, false, DAG, TLI)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3769 | return SDValue(); |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3770 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3771 | if (DstAlignCanChange) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3772 | Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 3773 | unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3774 | if (NewAlign > Align) { |
| 3775 | // Give the stack frame object a larger alignment if needed. |
| 3776 | if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign) |
| 3777 | MFI->setObjectAlignment(FI->getIndex(), NewAlign); |
| 3778 | Align = NewAlign; |
| 3779 | } |
| 3780 | } |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3781 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3782 | uint64_t SrcOff = 0, DstOff = 0; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3783 | SmallVector<SDValue, 8> LoadValues; |
| 3784 | SmallVector<SDValue, 8> LoadChains; |
| 3785 | SmallVector<SDValue, 8> OutChains; |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3786 | unsigned NumMemOps = MemOps.size(); |
| 3787 | for (unsigned i = 0; i < NumMemOps; i++) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3788 | EVT VT = MemOps[i]; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3789 | unsigned VTSize = VT.getSizeInBits() / 8; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3790 | SDValue Value, Store; |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3791 | |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 3792 | Value = DAG.getLoad(VT, dl, Chain, |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3793 | getMemBasePlusOffset(Src, SrcOff, dl, DAG), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3794 | SrcPtrInfo.getWithOffset(SrcOff), isVol, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 3795 | false, false, SrcAlign); |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3796 | LoadValues.push_back(Value); |
| 3797 | LoadChains.push_back(Value.getValue(1)); |
| 3798 | SrcOff += VTSize; |
| 3799 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3800 | Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3801 | &LoadChains[0], LoadChains.size()); |
| 3802 | OutChains.clear(); |
| 3803 | for (unsigned i = 0; i < NumMemOps; i++) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3804 | EVT VT = MemOps[i]; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 3805 | unsigned VTSize = VT.getSizeInBits() / 8; |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3806 | SDValue Value, Store; |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3807 | |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 3808 | Store = DAG.getStore(Chain, dl, LoadValues[i], |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3809 | getMemBasePlusOffset(Dst, DstOff, dl, DAG), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3810 | DstPtrInfo.getWithOffset(DstOff), isVol, false, Align); |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3811 | OutChains.push_back(Store); |
| 3812 | DstOff += VTSize; |
| 3813 | } |
| 3814 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3815 | return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3816 | &OutChains[0], OutChains.size()); |
| 3817 | } |
| 3818 | |
Serge Pavlov | 496f024 | 2013-09-17 16:24:42 +0000 | [diff] [blame] | 3819 | /// \brief Lower the call to 'memset' intrinsic function into a series of store |
| 3820 | /// operations. |
| 3821 | /// |
| 3822 | /// \param DAG Selection DAG where lowered code is placed. |
| 3823 | /// \param dl Link to corresponding IR location. |
| 3824 | /// \param Chain Control flow dependency. |
| 3825 | /// \param Dst Pointer to destination memory location. |
| 3826 | /// \param Src Value of byte to write into the memory. |
| 3827 | /// \param Size Number of bytes to write. |
| 3828 | /// \param Align Alignment of the destination in bytes. |
| 3829 | /// \param isVol True if destination is volatile. |
| 3830 | /// \param DstPtrInfo IR information on the memory pointer. |
| 3831 | /// \returns New head in the control flow, if lowering was successful, empty |
| 3832 | /// SDValue otherwise. |
| 3833 | /// |
| 3834 | /// The function tries to replace 'llvm.memset' intrinsic with several store |
| 3835 | /// operations and value calculation code. This is usually profitable for small |
| 3836 | /// memory size. |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3837 | static SDValue getMemsetStores(SelectionDAG &DAG, SDLoc dl, |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3838 | SDValue Chain, SDValue Dst, |
| 3839 | SDValue Src, uint64_t Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3840 | unsigned Align, bool isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3841 | MachinePointerInfo DstPtrInfo) { |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3842 | // Turn a memset of undef to nop. |
| 3843 | if (Src.getOpcode() == ISD::UNDEF) |
| 3844 | return Chain; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3845 | |
| 3846 | // Expand memset to a series of load/store ops if the size operand |
| 3847 | // falls below a certain threshold. |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3848 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3849 | std::vector<EVT> MemOps; |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3850 | bool DstAlignCanChange = false; |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3851 | MachineFunction &MF = DAG.getMachineFunction(); |
| 3852 | MachineFrameInfo *MFI = MF.getFrameInfo(); |
Bill Wendling | 831737d | 2012-12-30 10:32:01 +0000 | [diff] [blame] | 3853 | bool OptSize = MF.getFunction()->getAttributes(). |
| 3854 | hasAttribute(AttributeSet::FunctionIndex, Attribute::OptimizeForSize); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3855 | FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Dst); |
| 3856 | if (FI && !MFI->isFixedObjectIndex(FI->getIndex())) |
| 3857 | DstAlignCanChange = true; |
Lang Hames | 15701f8 | 2011-10-26 23:50:43 +0000 | [diff] [blame] | 3858 | bool IsZeroVal = |
Evan Cheng | f28f8bc | 2010-04-02 19:36:14 +0000 | [diff] [blame] | 3859 | isa<ConstantSDNode>(Src) && cast<ConstantSDNode>(Src)->isNullValue(); |
Evan Cheng | 0521928 | 2011-01-06 06:52:41 +0000 | [diff] [blame] | 3860 | if (!FindOptimalMemOpLowering(MemOps, TLI.getMaxStoresPerMemset(OptSize), |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3861 | Size, (DstAlignCanChange ? 0 : Align), 0, |
Evan Cheng | 946a3a9 | 2012-12-12 02:34:41 +0000 | [diff] [blame] | 3862 | true, IsZeroVal, false, true, DAG, TLI)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3863 | return SDValue(); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3864 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3865 | if (DstAlignCanChange) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 3866 | Type *Ty = MemOps[0].getTypeForEVT(*DAG.getContext()); |
Micah Villmow | 3574eca | 2012-10-08 16:38:25 +0000 | [diff] [blame] | 3867 | unsigned NewAlign = (unsigned) TLI.getDataLayout()->getABITypeAlignment(Ty); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3868 | if (NewAlign > Align) { |
| 3869 | // Give the stack frame object a larger alignment if needed. |
| 3870 | if (MFI->getObjectAlignment(FI->getIndex()) < NewAlign) |
| 3871 | MFI->setObjectAlignment(FI->getIndex(), NewAlign); |
| 3872 | Align = NewAlign; |
| 3873 | } |
| 3874 | } |
| 3875 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3876 | SmallVector<SDValue, 8> OutChains; |
Dan Gohman | 1f13c68 | 2008-04-28 17:15:20 +0000 | [diff] [blame] | 3877 | uint64_t DstOff = 0; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3878 | unsigned NumMemOps = MemOps.size(); |
Benjamin Kramer | 8022036 | 2011-01-02 19:57:05 +0000 | [diff] [blame] | 3879 | |
| 3880 | // Find the largest store and generate the bit pattern for it. |
| 3881 | EVT LargestVT = MemOps[0]; |
| 3882 | for (unsigned i = 1; i < NumMemOps; i++) |
| 3883 | if (MemOps[i].bitsGT(LargestVT)) |
| 3884 | LargestVT = MemOps[i]; |
| 3885 | SDValue MemSetValue = getMemsetValue(Src, LargestVT, DAG, dl); |
| 3886 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3887 | for (unsigned i = 0; i < NumMemOps; i++) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 3888 | EVT VT = MemOps[i]; |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3889 | unsigned VTSize = VT.getSizeInBits() / 8; |
| 3890 | if (VTSize > Size) { |
| 3891 | // Issuing an unaligned load / store pair that overlaps with the previous |
| 3892 | // pair. Adjust the offset accordingly. |
| 3893 | assert(i == NumMemOps-1 && i != 0); |
| 3894 | DstOff -= VTSize - Size; |
| 3895 | } |
Benjamin Kramer | 8022036 | 2011-01-02 19:57:05 +0000 | [diff] [blame] | 3896 | |
| 3897 | // If this store is smaller than the largest store see whether we can get |
| 3898 | // the smaller value for free with a truncate. |
| 3899 | SDValue Value = MemSetValue; |
| 3900 | if (VT.bitsLT(LargestVT)) { |
| 3901 | if (!LargestVT.isVector() && !VT.isVector() && |
| 3902 | TLI.isTruncateFree(LargestVT, VT)) |
| 3903 | Value = DAG.getNode(ISD::TRUNCATE, dl, VT, MemSetValue); |
| 3904 | else |
| 3905 | Value = getMemsetValue(Src, VT, DAG, dl); |
| 3906 | } |
| 3907 | assert(Value.getValueType() == VT && "Value with wrong type."); |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 3908 | SDValue Store = DAG.getStore(Chain, dl, Value, |
Andrew Trick | dd0fb01 | 2013-05-25 03:08:10 +0000 | [diff] [blame] | 3909 | getMemBasePlusOffset(Dst, DstOff, dl, DAG), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3910 | DstPtrInfo.getWithOffset(DstOff), |
Dale Johannesen | b4ac285 | 2010-11-18 01:35:23 +0000 | [diff] [blame] | 3911 | isVol, false, Align); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3912 | OutChains.push_back(Store); |
Benjamin Kramer | 8022036 | 2011-01-02 19:57:05 +0000 | [diff] [blame] | 3913 | DstOff += VT.getSizeInBits() / 8; |
Evan Cheng | 376642e | 2012-12-10 23:21:26 +0000 | [diff] [blame] | 3914 | Size -= VTSize; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3915 | } |
| 3916 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 3917 | return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3918 | &OutChains[0], OutChains.size()); |
| 3919 | } |
| 3920 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3921 | SDValue SelectionDAG::getMemcpy(SDValue Chain, SDLoc dl, SDValue Dst, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3922 | SDValue Src, SDValue Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3923 | unsigned Align, bool isVol, bool AlwaysInline, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3924 | MachinePointerInfo DstPtrInfo, |
| 3925 | MachinePointerInfo SrcPtrInfo) { |
Chandler Carruth | 7e6ffac | 2013-02-25 14:29:38 +0000 | [diff] [blame] | 3926 | assert(Align && "The SDAG layer expects explicit alignment and reserves 0"); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3927 | |
| 3928 | // Check to see if we should lower the memcpy to loads and stores first. |
| 3929 | // For cases within the target-specified limits, this is the best choice. |
| 3930 | ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); |
| 3931 | if (ConstantSize) { |
| 3932 | // Memcpy with size zero? Just return the original chain. |
| 3933 | if (ConstantSize->isNullValue()) |
| 3934 | return Chain; |
| 3935 | |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 3936 | SDValue Result = getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src, |
| 3937 | ConstantSize->getZExtValue(),Align, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3938 | isVol, false, DstPtrInfo, SrcPtrInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3939 | if (Result.getNode()) |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3940 | return Result; |
| 3941 | } |
| 3942 | |
| 3943 | // Then check to see if we should lower the memcpy with target-specific |
| 3944 | // code. If the target chooses to do this, this is the next best. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3945 | SDValue Result = |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 3946 | TSI.EmitTargetCodeForMemcpy(*this, dl, Chain, Dst, Src, Size, Align, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3947 | isVol, AlwaysInline, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3948 | DstPtrInfo, SrcPtrInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 3949 | if (Result.getNode()) |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3950 | return Result; |
| 3951 | |
| 3952 | // If we really need inline code and the target declined to provide it, |
| 3953 | // use a (potentially long) sequence of loads and stores. |
| 3954 | if (AlwaysInline) { |
| 3955 | assert(ConstantSize && "AlwaysInline requires a constant size!"); |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 3956 | return getMemcpyLoadsAndStores(*this, dl, Chain, Dst, Src, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3957 | ConstantSize->getZExtValue(), Align, isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3958 | true, DstPtrInfo, SrcPtrInfo); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3959 | } |
| 3960 | |
Dan Gohman | 7b55d36 | 2010-04-05 20:24:08 +0000 | [diff] [blame] | 3961 | // FIXME: If the memcpy is volatile (isVol), lowering it to a plain libc |
| 3962 | // memcpy is not guaranteed to be safe. libc memcpys aren't required to |
| 3963 | // respect volatile, so they may do things like read or write memory |
| 3964 | // beyond the given memory regions. But fixing this isn't easy, and most |
| 3965 | // people don't care. |
| 3966 | |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 3967 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 3968 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3969 | // Emit a library call. |
| 3970 | TargetLowering::ArgListTy Args; |
| 3971 | TargetLowering::ArgListEntry Entry; |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 3972 | Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext()); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3973 | Entry.Node = Dst; Args.push_back(Entry); |
| 3974 | Entry.Node = Src; Args.push_back(Entry); |
| 3975 | Entry.Node = Size; Args.push_back(Entry); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3976 | // FIXME: pass in SDLoc |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 3977 | TargetLowering:: |
| 3978 | CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()), |
Anton Korobeynikov | 72977a4 | 2009-08-14 20:10:52 +0000 | [diff] [blame] | 3979 | false, false, false, false, 0, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 3980 | TLI->getLibcallCallingConv(RTLIB::MEMCPY), |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 3981 | /*isTailCall=*/false, |
| 3982 | /*doesNotReturn=*/false, /*isReturnValueUsed=*/false, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 3983 | getExternalSymbol(TLI->getLibcallName(RTLIB::MEMCPY), |
| 3984 | TLI->getPointerTy()), |
Bill Wendling | 46ada19 | 2010-03-02 01:55:18 +0000 | [diff] [blame] | 3985 | Args, *this, dl); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 3986 | std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 3987 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3988 | return CallResult.second; |
| 3989 | } |
| 3990 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 3991 | SDValue SelectionDAG::getMemmove(SDValue Chain, SDLoc dl, SDValue Dst, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 3992 | SDValue Src, SDValue Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 3993 | unsigned Align, bool isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 3994 | MachinePointerInfo DstPtrInfo, |
| 3995 | MachinePointerInfo SrcPtrInfo) { |
Chandler Carruth | 7e6ffac | 2013-02-25 14:29:38 +0000 | [diff] [blame] | 3996 | assert(Align && "The SDAG layer expects explicit alignment and reserves 0"); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 3997 | |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 3998 | // Check to see if we should lower the memmove to loads and stores first. |
| 3999 | // For cases within the target-specified limits, this is the best choice. |
| 4000 | ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); |
| 4001 | if (ConstantSize) { |
| 4002 | // Memmove with size zero? Just return the original chain. |
| 4003 | if (ConstantSize->isNullValue()) |
| 4004 | return Chain; |
| 4005 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4006 | SDValue Result = |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 4007 | getMemmoveLoadsAndStores(*this, dl, Chain, Dst, Src, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 4008 | ConstantSize->getZExtValue(), Align, isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4009 | false, DstPtrInfo, SrcPtrInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4010 | if (Result.getNode()) |
Dan Gohman | 21323f3 | 2008-05-29 19:42:22 +0000 | [diff] [blame] | 4011 | return Result; |
| 4012 | } |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4013 | |
| 4014 | // Then check to see if we should lower the memmove with target-specific |
| 4015 | // code. If the target chooses to do this, this is the next best. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4016 | SDValue Result = |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 4017 | TSI.EmitTargetCodeForMemmove(*this, dl, Chain, Dst, Src, Size, Align, isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4018 | DstPtrInfo, SrcPtrInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4019 | if (Result.getNode()) |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4020 | return Result; |
| 4021 | |
Mon P Wang | 01f0e85 | 2010-04-06 08:27:51 +0000 | [diff] [blame] | 4022 | // FIXME: If the memmove is volatile, lowering it to plain libc memmove may |
| 4023 | // not be safe. See memcpy above for more details. |
| 4024 | |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4025 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 4026 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4027 | // Emit a library call. |
| 4028 | TargetLowering::ArgListTy Args; |
| 4029 | TargetLowering::ArgListEntry Entry; |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4030 | Entry.Ty = TLI->getDataLayout()->getIntPtrType(*getContext()); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4031 | Entry.Node = Dst; Args.push_back(Entry); |
| 4032 | Entry.Node = Src; Args.push_back(Entry); |
| 4033 | Entry.Node = Size; Args.push_back(Entry); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4034 | // FIXME: pass in SDLoc |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 4035 | TargetLowering:: |
| 4036 | CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()), |
Anton Korobeynikov | 72977a4 | 2009-08-14 20:10:52 +0000 | [diff] [blame] | 4037 | false, false, false, false, 0, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4038 | TLI->getLibcallCallingConv(RTLIB::MEMMOVE), |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 4039 | /*isTailCall=*/false, |
| 4040 | /*doesNotReturn=*/false, /*isReturnValueUsed=*/false, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4041 | getExternalSymbol(TLI->getLibcallName(RTLIB::MEMMOVE), |
| 4042 | TLI->getPointerTy()), |
Bill Wendling | 46ada19 | 2010-03-02 01:55:18 +0000 | [diff] [blame] | 4043 | Args, *this, dl); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4044 | std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 4045 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4046 | return CallResult.second; |
| 4047 | } |
| 4048 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4049 | SDValue SelectionDAG::getMemset(SDValue Chain, SDLoc dl, SDValue Dst, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4050 | SDValue Src, SDValue Size, |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 4051 | unsigned Align, bool isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4052 | MachinePointerInfo DstPtrInfo) { |
Chandler Carruth | 7e6ffac | 2013-02-25 14:29:38 +0000 | [diff] [blame] | 4053 | assert(Align && "The SDAG layer expects explicit alignment and reserves 0"); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4054 | |
| 4055 | // Check to see if we should lower the memset to stores first. |
| 4056 | // For cases within the target-specified limits, this is the best choice. |
| 4057 | ConstantSDNode *ConstantSize = dyn_cast<ConstantSDNode>(Size); |
| 4058 | if (ConstantSize) { |
| 4059 | // Memset with size zero? Just return the original chain. |
| 4060 | if (ConstantSize->isNullValue()) |
| 4061 | return Chain; |
| 4062 | |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 4063 | SDValue Result = |
| 4064 | getMemsetStores(*this, dl, Chain, Dst, Src, ConstantSize->getZExtValue(), |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4065 | Align, isVol, DstPtrInfo); |
Mon P Wang | 20adc9d | 2010-04-04 03:10:48 +0000 | [diff] [blame] | 4066 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4067 | if (Result.getNode()) |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4068 | return Result; |
| 4069 | } |
| 4070 | |
| 4071 | // Then check to see if we should lower the memset with target-specific |
| 4072 | // code. If the target chooses to do this, this is the next best. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4073 | SDValue Result = |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 4074 | TSI.EmitTargetCodeForMemset(*this, dl, Chain, Dst, Src, Size, Align, isVol, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4075 | DstPtrInfo); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 4076 | if (Result.getNode()) |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4077 | return Result; |
| 4078 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4079 | // Emit a library call. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4080 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 4081 | Type *IntPtrTy = TLI->getDataLayout()->getIntPtrType(*getContext()); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4082 | TargetLowering::ArgListTy Args; |
| 4083 | TargetLowering::ArgListEntry Entry; |
| 4084 | Entry.Node = Dst; Entry.Ty = IntPtrTy; |
| 4085 | Args.push_back(Entry); |
| 4086 | // Extend or truncate the argument to be an i32 value for the call. |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4087 | if (Src.getValueType().bitsGT(MVT::i32)) |
| 4088 | Src = getNode(ISD::TRUNCATE, dl, MVT::i32, Src); |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4089 | else |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4090 | Src = getNode(ISD::ZERO_EXTEND, dl, MVT::i32, Src); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4091 | Entry.Node = Src; |
| 4092 | Entry.Ty = Type::getInt32Ty(*getContext()); |
| 4093 | Entry.isSExt = true; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4094 | Args.push_back(Entry); |
Owen Anderson | 1d0be15 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 4095 | Entry.Node = Size; |
| 4096 | Entry.Ty = IntPtrTy; |
| 4097 | Entry.isSExt = false; |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4098 | Args.push_back(Entry); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4099 | // FIXME: pass in SDLoc |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 4100 | TargetLowering:: |
| 4101 | CallLoweringInfo CLI(Chain, Type::getVoidTy(*getContext()), |
Anton Korobeynikov | 72977a4 | 2009-08-14 20:10:52 +0000 | [diff] [blame] | 4102 | false, false, false, false, 0, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4103 | TLI->getLibcallCallingConv(RTLIB::MEMSET), |
Evan Cheng | 4bfcd4a | 2012-02-28 18:51:51 +0000 | [diff] [blame] | 4104 | /*isTailCall=*/false, |
| 4105 | /*doesNotReturn*/false, /*isReturnValueUsed=*/false, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4106 | getExternalSymbol(TLI->getLibcallName(RTLIB::MEMSET), |
| 4107 | TLI->getPointerTy()), |
Bill Wendling | 46ada19 | 2010-03-02 01:55:18 +0000 | [diff] [blame] | 4108 | Args, *this, dl); |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 4109 | std::pair<SDValue,SDValue> CallResult = TLI->LowerCallTo(CLI); |
Justin Holewinski | d2ea0e1 | 2012-05-25 16:35:28 +0000 | [diff] [blame] | 4110 | |
Dan Gohman | 707e018 | 2008-04-12 04:36:06 +0000 | [diff] [blame] | 4111 | return CallResult.second; |
Rafael Espindola | 5c0d6ed | 2007-10-19 10:41:11 +0000 | [diff] [blame] | 4112 | } |
| 4113 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4114 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4115 | SDVTList VTList, SDValue* Ops, unsigned NumOps, |
| 4116 | MachineMemOperand *MMO, |
| 4117 | AtomicOrdering Ordering, |
| 4118 | SynchronizationScope SynchScope) { |
| 4119 | FoldingSetNodeID ID; |
| 4120 | ID.AddInteger(MemVT.getRawBits()); |
| 4121 | AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps); |
| 4122 | ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); |
| 4123 | void* IP = 0; |
| 4124 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
| 4125 | cast<AtomicSDNode>(E)->refineAlignment(MMO); |
| 4126 | return SDValue(E, 0); |
| 4127 | } |
Benjamin Kramer | fd40d51 | 2013-09-29 11:18:56 +0000 | [diff] [blame] | 4128 | |
| 4129 | // Allocate the operands array for the node out of the BumpPtrAllocator, since |
| 4130 | // SDNode doesn't have access to it. This memory will be "leaked" when |
| 4131 | // the node is deallocated, but recovered when the allocator is released. |
| 4132 | // If the number of operands is less than 5 we use AtomicSDNode's internal |
| 4133 | // storage. |
| 4134 | SDUse *DynOps = NumOps > 4 ? OperandAllocator.Allocate<SDUse>(NumOps) : 0; |
| 4135 | |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4136 | SDNode *N = new (NodeAllocator) AtomicSDNode(Opcode, dl.getIROrder(), |
| 4137 | dl.getDebugLoc(), VTList, MemVT, |
Benjamin Kramer | fd40d51 | 2013-09-29 11:18:56 +0000 | [diff] [blame] | 4138 | Ops, DynOps, NumOps, MMO, |
| 4139 | Ordering, SynchScope); |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4140 | CSEMap.InsertNode(N, IP); |
| 4141 | AllNodes.push_back(N); |
| 4142 | return SDValue(N, 0); |
| 4143 | } |
| 4144 | |
| 4145 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Chris Lattner | 60bddc8 | 2010-09-21 04:53:42 +0000 | [diff] [blame] | 4146 | SDValue Chain, SDValue Ptr, SDValue Cmp, |
| 4147 | SDValue Swp, MachinePointerInfo PtrInfo, |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4148 | unsigned Alignment, |
| 4149 | AtomicOrdering Ordering, |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4150 | SynchronizationScope SynchScope) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4151 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
| 4152 | Alignment = getEVTAlignment(MemVT); |
| 4153 | |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 4154 | MachineFunction &MF = getMachineFunction(); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4155 | |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4156 | // All atomics are load and store, except for ATMOIC_LOAD and ATOMIC_STORE. |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4157 | // For now, atomics are considered to be volatile always. |
Eli Friedman | 981a010 | 2011-09-07 02:23:42 +0000 | [diff] [blame] | 4158 | // FIXME: Volatile isn't really correct; we should keep track of atomic |
| 4159 | // orderings in the memoperand. |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4160 | unsigned Flags = MachineMemOperand::MOVolatile; |
| 4161 | if (Opcode != ISD::ATOMIC_STORE) |
| 4162 | Flags |= MachineMemOperand::MOLoad; |
| 4163 | if (Opcode != ISD::ATOMIC_LOAD) |
| 4164 | Flags |= MachineMemOperand::MOStore; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4165 | |
| 4166 | MachineMemOperand *MMO = |
Chris Lattner | 60bddc8 | 2010-09-21 04:53:42 +0000 | [diff] [blame] | 4167 | MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4168 | |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4169 | return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Cmp, Swp, MMO, |
| 4170 | Ordering, SynchScope); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4171 | } |
| 4172 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4173 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4174 | SDValue Chain, |
| 4175 | SDValue Ptr, SDValue Cmp, |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4176 | SDValue Swp, MachineMemOperand *MMO, |
| 4177 | AtomicOrdering Ordering, |
| 4178 | SynchronizationScope SynchScope) { |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4179 | assert(Opcode == ISD::ATOMIC_CMP_SWAP && "Invalid Atomic Op"); |
| 4180 | assert(Cmp.getValueType() == Swp.getValueType() && "Invalid Atomic Op Types"); |
| 4181 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4182 | EVT VT = Cmp.getValueType(); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4183 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4184 | SDVTList VTs = getVTList(VT, MVT::Other); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4185 | SDValue Ops[] = {Chain, Ptr, Cmp, Swp}; |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4186 | return getAtomic(Opcode, dl, MemVT, VTs, Ops, 4, MMO, Ordering, SynchScope); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4187 | } |
| 4188 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4189 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4190 | SDValue Chain, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4191 | SDValue Ptr, SDValue Val, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4192 | const Value* PtrVal, |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4193 | unsigned Alignment, |
| 4194 | AtomicOrdering Ordering, |
| 4195 | SynchronizationScope SynchScope) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4196 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
| 4197 | Alignment = getEVTAlignment(MemVT); |
| 4198 | |
Evan Cheng | ff89dcb | 2009-10-18 18:16:27 +0000 | [diff] [blame] | 4199 | MachineFunction &MF = getMachineFunction(); |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4200 | // An atomic store does not load. An atomic load does not store. |
Eli Friedman | 981a010 | 2011-09-07 02:23:42 +0000 | [diff] [blame] | 4201 | // (An atomicrmw obviously both loads and stores.) |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4202 | // For now, atomics are considered to be volatile always, and they are |
| 4203 | // chained as such. |
Eli Friedman | 981a010 | 2011-09-07 02:23:42 +0000 | [diff] [blame] | 4204 | // FIXME: Volatile isn't really correct; we should keep track of atomic |
| 4205 | // orderings in the memoperand. |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4206 | unsigned Flags = MachineMemOperand::MOVolatile; |
| 4207 | if (Opcode != ISD::ATOMIC_STORE) |
| 4208 | Flags |= MachineMemOperand::MOLoad; |
| 4209 | if (Opcode != ISD::ATOMIC_LOAD) |
| 4210 | Flags |= MachineMemOperand::MOStore; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4211 | |
| 4212 | MachineMemOperand *MMO = |
Chris Lattner | 93a95ae | 2010-09-21 04:46:39 +0000 | [diff] [blame] | 4213 | MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4214 | MemVT.getStoreSize(), Alignment); |
| 4215 | |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4216 | return getAtomic(Opcode, dl, MemVT, Chain, Ptr, Val, MMO, |
| 4217 | Ordering, SynchScope); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4218 | } |
| 4219 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4220 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4221 | SDValue Chain, |
| 4222 | SDValue Ptr, SDValue Val, |
Eli Friedman | 55ba816 | 2011-07-29 03:05:32 +0000 | [diff] [blame] | 4223 | MachineMemOperand *MMO, |
| 4224 | AtomicOrdering Ordering, |
| 4225 | SynchronizationScope SynchScope) { |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4226 | assert((Opcode == ISD::ATOMIC_LOAD_ADD || |
| 4227 | Opcode == ISD::ATOMIC_LOAD_SUB || |
| 4228 | Opcode == ISD::ATOMIC_LOAD_AND || |
| 4229 | Opcode == ISD::ATOMIC_LOAD_OR || |
| 4230 | Opcode == ISD::ATOMIC_LOAD_XOR || |
| 4231 | Opcode == ISD::ATOMIC_LOAD_NAND || |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4232 | Opcode == ISD::ATOMIC_LOAD_MIN || |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4233 | Opcode == ISD::ATOMIC_LOAD_MAX || |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4234 | Opcode == ISD::ATOMIC_LOAD_UMIN || |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4235 | Opcode == ISD::ATOMIC_LOAD_UMAX || |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4236 | Opcode == ISD::ATOMIC_SWAP || |
| 4237 | Opcode == ISD::ATOMIC_STORE) && |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4238 | "Invalid Atomic Op"); |
| 4239 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4240 | EVT VT = Val.getValueType(); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4241 | |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4242 | SDVTList VTs = Opcode == ISD::ATOMIC_STORE ? getVTList(MVT::Other) : |
| 4243 | getVTList(VT, MVT::Other); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4244 | SDValue Ops[] = {Chain, Ptr, Val}; |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4245 | return getAtomic(Opcode, dl, MemVT, VTs, Ops, 3, MMO, Ordering, SynchScope); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4246 | } |
| 4247 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4248 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4249 | EVT VT, SDValue Chain, |
| 4250 | SDValue Ptr, |
| 4251 | const Value* PtrVal, |
| 4252 | unsigned Alignment, |
| 4253 | AtomicOrdering Ordering, |
| 4254 | SynchronizationScope SynchScope) { |
| 4255 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
| 4256 | Alignment = getEVTAlignment(MemVT); |
| 4257 | |
| 4258 | MachineFunction &MF = getMachineFunction(); |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4259 | // An atomic store does not load. An atomic load does not store. |
| 4260 | // (An atomicrmw obviously both loads and stores.) |
| 4261 | // For now, atomics are considered to be volatile always, and they are |
| 4262 | // chained as such. |
Eli Friedman | 981a010 | 2011-09-07 02:23:42 +0000 | [diff] [blame] | 4263 | // FIXME: Volatile isn't really correct; we should keep track of atomic |
| 4264 | // orderings in the memoperand. |
Jakob Stoklund Olesen | 36d29bc | 2012-08-28 03:11:32 +0000 | [diff] [blame] | 4265 | unsigned Flags = MachineMemOperand::MOVolatile; |
| 4266 | if (Opcode != ISD::ATOMIC_STORE) |
| 4267 | Flags |= MachineMemOperand::MOLoad; |
| 4268 | if (Opcode != ISD::ATOMIC_LOAD) |
| 4269 | Flags |= MachineMemOperand::MOStore; |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4270 | |
| 4271 | MachineMemOperand *MMO = |
| 4272 | MF.getMachineMemOperand(MachinePointerInfo(PtrVal), Flags, |
| 4273 | MemVT.getStoreSize(), Alignment); |
| 4274 | |
| 4275 | return getAtomic(Opcode, dl, MemVT, VT, Chain, Ptr, MMO, |
| 4276 | Ordering, SynchScope); |
| 4277 | } |
| 4278 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4279 | SDValue SelectionDAG::getAtomic(unsigned Opcode, SDLoc dl, EVT MemVT, |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4280 | EVT VT, SDValue Chain, |
| 4281 | SDValue Ptr, |
| 4282 | MachineMemOperand *MMO, |
| 4283 | AtomicOrdering Ordering, |
| 4284 | SynchronizationScope SynchScope) { |
| 4285 | assert(Opcode == ISD::ATOMIC_LOAD && "Invalid Atomic Op"); |
| 4286 | |
| 4287 | SDVTList VTs = getVTList(VT, MVT::Other); |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4288 | SDValue Ops[] = {Chain, Ptr}; |
Amara Emerson | 268c743 | 2013-09-26 12:22:36 +0000 | [diff] [blame] | 4289 | return getAtomic(Opcode, dl, MemVT, VTs, Ops, 2, MMO, Ordering, SynchScope); |
Eli Friedman | 327236c | 2011-08-24 20:50:09 +0000 | [diff] [blame] | 4290 | } |
| 4291 | |
Duncan Sands | 4bdcb61 | 2008-07-02 17:40:58 +0000 | [diff] [blame] | 4292 | /// getMergeValues - Create a MERGE_VALUES node from the given operands. |
Dale Johannesen | 54c9452 | 2009-02-02 20:47:48 +0000 | [diff] [blame] | 4293 | SDValue SelectionDAG::getMergeValues(const SDValue *Ops, unsigned NumOps, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4294 | SDLoc dl) { |
Dale Johannesen | 54c9452 | 2009-02-02 20:47:48 +0000 | [diff] [blame] | 4295 | if (NumOps == 1) |
| 4296 | return Ops[0]; |
| 4297 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4298 | SmallVector<EVT, 4> VTs; |
Dale Johannesen | 54c9452 | 2009-02-02 20:47:48 +0000 | [diff] [blame] | 4299 | VTs.reserve(NumOps); |
| 4300 | for (unsigned i = 0; i < NumOps; ++i) |
| 4301 | VTs.push_back(Ops[i].getValueType()); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4302 | return getNode(ISD::MERGE_VALUES, dl, getVTList(&VTs[0], NumOps), |
Dale Johannesen | 54c9452 | 2009-02-02 20:47:48 +0000 | [diff] [blame] | 4303 | Ops, NumOps); |
| 4304 | } |
| 4305 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4306 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4307 | SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4308 | const EVT *VTs, unsigned NumVTs, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4309 | const SDValue *Ops, unsigned NumOps, |
Chris Lattner | e9ba5dd | 2010-09-21 04:57:15 +0000 | [diff] [blame] | 4310 | EVT MemVT, MachinePointerInfo PtrInfo, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4311 | unsigned Align, bool Vol, |
| 4312 | bool ReadMem, bool WriteMem) { |
| 4313 | return getMemIntrinsicNode(Opcode, dl, makeVTList(VTs, NumVTs), Ops, NumOps, |
Chris Lattner | e9ba5dd | 2010-09-21 04:57:15 +0000 | [diff] [blame] | 4314 | MemVT, PtrInfo, Align, Vol, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4315 | ReadMem, WriteMem); |
| 4316 | } |
| 4317 | |
| 4318 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4319 | SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4320 | const SDValue *Ops, unsigned NumOps, |
Chris Lattner | e9ba5dd | 2010-09-21 04:57:15 +0000 | [diff] [blame] | 4321 | EVT MemVT, MachinePointerInfo PtrInfo, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4322 | unsigned Align, bool Vol, |
| 4323 | bool ReadMem, bool WriteMem) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4324 | if (Align == 0) // Ensure that codegen never sees alignment 0 |
| 4325 | Align = getEVTAlignment(MemVT); |
| 4326 | |
| 4327 | MachineFunction &MF = getMachineFunction(); |
| 4328 | unsigned Flags = 0; |
| 4329 | if (WriteMem) |
| 4330 | Flags |= MachineMemOperand::MOStore; |
| 4331 | if (ReadMem) |
| 4332 | Flags |= MachineMemOperand::MOLoad; |
| 4333 | if (Vol) |
| 4334 | Flags |= MachineMemOperand::MOVolatile; |
| 4335 | MachineMemOperand *MMO = |
Chris Lattner | e9ba5dd | 2010-09-21 04:57:15 +0000 | [diff] [blame] | 4336 | MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Align); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4337 | |
| 4338 | return getMemIntrinsicNode(Opcode, dl, VTList, Ops, NumOps, MemVT, MMO); |
| 4339 | } |
| 4340 | |
| 4341 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4342 | SelectionDAG::getMemIntrinsicNode(unsigned Opcode, SDLoc dl, SDVTList VTList, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4343 | const SDValue *Ops, unsigned NumOps, |
| 4344 | EVT MemVT, MachineMemOperand *MMO) { |
| 4345 | assert((Opcode == ISD::INTRINSIC_VOID || |
| 4346 | Opcode == ISD::INTRINSIC_W_CHAIN || |
Dale Johannesen | 1de4aa9 | 2010-10-26 23:11:10 +0000 | [diff] [blame] | 4347 | Opcode == ISD::PREFETCH || |
Nadav Rotem | c05d306 | 2012-09-06 09:17:37 +0000 | [diff] [blame] | 4348 | Opcode == ISD::LIFETIME_START || |
| 4349 | Opcode == ISD::LIFETIME_END || |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4350 | (Opcode <= INT_MAX && |
| 4351 | (int)Opcode >= ISD::FIRST_TARGET_MEMORY_OPCODE)) && |
| 4352 | "Opcode is not a memory-accessing opcode!"); |
| 4353 | |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4354 | // Memoize the node unless it returns a flag. |
| 4355 | MemIntrinsicSDNode *N; |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 4356 | if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) { |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4357 | FoldingSetNodeID ID; |
| 4358 | AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 4359 | ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4360 | void *IP = 0; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4361 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
| 4362 | cast<MemIntrinsicSDNode>(E)->refineAlignment(MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4363 | return SDValue(E, 0); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4364 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4365 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4366 | N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(), |
| 4367 | dl.getDebugLoc(), VTList, Ops, |
| 4368 | NumOps, MemVT, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4369 | CSEMap.InsertNode(N, IP); |
| 4370 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4371 | N = new (NodeAllocator) MemIntrinsicSDNode(Opcode, dl.getIROrder(), |
| 4372 | dl.getDebugLoc(), VTList, Ops, |
| 4373 | NumOps, MemVT, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4374 | } |
| 4375 | AllNodes.push_back(N); |
| 4376 | return SDValue(N, 0); |
| 4377 | } |
| 4378 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4379 | /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a |
| 4380 | /// MachinePointerInfo record from it. This is particularly useful because the |
| 4381 | /// code generator has many cases where it doesn't bother passing in a |
| 4382 | /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst". |
| 4383 | static MachinePointerInfo InferPointerInfo(SDValue Ptr, int64_t Offset = 0) { |
| 4384 | // If this is FI+Offset, we can model it. |
| 4385 | if (const FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) |
| 4386 | return MachinePointerInfo::getFixedStack(FI->getIndex(), Offset); |
| 4387 | |
| 4388 | // If this is (FI+Offset1)+Offset2, we can model it. |
| 4389 | if (Ptr.getOpcode() != ISD::ADD || |
| 4390 | !isa<ConstantSDNode>(Ptr.getOperand(1)) || |
| 4391 | !isa<FrameIndexSDNode>(Ptr.getOperand(0))) |
| 4392 | return MachinePointerInfo(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4393 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4394 | int FI = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); |
| 4395 | return MachinePointerInfo::getFixedStack(FI, Offset+ |
| 4396 | cast<ConstantSDNode>(Ptr.getOperand(1))->getSExtValue()); |
| 4397 | } |
| 4398 | |
| 4399 | /// InferPointerInfo - If the specified ptr/offset is a frame index, infer a |
| 4400 | /// MachinePointerInfo record from it. This is particularly useful because the |
| 4401 | /// code generator has many cases where it doesn't bother passing in a |
| 4402 | /// MachinePointerInfo to getLoad or getStore when it has "FI+Cst". |
| 4403 | static MachinePointerInfo InferPointerInfo(SDValue Ptr, SDValue OffsetOp) { |
| 4404 | // If the 'Offset' value isn't a constant, we can't handle this. |
| 4405 | if (ConstantSDNode *OffsetNode = dyn_cast<ConstantSDNode>(OffsetOp)) |
| 4406 | return InferPointerInfo(Ptr, OffsetNode->getSExtValue()); |
| 4407 | if (OffsetOp.getOpcode() == ISD::UNDEF) |
| 4408 | return InferPointerInfo(Ptr); |
| 4409 | return MachinePointerInfo(); |
| 4410 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4411 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4412 | |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4413 | SDValue |
| 4414 | SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4415 | EVT VT, SDLoc dl, SDValue Chain, |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4416 | SDValue Ptr, SDValue Offset, |
| 4417 | MachinePointerInfo PtrInfo, EVT MemVT, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4418 | bool isVolatile, bool isNonTemporal, bool isInvariant, |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 4419 | unsigned Alignment, const MDNode *TBAAInfo, |
| 4420 | const MDNode *Ranges) { |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4421 | assert(Chain.getValueType() == MVT::Other && |
Nadav Rotem | aeb86fa | 2011-07-14 10:37:54 +0000 | [diff] [blame] | 4422 | "Invalid chain type"); |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4423 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
| 4424 | Alignment = getEVTAlignment(VT); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4425 | |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4426 | unsigned Flags = MachineMemOperand::MOLoad; |
| 4427 | if (isVolatile) |
| 4428 | Flags |= MachineMemOperand::MOVolatile; |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4429 | if (isNonTemporal) |
| 4430 | Flags |= MachineMemOperand::MONonTemporal; |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4431 | if (isInvariant) |
| 4432 | Flags |= MachineMemOperand::MOInvariant; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4433 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4434 | // If we don't have a PtrInfo, infer the trivial frame index case to simplify |
| 4435 | // clients. |
| 4436 | if (PtrInfo.V == 0) |
| 4437 | PtrInfo = InferPointerInfo(Ptr, Offset); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4438 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4439 | MachineFunction &MF = getMachineFunction(); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4440 | MachineMemOperand *MMO = |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4441 | MF.getMachineMemOperand(PtrInfo, Flags, MemVT.getStoreSize(), Alignment, |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 4442 | TBAAInfo, Ranges); |
Evan Cheng | bcc8017 | 2010-07-07 22:15:37 +0000 | [diff] [blame] | 4443 | return getLoad(AM, ExtType, VT, dl, Chain, Ptr, Offset, MemVT, MMO); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4444 | } |
| 4445 | |
| 4446 | SDValue |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4447 | SelectionDAG::getLoad(ISD::MemIndexedMode AM, ISD::LoadExtType ExtType, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4448 | EVT VT, SDLoc dl, SDValue Chain, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4449 | SDValue Ptr, SDValue Offset, EVT MemVT, |
| 4450 | MachineMemOperand *MMO) { |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4451 | if (VT == MemVT) { |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4452 | ExtType = ISD::NON_EXTLOAD; |
| 4453 | } else if (ExtType == ISD::NON_EXTLOAD) { |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4454 | assert(VT == MemVT && "Non-extending load from different memory type!"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4455 | } else { |
| 4456 | // Extending load. |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 4457 | assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) && |
| 4458 | "Should only be an extending load, not truncating!"); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4459 | assert(VT.isInteger() == MemVT.isInteger() && |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4460 | "Cannot convert from FP to Int or Int -> FP!"); |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 4461 | assert(VT.isVector() == MemVT.isVector() && |
| 4462 | "Cannot use trunc store to convert to or from a vector!"); |
| 4463 | assert((!VT.isVector() || |
| 4464 | VT.getVectorNumElements() == MemVT.getVectorNumElements()) && |
| 4465 | "Cannot use trunc store to change the number of vector elements!"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4466 | } |
| 4467 | |
| 4468 | bool Indexed = AM != ISD::UNINDEXED; |
| 4469 | assert((Indexed || Offset.getOpcode() == ISD::UNDEF) && |
| 4470 | "Unindexed load with an offset!"); |
| 4471 | |
| 4472 | SDVTList VTs = Indexed ? |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4473 | getVTList(VT, Ptr.getValueType(), MVT::Other) : getVTList(VT, MVT::Other); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4474 | SDValue Ops[] = { Chain, Ptr, Offset }; |
| 4475 | FoldingSetNodeID ID; |
| 4476 | AddNodeIDNode(ID, ISD::LOAD, VTs, Ops, 3); |
Dan Gohman | 8a55ce4 | 2009-09-23 21:02:20 +0000 | [diff] [blame] | 4477 | ID.AddInteger(MemVT.getRawBits()); |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 4478 | ID.AddInteger(encodeMemSDNodeFlags(ExtType, AM, MMO->isVolatile(), |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4479 | MMO->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4480 | MMO->isInvariant())); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 4481 | ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4482 | void *IP = 0; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4483 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
| 4484 | cast<LoadSDNode>(E)->refineAlignment(MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4485 | return SDValue(E, 0); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4486 | } |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4487 | SDNode *N = new (NodeAllocator) LoadSDNode(Ops, dl.getIROrder(), |
| 4488 | dl.getDebugLoc(), VTs, AM, ExtType, |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 4489 | MemVT, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4490 | CSEMap.InsertNode(N, IP); |
| 4491 | AllNodes.push_back(N); |
| 4492 | return SDValue(N, 0); |
| 4493 | } |
| 4494 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4495 | SDValue SelectionDAG::getLoad(EVT VT, SDLoc dl, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4496 | SDValue Chain, SDValue Ptr, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4497 | MachinePointerInfo PtrInfo, |
| 4498 | bool isVolatile, bool isNonTemporal, |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4499 | bool isInvariant, unsigned Alignment, |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 4500 | const MDNode *TBAAInfo, |
| 4501 | const MDNode *Ranges) { |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4502 | SDValue Undef = getUNDEF(Ptr.getValueType()); |
| 4503 | return getLoad(ISD::UNINDEXED, ISD::NON_EXTLOAD, VT, dl, Chain, Ptr, Undef, |
Rafael Espindola | 95d594c | 2012-03-31 18:14:00 +0000 | [diff] [blame] | 4504 | PtrInfo, VT, isVolatile, isNonTemporal, isInvariant, Alignment, |
| 4505 | TBAAInfo, Ranges); |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4506 | } |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4507 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4508 | SDValue SelectionDAG::getExtLoad(ISD::LoadExtType ExtType, SDLoc dl, EVT VT, |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4509 | SDValue Chain, SDValue Ptr, |
| 4510 | MachinePointerInfo PtrInfo, EVT MemVT, |
| 4511 | bool isVolatile, bool isNonTemporal, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4512 | unsigned Alignment, const MDNode *TBAAInfo) { |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4513 | SDValue Undef = getUNDEF(Ptr.getValueType()); |
| 4514 | return getLoad(ISD::UNINDEXED, ExtType, VT, dl, Chain, Ptr, Undef, |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4515 | PtrInfo, MemVT, isVolatile, isNonTemporal, false, Alignment, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4516 | TBAAInfo); |
Chris Lattner | e72f202 | 2010-09-21 05:40:29 +0000 | [diff] [blame] | 4517 | } |
| 4518 | |
| 4519 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4520 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4521 | SelectionDAG::getIndexedLoad(SDValue OrigLoad, SDLoc dl, SDValue Base, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4522 | SDValue Offset, ISD::MemIndexedMode AM) { |
| 4523 | LoadSDNode *LD = cast<LoadSDNode>(OrigLoad); |
| 4524 | assert(LD->getOffset().getOpcode() == ISD::UNDEF && |
| 4525 | "Load is already a indexed load!"); |
Evan Cheng | bcc8017 | 2010-07-07 22:15:37 +0000 | [diff] [blame] | 4526 | return getLoad(AM, LD->getExtensionType(), OrigLoad.getValueType(), dl, |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4527 | LD->getChain(), Base, Offset, LD->getPointerInfo(), |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4528 | LD->getMemoryVT(), LD->isVolatile(), LD->isNonTemporal(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4529 | false, LD->getAlignment()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4530 | } |
| 4531 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4532 | SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val, |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4533 | SDValue Ptr, MachinePointerInfo PtrInfo, |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4534 | bool isVolatile, bool isNonTemporal, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4535 | unsigned Alignment, const MDNode *TBAAInfo) { |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4536 | assert(Chain.getValueType() == MVT::Other && |
Nadav Rotem | aeb86fa | 2011-07-14 10:37:54 +0000 | [diff] [blame] | 4537 | "Invalid chain type"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4538 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4539 | Alignment = getEVTAlignment(Val.getValueType()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4540 | |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4541 | unsigned Flags = MachineMemOperand::MOStore; |
| 4542 | if (isVolatile) |
| 4543 | Flags |= MachineMemOperand::MOVolatile; |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4544 | if (isNonTemporal) |
| 4545 | Flags |= MachineMemOperand::MONonTemporal; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4546 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4547 | if (PtrInfo.V == 0) |
| 4548 | PtrInfo = InferPointerInfo(Ptr); |
| 4549 | |
| 4550 | MachineFunction &MF = getMachineFunction(); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4551 | MachineMemOperand *MMO = |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4552 | MF.getMachineMemOperand(PtrInfo, Flags, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4553 | Val.getValueType().getStoreSize(), Alignment, |
| 4554 | TBAAInfo); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4555 | |
| 4556 | return getStore(Chain, dl, Val, Ptr, MMO); |
| 4557 | } |
| 4558 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4559 | SDValue SelectionDAG::getStore(SDValue Chain, SDLoc dl, SDValue Val, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4560 | SDValue Ptr, MachineMemOperand *MMO) { |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4561 | assert(Chain.getValueType() == MVT::Other && |
Nadav Rotem | aeb86fa | 2011-07-14 10:37:54 +0000 | [diff] [blame] | 4562 | "Invalid chain type"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4563 | EVT VT = Val.getValueType(); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4564 | SDVTList VTs = getVTList(MVT::Other); |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 4565 | SDValue Undef = getUNDEF(Ptr.getValueType()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4566 | SDValue Ops[] = { Chain, Val, Ptr, Undef }; |
| 4567 | FoldingSetNodeID ID; |
| 4568 | AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4569 | ID.AddInteger(VT.getRawBits()); |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 4570 | ID.AddInteger(encodeMemSDNodeFlags(false, ISD::UNINDEXED, MMO->isVolatile(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4571 | MMO->isNonTemporal(), MMO->isInvariant())); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 4572 | ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4573 | void *IP = 0; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4574 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
| 4575 | cast<StoreSDNode>(E)->refineAlignment(MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4576 | return SDValue(E, 0); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4577 | } |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4578 | SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), |
| 4579 | dl.getDebugLoc(), VTs, |
| 4580 | ISD::UNINDEXED, false, VT, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4581 | CSEMap.InsertNode(N, IP); |
| 4582 | AllNodes.push_back(N); |
| 4583 | return SDValue(N, 0); |
| 4584 | } |
| 4585 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4586 | SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val, |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4587 | SDValue Ptr, MachinePointerInfo PtrInfo, |
| 4588 | EVT SVT,bool isVolatile, bool isNonTemporal, |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4589 | unsigned Alignment, |
| 4590 | const MDNode *TBAAInfo) { |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4591 | assert(Chain.getValueType() == MVT::Other && |
Nadav Rotem | aeb86fa | 2011-07-14 10:37:54 +0000 | [diff] [blame] | 4592 | "Invalid chain type"); |
Chris Lattner | 5c5cb2a | 2010-09-21 05:10:45 +0000 | [diff] [blame] | 4593 | if (Alignment == 0) // Ensure that codegen never sees alignment 0 |
| 4594 | Alignment = getEVTAlignment(SVT); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4595 | |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4596 | unsigned Flags = MachineMemOperand::MOStore; |
| 4597 | if (isVolatile) |
| 4598 | Flags |= MachineMemOperand::MOVolatile; |
David Greene | 1e55944 | 2010-02-15 17:00:31 +0000 | [diff] [blame] | 4599 | if (isNonTemporal) |
| 4600 | Flags |= MachineMemOperand::MONonTemporal; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 4601 | |
Chris Lattner | d0e139f | 2010-09-21 17:24:05 +0000 | [diff] [blame] | 4602 | if (PtrInfo.V == 0) |
| 4603 | PtrInfo = InferPointerInfo(Ptr); |
| 4604 | |
| 4605 | MachineFunction &MF = getMachineFunction(); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4606 | MachineMemOperand *MMO = |
Dan Gohman | f96e4bd | 2010-10-20 00:31:05 +0000 | [diff] [blame] | 4607 | MF.getMachineMemOperand(PtrInfo, Flags, SVT.getStoreSize(), Alignment, |
| 4608 | TBAAInfo); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4609 | |
| 4610 | return getTruncStore(Chain, dl, Val, Ptr, SVT, MMO); |
| 4611 | } |
| 4612 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4613 | SDValue SelectionDAG::getTruncStore(SDValue Chain, SDLoc dl, SDValue Val, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4614 | SDValue Ptr, EVT SVT, |
| 4615 | MachineMemOperand *MMO) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4616 | EVT VT = Val.getValueType(); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4617 | |
Michael Ilseman | 06b9690 | 2012-09-10 16:56:31 +0000 | [diff] [blame] | 4618 | assert(Chain.getValueType() == MVT::Other && |
Nadav Rotem | aeb86fa | 2011-07-14 10:37:54 +0000 | [diff] [blame] | 4619 | "Invalid chain type"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4620 | if (VT == SVT) |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4621 | return getStore(Chain, dl, Val, Ptr, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4622 | |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 4623 | assert(SVT.getScalarType().bitsLT(VT.getScalarType()) && |
| 4624 | "Should only be a truncating store, not extending!"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4625 | assert(VT.isInteger() == SVT.isInteger() && |
| 4626 | "Can't do FP-INT conversion!"); |
Dan Gohman | 2e141d7 | 2009-12-14 23:40:38 +0000 | [diff] [blame] | 4627 | assert(VT.isVector() == SVT.isVector() && |
| 4628 | "Cannot use trunc store to convert to or from a vector!"); |
| 4629 | assert((!VT.isVector() || |
| 4630 | VT.getVectorNumElements() == SVT.getVectorNumElements()) && |
| 4631 | "Cannot use trunc store to change the number of vector elements!"); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4632 | |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4633 | SDVTList VTs = getVTList(MVT::Other); |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 4634 | SDValue Undef = getUNDEF(Ptr.getValueType()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4635 | SDValue Ops[] = { Chain, Val, Ptr, Undef }; |
| 4636 | FoldingSetNodeID ID; |
| 4637 | AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4638 | ID.AddInteger(SVT.getRawBits()); |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 4639 | ID.AddInteger(encodeMemSDNodeFlags(true, ISD::UNINDEXED, MMO->isVolatile(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 4640 | MMO->isNonTemporal(), MMO->isInvariant())); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 4641 | ID.AddInteger(MMO->getPointerInfo().getAddrSpace()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4642 | void *IP = 0; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4643 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
| 4644 | cast<StoreSDNode>(E)->refineAlignment(MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4645 | return SDValue(E, 0); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 4646 | } |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4647 | SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), |
| 4648 | dl.getDebugLoc(), VTs, |
| 4649 | ISD::UNINDEXED, true, SVT, MMO); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4650 | CSEMap.InsertNode(N, IP); |
| 4651 | AllNodes.push_back(N); |
| 4652 | return SDValue(N, 0); |
| 4653 | } |
| 4654 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4655 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4656 | SelectionDAG::getIndexedStore(SDValue OrigStore, SDLoc dl, SDValue Base, |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4657 | SDValue Offset, ISD::MemIndexedMode AM) { |
| 4658 | StoreSDNode *ST = cast<StoreSDNode>(OrigStore); |
| 4659 | assert(ST->getOffset().getOpcode() == ISD::UNDEF && |
| 4660 | "Store is already a indexed store!"); |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4661 | SDVTList VTs = getVTList(Base.getValueType(), MVT::Other); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4662 | SDValue Ops[] = { ST->getChain(), ST->getValue(), Base, Offset }; |
| 4663 | FoldingSetNodeID ID; |
| 4664 | AddNodeIDNode(ID, ISD::STORE, VTs, Ops, 4); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4665 | ID.AddInteger(ST->getMemoryVT().getRawBits()); |
Dan Gohman | a7ce741 | 2009-02-03 00:08:45 +0000 | [diff] [blame] | 4666 | ID.AddInteger(ST->getRawSubclassData()); |
Pete Cooper | 32ecfb4 | 2012-07-30 20:23:19 +0000 | [diff] [blame] | 4667 | ID.AddInteger(ST->getPointerInfo().getAddrSpace()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4668 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 4669 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4670 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 4671 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4672 | SDNode *N = new (NodeAllocator) StoreSDNode(Ops, dl.getIROrder(), |
| 4673 | dl.getDebugLoc(), VTs, AM, |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 4674 | ST->isTruncatingStore(), |
| 4675 | ST->getMemoryVT(), |
| 4676 | ST->getMemOperand()); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 4677 | CSEMap.InsertNode(N, IP); |
| 4678 | AllNodes.push_back(N); |
| 4679 | return SDValue(N, 0); |
| 4680 | } |
| 4681 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4682 | SDValue SelectionDAG::getVAArg(EVT VT, SDLoc dl, |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 4683 | SDValue Chain, SDValue Ptr, |
Rafael Espindola | 72d13ff | 2010-06-26 18:22:20 +0000 | [diff] [blame] | 4684 | SDValue SV, |
| 4685 | unsigned Align) { |
| 4686 | SDValue Ops[] = { Chain, Ptr, SV, getTargetConstant(Align, MVT::i32) }; |
| 4687 | return getNode(ISD::VAARG, dl, getVTList(VT, MVT::Other), Ops, 4); |
Dale Johannesen | 0f502f6 | 2009-02-03 22:26:09 +0000 | [diff] [blame] | 4688 | } |
| 4689 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4690 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4691 | const SDUse *Ops, unsigned NumOps) { |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 4692 | switch (NumOps) { |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4693 | case 0: return getNode(Opcode, DL, VT); |
| 4694 | case 1: return getNode(Opcode, DL, VT, Ops[0]); |
| 4695 | case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]); |
| 4696 | case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]); |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 4697 | default: break; |
| 4698 | } |
| 4699 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4700 | // Copy from an SDUse array into an SDValue array for use with |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 4701 | // the regular getNode logic. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4702 | SmallVector<SDValue, 8> NewOps(Ops, Ops + NumOps); |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4703 | return getNode(Opcode, DL, VT, &NewOps[0], NumOps); |
Dan Gohman | 6d9cdd5 | 2008-07-07 18:26:29 +0000 | [diff] [blame] | 4704 | } |
| 4705 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4706 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, EVT VT, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4707 | const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 4708 | switch (NumOps) { |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4709 | case 0: return getNode(Opcode, DL, VT); |
| 4710 | case 1: return getNode(Opcode, DL, VT, Ops[0]); |
| 4711 | case 2: return getNode(Opcode, DL, VT, Ops[0], Ops[1]); |
| 4712 | case 3: return getNode(Opcode, DL, VT, Ops[0], Ops[1], Ops[2]); |
Chris Lattner | ef847df | 2005-04-09 03:27:28 +0000 | [diff] [blame] | 4713 | default: break; |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 4714 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4715 | |
Chris Lattner | ef847df | 2005-04-09 03:27:28 +0000 | [diff] [blame] | 4716 | switch (Opcode) { |
| 4717 | default: break; |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 4718 | case ISD::SELECT_CC: { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 4719 | assert(NumOps == 5 && "SELECT_CC takes 5 operands!"); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 4720 | assert(Ops[0].getValueType() == Ops[1].getValueType() && |
| 4721 | "LHS and RHS of condition must have same type!"); |
| 4722 | assert(Ops[2].getValueType() == Ops[3].getValueType() && |
| 4723 | "True and False arms of SelectCC must have same type!"); |
| 4724 | assert(Ops[2].getValueType() == VT && |
| 4725 | "select_cc node must be of same type as true and false value!"); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 4726 | break; |
| 4727 | } |
| 4728 | case ISD::BR_CC: { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 4729 | assert(NumOps == 5 && "BR_CC takes 5 operands!"); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 4730 | assert(Ops[2].getValueType() == Ops[3].getValueType() && |
| 4731 | "LHS/RHS of comparison should match types!"); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 4732 | break; |
| 4733 | } |
Chris Lattner | ef847df | 2005-04-09 03:27:28 +0000 | [diff] [blame] | 4734 | } |
| 4735 | |
Chris Lattner | 385328c | 2005-05-14 07:42:29 +0000 | [diff] [blame] | 4736 | // Memoize nodes. |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4737 | SDNode *N; |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 4738 | SDVTList VTs = getVTList(VT); |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4739 | |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 4740 | if (VT != MVT::Glue) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 4741 | FoldingSetNodeID ID; |
| 4742 | AddNodeIDNode(ID, Opcode, VTs, Ops, NumOps); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4743 | void *IP = 0; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4744 | |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 4745 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4746 | return SDValue(E, 0); |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4747 | |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4748 | N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), |
| 4749 | VTs, Ops, NumOps); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4750 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4751 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4752 | N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), |
| 4753 | VTs, Ops, NumOps); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4754 | } |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4755 | |
Chris Lattner | ef847df | 2005-04-09 03:27:28 +0000 | [diff] [blame] | 4756 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 4757 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 4758 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 4759 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4760 | return SDValue(N, 0); |
Chris Lattner | c3aae25 | 2005-01-07 07:46:32 +0000 | [diff] [blame] | 4761 | } |
| 4762 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4763 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, |
Benjamin Kramer | 3853f74 | 2013-03-07 20:33:29 +0000 | [diff] [blame] | 4764 | ArrayRef<EVT> ResultTys, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4765 | const SDValue *Ops, unsigned NumOps) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 4766 | return getNode(Opcode, DL, getVTList(&ResultTys[0], ResultTys.size()), |
Chris Lattner | 2fa6d3b | 2006-08-14 23:31:51 +0000 | [diff] [blame] | 4767 | Ops, NumOps); |
| 4768 | } |
| 4769 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4770 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4771 | const EVT *VTs, unsigned NumVTs, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4772 | const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | 2fa6d3b | 2006-08-14 23:31:51 +0000 | [diff] [blame] | 4773 | if (NumVTs == 1) |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4774 | return getNode(Opcode, DL, VTs[0], Ops, NumOps); |
| 4775 | return getNode(Opcode, DL, makeVTList(VTs, NumVTs), Ops, NumOps); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4776 | } |
| 4777 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4778 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4779 | const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | be38416 | 2006-08-16 22:57:46 +0000 | [diff] [blame] | 4780 | if (VTList.NumVTs == 1) |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4781 | return getNode(Opcode, DL, VTList.VTs[0], Ops, NumOps); |
Chris Lattner | 89c3463 | 2005-05-14 06:20:26 +0000 | [diff] [blame] | 4782 | |
Daniel Dunbar | cfb8a1b | 2009-07-19 01:38:38 +0000 | [diff] [blame] | 4783 | #if 0 |
Chris Lattner | 5f056bf | 2005-07-10 01:55:33 +0000 | [diff] [blame] | 4784 | switch (Opcode) { |
Chris Lattner | e89083a | 2005-05-14 07:25:05 +0000 | [diff] [blame] | 4785 | // FIXME: figure out how to safely handle things like |
| 4786 | // int foo(int x) { return 1 << (x & 255); } |
| 4787 | // int bar() { return foo(256); } |
Chris Lattner | e89083a | 2005-05-14 07:25:05 +0000 | [diff] [blame] | 4788 | case ISD::SRA_PARTS: |
| 4789 | case ISD::SRL_PARTS: |
| 4790 | case ISD::SHL_PARTS: |
| 4791 | if (N3.getOpcode() == ISD::SIGN_EXTEND_INREG && |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 4792 | cast<VTSDNode>(N3.getOperand(1))->getVT() != MVT::i1) |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4793 | return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0)); |
Chris Lattner | e89083a | 2005-05-14 07:25:05 +0000 | [diff] [blame] | 4794 | else if (N3.getOpcode() == ISD::AND) |
| 4795 | if (ConstantSDNode *AndRHS = dyn_cast<ConstantSDNode>(N3.getOperand(1))) { |
| 4796 | // If the and is only masking out bits that cannot effect the shift, |
| 4797 | // eliminate the and. |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 4798 | unsigned NumBits = VT.getScalarType().getSizeInBits()*2; |
Chris Lattner | e89083a | 2005-05-14 07:25:05 +0000 | [diff] [blame] | 4799 | if ((AndRHS->getValue() & (NumBits-1)) == NumBits-1) |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4800 | return getNode(Opcode, DL, VT, N1, N2, N3.getOperand(0)); |
Chris Lattner | e89083a | 2005-05-14 07:25:05 +0000 | [diff] [blame] | 4801 | } |
| 4802 | break; |
Chris Lattner | 5f056bf | 2005-07-10 01:55:33 +0000 | [diff] [blame] | 4803 | } |
Daniel Dunbar | cfb8a1b | 2009-07-19 01:38:38 +0000 | [diff] [blame] | 4804 | #endif |
Chris Lattner | 89c3463 | 2005-05-14 06:20:26 +0000 | [diff] [blame] | 4805 | |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4806 | // Memoize the node unless it returns a flag. |
| 4807 | SDNode *N; |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 4808 | if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 4809 | FoldingSetNodeID ID; |
| 4810 | AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps); |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4811 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 4812 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4813 | return SDValue(E, 0); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 4814 | |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4815 | if (NumOps == 1) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4816 | N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), |
| 4817 | DL.getDebugLoc(), VTList, Ops[0]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4818 | } else if (NumOps == 2) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4819 | N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), |
| 4820 | DL.getDebugLoc(), VTList, Ops[0], |
| 4821 | Ops[1]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4822 | } else if (NumOps == 3) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4823 | N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), |
| 4824 | DL.getDebugLoc(), VTList, Ops[0], |
| 4825 | Ops[1], Ops[2]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4826 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4827 | N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), |
| 4828 | VTList, Ops, NumOps); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4829 | } |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4830 | CSEMap.InsertNode(N, IP); |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4831 | } else { |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4832 | if (NumOps == 1) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4833 | N = new (NodeAllocator) UnarySDNode(Opcode, DL.getIROrder(), |
| 4834 | DL.getDebugLoc(), VTList, Ops[0]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4835 | } else if (NumOps == 2) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4836 | N = new (NodeAllocator) BinarySDNode(Opcode, DL.getIROrder(), |
| 4837 | DL.getDebugLoc(), VTList, Ops[0], |
| 4838 | Ops[1]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4839 | } else if (NumOps == 3) { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4840 | N = new (NodeAllocator) TernarySDNode(Opcode, DL.getIROrder(), |
| 4841 | DL.getDebugLoc(), VTList, Ops[0], |
| 4842 | Ops[1], Ops[2]); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4843 | } else { |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 4844 | N = new (NodeAllocator) SDNode(Opcode, DL.getIROrder(), DL.getDebugLoc(), |
| 4845 | VTList, Ops, NumOps); |
Dan Gohman | 0e5f130 | 2008-07-07 23:02:41 +0000 | [diff] [blame] | 4846 | } |
Chris Lattner | 43247a1 | 2005-08-25 19:12:10 +0000 | [diff] [blame] | 4847 | } |
Chris Lattner | 5fa4fa4 | 2005-05-14 06:42:57 +0000 | [diff] [blame] | 4848 | AllNodes.push_back(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 4849 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 4850 | VerifySDNode(N); |
Duncan Sands | d038e04 | 2008-07-21 10:20:31 +0000 | [diff] [blame] | 4851 | #endif |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4852 | return SDValue(N, 0); |
Chris Lattner | 89c3463 | 2005-05-14 06:20:26 +0000 | [diff] [blame] | 4853 | } |
| 4854 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4855 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList) { |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4856 | return getNode(Opcode, DL, VTList, 0, 0); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4857 | } |
| 4858 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4859 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4860 | SDValue N1) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4861 | SDValue Ops[] = { N1 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4862 | return getNode(Opcode, DL, VTList, Ops, 1); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4863 | } |
| 4864 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4865 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4866 | SDValue N1, SDValue N2) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4867 | SDValue Ops[] = { N1, N2 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4868 | return getNode(Opcode, DL, VTList, Ops, 2); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4869 | } |
| 4870 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4871 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4872 | SDValue N1, SDValue N2, SDValue N3) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4873 | SDValue Ops[] = { N1, N2, N3 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4874 | return getNode(Opcode, DL, VTList, Ops, 3); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4875 | } |
| 4876 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4877 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4878 | SDValue N1, SDValue N2, SDValue N3, |
| 4879 | SDValue N4) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4880 | SDValue Ops[] = { N1, N2, N3, N4 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4881 | return getNode(Opcode, DL, VTList, Ops, 4); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4882 | } |
| 4883 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 4884 | SDValue SelectionDAG::getNode(unsigned Opcode, SDLoc DL, SDVTList VTList, |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4885 | SDValue N1, SDValue N2, SDValue N3, |
| 4886 | SDValue N4, SDValue N5) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 4887 | SDValue Ops[] = { N1, N2, N3, N4, N5 }; |
Bill Wendling | 7ade28c | 2009-01-28 22:17:52 +0000 | [diff] [blame] | 4888 | return getNode(Opcode, DL, VTList, Ops, 5); |
Dan Gohman | 08ce976 | 2007-10-08 15:49:58 +0000 | [diff] [blame] | 4889 | } |
| 4890 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4891 | SDVTList SelectionDAG::getVTList(EVT VT) { |
Duncan Sands | af47b11 | 2007-10-16 09:56:48 +0000 | [diff] [blame] | 4892 | return makeVTList(SDNode::getValueTypeList(VT), 1); |
Chris Lattner | a325511 | 2005-11-08 23:30:28 +0000 | [diff] [blame] | 4893 | } |
| 4894 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4895 | SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2) { |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4896 | for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(), |
| 4897 | E = VTList.rend(); I != E; ++I) |
| 4898 | if (I->NumVTs == 2 && I->VTs[0] == VT1 && I->VTs[1] == VT2) |
| 4899 | return *I; |
| 4900 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4901 | EVT *Array = Allocator.Allocate<EVT>(2); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4902 | Array[0] = VT1; |
| 4903 | Array[1] = VT2; |
| 4904 | SDVTList Result = makeVTList(Array, 2); |
| 4905 | VTList.push_back(Result); |
| 4906 | return Result; |
Chris Lattner | a325511 | 2005-11-08 23:30:28 +0000 | [diff] [blame] | 4907 | } |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4908 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4909 | SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3) { |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4910 | for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(), |
| 4911 | E = VTList.rend(); I != E; ++I) |
| 4912 | if (I->NumVTs == 3 && I->VTs[0] == VT1 && I->VTs[1] == VT2 && |
| 4913 | I->VTs[2] == VT3) |
| 4914 | return *I; |
| 4915 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4916 | EVT *Array = Allocator.Allocate<EVT>(3); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4917 | Array[0] = VT1; |
| 4918 | Array[1] = VT2; |
| 4919 | Array[2] = VT3; |
| 4920 | SDVTList Result = makeVTList(Array, 3); |
| 4921 | VTList.push_back(Result); |
| 4922 | return Result; |
Chris Lattner | 70046e9 | 2006-08-15 17:46:01 +0000 | [diff] [blame] | 4923 | } |
| 4924 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4925 | SDVTList SelectionDAG::getVTList(EVT VT1, EVT VT2, EVT VT3, EVT VT4) { |
Bill Wendling | 13d6d44 | 2008-12-01 23:28:22 +0000 | [diff] [blame] | 4926 | for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(), |
| 4927 | E = VTList.rend(); I != E; ++I) |
| 4928 | if (I->NumVTs == 4 && I->VTs[0] == VT1 && I->VTs[1] == VT2 && |
| 4929 | I->VTs[2] == VT3 && I->VTs[3] == VT4) |
| 4930 | return *I; |
| 4931 | |
Anton Korobeynikov | 60283f9 | 2009-12-13 01:00:59 +0000 | [diff] [blame] | 4932 | EVT *Array = Allocator.Allocate<EVT>(4); |
Bill Wendling | 13d6d44 | 2008-12-01 23:28:22 +0000 | [diff] [blame] | 4933 | Array[0] = VT1; |
| 4934 | Array[1] = VT2; |
| 4935 | Array[2] = VT3; |
| 4936 | Array[3] = VT4; |
| 4937 | SDVTList Result = makeVTList(Array, 4); |
| 4938 | VTList.push_back(Result); |
| 4939 | return Result; |
| 4940 | } |
| 4941 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4942 | SDVTList SelectionDAG::getVTList(const EVT *VTs, unsigned NumVTs) { |
Chris Lattner | 70046e9 | 2006-08-15 17:46:01 +0000 | [diff] [blame] | 4943 | switch (NumVTs) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 4944 | case 0: llvm_unreachable("Cannot have nodes without results!"); |
Dan Gohman | 7f32156 | 2007-06-25 16:23:39 +0000 | [diff] [blame] | 4945 | case 1: return getVTList(VTs[0]); |
Chris Lattner | 70046e9 | 2006-08-15 17:46:01 +0000 | [diff] [blame] | 4946 | case 2: return getVTList(VTs[0], VTs[1]); |
| 4947 | case 3: return getVTList(VTs[0], VTs[1], VTs[2]); |
Anton Korobeynikov | cc62c3c | 2009-12-19 02:04:00 +0000 | [diff] [blame] | 4948 | case 4: return getVTList(VTs[0], VTs[1], VTs[2], VTs[3]); |
Chris Lattner | 70046e9 | 2006-08-15 17:46:01 +0000 | [diff] [blame] | 4949 | default: break; |
| 4950 | } |
| 4951 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4952 | for (std::vector<SDVTList>::reverse_iterator I = VTList.rbegin(), |
| 4953 | E = VTList.rend(); I != E; ++I) { |
| 4954 | if (I->NumVTs != NumVTs || VTs[0] != I->VTs[0] || VTs[1] != I->VTs[1]) |
| 4955 | continue; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4956 | |
Benjamin Kramer | b26e291 | 2012-07-19 10:46:05 +0000 | [diff] [blame] | 4957 | if (std::equal(&VTs[2], &VTs[NumVTs], &I->VTs[2])) |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4958 | return *I; |
Chris Lattner | 70046e9 | 2006-08-15 17:46:01 +0000 | [diff] [blame] | 4959 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4960 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 4961 | EVT *Array = Allocator.Allocate<EVT>(NumVTs); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 4962 | std::copy(VTs, VTs+NumVTs, Array); |
| 4963 | SDVTList Result = makeVTList(Array, NumVTs); |
| 4964 | VTList.push_back(Result); |
| 4965 | return Result; |
Chris Lattner | 2fa6d3b | 2006-08-14 23:31:51 +0000 | [diff] [blame] | 4966 | } |
| 4967 | |
| 4968 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4969 | /// UpdateNodeOperands - *Mutate* the specified node in-place to have the |
| 4970 | /// specified operands. If the resultant node already exists in the DAG, |
| 4971 | /// this does not modify the specified node, instead it returns the node that |
| 4972 | /// already exists. If the resultant node does not exist in the DAG, the |
| 4973 | /// input node is returned. As a degenerate case, if you specify the same |
| 4974 | /// input operands as the node already has, the input node is returned. |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 4975 | SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op) { |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4976 | assert(N->getNumOperands() == 1 && "Update with wrong number of operands"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4977 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4978 | // Check to see if there is no change. |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 4979 | if (Op == N->getOperand(0)) return N; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4980 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4981 | // See if the modified node already exists. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4982 | void *InsertPos = 0; |
| 4983 | if (SDNode *Existing = FindModifiedNodeSlot(N, Op, InsertPos)) |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 4984 | return Existing; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4985 | |
Dan Gohman | 79acd2b | 2008-07-21 22:38:59 +0000 | [diff] [blame] | 4986 | // Nope it doesn't. Remove the node from its current place in the maps. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4987 | if (InsertPos) |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 4988 | if (!RemoveNodeFromCSEMaps(N)) |
| 4989 | InsertPos = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4990 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4991 | // Now we update the operands. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 4992 | N->OperandList[0].set(Op); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 4993 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4994 | // If this gets put into a CSE map, add it. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 4995 | if (InsertPos) CSEMap.InsertNode(N, InsertPos); |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 4996 | return N; |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 4997 | } |
| 4998 | |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 4999 | SDNode *SelectionDAG::UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2) { |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5000 | assert(N->getNumOperands() == 2 && "Update with wrong number of operands"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5001 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5002 | // Check to see if there is no change. |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5003 | if (Op1 == N->getOperand(0) && Op2 == N->getOperand(1)) |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5004 | return N; // No operands changed, just return the input node. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5005 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5006 | // See if the modified node already exists. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5007 | void *InsertPos = 0; |
| 5008 | if (SDNode *Existing = FindModifiedNodeSlot(N, Op1, Op2, InsertPos)) |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5009 | return Existing; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5010 | |
Dan Gohman | 79acd2b | 2008-07-21 22:38:59 +0000 | [diff] [blame] | 5011 | // Nope it doesn't. Remove the node from its current place in the maps. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5012 | if (InsertPos) |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5013 | if (!RemoveNodeFromCSEMaps(N)) |
| 5014 | InsertPos = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5015 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5016 | // Now we update the operands. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5017 | if (N->OperandList[0] != Op1) |
| 5018 | N->OperandList[0].set(Op1); |
| 5019 | if (N->OperandList[1] != Op2) |
| 5020 | N->OperandList[1].set(Op2); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5021 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5022 | // If this gets put into a CSE map, add it. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5023 | if (InsertPos) CSEMap.InsertNode(N, InsertPos); |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5024 | return N; |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5025 | } |
| 5026 | |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5027 | SDNode *SelectionDAG:: |
| 5028 | UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, SDValue Op3) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5029 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 5030 | return UpdateNodeOperands(N, Ops, 3); |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5031 | } |
| 5032 | |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5033 | SDNode *SelectionDAG:: |
| 5034 | UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5035 | SDValue Op3, SDValue Op4) { |
| 5036 | SDValue Ops[] = { Op1, Op2, Op3, Op4 }; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 5037 | return UpdateNodeOperands(N, Ops, 4); |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5038 | } |
| 5039 | |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5040 | SDNode *SelectionDAG:: |
| 5041 | UpdateNodeOperands(SDNode *N, SDValue Op1, SDValue Op2, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5042 | SDValue Op3, SDValue Op4, SDValue Op5) { |
| 5043 | SDValue Ops[] = { Op1, Op2, Op3, Op4, Op5 }; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 5044 | return UpdateNodeOperands(N, Ops, 5); |
Chris Lattner | 809ec11 | 2006-01-28 10:09:25 +0000 | [diff] [blame] | 5045 | } |
| 5046 | |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5047 | SDNode *SelectionDAG:: |
| 5048 | UpdateNodeOperands(SDNode *N, const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 5049 | assert(N->getNumOperands() == NumOps && |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5050 | "Update with wrong number of operands"); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5051 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5052 | // Check to see if there is no change. |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5053 | bool AnyChange = false; |
| 5054 | for (unsigned i = 0; i != NumOps; ++i) { |
| 5055 | if (Ops[i] != N->getOperand(i)) { |
| 5056 | AnyChange = true; |
| 5057 | break; |
| 5058 | } |
| 5059 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5060 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5061 | // No operands changed, just return the input node. |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5062 | if (!AnyChange) return N; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5063 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5064 | // See if the modified node already exists. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5065 | void *InsertPos = 0; |
Chris Lattner | f06f35e | 2006-08-08 01:09:31 +0000 | [diff] [blame] | 5066 | if (SDNode *Existing = FindModifiedNodeSlot(N, Ops, NumOps, InsertPos)) |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5067 | return Existing; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5068 | |
Dan Gohman | 7ceda16 | 2008-05-02 00:05:03 +0000 | [diff] [blame] | 5069 | // Nope it doesn't. Remove the node from its current place in the maps. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5070 | if (InsertPos) |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5071 | if (!RemoveNodeFromCSEMaps(N)) |
| 5072 | InsertPos = 0; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5073 | |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5074 | // Now we update the operands. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5075 | for (unsigned i = 0; i != NumOps; ++i) |
| 5076 | if (N->OperandList[i] != Ops[i]) |
| 5077 | N->OperandList[i].set(Ops[i]); |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5078 | |
| 5079 | // If this gets put into a CSE map, add it. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5080 | if (InsertPos) CSEMap.InsertNode(N, InsertPos); |
Dan Gohman | 027657d | 2010-06-18 15:30:29 +0000 | [diff] [blame] | 5081 | return N; |
Chris Lattner | df6eb30 | 2006-01-28 09:32:45 +0000 | [diff] [blame] | 5082 | } |
| 5083 | |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 5084 | /// DropOperands - Release the operands and set this node to have |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5085 | /// zero operands. |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 5086 | void SDNode::DropOperands() { |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 5087 | // Unlike the code in MorphNodeTo that does this, we don't need to |
| 5088 | // watch for dead nodes here. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5089 | for (op_iterator I = op_begin(), E = op_end(); I != E; ) { |
| 5090 | SDUse &Use = *I++; |
| 5091 | Use.set(SDValue()); |
| 5092 | } |
Chris Lattner | d429bcd | 2007-02-04 02:49:29 +0000 | [diff] [blame] | 5093 | } |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 5094 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5095 | /// SelectNodeTo - These are wrappers around MorphNodeTo that accept a |
| 5096 | /// machine opcode. |
Chris Lattner | c5e6c64 | 2005-12-01 18:00:57 +0000 | [diff] [blame] | 5097 | /// |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5098 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5099 | EVT VT) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5100 | SDVTList VTs = getVTList(VT); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5101 | return SelectNodeTo(N, MachineOpc, VTs, 0, 0); |
Chris Lattner | 7651fa4 | 2005-08-24 23:00:29 +0000 | [diff] [blame] | 5102 | } |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5103 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5104 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5105 | EVT VT, SDValue Op1) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5106 | SDVTList VTs = getVTList(VT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5107 | SDValue Ops[] = { Op1 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5108 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 1); |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 5109 | } |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5110 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5111 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5112 | EVT VT, SDValue Op1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5113 | SDValue Op2) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5114 | SDVTList VTs = getVTList(VT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5115 | SDValue Ops[] = { Op1, Op2 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5116 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 2); |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 5117 | } |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5118 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5119 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5120 | EVT VT, SDValue Op1, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5121 | SDValue Op2, SDValue Op3) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5122 | SDVTList VTs = getVTList(VT); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5123 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5124 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 3); |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 5125 | } |
Chris Lattner | c975e1d | 2005-08-21 22:30:30 +0000 | [diff] [blame] | 5126 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5127 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5128 | EVT VT, const SDValue *Ops, |
Evan Cheng | 694481e | 2006-08-27 08:08:54 +0000 | [diff] [blame] | 5129 | unsigned NumOps) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5130 | SDVTList VTs = getVTList(VT); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5131 | return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps); |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5132 | } |
| 5133 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5134 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5135 | EVT VT1, EVT VT2, const SDValue *Ops, |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5136 | unsigned NumOps) { |
| 5137 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5138 | return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps); |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5139 | } |
| 5140 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5141 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5142 | EVT VT1, EVT VT2) { |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5143 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5144 | return SelectNodeTo(N, MachineOpc, VTs, (SDValue *)0, 0); |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5145 | } |
| 5146 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5147 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5148 | EVT VT1, EVT VT2, EVT VT3, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5149 | const SDValue *Ops, unsigned NumOps) { |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5150 | SDVTList VTs = getVTList(VT1, VT2, VT3); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5151 | return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps); |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5152 | } |
| 5153 | |
Bill Wendling | 13d6d44 | 2008-12-01 23:28:22 +0000 | [diff] [blame] | 5154 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5155 | EVT VT1, EVT VT2, EVT VT3, EVT VT4, |
Bill Wendling | 13d6d44 | 2008-12-01 23:28:22 +0000 | [diff] [blame] | 5156 | const SDValue *Ops, unsigned NumOps) { |
| 5157 | SDVTList VTs = getVTList(VT1, VT2, VT3, VT4); |
| 5158 | return SelectNodeTo(N, MachineOpc, VTs, Ops, NumOps); |
| 5159 | } |
| 5160 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5161 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5162 | EVT VT1, EVT VT2, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5163 | SDValue Op1) { |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5164 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5165 | SDValue Ops[] = { Op1 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5166 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 1); |
Andrew Lenharth | 7cf11b4 | 2006-01-23 21:51:14 +0000 | [diff] [blame] | 5167 | } |
Andrew Lenharth | 8c6f1ee | 2006-01-23 20:59:12 +0000 | [diff] [blame] | 5168 | |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5169 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5170 | EVT VT1, EVT VT2, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5171 | SDValue Op1, SDValue Op2) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5172 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5173 | SDValue Ops[] = { Op1, Op2 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5174 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 2); |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5175 | } |
| 5176 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5177 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5178 | EVT VT1, EVT VT2, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5179 | SDValue Op1, SDValue Op2, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5180 | SDValue Op3) { |
Chris Lattner | 0b3e525 | 2006-08-15 19:11:05 +0000 | [diff] [blame] | 5181 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5182 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5183 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 3); |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5184 | } |
| 5185 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5186 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5187 | EVT VT1, EVT VT2, EVT VT3, |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5188 | SDValue Op1, SDValue Op2, |
Bill Wendling | 13d6d44 | 2008-12-01 23:28:22 +0000 | [diff] [blame] | 5189 | SDValue Op3) { |
| 5190 | SDVTList VTs = getVTList(VT1, VT2, VT3); |
| 5191 | SDValue Ops[] = { Op1, Op2, Op3 }; |
| 5192 | return SelectNodeTo(N, MachineOpc, VTs, Ops, 3); |
| 5193 | } |
| 5194 | |
| 5195 | SDNode *SelectionDAG::SelectNodeTo(SDNode *N, unsigned MachineOpc, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5196 | SDVTList VTs, const SDValue *Ops, |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5197 | unsigned NumOps) { |
Chris Lattner | 5857e0a | 2010-02-23 23:01:35 +0000 | [diff] [blame] | 5198 | N = MorphNodeTo(N, ~MachineOpc, VTs, Ops, NumOps); |
| 5199 | // Reset the NodeID to -1. |
| 5200 | N->setNodeId(-1); |
| 5201 | return N; |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5202 | } |
| 5203 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5204 | /// UpdadeSDLocOnMergedSDNode - If the opt level is -O0 then it throws away |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5205 | /// the line number information on the merged node since it is not possible to |
| 5206 | /// preserve the information that operation is associated with multiple lines. |
| 5207 | /// This will make the debugger working better at -O0, were there is a higher |
| 5208 | /// probability having other instructions associated with that line. |
| 5209 | /// |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5210 | /// For IROrder, we keep the smaller of the two |
| 5211 | SDNode *SelectionDAG::UpdadeSDLocOnMergedSDNode(SDNode *N, SDLoc OLoc) { |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5212 | DebugLoc NLoc = N->getDebugLoc(); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5213 | if (!(NLoc.isUnknown()) && (OptLevel == CodeGenOpt::None) && |
| 5214 | (OLoc.getDebugLoc() != NLoc)) { |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5215 | N->setDebugLoc(DebugLoc()); |
| 5216 | } |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5217 | unsigned Order = std::min(N->getIROrder(), OLoc.getIROrder()); |
| 5218 | N->setIROrder(Order); |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5219 | return N; |
| 5220 | } |
| 5221 | |
Chris Lattner | 21221e3 | 2010-02-28 21:36:14 +0000 | [diff] [blame] | 5222 | /// MorphNodeTo - This *mutates* the specified node to have the specified |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5223 | /// return type, opcode, and operands. |
| 5224 | /// |
| 5225 | /// Note that MorphNodeTo returns the resultant node. If there is already a |
| 5226 | /// node of the specified opcode and operands, it returns that node instead of |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5227 | /// the current one. Note that the SDLoc need not be the same. |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5228 | /// |
| 5229 | /// Using MorphNodeTo is faster than creating a new node and swapping it in |
| 5230 | /// with ReplaceAllUsesWith both because it often avoids allocating a new |
Gabor Greif | dc71563 | 2008-08-30 22:16:05 +0000 | [diff] [blame] | 5231 | /// node, and because it doesn't require CSE recalculation for any of |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5232 | /// the node's users. |
| 5233 | /// |
| 5234 | SDNode *SelectionDAG::MorphNodeTo(SDNode *N, unsigned Opc, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5235 | SDVTList VTs, const SDValue *Ops, |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5236 | unsigned NumOps) { |
Dan Gohman | cd920d9 | 2008-07-02 23:23:19 +0000 | [diff] [blame] | 5237 | // If an identical node already exists, use it. |
Chris Lattner | a568285 | 2006-08-07 23:03:03 +0000 | [diff] [blame] | 5238 | void *IP = 0; |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 5239 | if (VTs.VTs[VTs.NumVTs-1] != MVT::Glue) { |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5240 | FoldingSetNodeID ID; |
| 5241 | AddNodeIDNode(ID, Opc, VTs, Ops, NumOps); |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 5242 | if (SDNode *ON = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5243 | return UpdadeSDLocOnMergedSDNode(ON, SDLoc(N)); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5244 | } |
Chris Lattner | c5e6c64 | 2005-12-01 18:00:57 +0000 | [diff] [blame] | 5245 | |
Dan Gohman | 095cc29 | 2008-09-13 01:54:27 +0000 | [diff] [blame] | 5246 | if (!RemoveNodeFromCSEMaps(N)) |
| 5247 | IP = 0; |
Chris Lattner | 67612a1 | 2007-02-04 02:32:44 +0000 | [diff] [blame] | 5248 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5249 | // Start the morphing. |
| 5250 | N->NodeType = Opc; |
| 5251 | N->ValueList = VTs.VTs; |
| 5252 | N->NumValues = VTs.NumVTs; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5253 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5254 | // Clear the operands list, updating used nodes to remove this from their |
| 5255 | // use list. Keep track of any operands that become dead as a result. |
| 5256 | SmallPtrSet<SDNode*, 16> DeadNodeSet; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5257 | for (SDNode::op_iterator I = N->op_begin(), E = N->op_end(); I != E; ) { |
| 5258 | SDUse &Use = *I++; |
| 5259 | SDNode *Used = Use.getNode(); |
| 5260 | Use.set(SDValue()); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5261 | if (Used->use_empty()) |
| 5262 | DeadNodeSet.insert(Used); |
| 5263 | } |
| 5264 | |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5265 | if (MachineSDNode *MN = dyn_cast<MachineSDNode>(N)) { |
| 5266 | // Initialize the memory references information. |
| 5267 | MN->setMemRefs(0, 0); |
| 5268 | // If NumOps is larger than the # of operands we can have in a |
| 5269 | // MachineSDNode, reallocate the operand list. |
| 5270 | if (NumOps > MN->NumOperands || !MN->OperandsNeedDelete) { |
| 5271 | if (MN->OperandsNeedDelete) |
| 5272 | delete[] MN->OperandList; |
| 5273 | if (NumOps > array_lengthof(MN->LocalOperands)) |
| 5274 | // We're creating a final node that will live unmorphed for the |
| 5275 | // remainder of the current SelectionDAG iteration, so we can allocate |
| 5276 | // the operands directly out of a pool with no recycling metadata. |
| 5277 | MN->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps), |
Dan Gohman | 9553188 | 2010-03-18 18:49:47 +0000 | [diff] [blame] | 5278 | Ops, NumOps); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5279 | else |
| 5280 | MN->InitOperands(MN->LocalOperands, Ops, NumOps); |
| 5281 | MN->OperandsNeedDelete = false; |
| 5282 | } else |
| 5283 | MN->InitOperands(MN->OperandList, Ops, NumOps); |
| 5284 | } else { |
| 5285 | // If NumOps is larger than the # of operands we currently have, reallocate |
| 5286 | // the operand list. |
| 5287 | if (NumOps > N->NumOperands) { |
| 5288 | if (N->OperandsNeedDelete) |
| 5289 | delete[] N->OperandList; |
| 5290 | N->InitOperands(new SDUse[NumOps], Ops, NumOps); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5291 | N->OperandsNeedDelete = true; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5292 | } else |
Anton Korobeynikov | 443b215 | 2009-10-22 00:15:17 +0000 | [diff] [blame] | 5293 | N->InitOperands(N->OperandList, Ops, NumOps); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5294 | } |
| 5295 | |
| 5296 | // Delete any nodes that are still dead after adding the uses for the |
| 5297 | // new operands. |
Chris Lattner | 7d892d6 | 2010-03-01 07:43:08 +0000 | [diff] [blame] | 5298 | if (!DeadNodeSet.empty()) { |
| 5299 | SmallVector<SDNode *, 16> DeadNodes; |
| 5300 | for (SmallPtrSet<SDNode *, 16>::iterator I = DeadNodeSet.begin(), |
| 5301 | E = DeadNodeSet.end(); I != E; ++I) |
| 5302 | if ((*I)->use_empty()) |
| 5303 | DeadNodes.push_back(*I); |
| 5304 | RemoveDeadNodes(DeadNodes); |
| 5305 | } |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 5306 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5307 | if (IP) |
| 5308 | CSEMap.InsertNode(N, IP); // Memoize the new node. |
Evan Cheng | 95514ba | 2006-08-26 08:00:10 +0000 | [diff] [blame] | 5309 | return N; |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5310 | } |
| 5311 | |
Chris Lattner | 0fb094f | 2005-11-19 01:44:53 +0000 | [diff] [blame] | 5312 | |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 5313 | /// getMachineNode - These are used for target selectors to create a new node |
| 5314 | /// with specified return type(s), MachineInstr opcode, and operands. |
Evan Cheng | 6ae46c4 | 2006-02-09 07:15:23 +0000 | [diff] [blame] | 5315 | /// |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 5316 | /// Note that getMachineNode returns the resultant node. If there is already a |
Evan Cheng | 6ae46c4 | 2006-02-09 07:15:23 +0000 | [diff] [blame] | 5317 | /// node of the specified opcode and operands, it returns that node instead of |
| 5318 | /// the current one. |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5319 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5320 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5321 | SDVTList VTs = getVTList(VT); |
Dmitri Gribenko | 5c332db | 2013-05-05 00:40:33 +0000 | [diff] [blame] | 5322 | return getMachineNode(Opcode, dl, VTs, None); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5323 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5324 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5325 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5326 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, SDValue Op1) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5327 | SDVTList VTs = getVTList(VT); |
| 5328 | SDValue Ops[] = { Op1 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5329 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5330 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5331 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5332 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5333 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5334 | SDValue Op1, SDValue Op2) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5335 | SDVTList VTs = getVTList(VT); |
| 5336 | SDValue Ops[] = { Op1, Op2 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5337 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5338 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5339 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5340 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5341 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5342 | SDValue Op1, SDValue Op2, SDValue Op3) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5343 | SDVTList VTs = getVTList(VT); |
| 5344 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5345 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5346 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5347 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5348 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5349 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5350 | ArrayRef<SDValue> Ops) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5351 | SDVTList VTs = getVTList(VT); |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5352 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5353 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5354 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5355 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5356 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, EVT VT2) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5357 | SDVTList VTs = getVTList(VT1, VT2); |
Dmitri Gribenko | 5c332db | 2013-05-05 00:40:33 +0000 | [diff] [blame] | 5358 | return getMachineNode(Opcode, dl, VTs, None); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5359 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5360 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5361 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5362 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5363 | EVT VT1, EVT VT2, SDValue Op1) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5364 | SDVTList VTs = getVTList(VT1, VT2); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5365 | SDValue Ops[] = { Op1 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5366 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5367 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5368 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5369 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5370 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5371 | EVT VT1, EVT VT2, SDValue Op1, SDValue Op2) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5372 | SDVTList VTs = getVTList(VT1, VT2); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5373 | SDValue Ops[] = { Op1, Op2 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5374 | return getMachineNode(Opcode, dl, VTs, Ops); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5375 | } |
| 5376 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5377 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5378 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5379 | EVT VT1, EVT VT2, SDValue Op1, |
| 5380 | SDValue Op2, SDValue Op3) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5381 | SDVTList VTs = getVTList(VT1, VT2); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5382 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5383 | return getMachineNode(Opcode, dl, VTs, Ops); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5384 | } |
| 5385 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5386 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5387 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5388 | EVT VT1, EVT VT2, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5389 | ArrayRef<SDValue> Ops) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5390 | SDVTList VTs = getVTList(VT1, VT2); |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5391 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5392 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5393 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5394 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5395 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5396 | EVT VT1, EVT VT2, EVT VT3, |
| 5397 | SDValue Op1, SDValue Op2) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5398 | SDVTList VTs = getVTList(VT1, VT2, VT3); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5399 | SDValue Ops[] = { Op1, Op2 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5400 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5401 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5402 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5403 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5404 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5405 | EVT VT1, EVT VT2, EVT VT3, |
| 5406 | SDValue Op1, SDValue Op2, SDValue Op3) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5407 | SDVTList VTs = getVTList(VT1, VT2, VT3); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5408 | SDValue Ops[] = { Op1, Op2, Op3 }; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5409 | return getMachineNode(Opcode, dl, VTs, Ops); |
Evan Cheng | 6ae46c4 | 2006-02-09 07:15:23 +0000 | [diff] [blame] | 5410 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5411 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5412 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5413 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5414 | EVT VT1, EVT VT2, EVT VT3, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5415 | ArrayRef<SDValue> Ops) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5416 | SDVTList VTs = getVTList(VT1, VT2, VT3); |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5417 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5418 | } |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5419 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5420 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5421 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, EVT VT1, |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5422 | EVT VT2, EVT VT3, EVT VT4, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5423 | ArrayRef<SDValue> Ops) { |
Dan Gohman | fc16657 | 2009-04-09 23:54:40 +0000 | [diff] [blame] | 5424 | SDVTList VTs = getVTList(VT1, VT2, VT3, VT4); |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5425 | return getMachineNode(Opcode, dl, VTs, Ops); |
Bill Wendling | 56ab1a2 | 2009-01-29 09:01:55 +0000 | [diff] [blame] | 5426 | } |
| 5427 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5428 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5429 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc dl, |
Benjamin Kramer | 3853f74 | 2013-03-07 20:33:29 +0000 | [diff] [blame] | 5430 | ArrayRef<EVT> ResultTys, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5431 | ArrayRef<SDValue> Ops) { |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5432 | SDVTList VTs = getVTList(&ResultTys[0], ResultTys.size()); |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5433 | return getMachineNode(Opcode, dl, VTs, Ops); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5434 | } |
| 5435 | |
Dan Gohman | c81b783 | 2009-10-10 01:29:16 +0000 | [diff] [blame] | 5436 | MachineSDNode * |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5437 | SelectionDAG::getMachineNode(unsigned Opcode, SDLoc DL, SDVTList VTs, |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5438 | ArrayRef<SDValue> OpsArray) { |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 5439 | bool DoCSE = VTs.VTs[VTs.NumVTs-1] != MVT::Glue; |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5440 | MachineSDNode *N; |
Ted Kremenek | 584520e | 2011-01-23 17:05:06 +0000 | [diff] [blame] | 5441 | void *IP = 0; |
Michael Liao | 2a8bea7 | 2013-04-19 22:22:57 +0000 | [diff] [blame] | 5442 | const SDValue *Ops = OpsArray.data(); |
| 5443 | unsigned NumOps = OpsArray.size(); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5444 | |
| 5445 | if (DoCSE) { |
| 5446 | FoldingSetNodeID ID; |
| 5447 | AddNodeIDNode(ID, ~Opcode, VTs, Ops, NumOps); |
| 5448 | IP = 0; |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5449 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) { |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5450 | return cast<MachineSDNode>(UpdadeSDLocOnMergedSDNode(E, DL)); |
Devang Patel | 0508d04 | 2011-12-15 18:21:18 +0000 | [diff] [blame] | 5451 | } |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5452 | } |
| 5453 | |
| 5454 | // Allocate a new MachineSDNode. |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 5455 | N = new (NodeAllocator) MachineSDNode(~Opcode, DL.getIROrder(), |
| 5456 | DL.getDebugLoc(), VTs); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5457 | |
| 5458 | // Initialize the operands list. |
| 5459 | if (NumOps > array_lengthof(N->LocalOperands)) |
| 5460 | // We're creating a final node that will live unmorphed for the |
| 5461 | // remainder of the current SelectionDAG iteration, so we can allocate |
| 5462 | // the operands directly out of a pool with no recycling metadata. |
| 5463 | N->InitOperands(OperandAllocator.Allocate<SDUse>(NumOps), |
| 5464 | Ops, NumOps); |
| 5465 | else |
| 5466 | N->InitOperands(N->LocalOperands, Ops, NumOps); |
| 5467 | N->OperandsNeedDelete = false; |
| 5468 | |
| 5469 | if (DoCSE) |
| 5470 | CSEMap.InsertNode(N, IP); |
| 5471 | |
| 5472 | AllNodes.push_back(N); |
| 5473 | #ifndef NDEBUG |
Duncan Sands | 59d2dad | 2010-11-20 11:25:00 +0000 | [diff] [blame] | 5474 | VerifyMachineNode(N); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5475 | #endif |
| 5476 | return N; |
Dale Johannesen | e8c1733 | 2009-01-29 00:47:48 +0000 | [diff] [blame] | 5477 | } |
Evan Cheng | 6ae46c4 | 2006-02-09 07:15:23 +0000 | [diff] [blame] | 5478 | |
Dan Gohman | 6a402dc | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 5479 | /// getTargetExtractSubreg - A convenience function for creating |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 5480 | /// TargetOpcode::EXTRACT_SUBREG nodes. |
Dan Gohman | 6a402dc | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 5481 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5482 | SelectionDAG::getTargetExtractSubreg(int SRIdx, SDLoc DL, EVT VT, |
Dan Gohman | 6a402dc | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 5483 | SDValue Operand) { |
| 5484 | SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 5485 | SDNode *Subreg = getMachineNode(TargetOpcode::EXTRACT_SUBREG, DL, |
Dan Gohman | 602b0c8 | 2009-09-25 18:54:59 +0000 | [diff] [blame] | 5486 | VT, Operand, SRIdxVal); |
Dan Gohman | 6a402dc | 2009-08-19 18:16:17 +0000 | [diff] [blame] | 5487 | return SDValue(Subreg, 0); |
| 5488 | } |
| 5489 | |
Bob Wilson | 5fcbf0d | 2009-10-08 18:49:46 +0000 | [diff] [blame] | 5490 | /// getTargetInsertSubreg - A convenience function for creating |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 5491 | /// TargetOpcode::INSERT_SUBREG nodes. |
Bob Wilson | 5fcbf0d | 2009-10-08 18:49:46 +0000 | [diff] [blame] | 5492 | SDValue |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5493 | SelectionDAG::getTargetInsertSubreg(int SRIdx, SDLoc DL, EVT VT, |
Bob Wilson | 5fcbf0d | 2009-10-08 18:49:46 +0000 | [diff] [blame] | 5494 | SDValue Operand, SDValue Subreg) { |
| 5495 | SDValue SRIdxVal = getTargetConstant(SRIdx, MVT::i32); |
Chris Lattner | 518bb53 | 2010-02-09 19:54:29 +0000 | [diff] [blame] | 5496 | SDNode *Result = getMachineNode(TargetOpcode::INSERT_SUBREG, DL, |
Bob Wilson | 5fcbf0d | 2009-10-08 18:49:46 +0000 | [diff] [blame] | 5497 | VT, Operand, Subreg, SRIdxVal); |
| 5498 | return SDValue(Result, 0); |
| 5499 | } |
| 5500 | |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 5501 | /// getNodeIfExists - Get the specified node if it's already available, or |
| 5502 | /// else return NULL. |
| 5503 | SDNode *SelectionDAG::getNodeIfExists(unsigned Opcode, SDVTList VTList, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5504 | const SDValue *Ops, unsigned NumOps) { |
Chris Lattner | f1b4eaf | 2010-12-21 02:38:05 +0000 | [diff] [blame] | 5505 | if (VTList.VTs[VTList.NumVTs-1] != MVT::Glue) { |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 5506 | FoldingSetNodeID ID; |
| 5507 | AddNodeIDNode(ID, Opcode, VTList, Ops, NumOps); |
| 5508 | void *IP = 0; |
Bill Wendling | b4e6a5d | 2009-12-18 23:32:53 +0000 | [diff] [blame] | 5509 | if (SDNode *E = CSEMap.FindNodeOrInsertPos(ID, IP)) |
Evan Cheng | 08b1173 | 2008-03-22 01:55:50 +0000 | [diff] [blame] | 5510 | return E; |
| 5511 | } |
| 5512 | return NULL; |
| 5513 | } |
| 5514 | |
Evan Cheng | 31441b7 | 2010-03-29 20:48:30 +0000 | [diff] [blame] | 5515 | /// getDbgValue - Creates a SDDbgValue node. |
| 5516 | /// |
| 5517 | SDDbgValue * |
| 5518 | SelectionDAG::getDbgValue(MDNode *MDPtr, SDNode *N, unsigned R, uint64_t Off, |
| 5519 | DebugLoc DL, unsigned O) { |
| 5520 | return new (Allocator) SDDbgValue(MDPtr, N, R, Off, DL, O); |
| 5521 | } |
| 5522 | |
| 5523 | SDDbgValue * |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 5524 | SelectionDAG::getDbgValue(MDNode *MDPtr, const Value *C, uint64_t Off, |
Evan Cheng | 31441b7 | 2010-03-29 20:48:30 +0000 | [diff] [blame] | 5525 | DebugLoc DL, unsigned O) { |
| 5526 | return new (Allocator) SDDbgValue(MDPtr, C, Off, DL, O); |
| 5527 | } |
| 5528 | |
| 5529 | SDDbgValue * |
| 5530 | SelectionDAG::getDbgValue(MDNode *MDPtr, unsigned FI, uint64_t Off, |
| 5531 | DebugLoc DL, unsigned O) { |
| 5532 | return new (Allocator) SDDbgValue(MDPtr, FI, Off, DL, O); |
| 5533 | } |
| 5534 | |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5535 | namespace { |
| 5536 | |
Dan Gohman | ba72b0c | 2010-03-04 19:11:28 +0000 | [diff] [blame] | 5537 | /// RAUWUpdateListener - Helper for ReplaceAllUsesWith - When the node |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5538 | /// pointed to by a use iterator is deleted, increment the use iterator |
| 5539 | /// so that it doesn't dangle. |
| 5540 | /// |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5541 | class RAUWUpdateListener : public SelectionDAG::DAGUpdateListener { |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5542 | SDNode::use_iterator &UI; |
| 5543 | SDNode::use_iterator &UE; |
| 5544 | |
| 5545 | virtual void NodeDeleted(SDNode *N, SDNode *E) { |
| 5546 | // Increment the iterator as needed. |
| 5547 | while (UI != UE && N == *UI) |
| 5548 | ++UI; |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5549 | } |
| 5550 | |
| 5551 | public: |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5552 | RAUWUpdateListener(SelectionDAG &d, |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5553 | SDNode::use_iterator &ui, |
| 5554 | SDNode::use_iterator &ue) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5555 | : SelectionDAG::DAGUpdateListener(d), UI(ui), UE(ue) {} |
Dan Gohman | a72d2a2 | 2010-03-03 21:33:37 +0000 | [diff] [blame] | 5556 | }; |
| 5557 | |
| 5558 | } |
| 5559 | |
Evan Cheng | 99157a0 | 2006-08-07 22:13:29 +0000 | [diff] [blame] | 5560 | /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 5561 | /// This can cause recursive merging of nodes in the DAG. |
| 5562 | /// |
Chris Lattner | 11d049c | 2008-02-03 03:35:22 +0000 | [diff] [blame] | 5563 | /// This version assumes From has a single result value. |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5564 | /// |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5565 | void SelectionDAG::ReplaceAllUsesWith(SDValue FromN, SDValue To) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5566 | SDNode *From = FromN.getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5567 | assert(From->getNumValues() == 1 && FromN.getResNo() == 0 && |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5568 | "Cannot replace with this method!"); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5569 | assert(From != To.getNode() && "Cannot replace uses of with self"); |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5570 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5571 | // Iterate over all the existing uses of From. New uses will be added |
| 5572 | // to the beginning of the use list, which we avoid visiting. |
| 5573 | // This specifically avoids visiting uses of From that arise while the |
| 5574 | // replacement is happening, because any such uses would be the result |
| 5575 | // of CSE: If an existing node looks like From after one of its operands |
| 5576 | // is replaced by To, we don't want to replace of all its users with To |
| 5577 | // too. See PR3018 for more info. |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5578 | SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5579 | RAUWUpdateListener Listener(*this, UI, UE); |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5580 | while (UI != UE) { |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5581 | SDNode *User = *UI; |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5582 | |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 5583 | // This node is about to morph, remove its old self from the CSE maps. |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5584 | RemoveNodeFromCSEMaps(User); |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5585 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5586 | // A user can appear in a use list multiple times, and when this |
| 5587 | // happens the uses are usually next to each other in the list. |
| 5588 | // To help reduce the number of CSE recomputations, process all |
| 5589 | // the uses of this user that we can find this way. |
| 5590 | do { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5591 | SDUse &Use = UI.getUse(); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5592 | ++UI; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5593 | Use.set(To); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5594 | } while (UI != UE && *UI == User); |
| 5595 | |
| 5596 | // Now that we have modified User, add it back to the CSE maps. If it |
| 5597 | // already exists there, recursively merge the results together. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5598 | AddModifiedNodeToCSEMaps(User); |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5599 | } |
Dan Gohman | 65fd656 | 2011-11-03 21:49:52 +0000 | [diff] [blame] | 5600 | |
| 5601 | // If we just RAUW'd the root, take note. |
| 5602 | if (FromN == getRoot()) |
| 5603 | setRoot(To); |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5604 | } |
| 5605 | |
| 5606 | /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. |
| 5607 | /// This can cause recursive merging of nodes in the DAG. |
| 5608 | /// |
Dan Gohman | c23e496 | 2009-04-15 20:06:30 +0000 | [diff] [blame] | 5609 | /// This version assumes that for each value of From, there is a |
| 5610 | /// corresponding value in To in the same position with the same type. |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5611 | /// |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5612 | void SelectionDAG::ReplaceAllUsesWith(SDNode *From, SDNode *To) { |
Dan Gohman | c23e496 | 2009-04-15 20:06:30 +0000 | [diff] [blame] | 5613 | #ifndef NDEBUG |
| 5614 | for (unsigned i = 0, e = From->getNumValues(); i != e; ++i) |
| 5615 | assert((!From->hasAnyUseOfValue(i) || |
| 5616 | From->getValueType(i) == To->getValueType(i)) && |
| 5617 | "Cannot use this version of ReplaceAllUsesWith!"); |
| 5618 | #endif |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5619 | |
| 5620 | // Handle the trivial case. |
| 5621 | if (From == To) |
| 5622 | return; |
| 5623 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5624 | // Iterate over just the existing users of From. See the comments in |
| 5625 | // the ReplaceAllUsesWith above. |
| 5626 | SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5627 | RAUWUpdateListener Listener(*this, UI, UE); |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5628 | while (UI != UE) { |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5629 | SDNode *User = *UI; |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5630 | |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5631 | // This node is about to morph, remove its old self from the CSE maps. |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5632 | RemoveNodeFromCSEMaps(User); |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5633 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5634 | // A user can appear in a use list multiple times, and when this |
| 5635 | // happens the uses are usually next to each other in the list. |
| 5636 | // To help reduce the number of CSE recomputations, process all |
| 5637 | // the uses of this user that we can find this way. |
| 5638 | do { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5639 | SDUse &Use = UI.getUse(); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5640 | ++UI; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5641 | Use.setNode(To); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5642 | } while (UI != UE && *UI == User); |
| 5643 | |
| 5644 | // Now that we have modified User, add it back to the CSE maps. If it |
| 5645 | // already exists there, recursively merge the results together. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5646 | AddModifiedNodeToCSEMaps(User); |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 5647 | } |
Dan Gohman | 65fd656 | 2011-11-03 21:49:52 +0000 | [diff] [blame] | 5648 | |
| 5649 | // If we just RAUW'd the root, take note. |
| 5650 | if (From == getRoot().getNode()) |
| 5651 | setRoot(SDValue(To, getRoot().getResNo())); |
Chris Lattner | 8b8749f | 2005-08-17 19:00:20 +0000 | [diff] [blame] | 5652 | } |
| 5653 | |
Chris Lattner | 8b52f21 | 2005-08-26 18:36:28 +0000 | [diff] [blame] | 5654 | /// ReplaceAllUsesWith - Modify anything using 'From' to use 'To' instead. |
| 5655 | /// This can cause recursive merging of nodes in the DAG. |
| 5656 | /// |
| 5657 | /// This version can replace From with any result values. To must match the |
| 5658 | /// number and types of values returned by From. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5659 | void SelectionDAG::ReplaceAllUsesWith(SDNode *From, const SDValue *To) { |
Chris Lattner | 11d049c | 2008-02-03 03:35:22 +0000 | [diff] [blame] | 5660 | if (From->getNumValues() == 1) // Handle the simple case efficiently. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5661 | return ReplaceAllUsesWith(SDValue(From, 0), To[0]); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 5662 | |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5663 | // Iterate over just the existing users of From. See the comments in |
| 5664 | // the ReplaceAllUsesWith above. |
| 5665 | SDNode::use_iterator UI = From->use_begin(), UE = From->use_end(); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5666 | RAUWUpdateListener Listener(*this, UI, UE); |
Dan Gohman | dbe664a | 2009-01-19 21:44:21 +0000 | [diff] [blame] | 5667 | while (UI != UE) { |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5668 | SDNode *User = *UI; |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5669 | |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 5670 | // This node is about to morph, remove its old self from the CSE maps. |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5671 | RemoveNodeFromCSEMaps(User); |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 5672 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5673 | // A user can appear in a use list multiple times, and when this |
| 5674 | // happens the uses are usually next to each other in the list. |
| 5675 | // To help reduce the number of CSE recomputations, process all |
| 5676 | // the uses of this user that we can find this way. |
| 5677 | do { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5678 | SDUse &Use = UI.getUse(); |
| 5679 | const SDValue &ToOp = To[Use.getResNo()]; |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5680 | ++UI; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5681 | Use.set(ToOp); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5682 | } while (UI != UE && *UI == User); |
| 5683 | |
| 5684 | // Now that we have modified User, add it back to the CSE maps. If it |
| 5685 | // already exists there, recursively merge the results together. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5686 | AddModifiedNodeToCSEMaps(User); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 5687 | } |
Dan Gohman | 65fd656 | 2011-11-03 21:49:52 +0000 | [diff] [blame] | 5688 | |
| 5689 | // If we just RAUW'd the root, take note. |
| 5690 | if (From == getRoot().getNode()) |
| 5691 | setRoot(SDValue(To[getRoot().getResNo()])); |
Chris Lattner | 7b2880c | 2005-08-24 22:44:39 +0000 | [diff] [blame] | 5692 | } |
| 5693 | |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5694 | /// ReplaceAllUsesOfValueWith - Replace any uses of From with To, leaving |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5695 | /// uses of other values produced by From.getNode() alone. The Deleted |
| 5696 | /// vector is handled the same way as for ReplaceAllUsesWith. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5697 | void SelectionDAG::ReplaceAllUsesOfValueWith(SDValue From, SDValue To){ |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5698 | // Handle the really simple, really trivial case efficiently. |
| 5699 | if (From == To) return; |
| 5700 | |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5701 | // Handle the simple, trivial, case efficiently. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 5702 | if (From.getNode()->getNumValues() == 1) { |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5703 | ReplaceAllUsesWith(From, To); |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5704 | return; |
| 5705 | } |
Chris Lattner | f8dc061 | 2008-02-03 06:49:24 +0000 | [diff] [blame] | 5706 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5707 | // Iterate over just the existing users of From. See the comments in |
| 5708 | // the ReplaceAllUsesWith above. |
| 5709 | SDNode::use_iterator UI = From.getNode()->use_begin(), |
| 5710 | UE = From.getNode()->use_end(); |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5711 | RAUWUpdateListener Listener(*this, UI, UE); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5712 | while (UI != UE) { |
| 5713 | SDNode *User = *UI; |
| 5714 | bool UserRemovedFromCSEMaps = false; |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5715 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5716 | // A user can appear in a use list multiple times, and when this |
| 5717 | // happens the uses are usually next to each other in the list. |
| 5718 | // To help reduce the number of CSE recomputations, process all |
| 5719 | // the uses of this user that we can find this way. |
| 5720 | do { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5721 | SDUse &Use = UI.getUse(); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5722 | |
| 5723 | // Skip uses of different values from the same node. |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5724 | if (Use.getResNo() != From.getResNo()) { |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5725 | ++UI; |
| 5726 | continue; |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5727 | } |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5728 | |
| 5729 | // If this node hasn't been modified yet, it's still in the CSE maps, |
| 5730 | // so remove its old self from the CSE maps. |
| 5731 | if (!UserRemovedFromCSEMaps) { |
| 5732 | RemoveNodeFromCSEMaps(User); |
| 5733 | UserRemovedFromCSEMaps = true; |
| 5734 | } |
| 5735 | |
| 5736 | ++UI; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5737 | Use.set(To); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5738 | } while (UI != UE && *UI == User); |
| 5739 | |
| 5740 | // We are iterating over all uses of the From node, so if a use |
| 5741 | // doesn't use the specific value, no changes are made. |
| 5742 | if (!UserRemovedFromCSEMaps) |
| 5743 | continue; |
| 5744 | |
Chris Lattner | 01d029b | 2007-10-15 06:10:22 +0000 | [diff] [blame] | 5745 | // Now that we have modified User, add it back to the CSE maps. If it |
| 5746 | // already exists there, recursively merge the results together. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5747 | AddModifiedNodeToCSEMaps(User); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5748 | } |
Dan Gohman | 65fd656 | 2011-11-03 21:49:52 +0000 | [diff] [blame] | 5749 | |
| 5750 | // If we just RAUW'd the root, take note. |
| 5751 | if (From == getRoot()) |
| 5752 | setRoot(To); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5753 | } |
| 5754 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5755 | namespace { |
| 5756 | /// UseMemo - This class is used by SelectionDAG::ReplaceAllUsesOfValuesWith |
| 5757 | /// to record information about a use. |
| 5758 | struct UseMemo { |
| 5759 | SDNode *User; |
| 5760 | unsigned Index; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5761 | SDUse *Use; |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5762 | }; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5763 | |
| 5764 | /// operator< - Sort Memos by User. |
| 5765 | bool operator<(const UseMemo &L, const UseMemo &R) { |
| 5766 | return (intptr_t)L.User < (intptr_t)R.User; |
| 5767 | } |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5768 | } |
| 5769 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5770 | /// ReplaceAllUsesOfValuesWith - Replace any uses of From with To, leaving |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5771 | /// uses of other values produced by From.getNode() alone. The same value |
| 5772 | /// may appear in both the From and To list. The Deleted vector is |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5773 | /// handled the same way as for ReplaceAllUsesWith. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 5774 | void SelectionDAG::ReplaceAllUsesOfValuesWith(const SDValue *From, |
| 5775 | const SDValue *To, |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5776 | unsigned Num){ |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5777 | // Handle the simple, trivial case efficiently. |
| 5778 | if (Num == 1) |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5779 | return ReplaceAllUsesOfValueWith(*From, *To); |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5780 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5781 | // Read up all the uses and make records of them. This helps |
| 5782 | // processing new uses that are introduced during the |
| 5783 | // replacement process. |
| 5784 | SmallVector<UseMemo, 4> Uses; |
| 5785 | for (unsigned i = 0; i != Num; ++i) { |
| 5786 | unsigned FromResNo = From[i].getResNo(); |
| 5787 | SDNode *FromNode = From[i].getNode(); |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 5788 | for (SDNode::use_iterator UI = FromNode->use_begin(), |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5789 | E = FromNode->use_end(); UI != E; ++UI) { |
| 5790 | SDUse &Use = UI.getUse(); |
| 5791 | if (Use.getResNo() == FromResNo) { |
| 5792 | UseMemo Memo = { *UI, i, &Use }; |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5793 | Uses.push_back(Memo); |
| 5794 | } |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5795 | } |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5796 | } |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5797 | |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5798 | // Sort the uses, so that all the uses from a given User are together. |
| 5799 | std::sort(Uses.begin(), Uses.end()); |
| 5800 | |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5801 | for (unsigned UseIndex = 0, UseIndexEnd = Uses.size(); |
| 5802 | UseIndex != UseIndexEnd; ) { |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5803 | // We know that this user uses some value of From. If it is the right |
| 5804 | // value, update it. |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5805 | SDNode *User = Uses[UseIndex].User; |
| 5806 | |
| 5807 | // This node is about to morph, remove its old self from the CSE maps. |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5808 | RemoveNodeFromCSEMaps(User); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5809 | |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5810 | // The Uses array is sorted, so all the uses for a given User |
| 5811 | // are next to each other in the list. |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5812 | // To help reduce the number of CSE recomputations, process all |
| 5813 | // the uses of this user that we can find this way. |
| 5814 | do { |
| 5815 | unsigned i = Uses[UseIndex].Index; |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5816 | SDUse &Use = *Uses[UseIndex].Use; |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5817 | ++UseIndex; |
| 5818 | |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 5819 | Use.set(To[i]); |
Dan Gohman | 3994610 | 2009-01-25 16:29:12 +0000 | [diff] [blame] | 5820 | } while (UseIndex != UseIndexEnd && Uses[UseIndex].User == User); |
| 5821 | |
Dan Gohman | e8be6c6 | 2008-07-17 19:10:17 +0000 | [diff] [blame] | 5822 | // Now that we have modified User, add it back to the CSE maps. If it |
| 5823 | // already exists there, recursively merge the results together. |
Jakob Stoklund Olesen | bc7d448 | 2012-04-20 22:08:46 +0000 | [diff] [blame] | 5824 | AddModifiedNodeToCSEMaps(User); |
Chris Lattner | 012f241 | 2006-02-17 21:58:01 +0000 | [diff] [blame] | 5825 | } |
| 5826 | } |
| 5827 | |
Evan Cheng | e6f35d8 | 2006-08-01 08:20:41 +0000 | [diff] [blame] | 5828 | /// AssignTopologicalOrder - Assign a unique node id for each node in the DAG |
Evan Cheng | c384d6c | 2006-08-02 22:00:34 +0000 | [diff] [blame] | 5829 | /// based on their topological order. It returns the maximum id and a vector |
| 5830 | /// of the SDNodes* in assigned order by reference. |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5831 | unsigned SelectionDAG::AssignTopologicalOrder() { |
Evan Cheng | c384d6c | 2006-08-02 22:00:34 +0000 | [diff] [blame] | 5832 | |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5833 | unsigned DAGSize = 0; |
Evan Cheng | e6f35d8 | 2006-08-01 08:20:41 +0000 | [diff] [blame] | 5834 | |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5835 | // SortedPos tracks the progress of the algorithm. Nodes before it are |
| 5836 | // sorted, nodes after it are unsorted. When the algorithm completes |
| 5837 | // it is at the end of the list. |
| 5838 | allnodes_iterator SortedPos = allnodes_begin(); |
| 5839 | |
Dan Gohman | 3ebd0ee | 2008-11-21 19:10:41 +0000 | [diff] [blame] | 5840 | // Visit all the nodes. Move nodes with no operands to the front of |
| 5841 | // the list immediately. Annotate nodes that do have operands with their |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5842 | // operand count. Before we do this, the Node Id fields of the nodes |
| 5843 | // may contain arbitrary values. After, the Node Id fields for nodes |
| 5844 | // before SortedPos will contain the topological sort index, and the |
| 5845 | // Node Id fields for nodes At SortedPos and after will contain the |
| 5846 | // count of outstanding operands. |
| 5847 | for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ) { |
| 5848 | SDNode *N = I++; |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 5849 | checkForCycles(N); |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5850 | unsigned Degree = N->getNumOperands(); |
| 5851 | if (Degree == 0) { |
| 5852 | // A node with no uses, add it to the result array immediately. |
| 5853 | N->setNodeId(DAGSize++); |
| 5854 | allnodes_iterator Q = N; |
| 5855 | if (Q != SortedPos) |
| 5856 | SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(Q)); |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5857 | assert(SortedPos != AllNodes.end() && "Overran node list"); |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5858 | ++SortedPos; |
| 5859 | } else { |
| 5860 | // Temporarily use the Node Id as scratch space for the degree count. |
| 5861 | N->setNodeId(Degree); |
Evan Cheng | e6f35d8 | 2006-08-01 08:20:41 +0000 | [diff] [blame] | 5862 | } |
| 5863 | } |
| 5864 | |
Chad Rosier | f496dea | 2012-05-21 17:13:41 +0000 | [diff] [blame] | 5865 | // Visit all the nodes. As we iterate, move nodes into sorted order, |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5866 | // such that by the time the end is reached all nodes will be sorted. |
| 5867 | for (allnodes_iterator I = allnodes_begin(),E = allnodes_end(); I != E; ++I) { |
| 5868 | SDNode *N = I; |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 5869 | checkForCycles(N); |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5870 | // N is in sorted position, so all its uses have one less operand |
| 5871 | // that needs to be sorted. |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5872 | for (SDNode::use_iterator UI = N->use_begin(), UE = N->use_end(); |
| 5873 | UI != UE; ++UI) { |
| 5874 | SDNode *P = *UI; |
| 5875 | unsigned Degree = P->getNodeId(); |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5876 | assert(Degree != 0 && "Invalid node degree"); |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5877 | --Degree; |
| 5878 | if (Degree == 0) { |
| 5879 | // All of P's operands are sorted, so P may sorted now. |
| 5880 | P->setNodeId(DAGSize++); |
| 5881 | if (P != SortedPos) |
| 5882 | SortedPos = AllNodes.insert(SortedPos, AllNodes.remove(P)); |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5883 | assert(SortedPos != AllNodes.end() && "Overran node list"); |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5884 | ++SortedPos; |
| 5885 | } else { |
| 5886 | // Update P's outstanding operand count. |
| 5887 | P->setNodeId(Degree); |
| 5888 | } |
| 5889 | } |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5890 | if (I == SortedPos) { |
David Greene | 3914370 | 2010-02-09 23:03:05 +0000 | [diff] [blame] | 5891 | #ifndef NDEBUG |
| 5892 | SDNode *S = ++I; |
| 5893 | dbgs() << "Overran sorted position:\n"; |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5894 | S->dumprFull(); |
David Greene | 3914370 | 2010-02-09 23:03:05 +0000 | [diff] [blame] | 5895 | #endif |
| 5896 | llvm_unreachable(0); |
David Greene | 221925e | 2010-01-20 00:59:23 +0000 | [diff] [blame] | 5897 | } |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5898 | } |
| 5899 | |
| 5900 | assert(SortedPos == AllNodes.end() && |
| 5901 | "Topological sort incomplete!"); |
| 5902 | assert(AllNodes.front().getOpcode() == ISD::EntryToken && |
| 5903 | "First node in topological sort is not the entry token!"); |
| 5904 | assert(AllNodes.front().getNodeId() == 0 && |
| 5905 | "First node in topological sort has non-zero id!"); |
| 5906 | assert(AllNodes.front().getNumOperands() == 0 && |
| 5907 | "First node in topological sort has operands!"); |
| 5908 | assert(AllNodes.back().getNodeId() == (int)DAGSize-1 && |
| 5909 | "Last node in topologic sort has unexpected id!"); |
| 5910 | assert(AllNodes.back().use_empty() && |
| 5911 | "Last node in topologic sort has users!"); |
Dan Gohman | 3ebd0ee | 2008-11-21 19:10:41 +0000 | [diff] [blame] | 5912 | assert(DAGSize == allnodes_size() && "Node count mismatch!"); |
Dan Gohman | f06c835 | 2008-09-30 18:30:35 +0000 | [diff] [blame] | 5913 | return DAGSize; |
Evan Cheng | e6f35d8 | 2006-08-01 08:20:41 +0000 | [diff] [blame] | 5914 | } |
| 5915 | |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 5916 | /// AddDbgValue - Add a dbg_value SDNode. If SD is non-null that means the |
| 5917 | /// value is produced by SD. |
Dale Johannesen | fdb42fa | 2010-04-26 20:06:49 +0000 | [diff] [blame] | 5918 | void SelectionDAG::AddDbgValue(SDDbgValue *DB, SDNode *SD, bool isParameter) { |
| 5919 | DbgInfo->add(DB, SD, isParameter); |
Evan Cheng | bfcb305 | 2010-03-25 01:38:16 +0000 | [diff] [blame] | 5920 | if (SD) |
| 5921 | SD->setHasDebugValue(true); |
Dale Johannesen | bfdf7f3 | 2010-03-10 22:13:47 +0000 | [diff] [blame] | 5922 | } |
Evan Cheng | 091cba1 | 2006-07-27 06:39:06 +0000 | [diff] [blame] | 5923 | |
Devang Patel | a2e868d | 2011-01-25 23:27:42 +0000 | [diff] [blame] | 5924 | /// TransferDbgValues - Transfer SDDbgValues. |
| 5925 | void SelectionDAG::TransferDbgValues(SDValue From, SDValue To) { |
| 5926 | if (From == To || !From.getNode()->getHasDebugValue()) |
| 5927 | return; |
| 5928 | SDNode *FromNode = From.getNode(); |
| 5929 | SDNode *ToNode = To.getNode(); |
Benjamin Kramer | 22a54c1 | 2011-06-18 13:13:44 +0000 | [diff] [blame] | 5930 | ArrayRef<SDDbgValue *> DVs = GetDbgValues(FromNode); |
Devang Patel | a778f5c | 2011-02-18 22:43:42 +0000 | [diff] [blame] | 5931 | SmallVector<SDDbgValue *, 2> ClonedDVs; |
Benjamin Kramer | 22a54c1 | 2011-06-18 13:13:44 +0000 | [diff] [blame] | 5932 | for (ArrayRef<SDDbgValue *>::iterator I = DVs.begin(), E = DVs.end(); |
Devang Patel | a2e868d | 2011-01-25 23:27:42 +0000 | [diff] [blame] | 5933 | I != E; ++I) { |
Devang Patel | a778f5c | 2011-02-18 22:43:42 +0000 | [diff] [blame] | 5934 | SDDbgValue *Dbg = *I; |
| 5935 | if (Dbg->getKind() == SDDbgValue::SDNODE) { |
| 5936 | SDDbgValue *Clone = getDbgValue(Dbg->getMDPtr(), ToNode, To.getResNo(), |
| 5937 | Dbg->getOffset(), Dbg->getDebugLoc(), |
| 5938 | Dbg->getOrder()); |
| 5939 | ClonedDVs.push_back(Clone); |
Devang Patel | a2e868d | 2011-01-25 23:27:42 +0000 | [diff] [blame] | 5940 | } |
| 5941 | } |
Craig Topper | f22fd3f | 2013-07-03 05:11:49 +0000 | [diff] [blame] | 5942 | for (SmallVectorImpl<SDDbgValue *>::iterator I = ClonedDVs.begin(), |
Devang Patel | a778f5c | 2011-02-18 22:43:42 +0000 | [diff] [blame] | 5943 | E = ClonedDVs.end(); I != E; ++I) |
| 5944 | AddDbgValue(*I, ToNode, false); |
Devang Patel | a2e868d | 2011-01-25 23:27:42 +0000 | [diff] [blame] | 5945 | } |
| 5946 | |
Jim Laskey | 58b968b | 2005-08-17 20:08:02 +0000 | [diff] [blame] | 5947 | //===----------------------------------------------------------------------===// |
| 5948 | // SDNode Class |
| 5949 | //===----------------------------------------------------------------------===// |
Chris Lattner | 149c58c | 2005-08-16 18:17:10 +0000 | [diff] [blame] | 5950 | |
Chris Lattner | 48b8592 | 2007-02-04 02:41:42 +0000 | [diff] [blame] | 5951 | HandleSDNode::~HandleSDNode() { |
Dan Gohman | 0fe9c6e | 2008-07-07 20:57:48 +0000 | [diff] [blame] | 5952 | DropOperands(); |
Chris Lattner | 48b8592 | 2007-02-04 02:41:42 +0000 | [diff] [blame] | 5953 | } |
| 5954 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5955 | GlobalAddressSDNode::GlobalAddressSDNode(unsigned Opc, unsigned Order, |
| 5956 | DebugLoc DL, const GlobalValue *GA, |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 5957 | EVT VT, int64_t o, unsigned char TF) |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5958 | : SDNode(Opc, Order, DL, getSDVTList(VT)), Offset(o), TargetFlags(TF) { |
Dan Gohman | 383b5f6 | 2010-04-17 15:32:28 +0000 | [diff] [blame] | 5959 | TheGlobal = GA; |
Lauro Ramos Venancio | 2c5c111 | 2007-04-21 20:56:26 +0000 | [diff] [blame] | 5960 | } |
Chris Lattner | 48b8592 | 2007-02-04 02:41:42 +0000 | [diff] [blame] | 5961 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5962 | MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs, |
| 5963 | EVT memvt, MachineMemOperand *mmo) |
| 5964 | : SDNode(Opc, Order, dl, VTs), MemoryVT(memvt), MMO(mmo) { |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 5965 | SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5966 | MMO->isNonTemporal(), MMO->isInvariant()); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5967 | assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!"); |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 5968 | assert(isNonTemporal() == MMO->isNonTemporal() && |
| 5969 | "Non-temporal encoding error!"); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5970 | assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!"); |
Dale Johannesen | 3edb43e | 2009-01-28 21:18:29 +0000 | [diff] [blame] | 5971 | } |
| 5972 | |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5973 | MemSDNode::MemSDNode(unsigned Opc, unsigned Order, DebugLoc dl, SDVTList VTs, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5974 | const SDValue *Ops, unsigned NumOps, EVT memvt, |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5975 | MachineMemOperand *mmo) |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 5976 | : SDNode(Opc, Order, dl, VTs, Ops, NumOps), |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5977 | MemoryVT(memvt), MMO(mmo) { |
David Greene | 1157f79 | 2010-02-17 20:21:42 +0000 | [diff] [blame] | 5978 | SubclassData = encodeMemSDNodeFlags(0, ISD::UNINDEXED, MMO->isVolatile(), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 5979 | MMO->isNonTemporal(), MMO->isInvariant()); |
Dan Gohman | c76909a | 2009-09-25 20:36:54 +0000 | [diff] [blame] | 5980 | assert(isVolatile() == MMO->isVolatile() && "Volatile encoding error!"); |
| 5981 | assert(memvt.getStoreSize() == MMO->getSize() && "Size mismatch!"); |
Mon P Wang | 2887310 | 2008-06-25 08:15:39 +0000 | [diff] [blame] | 5982 | } |
| 5983 | |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 5984 | /// Profile - Gather unique data for the node. |
| 5985 | /// |
Dan Gohman | b8d2f55 | 2008-08-20 15:58:01 +0000 | [diff] [blame] | 5986 | void SDNode::Profile(FoldingSetNodeID &ID) const { |
Jim Laskey | 583bd47 | 2006-10-27 23:46:08 +0000 | [diff] [blame] | 5987 | AddNodeIDNode(ID, this); |
| 5988 | } |
| 5989 | |
Owen Anderson | d8110fb | 2009-08-25 22:27:22 +0000 | [diff] [blame] | 5990 | namespace { |
| 5991 | struct EVTArray { |
| 5992 | std::vector<EVT> VTs; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 5993 | |
Owen Anderson | d8110fb | 2009-08-25 22:27:22 +0000 | [diff] [blame] | 5994 | EVTArray() { |
| 5995 | VTs.reserve(MVT::LAST_VALUETYPE); |
| 5996 | for (unsigned i = 0; i < MVT::LAST_VALUETYPE; ++i) |
| 5997 | VTs.push_back(MVT((MVT::SimpleValueType)i)); |
| 5998 | } |
| 5999 | }; |
| 6000 | } |
| 6001 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6002 | static ManagedStatic<std::set<EVT, EVT::compareRawBits> > EVTs; |
Owen Anderson | d8110fb | 2009-08-25 22:27:22 +0000 | [diff] [blame] | 6003 | static ManagedStatic<EVTArray> SimpleVTArray; |
Chris Lattner | 895a55e | 2009-08-22 04:07:34 +0000 | [diff] [blame] | 6004 | static ManagedStatic<sys::SmartMutex<true> > VTMutex; |
Owen Anderson | b445908 | 2009-06-25 17:09:00 +0000 | [diff] [blame] | 6005 | |
Chris Lattner | a325511 | 2005-11-08 23:30:28 +0000 | [diff] [blame] | 6006 | /// getValueTypeList - Return a pointer to the specified value type. |
| 6007 | /// |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6008 | const EVT *SDNode::getValueTypeList(EVT VT) { |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 6009 | if (VT.isExtended()) { |
Owen Anderson | 02b1034 | 2009-08-22 06:32:36 +0000 | [diff] [blame] | 6010 | sys::SmartScopedLock<true> Lock(*VTMutex); |
Owen Anderson | b445908 | 2009-06-25 17:09:00 +0000 | [diff] [blame] | 6011 | return &(*EVTs->insert(VT).first); |
Duncan Sands | af47b11 | 2007-10-16 09:56:48 +0000 | [diff] [blame] | 6012 | } else { |
Duncan Sands | cdfad36 | 2010-11-03 12:17:33 +0000 | [diff] [blame] | 6013 | assert(VT.getSimpleVT() < MVT::LAST_VALUETYPE && |
Duncan Sands | ad017dc | 2010-05-10 04:54:28 +0000 | [diff] [blame] | 6014 | "Value type out of range!"); |
Owen Anderson | d8110fb | 2009-08-25 22:27:22 +0000 | [diff] [blame] | 6015 | return &SimpleVTArray->VTs[VT.getSimpleVT().SimpleTy]; |
Duncan Sands | af47b11 | 2007-10-16 09:56:48 +0000 | [diff] [blame] | 6016 | } |
Chris Lattner | a325511 | 2005-11-08 23:30:28 +0000 | [diff] [blame] | 6017 | } |
Duncan Sands | af47b11 | 2007-10-16 09:56:48 +0000 | [diff] [blame] | 6018 | |
Chris Lattner | 5c88456 | 2005-01-12 18:37:47 +0000 | [diff] [blame] | 6019 | /// hasNUsesOfValue - Return true if there are exactly NUSES uses of the |
| 6020 | /// indicated value. This method ignores uses of other values defined by this |
| 6021 | /// operation. |
Evan Cheng | 4ee6211 | 2006-02-05 06:29:23 +0000 | [diff] [blame] | 6022 | bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) const { |
Chris Lattner | 5c88456 | 2005-01-12 18:37:47 +0000 | [diff] [blame] | 6023 | assert(Value < getNumValues() && "Bad value!"); |
| 6024 | |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 6025 | // TODO: Only iterate over uses of a given value of the node |
| 6026 | for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) { |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 6027 | if (UI.getUse().getResNo() == Value) { |
Roman Levenstein | dc1adac | 2008-04-07 10:06:32 +0000 | [diff] [blame] | 6028 | if (NUses == 0) |
| 6029 | return false; |
| 6030 | --NUses; |
| 6031 | } |
Chris Lattner | 5c88456 | 2005-01-12 18:37:47 +0000 | [diff] [blame] | 6032 | } |
| 6033 | |
| 6034 | // Found exactly the right number of uses? |
| 6035 | return NUses == 0; |
| 6036 | } |
| 6037 | |
| 6038 | |
Evan Cheng | 33d5595 | 2007-08-02 05:29:38 +0000 | [diff] [blame] | 6039 | /// hasAnyUseOfValue - Return true if there are any use of the indicated |
| 6040 | /// value. This method ignores uses of other values defined by this operation. |
| 6041 | bool SDNode::hasAnyUseOfValue(unsigned Value) const { |
| 6042 | assert(Value < getNumValues() && "Bad value!"); |
| 6043 | |
Dan Gohman | 1373c1c | 2008-07-09 22:39:01 +0000 | [diff] [blame] | 6044 | for (SDNode::use_iterator UI = use_begin(), E = use_end(); UI != E; ++UI) |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 6045 | if (UI.getUse().getResNo() == Value) |
Dan Gohman | 1373c1c | 2008-07-09 22:39:01 +0000 | [diff] [blame] | 6046 | return true; |
Evan Cheng | 33d5595 | 2007-08-02 05:29:38 +0000 | [diff] [blame] | 6047 | |
| 6048 | return false; |
| 6049 | } |
| 6050 | |
| 6051 | |
Dan Gohman | 2a62995 | 2008-07-27 18:06:42 +0000 | [diff] [blame] | 6052 | /// isOnlyUserOf - Return true if this node is the only use of N. |
Evan Cheng | e6e97e6 | 2006-11-03 07:31:32 +0000 | [diff] [blame] | 6053 | /// |
Dan Gohman | 2a62995 | 2008-07-27 18:06:42 +0000 | [diff] [blame] | 6054 | bool SDNode::isOnlyUserOf(SDNode *N) const { |
Evan Cheng | 4ee6211 | 2006-02-05 06:29:23 +0000 | [diff] [blame] | 6055 | bool Seen = false; |
| 6056 | for (SDNode::use_iterator I = N->use_begin(), E = N->use_end(); I != E; ++I) { |
Dan Gohman | 8968450 | 2008-07-27 20:43:25 +0000 | [diff] [blame] | 6057 | SDNode *User = *I; |
Evan Cheng | 4ee6211 | 2006-02-05 06:29:23 +0000 | [diff] [blame] | 6058 | if (User == this) |
| 6059 | Seen = true; |
| 6060 | else |
| 6061 | return false; |
| 6062 | } |
| 6063 | |
| 6064 | return Seen; |
| 6065 | } |
| 6066 | |
Evan Cheng | e6e97e6 | 2006-11-03 07:31:32 +0000 | [diff] [blame] | 6067 | /// isOperand - Return true if this node is an operand of N. |
| 6068 | /// |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 6069 | bool SDValue::isOperandOf(SDNode *N) const { |
Evan Cheng | bfa284f | 2006-03-03 06:42:32 +0000 | [diff] [blame] | 6070 | for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 6071 | if (*this == N->getOperand(i)) |
| 6072 | return true; |
| 6073 | return false; |
| 6074 | } |
| 6075 | |
Evan Cheng | 917be68 | 2008-03-04 00:41:45 +0000 | [diff] [blame] | 6076 | bool SDNode::isOperandOf(SDNode *N) const { |
Evan Cheng | 80d8eaa | 2006-03-03 06:24:54 +0000 | [diff] [blame] | 6077 | for (unsigned i = 0, e = N->NumOperands; i != e; ++i) |
Dan Gohman | e7852d0 | 2009-01-26 04:35:06 +0000 | [diff] [blame] | 6078 | if (this == N->OperandList[i].getNode()) |
Evan Cheng | 80d8eaa | 2006-03-03 06:24:54 +0000 | [diff] [blame] | 6079 | return true; |
| 6080 | return false; |
| 6081 | } |
Evan Cheng | 4ee6211 | 2006-02-05 06:29:23 +0000 | [diff] [blame] | 6082 | |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6083 | /// reachesChainWithoutSideEffects - Return true if this operand (which must |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6084 | /// be a chain) reaches the specified operand without crossing any |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6085 | /// side-effecting instructions on any chain path. In practice, this looks |
| 6086 | /// through token factors and non-volatile loads. In order to remain efficient, |
Owen Anderson | 14ac1dd | 2010-09-18 04:45:14 +0000 | [diff] [blame] | 6087 | /// this only looks a couple of nodes in, it does not do an exhaustive search. |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6088 | bool SDValue::reachesChainWithoutSideEffects(SDValue Dest, |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6089 | unsigned Depth) const { |
| 6090 | if (*this == Dest) return true; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6091 | |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6092 | // Don't search too deeply, we just want to be able to see through |
| 6093 | // TokenFactor's etc. |
| 6094 | if (Depth == 0) return false; |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6095 | |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6096 | // If this is a token factor, all inputs to the TF happen in parallel. If any |
Owen Anderson | 14ac1dd | 2010-09-18 04:45:14 +0000 | [diff] [blame] | 6097 | // of the operands of the TF does not reach dest, then we cannot do the xform. |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6098 | if (getOpcode() == ISD::TokenFactor) { |
| 6099 | for (unsigned i = 0, e = getNumOperands(); i != e; ++i) |
Owen Anderson | 14ac1dd | 2010-09-18 04:45:14 +0000 | [diff] [blame] | 6100 | if (!getOperand(i).reachesChainWithoutSideEffects(Dest, Depth-1)) |
| 6101 | return false; |
| 6102 | return true; |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6103 | } |
Scott Michel | fdc40a0 | 2009-02-17 22:15:04 +0000 | [diff] [blame] | 6104 | |
Chris Lattner | 572dee7 | 2008-01-16 05:49:24 +0000 | [diff] [blame] | 6105 | // Loads don't have side effects, look through them. |
| 6106 | if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(*this)) { |
| 6107 | if (!Ld->isVolatile()) |
| 6108 | return Ld->getChain().reachesChainWithoutSideEffects(Dest, Depth-1); |
| 6109 | } |
| 6110 | return false; |
| 6111 | } |
| 6112 | |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6113 | /// hasPredecessor - Return true if N is a predecessor of this node. |
| 6114 | /// N is either an operand of this node, or can be reached by recursively |
| 6115 | /// traversing up the operands. |
| 6116 | /// NOTE: This is an expensive method. Use it carefully. |
| 6117 | bool SDNode::hasPredecessor(const SDNode *N) const { |
| 6118 | SmallPtrSet<const SDNode *, 32> Visited; |
| 6119 | SmallVector<const SDNode *, 16> Worklist; |
| 6120 | return hasPredecessorHelper(N, Visited, Worklist); |
| 6121 | } |
Dan Gohman | 6688d61 | 2009-10-28 03:44:30 +0000 | [diff] [blame] | 6122 | |
Craig Topper | a0ec3f9 | 2013-07-14 04:42:23 +0000 | [diff] [blame] | 6123 | bool |
| 6124 | SDNode::hasPredecessorHelper(const SDNode *N, |
| 6125 | SmallPtrSet<const SDNode *, 32> &Visited, |
| 6126 | SmallVectorImpl<const SDNode *> &Worklist) const { |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6127 | if (Visited.empty()) { |
| 6128 | Worklist.push_back(this); |
| 6129 | } else { |
| 6130 | // Take a look in the visited set. If we've already encountered this node |
| 6131 | // we needn't search further. |
| 6132 | if (Visited.count(N)) |
| 6133 | return true; |
| 6134 | } |
| 6135 | |
| 6136 | // Haven't visited N yet. Continue the search. |
| 6137 | while (!Worklist.empty()) { |
| 6138 | const SDNode *M = Worklist.pop_back_val(); |
| 6139 | for (unsigned i = 0, e = M->getNumOperands(); i != e; ++i) { |
| 6140 | SDNode *Op = M->getOperand(i).getNode(); |
Dan Gohman | 6688d61 | 2009-10-28 03:44:30 +0000 | [diff] [blame] | 6141 | if (Visited.insert(Op)) |
| 6142 | Worklist.push_back(Op); |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6143 | if (Op == N) |
| 6144 | return true; |
Dan Gohman | 6688d61 | 2009-10-28 03:44:30 +0000 | [diff] [blame] | 6145 | } |
Lang Hames | 944520f | 2011-07-07 04:31:51 +0000 | [diff] [blame] | 6146 | } |
Dan Gohman | 6688d61 | 2009-10-28 03:44:30 +0000 | [diff] [blame] | 6147 | |
| 6148 | return false; |
Evan Cheng | c5fc57d | 2006-11-03 03:05:24 +0000 | [diff] [blame] | 6149 | } |
| 6150 | |
Evan Cheng | c548428 | 2006-10-04 00:56:09 +0000 | [diff] [blame] | 6151 | uint64_t SDNode::getConstantOperandVal(unsigned Num) const { |
| 6152 | assert(Num < NumOperands && "Invalid child # of SDNode!"); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 6153 | return cast<ConstantSDNode>(OperandList[Num])->getZExtValue(); |
Evan Cheng | c548428 | 2006-10-04 00:56:09 +0000 | [diff] [blame] | 6154 | } |
| 6155 | |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6156 | SDValue SelectionDAG::UnrollVectorOp(SDNode *N, unsigned ResNE) { |
| 6157 | assert(N->getNumValues() == 1 && |
| 6158 | "Can't unroll a vector with multiple results!"); |
| 6159 | |
| 6160 | EVT VT = N->getValueType(0); |
| 6161 | unsigned NE = VT.getVectorNumElements(); |
| 6162 | EVT EltVT = VT.getVectorElementType(); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 6163 | SDLoc dl(N); |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6164 | |
| 6165 | SmallVector<SDValue, 8> Scalars; |
| 6166 | SmallVector<SDValue, 4> Operands(N->getNumOperands()); |
| 6167 | |
| 6168 | // If ResNE is 0, fully unroll the vector op. |
| 6169 | if (ResNE == 0) |
| 6170 | ResNE = NE; |
| 6171 | else if (NE > ResNE) |
| 6172 | NE = ResNE; |
| 6173 | |
| 6174 | unsigned i; |
| 6175 | for (i= 0; i != NE; ++i) { |
Bill Wendling | d71bb56 | 2010-04-30 22:19:17 +0000 | [diff] [blame] | 6176 | for (unsigned j = 0, e = N->getNumOperands(); j != e; ++j) { |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6177 | SDValue Operand = N->getOperand(j); |
| 6178 | EVT OperandVT = Operand.getValueType(); |
| 6179 | if (OperandVT.isVector()) { |
| 6180 | // A vector operand; extract a single element. |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 6181 | const TargetLowering *TLI = TM.getTargetLowering(); |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6182 | EVT OperandEltVT = OperandVT.getVectorElementType(); |
| 6183 | Operands[j] = getNode(ISD::EXTRACT_VECTOR_ELT, dl, |
| 6184 | OperandEltVT, |
| 6185 | Operand, |
Tom Stellard | 425b76c | 2013-08-05 22:22:01 +0000 | [diff] [blame] | 6186 | getConstant(i, TLI->getVectorIdxTy())); |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6187 | } else { |
| 6188 | // A scalar operand; just use it as is. |
| 6189 | Operands[j] = Operand; |
| 6190 | } |
| 6191 | } |
| 6192 | |
| 6193 | switch (N->getOpcode()) { |
| 6194 | default: |
| 6195 | Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, |
| 6196 | &Operands[0], Operands.size())); |
| 6197 | break; |
Nadav Rotem | aec5861 | 2011-09-13 19:17:42 +0000 | [diff] [blame] | 6198 | case ISD::VSELECT: |
| 6199 | Scalars.push_back(getNode(ISD::SELECT, dl, EltVT, |
| 6200 | &Operands[0], Operands.size())); |
| 6201 | break; |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6202 | case ISD::SHL: |
| 6203 | case ISD::SRA: |
| 6204 | case ISD::SRL: |
| 6205 | case ISD::ROTL: |
| 6206 | case ISD::ROTR: |
| 6207 | Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, Operands[0], |
Jack Carter | 3af4d25 | 2013-09-09 22:02:08 +0000 | [diff] [blame] | 6208 | getShiftAmountOperand(Operands[0].getValueType(), |
| 6209 | Operands[1]))); |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6210 | break; |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 6211 | case ISD::SIGN_EXTEND_INREG: |
| 6212 | case ISD::FP_ROUND_INREG: { |
| 6213 | EVT ExtVT = cast<VTSDNode>(Operands[1])->getVT().getVectorElementType(); |
| 6214 | Scalars.push_back(getNode(N->getOpcode(), dl, EltVT, |
| 6215 | Operands[0], |
| 6216 | getValueType(ExtVT))); |
| 6217 | } |
Mon P Wang | cd6e725 | 2009-11-30 02:42:02 +0000 | [diff] [blame] | 6218 | } |
| 6219 | } |
| 6220 | |
| 6221 | for (; i < ResNE; ++i) |
| 6222 | Scalars.push_back(getUNDEF(EltVT)); |
| 6223 | |
| 6224 | return getNode(ISD::BUILD_VECTOR, dl, |
| 6225 | EVT::getVectorVT(*getContext(), EltVT, ResNE), |
| 6226 | &Scalars[0], Scalars.size()); |
| 6227 | } |
| 6228 | |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6229 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6230 | /// isConsecutiveLoad - Return true if LD is loading 'Bytes' bytes from a |
| 6231 | /// location that is 'Dist' units away from the location that the 'Base' load |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6232 | /// is loading from. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6233 | bool SelectionDAG::isConsecutiveLoad(LoadSDNode *LD, LoadSDNode *Base, |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6234 | unsigned Bytes, int Dist) const { |
| 6235 | if (LD->getChain() != Base->getChain()) |
| 6236 | return false; |
| 6237 | EVT VT = LD->getValueType(0); |
| 6238 | if (VT.getSizeInBits() / 8 != Bytes) |
| 6239 | return false; |
| 6240 | |
| 6241 | SDValue Loc = LD->getOperand(1); |
| 6242 | SDValue BaseLoc = Base->getOperand(1); |
| 6243 | if (Loc.getOpcode() == ISD::FrameIndex) { |
| 6244 | if (BaseLoc.getOpcode() != ISD::FrameIndex) |
| 6245 | return false; |
| 6246 | const MachineFrameInfo *MFI = getMachineFunction().getFrameInfo(); |
| 6247 | int FI = cast<FrameIndexSDNode>(Loc)->getIndex(); |
| 6248 | int BFI = cast<FrameIndexSDNode>(BaseLoc)->getIndex(); |
| 6249 | int FS = MFI->getObjectSize(FI); |
| 6250 | int BFS = MFI->getObjectSize(BFI); |
| 6251 | if (FS != BFS || FS != (int)Bytes) return false; |
| 6252 | return MFI->getObjectOffset(FI) == (MFI->getObjectOffset(BFI) + Dist*Bytes); |
| 6253 | } |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 6254 | |
| 6255 | // Handle X+C |
| 6256 | if (isBaseWithConstantOffset(Loc) && Loc.getOperand(0) == BaseLoc && |
| 6257 | cast<ConstantSDNode>(Loc.getOperand(1))->getSExtValue() == Dist*Bytes) |
| 6258 | return true; |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6259 | |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 6260 | const GlobalValue *GV1 = NULL; |
| 6261 | const GlobalValue *GV2 = NULL; |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6262 | int64_t Offset1 = 0; |
| 6263 | int64_t Offset2 = 0; |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 6264 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 6265 | bool isGA1 = TLI->isGAPlusOffset(Loc.getNode(), GV1, Offset1); |
| 6266 | bool isGA2 = TLI->isGAPlusOffset(BaseLoc.getNode(), GV2, Offset2); |
Evan Cheng | 64fa4a9 | 2009-12-09 01:36:00 +0000 | [diff] [blame] | 6267 | if (isGA1 && isGA2 && GV1 == GV2) |
| 6268 | return Offset1 == (Offset2 + Dist*Bytes); |
| 6269 | return false; |
| 6270 | } |
| 6271 | |
| 6272 | |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6273 | /// InferPtrAlignment - Infer alignment of a load / store address. Return 0 if |
| 6274 | /// it cannot be inferred. |
Evan Cheng | 7ced2e0 | 2009-12-09 01:10:37 +0000 | [diff] [blame] | 6275 | unsigned SelectionDAG::InferPtrAlignment(SDValue Ptr) const { |
Evan Cheng | 7bd6478 | 2009-12-09 01:53:58 +0000 | [diff] [blame] | 6276 | // If this is a GlobalAddress + cst, return the alignment. |
Dan Gohman | 46510a7 | 2010-04-15 01:51:59 +0000 | [diff] [blame] | 6277 | const GlobalValue *GV; |
Evan Cheng | 7bd6478 | 2009-12-09 01:53:58 +0000 | [diff] [blame] | 6278 | int64_t GVOffset = 0; |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 6279 | const TargetLowering *TLI = TM.getTargetLowering(); |
| 6280 | if (TLI->isGAPlusOffset(Ptr.getNode(), GV, GVOffset)) { |
| 6281 | unsigned PtrWidth = TLI->getPointerTy().getSizeInBits(); |
Eli Friedman | c4c2a02 | 2011-11-28 22:48:22 +0000 | [diff] [blame] | 6282 | APInt KnownZero(PtrWidth, 0), KnownOne(PtrWidth, 0); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 6283 | llvm::ComputeMaskedBits(const_cast<GlobalValue*>(GV), KnownZero, KnownOne, |
Bill Wendling | ba54bca | 2013-06-19 21:36:55 +0000 | [diff] [blame] | 6284 | TLI->getDataLayout()); |
Eli Friedman | c4c2a02 | 2011-11-28 22:48:22 +0000 | [diff] [blame] | 6285 | unsigned AlignBits = KnownZero.countTrailingOnes(); |
| 6286 | unsigned Align = AlignBits ? 1 << std::min(31U, AlignBits) : 0; |
| 6287 | if (Align) |
| 6288 | return MinAlign(Align, GVOffset); |
Evan Cheng | 255f20f | 2010-04-01 06:04:33 +0000 | [diff] [blame] | 6289 | } |
Evan Cheng | 7bd6478 | 2009-12-09 01:53:58 +0000 | [diff] [blame] | 6290 | |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6291 | // If this is a direct reference to a stack slot, use information about the |
| 6292 | // stack slot's alignment. |
| 6293 | int FrameIdx = 1 << 31; |
| 6294 | int64_t FrameOffset = 0; |
| 6295 | if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(Ptr)) { |
| 6296 | FrameIdx = FI->getIndex(); |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 6297 | } else if (isBaseWithConstantOffset(Ptr) && |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6298 | isa<FrameIndexSDNode>(Ptr.getOperand(0))) { |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 6299 | // Handle FI+Cst |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6300 | FrameIdx = cast<FrameIndexSDNode>(Ptr.getOperand(0))->getIndex(); |
| 6301 | FrameOffset = Ptr.getConstantOperandVal(1); |
| 6302 | } |
| 6303 | |
| 6304 | if (FrameIdx != (1 << 31)) { |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6305 | const MachineFrameInfo &MFI = *getMachineFunction().getFrameInfo(); |
Evan Cheng | de2ace1 | 2009-12-09 01:17:24 +0000 | [diff] [blame] | 6306 | unsigned FIInfoAlign = MinAlign(MFI.getObjectAlignment(FrameIdx), |
| 6307 | FrameOffset); |
Evan Cheng | de2ace1 | 2009-12-09 01:17:24 +0000 | [diff] [blame] | 6308 | return FIInfoAlign; |
Evan Cheng | f2dc5c7 | 2009-12-09 01:04:59 +0000 | [diff] [blame] | 6309 | } |
| 6310 | |
| 6311 | return 0; |
| 6312 | } |
| 6313 | |
Sanjiv Gupta | a3518a1 | 2009-04-29 04:43:24 +0000 | [diff] [blame] | 6314 | // getAddressSpace - Return the address space this GlobalAddress belongs to. |
| 6315 | unsigned GlobalAddressSDNode::getAddressSpace() const { |
| 6316 | return getGlobal()->getType()->getAddressSpace(); |
| 6317 | } |
| 6318 | |
| 6319 | |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 6320 | Type *ConstantPoolSDNode::getType() const { |
Evan Cheng | d6594ae | 2006-09-12 21:00:35 +0000 | [diff] [blame] | 6321 | if (isMachineConstantPoolEntry()) |
| 6322 | return Val.MachineCPVal->getType(); |
| 6323 | return Val.ConstVal->getType(); |
| 6324 | } |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6325 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6326 | bool BuildVectorSDNode::isConstantSplat(APInt &SplatValue, |
| 6327 | APInt &SplatUndef, |
| 6328 | unsigned &SplatBitSize, |
| 6329 | bool &HasAnyUndefs, |
Dale Johannesen | 1e60881 | 2009-11-13 01:45:18 +0000 | [diff] [blame] | 6330 | unsigned MinSplatBits, |
| 6331 | bool isBigEndian) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6332 | EVT VT = getValueType(0); |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6333 | assert(VT.isVector() && "Expected a vector type"); |
| 6334 | unsigned sz = VT.getSizeInBits(); |
| 6335 | if (MinSplatBits > sz) |
| 6336 | return false; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6337 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6338 | SplatValue = APInt(sz, 0); |
| 6339 | SplatUndef = APInt(sz, 0); |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6340 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6341 | // Get the bits. Bits with undefined values (when the corresponding element |
| 6342 | // of the vector is an ISD::UNDEF value) are set in SplatUndef and cleared |
| 6343 | // in SplatValue. If any of the values are not constant, give up and return |
| 6344 | // false. |
| 6345 | unsigned int nOps = getNumOperands(); |
| 6346 | assert(nOps > 0 && "isConstantSplat has 0-size build vector"); |
| 6347 | unsigned EltBitSize = VT.getVectorElementType().getSizeInBits(); |
Dale Johannesen | 1e60881 | 2009-11-13 01:45:18 +0000 | [diff] [blame] | 6348 | |
| 6349 | for (unsigned j = 0; j < nOps; ++j) { |
| 6350 | unsigned i = isBigEndian ? nOps-1-j : j; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6351 | SDValue OpVal = getOperand(i); |
Dale Johannesen | 1e60881 | 2009-11-13 01:45:18 +0000 | [diff] [blame] | 6352 | unsigned BitPos = j * EltBitSize; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6353 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6354 | if (OpVal.getOpcode() == ISD::UNDEF) |
Dale Johannesen | 1e60881 | 2009-11-13 01:45:18 +0000 | [diff] [blame] | 6355 | SplatUndef |= APInt::getBitsSet(sz, BitPos, BitPos + EltBitSize); |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6356 | else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 6357 | SplatValue |= CN->getAPIntValue().zextOrTrunc(EltBitSize). |
Dan Gohman | 58c2587 | 2010-04-12 02:24:01 +0000 | [diff] [blame] | 6358 | zextOrTrunc(sz) << BitPos; |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6359 | else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) |
Bob Wilson | d344b88 | 2009-03-04 17:47:01 +0000 | [diff] [blame] | 6360 | SplatValue |= CN->getValueAPF().bitcastToAPInt().zextOrTrunc(sz) <<BitPos; |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6361 | else |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6362 | return false; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6363 | } |
| 6364 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6365 | // The build_vector is all constants or undefs. Find the smallest element |
| 6366 | // size that splats the vector. |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6367 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6368 | HasAnyUndefs = (SplatUndef != 0); |
| 6369 | while (sz > 8) { |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6370 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6371 | unsigned HalfSize = sz / 2; |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 6372 | APInt HighValue = SplatValue.lshr(HalfSize).trunc(HalfSize); |
| 6373 | APInt LowValue = SplatValue.trunc(HalfSize); |
| 6374 | APInt HighUndef = SplatUndef.lshr(HalfSize).trunc(HalfSize); |
| 6375 | APInt LowUndef = SplatUndef.trunc(HalfSize); |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6376 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6377 | // If the two halves do not match (ignoring undef bits), stop here. |
| 6378 | if ((HighValue & ~LowUndef) != (LowValue & ~HighUndef) || |
| 6379 | MinSplatBits > HalfSize) |
| 6380 | break; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6381 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6382 | SplatValue = HighValue | LowValue; |
| 6383 | SplatUndef = HighUndef & LowUndef; |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 6384 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6385 | sz = HalfSize; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6386 | } |
| 6387 | |
Bob Wilson | 24e338e | 2009-03-02 23:24:16 +0000 | [diff] [blame] | 6388 | SplatBitSize = sz; |
Bob Wilson | a27ea9e | 2009-03-01 01:13:55 +0000 | [diff] [blame] | 6389 | return true; |
| 6390 | } |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 6391 | |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 6392 | bool ShuffleVectorSDNode::isSplatMask(const int *Mask, EVT VT) { |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 6393 | // Find the first non-undef value in the shuffle mask. |
| 6394 | unsigned i, e; |
| 6395 | for (i = 0, e = VT.getVectorNumElements(); i != e && Mask[i] < 0; ++i) |
| 6396 | /* search */; |
| 6397 | |
Nate Begeman | a641575 | 2009-04-29 18:13:31 +0000 | [diff] [blame] | 6398 | assert(i != e && "VECTOR_SHUFFLE node with all undef indices!"); |
Eric Christopher | 4d7c18c | 2009-08-22 00:40:45 +0000 | [diff] [blame] | 6399 | |
Nate Begeman | 5a5ca15 | 2009-04-29 05:20:52 +0000 | [diff] [blame] | 6400 | // Make sure all remaining elements are either undef or the same as the first |
| 6401 | // non-undef value. |
| 6402 | for (int Idx = Mask[i]; i != e; ++i) |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 6403 | if (Mask[i] >= 0 && Mask[i] != Idx) |
| 6404 | return false; |
Nate Begeman | 9008ca6 | 2009-04-27 18:41:29 +0000 | [diff] [blame] | 6405 | return true; |
| 6406 | } |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6407 | |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6408 | #ifdef XDEBUG |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6409 | static void checkForCyclesHelper(const SDNode *N, |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6410 | SmallPtrSet<const SDNode*, 32> &Visited, |
| 6411 | SmallPtrSet<const SDNode*, 32> &Checked) { |
| 6412 | // If this node has already been checked, don't check it again. |
| 6413 | if (Checked.count(N)) |
David Greene | e3d97c7 | 2010-02-23 17:37:50 +0000 | [diff] [blame] | 6414 | return; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6415 | |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6416 | // If a node has already been visited on this depth-first walk, reject it as |
| 6417 | // a cycle. |
| 6418 | if (!Visited.insert(N)) { |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6419 | dbgs() << "Offending node:\n"; |
| 6420 | N->dumprFull(); |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6421 | errs() << "Detected cycle in SelectionDAG\n"; |
| 6422 | abort(); |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6423 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6424 | |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6425 | for(unsigned i = 0, e = N->getNumOperands(); i != e; ++i) |
| 6426 | checkForCyclesHelper(N->getOperand(i).getNode(), Visited, Checked); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 6427 | |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6428 | Checked.insert(N); |
| 6429 | Visited.erase(N); |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6430 | } |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6431 | #endif |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6432 | |
| 6433 | void llvm::checkForCycles(const llvm::SDNode *N) { |
| 6434 | #ifdef XDEBUG |
| 6435 | assert(N && "Checking nonexistant SDNode"); |
Chris Lattner | 46ca5ef | 2010-02-24 21:34:04 +0000 | [diff] [blame] | 6436 | SmallPtrSet<const SDNode*, 32> visited; |
| 6437 | SmallPtrSet<const SDNode*, 32> checked; |
David Greene | e3d97c7 | 2010-02-23 17:37:50 +0000 | [diff] [blame] | 6438 | checkForCyclesHelper(N, visited, checked); |
David Greene | cf495bc | 2010-01-20 20:13:31 +0000 | [diff] [blame] | 6439 | #endif |
| 6440 | } |
| 6441 | |
| 6442 | void llvm::checkForCycles(const llvm::SelectionDAG *DAG) { |
| 6443 | checkForCycles(DAG->getRoot().getNode()); |
| 6444 | } |