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

References

include/llvm/IR/Function.h
  274     explicit operator bool() { return hasValue(); }
  275     bool operator!() const { return !hasValue(); }
  309     return getEntryCount(IncludeSynthetic).hasValue();
lib/IR/Function.cpp
 1531   assert(Count.hasValue());
 1534   assert(!PrevCount.hasValue() || PrevCount.getType() == Count.getType());
lib/Transforms/Utils/InlineFunction.cpp
 1484   if (!CalleeEntryCount.hasValue() || CalleeEntryCount.isSynthetic() ||
 1498   if (!CalleeCount.hasValue())
unittests/IR/MetadataTest.cpp
 2748   EXPECT_FALSE(F->getEntryCount().hasValue());
 2751   EXPECT_TRUE(Count.hasValue());
 2757   EXPECT_FALSE(F->getEntryCount().hasValue());
 2760   EXPECT_TRUE(Count.hasValue());