Searched refs:AndC (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp277 Constant *AndC = Constant::getIntegerValue(VTy, local
279 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
301 Constant *AndC = local
303 Instruction *NewAnd = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
H A DInstCombineAndOrXor.cpp1222 ConstantInt *AndC, *SmallC = nullptr, *BigC = nullptr; local
1227 match(LHS0, m_And(m_Specific(V), m_ConstantInt(AndC)))) {
1231 match(RHS0, m_And(m_Specific(V), m_ConstantInt(AndC)))) {
1242 if ((Low & AndC->getValue()).isNullValue() &&
1244 Value *NewAnd = Builder.CreateAnd(V, Low | AndC->getValue());
1246 Value *NewVal = ConstantInt::get(AndC->getType()->getContext(), N);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5856 auto *AndC = dyn_cast<ConstantInt>(I->getOperand(1)); local
5857 if (!AndC)
5859 APInt AndBits = AndC->getValue();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp620 bool isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN,
4775 bool DAGCombiner::isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, argument
4777 if (!AndC->getAPIntValue().isMask())
4780 unsigned ActiveBits = AndC->getAPIntValue().countTrailingOnes();
10021 auto *AndC = cast<ConstantSDNode>(N0.getOperand(1)); local
10022 EVT LoadResultTy = AndC->getValueType(0);
10024 if (isAndLoadExtLoad(AndC, LN00, LoadResultTy, ExtVT))
10404 auto AndC = dyn_cast<ConstantSDNode>(N->getOperand(1)); local
10405 if (!AndC)
10408 const APInt &Mask = AndC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp14173 const APInt *AndC = isPowerOf2Constant(And->getOperand(1)); local
14174 if (!AndC)
14213 unsigned BitInX = AndC->logBase2();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp[all...]

Completed in 500 milliseconds