public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: kugan <kugan.vivekanandarajah@linaro.org>
To: Richard Biener <richard.guenther@gmail.com>
Cc: Andrew Pinski <pinskia@gmail.com>,
	"gcc-patches@gcc.gnu.org" <gcc-patches@gcc.gnu.org>,
	Jan Hubicka <hubicka@ucw.cz>, Martin Jambor <mjambor@suse.cz>
Subject: Re: [RFC][IPA-VRP] Early VRP Implementation
Date: Thu, 28 Jul 2016 07:36:00 -0000	[thread overview]
Message-ID: <ac8721e4-ed98-b745-452d-e67c3f752d4c@linaro.org> (raw)
In-Reply-To: <CAFiYyc0b3J7a6kB0VoLWGG9_qJ6eK2NuGshQfDpewsipkUh_7g@mail.gmail.com>

Hi Richard,

Thanks for the review.
>
> It seems that in your pop_value_range you assume you only pop one
> range per BB - while that's likely true at the moment it will be a limitation
> in the future.  You want to pop ranges until you hit the NULL marker
> in after_dom_children and unconditionally push a NULL marker.
>
I understand. Right now, I am adding only one assert based on the 
condition. But in future, we will be adding more so this is needed. I 
will do that.

> For example to match current VRPs behavior on say
>
>    i_2 = (int) j_3;
>    if (i_2 < 0)
>      ...
>
> which can register an assert for j_3 when i_2 < 0 is true we'd do that
> by re-simulating DEFs of uses we figured out new ranges of (and all
> their uses).  All those ranges would be temporary as well, thus they'd
> need to be pushed/popped.  In my quick prototype this was done
> using a worklist seeded by the names we can derive a range from from
> conditionals and "SSA propagating" from it.  Note that for this
> the generic vrp_visit_stmt cannot be re-used as it doesn't push/pop,
> factoring out the lattice update is what is needed here.
>

I dont think I understand this part. vrp_visit_stmt is going to add 
value ranges for the variables defined in the if-block (in the example 
below it is for t). If we push the value range for i_2 and j_3 when we 
enter if-block, vrp_visit_stmt should compute "t" correctly. When we 
leave the if-block, we will pop i_2 and j_3.

     i_2 = (int) j_3;
     if (i_2 < 0)
     {
       t = j_2 * 2;	
     }
Am I missing something here?

