public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Biener <rguenther@suse.de>
To: Qing Zhao <qing.zhao@oracle.com>
Cc: kees Cook <keescook@chromium.org>,
	Jakub Jelinek <jakub@redhat.com>,
	 Richard Sandiford <richard.sandiford@arm.com>,
	 Nick Alcock via Gcc-patches <gcc-patches@gcc.gnu.org>
Subject: Re: [patch][version 6] add -ftrivial-auto-var-init and variable attribute "uninitialized" to gcc
Date: Wed, 18 Aug 2021 09:19:35 +0200 (CEST)	[thread overview]
Message-ID: <nycvar.YFH.7.76.2108180915590.11781@zhemvz.fhfr.qr> (raw)
In-Reply-To: <7BF55F94-3C5C-416B-A5D2-8D1EFD1AC89B@oracle.com>

On Tue, 17 Aug 2021, Qing Zhao wrote:

> 
> 
> > On Aug 17, 2021, at 10:04 AM, Qing Zhao via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
> > 
> > 
> > 
> >> On Aug 16, 2021, at 11:48 AM, Qing Zhao via Gcc-patches <gcc-patches@gcc.gnu.org> wrote:
> >> 
> >>>> From the above IR file after “FRE”, we can see that the major issue with this IR is:
> >>>> 
> >>>> The address taken auto variable “alt_reloc” has been completely replaced by the temporary variable “_1” in all
> >>>> the uses of the original “alt_reloc”. 
> >>> 
> >>> Well, this can happen with regular code as well, there's no need for
> >>> .DEFERRED_INIT.  This is the usual problem with reporting uninitialized
> >>> uses late.
> >>> 
> >>> IMHO this shouldn't be a blocker.  The goal of zero "regressions" wrt
> >>> -Wuninitialized isn't really achievable.
> >> 
> >> Okay. Sounds reasonable to me too.
> >> 
> >>> 
> >>>> The major problem with such IR is,  during uninitialized analysis phase, the original use of “alt_reloc” disappeared completely.
> >>>> So, the warning cannot be reported.
> >>>> 
> >>>> 
> >>>> My questions:
> >>>> 
> >>>> 1. Is it possible to get the original “alt_reloc” through the temporary variable “_1” with some available information recorded in the IR?
> >>>> 2. If not, then we have to record the relationship between “alt_reloc” and “_1” when the original “alt_reloc” is replaced by “_1” and get such relationship during
> >>>>  Uninitialized analysis phase.  Is this doable?
> >>> 
> >>> Well, you could add a fake argument to .DEFERRED_INIT for the purpose of
> >>> diagnostics.  The difficulty is to avoid tracking it as actual use so
> >>> you could for example pass a string with the declarations name though
> >>> this wouldn't give the association with the actual decl.
> >> Good suggestion, I can try this a little bit. 
> > 
> > I tried this yesterday, added the 4th argument to .DEFERRED_INIT as:
> > 
> >    1st argument: SIZE of the DECL;
> >    2nd argument: INIT_TYPE;
> >    3rd argument: IS_VLA, 0 NO, 1 YES;
> > +   4th argument: The NAME for the DECL;
> > 
> > -   as LHS = DEFERRED_INIT (SIZE of the DECL, INIT_TYPE, IS_VLA)
> > +   as LHS = DEFERRED_INIT (SIZE of the DECL, INIT_TYPE, IS_VLA, NAME)
> > 
> > +  tree name_node
> > +    = build_string_literal (IDENTIFIER_LENGTH (DECL_NAME (decl)),
> > +                           IDENTIFIER_POINTER (DECL_NAME (decl)));
> > 
> >   tree call = build_call_expr_internal_loc (UNKNOWN_LOCATION, IFN_DEFERRED_INIT,
> > -                                           TREE_TYPE (decl), 3,
> > +                                           TREE_TYPE (decl), 4,
> >                                            decl_size, init_type_node,
> > -                                           is_vla_node);
> > +                                           is_vla_node, name_node);
> > 
> > 
> > And got the following IR in .uninit1 dump:
> > 
> > 
> > ….
> > 
> >  _1 = .DEFERRED_INIT (4, 2, 0, &"alt_reloc"[0]);
> >  if (_1 != 0)
> > ….
> > 
> > 
> > My questions:
> > 
> > 1. Is “build_string_literal” the correct utility routine to use for this new argument? 
> > 2. Will Such string literal nodes have potential other impact?
> 
> I tried to get the 4th argument from the call to .DEFERED_INIT during uninitialized variable analysis in tree-ssa-uninit.c:
> 
> @@ -197,18 +197,25 @@ warn_uninit (enum opt_code wc, tree t, tree expr, tree var,
>       the COMPLEX_EXPRs real part in that case.  See PR71581.  */
>    if (expr == NULL_TREE
>        && var == NULL_TREE
> -      && SSA_NAME_VAR (t) == NULL_TREE
> -      && is_gimple_assign (SSA_NAME_DEF_STMT (t))
> -      && gimple_assign_rhs_code (SSA_NAME_DEF_STMT (t)) == COMPLEX_EXPR)
> -    {
> -      tree v = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (t));
> -      if (TREE_CODE (v) == SSA_NAME
> -         && has_undefined_value_p (v)
> -         && zerop (gimple_assign_rhs2 (SSA_NAME_DEF_STMT (t))))
> +      && SSA_NAME_VAR (t) == NULL_TREE)
> +    {
> +      if (is_gimple_assign (SSA_NAME_DEF_STMT (t))
> +         && (gimple_assign_rhs_code (SSA_NAME_DEF_STMT (t)) == COMPLEX_EXPR))
>         {
> -         expr = SSA_NAME_VAR (v);
> -         var = expr;
> +         tree v = gimple_assign_rhs1 (SSA_NAME_DEF_STMT (t));
> +         if (TREE_CODE (v) == SSA_NAME
> +             && has_undefined_value_p (v)
> +             && zerop (gimple_assign_rhs2 (SSA_NAME_DEF_STMT (t))))
> +           {
> +             expr = SSA_NAME_VAR (v);
> +             var = expr;
> +           }
>         }
> +      else if (gimple_call_internal_p (SSA_NAME_DEF_STMT (t), IFN_DEFERRED_INIT))
> +      {
> +       expr = gimple_call_arg (SSA_NAME_DEF_STMT (t), 3);
> +       var = expr;
> +      }
>      }
> 
> However, this 4th argument is not a regular variable, it’s just an ADDR_EXPR that includes the constant string for the name of 
> the deleted variable. 
> If we’d like to report the warning based on this ADDR_EXPR, a complete new code to report the warnings other than the current one that based on 
> “Variables” need to be added, this might make the code very ugly. 
>
> My questions:
> 
> 1. Is there better way to do this?

