Set dump consts local to false for schedule dumping
[libfirm] / ir / be / be_t.h
1 /**
2  * Internal backend global data structures.
3  * @author Sebastian Hack
4  * @date 8.12.2004
5  */
6
7 #ifndef _BE_T_H
8 #define _BE_T_H
9
10 #include "obst.h"
11 #include "debug.h"
12
13 #include "irgraph.h"
14 #include "beirgmod.h"
15
16 typedef struct _be_main_env_t {
17   struct obstack obst;
18   struct _be_node_factory_t *node_factory;
19   struct _arch_env_t *arch_env;
20   firm_dbg_module_t *dbg;
21 } be_main_env_t;
22
23 typedef struct _be_main_session_env_t {
24   const be_main_env_t *main_env;
25   ir_graph *irg;
26   struct _dom_front_info_t *dom_front;
27 } be_main_session_env_t;
28
29 #endif