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

  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 150 ConstantInt *AndCst = 0);
InstCombineAndOrXor.cpp 753 ConstantInt *AndCst, *SmallCst = 0, *BigCst = 0;
758 match(Val, m_And(m_Specific(V), m_ConstantInt(AndCst)))) {
762 match(Val2, m_And(m_Specific(V), m_ConstantInt(AndCst)))) {
773 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
774 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());
776 Value *NewVal = ConstantInt::get(AndCst->getType()->getContext(), N);
    [all...]
InstCombineCompares.cpp 199 /// If AndCst is non-null, then the loaded value is masked with that constant
203 CmpInst &ICI, ConstantInt *AndCst) {
289 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
    [all...]

Completed in 53 milliseconds