remove opt_manage, provide assure_irg_properties
[libfirm] / ir / ana / dfs.h
1 /*
2  * Copyright (C) 1995-2008 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  * @brief
25  *
26  * Primitive depth-first search on the CFG.
27  */
28 #ifndef FIRM_ANA_DFS_H
29 #define FIRM_ANA_DFS_H
30
31 #include "absgraph.h"
32
33 typedef struct dfs_t      dfs_t;
34 typedef struct dfs_node_t dfs_node_t;
35 typedef struct dfs_edge_t dfs_edge_t;
36
37 typedef enum {
38         DFS_EDGE_ANC,
39         DFS_EDGE_FWD,
40         DFS_EDGE_CROSS,
41         DFS_EDGE_BACK
42 } dfs_edge_kind_t;
43
44 extern dfs_edge_kind_t dfs_get_edge_kind(const dfs_t *dfs, const void *src, const void *tgt);
45
46 extern dfs_t *dfs_new(const absgraph_t *graph_impl, void *graph);
47 extern void dfs_free(dfs_t *dfs);
48 extern void dfs_dump(const dfs_t *dfs, FILE *file);
49
50 #endif /* FIRM_ANA_DFS_H */