reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/InstructionSimplify.cpp
 1631   if (C0->isStrictlyPositive()) {
 1704   if (C0->isStrictlyPositive()) {
 2793       if (RHSC->getValue().isStrictlyPositive()) {
lib/Analysis/LoopAccessAnalysis.cpp
 1544   assert(Val.isStrictlyPositive() && "Expect a positive value");
lib/Analysis/ScalarEvolution.cpp
 7597     return ShiftAmt->getValue().isStrictlyPositive();
 9096   return getSignedRangeMin(S).isStrictlyPositive();
 9104   return !getSignedRangeMax(S).isStrictlyPositive();
 9387         !C.isStrictlyPositive())
 9397         C.isStrictlyPositive())
lib/Analysis/ValueTracking.cpp
  258     return CI->getValue().isStrictlyPositive();
 2408         if (!Denominator->isStrictlyPositive())
 2428         if (!Denominator->isStrictlyPositive())
lib/CodeGen/SelectionDAG/TargetLowering.cpp
 4671     } else if (Divisor.isStrictlyPositive() && magics.m.isNegative()) {
 4674     } else if (Divisor.isNegative() && magics.m.isStrictlyPositive()) {
lib/CodeGen/SwitchLoweringUtils.cpp
  400   if (Low.isStrictlyPositive() && High.slt(BitWidth)) {
lib/IR/ConstantRange.cpp
  252         SMax.isStrictlyPositive() ? SignedMinVal - SMax : SignedMinVal);
  262         SMax.isStrictlyPositive() ? SignedMinVal + SMax : SignedMinVal,
  356   return !isUpperSignWrapped() && !Upper.isStrictlyPositive();
 1343     if (Upper.isStrictlyPositive() || !Lower.isStrictlyPositive())
 1343     if (Upper.isStrictlyPositive() || !Lower.isStrictlyPositive())
lib/Support/APInt.cpp
 2913     assert(A.isStrictlyPositive());
 2928     if (C.isStrictlyPositive())
lib/Transforms/InstCombine/InstCombineCompares.cpp
 2393   } else if (C2->isStrictlyPositive()) { // Divisor is > 0.
 2398     } else if (C.isStrictlyPositive()) {   // (X / pos) op pos
 2423     } else if (C.isStrictlyPositive()) {   // (X / neg) op pos
lib/Transforms/Scalar/LoopStrengthReduce.cpp
 2162     if (!C->getValue().isStrictlyPositive()) continue;
tools/clang/lib/Sema/SemaChecking.cpp
13280     if (!size.isStrictlyPositive())
tools/clang/lib/Sema/SemaDeclAttr.cpp
  700         if (!ArgValue.isStrictlyPositive() || ParamIdxFromOne > NumParams) {