Home
last modified time | relevance | path

Searched refs:ConstValue (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp136 const APInt ConstValue = Const->Value.sextOrSelf(Ty.getSizeInBits()); in matchAArch64MulConstCombine() local
150 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()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DOSLog.h74 CharUnits ConstValue; variable
90 : TheKind(CountKind), ConstValue(value), in OSLogBufferItem()
105 CharUnits getConstValue() const { return ConstValue; } in getConstValue()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DCallSiteSplitting.cpp98 Constant *ConstValue) { in setConstantInArgument() argument
105 CB.setArgOperand(ArgNo, ConstValue); in setConstantInArgument()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc1093 TEST(ByRefTest, ConstValue) { in TEST() argument
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSEISelLowering.cpp1513 SDValue ConstValue = DAG.getConstant(Vec.getScalarValueSizeInBits() - 1, in truncateVecElts() local
1515 SDValue SplatVec = getBuildVectorSplat(ResTy, ConstValue, BigEndian, DAG); in truncateVecElts()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12626 const APInt &ConstValue = C->getAPIntValue(); in performMulCombine() local
12633 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23272 APInt ConstValue; in LowerVSETCC() local
23274 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()