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

/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp367 Constant *AndC = Constant::getIntegerValue(VTy, local
369 Instruction *And = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
392 Constant *AndC = local
394 Instruction *NewAnd = BinaryOperator::CreateAnd(I->getOperand(0), AndC);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4366 auto *AndC = dyn_cast<ConstantInt>(I->getOperand(1)); local
4367 if (!AndC)
4369 APInt AndBits = AndC->getValue();
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp428 bool isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN,
2971 bool DAGCombiner::isAndLoadExtLoad(ConstantSDNode *AndC, LoadSDNode *LoadN, argument
2974 uint32_t ActiveBits = AndC->getAPIntValue().getActiveBits();
2976 if (ActiveBits == 0 || !APIntOps::isMask(ActiveBits, AndC->getAPIntValue()))
6383 auto *AndC = cast<ConstantSDNode>(N0.getOperand(1)); local
6385 EVT LoadResultTy = AndC->getValueType(0);
6387 if (isAndLoadExtLoad(AndC, LN0, LoadResultTy, ExtVT, LoadedVT,
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp10513 ConstantSDNode *AndC = dyn_cast<ConstantSDNode>(And->getOperand(1));
10514 if (!AndC || !AndC->getAPIntValue().isPowerOf2())
10554 unsigned BitInX = AndC->getAPIntValue().logBase2();

Completed in 296 milliseconds