HomeSort by: relevance | last modified time | path
    Searched refs:AndConst (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 1248 Constant *AndConst = ConstantInt::get(A->getType(), AndValue);
1249 Value *And = Builder.CreateAnd(A, AndConst, CSrc->getName() + ".mask");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 2402 SDValue AndConst = DAG.getConstant(1, dl, SrcVT);
2403 SDValue And = DAG.getNode(ISD::AND, dl, SrcVT, Op0, AndConst);
DAGCombiner.cpp 14943 const APInt &AndConst = cast<ConstantSDNode>(AndOp1)->getAPIntValue();
14945 if (AndConst.isPowerOf2() &&
14946 cast<ConstantSDNode>(Op1)->getAPIntValue() == AndConst.logBase2()) {
21590 ConstantSDNode *AndConst = getAsNonOpaqueConstant(N0.getOperand(1));
21591 if (AndConst && AndConst->getAPIntValue() == 0xffff) {

Completed in 81 milliseconds