Adding a variable as extra argument won't work, so no, I don't see a nice
way of carrying the extra information.  Btw, if you make sure to set
the location of the .DEFERRED_INIT call to the DECL_SOURCE_LOCATION
of the decl we initialize we should be able to diagnose sth like

warning: variable is used uninitialized
note: variable declared here

and point to the correct declartion point which should reveal the
variable name (to the user, not to the compiler).

> 1. As you mentioned before, it’s very unrealistic to meet the goal of “zero regression” for -Wuninitialized, can we leave this part of work in a later patch to improve
> The warning for “address taken” auto variables?

Yes, as said, I'd simply ignore this particular issue for now since I
don't see a good way to fix it.

Richard.

  reply	other threads:[~2021-08-18  7:19 UTC|newest]

Thread overview: 60+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-27  3:26 Qing Zhao
2021-07-28 20:21 ` Kees Cook
2021-07-28 21:53   ` Qing Zhao
2021-08-09 14:09 ` Richard Biener
2021-08-09 16:38   ` Qing Zhao
2021-08-09 17:14     ` Richard Biener
2021-08-10  7:36     ` Richard Biener
2021-08-10 13:39       ` Qing Zhao
2021-08-10 14:16         ` Richard Biener
2021-08-10 15:02           ` Qing Zhao
2021-08-10 15:22             ` Richard Biener
2021-08-10 15:55               ` Qing Zhao
2021-08-10 20:16               ` Qing Zhao
2021-08-10 22:26                 ` Qing Zhao
2021-08-11  7:02                   ` Richard Biener
2021-08-11 13:33                     ` Qing Zhao
2021-08-11 13:37                       ` Richard Biener
2021-08-11 13:54                         ` Qing Zhao
2021-08-11 13:58                           ` Richard Biener
2021-08-11 14:00                             ` Qing Zhao
2021-08-11 15:30                             ` Qing Zhao
2021-08-11 15:53                               ` Richard Biener
2021-08-11 16:22                                 ` Qing Zhao
2021-08-11 16:55                                   ` Richard Biener
2021-08-11 16:57                                     ` Qing Zhao
2021-08-11 20:30                                     ` Qing Zhao
2021-08-11 22:03                                       ` Qing Zhao
2021-08-16  7:12                                         ` Richard Biener
2021-08-16 14:48                                           ` Qing Zhao
2021-08-16 15:08                                             ` Richard Biener
2021-08-16 15:39                                               ` Qing Zhao
2021-08-16  7:11                                       ` Richard Biener
2021-08-16 16:48                                         ` Qing Zhao
2021-08-17 15:04                                           ` Qing Zhao
2021-08-17 20:40                                             ` Qing Zhao
2021-08-18  7:19                                               ` Richard Biener [this message]
2021-08-18 14:39                                                 ` Qing Zhao
2021-08-11  9:02                   ` Richard Sandiford
2021-08-11 13:44                     ` Qing Zhao
2021-08-11 16:15                       ` Richard Sandiford
2021-08-11 16:29                         ` Qing Zhao
2021-08-12 19:24   ` Qing Zhao
2021-08-12 22:45     ` Qing Zhao
2021-08-16  7:40     ` Richard Biener
2021-08-16 15:45       ` Qing Zhao
2021-08-17  8:29         ` Richard Biener
2021-08-17 14:50           ` Qing Zhao
2021-08-17 16:08             ` Qing Zhao
2021-08-18  7:15               ` Richard Biener
2021-08-18 16:02                 ` Qing Zhao
2021-08-19  9:00                   ` Richard Biener
2021-08-19 13:54                     ` Qing Zhao
2021-08-20 14:52                       ` Qing Zhao
2021-08-23 13:55                       ` Richard Biener
2021-09-02 17:24                         ` Qing Zhao
2021-08-16 19:49       ` Qing Zhao
2021-08-17  8:43         ` Richard Biener
2021-08-17 14:03           ` Qing Zhao
2021-08-17 14:45             ` Richard Biener
2021-08-17 14:53               ` Qing Zhao

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=nycvar.YFH.7.76.2108180915590.11781@zhemvz.fhfr.qr \
    --to=rguenther@suse.de \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=keescook@chromium.org \
    --cc=qing.zhao@oracle.com \
    --cc=richard.sandiford@arm.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).