Searched refs:CInt (Results 1 - 11 of 11) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLowerExpectIntrinsic.cpp162 ConstantInt *CInt = dyn_cast<ConstantInt>(BinOp->getOperand(1));
163 if (!CInt)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp638 const APInt *CInt; local
639 if (match(V, m_APInt(CInt))) {
640 if (!CInt->isMinSignedValue())
H A DInstCombineCalls.cpp738 auto *CInt = dyn_cast<ConstantInt>(II.getArgOperand(2)); local
739 if (!CInt)
750 uint8_t Imm = CInt->getZExtValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp1811 const APInt &CInt = C->getAPIntValue(); local
1812 if (CInt.getBoolValue())
1813 MaxFactor = CInt.countTrailingZeros();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp3501 ConstantInt *CInt = dyn_cast<ConstantInt>(I->getOperand(OpIdx));
3502 if (!CInt) {
3508 !CInt->getValue().isPowerOf2())
3511 CInt0 = CInt;
3514 if (CInt0 != CInt)
H A DLoopVectorize.cpp4254 auto *CInt = dyn_cast<ConstantInt>(Divisor);
4255 return !CInt || CInt->isZero();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp2299 if (ConstantInt *CInt = dyn_cast<ConstantInt>(CI->getArgOperand(2))) {
2300 return convertStrToNumber(CI, Str, CInt->getSExtValue());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp3079 if (auto *CInt = dyn_cast<ConstantInt>(Elt)) {
3080 const APInt &Value = CInt->getValue();
3097 if (auto *CInt = dyn_cast<ConstantInt>(Cst)) {
3098 const APInt &Value = CInt->getValue();
4056 if (auto *CInt = dyn_cast<ConstantInt>(Elt)) {
4057 const APInt &Value = CInt->getValue();
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3011 const APInt &CInt = C->getAPIntValue(); local
3014 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp8843 const APInt &CInt = C->getAPIntValue(); local
8846 Ops.push_back(DAG.getConstant(CInt.zextOrTrunc(32), dl, MVT::i32));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp6429 if (auto *CInt = dyn_cast<ConstantInt>(Cst)) {
6430 Mask = CInt->getValue();
[all...]

Completed in 494 milliseconds