add some comments
authorAdam Megacz <adam@megacz.com>
Thu, 16 Jul 2009 18:56:46 +0000 (11:56 -0700)
committerAdam Megacz <adam@megacz.com>
Thu, 16 Jul 2009 18:56:46 +0000 (11:56 -0700)
src/edu/berkeley/fleet/loops/CodeBag.java
src/edu/berkeley/fleet/loops/Program.java

index d8b078f..de14c71 100644 (file)
@@ -16,6 +16,9 @@ import static edu.berkeley.fleet.util.BitManipulations.*;
 //        - advantage: it lets us convey the fact that a bunch of loops are dispatched together
 //    - should loops have an "invoke context" opcode?
 
+
+// FIXME: implement CodeBag compression
+
 /**
  *  A CodeBag is a collection of Loops which obey these rules:
  *
index 7f5263b..bd30f30 100644 (file)
@@ -6,6 +6,8 @@ import java.io.*;
 
 /**
  *  A program is a collection of CodeBags resident in a particular Memory.
+ *
+ *  FIXME: should every Program have an associated ShipPool?
  */
 public class Program {