public inbox for libstdc++-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/c++-contracts] c++: comment tweaks
@ 2022-11-01 11:43 Jason Merrill
0 siblings, 0 replies; only message in thread
From: Jason Merrill @ 2022-11-01 11:43 UTC (permalink / raw)
To: gcc-cvs, libstdc++-cvs
https://gcc.gnu.org/g:3a3e900ba634451f95443077a890f70003ec1fc6
commit 3a3e900ba634451f95443077a890f70003ec1fc6
Author: Jason Merrill <jason@redhat.com>
Date: Tue Oct 25 15:55:20 2022 -0400
c++: comment tweaks
Diff:
---
gcc/cp/contracts.cc | 18 +++++++++++-------
libstdc++-v3/include/experimental/contract | 2 +-
2 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/gcc/cp/contracts.cc b/gcc/cp/contracts.cc
index 0a1626d6b68..2fa7023f76b 100644
--- a/gcc/cp/contracts.cc
+++ b/gcc/cp/contracts.cc
@@ -1,5 +1,5 @@
/* Definitions for C++ contract levels
- Copyright (C) 2020 Free Software Foundation, Inc.
+ Copyright (C) 2020-2022 Free Software Foundation, Inc.
Contributed by Jeff Chapman II (jchapman@lock3software.com)
This file is part of GCC.
@@ -131,20 +131,24 @@ along with GCC; see the file COPYING3. If not see
With the idea being that multiple return statements could collapse the
function epilogue after inlining the pre/post functions. clang is able
to collapse common function epilogues, while gcc needs -O3 -Os combined.
- We're already doing this "manually" for cdtors due to the way they're already
- implemented, forcing DECL_CDTOR_NEEDS_LABLED_EXIT_P to be true when the
- cdtor has active contracts.
Directly laying the pre contracts down in the function body doesn't have
many issues. The post contracts may need to be repeated multiple times, once
- for each return, or a goto epilogue would need generated similarly to cdtors.
+ for each return, or a goto epilogue would need to be generated.
For this initial implementation, generating function calls and letting
later optimizations decide whether to inline and duplicate the actual
checks or whether to collapse the shared epilogue was chosen.
+ For cdtors a post contract is implemented using a CLEANUP_STMT.
+
FIXME the compiler already handles sharing cleanup code on multiple exit
- paths properly, this outlining isn't necessary if we represent the
- postcondition as a cleanup (like I already did for dtors). */
+ paths properly, so this outlining seems unnecessary if we represent the
+ postcondition as a cleanup for all functions.
+
+ More helpful for optimization might be to make the contracts a wrapper
+ function (for non-variadic functions), that could be inlined into a
+ caller while preserving the call to the actual function? Either that or
+ turn a never-continue post contract into an assume in the caller. */
#include "config.h"
#include "system.h"
diff --git a/libstdc++-v3/include/experimental/contract b/libstdc++-v3/include/experimental/contract
index a52c2a485cf..7a5f743665b 100644
--- a/libstdc++-v3/include/experimental/contract
+++ b/libstdc++-v3/include/experimental/contract
@@ -1,6 +1,6 @@
// Contracts support header for -*- C++ -*-
-// Copyright (C) 1995-2018 Free Software Foundation, Inc.
+// Copyright (C) 1995-2022 Free Software Foundation, Inc.
//
// This file is part of GCC.
//
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-11-01 11:43 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-01 11:43 [gcc/devel/c++-contracts] c++: comment tweaks Jason Merrill
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).