Bugzilla – Bug 315580
[PATCH] Speed up copy/cons propagation
Last modified: 2010-03-21 11:48:21 UTC
---- Reported by bmaurer@users.sf.net 2004-07-24 01:51:38 MST ---- This patch removes two redundant computations in copyprop: * Before, we would visit each inst to check for kill effects. However, we only need to do this if there are variables whose address has been taken. * Since cprop already calls the cfold pass, there is no need to do a seperate round of constant folding. Together, these changes make it so that -O=copyprop does not impact jit time. ---- Additional Comments From bmaurer@users.sf.net 2004-07-24 01:51:59 MST ---- Created an attachment (id=166524) mini-cprop-speedup.patch Imported an attachment (id=166524) Unknown operating system unknown. Setting to default OS "Other".
-> no longer relevant with the new JIT.