[Bug tree-optimization/21855] array bounds checking elimination

2012-01-10 Thread aph at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855 Andrew Haley changed: What|Removed |Added Status|RESOLVED|WAITING Resolution|INVALID

[Bug tree-optimization/21855] array bounds checking elimination

2012-01-10 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855 Richard Guenther changed: What|Removed |Added Status|WAITING |RESOLVED Resolution|

[Bug tree-optimization/21855] array bounds checking elimination

2010-07-15 Thread steven at gcc dot gnu dot org
--- Comment #12 from steven at gcc dot gnu dot org 2010-07-15 22:43 --- I would be surprised if this is not fixed now. Can someone with Java-fu check? -- steven at gcc dot gnu dot org changed: What|Removed |Added ---

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-23 Thread paolo dot carlini at oracle dot com
--- Comment #11 from paolo dot carlini at oracle dot com 2009-04-23 16:26 --- Interesting, thanks Andrew. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-23 Thread aph at gcc dot gnu dot org
--- Comment #10 from aph at gcc dot gnu dot org 2009-04-23 16:23 --- Officially, java doesn't have unsigned types for economy: believe it or not, Java was once intended to be a small language. However, there are not many unused bytecodes left, and a full set of signed instructions would

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-23 Thread paolo dot carlini at oracle dot com
--- Comment #9 from paolo dot carlini at oracle dot com 2009-04-23 16:17 --- Ah! Now however, I **must** know why Java doesn't have unsigned types! -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-23 Thread aph at gcc dot gnu dot org
--- Comment #8 from aph at gcc dot gnu dot org 2009-04-23 16:15 --- 2 reasons: 1. Habit. 2. The original test case is written in Java: no unsigned types! -- aph at gcc dot gnu dot org changed: What|Removed |Added

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-08 Thread rguenth at gcc dot gnu dot org
--- Comment #7 from rguenth at gcc dot gnu dot org 2009-04-08 20:33 --- You can't. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-08 Thread tromey at gcc dot gnu dot org
--- Comment #6 from tromey at gcc dot gnu dot org 2009-04-08 16:37 --- How would the FE indicate that the length field is immutable? -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-03 Thread pinskia at gcc dot gnu dot org
--- Comment #5 from pinskia at gcc dot gnu dot org 2009-04-03 19:18 --- There are multiple of issues here, first we have an issue that the java front-end is not telling the middle-end that args.length cannot be changed after a new has happened (an aliasing issue). And then we had some b

[Bug tree-optimization/21855] array bounds checking elimination

2009-04-03 Thread rguenth at gcc dot gnu dot org
--- Comment #4 from rguenth at gcc dot gnu dot org 2009-04-03 12:07 --- Huh. C testcase please? I think this may be fixed now. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21855

[Bug tree-optimization/21855] array bounds checking elimination

2005-06-04 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2005-06-04 17:00 --- *** Bug 18178 has been marked as a duplicate of this bug. *** -- What|Removed |Added

[Bug tree-optimization/21855] array bounds checking elimination

2005-06-03 Thread dnovillo at gcc dot gnu dot org
--- Additional Comments From dnovillo at gcc dot gnu dot org 2005-06-03 14:34 --- Aliasing is getting in the way of range propagation here. We don't realize that args.length does not change during the loop, which means that we don't eliminate the redundant load and fail to see the equi

[Bug tree-optimization/21855] array bounds checking elimination

2005-06-03 Thread dnovillo at gcc dot gnu dot org
-- What|Removed |Added AssignedTo|dnovillo at redhat dot com |dnovillo at gcc dot gnu dot ||org Status|NEW

[Bug tree-optimization/21855] array bounds checking elimination

2005-06-01 Thread pinskia at gcc dot gnu dot org
--- Additional Comments From pinskia at gcc dot gnu dot org 2005-06-01 20:31 --- Confirmed. -- What|Removed |Added Status|UNCONFIRMED |NEW