don't call be_spill_phis for phis of other reg classes
[libfirm] / ir / be / be.h
index 420592d..fdc9b92 100644 (file)
@@ -6,6 +6,9 @@
 #include "archop.h"
 #include "lower_dw.h"
 #include "dbginfo.h"
+#include "ifconv.h"
+
+#include <libcore/lc_timing.h>
 
 #define LC_STOP_AND_RESET_TIMER(timer) do { lc_timer_stop(timer); lc_timer_reset(timer); } while(0)
 
@@ -29,6 +32,8 @@ typedef struct backend_params {
        /** the context parameter for the create intrinsic function */
        void *create_intrinsic_ctx;
 
+       /** backend settings for if-conversion */
+       const opt_if_conv_info_t *if_conv_info;
 } backend_params;
 
 /**
@@ -52,7 +57,7 @@ const backend_params *be_init(void);
 /**
  * Main interface to the frontend.
  */
-void be_main(FILE *file_handle, const char *asm_file_name);
+void be_main(FILE *file_handle, const char *cup_name);
 
 /** The type of the debug info retriever function. */
 typedef const char *(*retrieve_dbg_func)(const dbg_info *dbg, unsigned *line);
@@ -70,7 +75,6 @@ void be_set_debug_retrieve(retrieve_dbg_func func);
 const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line);
 
 typedef struct _be_main_env_t be_main_env_t;
-typedef struct _be_irg_t be_irg_t;
 typedef struct _be_options_t be_options_t;
 
 #endif /* _BE_MAIN_H */