Cosmetic.
[oota-llvm.git] / lib / CodeGen / README.txt
index 33e207ff8c8c3f16015901d2d26940ebb208f295..d5ddd217962100d8b2c0c70e867dee3ae9282d64 100644 (file)
@@ -199,3 +199,10 @@ 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