Issue Details (XML | Word | Printable)

Key: RVM-239
Type: Improvement Improvement
Status: Open Open
Priority: Major Major
Assignee: Unassigned
Reporter: Ian Rogers
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
RVM

Restructuring of how compiler phases are organized, use of pre/post conditions

Created: 19/Sep/07 05:50 AM   Updated: 11/Apr/08 09:29 AM
Component/s: Compiler: Optimizing
Affects Version/s: 2.9.0, 2.9.0.1, 2.9.1
Fix Version/s: 1000

Time Tracking:
Not Specified


 Description  « Hide
This issue supersedes RFE 1147138.

Currently compiler phases may call phases within themselves. Compiler phases are also wrapped in optimizations plan elements which is beneficial in creating composite elements (in particular for producing high-level compiler phase timing information). This wrapping and calling of phases makes it confusing as to where certain properties of IR hold. It means also that we may recompute side data structures for the IR, such as dominator information, when there is no need. We should create a scheme where we can organize compiler phases and have phases inserted into compiler plans when we know we require certain side data structures to be present. Examples of properties that can be conditions are:

  • SSA flavor
  • liveness
  • dominators
  • register lists


 All   Comments   Work Log   Change History      Sort Order: Ascending order - Click to sort in descending order
Ian Rogers added a comment - 19/Sep/07 06:05 AM
There are also useful comments in the sourceforge RFE tracker 1571187.