Chris Lattner | 310968c | 2005-01-07 07:44:53 +0000 | [diff] [blame] | 1 | //===-- TargetLowering.cpp - Implement the TargetLowering class -----------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
Chris Lattner | 310968c | 2005-01-07 07:44:53 +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 | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
Chris Lattner | 310968c | 2005-01-07 07:44:53 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This implements the TargetLowering class. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/Target/TargetLowering.h" |
Jakob Stoklund Olesen | e3ee49f | 2012-05-04 02:19:22 +0000 | [diff] [blame] | 15 | #include "llvm/ADT/BitVector.h" |
Owen Anderson | 718cb66 | 2007-09-07 04:06:50 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 17 | #include "llvm/CodeGen/Analysis.h" |
| 18 | #include "llvm/CodeGen/MachineFrameInfo.h" |
| 19 | #include "llvm/CodeGen/MachineFunction.h" |
| 20 | #include "llvm/CodeGen/MachineJumpTableInfo.h" |
| 21 | #include "llvm/CodeGen/SelectionDAG.h" |
Chandler Carruth | 0b8c9a8 | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 22 | #include "llvm/IR/DataLayout.h" |
| 23 | #include "llvm/IR/DerivedTypes.h" |
| 24 | #include "llvm/IR/GlobalVariable.h" |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 25 | #include "llvm/IR/LLVMContext.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 26 | #include "llvm/MC/MCAsmInfo.h" |
| 27 | #include "llvm/MC/MCExpr.h" |
Nadav Rotem | b6fbec3 | 2011-06-01 12:51:46 +0000 | [diff] [blame] | 28 | #include "llvm/Support/CommandLine.h" |
Torok Edwin | c25e758 | 2009-07-11 20:10:48 +0000 | [diff] [blame] | 29 | #include "llvm/Support/ErrorHandling.h" |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 30 | #include "llvm/Support/MathExtras.h" |
Chandler Carruth | d04a8d4 | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 31 | #include "llvm/Target/TargetLoweringObjectFile.h" |
| 32 | #include "llvm/Target/TargetMachine.h" |
| 33 | #include "llvm/Target/TargetRegisterInfo.h" |
Nick Lewycky | 476b242 | 2010-12-19 20:43:38 +0000 | [diff] [blame] | 34 | #include <cctype> |
Chris Lattner | 310968c | 2005-01-07 07:44:53 +0000 | [diff] [blame] | 35 | using namespace llvm; |
| 36 | |
Chris Lattner | f014412 | 2009-07-28 03:13:23 +0000 | [diff] [blame] | 37 | /// NOTE: The constructor takes ownership of TLOF. |
Dan Gohman | f0757b0 | 2010-04-21 01:34:56 +0000 | [diff] [blame] | 38 | TargetLowering::TargetLowering(const TargetMachine &tm, |
| 39 | const TargetLoweringObjectFile *tlof) |
Benjamin Kramer | 69e42db | 2013-01-11 20:05:37 +0000 | [diff] [blame] | 40 | : TargetLoweringBase(tm, tlof) {} |
Chris Lattner | cba82f9 | 2005-01-16 07:28:11 +0000 | [diff] [blame] | 41 | |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 42 | const char *TargetLowering::getTargetNodeName(unsigned Opcode) const { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 43 | return nullptr; |
Evan Cheng | 7226158 | 2005-12-20 06:22:03 +0000 | [diff] [blame] | 44 | } |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 45 | |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 46 | /// Check whether a given call node is in tail position within its function. If |
| 47 | /// so, it sets Chain to the input chain of the tail call. |
| 48 | bool TargetLowering::isInTailCallPosition(SelectionDAG &DAG, SDNode *Node, |
| 49 | SDValue &Chain) const { |
| 50 | const Function *F = DAG.getMachineFunction().getFunction(); |
| 51 | |
| 52 | // Conservatively require the attributes of the call to match those of |
| 53 | // the return. Ignore noalias because it doesn't affect the call sequence. |
Bill Wendling | 1b0c54f | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 54 | AttributeSet CallerAttrs = F->getAttributes(); |
| 55 | if (AttrBuilder(CallerAttrs, AttributeSet::ReturnIndex) |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 56 | .removeAttribute(Attribute::NoAlias).hasAttributes()) |
| 57 | return false; |
| 58 | |
| 59 | // It's not safe to eliminate the sign / zero extension of the return value. |
Bill Wendling | 1b0c54f | 2013-01-18 21:53:16 +0000 | [diff] [blame] | 60 | if (CallerAttrs.hasAttribute(AttributeSet::ReturnIndex, Attribute::ZExt) || |
| 61 | CallerAttrs.hasAttribute(AttributeSet::ReturnIndex, Attribute::SExt)) |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 62 | return false; |
| 63 | |
| 64 | // Check if the only use is a function return node. |
| 65 | return isUsedByReturnOnly(Node, Chain); |
| 66 | } |
| 67 | |
Andrew Trick | 2343e3b | 2013-10-31 17:18:24 +0000 | [diff] [blame] | 68 | /// \brief Set CallLoweringInfo attribute flags based on a call instruction |
| 69 | /// and called function attributes. |
| 70 | void TargetLowering::ArgListEntry::setAttributes(ImmutableCallSite *CS, |
| 71 | unsigned AttrIdx) { |
| 72 | isSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); |
| 73 | isZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); |
| 74 | isInReg = CS->paramHasAttr(AttrIdx, Attribute::InReg); |
| 75 | isSRet = CS->paramHasAttr(AttrIdx, Attribute::StructRet); |
| 76 | isNest = CS->paramHasAttr(AttrIdx, Attribute::Nest); |
| 77 | isByVal = CS->paramHasAttr(AttrIdx, Attribute::ByVal); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 78 | isInAlloca = CS->paramHasAttr(AttrIdx, Attribute::InAlloca); |
Andrew Trick | 2343e3b | 2013-10-31 17:18:24 +0000 | [diff] [blame] | 79 | isReturned = CS->paramHasAttr(AttrIdx, Attribute::Returned); |
| 80 | Alignment = CS->getParamAlignment(AttrIdx); |
| 81 | } |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 82 | |
| 83 | /// Generate a libcall taking the given operands as arguments and returning a |
| 84 | /// result of type RetVT. |
Michael Gottesman | 3add067 | 2013-08-13 17:54:56 +0000 | [diff] [blame] | 85 | std::pair<SDValue, SDValue> |
| 86 | TargetLowering::makeLibCall(SelectionDAG &DAG, |
| 87 | RTLIB::Libcall LC, EVT RetVT, |
| 88 | const SDValue *Ops, unsigned NumOps, |
| 89 | bool isSigned, SDLoc dl, |
| 90 | bool doesNotReturn, |
| 91 | bool isReturnValueUsed) const { |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 92 | TargetLowering::ArgListTy Args; |
| 93 | Args.reserve(NumOps); |
| 94 | |
| 95 | TargetLowering::ArgListEntry Entry; |
| 96 | for (unsigned i = 0; i != NumOps; ++i) { |
| 97 | Entry.Node = Ops[i]; |
| 98 | Entry.Ty = Entry.Node.getValueType().getTypeForEVT(*DAG.getContext()); |
| 99 | Entry.isSExt = isSigned; |
| 100 | Entry.isZExt = !isSigned; |
| 101 | Args.push_back(Entry); |
| 102 | } |
| 103 | SDValue Callee = DAG.getExternalSymbol(getLibcallName(LC), getPointerTy()); |
| 104 | |
| 105 | Type *RetTy = RetVT.getTypeForEVT(*DAG.getContext()); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 106 | TargetLowering::CallLoweringInfo CLI(DAG); |
| 107 | CLI.setDebugLoc(dl).setChain(DAG.getEntryNode()) |
| 108 | .setCallee(getLibcallCallingConv(LC), RetTy, Callee, &Args, 0) |
| 109 | .setNoReturn(doesNotReturn).setDiscardResult(!isReturnValueUsed) |
| 110 | .setSExtResult(isSigned).setZExtResult(!isSigned); |
Michael Gottesman | 3add067 | 2013-08-13 17:54:56 +0000 | [diff] [blame] | 111 | return LowerCallTo(CLI); |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 112 | } |
| 113 | |
| 114 | |
| 115 | /// SoftenSetCCOperands - Soften the operands of a comparison. This code is |
| 116 | /// shared among BR_CC, SELECT_CC, and SETCC handlers. |
| 117 | void TargetLowering::softenSetCCOperands(SelectionDAG &DAG, EVT VT, |
| 118 | SDValue &NewLHS, SDValue &NewRHS, |
| 119 | ISD::CondCode &CCCode, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 120 | SDLoc dl) const { |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 121 | assert((VT == MVT::f32 || VT == MVT::f64 || VT == MVT::f128) |
| 122 | && "Unsupported setcc type!"); |
| 123 | |
| 124 | // Expand into one or more soft-fp libcall(s). |
| 125 | RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL; |
| 126 | switch (CCCode) { |
| 127 | case ISD::SETEQ: |
| 128 | case ISD::SETOEQ: |
| 129 | LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : |
| 130 | (VT == MVT::f64) ? RTLIB::OEQ_F64 : RTLIB::OEQ_F128; |
| 131 | break; |
| 132 | case ISD::SETNE: |
| 133 | case ISD::SETUNE: |
| 134 | LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : |
| 135 | (VT == MVT::f64) ? RTLIB::UNE_F64 : RTLIB::UNE_F128; |
| 136 | break; |
| 137 | case ISD::SETGE: |
| 138 | case ISD::SETOGE: |
| 139 | LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : |
| 140 | (VT == MVT::f64) ? RTLIB::OGE_F64 : RTLIB::OGE_F128; |
| 141 | break; |
| 142 | case ISD::SETLT: |
| 143 | case ISD::SETOLT: |
| 144 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : |
| 145 | (VT == MVT::f64) ? RTLIB::OLT_F64 : RTLIB::OLT_F128; |
| 146 | break; |
| 147 | case ISD::SETLE: |
| 148 | case ISD::SETOLE: |
| 149 | LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : |
| 150 | (VT == MVT::f64) ? RTLIB::OLE_F64 : RTLIB::OLE_F128; |
| 151 | break; |
| 152 | case ISD::SETGT: |
| 153 | case ISD::SETOGT: |
| 154 | LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : |
| 155 | (VT == MVT::f64) ? RTLIB::OGT_F64 : RTLIB::OGT_F128; |
| 156 | break; |
| 157 | case ISD::SETUO: |
| 158 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : |
| 159 | (VT == MVT::f64) ? RTLIB::UO_F64 : RTLIB::UO_F128; |
| 160 | break; |
| 161 | case ISD::SETO: |
| 162 | LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : |
| 163 | (VT == MVT::f64) ? RTLIB::O_F64 : RTLIB::O_F128; |
| 164 | break; |
| 165 | default: |
| 166 | LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : |
| 167 | (VT == MVT::f64) ? RTLIB::UO_F64 : RTLIB::UO_F128; |
| 168 | switch (CCCode) { |
| 169 | case ISD::SETONE: |
| 170 | // SETONE = SETOLT | SETOGT |
| 171 | LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : |
| 172 | (VT == MVT::f64) ? RTLIB::OLT_F64 : RTLIB::OLT_F128; |
| 173 | // Fallthrough |
| 174 | case ISD::SETUGT: |
| 175 | LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : |
| 176 | (VT == MVT::f64) ? RTLIB::OGT_F64 : RTLIB::OGT_F128; |
| 177 | break; |
| 178 | case ISD::SETUGE: |
| 179 | LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : |
| 180 | (VT == MVT::f64) ? RTLIB::OGE_F64 : RTLIB::OGE_F128; |
| 181 | break; |
| 182 | case ISD::SETULT: |
| 183 | LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : |
| 184 | (VT == MVT::f64) ? RTLIB::OLT_F64 : RTLIB::OLT_F128; |
| 185 | break; |
| 186 | case ISD::SETULE: |
| 187 | LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : |
| 188 | (VT == MVT::f64) ? RTLIB::OLE_F64 : RTLIB::OLE_F128; |
| 189 | break; |
| 190 | case ISD::SETUEQ: |
| 191 | LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : |
| 192 | (VT == MVT::f64) ? RTLIB::OEQ_F64 : RTLIB::OEQ_F128; |
| 193 | break; |
| 194 | default: llvm_unreachable("Do not know how to soften this setcc!"); |
| 195 | } |
| 196 | } |
| 197 | |
| 198 | // Use the target specific return value for comparions lib calls. |
| 199 | EVT RetVT = getCmpLibcallReturnType(); |
| 200 | SDValue Ops[2] = { NewLHS, NewRHS }; |
Michael Gottesman | 3add067 | 2013-08-13 17:54:56 +0000 | [diff] [blame] | 201 | NewLHS = makeLibCall(DAG, LC1, RetVT, Ops, 2, false/*sign irrelevant*/, |
| 202 | dl).first; |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 203 | NewRHS = DAG.getConstant(0, RetVT); |
| 204 | CCCode = getCmpLibcallCC(LC1); |
| 205 | if (LC2 != RTLIB::UNKNOWN_LIBCALL) { |
Matt Arsenault | 225ed70 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 206 | SDValue Tmp = DAG.getNode(ISD::SETCC, dl, |
| 207 | getSetCCResultType(*DAG.getContext(), RetVT), |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 208 | NewLHS, NewRHS, DAG.getCondCode(CCCode)); |
Michael Gottesman | 3add067 | 2013-08-13 17:54:56 +0000 | [diff] [blame] | 209 | NewLHS = makeLibCall(DAG, LC2, RetVT, Ops, 2, false/*sign irrelevant*/, |
| 210 | dl).first; |
Matt Arsenault | 225ed70 | 2013-05-18 00:21:46 +0000 | [diff] [blame] | 211 | NewLHS = DAG.getNode(ISD::SETCC, dl, |
| 212 | getSetCCResultType(*DAG.getContext(), RetVT), NewLHS, |
Tim Northover | 2c8cf4b | 2013-01-09 13:18:15 +0000 | [diff] [blame] | 213 | NewRHS, DAG.getCondCode(getCmpLibcallCC(LC2))); |
| 214 | NewLHS = DAG.getNode(ISD::OR, dl, Tmp.getValueType(), Tmp, NewLHS); |
| 215 | NewRHS = SDValue(); |
| 216 | } |
| 217 | } |
| 218 | |
Chris Lattner | 071c62f | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 219 | /// getJumpTableEncoding - Return the entry encoding for a jump table in the |
| 220 | /// current function. The returned value is a member of the |
| 221 | /// MachineJumpTableInfo::JTEntryKind enum. |
| 222 | unsigned TargetLowering::getJumpTableEncoding() const { |
| 223 | // In non-pic modes, just use the address of a block. |
| 224 | if (getTargetMachine().getRelocationModel() != Reloc::PIC_) |
| 225 | return MachineJumpTableInfo::EK_BlockAddress; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 226 | |
Chris Lattner | 071c62f | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 227 | // In PIC mode, if the target supports a GPRel32 directive, use it. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 228 | if (getTargetMachine().getMCAsmInfo()->getGPRel32Directive() != nullptr) |
Chris Lattner | 071c62f | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 229 | return MachineJumpTableInfo::EK_GPRel32BlockAddress; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 230 | |
Chris Lattner | 071c62f | 2010-01-25 23:26:13 +0000 | [diff] [blame] | 231 | // Otherwise, use a label difference. |
| 232 | return MachineJumpTableInfo::EK_LabelDifference32; |
| 233 | } |
| 234 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 235 | SDValue TargetLowering::getPICJumpTableRelocBase(SDValue Table, |
| 236 | SelectionDAG &DAG) const { |
Chris Lattner | f1214cb | 2010-01-26 06:53:37 +0000 | [diff] [blame] | 237 | // If our PIC model is GP relative, use the global offset table as the base. |
Akira Hatanaka | 787c3fd | 2012-04-09 20:32:12 +0000 | [diff] [blame] | 238 | unsigned JTEncoding = getJumpTableEncoding(); |
| 239 | |
| 240 | if ((JTEncoding == MachineJumpTableInfo::EK_GPRel64BlockAddress) || |
| 241 | (JTEncoding == MachineJumpTableInfo::EK_GPRel32BlockAddress)) |
Micah Villmow | 7d66146 | 2012-10-09 16:06:12 +0000 | [diff] [blame] | 242 | return DAG.getGLOBAL_OFFSET_TABLE(getPointerTy(0)); |
Akira Hatanaka | 787c3fd | 2012-04-09 20:32:12 +0000 | [diff] [blame] | 243 | |
Evan Cheng | cc41586 | 2007-11-09 01:32:10 +0000 | [diff] [blame] | 244 | return Table; |
| 245 | } |
| 246 | |
Chris Lattner | 13e97a2 | 2010-01-26 05:30:30 +0000 | [diff] [blame] | 247 | /// getPICJumpTableRelocBaseExpr - This returns the relocation base for the |
| 248 | /// given PIC jumptable, the same as getPICJumpTableRelocBase, but as an |
| 249 | /// MCExpr. |
| 250 | const MCExpr * |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 251 | TargetLowering::getPICJumpTableRelocBaseExpr(const MachineFunction *MF, |
| 252 | unsigned JTI,MCContext &Ctx) const{ |
Chris Lattner | beeb93e | 2010-01-26 05:58:28 +0000 | [diff] [blame] | 253 | // The normal PIC reloc base is the label at the start of the jump table. |
Chris Lattner | 589c6f6 | 2010-01-26 06:28:43 +0000 | [diff] [blame] | 254 | return MCSymbolRefExpr::Create(MF->getJTISymbol(JTI, Ctx), Ctx); |
Chris Lattner | 13e97a2 | 2010-01-26 05:30:30 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 257 | bool |
| 258 | TargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const { |
| 259 | // Assume that everything is safe in static mode. |
| 260 | if (getTargetMachine().getRelocationModel() == Reloc::Static) |
| 261 | return true; |
| 262 | |
| 263 | // In dynamic-no-pic mode, assume that known defined values are safe. |
| 264 | if (getTargetMachine().getRelocationModel() == Reloc::DynamicNoPIC && |
| 265 | GA && |
| 266 | !GA->getGlobal()->isDeclaration() && |
Duncan Sands | 667d4b8 | 2009-03-07 15:45:40 +0000 | [diff] [blame] | 267 | !GA->getGlobal()->isWeakForLinker()) |
Dan Gohman | 6520e20 | 2008-10-18 02:06:02 +0000 | [diff] [blame] | 268 | return true; |
| 269 | |
| 270 | // Otherwise assume nothing is safe. |
| 271 | return false; |
| 272 | } |
| 273 | |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 274 | //===----------------------------------------------------------------------===// |
| 275 | // Optimization Methods |
| 276 | //===----------------------------------------------------------------------===// |
| 277 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 278 | /// ShrinkDemandedConstant - Check to see if the specified operand of the |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 279 | /// specified instruction is a constant integer. If so, check to see if there |
| 280 | /// are any bits set in the constant that are not demanded. If so, shrink the |
| 281 | /// constant and return true. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 282 | bool TargetLowering::TargetLoweringOpt::ShrinkDemandedConstant(SDValue Op, |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 283 | const APInt &Demanded) { |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 284 | SDLoc dl(Op); |
Bill Wendling | 36ae6c1 | 2009-03-04 00:18:06 +0000 | [diff] [blame] | 285 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 286 | // FIXME: ISD::SELECT, ISD::SELECT_CC |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 287 | switch (Op.getOpcode()) { |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 288 | default: break; |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 289 | case ISD::XOR: |
Bill Wendling | 36ae6c1 | 2009-03-04 00:18:06 +0000 | [diff] [blame] | 290 | case ISD::AND: |
| 291 | case ISD::OR: { |
| 292 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); |
| 293 | if (!C) return false; |
| 294 | |
| 295 | if (Op.getOpcode() == ISD::XOR && |
| 296 | (C->getAPIntValue() | (~Demanded)).isAllOnesValue()) |
| 297 | return false; |
| 298 | |
| 299 | // if we can expand it to have all bits set, do it |
| 300 | if (C->getAPIntValue().intersects(~Demanded)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 301 | EVT VT = Op.getValueType(); |
Bill Wendling | 36ae6c1 | 2009-03-04 00:18:06 +0000 | [diff] [blame] | 302 | SDValue New = DAG.getNode(Op.getOpcode(), dl, VT, Op.getOperand(0), |
| 303 | DAG.getConstant(Demanded & |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 304 | C->getAPIntValue(), |
Bill Wendling | 36ae6c1 | 2009-03-04 00:18:06 +0000 | [diff] [blame] | 305 | VT)); |
| 306 | return CombineTo(Op, New); |
| 307 | } |
| 308 | |
Nate Begeman | de99629 | 2006-02-03 22:24:05 +0000 | [diff] [blame] | 309 | break; |
| 310 | } |
Bill Wendling | 36ae6c1 | 2009-03-04 00:18:06 +0000 | [diff] [blame] | 311 | } |
| 312 | |
Nate Begeman | de99629 | 2006-02-03 22:24:05 +0000 | [diff] [blame] | 313 | return false; |
| 314 | } |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 315 | |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 316 | /// ShrinkDemandedOp - Convert x+y to (VT)((SmallVT)x+(SmallVT)y) if the |
| 317 | /// casts are free. This uses isZExtFree and ZERO_EXTEND for the widening |
| 318 | /// cast, but it could be generalized for targets with other types of |
| 319 | /// implicit widening casts. |
| 320 | bool |
| 321 | TargetLowering::TargetLoweringOpt::ShrinkDemandedOp(SDValue Op, |
| 322 | unsigned BitWidth, |
| 323 | const APInt &Demanded, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 324 | SDLoc dl) { |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 325 | assert(Op.getNumOperands() == 2 && |
| 326 | "ShrinkDemandedOp only supports binary operators!"); |
| 327 | assert(Op.getNode()->getNumValues() == 1 && |
| 328 | "ShrinkDemandedOp only supports nodes with one result!"); |
| 329 | |
| 330 | // Don't do this if the node has another user, which may require the |
| 331 | // full value. |
| 332 | if (!Op.getNode()->hasOneUse()) |
| 333 | return false; |
| 334 | |
| 335 | // Search for the smallest integer type with free casts to and from |
| 336 | // Op's type. For expedience, just check power-of-2 integer types. |
| 337 | const TargetLowering &TLI = DAG.getTargetLoweringInfo(); |
Nadav Rotem | bf5a2c6 | 2012-12-19 07:39:08 +0000 | [diff] [blame] | 338 | unsigned DemandedSize = BitWidth - Demanded.countLeadingZeros(); |
| 339 | unsigned SmallVTBits = DemandedSize; |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 340 | if (!isPowerOf2_32(SmallVTBits)) |
| 341 | SmallVTBits = NextPowerOf2(SmallVTBits); |
| 342 | for (; SmallVTBits < BitWidth; SmallVTBits = NextPowerOf2(SmallVTBits)) { |
Owen Anderson | 23b9b19 | 2009-08-12 00:36:31 +0000 | [diff] [blame] | 343 | EVT SmallVT = EVT::getIntegerVT(*DAG.getContext(), SmallVTBits); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 344 | if (TLI.isTruncateFree(Op.getValueType(), SmallVT) && |
| 345 | TLI.isZExtFree(SmallVT, Op.getValueType())) { |
| 346 | // We found a type with free casts. |
| 347 | SDValue X = DAG.getNode(Op.getOpcode(), dl, SmallVT, |
| 348 | DAG.getNode(ISD::TRUNCATE, dl, SmallVT, |
| 349 | Op.getNode()->getOperand(0)), |
| 350 | DAG.getNode(ISD::TRUNCATE, dl, SmallVT, |
| 351 | Op.getNode()->getOperand(1))); |
Nadav Rotem | bf5a2c6 | 2012-12-19 07:39:08 +0000 | [diff] [blame] | 352 | bool NeedZext = DemandedSize > SmallVTBits; |
| 353 | SDValue Z = DAG.getNode(NeedZext ? ISD::ZERO_EXTEND : ISD::ANY_EXTEND, |
| 354 | dl, Op.getValueType(), X); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 355 | return CombineTo(Op, Z); |
| 356 | } |
| 357 | } |
| 358 | return false; |
| 359 | } |
| 360 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 361 | /// SimplifyDemandedBits - Look at Op. At this point, we know that only the |
Chad Rosier | 8c1ec5a | 2011-06-11 02:27:46 +0000 | [diff] [blame] | 362 | /// DemandedMask bits of the result of Op are ever used downstream. If we can |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 363 | /// use this information to simplify Op, create a new simplified DAG node and |
| 364 | /// return true, returning the original and new nodes in Old and New. Otherwise, |
| 365 | /// analyze the expression and return a mask of KnownOne and KnownZero bits for |
| 366 | /// the expression (used to simplify the caller). The KnownZero/One bits may |
| 367 | /// only be accurate for those bits in the DemandedMask. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 368 | bool TargetLowering::SimplifyDemandedBits(SDValue Op, |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 369 | const APInt &DemandedMask, |
| 370 | APInt &KnownZero, |
| 371 | APInt &KnownOne, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 372 | TargetLoweringOpt &TLO, |
| 373 | unsigned Depth) const { |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 374 | unsigned BitWidth = DemandedMask.getBitWidth(); |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 375 | assert(Op.getValueType().getScalarType().getSizeInBits() == BitWidth && |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 376 | "Mask size mismatches value type size!"); |
| 377 | APInt NewMask = DemandedMask; |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 378 | SDLoc dl(Op); |
Chris Lattner | 3fc5b01 | 2007-05-17 18:19:23 +0000 | [diff] [blame] | 379 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 380 | // Don't know anything. |
| 381 | KnownZero = KnownOne = APInt(BitWidth, 0); |
| 382 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 383 | // Other users may use these bits. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 384 | if (!Op.getNode()->hasOneUse()) { |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 385 | if (Depth != 0) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 386 | // If not at the root, Just compute the KnownZero/KnownOne bits to |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 387 | // simplify things downstream. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 388 | TLO.DAG.computeKnownBits(Op, KnownZero, KnownOne, Depth); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 389 | return false; |
| 390 | } |
| 391 | // If this is the root being simplified, allow it to have multiple uses, |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 392 | // just set the NewMask to all bits. |
| 393 | NewMask = APInt::getAllOnesValue(BitWidth); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 394 | } else if (DemandedMask == 0) { |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 395 | // Not demanding any bits from Op. |
| 396 | if (Op.getOpcode() != ISD::UNDEF) |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 397 | return TLO.CombineTo(Op, TLO.DAG.getUNDEF(Op.getValueType())); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 398 | return false; |
| 399 | } else if (Depth == 6) { // Limit search depth. |
| 400 | return false; |
| 401 | } |
| 402 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 403 | APInt KnownZero2, KnownOne2, KnownZeroOut, KnownOneOut; |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 404 | switch (Op.getOpcode()) { |
| 405 | case ISD::Constant: |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 406 | // We know all of the bits for a constant! |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 407 | KnownOne = cast<ConstantSDNode>(Op)->getAPIntValue(); |
| 408 | KnownZero = ~KnownOne; |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 409 | return false; // Don't fall through, will infinitely loop. |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 410 | case ISD::AND: |
Chris Lattner | 81cd355 | 2006-02-27 00:36:27 +0000 | [diff] [blame] | 411 | // If the RHS is a constant, check to see if the LHS would be zero without |
| 412 | // using the bits from the RHS. Below, we use knowledge about the RHS to |
| 413 | // simplify the LHS, here we're using information from the LHS to simplify |
| 414 | // the RHS. |
| 415 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 416 | APInt LHSZero, LHSOne; |
Dale Johannesen | 97fd9a5 | 2011-01-10 21:53:07 +0000 | [diff] [blame] | 417 | // Do not increment Depth here; that can cause an infinite loop. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 418 | TLO.DAG.computeKnownBits(Op.getOperand(0), LHSZero, LHSOne, Depth); |
Chris Lattner | 81cd355 | 2006-02-27 00:36:27 +0000 | [diff] [blame] | 419 | // If the LHS already has zeros where RHSC does, this and is dead. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 420 | if ((LHSZero & NewMask) == (~RHSC->getAPIntValue() & NewMask)) |
Chris Lattner | 81cd355 | 2006-02-27 00:36:27 +0000 | [diff] [blame] | 421 | return TLO.CombineTo(Op, Op.getOperand(0)); |
| 422 | // If any of the set bits in the RHS are known zero on the LHS, shrink |
| 423 | // the constant. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 424 | if (TLO.ShrinkDemandedConstant(Op, ~LHSZero & NewMask)) |
Chris Lattner | 81cd355 | 2006-02-27 00:36:27 +0000 | [diff] [blame] | 425 | return true; |
| 426 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 427 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 428 | if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 429 | KnownOne, TLO, Depth+1)) |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 430 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 431 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 432 | if (SimplifyDemandedBits(Op.getOperand(0), ~KnownZero & NewMask, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 433 | KnownZero2, KnownOne2, TLO, Depth+1)) |
| 434 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 435 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 436 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 437 | // If all of the demanded bits are known one on one side, return the other. |
| 438 | // These bits cannot contribute to the result of the 'and'. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 439 | if ((NewMask & ~KnownZero2 & KnownOne) == (~KnownZero2 & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 440 | return TLO.CombineTo(Op, Op.getOperand(0)); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 441 | if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 442 | return TLO.CombineTo(Op, Op.getOperand(1)); |
| 443 | // If all of the demanded bits in the inputs are known zeros, return zero. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 444 | if ((NewMask & (KnownZero|KnownZero2)) == NewMask) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 445 | return TLO.CombineTo(Op, TLO.DAG.getConstant(0, Op.getValueType())); |
| 446 | // If the RHS is a constant, see if we can simplify it. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 447 | if (TLO.ShrinkDemandedConstant(Op, ~KnownZero2 & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 448 | return true; |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 449 | // If the operation can be done in a smaller type, do so. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 450 | if (TLO.ShrinkDemandedOp(Op, BitWidth, NewMask, dl)) |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 451 | return true; |
| 452 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 453 | // Output known-1 bits are only known if set in both the LHS & RHS. |
| 454 | KnownOne &= KnownOne2; |
| 455 | // Output known-0 are known to be clear if zero in either the LHS | RHS. |
| 456 | KnownZero |= KnownZero2; |
| 457 | break; |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 458 | case ISD::OR: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 459 | if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 460 | KnownOne, TLO, Depth+1)) |
| 461 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 462 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 463 | if (SimplifyDemandedBits(Op.getOperand(0), ~KnownOne & NewMask, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 464 | KnownZero2, KnownOne2, TLO, Depth+1)) |
| 465 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 466 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 467 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 468 | // If all of the demanded bits are known zero on one side, return the other. |
| 469 | // These bits cannot contribute to the result of the 'or'. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 470 | if ((NewMask & ~KnownOne2 & KnownZero) == (~KnownOne2 & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 471 | return TLO.CombineTo(Op, Op.getOperand(0)); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 472 | if ((NewMask & ~KnownOne & KnownZero2) == (~KnownOne & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 473 | return TLO.CombineTo(Op, Op.getOperand(1)); |
| 474 | // If all of the potentially set bits on one side are known to be set on |
| 475 | // the other side, just use the 'other' side. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 476 | if ((NewMask & ~KnownZero & KnownOne2) == (~KnownZero & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 477 | return TLO.CombineTo(Op, Op.getOperand(0)); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 478 | if ((NewMask & ~KnownZero2 & KnownOne) == (~KnownZero2 & NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 479 | return TLO.CombineTo(Op, Op.getOperand(1)); |
| 480 | // If the RHS is a constant, see if we can simplify it. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 481 | if (TLO.ShrinkDemandedConstant(Op, NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 482 | return true; |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 483 | // If the operation can be done in a smaller type, do so. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 484 | if (TLO.ShrinkDemandedOp(Op, BitWidth, NewMask, dl)) |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 485 | return true; |
| 486 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 487 | // Output known-0 bits are only known if clear in both the LHS & RHS. |
| 488 | KnownZero &= KnownZero2; |
| 489 | // Output known-1 are known to be set if set in either the LHS | RHS. |
| 490 | KnownOne |= KnownOne2; |
| 491 | break; |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 492 | case ISD::XOR: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 493 | if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 494 | KnownOne, TLO, Depth+1)) |
| 495 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 496 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 497 | if (SimplifyDemandedBits(Op.getOperand(0), NewMask, KnownZero2, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 498 | KnownOne2, TLO, Depth+1)) |
| 499 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 500 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 501 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 502 | // If all of the demanded bits are known zero on one side, return the other. |
| 503 | // These bits cannot contribute to the result of the 'xor'. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 504 | if ((KnownZero & NewMask) == NewMask) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 505 | return TLO.CombineTo(Op, Op.getOperand(0)); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 506 | if ((KnownZero2 & NewMask) == NewMask) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 507 | return TLO.CombineTo(Op, Op.getOperand(1)); |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 508 | // If the operation can be done in a smaller type, do so. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 509 | if (TLO.ShrinkDemandedOp(Op, BitWidth, NewMask, dl)) |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 510 | return true; |
| 511 | |
Chris Lattner | 3687c1a | 2006-11-27 21:50:02 +0000 | [diff] [blame] | 512 | // If all of the unknown bits are known to be zero on one side or the other |
| 513 | // (but not both) turn this into an *inclusive* or. |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 514 | // e.g. (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0 |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 515 | if ((NewMask & ~KnownZero & ~KnownZero2) == 0) |
Dale Johannesen | de06470 | 2009-02-06 21:50:26 +0000 | [diff] [blame] | 516 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::OR, dl, Op.getValueType(), |
Chris Lattner | 3687c1a | 2006-11-27 21:50:02 +0000 | [diff] [blame] | 517 | Op.getOperand(0), |
| 518 | Op.getOperand(1))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 519 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 520 | // Output known-0 bits are known if clear or set in both the LHS & RHS. |
| 521 | KnownZeroOut = (KnownZero & KnownZero2) | (KnownOne & KnownOne2); |
| 522 | // Output known-1 are known to be set if set in only one of the LHS, RHS. |
| 523 | KnownOneOut = (KnownZero & KnownOne2) | (KnownOne & KnownZero2); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 524 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 525 | // If all of the demanded bits on one side are known, and all of the set |
| 526 | // bits on that side are also known to be set on the other side, turn this |
| 527 | // into an AND, as we know the bits will be cleared. |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 528 | // e.g. (X | C1) ^ C2 --> (X | C1) & ~C2 iff (C1&C2) == C2 |
Joel Jones | d16ce17 | 2012-04-17 22:23:10 +0000 | [diff] [blame] | 529 | // NB: it is okay if more bits are known than are requested |
Stephen Lin | 155615d | 2013-07-08 00:37:03 +0000 | [diff] [blame] | 530 | if ((NewMask & (KnownZero|KnownOne)) == NewMask) { // all known on one side |
Joel Jones | d16ce17 | 2012-04-17 22:23:10 +0000 | [diff] [blame] | 531 | if (KnownOne == KnownOne2) { // set bits are the same on both sides |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 532 | EVT VT = Op.getValueType(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 533 | SDValue ANDC = TLO.DAG.getConstant(~KnownOne & NewMask, VT); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 534 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::AND, dl, VT, |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 535 | Op.getOperand(0), ANDC)); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 536 | } |
| 537 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 538 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 539 | // If the RHS is a constant, see if we can simplify it. |
Torok Edwin | 4fea2e9 | 2008-04-06 21:23:02 +0000 | [diff] [blame] | 540 | // for XOR, we prefer to force bits to 1 if they will make a -1. |
| 541 | // if we can't force bits, try to shrink constant |
| 542 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
| 543 | APInt Expanded = C->getAPIntValue() | (~NewMask); |
| 544 | // if we can expand it to have all bits set, do it |
| 545 | if (Expanded.isAllOnesValue()) { |
| 546 | if (Expanded != C->getAPIntValue()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 547 | EVT VT = Op.getValueType(); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 548 | SDValue New = TLO.DAG.getNode(Op.getOpcode(), dl,VT, Op.getOperand(0), |
Torok Edwin | 4fea2e9 | 2008-04-06 21:23:02 +0000 | [diff] [blame] | 549 | TLO.DAG.getConstant(Expanded, VT)); |
| 550 | return TLO.CombineTo(Op, New); |
| 551 | } |
| 552 | // if it already has all the bits set, nothing to change |
| 553 | // but don't shrink either! |
| 554 | } else if (TLO.ShrinkDemandedConstant(Op, NewMask)) { |
| 555 | return true; |
| 556 | } |
| 557 | } |
| 558 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 559 | KnownZero = KnownZeroOut; |
| 560 | KnownOne = KnownOneOut; |
| 561 | break; |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 562 | case ISD::SELECT: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 563 | if (SimplifyDemandedBits(Op.getOperand(2), NewMask, KnownZero, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 564 | KnownOne, TLO, Depth+1)) |
| 565 | return true; |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 566 | if (SimplifyDemandedBits(Op.getOperand(1), NewMask, KnownZero2, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 567 | KnownOne2, TLO, Depth+1)) |
| 568 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 569 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 570 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 571 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 572 | // If the operands are constants, see if we can simplify them. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 573 | if (TLO.ShrinkDemandedConstant(Op, NewMask)) |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 574 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 575 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 576 | // Only known if known in both the LHS and RHS. |
| 577 | KnownOne &= KnownOne2; |
| 578 | KnownZero &= KnownZero2; |
| 579 | break; |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 580 | case ISD::SELECT_CC: |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 581 | if (SimplifyDemandedBits(Op.getOperand(3), NewMask, KnownZero, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 582 | KnownOne, TLO, Depth+1)) |
| 583 | return true; |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 584 | if (SimplifyDemandedBits(Op.getOperand(2), NewMask, KnownZero2, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 585 | KnownOne2, TLO, Depth+1)) |
| 586 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 587 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
| 588 | assert((KnownZero2 & KnownOne2) == 0 && "Bits known to be one AND zero?"); |
| 589 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 590 | // If the operands are constants, see if we can simplify them. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 591 | if (TLO.ShrinkDemandedConstant(Op, NewMask)) |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 592 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 593 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 594 | // Only known if known in both the LHS and RHS. |
| 595 | KnownOne &= KnownOne2; |
| 596 | KnownZero &= KnownZero2; |
| 597 | break; |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 598 | case ISD::SHL: |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 599 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 600 | unsigned ShAmt = SA->getZExtValue(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 601 | SDValue InOp = Op.getOperand(0); |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 602 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 603 | // If the shift count is an invalid immediate, don't do anything. |
| 604 | if (ShAmt >= BitWidth) |
| 605 | break; |
| 606 | |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 607 | // If this is ((X >>u C1) << ShAmt), see if we can simplify this into a |
| 608 | // single shift. We can do this if the bottom bits (which are shifted |
| 609 | // out) are never demanded. |
| 610 | if (InOp.getOpcode() == ISD::SRL && |
| 611 | isa<ConstantSDNode>(InOp.getOperand(1))) { |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 612 | if (ShAmt && (NewMask & APInt::getLowBitsSet(BitWidth, ShAmt)) == 0) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 613 | unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 614 | unsigned Opc = ISD::SHL; |
| 615 | int Diff = ShAmt-C1; |
| 616 | if (Diff < 0) { |
| 617 | Diff = -Diff; |
| 618 | Opc = ISD::SRL; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 619 | } |
| 620 | |
| 621 | SDValue NewSA = |
Chris Lattner | 4e7e6cd | 2007-05-30 16:30:06 +0000 | [diff] [blame] | 622 | TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType()); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 623 | EVT VT = Op.getValueType(); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 624 | return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, dl, VT, |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 625 | InOp.getOperand(0), NewSA)); |
| 626 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 627 | } |
| 628 | |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 629 | if (SimplifyDemandedBits(InOp, NewMask.lshr(ShAmt), |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 630 | KnownZero, KnownOne, TLO, Depth+1)) |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 631 | return true; |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 632 | |
| 633 | // Convert (shl (anyext x, c)) to (anyext (shl x, c)) if the high bits |
| 634 | // are not demanded. This will likely allow the anyext to be folded away. |
| 635 | if (InOp.getNode()->getOpcode() == ISD::ANY_EXTEND) { |
| 636 | SDValue InnerOp = InOp.getNode()->getOperand(0); |
| 637 | EVT InnerVT = InnerOp.getValueType(); |
Eli Friedman | 2dd0353 | 2011-12-09 01:16:26 +0000 | [diff] [blame] | 638 | unsigned InnerBits = InnerVT.getSizeInBits(); |
| 639 | if (ShAmt < InnerBits && NewMask.lshr(InnerBits) == 0 && |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 640 | isTypeDesirableForOp(ISD::SHL, InnerVT)) { |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 641 | EVT ShTy = getShiftAmountTy(InnerVT); |
Dan Gohman | cd20c6f | 2010-07-23 21:08:12 +0000 | [diff] [blame] | 642 | if (!APInt(BitWidth, ShAmt).isIntN(ShTy.getSizeInBits())) |
| 643 | ShTy = InnerVT; |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 644 | SDValue NarrowShl = |
| 645 | TLO.DAG.getNode(ISD::SHL, dl, InnerVT, InnerOp, |
Dan Gohman | cd20c6f | 2010-07-23 21:08:12 +0000 | [diff] [blame] | 646 | TLO.DAG.getConstant(ShAmt, ShTy)); |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 647 | return |
| 648 | TLO.CombineTo(Op, |
| 649 | TLO.DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), |
| 650 | NarrowShl)); |
| 651 | } |
Richard Sandiford | 5d7e93c | 2013-10-16 10:26:19 +0000 | [diff] [blame] | 652 | // Repeat the SHL optimization above in cases where an extension |
| 653 | // intervenes: (shl (anyext (shr x, c1)), c2) to |
| 654 | // (shl (anyext x), c2-c1). This requires that the bottom c1 bits |
| 655 | // aren't demanded (as above) and that the shifted upper c1 bits of |
| 656 | // x aren't demanded. |
| 657 | if (InOp.hasOneUse() && |
| 658 | InnerOp.getOpcode() == ISD::SRL && |
| 659 | InnerOp.hasOneUse() && |
| 660 | isa<ConstantSDNode>(InnerOp.getOperand(1))) { |
| 661 | uint64_t InnerShAmt = cast<ConstantSDNode>(InnerOp.getOperand(1)) |
| 662 | ->getZExtValue(); |
| 663 | if (InnerShAmt < ShAmt && |
| 664 | InnerShAmt < InnerBits && |
| 665 | NewMask.lshr(InnerBits - InnerShAmt + ShAmt) == 0 && |
| 666 | NewMask.trunc(ShAmt) == 0) { |
| 667 | SDValue NewSA = |
| 668 | TLO.DAG.getConstant(ShAmt - InnerShAmt, |
| 669 | Op.getOperand(1).getValueType()); |
| 670 | EVT VT = Op.getValueType(); |
| 671 | SDValue NewExt = TLO.DAG.getNode(ISD::ANY_EXTEND, dl, VT, |
| 672 | InnerOp.getOperand(0)); |
| 673 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SHL, dl, VT, |
| 674 | NewExt, NewSA)); |
| 675 | } |
| 676 | } |
Dan Gohman | a4f4d69 | 2010-07-23 18:03:30 +0000 | [diff] [blame] | 677 | } |
| 678 | |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 679 | KnownZero <<= SA->getZExtValue(); |
| 680 | KnownOne <<= SA->getZExtValue(); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 681 | // low bits known zero. |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 682 | KnownZero |= APInt::getLowBitsSet(BitWidth, SA->getZExtValue()); |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 683 | } |
| 684 | break; |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 685 | case ISD::SRL: |
| 686 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 687 | EVT VT = Op.getValueType(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 688 | unsigned ShAmt = SA->getZExtValue(); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 689 | unsigned VTSize = VT.getSizeInBits(); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 690 | SDValue InOp = Op.getOperand(0); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 691 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 692 | // If the shift count is an invalid immediate, don't do anything. |
| 693 | if (ShAmt >= BitWidth) |
| 694 | break; |
| 695 | |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 696 | // If this is ((X << C1) >>u ShAmt), see if we can simplify this into a |
| 697 | // single shift. We can do this if the top bits (which are shifted out) |
| 698 | // are never demanded. |
| 699 | if (InOp.getOpcode() == ISD::SHL && |
| 700 | isa<ConstantSDNode>(InOp.getOperand(1))) { |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 701 | if (ShAmt && (NewMask & APInt::getHighBitsSet(VTSize, ShAmt)) == 0) { |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 702 | unsigned C1= cast<ConstantSDNode>(InOp.getOperand(1))->getZExtValue(); |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 703 | unsigned Opc = ISD::SRL; |
| 704 | int Diff = ShAmt-C1; |
| 705 | if (Diff < 0) { |
| 706 | Diff = -Diff; |
| 707 | Opc = ISD::SHL; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 708 | } |
| 709 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 710 | SDValue NewSA = |
Chris Lattner | 8c7d2d5 | 2007-04-17 22:53:02 +0000 | [diff] [blame] | 711 | TLO.DAG.getConstant(Diff, Op.getOperand(1).getValueType()); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 712 | return TLO.CombineTo(Op, TLO.DAG.getNode(Opc, dl, VT, |
Chris Lattner | 895c4ab | 2007-04-17 21:14:16 +0000 | [diff] [blame] | 713 | InOp.getOperand(0), NewSA)); |
| 714 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 715 | } |
| 716 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 717 | // Compute the new bits that are at the top now. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 718 | if (SimplifyDemandedBits(InOp, (NewMask << ShAmt), |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 719 | KnownZero, KnownOne, TLO, Depth+1)) |
| 720 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 721 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 722 | KnownZero = KnownZero.lshr(ShAmt); |
| 723 | KnownOne = KnownOne.lshr(ShAmt); |
Chris Lattner | c4fa603 | 2006-06-13 16:52:37 +0000 | [diff] [blame] | 724 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 725 | APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt); |
Chris Lattner | c4fa603 | 2006-06-13 16:52:37 +0000 | [diff] [blame] | 726 | KnownZero |= HighBits; // High bits known zero. |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 727 | } |
| 728 | break; |
| 729 | case ISD::SRA: |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 730 | // If this is an arithmetic shift right and only the low-bit is set, we can |
| 731 | // always convert this into a logical shr, even if the shift amount is |
| 732 | // variable. The low bit of the shift cannot be an input sign bit unless |
| 733 | // the shift amount is >= the size of the datatype, which is undefined. |
Eli Friedman | 2dd0353 | 2011-12-09 01:16:26 +0000 | [diff] [blame] | 734 | if (NewMask == 1) |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 735 | return TLO.CombineTo(Op, |
| 736 | TLO.DAG.getNode(ISD::SRL, dl, Op.getValueType(), |
| 737 | Op.getOperand(0), Op.getOperand(1))); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 738 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 739 | if (ConstantSDNode *SA = dyn_cast<ConstantSDNode>(Op.getOperand(1))) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 740 | EVT VT = Op.getValueType(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 741 | unsigned ShAmt = SA->getZExtValue(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 742 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 743 | // If the shift count is an invalid immediate, don't do anything. |
| 744 | if (ShAmt >= BitWidth) |
| 745 | break; |
| 746 | |
| 747 | APInt InDemandedMask = (NewMask << ShAmt); |
Chris Lattner | 1b73713 | 2006-05-08 17:22:53 +0000 | [diff] [blame] | 748 | |
| 749 | // If any of the demanded bits are produced by the sign extension, we also |
| 750 | // demand the input sign bit. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 751 | APInt HighBits = APInt::getHighBitsSet(BitWidth, ShAmt); |
| 752 | if (HighBits.intersects(NewMask)) |
Dan Gohman | 87862e7 | 2009-12-11 21:31:27 +0000 | [diff] [blame] | 753 | InDemandedMask |= APInt::getSignBit(VT.getScalarType().getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 754 | |
Chris Lattner | 1b73713 | 2006-05-08 17:22:53 +0000 | [diff] [blame] | 755 | if (SimplifyDemandedBits(Op.getOperand(0), InDemandedMask, |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 756 | KnownZero, KnownOne, TLO, Depth+1)) |
| 757 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 758 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 759 | KnownZero = KnownZero.lshr(ShAmt); |
| 760 | KnownOne = KnownOne.lshr(ShAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 761 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 762 | // Handle the sign bit, adjusted to where it is now in the mask. |
| 763 | APInt SignBit = APInt::getSignBit(BitWidth).lshr(ShAmt); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 764 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 765 | // If the input sign bit is known to be zero, or if none of the top bits |
| 766 | // are demanded, turn this into an unsigned shift right. |
Richard Sandiford | f9a5e40 | 2013-10-17 11:16:57 +0000 | [diff] [blame] | 767 | if (KnownZero.intersects(SignBit) || (HighBits & ~NewMask) == HighBits) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 768 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, dl, VT, |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 769 | Op.getOperand(0), |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 770 | Op.getOperand(1))); |
Richard Sandiford | f9a5e40 | 2013-10-17 11:16:57 +0000 | [diff] [blame] | 771 | |
| 772 | int Log2 = NewMask.exactLogBase2(); |
| 773 | if (Log2 >= 0) { |
| 774 | // The bit must come from the sign. |
| 775 | SDValue NewSA = |
| 776 | TLO.DAG.getConstant(BitWidth - 1 - Log2, |
| 777 | Op.getOperand(1).getValueType()); |
| 778 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, dl, VT, |
| 779 | Op.getOperand(0), NewSA)); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 780 | } |
Richard Sandiford | f9a5e40 | 2013-10-17 11:16:57 +0000 | [diff] [blame] | 781 | |
| 782 | if (KnownOne.intersects(SignBit)) |
| 783 | // New bits are known one. |
| 784 | KnownOne |= HighBits; |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 785 | } |
| 786 | break; |
| 787 | case ISD::SIGN_EXTEND_INREG: { |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 788 | EVT ExVT = cast<VTSDNode>(Op.getOperand(1))->getVT(); |
| 789 | |
| 790 | APInt MsbMask = APInt::getHighBitsSet(BitWidth, 1); |
| 791 | // If we only care about the highest bit, don't bother shifting right. |
Eli Friedman | d49db36 | 2012-01-31 01:08:03 +0000 | [diff] [blame] | 792 | if (MsbMask == DemandedMask) { |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 793 | unsigned ShAmt = ExVT.getScalarType().getSizeInBits(); |
| 794 | SDValue InOp = Op.getOperand(0); |
Eli Friedman | d49db36 | 2012-01-31 01:08:03 +0000 | [diff] [blame] | 795 | |
| 796 | // Compute the correct shift amount type, which must be getShiftAmountTy |
| 797 | // for scalar types after legalization. |
| 798 | EVT ShiftAmtTy = Op.getValueType(); |
| 799 | if (TLO.LegalTypes() && !ShiftAmtTy.isVector()) |
| 800 | ShiftAmtTy = getShiftAmountTy(ShiftAmtTy); |
| 801 | |
| 802 | SDValue ShiftAmt = TLO.DAG.getConstant(BitWidth - ShAmt, ShiftAmtTy); |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 803 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SHL, dl, |
| 804 | Op.getValueType(), InOp, ShiftAmt)); |
| 805 | } |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 806 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 807 | // Sign extension. Compute the demanded bits in the result that are not |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 808 | // present in the input. |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 809 | APInt NewBits = |
| 810 | APInt::getHighBitsSet(BitWidth, |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 811 | BitWidth - ExVT.getScalarType().getSizeInBits()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 812 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 813 | // If none of the extended bits are demanded, eliminate the sextinreg. |
Eli Friedman | 1d17d19 | 2010-08-02 04:42:25 +0000 | [diff] [blame] | 814 | if ((NewBits & NewMask) == 0) |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 815 | return TLO.CombineTo(Op, Op.getOperand(0)); |
| 816 | |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 817 | APInt InSignBit = |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 818 | APInt::getSignBit(ExVT.getScalarType().getSizeInBits()).zext(BitWidth); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 819 | APInt InputDemandedBits = |
| 820 | APInt::getLowBitsSet(BitWidth, |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 821 | ExVT.getScalarType().getSizeInBits()) & |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 822 | NewMask; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 823 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 824 | // Since the sign extended bits are demanded, we know that the sign |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 825 | // bit is demanded. |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 826 | InputDemandedBits |= InSignBit; |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 827 | |
| 828 | if (SimplifyDemandedBits(Op.getOperand(0), InputDemandedBits, |
| 829 | KnownZero, KnownOne, TLO, Depth+1)) |
| 830 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 831 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 832 | |
| 833 | // If the sign bit of the input is known set or clear, then we know the |
| 834 | // top bits of the result. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 835 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 836 | // If the input sign bit is known zero, convert this into a zero extension. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 837 | if (KnownZero.intersects(InSignBit)) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 838 | return TLO.CombineTo(Op, |
Nadav Rotem | cc61656 | 2012-01-15 19:27:55 +0000 | [diff] [blame] | 839 | TLO.DAG.getZeroExtendInReg(Op.getOperand(0),dl,ExVT)); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 840 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 841 | if (KnownOne.intersects(InSignBit)) { // Input sign bit known set |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 842 | KnownOne |= NewBits; |
| 843 | KnownZero &= ~NewBits; |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 844 | } else { // Input sign bit unknown |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 845 | KnownZero &= ~NewBits; |
| 846 | KnownOne &= ~NewBits; |
| 847 | } |
| 848 | break; |
| 849 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 850 | case ISD::BUILD_PAIR: { |
| 851 | EVT HalfVT = Op.getOperand(0).getValueType(); |
| 852 | unsigned HalfBitWidth = HalfVT.getScalarSizeInBits(); |
| 853 | |
| 854 | APInt MaskLo = NewMask.getLoBits(HalfBitWidth).trunc(HalfBitWidth); |
| 855 | APInt MaskHi = NewMask.getHiBits(HalfBitWidth).trunc(HalfBitWidth); |
| 856 | |
| 857 | APInt KnownZeroLo, KnownOneLo; |
| 858 | APInt KnownZeroHi, KnownOneHi; |
| 859 | |
| 860 | if (SimplifyDemandedBits(Op.getOperand(0), MaskLo, KnownZeroLo, |
| 861 | KnownOneLo, TLO, Depth + 1)) |
| 862 | return true; |
| 863 | |
| 864 | if (SimplifyDemandedBits(Op.getOperand(1), MaskHi, KnownZeroHi, |
| 865 | KnownOneHi, TLO, Depth + 1)) |
| 866 | return true; |
| 867 | |
| 868 | KnownZero = KnownZeroLo.zext(BitWidth) | |
| 869 | KnownZeroHi.zext(BitWidth).shl(HalfBitWidth); |
| 870 | |
| 871 | KnownOne = KnownOneLo.zext(BitWidth) | |
| 872 | KnownOneHi.zext(BitWidth).shl(HalfBitWidth); |
| 873 | break; |
| 874 | } |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 875 | case ISD::ZERO_EXTEND: { |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 876 | unsigned OperandBitWidth = |
| 877 | Op.getOperand(0).getValueType().getScalarType().getSizeInBits(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 878 | APInt InMask = NewMask.trunc(OperandBitWidth); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 879 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 880 | // If none of the top bits are demanded, convert this into an any_extend. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 881 | APInt NewBits = |
| 882 | APInt::getHighBitsSet(BitWidth, BitWidth - OperandBitWidth) & NewMask; |
| 883 | if (!NewBits.intersects(NewMask)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 884 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::ANY_EXTEND, dl, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 885 | Op.getValueType(), |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 886 | Op.getOperand(0))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 887 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 888 | if (SimplifyDemandedBits(Op.getOperand(0), InMask, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 889 | KnownZero, KnownOne, TLO, Depth+1)) |
| 890 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 891 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 892 | KnownZero = KnownZero.zext(BitWidth); |
| 893 | KnownOne = KnownOne.zext(BitWidth); |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 894 | KnownZero |= NewBits; |
| 895 | break; |
| 896 | } |
| 897 | case ISD::SIGN_EXTEND: { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 898 | EVT InVT = Op.getOperand(0).getValueType(); |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 899 | unsigned InBits = InVT.getScalarType().getSizeInBits(); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 900 | APInt InMask = APInt::getLowBitsSet(BitWidth, InBits); |
Dan Gohman | 9736028 | 2008-03-11 21:29:43 +0000 | [diff] [blame] | 901 | APInt InSignBit = APInt::getBitsSet(BitWidth, InBits - 1, InBits); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 902 | APInt NewBits = ~InMask & NewMask; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 903 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 904 | // If none of the top bits are demanded, convert this into an any_extend. |
| 905 | if (NewBits == 0) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 906 | return TLO.CombineTo(Op,TLO.DAG.getNode(ISD::ANY_EXTEND, dl, |
| 907 | Op.getValueType(), |
| 908 | Op.getOperand(0))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 909 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 910 | // Since some of the sign extended bits are demanded, we know that the sign |
| 911 | // bit is demanded. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 912 | APInt InDemandedBits = InMask & NewMask; |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 913 | InDemandedBits |= InSignBit; |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 914 | InDemandedBits = InDemandedBits.trunc(InBits); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 915 | |
| 916 | if (SimplifyDemandedBits(Op.getOperand(0), InDemandedBits, KnownZero, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 917 | KnownOne, TLO, Depth+1)) |
| 918 | return true; |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 919 | KnownZero = KnownZero.zext(BitWidth); |
| 920 | KnownOne = KnownOne.zext(BitWidth); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 921 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 922 | // If the sign bit is known zero, convert this to a zero extend. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 923 | if (KnownZero.intersects(InSignBit)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 924 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::ZERO_EXTEND, dl, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 925 | Op.getValueType(), |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 926 | Op.getOperand(0))); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 927 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 928 | // If the sign bit is known one, the top bits match. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 929 | if (KnownOne.intersects(InSignBit)) { |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 930 | KnownOne |= NewBits; |
| 931 | assert((KnownZero & NewBits) == 0); |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 932 | } else { // Otherwise, top bits aren't known. |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 933 | assert((KnownOne & NewBits) == 0); |
| 934 | assert((KnownZero & NewBits) == 0); |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 935 | } |
| 936 | break; |
| 937 | } |
| 938 | case ISD::ANY_EXTEND: { |
Dan Gohman | d199636 | 2010-01-09 02:13:55 +0000 | [diff] [blame] | 939 | unsigned OperandBitWidth = |
| 940 | Op.getOperand(0).getValueType().getScalarType().getSizeInBits(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 941 | APInt InMask = NewMask.trunc(OperandBitWidth); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 942 | if (SimplifyDemandedBits(Op.getOperand(0), InMask, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 943 | KnownZero, KnownOne, TLO, Depth+1)) |
| 944 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 945 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 946 | KnownZero = KnownZero.zext(BitWidth); |
| 947 | KnownOne = KnownOne.zext(BitWidth); |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 948 | break; |
| 949 | } |
Chris Lattner | fe8babf | 2006-05-05 22:32:12 +0000 | [diff] [blame] | 950 | case ISD::TRUNCATE: { |
Chris Lattner | c93dfda | 2006-05-06 00:11:52 +0000 | [diff] [blame] | 951 | // Simplify the input, using demanded bit information, and compute the known |
| 952 | // zero/one bits live out. |
Dan Gohman | 042919c | 2010-03-01 17:59:21 +0000 | [diff] [blame] | 953 | unsigned OperandBitWidth = |
| 954 | Op.getOperand(0).getValueType().getScalarType().getSizeInBits(); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 955 | APInt TruncMask = NewMask.zext(OperandBitWidth); |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 956 | if (SimplifyDemandedBits(Op.getOperand(0), TruncMask, |
Chris Lattner | fe8babf | 2006-05-05 22:32:12 +0000 | [diff] [blame] | 957 | KnownZero, KnownOne, TLO, Depth+1)) |
| 958 | return true; |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 959 | KnownZero = KnownZero.trunc(BitWidth); |
| 960 | KnownOne = KnownOne.trunc(BitWidth); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 961 | |
Chris Lattner | c93dfda | 2006-05-06 00:11:52 +0000 | [diff] [blame] | 962 | // If the input is only used by this truncate, see if we can shrink it based |
| 963 | // on the known demanded bits. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 964 | if (Op.getOperand(0).getNode()->hasOneUse()) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 965 | SDValue In = Op.getOperand(0); |
Chris Lattner | c93dfda | 2006-05-06 00:11:52 +0000 | [diff] [blame] | 966 | switch (In.getOpcode()) { |
| 967 | default: break; |
| 968 | case ISD::SRL: |
| 969 | // Shrink SRL by a constant if none of the high bits shifted in are |
| 970 | // demanded. |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 971 | if (TLO.LegalTypes() && |
| 972 | !isTypeDesirableForOp(ISD::SRL, Op.getValueType())) |
| 973 | // Do not turn (vt1 truncate (vt2 srl)) into (vt1 srl) if vt1 is |
| 974 | // undesirable. |
| 975 | break; |
| 976 | ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(In.getOperand(1)); |
| 977 | if (!ShAmt) |
| 978 | break; |
Owen Anderson | 7adf862 | 2011-04-13 23:22:23 +0000 | [diff] [blame] | 979 | SDValue Shift = In.getOperand(1); |
| 980 | if (TLO.LegalTypes()) { |
| 981 | uint64_t ShVal = ShAmt->getZExtValue(); |
| 982 | Shift = |
| 983 | TLO.DAG.getConstant(ShVal, getShiftAmountTy(Op.getValueType())); |
| 984 | } |
| 985 | |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 986 | APInt HighBits = APInt::getHighBitsSet(OperandBitWidth, |
| 987 | OperandBitWidth - BitWidth); |
Jay Foad | 40f8f62 | 2010-12-07 08:25:19 +0000 | [diff] [blame] | 988 | HighBits = HighBits.lshr(ShAmt->getZExtValue()).trunc(BitWidth); |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 989 | |
| 990 | if (ShAmt->getZExtValue() < BitWidth && !(HighBits & NewMask)) { |
| 991 | // None of the shifted in bits are needed. Add a truncate of the |
| 992 | // shift input, then shift it. |
| 993 | SDValue NewTrunc = TLO.DAG.getNode(ISD::TRUNCATE, dl, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 994 | Op.getValueType(), |
Evan Cheng | e5b51ac | 2010-04-17 06:13:15 +0000 | [diff] [blame] | 995 | In.getOperand(0)); |
| 996 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SRL, dl, |
| 997 | Op.getValueType(), |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 998 | NewTrunc, |
Owen Anderson | 7adf862 | 2011-04-13 23:22:23 +0000 | [diff] [blame] | 999 | Shift)); |
Chris Lattner | c93dfda | 2006-05-06 00:11:52 +0000 | [diff] [blame] | 1000 | } |
| 1001 | break; |
| 1002 | } |
| 1003 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1004 | |
| 1005 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Chris Lattner | fe8babf | 2006-05-05 22:32:12 +0000 | [diff] [blame] | 1006 | break; |
| 1007 | } |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 1008 | case ISD::AssertZext: { |
Owen Anderson | 7ab15f6 | 2011-09-03 00:26:49 +0000 | [diff] [blame] | 1009 | // AssertZext demands all of the high bits, plus any of the low bits |
| 1010 | // demanded by its users. |
| 1011 | EVT VT = cast<VTSDNode>(Op.getOperand(1))->getVT(); |
| 1012 | APInt InMask = APInt::getLowBitsSet(BitWidth, |
| 1013 | VT.getSizeInBits()); |
| 1014 | if (SimplifyDemandedBits(Op.getOperand(0), ~InMask | NewMask, |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 1015 | KnownZero, KnownOne, TLO, Depth+1)) |
| 1016 | return true; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1017 | assert((KnownZero & KnownOne) == 0 && "Bits known to be one AND zero?"); |
Dan Gohman | 400f75c | 2010-06-03 20:21:33 +0000 | [diff] [blame] | 1018 | |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 1019 | KnownZero |= ~InMask & NewMask; |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 1020 | break; |
| 1021 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1022 | case ISD::BITCAST: |
Stuart Hastings | 57f1fde | 2011-06-06 16:44:31 +0000 | [diff] [blame] | 1023 | // If this is an FP->Int bitcast and if the sign bit is the only |
| 1024 | // thing demanded, turn this into a FGETSIGN. |
Eli Friedman | ca072a3 | 2011-12-15 02:07:20 +0000 | [diff] [blame] | 1025 | if (!TLO.LegalOperations() && |
| 1026 | !Op.getValueType().isVector() && |
Eli Friedman | 0948f0a | 2011-11-09 22:25:12 +0000 | [diff] [blame] | 1027 | !Op.getOperand(0).getValueType().isVector() && |
Nadav Rotem | 0c3e678 | 2011-06-12 14:56:55 +0000 | [diff] [blame] | 1028 | NewMask == APInt::getSignBit(Op.getValueType().getSizeInBits()) && |
| 1029 | Op.getOperand(0).getValueType().isFloatingPoint()) { |
Stuart Hastings | 57f1fde | 2011-06-06 16:44:31 +0000 | [diff] [blame] | 1030 | bool OpVTLegal = isOperationLegalOrCustom(ISD::FGETSIGN, Op.getValueType()); |
| 1031 | bool i32Legal = isOperationLegalOrCustom(ISD::FGETSIGN, MVT::i32); |
| 1032 | if ((OpVTLegal || i32Legal) && Op.getValueType().isSimple()) { |
| 1033 | EVT Ty = OpVTLegal ? Op.getValueType() : MVT::i32; |
Chris Lattner | 2ceb2cf | 2007-12-22 21:35:38 +0000 | [diff] [blame] | 1034 | // Make a FGETSIGN + SHL to move the sign bit into the appropriate |
| 1035 | // place. We expect the SHL to be eliminated by other optimizations. |
Stuart Hastings | 090bf19 | 2011-06-01 18:32:25 +0000 | [diff] [blame] | 1036 | SDValue Sign = TLO.DAG.getNode(ISD::FGETSIGN, dl, Ty, Op.getOperand(0)); |
Stuart Hastings | 57f1fde | 2011-06-06 16:44:31 +0000 | [diff] [blame] | 1037 | unsigned OpVTSizeInBits = Op.getValueType().getSizeInBits(); |
| 1038 | if (!OpVTLegal && OpVTSizeInBits > 32) |
Stuart Hastings | 090bf19 | 2011-06-01 18:32:25 +0000 | [diff] [blame] | 1039 | Sign = TLO.DAG.getNode(ISD::ZERO_EXTEND, dl, Op.getValueType(), Sign); |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1040 | unsigned ShVal = Op.getValueType().getSizeInBits()-1; |
Stuart Hastings | bdce372 | 2011-06-01 14:04:17 +0000 | [diff] [blame] | 1041 | SDValue ShAmt = TLO.DAG.getConstant(ShVal, Op.getValueType()); |
Stuart Hastings | 3dfc4b12 | 2011-05-19 18:48:20 +0000 | [diff] [blame] | 1042 | return TLO.CombineTo(Op, TLO.DAG.getNode(ISD::SHL, dl, |
| 1043 | Op.getValueType(), |
Chris Lattner | 2ceb2cf | 2007-12-22 21:35:38 +0000 | [diff] [blame] | 1044 | Sign, ShAmt)); |
| 1045 | } |
| 1046 | } |
Chris Lattner | 2ceb2cf | 2007-12-22 21:35:38 +0000 | [diff] [blame] | 1047 | break; |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 1048 | case ISD::ADD: |
| 1049 | case ISD::MUL: |
| 1050 | case ISD::SUB: { |
| 1051 | // Add, Sub, and Mul don't demand any bits in positions beyond that |
| 1052 | // of the highest bit demanded of them. |
| 1053 | APInt LoMask = APInt::getLowBitsSet(BitWidth, |
| 1054 | BitWidth - NewMask.countLeadingZeros()); |
| 1055 | if (SimplifyDemandedBits(Op.getOperand(0), LoMask, KnownZero2, |
| 1056 | KnownOne2, TLO, Depth+1)) |
| 1057 | return true; |
| 1058 | if (SimplifyDemandedBits(Op.getOperand(1), LoMask, KnownZero2, |
| 1059 | KnownOne2, TLO, Depth+1)) |
| 1060 | return true; |
| 1061 | // See if the operation should be performed at a smaller bit width. |
Dan Gohman | 4e39e9d | 2010-06-24 14:30:44 +0000 | [diff] [blame] | 1062 | if (TLO.ShrinkDemandedOp(Op, BitWidth, NewMask, dl)) |
Dan Gohman | 97121ba | 2009-04-08 00:15:30 +0000 | [diff] [blame] | 1063 | return true; |
| 1064 | } |
| 1065 | // FALL THROUGH |
Dan Gohman | 54eed37 | 2008-05-06 00:53:29 +0000 | [diff] [blame] | 1066 | default: |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1067 | // Just use computeKnownBits to compute output bits. |
| 1068 | TLO.DAG.computeKnownBits(Op, KnownZero, KnownOne, Depth); |
Chris Lattner | a6bc5a4 | 2006-02-27 01:00:42 +0000 | [diff] [blame] | 1069 | break; |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 1070 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1071 | |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 1072 | // If we know the value of all of the demanded bits, return this as a |
| 1073 | // constant. |
Dan Gohman | 7b8d4a9 | 2008-02-27 00:25:32 +0000 | [diff] [blame] | 1074 | if ((NewMask & (KnownZero|KnownOne)) == NewMask) |
Chris Lattner | ec66515 | 2006-02-26 23:36:02 +0000 | [diff] [blame] | 1075 | return TLO.CombineTo(Op, TLO.DAG.getConstant(KnownOne, Op.getValueType())); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1076 | |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 1077 | return false; |
| 1078 | } |
| 1079 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1080 | /// computeKnownBitsForTargetNode - Determine which of the bits specified |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1081 | /// in Mask are known to be either zero or one and return them in the |
Nate Begeman | 368e18d | 2006-02-16 21:11:51 +0000 | [diff] [blame] | 1082 | /// KnownZero/KnownOne bitsets. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1083 | void TargetLowering::computeKnownBitsForTargetNode(const SDValue Op, |
| 1084 | APInt &KnownZero, |
| 1085 | APInt &KnownOne, |
| 1086 | const SelectionDAG &DAG, |
| 1087 | unsigned Depth) const { |
Chris Lattner | 1b5232a | 2006-04-02 06:19:46 +0000 | [diff] [blame] | 1088 | assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || |
| 1089 | Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || |
| 1090 | Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || |
| 1091 | Op.getOpcode() == ISD::INTRINSIC_VOID) && |
Chris Lattner | c6fd6cd | 2006-01-30 04:09:27 +0000 | [diff] [blame] | 1092 | "Should use MaskedValueIsZero if you don't know whether Op" |
| 1093 | " is a target node!"); |
Rafael Espindola | 26c8dcc | 2012-04-04 12:51:34 +0000 | [diff] [blame] | 1094 | KnownZero = KnownOne = APInt(KnownOne.getBitWidth(), 0); |
Evan Cheng | 3a03ebb | 2005-12-21 23:05:39 +0000 | [diff] [blame] | 1095 | } |
Chris Lattner | 4ccb070 | 2006-01-26 20:37:03 +0000 | [diff] [blame] | 1096 | |
Chris Lattner | 5c3e21d | 2006-05-06 09:27:13 +0000 | [diff] [blame] | 1097 | /// ComputeNumSignBitsForTargetNode - This method can be implemented by |
| 1098 | /// targets that want to expose additional information about sign bits to the |
| 1099 | /// DAG Combiner. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1100 | unsigned TargetLowering::ComputeNumSignBitsForTargetNode(SDValue Op, |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1101 | const SelectionDAG &, |
Chris Lattner | 5c3e21d | 2006-05-06 09:27:13 +0000 | [diff] [blame] | 1102 | unsigned Depth) const { |
| 1103 | assert((Op.getOpcode() >= ISD::BUILTIN_OP_END || |
| 1104 | Op.getOpcode() == ISD::INTRINSIC_WO_CHAIN || |
| 1105 | Op.getOpcode() == ISD::INTRINSIC_W_CHAIN || |
| 1106 | Op.getOpcode() == ISD::INTRINSIC_VOID) && |
| 1107 | "Should use ComputeNumSignBits if you don't know whether Op" |
| 1108 | " is a target node!"); |
| 1109 | return 1; |
| 1110 | } |
| 1111 | |
Dan Gohman | 97d1163 | 2009-02-15 23:59:32 +0000 | [diff] [blame] | 1112 | /// ValueHasExactlyOneBitSet - Test if the given value is known to have exactly |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1113 | /// one bit set. This differs from computeKnownBits in that it doesn't need to |
Dan Gohman | 97d1163 | 2009-02-15 23:59:32 +0000 | [diff] [blame] | 1114 | /// determine which bit is set. |
| 1115 | /// |
Dale Johannesen | 85b0ede | 2009-02-11 19:19:41 +0000 | [diff] [blame] | 1116 | static bool ValueHasExactlyOneBitSet(SDValue Val, const SelectionDAG &DAG) { |
Dan Gohman | 97d1163 | 2009-02-15 23:59:32 +0000 | [diff] [blame] | 1117 | // A left-shift of a constant one will have exactly one bit set, because |
| 1118 | // shifting the bit off the end is undefined. |
| 1119 | if (Val.getOpcode() == ISD::SHL) |
| 1120 | if (ConstantSDNode *C = |
| 1121 | dyn_cast<ConstantSDNode>(Val.getNode()->getOperand(0))) |
| 1122 | if (C->getAPIntValue() == 1) |
| 1123 | return true; |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1124 | |
Dan Gohman | 97d1163 | 2009-02-15 23:59:32 +0000 | [diff] [blame] | 1125 | // Similarly, a right-shift of a constant sign-bit will have exactly |
| 1126 | // one bit set. |
| 1127 | if (Val.getOpcode() == ISD::SRL) |
| 1128 | if (ConstantSDNode *C = |
| 1129 | dyn_cast<ConstantSDNode>(Val.getNode()->getOperand(0))) |
| 1130 | if (C->getAPIntValue().isSignBit()) |
| 1131 | return true; |
| 1132 | |
| 1133 | // More could be done here, though the above checks are enough |
| 1134 | // to handle some common cases. |
| 1135 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1136 | // Fall back to computeKnownBits to catch other known cases. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1137 | EVT OpVT = Val.getValueType(); |
Dan Gohman | 5b870af | 2010-03-02 02:14:38 +0000 | [diff] [blame] | 1138 | unsigned BitWidth = OpVT.getScalarType().getSizeInBits(); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1139 | APInt KnownZero, KnownOne; |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1140 | DAG.computeKnownBits(Val, KnownZero, KnownOne); |
Dale Johannesen | 85b0ede | 2009-02-11 19:19:41 +0000 | [diff] [blame] | 1141 | return (KnownZero.countPopulation() == BitWidth - 1) && |
| 1142 | (KnownOne.countPopulation() == 1); |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1143 | } |
Chris Lattner | 5c3e21d | 2006-05-06 09:27:13 +0000 | [diff] [blame] | 1144 | |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1145 | bool TargetLowering::isConstTrueVal(const SDNode *N) const { |
| 1146 | if (!N) |
| 1147 | return false; |
| 1148 | |
| 1149 | bool IsVec = false; |
| 1150 | const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); |
| 1151 | if (!CN) { |
| 1152 | const BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N); |
| 1153 | if (!BV) |
| 1154 | return false; |
| 1155 | |
| 1156 | IsVec = true; |
| 1157 | CN = BV->getConstantSplatValue(); |
| 1158 | } |
| 1159 | |
| 1160 | switch (getBooleanContents(IsVec)) { |
| 1161 | case UndefinedBooleanContent: |
| 1162 | return CN->getAPIntValue()[0]; |
| 1163 | case ZeroOrOneBooleanContent: |
| 1164 | return CN->isOne(); |
| 1165 | case ZeroOrNegativeOneBooleanContent: |
| 1166 | return CN->isAllOnesValue(); |
| 1167 | } |
| 1168 | |
| 1169 | llvm_unreachable("Invalid boolean contents"); |
| 1170 | } |
| 1171 | |
| 1172 | bool TargetLowering::isConstFalseVal(const SDNode *N) const { |
| 1173 | if (!N) |
| 1174 | return false; |
| 1175 | |
| 1176 | bool IsVec = false; |
| 1177 | const ConstantSDNode *CN = dyn_cast<ConstantSDNode>(N); |
| 1178 | if (!CN) { |
| 1179 | const BuildVectorSDNode *BV = dyn_cast<BuildVectorSDNode>(N); |
| 1180 | if (!BV) |
| 1181 | return false; |
| 1182 | |
| 1183 | IsVec = true; |
| 1184 | CN = BV->getConstantSplatValue(); |
| 1185 | } |
| 1186 | |
| 1187 | if (getBooleanContents(IsVec) == UndefinedBooleanContent) |
| 1188 | return !CN->getAPIntValue()[0]; |
| 1189 | |
| 1190 | return CN->isNullValue(); |
| 1191 | } |
| 1192 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1193 | /// SimplifySetCC - Try to simplify a setcc built with the specified operands |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1194 | /// and cc. If it is unable to simplify it, return a null SDValue. |
| 1195 | SDValue |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1196 | TargetLowering::SimplifySetCC(EVT VT, SDValue N0, SDValue N1, |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1197 | ISD::CondCode Cond, bool foldBooleans, |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 1198 | DAGCombinerInfo &DCI, SDLoc dl) const { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1199 | SelectionDAG &DAG = DCI.DAG; |
| 1200 | |
| 1201 | // These setcc operations always fold. |
| 1202 | switch (Cond) { |
| 1203 | default: break; |
| 1204 | case ISD::SETFALSE: |
| 1205 | case ISD::SETFALSE2: return DAG.getConstant(0, VT); |
| 1206 | case ISD::SETTRUE: |
Tim Northover | a5eeb9d | 2013-09-06 12:38:12 +0000 | [diff] [blame] | 1207 | case ISD::SETTRUE2: { |
| 1208 | TargetLowering::BooleanContent Cnt = getBooleanContents(VT.isVector()); |
| 1209 | return DAG.getConstant( |
| 1210 | Cnt == TargetLowering::ZeroOrNegativeOneBooleanContent ? -1ULL : 1, VT); |
| 1211 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1212 | } |
| 1213 | |
Chris Lattner | 7a2bdde | 2011-04-15 05:18:47 +0000 | [diff] [blame] | 1214 | // Ensure that the constant occurs on the RHS, and fold constant |
| 1215 | // comparisons. |
Tom Stellard | 12d43f9 | 2013-09-28 02:50:38 +0000 | [diff] [blame] | 1216 | ISD::CondCode SwappedCC = ISD::getSetCCSwappedOperands(Cond); |
| 1217 | if (isa<ConstantSDNode>(N0.getNode()) && |
| 1218 | (DCI.isBeforeLegalizeOps() || |
| 1219 | isCondCodeLegal(SwappedCC, N0.getSimpleValueType()))) |
| 1220 | return DAG.getSetCC(dl, VT, N1, N0, SwappedCC); |
Eric Christopher | 362fee9 | 2011-06-17 20:41:29 +0000 | [diff] [blame] | 1221 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1222 | if (ConstantSDNode *N1C = dyn_cast<ConstantSDNode>(N1.getNode())) { |
Dan Gohman | 6c6cd1c | 2008-03-03 22:22:56 +0000 | [diff] [blame] | 1223 | const APInt &C1 = N1C->getAPIntValue(); |
Dale Johannesen | 89217a6 | 2008-11-07 01:28:02 +0000 | [diff] [blame] | 1224 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1225 | // If the LHS is '(srl (ctlz x), 5)', the RHS is 0/1, and this is an |
| 1226 | // equality comparison, then we're just comparing whether X itself is |
| 1227 | // zero. |
| 1228 | if (N0.getOpcode() == ISD::SRL && (C1 == 0 || C1 == 1) && |
| 1229 | N0.getOperand(0).getOpcode() == ISD::CTLZ && |
| 1230 | N0.getOperand(1).getOpcode() == ISD::Constant) { |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1231 | const APInt &ShAmt |
| 1232 | = cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1233 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
| 1234 | ShAmt == Log2_32(N0.getValueType().getSizeInBits())) { |
| 1235 | if ((C1 == 0) == (Cond == ISD::SETEQ)) { |
| 1236 | // (srl (ctlz x), 5) == 0 -> X != 0 |
| 1237 | // (srl (ctlz x), 5) != 1 -> X != 0 |
| 1238 | Cond = ISD::SETNE; |
| 1239 | } else { |
| 1240 | // (srl (ctlz x), 5) != 0 -> X == 0 |
| 1241 | // (srl (ctlz x), 5) == 1 -> X == 0 |
| 1242 | Cond = ISD::SETEQ; |
| 1243 | } |
| 1244 | SDValue Zero = DAG.getConstant(0, N0.getValueType()); |
| 1245 | return DAG.getSetCC(dl, VT, N0.getOperand(0).getOperand(0), |
| 1246 | Zero, Cond); |
| 1247 | } |
| 1248 | } |
| 1249 | |
Benjamin Kramer | d822892 | 2011-01-17 12:04:57 +0000 | [diff] [blame] | 1250 | SDValue CTPOP = N0; |
| 1251 | // Look through truncs that don't change the value of a ctpop. |
| 1252 | if (N0.hasOneUse() && N0.getOpcode() == ISD::TRUNCATE) |
| 1253 | CTPOP = N0.getOperand(0); |
| 1254 | |
| 1255 | if (CTPOP.hasOneUse() && CTPOP.getOpcode() == ISD::CTPOP && |
Benjamin Kramer | c9b6a3e | 2011-01-17 18:00:28 +0000 | [diff] [blame] | 1256 | (N0 == CTPOP || N0.getValueType().getSizeInBits() > |
Benjamin Kramer | d822892 | 2011-01-17 12:04:57 +0000 | [diff] [blame] | 1257 | Log2_32_Ceil(CTPOP.getValueType().getSizeInBits()))) { |
| 1258 | EVT CTVT = CTPOP.getValueType(); |
| 1259 | SDValue CTOp = CTPOP.getOperand(0); |
| 1260 | |
| 1261 | // (ctpop x) u< 2 -> (x & x-1) == 0 |
| 1262 | // (ctpop x) u> 1 -> (x & x-1) != 0 |
| 1263 | if ((Cond == ISD::SETULT && C1 == 2) || (Cond == ISD::SETUGT && C1 == 1)){ |
| 1264 | SDValue Sub = DAG.getNode(ISD::SUB, dl, CTVT, CTOp, |
| 1265 | DAG.getConstant(1, CTVT)); |
| 1266 | SDValue And = DAG.getNode(ISD::AND, dl, CTVT, CTOp, Sub); |
| 1267 | ISD::CondCode CC = Cond == ISD::SETULT ? ISD::SETEQ : ISD::SETNE; |
| 1268 | return DAG.getSetCC(dl, VT, And, DAG.getConstant(0, CTVT), CC); |
| 1269 | } |
| 1270 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1271 | // TODO: (ctpop x) == 1 -> x && (x & x-1) == 0 iff ctpop is illegal. |
Benjamin Kramer | d822892 | 2011-01-17 12:04:57 +0000 | [diff] [blame] | 1272 | } |
| 1273 | |
Benjamin Kramer | e7cf062 | 2011-04-22 18:47:44 +0000 | [diff] [blame] | 1274 | // (zext x) == C --> x == (trunc C) |
| 1275 | if (DCI.isBeforeLegalize() && N0->hasOneUse() && |
| 1276 | (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { |
| 1277 | unsigned MinBits = N0.getValueSizeInBits(); |
| 1278 | SDValue PreZExt; |
| 1279 | if (N0->getOpcode() == ISD::ZERO_EXTEND) { |
| 1280 | // ZExt |
| 1281 | MinBits = N0->getOperand(0).getValueSizeInBits(); |
| 1282 | PreZExt = N0->getOperand(0); |
| 1283 | } else if (N0->getOpcode() == ISD::AND) { |
| 1284 | // DAGCombine turns costly ZExts into ANDs |
| 1285 | if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(N0->getOperand(1))) |
| 1286 | if ((C->getAPIntValue()+1).isPowerOf2()) { |
| 1287 | MinBits = C->getAPIntValue().countTrailingOnes(); |
| 1288 | PreZExt = N0->getOperand(0); |
| 1289 | } |
| 1290 | } else if (LoadSDNode *LN0 = dyn_cast<LoadSDNode>(N0)) { |
| 1291 | // ZEXTLOAD |
| 1292 | if (LN0->getExtensionType() == ISD::ZEXTLOAD) { |
| 1293 | MinBits = LN0->getMemoryVT().getSizeInBits(); |
| 1294 | PreZExt = N0; |
| 1295 | } |
| 1296 | } |
| 1297 | |
Benjamin Kramer | d9b0b02 | 2012-06-02 10:20:22 +0000 | [diff] [blame] | 1298 | // Make sure we're not losing bits from the constant. |
Benjamin Kramer | f19b8b0 | 2013-05-21 08:51:09 +0000 | [diff] [blame] | 1299 | if (MinBits > 0 && |
| 1300 | MinBits < C1.getBitWidth() && MinBits >= C1.getActiveBits()) { |
Benjamin Kramer | e7cf062 | 2011-04-22 18:47:44 +0000 | [diff] [blame] | 1301 | EVT MinVT = EVT::getIntegerVT(*DAG.getContext(), MinBits); |
| 1302 | if (isTypeDesirableForOp(ISD::SETCC, MinVT)) { |
| 1303 | // Will get folded away. |
| 1304 | SDValue Trunc = DAG.getNode(ISD::TRUNCATE, dl, MinVT, PreZExt); |
| 1305 | SDValue C = DAG.getConstant(C1.trunc(MinBits), MinVT); |
| 1306 | return DAG.getSetCC(dl, VT, Trunc, C, Cond); |
| 1307 | } |
| 1308 | } |
| 1309 | } |
| 1310 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1311 | // If the LHS is '(and load, const)', the RHS is 0, |
| 1312 | // the test is for equality or unsigned, and all 1 bits of the const are |
| 1313 | // in the same partial word, see if we can shorten the load. |
| 1314 | if (DCI.isBeforeLegalize() && |
Eli Friedman | 8550980 | 2013-09-24 22:50:14 +0000 | [diff] [blame] | 1315 | !ISD::isSignedIntSetCC(Cond) && |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1316 | N0.getOpcode() == ISD::AND && C1 == 0 && |
| 1317 | N0.getNode()->hasOneUse() && |
| 1318 | isa<LoadSDNode>(N0.getOperand(0)) && |
| 1319 | N0.getOperand(0).getNode()->hasOneUse() && |
| 1320 | isa<ConstantSDNode>(N0.getOperand(1))) { |
| 1321 | LoadSDNode *Lod = cast<LoadSDNode>(N0.getOperand(0)); |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1322 | APInt bestMask; |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1323 | unsigned bestWidth = 0, bestOffset = 0; |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1324 | if (!Lod->isVolatile() && Lod->isUnindexed()) { |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1325 | unsigned origWidth = N0.getValueType().getSizeInBits(); |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1326 | unsigned maskWidth = origWidth; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1327 | // We can narrow (e.g.) 16-bit extending loads on 32-bit target to |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1328 | // 8 bits, but have to be careful... |
| 1329 | if (Lod->getExtensionType() != ISD::NON_EXTLOAD) |
| 1330 | origWidth = Lod->getMemoryVT().getSizeInBits(); |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1331 | const APInt &Mask = |
| 1332 | cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1333 | for (unsigned width = origWidth / 2; width>=8; width /= 2) { |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1334 | APInt newMask = APInt::getLowBitsSet(maskWidth, width); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1335 | for (unsigned offset=0; offset<origWidth/width; offset++) { |
| 1336 | if ((newMask & Mask) == Mask) { |
Benjamin Kramer | 69e42db | 2013-01-11 20:05:37 +0000 | [diff] [blame] | 1337 | if (!getDataLayout()->isLittleEndian()) |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1338 | bestOffset = (origWidth/width - offset - 1) * (width/8); |
| 1339 | else |
| 1340 | bestOffset = (uint64_t)offset * (width/8); |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1341 | bestMask = Mask.lshr(offset * (width/8) * 8); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1342 | bestWidth = width; |
| 1343 | break; |
Dale Johannesen | 89217a6 | 2008-11-07 01:28:02 +0000 | [diff] [blame] | 1344 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1345 | newMask = newMask << width; |
Dale Johannesen | 89217a6 | 2008-11-07 01:28:02 +0000 | [diff] [blame] | 1346 | } |
| 1347 | } |
| 1348 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1349 | if (bestWidth) { |
Chris Lattner | c0c7fca | 2011-04-14 04:12:47 +0000 | [diff] [blame] | 1350 | EVT newVT = EVT::getIntegerVT(*DAG.getContext(), bestWidth); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1351 | if (newVT.isRound()) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1352 | EVT PtrType = Lod->getOperand(1).getValueType(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1353 | SDValue Ptr = Lod->getBasePtr(); |
| 1354 | if (bestOffset != 0) |
| 1355 | Ptr = DAG.getNode(ISD::ADD, dl, PtrType, Lod->getBasePtr(), |
| 1356 | DAG.getConstant(bestOffset, PtrType)); |
| 1357 | unsigned NewAlign = MinAlign(Lod->getAlignment(), bestOffset); |
| 1358 | SDValue NewLoad = DAG.getLoad(newVT, dl, Lod->getChain(), Ptr, |
Chris Lattner | ecf42c4 | 2010-09-21 16:36:31 +0000 | [diff] [blame] | 1359 | Lod->getPointerInfo().getWithOffset(bestOffset), |
Pete Cooper | d752e0f | 2011-11-08 18:42:53 +0000 | [diff] [blame] | 1360 | false, false, false, NewAlign); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1361 | return DAG.getSetCC(dl, VT, |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1362 | DAG.getNode(ISD::AND, dl, newVT, NewLoad, |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1363 | DAG.getConstant(bestMask.trunc(bestWidth), |
| 1364 | newVT)), |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1365 | DAG.getConstant(0LL, newVT), Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1366 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1367 | } |
| 1368 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1369 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1370 | // If the LHS is a ZERO_EXTEND, perform the comparison on the input. |
| 1371 | if (N0.getOpcode() == ISD::ZERO_EXTEND) { |
| 1372 | unsigned InSize = N0.getOperand(0).getValueType().getSizeInBits(); |
| 1373 | |
| 1374 | // If the comparison constant has bits in the upper part, the |
| 1375 | // zero-extended value could never match. |
| 1376 | if (C1.intersects(APInt::getHighBitsSet(C1.getBitWidth(), |
| 1377 | C1.getBitWidth() - InSize))) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1378 | switch (Cond) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1379 | case ISD::SETUGT: |
| 1380 | case ISD::SETUGE: |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1381 | case ISD::SETEQ: return DAG.getConstant(0, VT); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1382 | case ISD::SETULT: |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1383 | case ISD::SETULE: |
| 1384 | case ISD::SETNE: return DAG.getConstant(1, VT); |
| 1385 | case ISD::SETGT: |
| 1386 | case ISD::SETGE: |
| 1387 | // True if the sign bit of C1 is set. |
| 1388 | return DAG.getConstant(C1.isNegative(), VT); |
| 1389 | case ISD::SETLT: |
| 1390 | case ISD::SETLE: |
| 1391 | // True if the sign bit of C1 isn't set. |
| 1392 | return DAG.getConstant(C1.isNonNegative(), VT); |
| 1393 | default: |
Jakob Stoklund Olesen | 78d1264 | 2009-07-24 18:22:59 +0000 | [diff] [blame] | 1394 | break; |
| 1395 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1396 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1397 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1398 | // Otherwise, we can perform the comparison with the low bits. |
| 1399 | switch (Cond) { |
| 1400 | case ISD::SETEQ: |
| 1401 | case ISD::SETNE: |
| 1402 | case ISD::SETUGT: |
| 1403 | case ISD::SETUGE: |
| 1404 | case ISD::SETULT: |
| 1405 | case ISD::SETULE: { |
Patrik Hagglund | 34525f9 | 2012-12-11 11:14:33 +0000 | [diff] [blame] | 1406 | EVT newVT = N0.getOperand(0).getValueType(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1407 | if (DCI.isBeforeLegalizeOps() || |
| 1408 | (isOperationLegal(ISD::SETCC, newVT) && |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 1409 | getCondCodeAction(Cond, newVT.getSimpleVT()) == Legal)) { |
| 1410 | EVT NewSetCCVT = getSetCCResultType(*DAG.getContext(), newVT); |
| 1411 | SDValue NewConst = DAG.getConstant(C1.trunc(InSize), newVT); |
| 1412 | |
| 1413 | SDValue NewSetCC = DAG.getSetCC(dl, NewSetCCVT, N0.getOperand(0), |
| 1414 | NewConst, Cond); |
| 1415 | return DAG.getBoolExtOrTrunc(NewSetCC, dl, VT); |
| 1416 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1417 | break; |
| 1418 | } |
| 1419 | default: |
| 1420 | break; // todo, be more careful with signed comparisons |
| 1421 | } |
| 1422 | } else if (N0.getOpcode() == ISD::SIGN_EXTEND_INREG && |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1423 | (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1424 | EVT ExtSrcTy = cast<VTSDNode>(N0.getOperand(1))->getVT(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1425 | unsigned ExtSrcTyBits = ExtSrcTy.getSizeInBits(); |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1426 | EVT ExtDstTy = N0.getValueType(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1427 | unsigned ExtDstTyBits = ExtDstTy.getSizeInBits(); |
| 1428 | |
Eli Friedman | ad78a88 | 2010-07-30 06:44:31 +0000 | [diff] [blame] | 1429 | // If the constant doesn't fit into the number of bits for the source of |
| 1430 | // the sign extension, it is impossible for both sides to be equal. |
| 1431 | if (C1.getMinSignedBits() > ExtSrcTyBits) |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1432 | return DAG.getConstant(Cond == ISD::SETNE, VT); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1433 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1434 | SDValue ZextOp; |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 1435 | EVT Op0Ty = N0.getOperand(0).getValueType(); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1436 | if (Op0Ty == ExtSrcTy) { |
| 1437 | ZextOp = N0.getOperand(0); |
| 1438 | } else { |
| 1439 | APInt Imm = APInt::getLowBitsSet(ExtDstTyBits, ExtSrcTyBits); |
| 1440 | ZextOp = DAG.getNode(ISD::AND, dl, Op0Ty, N0.getOperand(0), |
| 1441 | DAG.getConstant(Imm, Op0Ty)); |
| 1442 | } |
| 1443 | if (!DCI.isCalledByLegalizer()) |
| 1444 | DCI.AddToWorklist(ZextOp.getNode()); |
| 1445 | // Otherwise, make this a use of a zext. |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1446 | return DAG.getSetCC(dl, VT, ZextOp, |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1447 | DAG.getConstant(C1 & APInt::getLowBitsSet( |
| 1448 | ExtDstTyBits, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1449 | ExtSrcTyBits), |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1450 | ExtDstTy), |
| 1451 | Cond); |
| 1452 | } else if ((N1C->isNullValue() || N1C->getAPIntValue() == 1) && |
| 1453 | (Cond == ISD::SETEQ || Cond == ISD::SETNE)) { |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1454 | // SETCC (SETCC), [0|1], [EQ|NE] -> SETCC |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1455 | if (N0.getOpcode() == ISD::SETCC && |
| 1456 | isTypeLegal(VT) && VT.bitsLE(N0.getValueType())) { |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1457 | bool TrueWhenTrue = (Cond == ISD::SETEQ) ^ (N1C->getAPIntValue() != 1); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1458 | if (TrueWhenTrue) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1459 | return DAG.getNode(ISD::TRUNCATE, dl, VT, N0); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1460 | // Invert the condition. |
| 1461 | ISD::CondCode CC = cast<CondCodeSDNode>(N0.getOperand(2))->get(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1462 | CC = ISD::getSetCCInverse(CC, |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1463 | N0.getOperand(0).getValueType().isInteger()); |
Tom Stellard | 12d43f9 | 2013-09-28 02:50:38 +0000 | [diff] [blame] | 1464 | if (DCI.isBeforeLegalizeOps() || |
| 1465 | isCondCodeLegal(CC, N0.getOperand(0).getSimpleValueType())) |
| 1466 | return DAG.getSetCC(dl, VT, N0.getOperand(0), N0.getOperand(1), CC); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1467 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1468 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1469 | if ((N0.getOpcode() == ISD::XOR || |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1470 | (N0.getOpcode() == ISD::AND && |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1471 | N0.getOperand(0).getOpcode() == ISD::XOR && |
| 1472 | N0.getOperand(1) == N0.getOperand(0).getOperand(1))) && |
| 1473 | isa<ConstantSDNode>(N0.getOperand(1)) && |
| 1474 | cast<ConstantSDNode>(N0.getOperand(1))->getAPIntValue() == 1) { |
| 1475 | // If this is (X^1) == 0/1, swap the RHS and eliminate the xor. We |
| 1476 | // can only do this if the top bits are known zero. |
| 1477 | unsigned BitWidth = N0.getValueSizeInBits(); |
| 1478 | if (DAG.MaskedValueIsZero(N0, |
| 1479 | APInt::getHighBitsSet(BitWidth, |
| 1480 | BitWidth-1))) { |
| 1481 | // Okay, get the un-inverted input value. |
| 1482 | SDValue Val; |
| 1483 | if (N0.getOpcode() == ISD::XOR) |
| 1484 | Val = N0.getOperand(0); |
| 1485 | else { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1486 | assert(N0.getOpcode() == ISD::AND && |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1487 | N0.getOperand(0).getOpcode() == ISD::XOR); |
| 1488 | // ((X^1)&1)^1 -> X & 1 |
| 1489 | Val = DAG.getNode(ISD::AND, dl, N0.getValueType(), |
| 1490 | N0.getOperand(0).getOperand(0), |
| 1491 | N0.getOperand(1)); |
| 1492 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1493 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1494 | return DAG.getSetCC(dl, VT, Val, N1, |
| 1495 | Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); |
| 1496 | } |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1497 | } else if (N1C->getAPIntValue() == 1 && |
| 1498 | (VT == MVT::i1 || |
Duncan Sands | 28b77e9 | 2011-09-06 19:07:46 +0000 | [diff] [blame] | 1499 | getBooleanContents(false) == ZeroOrOneBooleanContent)) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1500 | SDValue Op0 = N0; |
| 1501 | if (Op0.getOpcode() == ISD::TRUNCATE) |
| 1502 | Op0 = Op0.getOperand(0); |
| 1503 | |
| 1504 | if ((Op0.getOpcode() == ISD::XOR) && |
| 1505 | Op0.getOperand(0).getOpcode() == ISD::SETCC && |
| 1506 | Op0.getOperand(1).getOpcode() == ISD::SETCC) { |
| 1507 | // (xor (setcc), (setcc)) == / != 1 -> (setcc) != / == (setcc) |
| 1508 | Cond = (Cond == ISD::SETEQ) ? ISD::SETNE : ISD::SETEQ; |
| 1509 | return DAG.getSetCC(dl, VT, Op0.getOperand(0), Op0.getOperand(1), |
| 1510 | Cond); |
Craig Topper | 40b4a81 | 2012-12-19 06:12:28 +0000 | [diff] [blame] | 1511 | } |
| 1512 | if (Op0.getOpcode() == ISD::AND && |
| 1513 | isa<ConstantSDNode>(Op0.getOperand(1)) && |
| 1514 | cast<ConstantSDNode>(Op0.getOperand(1))->getAPIntValue() == 1) { |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1515 | // If this is (X&1) == / != 1, normalize it to (X&1) != / == 0. |
Anton Korobeynikov | 17458a7 | 2010-05-01 12:52:34 +0000 | [diff] [blame] | 1516 | if (Op0.getValueType().bitsGT(VT)) |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1517 | Op0 = DAG.getNode(ISD::AND, dl, VT, |
| 1518 | DAG.getNode(ISD::TRUNCATE, dl, VT, Op0.getOperand(0)), |
| 1519 | DAG.getConstant(1, VT)); |
Anton Korobeynikov | 17458a7 | 2010-05-01 12:52:34 +0000 | [diff] [blame] | 1520 | else if (Op0.getValueType().bitsLT(VT)) |
| 1521 | Op0 = DAG.getNode(ISD::AND, dl, VT, |
| 1522 | DAG.getNode(ISD::ANY_EXTEND, dl, VT, Op0.getOperand(0)), |
| 1523 | DAG.getConstant(1, VT)); |
| 1524 | |
Evan Cheng | 2c755ba | 2010-02-27 07:36:59 +0000 | [diff] [blame] | 1525 | return DAG.getSetCC(dl, VT, Op0, |
| 1526 | DAG.getConstant(0, Op0.getValueType()), |
| 1527 | Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); |
| 1528 | } |
Craig Topper | 40b4a81 | 2012-12-19 06:12:28 +0000 | [diff] [blame] | 1529 | if (Op0.getOpcode() == ISD::AssertZext && |
| 1530 | cast<VTSDNode>(Op0.getOperand(1))->getVT() == MVT::i1) |
| 1531 | return DAG.getSetCC(dl, VT, Op0, |
| 1532 | DAG.getConstant(0, Op0.getValueType()), |
| 1533 | Cond == ISD::SETEQ ? ISD::SETNE : ISD::SETEQ); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1534 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1535 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1536 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1537 | APInt MinVal, MaxVal; |
| 1538 | unsigned OperandBitSize = N1C->getValueType(0).getSizeInBits(); |
| 1539 | if (ISD::isSignedIntSetCC(Cond)) { |
| 1540 | MinVal = APInt::getSignedMinValue(OperandBitSize); |
| 1541 | MaxVal = APInt::getSignedMaxValue(OperandBitSize); |
| 1542 | } else { |
| 1543 | MinVal = APInt::getMinValue(OperandBitSize); |
| 1544 | MaxVal = APInt::getMaxValue(OperandBitSize); |
| 1545 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1546 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1547 | // Canonicalize GE/LE comparisons to use GT/LT comparisons. |
| 1548 | if (Cond == ISD::SETGE || Cond == ISD::SETUGE) { |
| 1549 | if (C1 == MinVal) return DAG.getConstant(1, VT); // X >= MIN --> true |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1550 | // X >= C0 --> X > (C0 - 1) |
| 1551 | APInt C = C1 - 1; |
| 1552 | ISD::CondCode NewCC = (Cond == ISD::SETGE) ? ISD::SETGT : ISD::SETUGT; |
| 1553 | if ((DCI.isBeforeLegalizeOps() || |
| 1554 | isCondCodeLegal(NewCC, VT.getSimpleVT())) && |
| 1555 | (!N1C->isOpaque() || (N1C->isOpaque() && C.getBitWidth() <= 64 && |
| 1556 | isLegalICmpImmediate(C.getSExtValue())))) { |
| 1557 | return DAG.getSetCC(dl, VT, N0, |
| 1558 | DAG.getConstant(C, N1.getValueType()), |
| 1559 | NewCC); |
| 1560 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1561 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1562 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1563 | if (Cond == ISD::SETLE || Cond == ISD::SETULE) { |
| 1564 | if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1565 | // X <= C0 --> X < (C0 + 1) |
| 1566 | APInt C = C1 + 1; |
| 1567 | ISD::CondCode NewCC = (Cond == ISD::SETLE) ? ISD::SETLT : ISD::SETULT; |
| 1568 | if ((DCI.isBeforeLegalizeOps() || |
| 1569 | isCondCodeLegal(NewCC, VT.getSimpleVT())) && |
| 1570 | (!N1C->isOpaque() || (N1C->isOpaque() && C.getBitWidth() <= 64 && |
| 1571 | isLegalICmpImmediate(C.getSExtValue())))) { |
| 1572 | return DAG.getSetCC(dl, VT, N0, |
| 1573 | DAG.getConstant(C, N1.getValueType()), |
| 1574 | NewCC); |
| 1575 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1576 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1577 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1578 | if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal) |
| 1579 | return DAG.getConstant(0, VT); // X < MIN --> false |
| 1580 | if ((Cond == ISD::SETGE || Cond == ISD::SETUGE) && C1 == MinVal) |
| 1581 | return DAG.getConstant(1, VT); // X >= MIN --> true |
| 1582 | if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal) |
| 1583 | return DAG.getConstant(0, VT); // X > MAX --> false |
| 1584 | if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal) |
| 1585 | return DAG.getConstant(1, VT); // X <= MAX --> true |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1586 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1587 | // Canonicalize setgt X, Min --> setne X, Min |
| 1588 | if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MinVal) |
| 1589 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); |
| 1590 | // Canonicalize setlt X, Max --> setne X, Max |
| 1591 | if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal) |
| 1592 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETNE); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1593 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1594 | // If we have setult X, 1, turn it into seteq X, 0 |
| 1595 | if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MinVal+1) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1596 | return DAG.getSetCC(dl, VT, N0, |
| 1597 | DAG.getConstant(MinVal, N0.getValueType()), |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1598 | ISD::SETEQ); |
| 1599 | // If we have setugt X, Max-1, turn it into seteq X, Max |
Craig Topper | 8502256 | 2012-12-19 06:43:58 +0000 | [diff] [blame] | 1600 | if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1601 | return DAG.getSetCC(dl, VT, N0, |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1602 | DAG.getConstant(MaxVal, N0.getValueType()), |
| 1603 | ISD::SETEQ); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1604 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1605 | // If we have "setcc X, C0", check to see if we can shrink the immediate |
| 1606 | // by changing cc. |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1607 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1608 | // SETUGT X, SINTMAX -> SETLT X, 0 |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1609 | if (Cond == ISD::SETUGT && |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1610 | C1 == APInt::getSignedMaxValue(OperandBitSize)) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1611 | return DAG.getSetCC(dl, VT, N0, |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1612 | DAG.getConstant(0, N1.getValueType()), |
| 1613 | ISD::SETLT); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1614 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1615 | // SETULT X, SINTMIN -> SETGT X, -1 |
| 1616 | if (Cond == ISD::SETULT && |
| 1617 | C1 == APInt::getSignedMinValue(OperandBitSize)) { |
| 1618 | SDValue ConstMinusOne = |
| 1619 | DAG.getConstant(APInt::getAllOnesValue(OperandBitSize), |
| 1620 | N1.getValueType()); |
| 1621 | return DAG.getSetCC(dl, VT, N0, ConstMinusOne, ISD::SETGT); |
| 1622 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1623 | |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1624 | // Fold bit comparisons when we can. |
| 1625 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 1626 | (VT == N0.getValueType() || |
| 1627 | (isTypeLegal(VT) && VT.bitsLE(N0.getValueType()))) && |
| 1628 | N0.getOpcode() == ISD::AND) |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1629 | if (ConstantSDNode *AndRHS = |
| 1630 | dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1631 | EVT ShiftTy = DCI.isBeforeLegalize() ? |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1632 | getPointerTy() : getShiftAmountTy(N0.getValueType()); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1633 | if (Cond == ISD::SETNE && C1 == 0) {// (X & 8) != 0 --> (X & 8) >> 3 |
| 1634 | // Perform the xform if the AND RHS is a single bit. |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1635 | if (AndRHS->getAPIntValue().isPowerOf2()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 1636 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
| 1637 | DAG.getNode(ISD::SRL, dl, N0.getValueType(), N0, |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1638 | DAG.getConstant(AndRHS->getAPIntValue().logBase2(), ShiftTy))); |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1639 | } |
Evan Cheng | 347a9cb | 2010-01-07 20:58:44 +0000 | [diff] [blame] | 1640 | } else if (Cond == ISD::SETEQ && C1 == AndRHS->getAPIntValue()) { |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1641 | // (X & 8) == 8 --> (X & 8) >> 3 |
| 1642 | // Perform the xform if C1 is a single bit. |
| 1643 | if (C1.isPowerOf2()) { |
Evan Cheng | d40d03e | 2010-01-06 19:38:29 +0000 | [diff] [blame] | 1644 | return DAG.getNode(ISD::TRUNCATE, dl, VT, |
| 1645 | DAG.getNode(ISD::SRL, dl, N0.getValueType(), N0, |
| 1646 | DAG.getConstant(C1.logBase2(), ShiftTy))); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1647 | } |
| 1648 | } |
Eli Friedman | b101b0b | 2009-07-26 23:47:17 +0000 | [diff] [blame] | 1649 | } |
Evan Cheng | 70e10d3 | 2012-07-17 06:53:39 +0000 | [diff] [blame] | 1650 | |
Evan Cheng | b4d4959 | 2012-07-17 07:47:50 +0000 | [diff] [blame] | 1651 | if (C1.getMinSignedBits() <= 64 && |
| 1652 | !isLegalICmpImmediate(C1.getSExtValue())) { |
Evan Cheng | 70e10d3 | 2012-07-17 06:53:39 +0000 | [diff] [blame] | 1653 | // (X & -256) == 256 -> (X >> 8) == 1 |
| 1654 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
| 1655 | N0.getOpcode() == ISD::AND && N0.hasOneUse()) { |
| 1656 | if (ConstantSDNode *AndRHS = |
| 1657 | dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 1658 | const APInt &AndRHSC = AndRHS->getAPIntValue(); |
| 1659 | if ((-AndRHSC).isPowerOf2() && (AndRHSC & C1) == C1) { |
| 1660 | unsigned ShiftBits = AndRHSC.countTrailingZeros(); |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1661 | EVT ShiftTy = DCI.isBeforeLegalize() ? |
Evan Cheng | 70e10d3 | 2012-07-17 06:53:39 +0000 | [diff] [blame] | 1662 | getPointerTy() : getShiftAmountTy(N0.getValueType()); |
| 1663 | EVT CmpTy = N0.getValueType(); |
| 1664 | SDValue Shift = DAG.getNode(ISD::SRL, dl, CmpTy, N0.getOperand(0), |
| 1665 | DAG.getConstant(ShiftBits, ShiftTy)); |
| 1666 | SDValue CmpRHS = DAG.getConstant(C1.lshr(ShiftBits), CmpTy); |
| 1667 | return DAG.getSetCC(dl, VT, Shift, CmpRHS, Cond); |
| 1668 | } |
| 1669 | } |
Evan Cheng | f5c0539 | 2012-07-17 08:31:11 +0000 | [diff] [blame] | 1670 | } else if (Cond == ISD::SETULT || Cond == ISD::SETUGE || |
| 1671 | Cond == ISD::SETULE || Cond == ISD::SETUGT) { |
| 1672 | bool AdjOne = (Cond == ISD::SETULE || Cond == ISD::SETUGT); |
| 1673 | // X < 0x100000000 -> (X >> 32) < 1 |
| 1674 | // X >= 0x100000000 -> (X >> 32) >= 1 |
| 1675 | // X <= 0x0ffffffff -> (X >> 32) < 1 |
| 1676 | // X > 0x0ffffffff -> (X >> 32) >= 1 |
| 1677 | unsigned ShiftBits; |
| 1678 | APInt NewC = C1; |
| 1679 | ISD::CondCode NewCond = Cond; |
| 1680 | if (AdjOne) { |
| 1681 | ShiftBits = C1.countTrailingOnes(); |
| 1682 | NewC = NewC + 1; |
| 1683 | NewCond = (Cond == ISD::SETULE) ? ISD::SETULT : ISD::SETUGE; |
| 1684 | } else { |
| 1685 | ShiftBits = C1.countTrailingZeros(); |
| 1686 | } |
| 1687 | NewC = NewC.lshr(ShiftBits); |
| 1688 | if (ShiftBits && isLegalICmpImmediate(NewC.getSExtValue())) { |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 1689 | EVT ShiftTy = DCI.isBeforeLegalize() ? |
Evan Cheng | f5c0539 | 2012-07-17 08:31:11 +0000 | [diff] [blame] | 1690 | getPointerTy() : getShiftAmountTy(N0.getValueType()); |
| 1691 | EVT CmpTy = N0.getValueType(); |
| 1692 | SDValue Shift = DAG.getNode(ISD::SRL, dl, CmpTy, N0, |
| 1693 | DAG.getConstant(ShiftBits, ShiftTy)); |
| 1694 | SDValue CmpRHS = DAG.getConstant(NewC, CmpTy); |
| 1695 | return DAG.getSetCC(dl, VT, Shift, CmpRHS, NewCond); |
| 1696 | } |
Evan Cheng | 70e10d3 | 2012-07-17 06:53:39 +0000 | [diff] [blame] | 1697 | } |
| 1698 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1701 | if (isa<ConstantFPSDNode>(N0.getNode())) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1702 | // Constant fold or commute setcc. |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1703 | SDValue O = DAG.FoldSetCC(VT, N0, N1, Cond, dl); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1704 | if (O.getNode()) return O; |
| 1705 | } else if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(N1.getNode())) { |
Chris Lattner | 63079f0 | 2007-12-29 08:37:08 +0000 | [diff] [blame] | 1706 | // If the RHS of an FP comparison is a constant, simplify it away in |
| 1707 | // some cases. |
| 1708 | if (CFP->getValueAPF().isNaN()) { |
| 1709 | // If an operand is known to be a nan, we can fold it. |
| 1710 | switch (ISD::getUnorderedFlavor(Cond)) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1711 | default: llvm_unreachable("Unknown flavor!"); |
Chris Lattner | 63079f0 | 2007-12-29 08:37:08 +0000 | [diff] [blame] | 1712 | case 0: // Known false. |
| 1713 | return DAG.getConstant(0, VT); |
| 1714 | case 1: // Known true. |
| 1715 | return DAG.getConstant(1, VT); |
Chris Lattner | 1c3e1e2 | 2007-12-30 21:21:10 +0000 | [diff] [blame] | 1716 | case 2: // Undefined. |
Dale Johannesen | e8d7230 | 2009-02-06 23:05:02 +0000 | [diff] [blame] | 1717 | return DAG.getUNDEF(VT); |
Chris Lattner | 63079f0 | 2007-12-29 08:37:08 +0000 | [diff] [blame] | 1718 | } |
| 1719 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1720 | |
Chris Lattner | 63079f0 | 2007-12-29 08:37:08 +0000 | [diff] [blame] | 1721 | // Otherwise, we know the RHS is not a NaN. Simplify the node to drop the |
| 1722 | // constant if knowing that the operand is non-nan is enough. We prefer to |
| 1723 | // have SETO(x,x) instead of SETO(x, 0.0) because this avoids having to |
| 1724 | // materialize 0.0. |
| 1725 | if (Cond == ISD::SETO || Cond == ISD::SETUO) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1726 | return DAG.getSetCC(dl, VT, N0, N0, Cond); |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1727 | |
| 1728 | // If the condition is not legal, see if we can find an equivalent one |
| 1729 | // which is legal. |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1730 | if (!isCondCodeLegal(Cond, N0.getSimpleValueType())) { |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1731 | // If the comparison was an awkward floating-point == or != and one of |
| 1732 | // the comparison operands is infinity or negative infinity, convert the |
| 1733 | // condition to a less-awkward <= or >=. |
| 1734 | if (CFP->getValueAPF().isInfinity()) { |
| 1735 | if (CFP->getValueAPF().isNegative()) { |
| 1736 | if (Cond == ISD::SETOEQ && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1737 | isCondCodeLegal(ISD::SETOLE, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1738 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOLE); |
| 1739 | if (Cond == ISD::SETUEQ && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1740 | isCondCodeLegal(ISD::SETOLE, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1741 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETULE); |
| 1742 | if (Cond == ISD::SETUNE && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1743 | isCondCodeLegal(ISD::SETUGT, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1744 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETUGT); |
| 1745 | if (Cond == ISD::SETONE && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1746 | isCondCodeLegal(ISD::SETUGT, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1747 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOGT); |
| 1748 | } else { |
| 1749 | if (Cond == ISD::SETOEQ && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1750 | isCondCodeLegal(ISD::SETOGE, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1751 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOGE); |
| 1752 | if (Cond == ISD::SETUEQ && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1753 | isCondCodeLegal(ISD::SETOGE, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1754 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETUGE); |
| 1755 | if (Cond == ISD::SETUNE && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1756 | isCondCodeLegal(ISD::SETULT, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1757 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETULT); |
| 1758 | if (Cond == ISD::SETONE && |
Patrik Hagglund | fdbeb05 | 2012-12-19 10:19:55 +0000 | [diff] [blame] | 1759 | isCondCodeLegal(ISD::SETULT, N0.getSimpleValueType())) |
Dan Gohman | 11eab02 | 2009-09-26 15:24:17 +0000 | [diff] [blame] | 1760 | return DAG.getSetCC(dl, VT, N0, N1, ISD::SETOLT); |
| 1761 | } |
| 1762 | } |
| 1763 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1764 | } |
| 1765 | |
| 1766 | if (N0 == N1) { |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1767 | // The sext(setcc()) => setcc() optimization relies on the appropriate |
| 1768 | // constant being emitted. |
Nadav Rotem | e757640 | 2012-09-06 11:13:55 +0000 | [diff] [blame] | 1769 | uint64_t EqVal = 0; |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1770 | switch (getBooleanContents(N0.getValueType().isVector())) { |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1771 | case UndefinedBooleanContent: |
| 1772 | case ZeroOrOneBooleanContent: |
| 1773 | EqVal = ISD::isTrueWhenEqual(Cond); |
| 1774 | break; |
| 1775 | case ZeroOrNegativeOneBooleanContent: |
| 1776 | EqVal = ISD::isTrueWhenEqual(Cond) ? -1 : 0; |
| 1777 | break; |
| 1778 | } |
| 1779 | |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1780 | // We can always fold X == X for integer setcc's. |
Chad Rosier | 9dbb018 | 2012-04-03 20:11:24 +0000 | [diff] [blame] | 1781 | if (N0.getValueType().isInteger()) { |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1782 | return DAG.getConstant(EqVal, VT); |
Chad Rosier | 9dbb018 | 2012-04-03 20:11:24 +0000 | [diff] [blame] | 1783 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1784 | unsigned UOF = ISD::getUnorderedFlavor(Cond); |
| 1785 | if (UOF == 2) // FP operators that are undefined on NaNs. |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1786 | return DAG.getConstant(EqVal, VT); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1787 | if (UOF == unsigned(ISD::isTrueWhenEqual(Cond))) |
Duncan Sands | e7de3b2 | 2012-07-05 09:32:46 +0000 | [diff] [blame] | 1788 | return DAG.getConstant(EqVal, VT); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1789 | // Otherwise, we can't fold it. However, we can simplify it to SETUO/SETO |
| 1790 | // if it is not already. |
| 1791 | ISD::CondCode NewCond = UOF == 0 ? ISD::SETO : ISD::SETUO; |
Micah Villmow | 8c574be | 2012-07-31 18:07:43 +0000 | [diff] [blame] | 1792 | if (NewCond != Cond && (DCI.isBeforeLegalizeOps() || |
Patrik Hagglund | 9c5ab93 | 2012-12-19 10:09:26 +0000 | [diff] [blame] | 1793 | getCondCodeAction(NewCond, N0.getSimpleValueType()) == Legal)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1794 | return DAG.getSetCC(dl, VT, N0, N1, NewCond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1795 | } |
| 1796 | |
| 1797 | if ((Cond == ISD::SETEQ || Cond == ISD::SETNE) && |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 1798 | N0.getValueType().isInteger()) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1799 | if (N0.getOpcode() == ISD::ADD || N0.getOpcode() == ISD::SUB || |
| 1800 | N0.getOpcode() == ISD::XOR) { |
| 1801 | // Simplify (X+Y) == (X+Z) --> Y == Z |
| 1802 | if (N0.getOpcode() == N1.getOpcode()) { |
| 1803 | if (N0.getOperand(0) == N1.getOperand(0)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1804 | return DAG.getSetCC(dl, VT, N0.getOperand(1), N1.getOperand(1), Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1805 | if (N0.getOperand(1) == N1.getOperand(1)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1806 | return DAG.getSetCC(dl, VT, N0.getOperand(0), N1.getOperand(0), Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1807 | if (DAG.isCommutativeBinOp(N0.getOpcode())) { |
| 1808 | // If X op Y == Y op X, try other combinations. |
| 1809 | if (N0.getOperand(0) == N1.getOperand(1)) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1810 | return DAG.getSetCC(dl, VT, N0.getOperand(1), N1.getOperand(0), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1811 | Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1812 | if (N0.getOperand(1) == N1.getOperand(0)) |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1813 | return DAG.getSetCC(dl, VT, N0.getOperand(0), N1.getOperand(1), |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1814 | Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1815 | } |
| 1816 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1817 | |
Jakob Stoklund Olesen | 740cd65 | 2012-04-05 20:30:20 +0000 | [diff] [blame] | 1818 | // If RHS is a legal immediate value for a compare instruction, we need |
| 1819 | // to be careful about increasing register pressure needlessly. |
| 1820 | bool LegalRHSImm = false; |
| 1821 | |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1822 | if (ConstantSDNode *RHSC = dyn_cast<ConstantSDNode>(N1)) { |
| 1823 | if (ConstantSDNode *LHSR = dyn_cast<ConstantSDNode>(N0.getOperand(1))) { |
| 1824 | // Turn (X+C1) == C2 --> X == C2-C1 |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1825 | if (N0.getOpcode() == ISD::ADD && N0.getNode()->hasOneUse()) { |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1826 | return DAG.getSetCC(dl, VT, N0.getOperand(0), |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 1827 | DAG.getConstant(RHSC->getAPIntValue()- |
| 1828 | LHSR->getAPIntValue(), |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1829 | N0.getValueType()), Cond); |
| 1830 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1831 | |
Sylvestre Ledru | 94c2271 | 2012-09-27 10:14:43 +0000 | [diff] [blame] | 1832 | // Turn (X^C1) == C2 into X == C1^C2 iff X&~C1 = 0. |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1833 | if (N0.getOpcode() == ISD::XOR) |
| 1834 | // If we know that all of the inverted bits are zero, don't bother |
| 1835 | // performing the inversion. |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1836 | if (DAG.MaskedValueIsZero(N0.getOperand(0), ~LHSR->getAPIntValue())) |
| 1837 | return |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1838 | DAG.getSetCC(dl, VT, N0.getOperand(0), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1839 | DAG.getConstant(LHSR->getAPIntValue() ^ |
| 1840 | RHSC->getAPIntValue(), |
| 1841 | N0.getValueType()), |
| 1842 | Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1843 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1844 | |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1845 | // Turn (C1-X) == C2 --> X == C1-C2 |
| 1846 | if (ConstantSDNode *SUBC = dyn_cast<ConstantSDNode>(N0.getOperand(0))) { |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1847 | if (N0.getOpcode() == ISD::SUB && N0.getNode()->hasOneUse()) { |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1848 | return |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1849 | DAG.getSetCC(dl, VT, N0.getOperand(1), |
Dan Gohman | 2e68b6f | 2008-02-25 21:11:39 +0000 | [diff] [blame] | 1850 | DAG.getConstant(SUBC->getAPIntValue() - |
| 1851 | RHSC->getAPIntValue(), |
| 1852 | N0.getValueType()), |
| 1853 | Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1854 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1855 | } |
Jakob Stoklund Olesen | 740cd65 | 2012-04-05 20:30:20 +0000 | [diff] [blame] | 1856 | |
| 1857 | // Could RHSC fold directly into a compare? |
| 1858 | if (RHSC->getValueType(0).getSizeInBits() <= 64) |
| 1859 | LegalRHSImm = isLegalICmpImmediate(RHSC->getSExtValue()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1860 | } |
| 1861 | |
| 1862 | // Simplify (X+Z) == X --> Z == 0 |
Jakob Stoklund Olesen | 740cd65 | 2012-04-05 20:30:20 +0000 | [diff] [blame] | 1863 | // Don't do this if X is an immediate that can fold into a cmp |
| 1864 | // instruction and X+Z has other uses. It could be an induction variable |
| 1865 | // chain, and the transform would increase register pressure. |
| 1866 | if (!LegalRHSImm || N0.getNode()->hasOneUse()) { |
| 1867 | if (N0.getOperand(0) == N1) |
| 1868 | return DAG.getSetCC(dl, VT, N0.getOperand(1), |
| 1869 | DAG.getConstant(0, N0.getValueType()), Cond); |
| 1870 | if (N0.getOperand(1) == N1) { |
| 1871 | if (DAG.isCommutativeBinOp(N0.getOpcode())) |
| 1872 | return DAG.getSetCC(dl, VT, N0.getOperand(0), |
| 1873 | DAG.getConstant(0, N0.getValueType()), Cond); |
Craig Topper | 8502256 | 2012-12-19 06:43:58 +0000 | [diff] [blame] | 1874 | if (N0.getNode()->hasOneUse()) { |
Jakob Stoklund Olesen | 740cd65 | 2012-04-05 20:30:20 +0000 | [diff] [blame] | 1875 | assert(N0.getOpcode() == ISD::SUB && "Unexpected operation!"); |
| 1876 | // (Z-X) == X --> Z == X<<1 |
| 1877 | SDValue SH = DAG.getNode(ISD::SHL, dl, N1.getValueType(), N1, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1878 | DAG.getConstant(1, getShiftAmountTy(N1.getValueType()))); |
Jakob Stoklund Olesen | 740cd65 | 2012-04-05 20:30:20 +0000 | [diff] [blame] | 1879 | if (!DCI.isCalledByLegalizer()) |
| 1880 | DCI.AddToWorklist(SH.getNode()); |
| 1881 | return DAG.getSetCC(dl, VT, N0.getOperand(0), SH, Cond); |
| 1882 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1883 | } |
| 1884 | } |
| 1885 | } |
| 1886 | |
| 1887 | if (N1.getOpcode() == ISD::ADD || N1.getOpcode() == ISD::SUB || |
| 1888 | N1.getOpcode() == ISD::XOR) { |
| 1889 | // Simplify X == (X+Z) --> Z == 0 |
Craig Topper | 8502256 | 2012-12-19 06:43:58 +0000 | [diff] [blame] | 1890 | if (N1.getOperand(0) == N0) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1891 | return DAG.getSetCC(dl, VT, N1.getOperand(1), |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1892 | DAG.getConstant(0, N1.getValueType()), Cond); |
Craig Topper | 8502256 | 2012-12-19 06:43:58 +0000 | [diff] [blame] | 1893 | if (N1.getOperand(1) == N0) { |
| 1894 | if (DAG.isCommutativeBinOp(N1.getOpcode())) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1895 | return DAG.getSetCC(dl, VT, N1.getOperand(0), |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1896 | DAG.getConstant(0, N1.getValueType()), Cond); |
Craig Topper | 8502256 | 2012-12-19 06:43:58 +0000 | [diff] [blame] | 1897 | if (N1.getNode()->hasOneUse()) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1898 | assert(N1.getOpcode() == ISD::SUB && "Unexpected operation!"); |
| 1899 | // X == (Z-X) --> X<<1 == Z |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 1900 | SDValue SH = DAG.getNode(ISD::SHL, dl, N1.getValueType(), N0, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 1901 | DAG.getConstant(1, getShiftAmountTy(N0.getValueType()))); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1902 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1903 | DCI.AddToWorklist(SH.getNode()); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1904 | return DAG.getSetCC(dl, VT, SH, N1.getOperand(0), Cond); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1905 | } |
| 1906 | } |
| 1907 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1908 | |
Dan Gohman | 2c65c3d | 2009-01-29 16:18:12 +0000 | [diff] [blame] | 1909 | // Simplify x&y == y to x&y != 0 if y has exactly one bit set. |
Dale Johannesen | 85b0ede | 2009-02-11 19:19:41 +0000 | [diff] [blame] | 1910 | // Note that where y is variable and is known to have at most |
| 1911 | // one bit set (for example, if it is z&1) we cannot do this; |
| 1912 | // the expressions are not equivalent when y==0. |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1913 | if (N0.getOpcode() == ISD::AND) |
| 1914 | if (N0.getOperand(0) == N1 || N0.getOperand(1) == N1) { |
Dale Johannesen | 85b0ede | 2009-02-11 19:19:41 +0000 | [diff] [blame] | 1915 | if (ValueHasExactlyOneBitSet(N1, DAG)) { |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1916 | Cond = ISD::getSetCCInverse(Cond, /*isInteger=*/true); |
Tom Stellard | 12d43f9 | 2013-09-28 02:50:38 +0000 | [diff] [blame] | 1917 | if (DCI.isBeforeLegalizeOps() || |
| 1918 | isCondCodeLegal(Cond, N0.getSimpleValueType())) { |
| 1919 | SDValue Zero = DAG.getConstant(0, N1.getValueType()); |
| 1920 | return DAG.getSetCC(dl, VT, N0, Zero, Cond); |
| 1921 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1922 | } |
| 1923 | } |
| 1924 | if (N1.getOpcode() == ISD::AND) |
| 1925 | if (N1.getOperand(0) == N0 || N1.getOperand(1) == N0) { |
Dale Johannesen | 85b0ede | 2009-02-11 19:19:41 +0000 | [diff] [blame] | 1926 | if (ValueHasExactlyOneBitSet(N0, DAG)) { |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1927 | Cond = ISD::getSetCCInverse(Cond, /*isInteger=*/true); |
Tom Stellard | 12d43f9 | 2013-09-28 02:50:38 +0000 | [diff] [blame] | 1928 | if (DCI.isBeforeLegalizeOps() || |
| 1929 | isCondCodeLegal(Cond, N1.getSimpleValueType())) { |
| 1930 | SDValue Zero = DAG.getConstant(0, N0.getValueType()); |
| 1931 | return DAG.getSetCC(dl, VT, N1, Zero, Cond); |
| 1932 | } |
Dan Gohman | e5af2d3 | 2009-01-29 01:59:02 +0000 | [diff] [blame] | 1933 | } |
| 1934 | } |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1935 | } |
| 1936 | |
| 1937 | // Fold away ALL boolean setcc's. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1938 | SDValue Temp; |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1939 | if (N0.getValueType() == MVT::i1 && foldBooleans) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1940 | switch (Cond) { |
Torok Edwin | c23197a | 2009-07-14 16:55:14 +0000 | [diff] [blame] | 1941 | default: llvm_unreachable("Unknown integer setcc!"); |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 1942 | case ISD::SETEQ: // X == Y -> ~(X^Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1943 | Temp = DAG.getNode(ISD::XOR, dl, MVT::i1, N0, N1); |
| 1944 | N0 = DAG.getNOT(dl, Temp, MVT::i1); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1945 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1946 | DCI.AddToWorklist(Temp.getNode()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1947 | break; |
| 1948 | case ISD::SETNE: // X != Y --> (X^Y) |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1949 | N0 = DAG.getNode(ISD::XOR, dl, MVT::i1, N0, N1); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1950 | break; |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 1951 | case ISD::SETGT: // X >s Y --> X == 0 & Y == 1 --> ~X & Y |
| 1952 | case ISD::SETULT: // X <u Y --> X == 0 & Y == 1 --> ~X & Y |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1953 | Temp = DAG.getNOT(dl, N0, MVT::i1); |
| 1954 | N0 = DAG.getNode(ISD::AND, dl, MVT::i1, N1, Temp); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1955 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1956 | DCI.AddToWorklist(Temp.getNode()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1957 | break; |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 1958 | case ISD::SETLT: // X <s Y --> X == 1 & Y == 0 --> ~Y & X |
| 1959 | case ISD::SETUGT: // X >u Y --> X == 1 & Y == 0 --> ~Y & X |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1960 | Temp = DAG.getNOT(dl, N1, MVT::i1); |
| 1961 | N0 = DAG.getNode(ISD::AND, dl, MVT::i1, N0, Temp); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1962 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1963 | DCI.AddToWorklist(Temp.getNode()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1964 | break; |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 1965 | case ISD::SETULE: // X <=u Y --> X == 0 | Y == 1 --> ~X | Y |
| 1966 | case ISD::SETGE: // X >=s Y --> X == 0 | Y == 1 --> ~X | Y |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1967 | Temp = DAG.getNOT(dl, N0, MVT::i1); |
| 1968 | N0 = DAG.getNode(ISD::OR, dl, MVT::i1, N1, Temp); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1969 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1970 | DCI.AddToWorklist(Temp.getNode()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1971 | break; |
Bob Wilson | 4c24546 | 2009-01-22 17:39:32 +0000 | [diff] [blame] | 1972 | case ISD::SETUGE: // X >=u Y --> X == 1 | Y == 0 --> ~Y | X |
| 1973 | case ISD::SETLE: // X <=s Y --> X == 1 | Y == 0 --> ~Y | X |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1974 | Temp = DAG.getNOT(dl, N1, MVT::i1); |
| 1975 | N0 = DAG.getNode(ISD::OR, dl, MVT::i1, N0, Temp); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1976 | break; |
| 1977 | } |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 1978 | if (VT != MVT::i1) { |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1979 | if (!DCI.isCalledByLegalizer()) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 1980 | DCI.AddToWorklist(N0.getNode()); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1981 | // FIXME: If running after legalize, we probably can't do this. |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 1982 | N0 = DAG.getNode(ISD::ZERO_EXTEND, dl, VT, N0); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1983 | } |
| 1984 | return N0; |
| 1985 | } |
| 1986 | |
| 1987 | // Could not fold it. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 1988 | return SDValue(); |
Evan Cheng | fa1eb27 | 2007-02-08 22:13:59 +0000 | [diff] [blame] | 1989 | } |
| 1990 | |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 1991 | /// isGAPlusOffset - Returns true (and the GlobalValue and the offset) if the |
| 1992 | /// node is a GlobalAddress + offset. |
Chris Lattner | 0a9481f | 2011-02-13 22:25:43 +0000 | [diff] [blame] | 1993 | bool TargetLowering::isGAPlusOffset(SDNode *N, const GlobalValue *&GA, |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 1994 | int64_t &Offset) const { |
| 1995 | if (isa<GlobalAddressSDNode>(N)) { |
Dan Gohman | 9ea3f56 | 2008-06-09 22:05:52 +0000 | [diff] [blame] | 1996 | GlobalAddressSDNode *GASD = cast<GlobalAddressSDNode>(N); |
| 1997 | GA = GASD->getGlobal(); |
| 1998 | Offset += GASD->getOffset(); |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 1999 | return true; |
| 2000 | } |
| 2001 | |
| 2002 | if (N->getOpcode() == ISD::ADD) { |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2003 | SDValue N1 = N->getOperand(0); |
| 2004 | SDValue N2 = N->getOperand(1); |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2005 | if (isGAPlusOffset(N1.getNode(), GA, Offset)) { |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 2006 | ConstantSDNode *V = dyn_cast<ConstantSDNode>(N2); |
| 2007 | if (V) { |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 2008 | Offset += V->getSExtValue(); |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 2009 | return true; |
| 2010 | } |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2011 | } else if (isGAPlusOffset(N2.getNode(), GA, Offset)) { |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 2012 | ConstantSDNode *V = dyn_cast<ConstantSDNode>(N1); |
| 2013 | if (V) { |
Dan Gohman | 7810bfe | 2008-09-26 21:54:37 +0000 | [diff] [blame] | 2014 | Offset += V->getSExtValue(); |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 2015 | return true; |
| 2016 | } |
| 2017 | } |
| 2018 | } |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2019 | |
Evan Cheng | ad4196b | 2008-05-12 19:56:52 +0000 | [diff] [blame] | 2020 | return false; |
| 2021 | } |
| 2022 | |
| 2023 | |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2024 | SDValue TargetLowering:: |
Chris Lattner | 00ffed0 | 2006-03-01 04:52:55 +0000 | [diff] [blame] | 2025 | PerformDAGCombine(SDNode *N, DAGCombinerInfo &DCI) const { |
| 2026 | // Default implementation: no optimization. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2027 | return SDValue(); |
Chris Lattner | 00ffed0 | 2006-03-01 04:52:55 +0000 | [diff] [blame] | 2028 | } |
| 2029 | |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2030 | //===----------------------------------------------------------------------===// |
| 2031 | // Inline Assembler Implementation Methods |
| 2032 | //===----------------------------------------------------------------------===// |
| 2033 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2034 | |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2035 | TargetLowering::ConstraintType |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2036 | TargetLowering::getConstraintType(const std::string &Constraint) const { |
Eric Christopher | fffe363 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 2037 | unsigned S = Constraint.size(); |
| 2038 | |
| 2039 | if (S == 1) { |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2040 | switch (Constraint[0]) { |
| 2041 | default: break; |
| 2042 | case 'r': return C_RegisterClass; |
| 2043 | case 'm': // memory |
| 2044 | case 'o': // offsetable |
| 2045 | case 'V': // not offsetable |
| 2046 | return C_Memory; |
| 2047 | case 'i': // Simple Integer or Relocatable Constant |
| 2048 | case 'n': // Simple Integer |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2049 | case 'E': // Floating Point Constant |
| 2050 | case 'F': // Floating Point Constant |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2051 | case 's': // Relocatable Constant |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2052 | case 'p': // Address. |
Chris Lattner | c13dd1c | 2007-03-25 04:35:41 +0000 | [diff] [blame] | 2053 | case 'X': // Allow ANY value. |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2054 | case 'I': // Target registers. |
| 2055 | case 'J': |
| 2056 | case 'K': |
| 2057 | case 'L': |
| 2058 | case 'M': |
| 2059 | case 'N': |
| 2060 | case 'O': |
| 2061 | case 'P': |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2062 | case '<': |
| 2063 | case '>': |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2064 | return C_Other; |
| 2065 | } |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2066 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2067 | |
Eric Christopher | fffe363 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 2068 | if (S > 1 && Constraint[0] == '{' && Constraint[S-1] == '}') { |
| 2069 | if (S == 8 && !Constraint.compare(1, 6, "memory", 6)) // "{memory}" |
| 2070 | return C_Memory; |
Chris Lattner | 065421f | 2007-03-25 02:18:14 +0000 | [diff] [blame] | 2071 | return C_Register; |
Eric Christopher | fffe363 | 2013-01-11 18:12:39 +0000 | [diff] [blame] | 2072 | } |
Chris Lattner | 4234f57 | 2007-03-25 02:14:49 +0000 | [diff] [blame] | 2073 | return C_Unknown; |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2074 | } |
| 2075 | |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 2076 | /// LowerXConstraint - try to replace an X constraint, which matches anything, |
| 2077 | /// with another that has more specific requirements based on the type of the |
| 2078 | /// corresponding operand. |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2079 | const char *TargetLowering::LowerXConstraint(EVT ConstraintVT) const{ |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2080 | if (ConstraintVT.isInteger()) |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 2081 | return "r"; |
Duncan Sands | 83ec4b6 | 2008-06-06 12:08:01 +0000 | [diff] [blame] | 2082 | if (ConstraintVT.isFloatingPoint()) |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 2083 | return "f"; // works for many targets |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2084 | return nullptr; |
Dale Johannesen | ba2a0b9 | 2008-01-29 02:21:21 +0000 | [diff] [blame] | 2085 | } |
| 2086 | |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 2087 | /// LowerAsmOperandForConstraint - Lower the specified operand into the Ops |
| 2088 | /// vector. If it is invalid, don't add anything to Ops. |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2089 | void TargetLowering::LowerAsmOperandForConstraint(SDValue Op, |
Eric Christopher | 100c833 | 2011-06-02 23:16:42 +0000 | [diff] [blame] | 2090 | std::string &Constraint, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2091 | std::vector<SDValue> &Ops, |
Chris Lattner | 5e76423 | 2008-04-26 23:02:14 +0000 | [diff] [blame] | 2092 | SelectionDAG &DAG) const { |
Eric Christopher | 362fee9 | 2011-06-17 20:41:29 +0000 | [diff] [blame] | 2093 | |
Eric Christopher | 100c833 | 2011-06-02 23:16:42 +0000 | [diff] [blame] | 2094 | if (Constraint.length() > 1) return; |
Eric Christopher | 362fee9 | 2011-06-17 20:41:29 +0000 | [diff] [blame] | 2095 | |
Eric Christopher | 100c833 | 2011-06-02 23:16:42 +0000 | [diff] [blame] | 2096 | char ConstraintLetter = Constraint[0]; |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2097 | switch (ConstraintLetter) { |
Chris Lattner | 9ff6ee8 | 2007-02-17 06:00:35 +0000 | [diff] [blame] | 2098 | default: break; |
Dale Johannesen | eb57ea7 | 2007-11-05 21:20:28 +0000 | [diff] [blame] | 2099 | case 'X': // Allows any operand; labels (basic block) use this. |
| 2100 | if (Op.getOpcode() == ISD::BasicBlock) { |
| 2101 | Ops.push_back(Op); |
| 2102 | return; |
| 2103 | } |
| 2104 | // fall through |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2105 | case 'i': // Simple Integer or Relocatable Constant |
| 2106 | case 'n': // Simple Integer |
Dale Johannesen | eb57ea7 | 2007-11-05 21:20:28 +0000 | [diff] [blame] | 2107 | case 's': { // Relocatable Constant |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2108 | // These operands are interested in values of the form (GV+C), where C may |
| 2109 | // be folded in as an offset of GV, or it may be explicitly added. Also, it |
| 2110 | // is possible and fine if either GV or C are missing. |
| 2111 | ConstantSDNode *C = dyn_cast<ConstantSDNode>(Op); |
| 2112 | GlobalAddressSDNode *GA = dyn_cast<GlobalAddressSDNode>(Op); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2113 | |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2114 | // If we have "(add GV, C)", pull out GV/C |
| 2115 | if (Op.getOpcode() == ISD::ADD) { |
| 2116 | C = dyn_cast<ConstantSDNode>(Op.getOperand(1)); |
| 2117 | GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(0)); |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2118 | if (!C || !GA) { |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2119 | C = dyn_cast<ConstantSDNode>(Op.getOperand(0)); |
| 2120 | GA = dyn_cast<GlobalAddressSDNode>(Op.getOperand(1)); |
| 2121 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2122 | if (!C || !GA) |
| 2123 | C = nullptr, GA = nullptr; |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2124 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2125 | |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2126 | // If we find a valid operand, map to the TargetXXX version so that the |
| 2127 | // value itself doesn't get selected. |
| 2128 | if (GA) { // Either &GV or &GV+C |
| 2129 | if (ConstraintLetter != 'n') { |
| 2130 | int64_t Offs = GA->getOffset(); |
Dan Gohman | f5aeb1a | 2008-09-12 16:56:44 +0000 | [diff] [blame] | 2131 | if (C) Offs += C->getZExtValue(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2132 | Ops.push_back(DAG.getTargetGlobalAddress(GA->getGlobal(), |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2133 | C ? SDLoc(C) : SDLoc(), |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 2134 | Op.getValueType(), Offs)); |
| 2135 | return; |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2136 | } |
| 2137 | } |
| 2138 | if (C) { // just C, no GV. |
Chris Lattner | 9ff6ee8 | 2007-02-17 06:00:35 +0000 | [diff] [blame] | 2139 | // Simple constants are not allowed for 's'. |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 2140 | if (ConstraintLetter != 's') { |
Dale Johannesen | 78e3e52 | 2009-02-12 20:58:09 +0000 | [diff] [blame] | 2141 | // gcc prints these as sign extended. Sign extend value to 64 bits |
| 2142 | // now; without this it would get ZExt'd later in |
| 2143 | // ScheduleDAGSDNodes::EmitNode, which is very generic. |
| 2144 | Ops.push_back(DAG.getTargetConstant(C->getAPIntValue().getSExtValue(), |
Owen Anderson | 825b72b | 2009-08-11 20:47:22 +0000 | [diff] [blame] | 2145 | MVT::i64)); |
Chris Lattner | 48884cd | 2007-08-25 00:47:38 +0000 | [diff] [blame] | 2146 | return; |
| 2147 | } |
Chris Lattner | 9ff6ee8 | 2007-02-17 06:00:35 +0000 | [diff] [blame] | 2148 | } |
Chris Lattner | 9ff6ee8 | 2007-02-17 06:00:35 +0000 | [diff] [blame] | 2149 | break; |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2150 | } |
Chris Lattner | 75c7d2b | 2007-05-03 16:54:34 +0000 | [diff] [blame] | 2151 | } |
Chris Lattner | eb8146b | 2006-02-04 02:13:02 +0000 | [diff] [blame] | 2152 | } |
| 2153 | |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2154 | std::pair<unsigned, const TargetRegisterClass*> TargetLowering:: |
Chris Lattner | 4217ca8dc | 2006-02-21 23:11:00 +0000 | [diff] [blame] | 2155 | getRegForInlineAsmConstraint(const std::string &Constraint, |
Chad Rosier | 5b3fca5 | 2013-06-22 18:37:38 +0000 | [diff] [blame] | 2156 | MVT VT) const { |
Will Dietz | 833a29c | 2013-10-13 03:08:49 +0000 | [diff] [blame] | 2157 | if (Constraint.empty() || Constraint[0] != '{') |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2158 | return std::make_pair(0u, static_cast<TargetRegisterClass*>(nullptr)); |
Chris Lattner | a55079a | 2006-02-01 01:29:47 +0000 | [diff] [blame] | 2159 | assert(*(Constraint.end()-1) == '}' && "Not a brace enclosed constraint?"); |
| 2160 | |
| 2161 | // Remove the braces from around the name. |
Benjamin Kramer | 05872ea | 2009-11-12 20:36:59 +0000 | [diff] [blame] | 2162 | StringRef RegName(Constraint.data()+1, Constraint.size()-2); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2163 | |
Hal Finkel | ca2dd36 | 2012-12-18 17:50:58 +0000 | [diff] [blame] | 2164 | std::pair<unsigned, const TargetRegisterClass*> R = |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2165 | std::make_pair(0u, static_cast<const TargetRegisterClass*>(nullptr)); |
Hal Finkel | ca2dd36 | 2012-12-18 17:50:58 +0000 | [diff] [blame] | 2166 | |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2167 | // Figure out which register class contains this reg. |
Benjamin Kramer | 69e42db | 2013-01-11 20:05:37 +0000 | [diff] [blame] | 2168 | const TargetRegisterInfo *RI = getTargetMachine().getRegisterInfo(); |
Dan Gohman | 6f0d024 | 2008-02-10 18:45:23 +0000 | [diff] [blame] | 2169 | for (TargetRegisterInfo::regclass_iterator RCI = RI->regclass_begin(), |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2170 | E = RI->regclass_end(); RCI != E; ++RCI) { |
| 2171 | const TargetRegisterClass *RC = *RCI; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2172 | |
| 2173 | // If none of the value types for this register class are valid, we |
Chris Lattner | b3befd4 | 2006-02-22 23:00:51 +0000 | [diff] [blame] | 2174 | // can't use it. For example, 64-bit reg classes on 32-bit targets. |
Jakob Stoklund Olesen | 22e8a36 | 2011-10-12 01:24:51 +0000 | [diff] [blame] | 2175 | if (!isLegalRC(RC)) |
| 2176 | continue; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2177 | |
| 2178 | for (TargetRegisterClass::iterator I = RC->begin(), E = RC->end(); |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2179 | I != E; ++I) { |
Hal Finkel | ca2dd36 | 2012-12-18 17:50:58 +0000 | [diff] [blame] | 2180 | if (RegName.equals_lower(RI->getName(*I))) { |
| 2181 | std::pair<unsigned, const TargetRegisterClass*> S = |
| 2182 | std::make_pair(*I, RC); |
| 2183 | |
| 2184 | // If this register class has the requested value type, return it, |
| 2185 | // otherwise keep searching and return the first class found |
| 2186 | // if no other is found which explicitly has the requested type. |
| 2187 | if (RC->hasType(VT)) |
| 2188 | return S; |
| 2189 | else if (!R.second) |
| 2190 | R = S; |
| 2191 | } |
Chris Lattner | 1efa40f | 2006-02-22 00:56:39 +0000 | [diff] [blame] | 2192 | } |
Chris Lattner | 4ccb070 | 2006-01-26 20:37:03 +0000 | [diff] [blame] | 2193 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2194 | |
Hal Finkel | ca2dd36 | 2012-12-18 17:50:58 +0000 | [diff] [blame] | 2195 | return R; |
Chris Lattner | 4ccb070 | 2006-01-26 20:37:03 +0000 | [diff] [blame] | 2196 | } |
Evan Cheng | 30b37b5 | 2006-03-13 23:18:16 +0000 | [diff] [blame] | 2197 | |
| 2198 | //===----------------------------------------------------------------------===// |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2199 | // Constraint Selection. |
| 2200 | |
Chris Lattner | 6bdcda3 | 2008-10-17 16:47:46 +0000 | [diff] [blame] | 2201 | /// isMatchingInputConstraint - Return true of this is an input operand that is |
| 2202 | /// a matching constraint like "4". |
| 2203 | bool TargetLowering::AsmOperandInfo::isMatchingInputConstraint() const { |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 2204 | assert(!ConstraintCode.empty() && "No known constraint!"); |
Guy Benyei | 87d0b9e | 2013-02-12 21:21:59 +0000 | [diff] [blame] | 2205 | return isdigit(static_cast<unsigned char>(ConstraintCode[0])); |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 2206 | } |
| 2207 | |
| 2208 | /// getMatchedOperand - If this is an input matching constraint, this method |
| 2209 | /// returns the output operand it matches. |
| 2210 | unsigned TargetLowering::AsmOperandInfo::getMatchedOperand() const { |
| 2211 | assert(!ConstraintCode.empty() && "No known constraint!"); |
| 2212 | return atoi(ConstraintCode.c_str()); |
| 2213 | } |
| 2214 | |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2215 | |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2216 | /// ParseConstraints - Split up the constraint string from the inline |
| 2217 | /// assembly value into the specific constraints and their prefixes, |
| 2218 | /// and also tie in the associated operand values. |
| 2219 | /// If this returns an empty vector, and if the constraint string itself |
| 2220 | /// isn't empty, there was an error parsing. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2221 | TargetLowering::AsmOperandInfoVector TargetLowering::ParseConstraints( |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2222 | ImmutableCallSite CS) const { |
| 2223 | /// ConstraintOperands - Information about all of the constraints. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2224 | AsmOperandInfoVector ConstraintOperands; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2225 | const InlineAsm *IA = cast<InlineAsm>(CS.getCalledValue()); |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2226 | unsigned maCount = 0; // Largest number of multiple alternative constraints. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2227 | |
| 2228 | // Do a prepass over the constraints, canonicalizing them, and building up the |
| 2229 | // ConstraintOperands list. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2230 | InlineAsm::ConstraintInfoVector |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2231 | ConstraintInfos = IA->ParseConstraints(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2232 | |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2233 | unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. |
| 2234 | unsigned ResNo = 0; // ResNo - The result number of the next output. |
| 2235 | |
| 2236 | for (unsigned i = 0, e = ConstraintInfos.size(); i != e; ++i) { |
| 2237 | ConstraintOperands.push_back(AsmOperandInfo(ConstraintInfos[i])); |
| 2238 | AsmOperandInfo &OpInfo = ConstraintOperands.back(); |
| 2239 | |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2240 | // Update multiple alternative constraint count. |
| 2241 | if (OpInfo.multipleAlternatives.size() > maCount) |
| 2242 | maCount = OpInfo.multipleAlternatives.size(); |
| 2243 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2244 | OpInfo.ConstraintVT = MVT::Other; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2245 | |
| 2246 | // Compute the value type for each operand. |
| 2247 | switch (OpInfo.Type) { |
| 2248 | case InlineAsm::isOutput: |
| 2249 | // Indirect outputs just consume an argument. |
| 2250 | if (OpInfo.isIndirect) { |
| 2251 | OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); |
| 2252 | break; |
| 2253 | } |
| 2254 | |
| 2255 | // The return value of the call is this value. As such, there is no |
| 2256 | // corresponding argument. |
| 2257 | assert(!CS.getType()->isVoidTy() && |
| 2258 | "Bad inline asm!"); |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2259 | if (StructType *STy = dyn_cast<StructType>(CS.getType())) { |
Patrik Hagglund | c698d3a | 2012-12-19 15:19:11 +0000 | [diff] [blame] | 2260 | OpInfo.ConstraintVT = getSimpleValueType(STy->getElementType(ResNo)); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2261 | } else { |
| 2262 | assert(ResNo == 0 && "Asm only has one result!"); |
Patrik Hagglund | c698d3a | 2012-12-19 15:19:11 +0000 | [diff] [blame] | 2263 | OpInfo.ConstraintVT = getSimpleValueType(CS.getType()); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2264 | } |
| 2265 | ++ResNo; |
| 2266 | break; |
| 2267 | case InlineAsm::isInput: |
| 2268 | OpInfo.CallOperandVal = const_cast<Value *>(CS.getArgument(ArgNo++)); |
| 2269 | break; |
| 2270 | case InlineAsm::isClobber: |
| 2271 | // Nothing to do. |
| 2272 | break; |
| 2273 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2274 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2275 | if (OpInfo.CallOperandVal) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2276 | llvm::Type *OpTy = OpInfo.CallOperandVal->getType(); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2277 | if (OpInfo.isIndirect) { |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2278 | llvm::PointerType *PtrTy = dyn_cast<PointerType>(OpTy); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2279 | if (!PtrTy) |
| 2280 | report_fatal_error("Indirect operand for inline asm not a pointer!"); |
| 2281 | OpTy = PtrTy->getElementType(); |
| 2282 | } |
Eric Christopher | 362fee9 | 2011-06-17 20:41:29 +0000 | [diff] [blame] | 2283 | |
Eric Christopher | cef81b7 | 2011-05-09 20:04:43 +0000 | [diff] [blame] | 2284 | // Look for vector wrapped in a struct. e.g. { <16 x i8> }. |
Chris Lattner | db125cf | 2011-07-18 04:54:35 +0000 | [diff] [blame] | 2285 | if (StructType *STy = dyn_cast<StructType>(OpTy)) |
Eric Christopher | cef81b7 | 2011-05-09 20:04:43 +0000 | [diff] [blame] | 2286 | if (STy->getNumElements() == 1) |
| 2287 | OpTy = STy->getElementType(0); |
| 2288 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2289 | // If OpTy is not a single value, it may be a struct/union that we |
| 2290 | // can tile with integers. |
| 2291 | if (!OpTy->isSingleValueType() && OpTy->isSized()) { |
Benjamin Kramer | 69e42db | 2013-01-11 20:05:37 +0000 | [diff] [blame] | 2292 | unsigned BitSize = getDataLayout()->getTypeSizeInBits(OpTy); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2293 | switch (BitSize) { |
| 2294 | default: break; |
| 2295 | case 1: |
| 2296 | case 8: |
| 2297 | case 16: |
| 2298 | case 32: |
| 2299 | case 64: |
| 2300 | case 128: |
Dale Johannesen | 71365d3 | 2010-11-09 01:15:07 +0000 | [diff] [blame] | 2301 | OpInfo.ConstraintVT = |
Patrik Hagglund | c698d3a | 2012-12-19 15:19:11 +0000 | [diff] [blame] | 2302 | MVT::getVT(IntegerType::get(OpTy->getContext(), BitSize), true); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2303 | break; |
| 2304 | } |
Micah Villmow | 7d66146 | 2012-10-09 16:06:12 +0000 | [diff] [blame] | 2305 | } else if (PointerType *PT = dyn_cast<PointerType>(OpTy)) { |
Matt Arsenault | 828c9e7 | 2013-10-10 19:09:05 +0000 | [diff] [blame] | 2306 | unsigned PtrSize |
| 2307 | = getDataLayout()->getPointerSizeInBits(PT->getAddressSpace()); |
| 2308 | OpInfo.ConstraintVT = MVT::getIntegerVT(PtrSize); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2309 | } else { |
Patrik Hagglund | c698d3a | 2012-12-19 15:19:11 +0000 | [diff] [blame] | 2310 | OpInfo.ConstraintVT = MVT::getVT(OpTy, true); |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2311 | } |
| 2312 | } |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2313 | } |
| 2314 | |
| 2315 | // If we have multiple alternative constraints, select the best alternative. |
| 2316 | if (ConstraintInfos.size()) { |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2317 | if (maCount) { |
| 2318 | unsigned bestMAIndex = 0; |
| 2319 | int bestWeight = -1; |
| 2320 | // weight: -1 = invalid match, and 0 = so-so match to 5 = good match. |
| 2321 | int weight = -1; |
| 2322 | unsigned maIndex; |
| 2323 | // Compute the sums of the weights for each alternative, keeping track |
| 2324 | // of the best (highest weight) one so far. |
| 2325 | for (maIndex = 0; maIndex < maCount; ++maIndex) { |
| 2326 | int weightSum = 0; |
| 2327 | for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); |
| 2328 | cIndex != eIndex; ++cIndex) { |
| 2329 | AsmOperandInfo& OpInfo = ConstraintOperands[cIndex]; |
| 2330 | if (OpInfo.Type == InlineAsm::isClobber) |
| 2331 | continue; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2332 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2333 | // If this is an output operand with a matching input operand, |
| 2334 | // look up the matching input. If their types mismatch, e.g. one |
| 2335 | // is an integer, the other is floating point, or their sizes are |
| 2336 | // different, flag it as an maCantMatch. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2337 | if (OpInfo.hasMatchingInput()) { |
| 2338 | AsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2339 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
| 2340 | if ((OpInfo.ConstraintVT.isInteger() != |
| 2341 | Input.ConstraintVT.isInteger()) || |
| 2342 | (OpInfo.ConstraintVT.getSizeInBits() != |
| 2343 | Input.ConstraintVT.getSizeInBits())) { |
| 2344 | weightSum = -1; // Can't match. |
| 2345 | break; |
| 2346 | } |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2347 | } |
| 2348 | } |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2349 | weight = getMultipleConstraintMatchWeight(OpInfo, maIndex); |
| 2350 | if (weight == -1) { |
| 2351 | weightSum = -1; |
| 2352 | break; |
| 2353 | } |
| 2354 | weightSum += weight; |
| 2355 | } |
| 2356 | // Update best. |
| 2357 | if (weightSum > bestWeight) { |
| 2358 | bestWeight = weightSum; |
| 2359 | bestMAIndex = maIndex; |
| 2360 | } |
| 2361 | } |
| 2362 | |
| 2363 | // Now select chosen alternative in each constraint. |
| 2364 | for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); |
| 2365 | cIndex != eIndex; ++cIndex) { |
| 2366 | AsmOperandInfo& cInfo = ConstraintOperands[cIndex]; |
| 2367 | if (cInfo.Type == InlineAsm::isClobber) |
| 2368 | continue; |
| 2369 | cInfo.selectAlternative(bestMAIndex); |
| 2370 | } |
| 2371 | } |
| 2372 | } |
| 2373 | |
| 2374 | // Check and hook up tied operands, choose constraint code to use. |
| 2375 | for (unsigned cIndex = 0, eIndex = ConstraintOperands.size(); |
| 2376 | cIndex != eIndex; ++cIndex) { |
| 2377 | AsmOperandInfo& OpInfo = ConstraintOperands[cIndex]; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2378 | |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2379 | // If this is an output operand with a matching input operand, look up the |
| 2380 | // matching input. If their types mismatch, e.g. one is an integer, the |
| 2381 | // other is floating point, or their sizes are different, flag it as an |
| 2382 | // error. |
| 2383 | if (OpInfo.hasMatchingInput()) { |
| 2384 | AsmOperandInfo &Input = ConstraintOperands[OpInfo.MatchingInput]; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2385 | |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2386 | if (OpInfo.ConstraintVT != Input.ConstraintVT) { |
Bill Wendling | 96cb112 | 2012-07-19 00:04:14 +0000 | [diff] [blame] | 2387 | std::pair<unsigned, const TargetRegisterClass*> MatchRC = |
| 2388 | getRegForInlineAsmConstraint(OpInfo.ConstraintCode, |
| 2389 | OpInfo.ConstraintVT); |
| 2390 | std::pair<unsigned, const TargetRegisterClass*> InputRC = |
| 2391 | getRegForInlineAsmConstraint(Input.ConstraintCode, |
| 2392 | Input.ConstraintVT); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2393 | if ((OpInfo.ConstraintVT.isInteger() != |
| 2394 | Input.ConstraintVT.isInteger()) || |
Eric Christopher | 5427ede | 2011-07-14 20:13:52 +0000 | [diff] [blame] | 2395 | (MatchRC.second != InputRC.second)) { |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2396 | report_fatal_error("Unsupported asm: input constraint" |
| 2397 | " with a matching output constraint of" |
| 2398 | " incompatible type!"); |
| 2399 | } |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2400 | } |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2401 | |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2402 | } |
| 2403 | } |
| 2404 | |
| 2405 | return ConstraintOperands; |
| 2406 | } |
| 2407 | |
Chris Lattner | 58f15c4 | 2008-10-17 16:21:11 +0000 | [diff] [blame] | 2408 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2409 | /// getConstraintGenerality - Return an integer indicating how general CT |
| 2410 | /// is. |
| 2411 | static unsigned getConstraintGenerality(TargetLowering::ConstraintType CT) { |
| 2412 | switch (CT) { |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2413 | case TargetLowering::C_Other: |
| 2414 | case TargetLowering::C_Unknown: |
| 2415 | return 0; |
| 2416 | case TargetLowering::C_Register: |
| 2417 | return 1; |
| 2418 | case TargetLowering::C_RegisterClass: |
| 2419 | return 2; |
| 2420 | case TargetLowering::C_Memory: |
| 2421 | return 3; |
| 2422 | } |
Chandler Carruth | 732f05c | 2012-01-10 18:08:01 +0000 | [diff] [blame] | 2423 | llvm_unreachable("Invalid constraint type"); |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2424 | } |
| 2425 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2426 | /// Examine constraint type and operand type and determine a weight value. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2427 | /// This object must already have been set up with the operand type |
| 2428 | /// and the current alternative constraint selected. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2429 | TargetLowering::ConstraintWeight |
| 2430 | TargetLowering::getMultipleConstraintMatchWeight( |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2431 | AsmOperandInfo &info, int maIndex) const { |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2432 | InlineAsm::ConstraintCodeVector *rCodes; |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2433 | if (maIndex >= (int)info.multipleAlternatives.size()) |
| 2434 | rCodes = &info.Codes; |
| 2435 | else |
| 2436 | rCodes = &info.multipleAlternatives[maIndex].Codes; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2437 | ConstraintWeight BestWeight = CW_Invalid; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2438 | |
| 2439 | // Loop over the options, keeping track of the most general one. |
John Thompson | 67aff16 | 2010-09-21 22:04:54 +0000 | [diff] [blame] | 2440 | for (unsigned i = 0, e = rCodes->size(); i != e; ++i) { |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2441 | ConstraintWeight weight = |
| 2442 | getSingleConstraintMatchWeight(info, (*rCodes)[i].c_str()); |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2443 | if (weight > BestWeight) |
| 2444 | BestWeight = weight; |
| 2445 | } |
| 2446 | |
| 2447 | return BestWeight; |
| 2448 | } |
| 2449 | |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2450 | /// Examine constraint type and operand type and determine a weight value. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2451 | /// This object must already have been set up with the operand type |
| 2452 | /// and the current alternative constraint selected. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2453 | TargetLowering::ConstraintWeight |
| 2454 | TargetLowering::getSingleConstraintMatchWeight( |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2455 | AsmOperandInfo &info, const char *constraint) const { |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2456 | ConstraintWeight weight = CW_Invalid; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2457 | Value *CallOperandVal = info.CallOperandVal; |
| 2458 | // If we don't have a value, we can't do a match, |
| 2459 | // but allow it at the lowest weight. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2460 | if (!CallOperandVal) |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2461 | return CW_Default; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2462 | // Look at the constraint type. |
| 2463 | switch (*constraint) { |
| 2464 | case 'i': // immediate integer. |
| 2465 | case 'n': // immediate integer with a known value. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2466 | if (isa<ConstantInt>(CallOperandVal)) |
| 2467 | weight = CW_Constant; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2468 | break; |
| 2469 | case 's': // non-explicit intregal immediate. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2470 | if (isa<GlobalValue>(CallOperandVal)) |
| 2471 | weight = CW_Constant; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2472 | break; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2473 | case 'E': // immediate float if host format. |
| 2474 | case 'F': // immediate float. |
| 2475 | if (isa<ConstantFP>(CallOperandVal)) |
| 2476 | weight = CW_Constant; |
| 2477 | break; |
| 2478 | case '<': // memory operand with autodecrement. |
| 2479 | case '>': // memory operand with autoincrement. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2480 | case 'm': // memory operand. |
| 2481 | case 'o': // offsettable memory operand |
| 2482 | case 'V': // non-offsettable memory operand |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2483 | weight = CW_Memory; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2484 | break; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2485 | case 'r': // general register. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2486 | case 'g': // general register, memory operand or immediate integer. |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2487 | // note: Clang converts "g" to "imr". |
| 2488 | if (CallOperandVal->getType()->isIntegerTy()) |
| 2489 | weight = CW_Register; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2490 | break; |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2491 | case 'X': // any operand. |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2492 | default: |
John Thompson | 44ab89e | 2010-10-29 17:29:13 +0000 | [diff] [blame] | 2493 | weight = CW_Default; |
John Thompson | eac6e1d | 2010-09-13 18:15:37 +0000 | [diff] [blame] | 2494 | break; |
| 2495 | } |
| 2496 | return weight; |
| 2497 | } |
| 2498 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2499 | /// ChooseConstraint - If there are multiple different constraints that we |
| 2500 | /// could pick for this operand (e.g. "imr") try to pick the 'best' one. |
Chris Lattner | 24e1a9d | 2008-04-27 01:49:46 +0000 | [diff] [blame] | 2501 | /// This is somewhat tricky: constraints fall into four classes: |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2502 | /// Other -> immediates and magic values |
| 2503 | /// Register -> one specific register |
| 2504 | /// RegisterClass -> a group of regs |
| 2505 | /// Memory -> memory |
| 2506 | /// Ideally, we would pick the most specific constraint possible: if we have |
| 2507 | /// something that fits into a register, we would pick it. The problem here |
| 2508 | /// is that if we have something that could either be in a register or in |
| 2509 | /// memory that use of the register could cause selection of *other* |
| 2510 | /// operands to fail: they might only succeed if we pick memory. Because of |
| 2511 | /// this the heuristic we use is: |
| 2512 | /// |
| 2513 | /// 1) If there is an 'other' constraint, and if the operand is valid for |
| 2514 | /// that constraint, use it. This makes us take advantage of 'i' |
| 2515 | /// constraints when available. |
| 2516 | /// 2) Otherwise, pick the most general constraint present. This prefers |
| 2517 | /// 'm' over 'r', for example. |
| 2518 | /// |
| 2519 | static void ChooseConstraint(TargetLowering::AsmOperandInfo &OpInfo, |
Dale Johannesen | 1784d16 | 2010-06-25 21:55:36 +0000 | [diff] [blame] | 2520 | const TargetLowering &TLI, |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2521 | SDValue Op, SelectionDAG *DAG) { |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2522 | assert(OpInfo.Codes.size() > 1 && "Doesn't have multiple constraint options"); |
| 2523 | unsigned BestIdx = 0; |
| 2524 | TargetLowering::ConstraintType BestType = TargetLowering::C_Unknown; |
| 2525 | int BestGenerality = -1; |
Dale Johannesen | a5989f8 | 2010-06-28 22:09:45 +0000 | [diff] [blame] | 2526 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2527 | // Loop over the options, keeping track of the most general one. |
| 2528 | for (unsigned i = 0, e = OpInfo.Codes.size(); i != e; ++i) { |
| 2529 | TargetLowering::ConstraintType CType = |
| 2530 | TLI.getConstraintType(OpInfo.Codes[i]); |
Dale Johannesen | a5989f8 | 2010-06-28 22:09:45 +0000 | [diff] [blame] | 2531 | |
Chris Lattner | 5a09690 | 2008-04-27 00:37:18 +0000 | [diff] [blame] | 2532 | // If this is an 'other' constraint, see if the operand is valid for it. |
| 2533 | // For example, on X86 we might have an 'rI' constraint. If the operand |
| 2534 | // is an integer in the range [0..31] we want to use I (saving a load |
| 2535 | // of a register), otherwise we must use 'r'. |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2536 | if (CType == TargetLowering::C_Other && Op.getNode()) { |
Chris Lattner | 5a09690 | 2008-04-27 00:37:18 +0000 | [diff] [blame] | 2537 | assert(OpInfo.Codes[i].size() == 1 && |
| 2538 | "Unhandled multi-letter 'other' constraint"); |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2539 | std::vector<SDValue> ResultOps; |
Eric Christopher | 100c833 | 2011-06-02 23:16:42 +0000 | [diff] [blame] | 2540 | TLI.LowerAsmOperandForConstraint(Op, OpInfo.Codes[i], |
Chris Lattner | 5a09690 | 2008-04-27 00:37:18 +0000 | [diff] [blame] | 2541 | ResultOps, *DAG); |
| 2542 | if (!ResultOps.empty()) { |
| 2543 | BestType = CType; |
| 2544 | BestIdx = i; |
| 2545 | break; |
| 2546 | } |
| 2547 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2548 | |
Dale Johannesen | a5989f8 | 2010-06-28 22:09:45 +0000 | [diff] [blame] | 2549 | // Things with matching constraints can only be registers, per gcc |
| 2550 | // documentation. This mainly affects "g" constraints. |
| 2551 | if (CType == TargetLowering::C_Memory && OpInfo.hasMatchingInput()) |
| 2552 | continue; |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2553 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2554 | // This constraint letter is more general than the previous one, use it. |
| 2555 | int Generality = getConstraintGenerality(CType); |
| 2556 | if (Generality > BestGenerality) { |
| 2557 | BestType = CType; |
| 2558 | BestIdx = i; |
| 2559 | BestGenerality = Generality; |
| 2560 | } |
| 2561 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2562 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2563 | OpInfo.ConstraintCode = OpInfo.Codes[BestIdx]; |
| 2564 | OpInfo.ConstraintType = BestType; |
| 2565 | } |
| 2566 | |
| 2567 | /// ComputeConstraintToUse - Determines the constraint code and constraint |
| 2568 | /// type to use for the specific AsmOperandInfo, setting |
| 2569 | /// OpInfo.ConstraintCode and OpInfo.ConstraintType. |
Chris Lattner | 5a09690 | 2008-04-27 00:37:18 +0000 | [diff] [blame] | 2570 | void TargetLowering::ComputeConstraintToUse(AsmOperandInfo &OpInfo, |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2571 | SDValue Op, |
Chris Lattner | 5a09690 | 2008-04-27 00:37:18 +0000 | [diff] [blame] | 2572 | SelectionDAG *DAG) const { |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2573 | assert(!OpInfo.Codes.empty() && "Must have at least one constraint"); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2574 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2575 | // Single-letter constraints ('r') are very common. |
| 2576 | if (OpInfo.Codes.size() == 1) { |
| 2577 | OpInfo.ConstraintCode = OpInfo.Codes[0]; |
| 2578 | OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode); |
| 2579 | } else { |
Dale Johannesen | 1784d16 | 2010-06-25 21:55:36 +0000 | [diff] [blame] | 2580 | ChooseConstraint(OpInfo, *this, Op, DAG); |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2581 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2582 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2583 | // 'X' matches anything. |
| 2584 | if (OpInfo.ConstraintCode == "X" && OpInfo.CallOperandVal) { |
| 2585 | // Labels and constants are handled elsewhere ('X' is the only thing |
Dale Johannesen | 8ea5ec6 | 2009-07-07 23:26:33 +0000 | [diff] [blame] | 2586 | // that matches labels). For Functions, the type here is the type of |
Dale Johannesen | 5339c55 | 2009-07-20 23:27:39 +0000 | [diff] [blame] | 2587 | // the result, which is not what we want to look at; leave them alone. |
| 2588 | Value *v = OpInfo.CallOperandVal; |
Dale Johannesen | 8ea5ec6 | 2009-07-07 23:26:33 +0000 | [diff] [blame] | 2589 | if (isa<BasicBlock>(v) || isa<ConstantInt>(v) || isa<Function>(v)) { |
| 2590 | OpInfo.CallOperandVal = v; |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2591 | return; |
Dale Johannesen | 8ea5ec6 | 2009-07-07 23:26:33 +0000 | [diff] [blame] | 2592 | } |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2593 | |
Chris Lattner | 4376fea | 2008-04-27 00:09:47 +0000 | [diff] [blame] | 2594 | // Otherwise, try to resolve it to something we know about by looking at |
| 2595 | // the actual operand type. |
| 2596 | if (const char *Repl = LowerXConstraint(OpInfo.ConstraintVT)) { |
| 2597 | OpInfo.ConstraintCode = Repl; |
| 2598 | OpInfo.ConstraintType = getConstraintType(OpInfo.ConstraintCode); |
| 2599 | } |
| 2600 | } |
| 2601 | } |
| 2602 | |
David Majnemer | a2f8d37 | 2013-06-08 23:51:45 +0000 | [diff] [blame] | 2603 | /// \brief Given an exact SDIV by a constant, create a multiplication |
Benjamin Kramer | 9c64030 | 2011-07-08 10:31:30 +0000 | [diff] [blame] | 2604 | /// with the multiplicative inverse of the constant. |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2605 | SDValue TargetLowering::BuildExactSDIV(SDValue Op1, SDValue Op2, SDLoc dl, |
Benjamin Kramer | 9c64030 | 2011-07-08 10:31:30 +0000 | [diff] [blame] | 2606 | SelectionDAG &DAG) const { |
| 2607 | ConstantSDNode *C = cast<ConstantSDNode>(Op2); |
| 2608 | APInt d = C->getAPIntValue(); |
| 2609 | assert(d != 0 && "Division by zero!"); |
| 2610 | |
| 2611 | // Shift the value upfront if it is even, so the LSB is one. |
| 2612 | unsigned ShAmt = d.countTrailingZeros(); |
| 2613 | if (ShAmt) { |
| 2614 | // TODO: For UDIV use SRL instead of SRA. |
| 2615 | SDValue Amt = DAG.getConstant(ShAmt, getShiftAmountTy(Op1.getValueType())); |
| 2616 | Op1 = DAG.getNode(ISD::SRA, dl, Op1.getValueType(), Op1, Amt); |
| 2617 | d = d.ashr(ShAmt); |
| 2618 | } |
| 2619 | |
| 2620 | // Calculate the multiplicative inverse, using Newton's method. |
| 2621 | APInt t, xn = d; |
| 2622 | while ((t = d*xn) != 1) |
| 2623 | xn *= APInt(d.getBitWidth(), 2) - t; |
| 2624 | |
| 2625 | Op2 = DAG.getConstant(xn, Op1.getValueType()); |
| 2626 | return DAG.getNode(ISD::MUL, dl, Op1.getValueType(), Op1, Op2); |
| 2627 | } |
| 2628 | |
David Majnemer | a2f8d37 | 2013-06-08 23:51:45 +0000 | [diff] [blame] | 2629 | /// \brief Given an ISD::SDIV node expressing a divide by constant, |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2630 | /// return a DAG expression to select that will generate the same value by |
| 2631 | /// multiplying by a magic number. See: |
| 2632 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2633 | SDValue TargetLowering::BuildSDIV(SDNode *N, const APInt &Divisor, |
| 2634 | SelectionDAG &DAG, bool IsAfterLegalization, |
| 2635 | std::vector<SDNode *> *Created) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2636 | EVT VT = N->getValueType(0); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2637 | SDLoc dl(N); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2638 | |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2639 | // Check to see if we can do this. |
Eli Friedman | fc69cb4 | 2008-11-30 06:35:39 +0000 | [diff] [blame] | 2640 | // FIXME: We should be more aggressive here. |
| 2641 | if (!isTypeLegal(VT)) |
| 2642 | return SDValue(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2643 | |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2644 | APInt::ms magics = Divisor.magic(); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2645 | |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2646 | // Multiply the numerator (operand 0) by the magic value |
Eli Friedman | fc69cb4 | 2008-11-30 06:35:39 +0000 | [diff] [blame] | 2647 | // FIXME: We should support doing a MUL in a wider type |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2648 | SDValue Q; |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 2649 | if (IsAfterLegalization ? isOperationLegal(ISD::MULHS, VT) : |
| 2650 | isOperationLegalOrCustom(ISD::MULHS, VT)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2651 | Q = DAG.getNode(ISD::MULHS, dl, VT, N->getOperand(0), |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2652 | DAG.getConstant(magics.m, VT)); |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 2653 | else if (IsAfterLegalization ? isOperationLegal(ISD::SMUL_LOHI, VT) : |
| 2654 | isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2655 | Q = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(VT, VT), |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2656 | N->getOperand(0), |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2657 | DAG.getConstant(magics.m, VT)).getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2658 | else |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2659 | return SDValue(); // No mulhs or equvialent |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2660 | // If d > 0 and m < 0, add the numerator |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2661 | if (Divisor.isStrictlyPositive() && magics.m.isNegative()) { |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2662 | Q = DAG.getNode(ISD::ADD, dl, VT, Q, N->getOperand(0)); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2663 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2664 | Created->push_back(Q.getNode()); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2665 | } |
| 2666 | // If d < 0 and m > 0, subtract the numerator. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2667 | if (Divisor.isNegative() && magics.m.isStrictlyPositive()) { |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2668 | Q = DAG.getNode(ISD::SUB, dl, VT, Q, N->getOperand(0)); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2669 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2670 | Created->push_back(Q.getNode()); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2671 | } |
| 2672 | // Shift right algebraic if shift value is nonzero |
| 2673 | if (magics.s > 0) { |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2674 | Q = DAG.getNode(ISD::SRA, dl, VT, Q, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2675 | DAG.getConstant(magics.s, getShiftAmountTy(Q.getValueType()))); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2676 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2677 | Created->push_back(Q.getNode()); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2678 | } |
| 2679 | // Extract the sign bit and add it to the quotient |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2680 | SDValue T = DAG.getNode(ISD::SRL, dl, VT, Q, |
| 2681 | DAG.getConstant(VT.getScalarSizeInBits() - 1, |
| 2682 | getShiftAmountTy(Q.getValueType()))); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2683 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2684 | Created->push_back(T.getNode()); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2685 | return DAG.getNode(ISD::ADD, dl, VT, Q, T); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2686 | } |
| 2687 | |
David Majnemer | a2f8d37 | 2013-06-08 23:51:45 +0000 | [diff] [blame] | 2688 | /// \brief Given an ISD::UDIV node expressing a divide by constant, |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2689 | /// return a DAG expression to select that will generate the same value by |
| 2690 | /// multiplying by a magic number. See: |
| 2691 | /// <http://the.wall.riscom.net/books/proc/ppc/cwg/code2.html> |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2692 | SDValue TargetLowering::BuildUDIV(SDNode *N, const APInt &Divisor, |
| 2693 | SelectionDAG &DAG, bool IsAfterLegalization, |
| 2694 | std::vector<SDNode *> *Created) const { |
Owen Anderson | e50ed30 | 2009-08-10 22:56:29 +0000 | [diff] [blame] | 2695 | EVT VT = N->getValueType(0); |
Andrew Trick | ac6d9be | 2013-05-25 02:42:55 +0000 | [diff] [blame] | 2696 | SDLoc dl(N); |
Eli Friedman | 201c977 | 2008-11-30 06:02:26 +0000 | [diff] [blame] | 2697 | |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2698 | // Check to see if we can do this. |
Eli Friedman | 201c977 | 2008-11-30 06:02:26 +0000 | [diff] [blame] | 2699 | // FIXME: We should be more aggressive here. |
| 2700 | if (!isTypeLegal(VT)) |
| 2701 | return SDValue(); |
| 2702 | |
| 2703 | // FIXME: We should use a narrower constant when the upper |
| 2704 | // bits are known to be zero. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2705 | APInt::mu magics = Divisor.magicu(); |
Benjamin Kramer | 1c10b8d | 2011-03-17 20:39:14 +0000 | [diff] [blame] | 2706 | |
| 2707 | SDValue Q = N->getOperand(0); |
| 2708 | |
| 2709 | // If the divisor is even, we can avoid using the expensive fixup by shifting |
| 2710 | // the divided value upfront. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2711 | if (magics.a != 0 && !Divisor[0]) { |
| 2712 | unsigned Shift = Divisor.countTrailingZeros(); |
Benjamin Kramer | 1c10b8d | 2011-03-17 20:39:14 +0000 | [diff] [blame] | 2713 | Q = DAG.getNode(ISD::SRL, dl, VT, Q, |
| 2714 | DAG.getConstant(Shift, getShiftAmountTy(Q.getValueType()))); |
| 2715 | if (Created) |
| 2716 | Created->push_back(Q.getNode()); |
| 2717 | |
| 2718 | // Get magic number for the shifted divisor. |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2719 | magics = Divisor.lshr(Shift).magicu(Shift); |
Benjamin Kramer | 1c10b8d | 2011-03-17 20:39:14 +0000 | [diff] [blame] | 2720 | assert(magics.a == 0 && "Should use cheap fixup now"); |
| 2721 | } |
Eli Friedman | 201c977 | 2008-11-30 06:02:26 +0000 | [diff] [blame] | 2722 | |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2723 | // Multiply the numerator (operand 0) by the magic value |
Eli Friedman | 201c977 | 2008-11-30 06:02:26 +0000 | [diff] [blame] | 2724 | // FIXME: We should support doing a MUL in a wider type |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 2725 | if (IsAfterLegalization ? isOperationLegal(ISD::MULHU, VT) : |
| 2726 | isOperationLegalOrCustom(ISD::MULHU, VT)) |
Benjamin Kramer | 1c10b8d | 2011-03-17 20:39:14 +0000 | [diff] [blame] | 2727 | Q = DAG.getNode(ISD::MULHU, dl, VT, Q, DAG.getConstant(magics.m, VT)); |
Richard Osborne | 19a4daf | 2011-11-07 17:09:05 +0000 | [diff] [blame] | 2728 | else if (IsAfterLegalization ? isOperationLegal(ISD::UMUL_LOHI, VT) : |
| 2729 | isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) |
Benjamin Kramer | 1c10b8d | 2011-03-17 20:39:14 +0000 | [diff] [blame] | 2730 | Q = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(VT, VT), Q, |
| 2731 | DAG.getConstant(magics.m, VT)).getNode(), 1); |
Dan Gohman | 525178c | 2007-10-08 18:33:35 +0000 | [diff] [blame] | 2732 | else |
Dan Gohman | 475871a | 2008-07-27 21:46:04 +0000 | [diff] [blame] | 2733 | return SDValue(); // No mulhu or equvialent |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2734 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2735 | Created->push_back(Q.getNode()); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2736 | |
| 2737 | if (magics.a == 0) { |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2738 | assert(magics.s < Divisor.getBitWidth() && |
Eli Friedman | 201c977 | 2008-11-30 06:02:26 +0000 | [diff] [blame] | 2739 | "We shouldn't generate an undefined shift!"); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2740 | return DAG.getNode(ISD::SRL, dl, VT, Q, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2741 | DAG.getConstant(magics.s, getShiftAmountTy(Q.getValueType()))); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2742 | } else { |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2743 | SDValue NPQ = DAG.getNode(ISD::SUB, dl, VT, N->getOperand(0), Q); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2744 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2745 | Created->push_back(NPQ.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2746 | NPQ = DAG.getNode(ISD::SRL, dl, VT, NPQ, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2747 | DAG.getConstant(1, getShiftAmountTy(NPQ.getValueType()))); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2748 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2749 | Created->push_back(NPQ.getNode()); |
Dale Johannesen | ff97d4f | 2009-02-03 00:47:48 +0000 | [diff] [blame] | 2750 | NPQ = DAG.getNode(ISD::ADD, dl, VT, NPQ, Q); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2751 | if (Created) |
Gabor Greif | ba36cb5 | 2008-08-28 21:40:38 +0000 | [diff] [blame] | 2752 | Created->push_back(NPQ.getNode()); |
Wesley Peck | bf17cfa | 2010-11-23 03:31:01 +0000 | [diff] [blame] | 2753 | return DAG.getNode(ISD::SRL, dl, VT, NPQ, |
Owen Anderson | 95771af | 2011-02-25 21:41:48 +0000 | [diff] [blame] | 2754 | DAG.getConstant(magics.s-1, getShiftAmountTy(NPQ.getValueType()))); |
Andrew Lenharth | dae9cbe | 2006-05-16 17:42:15 +0000 | [diff] [blame] | 2755 | } |
| 2756 | } |
Stephen Hines | 36b5688 | 2014-04-23 16:57:46 -0700 | [diff] [blame] | 2757 | |
| 2758 | bool TargetLowering:: |
| 2759 | verifyReturnAddressArgumentIsConstant(SDValue Op, SelectionDAG &DAG) const { |
| 2760 | if (!isa<ConstantSDNode>(Op.getOperand(0))) { |
| 2761 | DAG.getContext()->emitError("argument to '__builtin_return_address' must " |
| 2762 | "be a constant integer"); |
| 2763 | return true; |
| 2764 | } |
| 2765 | |
| 2766 | return false; |
| 2767 | } |
Stephen Hines | dce4a40 | 2014-05-29 02:49:00 -0700 | [diff] [blame^] | 2768 | |
| 2769 | //===----------------------------------------------------------------------===// |
| 2770 | // Legalization Utilities |
| 2771 | //===----------------------------------------------------------------------===// |
| 2772 | |
| 2773 | bool TargetLowering::expandMUL(SDNode *N, SDValue &Lo, SDValue &Hi, EVT HiLoVT, |
| 2774 | SelectionDAG &DAG, SDValue LL, SDValue LH, |
| 2775 | SDValue RL, SDValue RH) const { |
| 2776 | EVT VT = N->getValueType(0); |
| 2777 | SDLoc dl(N); |
| 2778 | |
| 2779 | bool HasMULHS = isOperationLegalOrCustom(ISD::MULHS, HiLoVT); |
| 2780 | bool HasMULHU = isOperationLegalOrCustom(ISD::MULHU, HiLoVT); |
| 2781 | bool HasSMUL_LOHI = isOperationLegalOrCustom(ISD::SMUL_LOHI, HiLoVT); |
| 2782 | bool HasUMUL_LOHI = isOperationLegalOrCustom(ISD::UMUL_LOHI, HiLoVT); |
| 2783 | if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) { |
| 2784 | unsigned OuterBitSize = VT.getSizeInBits(); |
| 2785 | unsigned InnerBitSize = HiLoVT.getSizeInBits(); |
| 2786 | unsigned LHSSB = DAG.ComputeNumSignBits(N->getOperand(0)); |
| 2787 | unsigned RHSSB = DAG.ComputeNumSignBits(N->getOperand(1)); |
| 2788 | |
| 2789 | // LL, LH, RL, and RH must be either all NULL or all set to a value. |
| 2790 | assert((LL.getNode() && LH.getNode() && RL.getNode() && RH.getNode()) || |
| 2791 | (!LL.getNode() && !LH.getNode() && !RL.getNode() && !RH.getNode())); |
| 2792 | |
| 2793 | if (!LL.getNode() && !RL.getNode() && |
| 2794 | isOperationLegalOrCustom(ISD::TRUNCATE, HiLoVT)) { |
| 2795 | LL = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, N->getOperand(0)); |
| 2796 | RL = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, N->getOperand(1)); |
| 2797 | } |
| 2798 | |
| 2799 | if (!LL.getNode()) |
| 2800 | return false; |
| 2801 | |
| 2802 | APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize); |
| 2803 | if (DAG.MaskedValueIsZero(N->getOperand(0), HighMask) && |
| 2804 | DAG.MaskedValueIsZero(N->getOperand(1), HighMask)) { |
| 2805 | // The inputs are both zero-extended. |
| 2806 | if (HasUMUL_LOHI) { |
| 2807 | // We can emit a umul_lohi. |
| 2808 | Lo = DAG.getNode(ISD::UMUL_LOHI, dl, |
| 2809 | DAG.getVTList(HiLoVT, HiLoVT), LL, RL); |
| 2810 | Hi = SDValue(Lo.getNode(), 1); |
| 2811 | return true; |
| 2812 | } |
| 2813 | if (HasMULHU) { |
| 2814 | // We can emit a mulhu+mul. |
| 2815 | Lo = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RL); |
| 2816 | Hi = DAG.getNode(ISD::MULHU, dl, HiLoVT, LL, RL); |
| 2817 | return true; |
| 2818 | } |
| 2819 | } |
| 2820 | if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) { |
| 2821 | // The input values are both sign-extended. |
| 2822 | if (HasSMUL_LOHI) { |
| 2823 | // We can emit a smul_lohi. |
| 2824 | Lo = DAG.getNode(ISD::SMUL_LOHI, dl, |
| 2825 | DAG.getVTList(HiLoVT, HiLoVT), LL, RL); |
| 2826 | Hi = SDValue(Lo.getNode(), 1); |
| 2827 | return true; |
| 2828 | } |
| 2829 | if (HasMULHS) { |
| 2830 | // We can emit a mulhs+mul. |
| 2831 | Lo = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RL); |
| 2832 | Hi = DAG.getNode(ISD::MULHS, dl, HiLoVT, LL, RL); |
| 2833 | return true; |
| 2834 | } |
| 2835 | } |
| 2836 | |
| 2837 | if (!LH.getNode() && !RH.getNode() && |
| 2838 | isOperationLegalOrCustom(ISD::SRL, VT) && |
| 2839 | isOperationLegalOrCustom(ISD::TRUNCATE, HiLoVT)) { |
| 2840 | unsigned ShiftAmt = VT.getSizeInBits() - HiLoVT.getSizeInBits(); |
| 2841 | SDValue Shift = DAG.getConstant(ShiftAmt, getShiftAmountTy(VT)); |
| 2842 | LH = DAG.getNode(ISD::SRL, dl, VT, N->getOperand(0), Shift); |
| 2843 | LH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, LH); |
| 2844 | RH = DAG.getNode(ISD::SRL, dl, VT, N->getOperand(1), Shift); |
| 2845 | RH = DAG.getNode(ISD::TRUNCATE, dl, HiLoVT, RH); |
| 2846 | } |
| 2847 | |
| 2848 | if (!LH.getNode()) |
| 2849 | return false; |
| 2850 | |
| 2851 | if (HasUMUL_LOHI) { |
| 2852 | // Lo,Hi = umul LHS, RHS. |
| 2853 | SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl, |
| 2854 | DAG.getVTList(HiLoVT, HiLoVT), LL, RL); |
| 2855 | Lo = UMulLOHI; |
| 2856 | Hi = UMulLOHI.getValue(1); |
| 2857 | RH = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RH); |
| 2858 | LH = DAG.getNode(ISD::MUL, dl, HiLoVT, LH, RL); |
| 2859 | Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, RH); |
| 2860 | Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, LH); |
| 2861 | return true; |
| 2862 | } |
| 2863 | if (HasMULHU) { |
| 2864 | Lo = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RL); |
| 2865 | Hi = DAG.getNode(ISD::MULHU, dl, HiLoVT, LL, RL); |
| 2866 | RH = DAG.getNode(ISD::MUL, dl, HiLoVT, LL, RH); |
| 2867 | LH = DAG.getNode(ISD::MUL, dl, HiLoVT, LH, RL); |
| 2868 | Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, RH); |
| 2869 | Hi = DAG.getNode(ISD::ADD, dl, HiLoVT, Hi, LH); |
| 2870 | return true; |
| 2871 | } |
| 2872 | } |
| 2873 | return false; |
| 2874 | } |