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

1 2

  /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 178 return Val.isAllOnesValue();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 204 return C1I->isOne() || C1I->isAllOnesValue() ||
205 C2I->isOne() || C2I->isAllOnesValue();
468 if (Pred == ICmpInst::ICMP_SGT && Cmp->isAllOnesValue()) {
480 if (C2->isAllOnesValue())
711 if (FalseValC->isZero() && TrueValC->isAllOnesValue())
721 if (TrueValC->isZero() && FalseValC->isAllOnesValue()) {
    [all...]
InstCombineSimplifyDemanded.cpp 589 if ((I0 + 1).isPowerOf2() && (I0 | KnownZero).isAllOnesValue()) {
719 if (Rem->isAllOnesValue())
    [all...]
InstCombineAddSub.cpp 938 if ((XorRHS->getValue() | LHSKnownZero).isAllOnesValue())
1005 if ((LHSKnownZero|RHSKnownZero).isAllOnesValue())
    [all...]
InstCombineCasts.cpp 521 (ICI->getPredicate() == ICmpInst::ICMP_SGT &&Op1CV.isAllOnesValue())) {
    [all...]
InstCombineAndOrXor.cpp 515 if (C->isAllOnesValue()) {
    [all...]
InstCombineCompares.cpp 125 return RHS->isAllOnesValue();
128 return RHS->isAllOnesValue();
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 257 else if (RHS.isAllOnesValue())
264 else if (RHS.isAllOnesValue()) {
414 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 46 if (CV->isAllOnesValue()) return Constant::getAllOnesValue(DstTy);
229 if (RHSC->isAllOnesValue())
698 if (Cond->isAllOnesValue()) return V1;
    [all...]
Constants.cpp 91 bool Constant::isAllOnesValue() const {
98 return CFP->getValueAPF().bitcastToAPInt().isAllOnesValue();
103 return Splat->isAllOnesValue();
108 return Splat->isAllOnesValue();
    [all...]
  /external/llvm/lib/Analysis/
BranchProbabilityInfo.cpp 326 } else if (CV->isAllOnesValue() && CI->getPredicate() == CmpInst::ICMP_SGT) {
ConstantFolding.cpp 52 if (C->isAllOnesValue() && !DestTy->isX86_MMXTy())
558 if ((KnownOne1 | KnownZero0).isAllOnesValue()) {
562 if ((KnownOne0 | KnownZero1).isAllOnesValue()) {
569 if ((KnownZero | KnownOne).isAllOnesValue()) {
    [all...]
Lint.cpp 384 !cast<ConstantInt>(UnderlyingObject)->isAllOnesValue(),
514 return KnownZero.isAllOnesValue();
ValueTracking.cpp     [all...]
ScalarEvolution.cpp 287 bool SCEV::isAllOnesValue() const {
289 return SC->getValue()->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 660 if (umin.isAllOnesValue())
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 355 return C->isAllOnesValue();
SIISelLowering.cpp 385 && True->isAllOnesValue()
  /external/llvm/include/llvm/Support/
PatternMatch.h 261 bool isValue(const APInt &C) { return C.isAllOnesValue(); }
719 cast<Constant>(RHS)->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/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 428 (SubInst->getOpcode() == Instruction::Add && Dec->isAllOnesValue()))) {
    [all...]

Completed in 984 milliseconds

1 2