remove $Id$, it doesn't work with git anyway
[libfirm] / ir / be / beabi.h
1 /*
2  * Copyright (C) 1995-2008 University of Karlsruhe.  All right reserved.
3  *
4  * This file is part of libFirm.
5  *
6  * This file may be distributed and/or modified under the terms of the
7  * GNU General Public License version 2 as published by the Free Software
8  * Foundation and appearing in the file LICENSE.GPL included in the
9  * packaging of this file.
10  *
11  * Licensees holding valid libFirm Professional Edition licenses may use
12  * this file in accordance with the libFirm Commercial License.
13  * Agreement provided with the Software.
14  *
15  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
16  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
17  * PURPOSE.
18  */
19
20 /**
21  * @file
22  * @brief       Backend ABI implementation.
23  * @author      Sebastian Hack
24  */
25 #ifndef FIRM_BE_BEABI_H
26 #define FIRM_BE_BEABI_H
27
28 #include "firm_types.h"
29
30 #include "pset.h"
31 #include "pmap.h"
32 #include "bitset.h"
33
34 #include "be.h"
35 #include "beirg.h"
36 #include "bearch.h"
37 #include "beabi.h"
38 #include "beabihelper.h"
39
40 struct be_abi_call_flags_bits_t {
41         unsigned store_args_sequential  : 1;  /**< Use sequential stores for arguments. */
42         unsigned try_omit_fp            : 1;  /**< Try to omit the frame pointer. */
43         unsigned fp_free                : 1;  /**< The function can use any register as frame pointer. */
44         unsigned call_has_imm           : 1;  /**< A call can take the callee's address as an immediate. */
45         unsigned irg_is_leaf            : 1;  /**< 1, if the IRG is a leaf function. */
46         unsigned frame_is_setup_on_call : 1;  /**< Set to one, if there is already enough room on the stack for call args. */
47 };
48
49 union be_abi_call_flags_t {
50         be_abi_call_flags_bits_t bits;
51         unsigned val;
52 };
53
54 struct be_abi_callbacks_t {
55         /**
56          * Get the between type for that call.
57          * @param self The callback object.
58          * @return The between type of for that call.
59          */
60         ir_type *(*get_between_type)(ir_graph *irg);
61 };
62
63 /**
64  * Set the flags for a call.
65  * @param call          The call.
66  * @param flags         Some flags to be set.
67  * @param cb            The call callbacks for that call.
68  * @note                The ABI phase might change the flags due to analysis.
69  */
70 void be_abi_call_set_flags(be_abi_call_t *call, be_abi_call_flags_t flags, const be_abi_callbacks_t *cb);
71
72 /**
73  * Sets the number of bytes the stackframe is shrinked by the callee on return
74  */
75 void be_abi_call_set_pop(be_abi_call_t *call, int pop);
76
77 /**
78  * Set register class for call address.
79  * @param call      The call.
80  * @param cls       The register class for call address.
81  */
82 void be_abi_call_set_call_address_reg_class(be_abi_call_t *call, const arch_register_class_t *cls);
83
84 /**
85  * The ABI can change when we call a function vs. when we have
86  * been called.
87  */
88 typedef enum {
89         ABI_CONTEXT_CALLEE = 1 << 0,
90         ABI_CONTEXT_CALLER = 1 << 1,
91         ABI_CONTEXT_BOTH   = ABI_CONTEXT_CALLEE | ABI_CONTEXT_CALLER
92 } be_abi_context_t;
93
94 /**
95  * Record the that ABI transmits call argument pos on the stack. Modifies the abi object.
96  *
97  * @param call          the abi call object
98  * @param pos           the parameter position
99  * @param load_mode     load the parameter with this mode (if the parameter mode is different from this mode a Conv is inserted)
100  * @param alignment     stack alignment for the parameter on the current architecture
101  * @param space_before  size of allocated additional space before the parameter
102  * @param space_after   size of allocated additional space after the parameter
103  */
104 void be_abi_call_param_stack(be_abi_call_t *call, int pos, ir_mode *load_mode,
105                              unsigned alignment, unsigned space_before,
106                              unsigned space_after, be_abi_context_t context);
107
108 /**
109  * Record the that ABI transmits call argument pos in the given register.
110  *
111  * @param call          the abi call object
112  * @param pos           the parameter position
113  * @param reg           the register used
114  */
115 void be_abi_call_param_reg(be_abi_call_t *call, int pos,
116                            const arch_register_t *reg,
117                            be_abi_context_t context);
118
119 /**
120  * Record the that ABI transmits return value pos in the given register.
121  *
122  * @param call          the abi call object
123  * @param pos           the return value position
124  * @param reg           the register used
125  */
126 void be_abi_call_res_reg(be_abi_call_t *call, int pos,
127                          const arch_register_t *reg,
128                          be_abi_context_t context);
129
130 /**
131  * Get the flags of a ABI call object.
132  * Note that the flags must not be the same as set by be_abi_call_set_flags(). Analysis may have
133  * altered several flags, so getting them from the call object is always a good idea.
134  * @param call The call object.
135  * @return The flags.
136  */
137 be_abi_call_flags_t be_abi_call_get_flags(const be_abi_call_t *call);
138
139 /**
140  * Get the method type of an ABI call object.
141  * @param call The call object.
142  * @return The method type for that call object.
143  */
144 ir_type *be_abi_call_get_method_type(const be_abi_call_t *call);
145
146 void be_abi_introduce(ir_graph *irg);
147
148 void be_abi_free(ir_graph *irg);
149
150 #endif