d3189fdb0bc9ce9e3ff26390e39c74a48a23a5eb
[libfirm] / ir / ana / dfs.h
1 /*
2  * Copyright (C) 1995-2007 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file    dfs.h
22  * @author  Sebastian Hack
23  * @date    20.04.2007
24  * @version $Id: $
25  * @summary
26  *
27  * Primitive depth-first search on the CFG.
28  *
29  * Copyright (C) 2007 Universitaet Karlsruhe
30  * Released under the GPL
31  */
32 #ifndef FIRM_ANA_DFS_H
33 #define FIRM_ANA_DFS_H
34
35 #include "absgraph.h"
36
37 typedef struct _dfs_t      dfs_t;
38 typedef struct _dfs_node_t dfs_node_t;
39 typedef struct _dfs_edge_t dfs_edge_t;
40
41 typedef enum {
42         DFS_EDGE_ANC,
43         DFS_EDGE_FWD,
44         DFS_EDGE_CROSS,
45         DFS_EDGE_BACK
46 } dfs_edge_kind_t;
47
48 extern dfs_edge_kind_t dfs_get_edge_kind(const dfs_t *dfs, void *src, void *tgt);
49
50 extern dfs_t *dfs_new(const absgraph_t *graph_impl, void *graph);
51 extern void dfs_free(dfs_t *dfs);
52 extern void dfs_dump(const dfs_t *dfs, FILE *file);
53
54 #endif /* FIRM_ANA_DFS_H */