Changes API a little bit :-)
[libfirm] / ir / be / be_t.h
index b5d402e..35fc5d0 100644 (file)
@@ -8,29 +8,34 @@
 #define _BE_T_H
 
 #include "obst.h"
+#include "debug.h"
 
-#if 0
-typedef struct _phase_t {
-       const char *name;
-       int id;
-} phase_t;
-
-int phase_register(phase_t *phase);
-void phase_applied(const ir_graph *irg, const phase_t *phase);
-int phase_depends_on(const ir_graph *irg, const phase_t *phase, int n, ...);
-int phase_invalidates(const ir_graph *irg, const phase_t *phase, int n, ...);
-#endif
+#include "irgraph.h"
+
+#include "be.h"
+#include "beirgmod.h"
+
+struct _be_options_t {
+       char ilp_server[128];
+       char ilp_solver[128];
+};
 
-typedef struct _be_main_env_t {
+struct _be_main_env_t {
   struct obstack obst;
   struct _be_node_factory_t *node_factory;
   struct _arch_env_t *arch_env;
-} be_main_env_t;
+  struct _be_options_t *options;
+  firm_dbg_module_t *dbg;
+};
 
-typedef struct _be_main_session_env_t {
-  const be_main_env_t *main_env;
+#if 0
+struct _be_main_session_env_t {
+  const struct _be_main_env_t *main_env;
   ir_graph *irg;
   struct _dom_front_info_t *dom_front;
-} be_main_session_env_t;
+};
+#endif
+
+
 
 #endif