public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Qing Zhao <qing.zhao@oracle.com>
To: Martin Jambor <mjambor@suse.cz>
Cc: Richard Biener <richard.guenther@gmail.com>,
	Richard Sandiford <richard.sandiford@arm.com>,
	Jakub Jelinek <jakub@redhat.com>,
	Nick Alcock via Gcc-patches <gcc-patches@gcc.gnu.org>,
	kees cook <keescook@chromium.org>
Subject: Re: [patch][version5]add -ftrivial-auto-var-init and variable attribute "uninitialized" to gcc
Date: Mon, 26 Jul 2021 15:25:49 +0000	[thread overview]
Message-ID: <95FCC810-FF00-4894-B643-6C5823E9C590@oracle.com> (raw)
In-Reply-To: <ri6zgu9ibkw.fsf@suse.cz>

HI, Martin,

Thank you for the comments and suggestions on tree-sra.c changes.

>> ******Compare with the 4th version, the following are the major changes:
>> 
>> 1. delete the code for handling "grp_to_be_debug_replaced" since they are not needed per Martin Jambor's suggestion.
> 
> sorry if I did not make myself clear in my last email, but the deferred
> init calls should not result into setting any bits in
> cannot_scalarize_away_bitmap in the SRA pass, otherwise you'll get
> different optimization with and without -ftrivial-auto-var-init.

It’s my bad that I missed this part of your comments…

> 
> So you either need to change build_access_from_expr like I described in
> my email

Is the following the change you suggested previously:

[opc@qinzhao-ol8u3-x86 gcc]$ git diff tree-sra.c
diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c
index d1280e5f8848..c2597b705169 100644
--- a/gcc/tree-sra.c
+++ b/gcc/tree-sra.c
@@ -1195,8 +1195,10 @@ build_access_from_expr (tree expr, gimple *stmt, bool write)
     {
       /* This means the aggregate is accesses as a whole in a way other than an
         assign statement and thus cannot be removed even if we had a scalar
-        replacement for everything.  */
-      if (cannot_scalarize_away_bitmap)
+        replacement for everything. However, when the STMT is a call to
+        DEFERRED_INIT, we should not set this bit.  */
+      if (cannot_scalarize_away_bitmap 
+         && !gimple_call_internal_p (stmt, IFN_DEFERRED_INIT))
        bitmap_set_bit (cannot_scalarize_away_bitmap, DECL_UID (access->base));
       return true;
     }


> or add the following to your patch, which is probably slightly
> mor efficient (but it has been only very mildly tested).
> 
> 
> diff --git a/gcc/tree-sra.c b/gcc/tree-sra.c
> index d1280e5f884..602b0fb3a2d 100644
> --- a/gcc/tree-sra.c
> +++ b/gcc/tree-sra.c
> @@ -1395,7 +1395,12 @@ scan_function (void)
> 
>              t = gimple_call_lhs (stmt);
>              if (t && !disqualify_if_bad_bb_terminating_stmt (stmt, t, NULL))
> -               ret |= build_access_from_expr (t, stmt, true);
> +               {
> +                 if (gimple_call_internal_p (stmt, IFN_DEFERRED_INIT))
> +                   ret |= !!build_access_from_expr_1 (t, stmt, true);
> +                 else
> +                   ret |= build_access_from_expr (t, stmt, true);
> +               }
>              break;

Thanks for the patch, but I don’t quite understand the above change:

When the call is IFN_DEFERRED_INIT, you used build_access_from_expr_1 instead of build_access_from_expr to avoid setting “cannot_scalarize_away_bitmap” bit.
    But why adding “!” To this call?


> 
>            case GIMPLE_ASM:
> 
> 
> 
> And unfortunately I just spotted another potential problem in:
> 
>> +static enum assignment_mod_result
>> +sra_modify_deferred_init (gimple *stmt, gimple_stmt_iterator *gsi)
>> +{
>> +  tree lhs = gimple_call_lhs (stmt);
>> +  tree init_type = gimple_call_arg (stmt, 1);
>> +  tree is_vla = gimple_call_arg (stmt, 2);
>> +
>> +  struct access *lhs_access = get_access_for_expr (lhs);
>> +  if (!lhs_access)
>> +    return SRA_AM_NONE;
>> +
>> +  location_t loc = gimple_location (stmt);
>> +
>> +  if (lhs_access->grp_to_be_replaced)
>> +    {
>> +      tree lhs_repl = get_access_replacement (lhs_access);
>> +      gimple_call_set_lhs (stmt, lhs_repl);
>> +      tree arg0_repl = TYPE_SIZE_UNIT (TREE_TYPE (lhs_repl));
>> +      gimple_call_set_arg (stmt, 0, arg0_repl);
>> +      sra_stats.deferred_init++;
> 
> I think you want to add:
> 
>  gcc_assert (!lhs_access->first_child);
>  return SRA_AM_MODIFIED;

Okay. 
> 
> here, otherwise you risk that (in a case of a single-field structure)
> the call you have just modified here...
> 
>> +    }
>> +
>> +  if (lhs_access->first_child)
>> +    generate_subtree_deferred_init (lhs_access->first_child,
>> +				    init_type, is_vla, gsi, loc);
>> +  if (lhs_access->grp_covered)
>> +    {
>> +      unlink_stmt_vdef (stmt);
>> +      gsi_remove (gsi, true);
> 
> ...will be deleted here.

I see. Thanks a lot for spotting this issue.
> 
>> +      release_defs (stmt);
>> +      return SRA_AM_REMOVED;
>> +    }
>> +
>> +  return SRA_AM_MODIFIED;
>> +}
> 
> Sorry again for spotting this late and perhaps mis-communicating about
> the cannot_scalarize_away_bitmap issue earlier.  Apart from these two
> things, I believe the tree-sra.c bits are fin.

