This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug rtl-optimization/34503] Issues with constant/copy propagation implementation in gcse.c
- From: "steven at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 17 Dec 2007 08:20:21 -0000
- Subject: [Bug rtl-optimization/34503] Issues with constant/copy propagation implementation in gcse.c
- References: <bug-34503-280@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from steven at gcc dot gnu dot org 2007-12-17 08:20 -------
Local const/copy propagation uses cselib, which is too heavy-weight for
something this simple. The reason for using cselib is that, at the time, we
also tried to do local CSE with cselib. But this never worked and we ended up
with cselib for just recording constants and copies. This could be done much
more efficiently with a simple mapping of registers to constants and copies.
--
steven at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
Last reconfirmed|0000-00-00 00:00:00 |2007-12-17 08:20:21
date| |
Summary|Issues with constant/copy |Issues with constant/copy
|propagation implementation |propagation implementation
|in gcse.c |in gcse.c
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=34503