[Bug rtl-optimization/42612] post-increment addressing not used

2022-07-11 Thread pinskia at gcc dot gnu.org via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42612 --- Comment #7 from Andrew Pinski --- (In reply to Dmitry Baksheev from comment #6) > Please consider fixing this issue. Here is another example where not using > post-increment for loops produces suboptimal code on AArch64. The code is 4x >

[Bug rtl-optimization/42612] post-increment addressing not used

2022-07-11 Thread bd at mail dot ru via Gcc-bugs
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42612 Dmitry Baksheev changed: What|Removed |Added CC||bd at mail dot ru --- Comment #6 from

[Bug rtl-optimization/42612] post-increment addressing not used

2015-05-22 Thread olegendo at gcc dot gnu.org
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=42612 --- Comment #5 from Oleg Endo olegendo at gcc dot gnu.org --- There is a GSoC 2015 project which will try to address the AMS problem. https://www.google-melange.com/gsoc/project/details/google/gsoc2015/erikvarga/5693417237512192 It will be

[Bug rtl-optimization/42612] post-increment addressing not used

2012-08-23 Thread olegendo at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=42612 Oleg Endo olegendo at gcc dot gnu.org changed: What|Removed |Added CC||olegendo at gcc

[Bug rtl-optimization/42612] post-increment addressing not used

2010-01-05 Thread bonzini at gnu dot org
--- Comment #2 from bonzini at gnu dot org 2010-01-05 11:43 --- Combine is doing what it knows best (forming complicated instructions, addressing modes in this case); to do this it is already damaging the nice shape of the code after the tree optimizers, and synthesizing things like

[Bug rtl-optimization/42612] post-increment addressing not used

2010-01-05 Thread jon at beniston dot com
--- Comment #3 from jon at beniston dot com 2010-01-05 12:13 --- GCC 4.1.2 seems to produce the same code. mov r2, #0 mov r3, r0 strbr2, [r3], #1 strbr2, [r0, #1] add r0, r3, #2 @ lr needed for prologue strbr2,

[Bug rtl-optimization/42612] post-increment addressing not used

2010-01-04 Thread rguenth at gcc dot gnu dot org
-- rguenth at gcc dot gnu dot org changed: What|Removed |Added Severity|normal |enhancement Component|c

[Bug rtl-optimization/42612] post-increment addressing not used

2010-01-04 Thread steven at gcc dot gnu dot org
--- Comment #1 from steven at gcc dot gnu dot org 2010-01-04 18:53 --- From the tree optimizers we go to expand with the following code (from PR42612.c.139t.optimized): ;; Function func (func) func (char * p) { bb 2: *p_1(D) = 0; p_2 = p_1(D) + 1; *p_2 = 0; p_3 = p_2 + 1;