Thank you for the detailed review.

Qing
> 
> Martin
> 
> 
> 
> 
>> 2. for Pattern init, call __builtin_clear_padding after the call to .DEFERRED_INIT to initialize the paddings to zeroes;
>> 3. for partially or fully initialized auto variables, call   __builtin_clear_padding before the real initialization to initialize
>>    the paddings to zeroes.
>> 4. Update the documentation with padding initialization to zeroes.
>> 5. in order to reuse __builtin_clear_padding for auto init purpose, add one more dummy argument to indiciate whether it's for auto init or not,
>>   if for auto init, do not emit error messages to avoid confusing users.
>> 6. Add new testing cases to verify padding initializations.
>> 7. rename some of the old testing cases to make the file name reflecting the testing purpose per Kees Cook's suggestions.
>> 
>> ******Please see version 4 at:
>> https://gcc.gnu.org/pipermail/gcc-patches/2021-July/574642.html
>> 
>> ******ChangeLog is:
>> gcc/ChangeLog:
>> 
>> 2021-07-23  qing zhao  <qing.zhao@oracle.com>
>> 
>>        * builtins.c (expand_builtin_memset): Make external visible.
>>        * builtins.h (expand_builtin_memset): Declare extern.
>>        * common.opt (ftrivial-auto-var-init=): New option.
>>        * doc/extend.texi: Document the uninitialized attribute.
>>        * doc/invoke.texi: Document -ftrivial-auto-var-init.
>>        * flag-types.h (enum auto_init_type): New enumerated type
>>        auto_init_type.
>>        * gimple-fold.c (clear_padding_type): Add one new parameter.
>>        (clear_padding_union): Likewise.
>>        (clear_padding_emit_loop): Likewise.
>>        (clear_type_padding_in_mask): Likewise.
>>        (gimple_fold_builtin_clear_padding): Handle this new parameter.
>>        * gimplify.c (gimple_add_init_for_auto_var): New function.
>>        (maybe_with_size_expr): Forword declaration.
>>        (build_deferred_init): New function.
>>        (gimple_add_padding_init_for_auto_var): New function.
>>        (gimplify_decl_expr): Add initialization to automatic variables per
>>        users' requests.
>>        (gimplify_call_expr): Add one new parameter for call to
>>        __builtin_clear_padding.
>>        (gimplify_modify_expr_rhs): Add padding initialization before
>>        gimplify_init_constructor.
>>        * internal-fn.c (INIT_PATTERN_VALUE): New macro.
>>        (expand_DEFERRED_INIT): New function.
>>        * internal-fn.def (DEFERRED_INIT): New internal function.
>>        * tree-cfg.c (verify_gimple_call): Verify calls to .DEFERRED_INIT.
>>        * tree-sra.c (generate_subtree_deferred_init): New function.
>>        (sra_modify_deferred_init): Likewise.
>>        (sra_modify_function_body): Handle calls to DEFERRED_INIT specially.
>>        * tree-ssa-structalias.c (find_func_aliases_for_call): Likewise.
>>        * tree-ssa-uninit.c (warn_uninit): Handle calls to DEFERRED_INIT
>>        specially.
>>        (check_defs): Likewise.
>>        (warn_uninitialized_vars): Likewise.
>>        * tree-ssa.c (ssa_undefined_value_p): Likewise.
>> 
>> gcc/c-family/ChangeLog:
>> 
>> 2021-07-23  qing zhao  <qing.zhao@oracle.com>
>> 
>>        * c-attribs.c (handle_uninitialized_attribute): New function.
>>        (c_common_attribute_table): Add "uninitialized" attribute.


  reply	other threads:[~2021-07-26 15:25 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-25 15:59 Qing Zhao
2021-07-25 16:26 ` Qing Zhao
2021-07-26 11:00 ` Martin Jambor
2021-07-26 15:25   ` Qing Zhao [this message]
2021-07-26 15:55     ` Qing Zhao
2021-07-26 16:09     ` Martin Jambor
2021-07-26 16:38       ` 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=95FCC810-FF00-4894-B643-6C5823E9C590@oracle.com \
    --to=qing.zhao@oracle.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=keescook@chromium.org \
    --cc=mjambor@suse.cz \
    --cc=richard.guenther@gmail.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).