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

1 2

  /external/llvm/include/llvm/
Constant.h 56 /// isAllOnesValue - Return true if this is the value that would be returned by
58 bool isAllOnesValue() const;
Constants.h 178 return Val.isAllOnesValue();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 204 return C1I->isOne() || C1I->isAllOnesValue() ||
205 C2I->isOne() || C2I->isAllOnesValue();
464 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
476 if (C2->isAllOnesValue())
707 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
717 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) {
    [all...]
InstCombineSimplifyDemanded.cpp 575 if ((I0 + 1).isPowerOf2() && (I0 | KnownZero).isAllOnesValue()) {
694 if (Rem->isAllOnesValue())
    [all...]
InstCombineAddSub.cpp 147 if ((XorRHS->getValue() | LHSKnownZero).isAllOnesValue())
214 if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
InstCombineAndOrXor.cpp 518 if (C->isAllOnesValue()) {
    [all...]
InstCombineCalls.cpp 278 if (Power->isAllOnesValue())
767 if (SizeCI->isAllOnesValue())
    [all...]
InstCombineCasts.cpp 512 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
    [all...]
InstCombineCompares.cpp 125 return RHS->isAllOnesValue();
128 return RHS->isAllOnesValue();
    [all...]
InstCombineMulDivRem.cpp 528 if (RHS->isAllOnesValue())
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 251 else if (RHS.isAllOnesValue())
258 else if (RHS.isAllOnesValue()) {
408 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
225 if (RHSC->isAllOnesValue())
696 if (Cond->isAllOnesValue()) return V1;
    [all...]
Constants.cpp 67 bool Constant::isAllOnesValue() const {
74 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
79 return Splat->isAllOnesValue();
84 return Splat->isAllOnesValue();
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 326 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
Lint.cpp 384 !cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
480 return KnownZero.isAllOnesValue();
ValueTracking.cpp     [all...]
ScalarEvolution.cpp 281 bool SCEV::isAllOnesValue() const {
283 return SC->getValue()->isAllOnesValue();
    [all...]
  /external/llvm/include/llvm/Support/
PatternMatch.h 208 bool isValue(const APInt &C) { return C.isAllOnesValue(); }
638 cast<Constant>(RHS)->isAllOnesValue() &&
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 117 /// isAllOnesValue - Return true if the expression is a constant
120 bool isAllOnesValue() const;
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 660 if (umin.isAllOnesValue())
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/llvm/include/llvm/ADT/
APInt.h 324 bool isAllOnesValue() const {
    [all...]
  /external/clang/lib/CodeGen/
ItaniumCXXABI.cpp 419 if (src->isAllOnesValue()) return src;
    [all...]
  /external/llvm/lib/Transforms/Scalar/
CodeGenPrepare.cpp 588 return SizeCI->isAllOnesValue();
    [all...]

Completed in 250 milliseconds

1 2