bescripts: Remove unused execution unit specification.
[libfirm] / ir / be / sparc / sparc_cconv.h
1 /*
2  * Copyright (C) 1995-2010 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   support functions for calling conventions
23  * @author  Matthias Braun
24  */
25 #ifndef FIRM_BE_SPARC_SPARC_CCONV_H
26 #define FIRM_BE_SPARC_SPARC_CCONV_H
27
28 #include "firm_types.h"
29 #include "bearch_sparc_t.h"
30 #include "be_types.h"
31 #include "benode.h"
32 #include "gen_sparc_regalloc_if.h"
33
34 /** information about a single parameter or result */
35 typedef struct reg_or_stackslot_t
36 {
37         const arch_register_req_t *req0; /**< if != NULL, register requirements
38                                               for this parameter (or the first
39                                               part of it). */
40         const arch_register_req_t *req1; /**< if != NULL, register requirements
41                                               for the 2nd part of the parameter */
42         const arch_register_t *reg0;
43         const arch_register_t *reg1;
44         size_t                 reg_offset;
45         ir_type               *type;   /**< indicates that an entity of the specific
46                                                                             type is needed */
47         unsigned               offset; /**< if transmitted via stack, the offset for
48                                             this parameter. */
49         ir_entity             *entity; /**< entity in frame type */
50 } reg_or_stackslot_t;
51
52 /** The calling convention info for one call site. */
53 struct calling_convention_t
54 {
55         bool                omit_fp;          /**< do not use frame pointer (and no
56                                                    save/restore) */
57         reg_or_stackslot_t *parameters;       /**< parameter info. */
58         unsigned            param_stack_size; /**< stack size for parameters */
59         unsigned            n_param_regs;     /**< number of values passed in a
60                                                    register */
61         reg_or_stackslot_t *results;          /**< result info. */
62         unsigned            n_reg_results;
63         unsigned           *caller_saves;     /**< bitset of caller save registers */
64 };
65
66 /**
67  * Determine how function parameters and return values are passed.
68  * Decides what goes to register or to stack and what stack offsets/
69  * datatypes are used.
70  *
71  * @param function_type  the type of the caller/callee function
72  * @param caller         true for convention for the caller, false for callee
73  */
74 calling_convention_t *sparc_decide_calling_convention(ir_type *function_type,
75                                                       ir_graph *irg);
76
77 /**
78  * free memory used by a calling_convention_t
79  */
80 void sparc_free_calling_convention(calling_convention_t *cconv);
81
82 void sparc_cconv_init(void);
83
84 #endif