aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2024-06-18 20:57:13 +0100
committerJonathan Wakely <redi@gcc.gnu.org>2024-06-27 09:39:40 +0100
commitcfc9fa3bdddc1af59b7854937b99516067fd8c63 (patch)
tree6297592e2bd78f43b084ad4e2550063ff5a24c01
parent5c8b7fcc04b1ec412e11ae3d77f704c19a63ab07 (diff)
downloadgcc-cfc9fa3bdddc1af59b7854937b99516067fd8c63.zip
gcc-cfc9fa3bdddc1af59b7854937b99516067fd8c63.tar.gz
gcc-cfc9fa3bdddc1af59b7854937b99516067fd8c63.tar.bz2
libstdc++: Enable more debug assertions during constant evaluation [PR111250]
Some of our debug assertions expand to nothing unless _GLIBCXX_ASSERTIONS is defined, which means they are not checked during constant evaluation. By making them unconditionally expand to a __glibcxx_assert expression they will be checked during constant evaluation. This allows us to diagnose more instances of undefined behaviour at compile-time, such as accessing a vector past-the-end. libstdc++-v3/ChangeLog: PR libstdc++/111250 * include/debug/assertions.h (__glibcxx_requires_non_empty_range) (__glibcxx_requires_nonempty, __glibcxx_requires_subscript): Define to __glibcxx_assert expressions or to debug mode __glibcxx_check_xxx expressions. * testsuite/23_containers/array/element_access/constexpr_c++17.cc: Add checks for out-of-bounds accesses in constant expressions. * testsuite/23_containers/vector/element_access/constexpr.cc: Likewise.
-rw-r--r--libstdc++-v3/include/debug/assertions.h14
-rw-r--r--libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc44
-rw-r--r--libstdc++-v3/testsuite/23_containers/vector/element_access/constexpr.cc24
3 files changed, 72 insertions, 10 deletions
diff --git a/libstdc++-v3/include/debug/assertions.h b/libstdc++-v3/include/debug/assertions.h
index fff1ae8..20441e3 100644
--- a/libstdc++-v3/include/debug/assertions.h
+++ b/libstdc++-v3/include/debug/assertions.h
@@ -31,12 +31,7 @@
#include <bits/c++config.h>
-#ifndef _GLIBCXX_ASSERTIONS
-# define __glibcxx_requires_non_empty_range(_First,_Last)
-# define __glibcxx_requires_nonempty()
-# define __glibcxx_requires_subscript(_N)
-#else
-
+#ifndef _GLIBCXX_DEBUG
// Verify that [_First, _Last) forms a non-empty iterator range.
# define __glibcxx_requires_non_empty_range(_First,_Last) \
__glibcxx_assert(_First != _Last)
@@ -45,6 +40,13 @@
// Verify that the container is nonempty
# define __glibcxx_requires_nonempty() \
__glibcxx_assert(!this->empty())
+#else // Use the more verbose Debug Mode checks.
+# define __glibcxx_requires_non_empty_range(_First,_Last) \
+ __glibcxx_check_non_empty_range(_First,_Last)
+# define __glibcxx_requires_nonempty() \
+ __glibcxx_check_nonempty()
+# define __glibcxx_requires_subscript(_N) \
+ __glibcxx_check_subscript(_N)
#endif
#if defined _GLIBCXX_DEBUG && _GLIBCXX_HOSTED
diff --git a/libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc b/libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc
index a14ad48..19ab1cc 100644
--- a/libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc
+++ b/libstdc++-v3/testsuite/23_containers/array/element_access/constexpr_c++17.cc
@@ -66,3 +66,47 @@ constexpr bool test_zero()
}
static_assert( test_zero() );
+
+#ifdef __cpp_concepts
+template<typename T = int>
+ constexpr std::false_type
+ access_empty() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::array<T, 0>{}.at(0) != nullptr>::value)
+ constexpr std::true_type
+ access_empty() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::array<T, 0>{}[0] != nullptr>::value)
+ constexpr std::true_type
+ access_empty() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::array<T, 0>{}.front() != nullptr>::value)
+ constexpr std::true_type
+ access_empty() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::array<T, 0>{}.back() != nullptr>::value)
+ constexpr std::true_type
+ access_empty() { return {}; }
+
+static_assert( ! access_empty() );
+
+template<typename T = int>
+ constexpr std::false_type
+ access_past_the_end() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<std::array<T, 1>{}.at(0) != nullptr>::value)
+ constexpr std::true_type
+ access_past_the_end() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::array<T, 1>{}[1] != nullptr>::value)
+ constexpr std::true_type
+ access_past_the_end() { return {}; }
+
+static_assert( ! access_past_the_end() );
+#endif
diff --git a/libstdc++-v3/testsuite/23_containers/vector/element_access/constexpr.cc b/libstdc++-v3/testsuite/23_containers/vector/element_access/constexpr.cc
index 19c91d2..358ded4 100644
--- a/libstdc++-v3/testsuite/23_containers/vector/element_access/constexpr.cc
+++ b/libstdc++-v3/testsuite/23_containers/vector/element_access/constexpr.cc
@@ -85,23 +85,39 @@ template<typename T = int>
access_empty() { return {}; }
template<typename T = int>
- requires (std::bool_constant<(std::vector<T>().at(0), true)>::value)
+ requires (std::bool_constant<&std::vector<T>().at(0) != nullptr>::value)
constexpr std::true_type
access_empty() { return {}; }
template<typename T = int>
- requires (std::bool_constant<(std::vector<T>()[0], true)>::value)
+ requires (std::bool_constant<&std::vector<T>()[0] != nullptr>::value)
constexpr std::true_type
access_empty() { return {}; }
template<typename T = int>
- requires (std::bool_constant<(std::vector<T>().front(), true)>::value)
+ requires (std::bool_constant<&std::vector<T>().front() != nullptr>::value)
constexpr std::true_type
access_empty() { return {}; }
template<typename T = int>
- requires (std::bool_constant<(std::vector<T>().back(), true)>::value)
+ requires (std::bool_constant<&std::vector<T>().back() != nullptr>::value)
constexpr std::true_type
access_empty() { return {}; }
static_assert( ! access_empty() );
+
+template<typename T = int>
+ constexpr std::false_type
+ access_past_the_end() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::vector<T>(3).at(3) != nullptr>::value)
+ constexpr std::true_type
+ access_past_the_end() { return {}; }
+
+template<typename T = int>
+ requires (std::bool_constant<&std::vector<T>(3)[3] != nullptr>::value)
+ constexpr std::true_type
+ access_past_the_end() { return {}; }
+
+static_assert( ! access_past_the_end() );