Bug 315580 (MONO61899) - [PATCH] Speed up copy/cons propagation
Summary: [PATCH] Speed up copy/cons propagation
Status: RESOLVED WONTFIX
Alias: MONO61899
Product: Mono: Runtime
Classification: Mono
Component: misc (show other bugs)
Version: unspecified
Hardware: Other Other
: P3 - Medium : Enhancement
Target Milestone: ---
Assignee: Mono Bugs
QA Contact: Mono Bugs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-07-24 08:51 UTC by Ben Maurer
Modified: 2010-03-21 11:48 UTC (History)
2 users (show)

See Also:
Found By: ---
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments
mini-cprop-speedup.patch (1.31 KB, patch)
2004-07-24 08:51 UTC, Thomas Wiest
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Thomas Wiest 2007-09-15 18:47:55 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".

Comment 1 Forgotten User vxPDddArjq 2010-03-21 11:48:21 UTC
-> no longer relevant with the new JIT.