Handled RegParams and Barriers better in constraint handling
[libfirm] / ir / be / beabi.h
1
2 /**
3  * Backend ABI implementation.
4  */
5
6 #ifndef _BEABI_H
7 #define _BEABI_H
8
9 #include "pset.h"
10 #include "firm_types.h"
11
12 #include "be.h"
13 #include "bearch.h"
14 #include "beabi_t.h"
15
16 struct _be_abi_call_flags_bits_t {
17         unsigned left_to_right         : 1;  /**< Arguments are from left to right. */
18         unsigned store_args_sequential : 1;  /**< Use sequential stores for arguments. */
19         unsigned try_omit_fp           : 1;  /**< Try to omit the frame pointer. */
20         unsigned fp_free               : 1;  /**< The function can use any register as frame pointer. */
21         unsigned call_has_imm          : 1;  /**< A call can take the callee's address as an immediate. */
22         unsigned irg_is_leaf           : 1;  /**< 1
23         , if the IRG is a leaf function. */
24 };
25
26 union _be_abi_call_flags_t {
27         be_abi_call_flags_bits_t bits;
28         unsigned val;
29 };
30
31 struct _be_abi_callbacks_t {
32         /**
33          * Initialize the callback object.
34          * @param call The call object.
35          * @param isa  The current ISA.
36          * @param irg  The graph with the method.
37          * @return     Some pointer. This pointer is passed to all other callback functions as self object.
38          */
39         void *(*init)(const be_abi_call_t *call, const arch_isa_t *isa, ir_graph *irg);
40
41         /**
42          * Destroy the callback object.
43          * @param self The callback object.
44          */
45         void (*done)(void *self);
46
47         /**
48          * Get the between type for that call.
49          * @param self The callback object.
50          * @return The between type of for that call.
51          */
52         ir_type *(*get_between_type)(void *self);
53
54         /**
55          * Put all registers which are saved by the prologue/epilogue in a set.
56          * @param self The callback object.
57          * @param regs A set.
58          */
59         void (*regs_saved_by_me)(void *self, pset *regs);
60
61         /**
62          * Generate the prologue.
63          * @param self    The callback object.
64          * @param reg_map A mapping mapping all callee_save/ignore/parameter registers to their defining nodes.
65          * @return        The register which shall be used as a stack frame base.
66          *
67      * All nodes which define registers in @p reg_map must keep @p reg_map current.
68          */
69         const arch_register_t *(*prologue)(void *self, pmap *reg_map);
70
71         /**
72          * Generate the epilogue.
73          * @param self    The callback object.
74          * @param mem     Memory one can attach to.
75          * @param reg_map A mapping mapping all callee_save/ignore/return registers to their defining nodes.
76          *
77      * All nodes which define registers in @p reg_map must keep @p reg_map current.
78          * Also, the @p mem variable must be updated, if memory producing nodes are inserted.
79          */
80         void (*epilogue)(void *self, ir_node *bl, ir_node **mem, pmap *reg_map);
81 };
82
83 /**
84  * Set the flags for a call.
85  * @param call  The call.
86  * @param flags Some flags to be set.
87  * @param cb    The call callbacks for that call.
88  * @note        The ABI phase might change the flags due to analysis.
89  */
90 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb);
91
92
93 void be_abi_call_param_stack(be_abi_call_t *call, int pos);
94 void be_abi_call_param_reg(be_abi_call_t *call, int pos, const arch_register_t *reg);
95 void be_abi_call_res_reg(be_abi_call_t *call, int pos, const arch_register_t *reg);
96
97 /**
98  * Get the flags of a ABI call object.
99  * Note that the flags must not be the same as set by be_abi_call_set_flags(). Alayses may have
100  * altered several flags, so getting them from the call object is always a good idea.
101  * @param call The call object.
102  * @return The flags.
103  */
104 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call);
105
106 /**
107  * Get the method type of an ABI call object.
108  * @param call The call object.
109  * @return The method type for that call object.
110  */
111 ir_type *be_abi_call_get_method_type(const be_abi_call_t *call);
112
113 be_abi_irg_t *be_abi_introduce(be_irg_t *bi);
114 void be_abi_fix_stack_bias(be_abi_irg_t *env);
115 void be_abi_fix_stack_nodes(be_abi_irg_t *env);
116 void be_abi_free(be_abi_irg_t *abi);
117
118 ir_node *be_abi_get_callee_save_irn(be_abi_irg_t *abi, const arch_register_t *reg);
119
120 #endif