1 cananian 1.1.2.1 // AllocationStrategy.java, created Mon Feb 15  3:38:00 1999 by duncan
 2 cananian 1.1.2.1 // Copyright (C) 1998 Duncan Bryce <duncan@lcs.mit.edu>
 3 cananian 1.1.2.1 // Licensed under the terms of the GNU GPL; see COPYING for details.
 4 cananian 1.1.2.1 package harpoon.Interpret.Tree;
 5 cananian 1.1.2.1 
 6 cananian 1.1.2.1 import harpoon.IR.Tree.Exp;
 7 cananian 1.1.2.1 
 8 cananian 1.1.2.1 /* <b>FILL ME IN</b>
 9 cananian 1.1.2.1  * @author Duncan Bryce <duncan@lcs.mit.edu>
10 cananian 1.2      * @version $Id: AllocationStrategy.java,v 1.2 2002/02/25 21:05:50 cananian Exp $
11 cananian 1.1.2.1  */
12 cananian 1.1.2.2 interface AllocationStrategy {
13 cananian 1.1.2.1     public Exp memAlloc(Exp size);
14 cananian 1.2     }