Lines Matching defs:And
43 case Instruction::And:
280 case Instruction::And:
560 case Instruction::And:
756 Value *And = Builder.CreateAnd(X, MaskC);
757 return new ICmpInst(ICmpInst::ICMP_NE, And, Zero);
764 Value *And = Builder.CreateAnd(X, Builder.CreateOr(MaskC, One));
765 return new ICmpInst(ICmpInst::ICMP_NE, And, Zero);
1040 case Instruction::And:
1062 // If this is an And instruction and all of the BitsToClear are
1064 if (I->getOpcode() == Instruction::And)
1212 Value *And = Builder.CreateAnd(A, AndConst, CSrc->getName() + ".mask");
1213 return new ZExtInst(And, DestTy);
1241 Value *And;
1242 if (match(Src, m_OneUse(m_Xor(m_Value(And), m_Constant(C)))) &&
1243 match(And, m_OneUse(m_And(m_Trunc(m_Value(X)), m_Specific(C)))) &&
1394 case Instruction::And: