diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-07-02 06:27:12 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-07-02 06:27:12 +0000 |
commit | f03b63de59bc7adb5e8a71450f77d35c09a34f51 (patch) | |
tree | cd44c4aed5d4ce4eb5e8335a29ac996d36b0f318 | |
parent | dcecac198e0dca32512f342f5a487db492741fdf (diff) | |
download | llvm-f03b63de59bc7adb5e8a71450f77d35c09a34f51.zip llvm-f03b63de59bc7adb5e8a71450f77d35c09a34f51.tar.gz llvm-f03b63de59bc7adb5e8a71450f77d35c09a34f51.tar.bz2 |
Add a note about implementing interprocedural register allocation.
llvm-svn: 14569
-rw-r--r-- | llvm/docs/OpenProjects.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/docs/OpenProjects.html b/llvm/docs/OpenProjects.html index ec29cbe..ebf28ab 100644 --- a/llvm/docs/OpenProjects.html +++ b/llvm/docs/OpenProjects.html @@ -303,6 +303,10 @@ profiling code to work with the generic profiling interfaces.</li> <li>Implement a better instruction selector</li> <li>Implement support for the "switch" instruction without requiring the lower-switches pass.</li> +<li>Implement interprocedural register allocation. The CallGraphSCCPass can be + used to implement a bottom-up analysis that will determine the *actual* + registers clobbered by a function. Use the pass to fine tune register usage + in callers based on *actual* registers used by the callee.</li> </ol> </div> |