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

1 2 3

  /external/llvm/include/llvm/IR/
Constant.h 56 /// isAllOnesValue - Return true if this is the value that would be returned by
58 bool isAllOnesValue() const;
Constants.h 177 return Val.isAllOnesValue();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 205 return C1I->isOne() || C1I->isAllOnesValue() ||
206 C2I->isOne() || C2I->isAllOnesValue();
531 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
543 if (C2->isAllOnesValue())
783 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
793 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) {
    [all...]
InstCombineSimplifyDemanded.cpp 589 if ((I0 + 1).isPowerOf2() && (I0 | KnownZero).isAllOnesValue()) {
719 if (Rem->isAllOnesValue())
    [all...]
InstCombineCompares.cpp 125 return RHS->isAllOnesValue();
128 return RHS->isAllOnesValue();
157 } else if (RHS->isAllOnesValue()) {
    [all...]
InstCombineAddSub.cpp 974 if ((XorRHS->getValue() | LHSKnownZero).isAllOnesValue())
1046 if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
    [all...]
InstCombineCasts.cpp 521 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 230 else if (RHS.isAllOnesValue())
237 else if (RHS.isAllOnesValue()) {
387 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
230 if (RHSC->isAllOnesValue())
699 if (Cond->isAllOnesValue()) return V1;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 297 return C->isAllOnesValue();
SIISelLowering.cpp 406 && True->isAllOnesValue()
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 53 if (C->isAllOnesValue() && !DestTy->isX86_MMXTy())
559 if ((KnownOne1 | KnownZero0).isAllOnesValue()) {
563 if ((KnownOne0 | KnownZero1).isAllOnesValue()) {
570 if ((KnownZero | KnownOne).isAllOnesValue()) {
    [all...]
Lint.cpp 384 !cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
514 return KnownZero.isAllOnesValue();
BranchProbabilityInfo.cpp 401 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
ValueTracking.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.cpp 297 return C->isAllOnesValue();
SIISelLowering.cpp 406 && True->isAllOnesValue()
  /external/llvm/include/llvm/ADT/
APInt.h 340 bool isAllOnesValue() const {
350 bool isMaxValue() const { return isAllOnesValue(); }
    [all...]
  /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 661 if (umin.isAllOnesValue())
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 454 return C->isAllOnesValue();
  /external/llvm/include/llvm/Support/
PatternMatch.h 261 bool isValue(const APInt &C) { return C.isAllOnesValue(); }
732 cast<Constant>(RHS)->isAllOnesValue() &&
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 547 milliseconds

1 2 3