> +/* Visit the basic blocks in the dominance order and set the Value Ranges (VR)
> +   for SSA_NAMEs in the scope.  Use this VR to discover more VRs.  Restore the
> +   old VR once the scope is exited.  */
> +
> +static bool
> +evrp_visit_phi_node_local (gphi *phi)
> +{
> +  size_t i;
> +  tree lhs = PHI_RESULT (phi);
> +  value_range vr_result = VR_INITIALIZER;
> +  bool first = true;
> +  int edges;
> +
> +  edges = 0;
> +  for (i = 0; i < gimple_phi_num_args (phi); i++)
> +    {
> +      edge e = gimple_phi_arg_edge (phi, i);
> +      tree arg = PHI_ARG_DEF (phi, i);
> +      value_range vr_arg = VR_INITIALIZER;
> +      ++edges;
> +
> +      /* If there is a back-edge, set the result to VARYING.  */
> +      if (e->flags & (EDGE_DFS_BACK | EDGE_COMPLEX))
> +       {
> +         set_value_range_to_varying (&vr_result);
> +         break;
> +       }
> ...
> +      /* If any of the RHS value is VARYING, set the result to VARYING.  */
> +      if ((vr_arg.type != VR_RANGE)
> +         && (vr_arg.type != VR_ANTI_RANGE))
> +       {
> +         set_value_range_to_varying (&vr_result);
> +         break;
> +       }
>
> this shows that you need to start conservative for a DOM based VRP,
> thus with all lattice values initialized to VARYING (but undefined SSA
> names of course still can be UNDEFINED) rather than UNDEFINED.
>
> +      if (TREE_CODE (arg) == SSA_NAME)
> +       vr_arg = *(get_value_range (arg));
> +      else
> +       set_value_range_to_varying (&vr_arg);
>
> err - what about constants?  When you initialize the lattice properly
> you should be able to re-use vrp_visit_phi_node (maybe split out
> its head to avoid using SCEV or the iteration limitation).

I also like re-using vrp_visit_phi_node but the issue is, we will have 
to keep a work-list of nodes to be re-evaluated till the lattice reach a 
fixpoint. Is that OK with you?

If we are to do this, we should be able to reuse the callbacks 
vrp_visit_phi_node and vrp_visit_stmt as it is.

Do you have a reference to your DOM based prototype?

Thanks,
Kugan

> Btw, you don't want to call vrp_initialize in evrp either, this is setting
> SSA propagator state which you do not want to do.  Please factor
> out lattice allocation/deallocation instead.  I see that might require
> really factoring vrp_visit_stmt into a function that omits updating
> the lattice and just returns a range for the single DEF.
>
> That said, a good refactoring is to split the SSA propagator callback
> implementations (vrp_visit_stmt and vrp_visit_phi_node) into workers
> returning a value range and the callback that does the update_value_range
> call plus returing a SSA propgator state.  You can then re-use the worker.
>
> Thanks,
> Richard.
>
>> I  have tested the last set of patch separately.
>>
>> I will do more testing on this patch based on your feedback. Does this look
>> better?
>>
>> Thanks,
>> Kugan
>>
>>

  reply	other threads:[~2016-07-28  7:36 UTC|newest]

Thread overview: 67+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-07-15  4:41 [RFC][IPA-VRP] IPA " kugan
2016-07-15  4:42 ` [RFC][IPA-VRP] Disable setting param of __builtin_constant_p to null kugan
2016-07-15  8:43   ` Jan Hubicka
2016-07-25  6:59     ` kugan
2016-07-25 10:02       ` Richard Biener
2016-07-15  4:43 ` [RFC][IPA-VRP] Check for POINTER_TYPE_P before accessing SSA_NAME_PTR_INFO in tree-inline kugan
2016-07-15  4:47   ` Andrew Pinski
2016-07-15  7:03     ` Jakub Jelinek
2016-07-15  7:03     ` kugan
2016-07-15  7:32   ` Richard Biener
2016-07-15  4:44 ` [RFC][IPA-VRP] Re-factor tree-vrp to factor out common code kugan
2016-07-15  4:47   ` [RFC][IPA-VRP] Add support for IPA VRP in ipa-cp/ipa-prop kugan
2016-07-15 12:23     ` Martin Jambor
2016-07-19  8:22       ` kugan
2016-07-19 21:27         ` kugan
2016-07-21 12:54           ` Jan Hubicka
2016-08-30  5:21             ` Kugan Vivekanandarajah
2016-08-30 18:12               ` Prathamesh Kulkarni
2016-08-30 21:10                 ` kugan
2016-09-02 12:31               ` Jan Hubicka
2016-07-17 13:24     ` Prathamesh Kulkarni
2016-07-22 12:27   ` [RFC][IPA-VRP] Re-factor tree-vrp to factor out common code kugan
2016-07-22 12:49     ` Richard Biener
2016-07-22 14:34       ` kugan
2016-07-23 10:12         ` kugan
2016-08-16  8:09           ` kugan
2016-08-16 11:56             ` Richard Biener
2016-08-16 22:20               ` kugan
2016-08-17  2:50                 ` kugan
2016-08-17 13:46                   ` Richard Biener
2016-07-15  4:45 ` [RFC][IPA-VRP] Early VRP Implementation kugan
2016-07-15  4:52   ` Andrew Pinski
2016-07-15  7:08     ` kugan
2016-07-15  7:28       ` Andrew Pinski
2016-07-15  7:33         ` kugan
2016-07-18 11:51           ` Richard Biener
2016-07-22 12:10             ` kugan
2016-07-25 11:18               ` Richard Biener
2016-07-26 12:27                 ` kugan
2016-07-26 13:37                   ` Richard Biener
2016-07-28  7:36                     ` kugan [this message]
2016-07-28 11:34                       ` Richard Biener
2016-08-03  1:17                         ` kugan
2016-08-12 10:43                           ` Richard Biener
2016-08-16  7:39                             ` [RFC][IPA-VRP] splits out the update_value_range calls from vrp_visit_stmt kugan
2016-08-16 10:58                               ` Richard Biener
2016-08-17  2:27                                 ` kugan
2016-08-17 13:44                                   ` Richard Biener
2016-08-16  7:45                             ` [RFC][IPA-VRP] Early VRP Implementation kugan
2016-08-19 11:41                               ` Richard Biener
2016-08-23  2:12                                 ` Kugan Vivekanandarajah
2016-09-02  8:11                                   ` Kugan Vivekanandarajah
2016-09-14 12:11                                   ` Richard Biener
2016-09-14 21:47                                     ` Jan Hubicka
2016-09-15  7:23                                       ` Richard Biener
2016-09-15 14:57                                         ` Jeff Law
2016-09-16  8:59                                           ` Richard Biener
2016-09-16  6:37                                     ` kugan
2016-09-16 10:26                                       ` Richard Biener
2016-09-18 23:40                                         ` kugan
2016-09-19 13:30                                           ` Richard Biener
2016-09-20  5:48                                             ` kugan
2016-07-19 16:19     ` Jeff Law
2016-07-19 18:35       ` Richard Biener
2016-07-19 20:14         ` Jeff Law
2016-07-15  4:47 ` [RFC][IPA-VRP] Teach tree-vrp to use the VR set in params kugan
2016-07-18 11:33   ` Richard Biener

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=ac8721e4-ed98-b745-452d-e67c3f752d4c@linaro.org \
    --to=kugan.vivekanandarajah@linaro.org \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=hubicka@ucw.cz \
    --cc=mjambor@suse.cz \
    --cc=pinskia@gmail.com \
    --cc=richard.guenther@gmail.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).