HomeSort by relevance Sort by last modified time
    Searched refs:isAllOnesValue (Results 1 - 25 of 40) sorted by null

1 2

  /external/llvm/include/llvm/
Constant.h 55 /// isAllOnesValue - Return true if this is the value that would be returned by
57 bool isAllOnesValue() const;
Constants.h 174 return Val.isAllOnesValue();
483 bool isAllOnesValue() const;
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 199 return C1I->isOne() || C1I->isAllOnesValue() ||
200 C2I->isOne() || C2I->isAllOnesValue();
456 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
468 if (C2->isAllOnesValue())
692 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
702 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) {
    [all...]
InstCombineSimplifyDemanded.cpp 686 if (Rem->isAllOnesValue())
    [all...]
InstCombineAndOrXor.cpp 767 if (LHSCC == ICmpInst::ICMP_SGT && LHSCst->isAllOnesValue()) {
    [all...]
InstCombineCalls.cpp 348 if (Power->isAllOnesValue())
788 if (SizeCI->isAllOnesValue())
    [all...]
InstCombineCasts.cpp 514 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
    [all...]
InstCombineAddSub.cpp 202 if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
InstCombineCompares.cpp 124 return RHS->isAllOnesValue();
127 return RHS->isAllOnesValue();
763 if (DivIsSigned && DivRHS->isAllOnesValue())
    [all...]
InstCombineMulDivRem.cpp 515 if (RHS->isAllOnesValue())
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 245 else if (RHS.isAllOnesValue())
252 else if (RHS.isAllOnesValue()) {
462 if (lhsValue.isAllOnesValue() && lhsValue.isSigned())
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 186 bool isValue(const APInt &C) { return C.isAllOnesValue(); }
599 return CI->isAllOnesValue() && L.match(LHS);
601 return CV->isAllOnesValue() && L.match(LHS);
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
CodeGenPrepare.cpp 506 return SizeCI->isAllOnesValue();
    [all...]
  /external/llvm/lib/VMCore/
Constants.cpp 65 bool Constant::isAllOnesValue() const {
72 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
76 return CV->isAllOnesValue();
    [all...]
Instruction.cpp 414 return Op && !Op->isNullValue() && !Op->isAllOnesValue();
ConstantFold.cpp 47 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
227 if (RHSC->isAllOnesValue())
701 if (CondV->isAllOnesValue()) return V1;
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 361 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
Lint.cpp 379 !cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
477 return KnownZero.isAllOnesValue();
ScalarEvolution.cpp 271 bool SCEV::isAllOnesValue() const {
273 return SC->getValue()->isAllOnesValue();
    [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 116 /// isAllOnesValue - Return true if the expression is a constant
119 bool isAllOnesValue() const;
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 629 if (umin.isAllOnesValue())
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 315 bool isAllOnesValue() const {
    [all...]

Completed in 440 milliseconds

1 2