forked from iains/gcc-14-branch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
re PR tree-optimization/80520 (Performance regression from missing if…
…-conversion) PR tree-optimization/80520 * gimple-ssa-split-paths.c (is_feasible_trace): Recognize half diamonds that are likely if convertable. * gcc.dg/tree-ssa/split-path-5.c: Update expected output. * gcc.dg/tree-ssa/split-path-11.c: New test. From-SVN: r266971
- Loading branch information
Jeff Law
authored and
Jeff Law
committed
Dec 11, 2018
1 parent
72cfde4
commit 7b1ff60
Showing
5 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2018-12-10 Jeff Law <[email protected]> | ||
|
||
PR tree-optimization/80520 | ||
* gimple-ssa-split-paths.c (is_feasible_trace): Recognize half | ||
diamonds that are likely if convertable. | ||
|
||
2018-12-10 Martin Sebor <[email protected]> | ||
|
||
PR tree-optimization/86196 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
2018-12-10 Jeff Law <[email protected]> | ||
|
||
PR tree-optimization/80520 | ||
* gcc.dg/tree-ssa/split-path-5.c: Update expected output. | ||
* gcc.dg/tree-ssa/split-path-11.c: New test. | ||
|
||
2018-12-10 Steven G. Kargl <[email protected]> | ||
|
||
PR fortran/97922 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* { dg-do compile } */ | ||
/* { dg-options "-O2 -fsplit-paths -fdump-tree-split-paths-details -w" } */ | ||
|
||
void foo(unsigned long *M) | ||
{ | ||
for (unsigned long k = 0; k < 227; ++k) | ||
{ | ||
unsigned long y = | ||
((M[k] & 0xffffffff80000000) | (M[k + 1] & 0x7fffffff)); | ||
M[k] = (M[k + 397] ^ (y >> 1) ^ ((y & 1) ? 2567483615 : 0)); | ||
} | ||
} | ||
|
||
/* { dg-final { scan-tree-dump-times "join point for if-convertable half-diamond" 1 "split-paths" } } */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters