add doxygen comments
[libfirm] / include / libfirm / be.h
index 5213dd2..9f39a80 100644 (file)
 #ifndef FIRM_BE_MAIN_H
 #define FIRM_BE_MAIN_H
 
-#include <stdio.h>
 #include "irarch.h"
 #include "archop.h"
 #include "lowering.h"
-#include "dbginfo.h"
-#include "iroptimize.h"
 
 #include <libcore/lc_timing.h>
 
@@ -46,14 +43,12 @@ typedef struct backend_params {
        unsigned do_dw_lowering:1;
        /** if set, the backend supports inline assembly */
        unsigned support_inline_asm:1;
-       /** if set, the backend prefers fastcall convention over cdecl */
-       unsigned prefer_fastcall:1;
 
        /** Additional opcodes settings. */
        const arch_ops_info *arch_op_settings;
 
        /** Settings for architecture dependent optimizations */
-       const arch_dep_params_t *dep_param;
+       const ir_settings_arch_dep_t *dep_param;
 
        /** the architecture specific intrinsic function creator */
        create_intrinsic_fkt *arch_create_intrinsic_fkt;
@@ -62,7 +57,7 @@ typedef struct backend_params {
        void *create_intrinsic_ctx;
 
        /** backend settings for if-conversion */
-       const opt_if_conv_info_t *if_conv_info;
+       const ir_settings_if_conv_t *if_conv_info;
 } backend_params;
 
 /**