Searched refs:ConstValue (Results 1 – 6 of 6) sorted by relevance
135 const APInt ConstValue = Const->Value.sextOrSelf(Ty.getSizeInBits()); in matchAArch64MulConstCombine() local149 unsigned TrailingZeroes = ConstValue.countTrailingZeros(); in matchAArch64MulConstCombine()168 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in matchAArch64MulConstCombine()176 if (ConstValue.isNonNegative()) { in matchAArch64MulConstCombine()181 APInt CVPlus1 = ConstValue + 1; in matchAArch64MulConstCombine()193 APInt CVNegPlus1 = -ConstValue + 1; in matchAArch64MulConstCombine()194 APInt CVNegMinus1 = -ConstValue - 1; in matchAArch64MulConstCombine()
74 CharUnits ConstValue; variable90 : TheKind(CountKind), ConstValue(value), in OSLogBufferItem()105 CharUnits getConstValue() const { return ConstValue; } in getConstValue()
98 Constant *ConstValue) { in setConstantInArgument() argument105 CB.setArgOperand(ArgNo, ConstValue); in setConstantInArgument()
12212 const APInt &ConstValue = C->getAPIntValue(); in performMulCombine() local12219 if (ConstValue.sge(1) && ConstValue.sle(16)) in performMulCombine()12234 unsigned TrailingZeroes = ConstValue.countTrailingZeros(); in performMulCombine()12249 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()12257 if (ConstValue.isNonNegative()) { in performMulCombine()12262 APInt CVPlus1 = ConstValue + 1; in performMulCombine()12274 APInt CVNegPlus1 = -ConstValue + 1; in performMulCombine()12275 APInt CVNegMinus1 = -ConstValue - 1; in performMulCombine()
1513 SDValue ConstValue = DAG.getConstant(Vec.getScalarValueSizeInBits() - 1, in truncateVecElts() local1515 SDValue SplatVec = getBuildVectorSplat(ResTy, ConstValue, BigEndian, DAG); in truncateVecElts()
23131 APInt ConstValue; in LowerVSETCC() local23133 ISD::isConstantSplatVector(Op1.getNode(), ConstValue)) { in LowerVSETCC()23134 if (ConstValue.isMinSignedValue()) in LowerVSETCC()23136 else if (ConstValue.isMaxSignedValue()) in LowerVSETCC()23138 else if (ConstValue.isNullValue() && DAG.SignBitIsZero(Op0)) in LowerVSETCC()