From: Patrick Palka <ppalka@redhat.com>
To: Patrick Palka <ppalka@redhat.com>
Cc: gcc-patches@gcc.gnu.org, jason@redhat.com
Subject: Re: [PATCH] c++: use auto_timevar instead of timevar_push/pop
Date: Tue, 31 May 2022 13:47:02 -0400 (EDT) [thread overview]
Message-ID: <fb8bf9dc-d945-97a9-02ae-930987a77ec3@idea> (raw)
In-Reply-To: <20220531173457.334065-1-ppalka@redhat.com>
On Tue, 31 May 2022, Patrick Palka wrote:
> r12-5487-g9bf69a8558638c replaced uses of timevar_cond_push/pop with
> auto_cond_timevar and removed now unnecessary wrapper functions. This
> patch does the same for timevar_push/pop and auto_timevar.
>
> Bootstrapped and regtested on x86_64-pc-linux-gnu, does this look OK for
> trunk?
>
> gcc/cp/ChangeLog:
>
> * parser.cc:
> * pt.cc:
> Use auto_timevar instead of timevar_push/pop.
> Remove wrapper functions.
> ---
> gcc/cp/parser.cc | 31 ++++++++----------------
> gcc/cp/pt.cc | 61 +++++++++++-------------------------------------
> 2 files changed, 24 insertions(+), 68 deletions(-)
>
> diff --git a/gcc/cp/parser.cc b/gcc/cp/parser.cc
> index 21066421a02..3acfbd43c5b 100644
> --- a/gcc/cp/parser.cc
> +++ b/gcc/cp/parser.cc
> @@ -19106,7 +19106,7 @@ cp_parser_explicit_instantiation (cp_parser* parser)
> cp_decl_specifier_seq decl_specifiers;
> tree extension_specifier = NULL_TREE;
>
> - timevar_push (TV_TEMPLATE_INST);
> + auto_timevar time (TV_TEMPLATE_INST);
Er, I named the new variables 'time' to be consistent with the existing
uses of auto_timevar in constexpr/constraint/logic.cc, but on second
thought 'tv', as used by r12-5487-g9bf69a8558638c, seems better.
So consider the names changed to 'tv':
-- >8 --
Subject: [PATCH] c++: use auto_timevar instead of timevar_push/pop
r12-5487-g9bf69a8558638c replaced uses of timevar_cond_push/pop with
auto_cond_timevar and removed now unnecessary wrapper functions. This
patch does the same with timevar_push/pop and auto_timevar.
gcc/cp/ChangeLog:
* parser.cc:
* pt.cc:
Use auto_timevar instead of timevar_push/pop.
Remove wrapper functions.
---
gcc/cp/parser.cc | 37 +++++++++++------------------
gcc/cp/pt.cc | 61 +++++++++++-------------------------------------
2 files changed, 27 insertions(+), 71 deletions(-)
diff --git a/gcc/cp/parser.cc b/gcc/cp/parser.cc
index 21066421a02..5a52c32f38b 100644
--- a/gcc/cp/parser.cc
+++ b/gcc/cp/parser.cc
@@ -19106,7 +19106,7 @@ cp_parser_explicit_instantiation (cp_parser* parser)
cp_decl_specifier_seq decl_specifiers;
tree extension_specifier = NULL_TREE;
- timevar_push (TV_TEMPLATE_INST);
+ auto_timevar tv (TV_TEMPLATE_INST);
/* Look for an (optional) storage-class-specifier or
function-specifier. */
@@ -19207,8 +19207,6 @@ cp_parser_explicit_instantiation (cp_parser* parser)
cp_parser_consume_semicolon_at_end_of_statement (parser);
- timevar_pop (TV_TEMPLATE_INST);
-
cp_finalize_omp_declare_simd (parser, &odsd);
}
@@ -20966,7 +20964,8 @@ cp_parser_enum_specifier (cp_parser* parser)
elaborated-type-specifier. */
if (cp_lexer_next_token_is (parser->lexer, CPP_OPEN_BRACE))
{
- timevar_push (TV_PARSE_ENUM);
+ auto_timevar tv (TV_PARSE_ENUM);
+
if (nested_name_specifier
&& nested_name_specifier != error_mark_node)
{
@@ -21072,7 +21071,6 @@ cp_parser_enum_specifier (cp_parser* parser)
if (scoped_enum_p)
finish_scope ();
- timevar_pop (TV_PARSE_ENUM);
}
else
{
@@ -25927,9 +25925,11 @@ pop_injected_parms (void)
Returns the TREE_TYPE representing the class. */
-static tree
-cp_parser_class_specifier_1 (cp_parser* parser)
+tree
+cp_parser_class_specifier (cp_parser* parser)
{
+ auto_timevar tv (TV_PARSE_STRUCT);
+
tree type;
tree attributes = NULL_TREE;
bool nested_name_specifier_p;
@@ -26321,16 +26321,6 @@ cp_parser_class_specifier_1 (cp_parser* parser)
return type;
}
-static tree
-cp_parser_class_specifier (cp_parser* parser)
-{
- tree ret;
- timevar_push (TV_PARSE_STRUCT);
- ret = cp_parser_class_specifier_1 (parser);
- timevar_pop (TV_PARSE_STRUCT);
- return ret;
-}
-
/* Parse a class-head.
class-head:
@@ -31276,15 +31266,14 @@ cp_parser_function_definition_from_specifiers_and_declarator
}
else
{
- timevar_id_t tv;
+ timevar_id_t tv_id;
if (DECL_DECLARED_INLINE_P (current_function_decl))
- tv = TV_PARSE_INLINE;
+ tv_id = TV_PARSE_INLINE;
else
- tv = TV_PARSE_FUNC;
- timevar_push (tv);
+ tv_id = TV_PARSE_FUNC;
+ auto_timevar tv (tv_id);
fn = cp_parser_function_definition_after_declarator (parser,
/*inline_p=*/false);
- timevar_pop (tv);
}
return fn;
@@ -32276,7 +32265,8 @@ cp_parser_enclosed_template_argument_list (cp_parser* parser)
static void
cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
{
- timevar_push (TV_PARSE_INMETH);
+ auto_timevar tv (TV_PARSE_INMETH);
+
/* If this member is a template, get the underlying
FUNCTION_DECL. */
if (DECL_FUNCTION_TEMPLATE_P (member_function))
@@ -32346,7 +32336,6 @@ cp_parser_late_parsing_for_member (cp_parser* parser, tree member_function)
/* Restore the queue. */
pop_unparsed_function_queues (parser);
- timevar_pop (TV_PARSE_INMETH);
}
/* If DECL contains any default args, remember it on the unparsed
diff --git a/gcc/cp/pt.cc b/gcc/cp/pt.cc
index 759f119abc2..2f11ad64bfd 100644
--- a/gcc/cp/pt.cc
+++ b/gcc/cp/pt.cc
@@ -9813,10 +9813,12 @@ maybe_get_template_decl_from_type_decl (tree decl)
that we want to avoid. It also causes some problems with argument
coercion (see convert_nontype_argument for more information on this). */
-static tree
-lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
- int entering_scope, tsubst_flags_t complain)
+tree
+lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
+ int entering_scope, tsubst_flags_t complain)
{
+ auto_timevar tv (TV_TEMPLATE_INST);
+
tree templ = NULL_TREE, parmlist;
tree t;
spec_entry **slot;
@@ -10354,20 +10356,6 @@ lookup_template_class_1 (tree d1, tree arglist, tree in_decl, tree context,
}
}
-/* Wrapper for lookup_template_class_1. */
-
-tree
-lookup_template_class (tree d1, tree arglist, tree in_decl, tree context,
- int entering_scope, tsubst_flags_t complain)
-{
- tree ret;
- timevar_push (TV_TEMPLATE_INST);
- ret = lookup_template_class_1 (d1, arglist, in_decl, context,
- entering_scope, complain);
- timevar_pop (TV_TEMPLATE_INST);
- return ret;
-}
-
/* Return a TEMPLATE_ID_EXPR for the given variable template and ARGLIST. */
tree
@@ -11881,9 +11869,11 @@ perform_instantiation_time_access_checks (tree tmpl, tree targs)
}
}
-static tree
-instantiate_class_template_1 (tree type)
+tree
+instantiate_class_template (tree type)
{
+ auto_timevar tv (TV_TEMPLATE_INST);
+
tree templ, args, pattern, t, member;
tree typedecl;
tree pbinfo;
@@ -12405,18 +12395,6 @@ instantiate_class_template_1 (tree type)
return type;
}
-/* Wrapper for instantiate_class_template_1. */
-
-tree
-instantiate_class_template (tree type)
-{
- tree ret;
- timevar_push (TV_TEMPLATE_INST);
- ret = instantiate_class_template_1 (type);
- timevar_pop (TV_TEMPLATE_INST);
- return ret;
-}
-
tree
tsubst_template_arg (tree t, tree args, tsubst_flags_t complain, tree in_decl)
{
@@ -21572,9 +21550,11 @@ recheck_decl_substitution (tree d, tree tmpl, tree args)
/* Instantiate the indicated variable, function, or alias template TMPL with
the template arguments in TARG_PTR. */
-static tree
-instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
+tree
+instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
{
+ auto_timevar tv (TV_TEMPLATE_INST);
+
tree targ_ptr = orig_args;
tree fndecl;
tree gen_tmpl;
@@ -21746,18 +21726,6 @@ instantiate_template_1 (tree tmpl, tree orig_args, tsubst_flags_t complain)
return fndecl;
}
-/* Wrapper for instantiate_template_1. */
-
-tree
-instantiate_template (tree tmpl, tree orig_args, tsubst_flags_t complain)
-{
- tree ret;
- timevar_push (TV_TEMPLATE_INST);
- ret = instantiate_template_1 (tmpl, orig_args, complain);
- timevar_pop (TV_TEMPLATE_INST);
- return ret;
-}
-
/* Instantiate the alias template TMPL with ARGS. Also push a template
instantiation level, which instantiate_template doesn't do because
functions and variables have sufficient context established by the
@@ -26595,7 +26563,7 @@ instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
if (! push_tinst_level (d))
return d;
- timevar_push (TV_TEMPLATE_INST);
+ auto_timevar tv (TV_TEMPLATE_INST);
/* Set TD to the template whose DECL_TEMPLATE_RESULT is the pattern
for the instantiation. */
@@ -26761,7 +26729,6 @@ instantiate_decl (tree d, bool defer_ok, bool expl_inst_class_mem_p)
}
pop_deferring_access_checks ();
- timevar_pop (TV_TEMPLATE_INST);
pop_tinst_level ();
input_location = saved_loc;
cp_unevaluated_operand = saved_unevaluated_operand;
--
2.36.1.203.g1bcf4f6271
next prev parent reply other threads:[~2022-05-31 17:47 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-31 17:34 Patrick Palka
2022-05-31 17:47 ` Patrick Palka [this message]
2022-05-31 19:06 ` Jason Merrill
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=fb8bf9dc-d945-97a9-02ae-930987a77ec3@idea \
--to=ppalka@redhat.com \
--cc=gcc-patches@gcc.gnu.org \
--cc=jason@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).