-
- Downloads
PHIOPT: Add diamond bb form to factor_out_conditional_conversion
So the function factor_out_conditional_conversion already supports diamond shaped bb forms, just need to be called for such a thing. harden-cond-comp.c needed to be changed as we would optimize out the conversion now and that causes the compare hardening not needing to split the block which it was testing. So change it such that there would be no chance of optimization. Also add two testcases that showed the improvement. PR 103771 is solved in ifconvert also for the vectorizer but now it is solved in a general sense. OK? Bootstrapped and tested on x86_64-linux-gnu with no regressions. PR tree-optimization/49959 PR tree-optimization/103771 gcc/ChangeLog: * tree-ssa-phiopt.cc (pass_phiopt::execute): Support Diamond shapped bb form for factor_out_conditional_conversion. gcc/testsuite/ChangeLog: * c-c++-common/torture/harden-cond-comp.c: Change testcase slightly to avoid the new phiopt optimization. * gcc.dg/tree-ssa/abs-2.c: New test. * gcc.dg/tree-ssa/pr103771.c: New test.
Showing
- gcc/testsuite/c-c++-common/torture/harden-cond-comp.c 3 additions, 3 deletionsgcc/testsuite/c-c++-common/torture/harden-cond-comp.c
- gcc/testsuite/gcc.dg/tree-ssa/abs-2.c 20 additions, 0 deletionsgcc/testsuite/gcc.dg/tree-ssa/abs-2.c
- gcc/testsuite/gcc.dg/tree-ssa/pr103771.c 18 additions, 0 deletionsgcc/testsuite/gcc.dg/tree-ssa/pr103771.c
- gcc/tree-ssa-phiopt.cc 1 addition, 1 deletiongcc/tree-ssa-phiopt.cc
Loading
Please register or sign in to comment