This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [EVRP] Fold stmts with vrp_fold_stmt


On Wed, 5 Oct 2016, kugan wrote:

> Hi Richard,
> Thanks for the review.
> 
> On 04/10/16 19:56, Richard Biener wrote:
> > On Tue, 4 Oct 2016, kugan wrote:
> > 
> > > Hi,
> > > 
> > > This patch improves Early VRP by folding stmts using vrp_fold_stmt as it
> > > is
> > > done in ssa_propagate for VRP.
> > 
> > Why?
> 
> I thought it would be good for early vrp to simplify stmts using ranges. If we
> simplify obvious cases early, wouldn't it be better for IPA/LTO?
> 
>   I'd like us to move away from the fold_stmt callback of
> > substitute-and-fold (I have actually started some work towards that).
> 
> I must have missed it. But what is the general issue with 
> substitute-and-fold.

The pass specific stmt folding hook is a distraction and causes extra
work.  Most of the things the CCP variant does are no longer necessary
for example.  First and foremost I'm trying to enable "dce" in
substitute-and-fold for VRP and handle ASSERT_EXPR "removal" by
means of propagation -- this should fix quite a few missed pattern
matchings with fold_stmt which when running into ASSERT_EXPRs just
give up.

> > 
> > > I have also changed EVRP to handle POINTER_TYPE_P. I will send follow up
> > > patches to use this in IPA-VRP.
> > 
> > For pointers all VRP does is track non-NULLness.  Can you split out this
> > part?
> Attached patch does that.

That patch is ok.

> > I'm really worried about all the testsuite changes -- it means we are
> > losing test coverage for VRP :/
> 
> As you said earlier, unit testing with gimple FE should help. I am also
> wondering if we should organize these testcases such that it is run once
> without evrp and once with evrp to test both?

Yeah, that would be nice.  I always wondered about adding the ability
to add a "local torture" to individual testcases, say

{ dg-do compile }
{ dg-torture-options { "-O2 -fdisable-tree-evrp" "-O2" } }

(and make it be "additional" torture options when in dg-torture.exp)

Requires TCL hacking which isn't exactly my favourite...

Alternatively (seen elsewhere) put the testcase in a header and
have two testcases include it, with different dg-options ...

Richard.

> Thanks,
> Kugan
> 
> gcc/ChangeLog:
> 
> 2016-10-05  Kugan Vivekanandarajah  <kuganv@linaro.org>
> 
> 	* tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
> 	  POINTER_TYPE_P.
> 
> 
> gcc/testsuite/ChangeLog:
> 
> 2016-10-05  Kugan Vivekanandarajah  <kuganv@linaro.org>
> 
> 	* gcc.dg/tree-ssa/evrp4.c: New test.
> 
> > 
> > Richard.
> > 
> > > Bootstrapped and regression testd on x86_64-linux-gnu with no new
> > > regressions.
> > > Is this OK for trunk?
> > > 
> > > Thanks,
> > > Kugan
> > > 
> > > gcc/testsuite/ChangeLog:
> > > 
> > > 2016-10-03  Kugan Vivekanandarajah  <kuganv@linaro.org>
> > > 
> > > 	* gcc.dg/pr68217.c: Adjust testcase as more cases are now handled in
> > > 	  evrp.
> > > 	* gcc.dg/predict-1.c: Likewise.
> > > 	* gcc.dg/predict-9.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr20318.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr21001.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr21090.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr21294.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr21559.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr21563.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr23744.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr25382.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr61839_1.c: Likewise.
> > > 	* gcc.dg/tree-ssa/pr68431.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp03.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp07.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp09.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp17.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp18.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp19.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp20.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp23.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp24.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp58.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp92.c: Likewise.
> > > 	* gcc.dg/tree-ssa/vrp98.c: Likewise.
> > > 	* gcc.dg/vrp-min-max-1.c: Likewise.
> > > 
> > > gcc/ChangeLog:
> > > 
> > > 2016-10-03  Kugan Vivekanandarajah  <kuganv@linaro.org>
> > > 
> > > 	* tree-vrp.c (evrp_dom_walker::before_dom_children): Handle
> > > 	  POINTER_TYPE_P. Also fold stmts with vrp_fold_stmt.
> > > 
> > 
> 

-- 
Richard Biener <rguenther@suse.de>
SUSE LINUX GmbH, GF: Felix Imendoerffer, Jane Smithard, Graham Norton, HRB 21284 (AG Nuernberg)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]