Searched refs:Op0C (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp4520 ConstantInt *Op0C = dyn_cast<ConstantInt>(Call.getOperand(0)); local
4525 if ((Op0C && Op0C->isNullValue()) || (Op1C && Op1C->isNullValue()))
4528 if (isMallocLikeFn(&Call, TLI) && Op0C) {
4532 Call.getContext(), Op0C->getZExtValue()));
4536 Call.getContext(), Op0C->getZExtValue()));
4542 if (Op0C && Op0C->getValue().ult(llvm::Value::MaximumAlignment)) {
4543 uint64_t AlignmentVal = Op0C->getZExtValue();
4553 } else if (isCallocLikeFn(&Call, TLI) && Op0C
[all...]
H A DInstCombineShifts.cpp837 const APInt *Op0C; local
838 if (match(Op0BO->getOperand(1), m_APInt(Op0C))) {
856 match(Op0BO->getOperand(0), m_APInt(Op0C))) {
H A DInstCombineAddSub.cpp1839 const APInt *Op0C; local
1840 if (match(Op0, m_APInt(Op0C)) && Op0C->isMask()) {
1844 if ((*Op0C | RHSKnown.Zero).isAllOnesValue())
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DConstantFolding.cpp2915 ConstantFP *Op0C = dyn_cast<ConstantFP>(Call->getArgOperand(0)); local
2917 if (Op0C && Op1C) {
2918 const APFloat &Op0 = Op0C->getValueAPF();
2927 Type *Ty = Op0C->getType();
2930 double Op0V = getValueAsDouble(Op0C);
H A DValueTracking.cpp3099 if (Constant *Op0C = dyn_cast<Constant>(Op0))
3101 if (Op0C->getType()->getPrimitiveSizeInBits() <
3103 Op0C = ConstantExpr::getZExt(Op0C, MulC->getType());
3104 if (Op0C->getType()->getPrimitiveSizeInBits() >
3106 MulC = ConstantExpr::getZExt(MulC, Op0C->getType());
3109 Multiple = ConstantExpr::getMul(MulC, Op0C);

Completed in 214 milliseconds