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

References

include/llvm/IR/ConstantRange.h
  450   OverflowResult unsignedAddMayOverflow(const ConstantRange &Other) const;
  453   OverflowResult signedAddMayOverflow(const ConstantRange &Other) const;
  456   OverflowResult unsignedSubMayOverflow(const ConstantRange &Other) const;
  459   OverflowResult signedSubMayOverflow(const ConstantRange &Other) const;
  462   OverflowResult unsignedMulMayOverflow(const ConstantRange &Other) const;
lib/Analysis/ValueTracking.cpp
 3983 static OverflowResult mapOverflowResult(ConstantRange::OverflowResult OR) {
 3985     case ConstantRange::OverflowResult::MayOverflow:
 3987     case ConstantRange::OverflowResult::AlwaysOverflowsLow:
 3989     case ConstantRange::OverflowResult::AlwaysOverflowsHigh:
 3991     case ConstantRange::OverflowResult::NeverOverflows:
lib/IR/ConstantRange.cpp
 1367 ConstantRange::OverflowResult ConstantRange::unsignedAddMayOverflow(
 1370     return OverflowResult::MayOverflow;
 1377     return OverflowResult::AlwaysOverflowsHigh;
 1379     return OverflowResult::MayOverflow;
 1380   return OverflowResult::NeverOverflows;
 1383 ConstantRange::OverflowResult ConstantRange::signedAddMayOverflow(
 1386     return OverflowResult::MayOverflow;
 1398     return OverflowResult::AlwaysOverflowsHigh;
 1401     return OverflowResult::AlwaysOverflowsLow;
 1405     return OverflowResult::MayOverflow;
 1408     return OverflowResult::MayOverflow;
 1410   return OverflowResult::NeverOverflows;
 1413 ConstantRange::OverflowResult ConstantRange::unsignedSubMayOverflow(
 1416     return OverflowResult::MayOverflow;
 1423     return OverflowResult::AlwaysOverflowsLow;
 1425     return OverflowResult::MayOverflow;
 1426   return OverflowResult::NeverOverflows;
 1429 ConstantRange::OverflowResult ConstantRange::signedSubMayOverflow(
 1432     return OverflowResult::MayOverflow;
 1444     return OverflowResult::AlwaysOverflowsHigh;
 1447     return OverflowResult::AlwaysOverflowsLow;
 1451     return OverflowResult::MayOverflow;
 1454     return OverflowResult::MayOverflow;
 1456   return OverflowResult::NeverOverflows;
 1459 ConstantRange::OverflowResult ConstantRange::unsignedMulMayOverflow(
 1462     return OverflowResult::MayOverflow;
 1470     return OverflowResult::AlwaysOverflowsHigh;
 1474     return OverflowResult::MayOverflow;
 1476   return OverflowResult::NeverOverflows;
unittests/IR/ConstantRangeTest.cpp
 1972     ConstantRange::OverflowResult OR = MayOverflowFn(CR1, CR2);
 1974     case ConstantRange::OverflowResult::AlwaysOverflowsLow:
 1979     case ConstantRange::OverflowResult::AlwaysOverflowsHigh:
 1984     case ConstantRange::OverflowResult::NeverOverflows:
 1989     case ConstantRange::OverflowResult::MayOverflow:
utils/unittest/googletest/include/gtest/gtest-printers.h
  140   static void PrintValue(const T& value, ::std::ostream* os) {
  205     ::std::basic_ostream<Char, CharTraits>& os, const T& x) {
  206   TypeWithoutFormatter<T,
  207       (internal::IsAProtocolMessage<T>::value ? kProtobuf :
  208        internal::ImplicitlyConvertible<const T&, internal::BiggestInt>::value ?
  223 void DefaultPrintNonContainerTo(const T& value, ::std::ostream* os) {
  276   static ::std::string Format(const ToPrint& value) {
  351     const T1& value, const T2& /* other_operand */) {
  351     const T1& value, const T2& /* other_operand */) {
  352   return FormatForComparison<T1, T2>::Format(value);
  352   return FormatForComparison<T1, T2>::Format(value);
  366 void UniversalPrint(const T& value, ::std::ostream* os);
  373                     const C& container, ::std::ostream* os) {
  439                     const T& value, ::std::ostream* os) {
  455 void PrintTo(const T& value, ::std::ostream* os) {
  478   DefaultPrintTo(IsContainerTest<T>(0), is_pointer<T>(), value, os);
  699   static void Print(const T& value, ::std::ostream* os) {
  784   static void Print(const T& value, ::std::ostream* os) {
  856   typedef T T1;
  983   internal::UniversalTersePrinter<T>::Print(value, &ss);
utils/unittest/googletest/include/gtest/gtest.h
 1377                                    const T1& lhs, const T2& rhs) {
 1377                                    const T1& lhs, const T2& rhs) {
 1389                             const T1& lhs,
 1390                             const T2& rhs) {
 1419                                  const T1& lhs,
 1420                                  const T2& rhs) {
utils/unittest/googletest/include/gtest/internal/custom/raw-ostream.h
   29   static const T& printable(const T& V) { return V; }
   29   static const T& printable(const T& V) { return V; }
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   35 auto printable(const T &V) -> decltype(StreamSwitch<T>::printable(V)) {
   37   return StreamSwitch<T>::printable(V);
utils/unittest/googletest/include/gtest/internal/gtest-internal.h
   94 ::std::string PrintToString(const T& value);