* Removed all Id tags.
[cacao.git] / src / vm / jit / loop / graph.h
index 46598c5b20f385b408dfd49ffb15dd4a94b9a0c7..ff3beb1f530d3cbae3725bccfe5b9b1d67ecd43c 100644 (file)
@@ -1,9 +1,9 @@
-/* jit/loop/graph.h - control flow graph header
+/* src/vm/jit/loop/graph.h - control flow graph header
 
-   Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
-   R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
-   C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
-   Institut f. Computersprachen - TU Wien
+   Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
+   C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
+   E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
+   J. Wenninger, Institut f. Computersprachen - TU Wien
 
    This file is part of CACAO.
 
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
-   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
-
-   Contact: cacao@complang.tuwien.ac.at
-
-   Authors: Christian Thalinger
-
-   $Id: graph.h 1735 2004-12-07 14:33:27Z twisti $
+   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+   02110-1301, USA.
 
 */
 
 #ifndef _GRAPH_H
 #define _GRAPH_H
 
-#include "loop.h"
+#include "config.h"
+#include "vm/types.h"
+
+#include "vm/jit/loop/loop.h"
+
+#include "vmcore/method.h"
+
 
+/* function prototypes ********************************************************/
 
 void LoopContainerInit(methodinfo *m, struct LoopContainer *lc, int i);
-void depthFirst(methodinfo *m, loopdata *ld);
+void depthFirst(jitdata *jd);
 void dF(methodinfo *m, loopdata *ld, int from, int blockIndex);
 void dF_Exception(methodinfo *m, loopdata *ld, int from, int blockIndex);