From 6fc456c36b108e25252839e0c73de13c2ccd8ba6 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 1 May 2015 12:02:18 +0100 Subject: [PATCH] memory (pointer_safety, [...]): Define. * include/std/memory (pointer_safety, declare_reachable, undeclare_reachable, declare_no_pointers, undeclare_no_pointers, get_pointer_safety): Define. * testsuite/20_util/pointer_safety/1.cc: New. From-SVN: r222674 --- libstdc++-v3/ChangeLog | 7 +++ libstdc++-v3/include/std/memory | 20 +++++++++ .../testsuite/20_util/pointer_safety/1.cc | 43 +++++++++++++++++++ 3 files changed, 70 insertions(+) create mode 100644 libstdc++-v3/testsuite/20_util/pointer_safety/1.cc diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 34e731a347c..f777328c940 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2015-05-01 Jonathan Wakely + + * include/std/memory (pointer_safety, declare_reachable, + undeclare_reachable, declare_no_pointers, undeclare_no_pointers, + get_pointer_safety): Define. + * testsuite/20_util/pointer_safety/1.cc: New. + 2015-04-30 Jonathan Wakely Implement N4100 File System TS diff --git a/libstdc++-v3/include/std/memory b/libstdc++-v3/include/std/memory index 4257394a0eb..3ed53b83e9e 100644 --- a/libstdc++-v3/include/std/memory +++ b/libstdc++-v3/include/std/memory @@ -126,6 +126,26 @@ align(size_t __align, size_t __size, void*& __ptr, size_t& __space) noexcept } } +// 20.7.4 [util.dynamic.safety], pointer safety + +enum class pointer_safety { relaxed, preferred, strict }; + +inline void +declare_reachable(void*) { } + +template + inline T* + undeclare_reachable(T* __p) { return __p; } + +inline void +declare_no_pointers(char*, size_t) { } + +inline void +undeclare_no_pointers(char*, size_t) { } + +inline pointer_safety +get_pointer_safety() noexcept { return pointer_safety::relaxed; } + _GLIBCXX_END_NAMESPACE_VERSION } // namespace #endif // _GLIBCXX_USE_C99_STDINT_TR1 diff --git a/libstdc++-v3/testsuite/20_util/pointer_safety/1.cc b/libstdc++-v3/testsuite/20_util/pointer_safety/1.cc new file mode 100644 index 00000000000..85793ffceb4 --- /dev/null +++ b/libstdc++-v3/testsuite/20_util/pointer_safety/1.cc @@ -0,0 +1,43 @@ +// Copyright (C) 2015 Free Software Foundation, Inc. +// +// This file is part of the GNU ISO C++ Library. This library is free +// software; you can redistribute it and/or modify it under the +// terms of the GNU General Public License as published by the +// Free Software Foundation; either version 3, or (at your option) +// any later version. + +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. + +// You should have received a copy of the GNU General Public License along +// with this library; see the file COPYING3. If not see +// . + +// { dg-options "-std=gnu++11" } + +#include +#include + +void +test01() +{ + char buf[8]; + + std::declare_reachable(buf); + char* p = std::undeclare_reachable(buf); + VERIFY( p == buf ); + + std::declare_no_pointers(p, sizeof(buf)); + std::undeclare_no_pointers(p, sizeof(buf)); + + std::pointer_safety ps = std::get_pointer_safety(); + VERIFY( ps == std::pointer_safety::relaxed ); +} + +int +main() +{ + test01(); +}