set routine for entity mangled name.
[libfirm] / ir / tr / typewalk.h
1 /* Copyright (C) 1998 - 2000 by Universitaet Karlsruhe
2
3 ** All rights reserved.
4 **
5 ** Author: Goetz Lindenmaier
6 **
7 ** traverse the type information.  The walker walks the whole ir graph
8 ** to find the distinct type trees in the type graph forest.
9 ** - execute the pre function before recursion
10 ** - execute the post function after recursion
11 */
12
13
14 /* walk over all type information reachable from the ir graph. */
15
16 #ifndef _TYPEWALK_H_
17 #define _TYPEWALK_H_
18
19 # include "type_or_entity.h"
20
21
22 /** dumps all type information reachable from global roots **/
23 void type_walk(void (pre)(type_or_ent*, void*),
24                void (post)(type_or_ent*, void*),
25                void *env);
26
27 /** dumps all type information reachable from irg **/
28 void type_walk_irg(ir_graph *irg,
29                    void (pre)(type_or_ent*, void*),
30                    void (post)(type_or_ent*, void*),
31                    void *env);
32
33
34 #endif /* _TYPEWALK_H_ */