* Removed all Id tags.
[cacao.git] / src / vm / jit / loop / graph.h
index a592c1a5234b8a5d1dd3912b1253e821b71fba06..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, 1997, 1998, 1999, 2000, 2001, 2002, 2003
-   R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser,
-   M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck,
-   P. Tomsich, J. Wenninger
+   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 665 2003-11-21 18:36:43Z jowenn $
+   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"
 
-void LoopContainerInit(struct LoopContainer *lc, int i);
-void depthFirst();
-void dF(int from, int blockIndex);
-void dF_Exception(int from, int blockIndex);
+#include "vmcore/method.h"
 
-void resultPass1();
+
+/* function prototypes ********************************************************/
+
+void LoopContainerInit(methodinfo *m, struct LoopContainer *lc, int i);
+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);
+
+void resultPass1(methodinfo *);
 
 #endif /* _GRAPH_H */
 
+
+/*
+ * These are local overrides for various environment variables in Emacs.
+ * Please do not remove this and leave it at the end of the file, where
+ * Emacs will automagically detect them.
+ * ---------------------------------------------------------------------
+ * Local variables:
+ * mode: c
+ * indent-tabs-mode: t
+ * c-basic-offset: 4
+ * tab-width: 4
+ * End:
+ */