This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Why can't CSE recognize const_int's in HIGH LO_SUM pair?


On Mon, Sep 10, 2001 at 11:29:56AM -0600, law@redhat.com wrote:
> True.  But with the way things are currently implemented I don't think
> we actually lose anything on the PA by not exposing the subexpressions
> to gcse.  Instead of commonizing the HIGH and LO_SUM parts with other
> idential ones elsewhere, we end up commonizing (set (reg) (const_int))

Consider

	(set (reg A) (const_int 0x10001))
	(set (reg B) (const_int 0x10002))

as

	(set (reg T) (const_int 0x10000))
	(set (reg A) (plus (reg T) (const_int 1)))
	(set (reg B) (plus (reg T) (const_int 2)))

Now consider A and B loaded on two different paths.  Code motion can
then pull T up into the dominator.


r~


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]