Searched refs:ConstValue (Results 1 – 7 of 7) sorted by relevance
136 const APInt ConstValue = Const->Value.sextOrSelf(Ty.getSizeInBits()); in matchAArch64MulConstCombine() local150 unsigned TrailingZeroes = ConstValue.countTrailingZeros(); in matchAArch64MulConstCombine()169 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in matchAArch64MulConstCombine()177 if (ConstValue.isNonNegative()) { in matchAArch64MulConstCombine()182 APInt CVPlus1 = ConstValue + 1; in matchAArch64MulConstCombine()194 APInt CVNegPlus1 = -ConstValue + 1; in matchAArch64MulConstCombine()195 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()
1093 TEST(ByRefTest, ConstValue) { in TEST() argument
1513 SDValue ConstValue = DAG.getConstant(Vec.getScalarValueSizeInBits() - 1, in truncateVecElts() local1515 SDValue SplatVec = getBuildVectorSplat(ResTy, ConstValue, BigEndian, DAG); in truncateVecElts()
12626 const APInt &ConstValue = C->getAPIntValue(); in performMulCombine() local12633 if (ConstValue.sge(1) && ConstValue.sle(16)) in performMulCombine()12649 unsigned TrailingZeroes = ConstValue.countTrailingZeros(); in performMulCombine()12664 APInt ShiftedConstValue = ConstValue.ashr(TrailingZeroes); in performMulCombine()12672 if (ConstValue.isNonNegative()) { in performMulCombine()12677 APInt CVPlus1 = ConstValue + 1; in performMulCombine()12689 APInt CVNegPlus1 = -ConstValue + 1; in performMulCombine()12690 APInt CVNegMinus1 = -ConstValue - 1; in performMulCombine()
23272 APInt ConstValue; in LowerVSETCC() local23274 ISD::isConstantSplatVector(Op1.getNode(), ConstValue)) { in LowerVSETCC()23275 if (ConstValue.isMinSignedValue()) in LowerVSETCC()23277 else if (ConstValue.isMaxSignedValue()) in LowerVSETCC()23279 else if (ConstValue.isNullValue() && DAG.SignBitIsZero(Op0)) in LowerVSETCC()