aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/README.txt
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-06-06 19:52:44 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-06-06 19:52:44 +0000
commit25b3598596366ffbd88f65ecb8e0b3c273b35622 (patch)
tree486ccc53247c9669fdd239540fab53dc2099a641 /lib/CodeGen/README.txt
parent4f6661169f4239d295764b171cef4f0a58f54225 (diff)
downloadexternal_llvm-25b3598596366ffbd88f65ecb8e0b3c273b35622.zip
external_llvm-25b3598596366ffbd88f65ecb8e0b3c273b35622.tar.gz
external_llvm-25b3598596366ffbd88f65ecb8e0b3c273b35622.tar.bz2
Enable stack coloring by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52057 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/README.txt')
-rw-r--r--lib/CodeGen/README.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/CodeGen/README.txt b/lib/CodeGen/README.txt
index a66fc9d..d5ddd21 100644
--- a/lib/CodeGen/README.txt
+++ b/lib/CodeGen/README.txt
@@ -197,3 +197,12 @@ It would be really nice to be able to write patterns in .td files for copies,
which would eliminate a bunch of explicit predicates on them (e.g. no side
effects). Once this is in place, it would be even better to have tblgen
synthesize the various copy insertion/inspection methods in TargetInstrInfo.
+
+//===---------------------------------------------------------------------===//
+
+Stack coloring improvments:
+
+1. Do proper LiveStackAnalysis on all stack objects including those which are
+ not spill slots.
+2. Reorder objects to fill in gaps between objects.
+ e.g. 4, 1, <gap>, 4, 1, 1, 1, <gap>, 4 => 4, 1, 1, 1, 1, 4, 4