X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Fvm%2Fjit%2Floop%2Fgraph.h;h=ff3beb1f530d3cbae3725bccfe5b9b1d67ecd43c;hb=9f859ad50d3d5d98c185d40b86b2179bc4dc9aeb;hp=46598c5b20f385b408dfd49ffb15dd4a94b9a0c7;hpb=d75b6037acf17c342166b9c9bd6e657dfdd12cd9;p=cacao.git diff --git a/src/vm/jit/loop/graph.h b/src/vm/jit/loop/graph.h index 46598c5b2..ff3beb1f5 100644 --- a/src/vm/jit/loop/graph.h +++ b/src/vm/jit/loop/graph.h @@ -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. @@ -19,14 +19,8 @@ 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. */ @@ -34,11 +28,18 @@ #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);