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