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

References

include/llvm/Analysis/MemoryLocation.h
  122     return upperBound(std::max(getValue(), Other.getValue()));
  122     return upperBound(std::max(getValue(), Other.getValue()));
  138   bool isZero() const { return hasValue() && getValue() == 0; }
lib/Analysis/BasicAliasAnalysis.cpp
  252     DerefBytes = std::max(DerefBytes, LocSize.getValue());
 1106   const uint64_t V1Size = MaybeV1Size.getValue();
 1107   const uint64_t V2Size = MaybeV2Size.getValue();
 1278   const uint64_t ObjectAccessSize = MaybeObjectAccessSize.getValue();
 1445         if (GEP1BaseOffset.ult(V2Size.getValue()))
 1460         if ((-GEP1BaseOffset).ult(V1Size.getValue()))
 1510         V2Size != LocationSize::unknown() && ModOffset.uge(V2Size.getValue()) &&
 1511         (Modulo - ModOffset).uge(V1Size.getValue()))
 1519         GEP1BaseOffset.uge(V2Size.getValue()))
 1889         (isObjectSize(O1, V1Size.getValue(), DL, TLI, NullIsValidLocation) ||
 1890          isObjectSize(O2, V2Size.getValue(), DL, TLI, NullIsValidLocation))) {
 1985   const uint64_t V1Size = MaybeV1Size.getValue();
 1986   const uint64_t V2Size = MaybeV2Size.getValue();
lib/Analysis/CFLAndersAliasAnalysis.cpp
  565       const uint64_t LHSSize = MaybeLHSSize.getValue();
  566       const uint64_t RHSSize = MaybeRHSSize.getValue();
lib/Analysis/MemoryDependenceAnalysis.cpp
 1125             CacheInfo->Size.getValue() < Loc.Size.getValue();
 1125             CacheInfo->Size.getValue() < Loc.Size.getValue();
lib/Analysis/MemoryLocation.cpp
   29     OS << "precise(" << getValue() << ')';
   31     OS << "upperBound(" << getValue() << ')';
lib/Analysis/ScalarEvolutionAliasAnalysis.cpp
   46                                  ? LocA.Size.getValue()
   49                                  ? LocB.Size.getValue()
lib/Transforms/Scalar/DeadStoreElimination.cpp
  356   const uint64_t LaterSize = Later.Size.getValue();
  357   const uint64_t EarlierSize = Earlier.Size.getValue();
 1013     int64_t EarlierSize = int64_t(Loc.Size.getValue());
 1204           int64_t EarlierSize = DepLoc.Size.getValue();
 1205           int64_t LaterSize = Loc.Size.getValue();