HomeSort by relevance Sort by last modified time
    Searched refs:AndCst (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 759 ConstantInt *AndCst, *SmallCst = 0, *BigCst = 0;
763 match(Val, m_And(m_Specific(V), m_ConstantInt(AndCst)))) {
769 match(Val2, m_And(m_Specific(V), m_ConstantInt(AndCst)))) {
780 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
781 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());
783 Value *NewVal = ConstantInt::get(AndCst->getType()->getContext(), N);
    [all...]
InstCombine.h 144 ConstantInt *AndCst = 0);
InstCombineCompares.cpp 198 /// If AndCst is non-null, then the loaded value is masked with that constant
202 CmpInst &ICI, ConstantInt *AndCst) {
288 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
    [all...]

Completed in 53 milliseconds