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

References

include/llvm/IR/Constants.h
  219       return Val.isMaxSignedValue();
include/llvm/IR/PatternMatch.h
  341   bool isValue(const APInt &C) { return C.isMaxSignedValue(); }
lib/Analysis/InstructionSimplify.cpp
  721     if (Known.Zero.isMaxSignedValue()) {
lib/Analysis/ScalarEvolution.cpp
 9007         assert(!RA.isMaxSignedValue() && "Should have been caught earlier!");
 9028     if (!getSignedRangeMax(RHS).isMaxSignedValue()) {
 9046     } else if (!getSignedRangeMax(LHS).isMaxSignedValue()) {
lib/Analysis/ValueTracking.cpp
 4713         C2->isMaxSignedValue())
lib/IR/ConstantRange.cpp
  116     if (SMin.isMaxSignedValue())
lib/Target/X86/X86ISelLowering.cpp
20788     else if (ConstValue.isMaxSignedValue())
lib/Transforms/InstCombine/InstCombineCompares.cpp
 1602     if (!Cmp.isEquality() && XorC->isMaxSignedValue()) {
 2207       if (!C.isMaxSignedValue() && !(C + 1).shl(ShAmtVal).isMinSignedValue() &&
 3947         if (BO0->getOpcode() == Instruction::Xor && C->isMaxSignedValue()) {
 5463     if (Pred == ICmpInst::ICMP_UGT && C->isMaxSignedValue()) {
lib/Transforms/InstCombine/InstCombineInternal.h
  137     return RHS.isMaxSignedValue();
  149     return RHS.isMaxSignedValue();
tools/clang/lib/Sema/SemaChecking.cpp
11181       if (!IntegerValue.isMaxSignedValue() &&
tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  204     if (to.isMaxSignedValue() && !newRanges.isEmpty() &&
unittests/ADT/APIntTest.cpp
  240   EXPECT_TRUE(zero.isMaxSignedValue());
  241   EXPECT_FALSE(one.isMaxSignedValue());