Re: [PATCH] Improve copy prop for aggregates and combine with zeroing case

2025-06-08 Thread Andrew Pinski
On Sat, Jun 7, 2025 at 12:34 PM Andrew Pinski wrote: > > On Fri, Jun 6, 2025 at 11:50 AM Andrew Pinski > wrote: > > > > This improves copy prop for aggregates by working over statements that > > don't modify the access > > just like how it is done for copying zeros. > > To speed up things, we s

Re: [PATCH] Improve copy prop for aggregates and combine with zeroing case

2025-06-07 Thread Andrew Pinski
On Fri, Jun 6, 2025 at 11:50 AM Andrew Pinski wrote: > > This improves copy prop for aggregates by working over statements that don't > modify the access > just like how it is done for copying zeros. > To speed up things, we should only have one loop back on the vuse instead of > doing it twice

[PATCH] Improve copy prop for aggregates and combine with zeroing case

2025-06-06 Thread Andrew Pinski
This improves copy prop for aggregates by working over statements that don't modify the access just like how it is done for copying zeros. To speed up things, we should only have one loop back on the vuse instead of doing it twice for each load/store assignments. PR tree-optimization/142

Re: [PATCH] Improve copy prop for aggregates and combine with zeroing case

2025-05-28 Thread Andrew Pinski
On Fri, May 23, 2025 at 10:12 PM Andrew Pinski wrote: > > This improves copy prop for aggregates by working over statements that don't > modify the access > just like how it is done for copying zeros. > To speed up things, we should only have one loop back on the vuse instead of > doing it twice

[PATCH] Improve copy prop for aggregates and combine with zeroing case

2025-05-23 Thread Andrew Pinski
This improves copy prop for aggregates by working over statements that don't modify the access just like how it is done for copying zeros. To speed up things, we should only have one loop back on the vuse instead of doing it twice for each load/store assignments. PR tree-optimization/142