HomeSort by relevance Sort by last modified time
    Searched refs:isAllOnesValue (Results 1 - 25 of 58) 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;
PatternMatch.h 261 bool isValue(const APInt &C) { return C.isAllOnesValue(); }
822 cast<Constant>(RHS)->isAllOnesValue() &&
    [all...]
Constants.h 177 return Val.isAllOnesValue();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 229 return C1I->isOne() || C1I->isAllOnesValue() ||
230 C2I->isOne() || C2I->isAllOnesValue();
582 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
594 if (C2->isAllOnesValue())
    [all...]
InstCombineSimplifyDemanded.cpp 590 if ((I0 + 1).isPowerOf2() && (I0 | KnownZero).isAllOnesValue()) {
720 if (Rem->isAllOnesValue())
    [all...]
InstCombineCompares.cpp 118 return RHS->isAllOnesValue();
121 return RHS->isAllOnesValue();
150 } else if (RHS->isAllOnesValue()) {
    [all...]
InstCombineAndOrXor.cpp 524 if (!C->isAllOnesValue())
    [all...]
InstCombineAddSub.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 256 else if (RHS.isAllOnesValue())
263 else if (RHS.isAllOnesValue()) {
413 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 384 !cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
517 return KnownZero.isAllOnesValue();
538 if (KnownZero.isAllOnesValue())
ConstantFolding.cpp 58 if (C->isAllOnesValue() && !DestTy->isX86_MMXTy())
631 if ((KnownOne1 | KnownZero0).isAllOnesValue()) {
635 if ((KnownOne0 | KnownZero1).isAllOnesValue()) {
642 if ((KnownZero | KnownOne).isAllOnesValue()) {
    [all...]
BranchProbabilityInfo.cpp 406 } else if (CV->isAllOnesValue()) {
ValueTracking.cpp     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
230 if (RHSC->isAllOnesValue())
704 if (Cond->isAllOnesValue()) return V1;
    [all...]
ConstantRange.cpp 663 if (umin.isAllOnesValue())
  /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/Transforms/Scalar/
Reassociate.cpp     [all...]
SeparateConstOffsetFromGEP.cpp 595 return (LHSKnownZero | RHSKnownZero).isAllOnesValue();
    [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 338 bool isAllOnesValue() const {
348 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/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 1535 milliseconds

1 2 3