Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/GISel/
H A DAArch64PostLegalizerCombiner.cpp135 const APInt ConstValue = Const->Value.sextOrSelf(Ty.getSizeInBits()); in matchAArch64MulConstCombine() local
149 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DCallSiteSplitting.cpp98 Constant *ConstValue) { in setConstantInArgument() argument
105 CB.setArgOperand(ArgNo, ConstValue); in setConstantInArgument()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12212 const APInt &ConstValue = C->getAPIntValue(); in performMulCombine() local
12219 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp23131 APInt ConstValue; in LowerVSETCC() local
23133 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()