More missing config.h
[libfirm] / ir / be / be.h
1 #ifndef _BE_MAIN_H
2 #define _BE_MAIN_H
3
4 #include <stdio.h>
5 #include "irarch.h"
6 #include "archop.h"
7 #include "lower_dw.h"
8 #include "dbginfo.h"
9 #include "ifconv.h"
10
11 #define LC_STOP_AND_RESET_TIMER(timer) do { lc_timer_stop(timer); lc_timer_reset(timer); } while(0)
12
13 /**
14  * This structure contains parameters that should be
15  * propagated to the libFirm parameter set.
16  */
17 typedef struct backend_params {
18         /** Additional opcodes settings. */
19         const arch_ops_info *arch_op_settings;
20
21         /** Settings for architecture dependent optimizations */
22         const arch_dep_params_t *dep_param;
23
24         /** if set, the backend cannot handle DWORD access */
25         unsigned do_dw_lowering;
26
27         /** the architecture specific intrinsic function creator */
28         create_intrinsic_fkt *arch_create_intrinsic_fkt;
29
30         /** the context parameter for the create intrinsic function */
31         void *create_intrinsic_ctx;
32
33         /** backend settings for if-conversion */
34         const opt_if_conv_info_t *if_conv_info;
35 } backend_params;
36
37 /**
38  * Register the Firm backend command line options.
39  */
40 void be_opt_register(void);
41
42 /**
43  * Parse one backend argument.
44  */
45 int be_parse_arg(const char *arg);
46
47 /**
48  * Initialize the Firm backend. Must be run BEFORE init_firm()!
49  *
50  * @return libFirm configuration parameters for the selected
51  *         backend
52  */
53 const backend_params *be_init(void);
54
55 /**
56  * Main interface to the frontend.
57  */
58 void be_main(FILE *file_handle, const char *cup_name);
59
60 /** The type of the debug info retriever function. */
61 typedef const char *(*retrieve_dbg_func)(const dbg_info *dbg, unsigned *line);
62
63 /**
64  * Sets a debug info retriever.
65  *
66  * @param func   the debug retriever function.
67  */
68 void be_set_debug_retrieve(retrieve_dbg_func func);
69
70 /**
71  * Retrieve the debug info.
72  */
73 const char *be_retrieve_dbg_info(const dbg_info *dbg, unsigned *line);
74
75 typedef struct _be_main_env_t be_main_env_t;
76 typedef struct _be_irg_t be_irg_t;
77 typedef struct _be_options_t be_options_t;
78
79 #endif /* _BE_MAIN_H */