b7f4aa45df26d5973d22fad3b8b5b009aeef81e0
[libfirm] / ir / be / sparc / sparc_nodes_attr.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   attributes attached to all sparc nodes
23  * @version $Id$
24  */
25 #ifndef FIRM_BE_SPARC_SPARC_NODES_ATTR_H
26 #define FIRM_BE_SPARC_SPARC_NODES_ATTR_H
27
28 #include "../bearch.h"
29
30 typedef struct sparc_attr_t  sparc_attr_t;
31
32 /**
33  * base SPARC attribute
34  */
35 struct sparc_attr_t
36 {
37         except_attr                 exc;                /**< the exception attribute. MUST be the first one. */
38         const arch_register_req_t **in_req;             /**< register requirements for arguments */
39         int                         immediate_value;    /* immediate values */
40         bool                        is_load_store;
41
42         ir_entity                  *immediate_value_entity; /* hack for now */
43 };
44
45 /**
46  * attribute for FP immediate instruction
47  */
48 typedef struct sparc_fp_attr_t sparc_fp_attr_t;
49 struct sparc_fp_attr_t {
50         sparc_attr_t  base;         /**< generic attribute */
51         ir_mode      *fp_mode;
52 };
53
54 typedef struct sparc_fp_conv_attr_t sparc_fp_conv_attr_t;
55 struct sparc_fp_conv_attr_t {
56         sparc_attr_t  base;
57         ir_mode      *src_mode;
58         ir_mode      *dest_mode;
59 };
60
61 /**
62  * attribute for save instruction
63  */
64 typedef struct sparc_save_attr_t sparc_save_attr_t;
65 struct sparc_save_attr_t {
66         sparc_attr_t  base;              /**< generic attribute */
67         int           initial_stacksize; /* the min. stack size required by the sparc ABI */
68 };
69
70 /**
71  * attributes for load/store adressing modes
72  */
73 typedef struct sparc_load_store_attr_t sparc_load_store_attr_t;
74 struct sparc_load_store_attr_t {
75         sparc_attr_t  base;    /**< generic attribute */
76         ir_mode      *load_store_mode;
77         ir_entity    *entity;
78         int           entity_sign;
79         long          offset;
80         bool          is_frame_entity;
81 };
82
83 /**
84  * attributes for SymConsts
85  */
86 typedef struct sparc_symconst_attr_t sparc_symconst_attr_t;
87 struct sparc_symconst_attr_t {
88         sparc_attr_t  base;    /**< generic attribute */
89         ir_entity    *entity;
90         int           fp_offset;
91 };
92
93 /**
94  * attributes for conditional jumps
95  */
96 typedef struct sparc_jmp_cond_attr_t sparc_jmp_cond_attr_t;
97 struct sparc_jmp_cond_attr_t {
98         sparc_attr_t base;    /**< generic attribute */
99         int          proj_num;
100         bool         is_unsigned : 1;
101 };
102
103 /**
104  * attributes for switch jumps
105  */
106 typedef struct sparc_jmp_switch_attr_t sparc_jmp_switch_attr_t;
107 struct sparc_jmp_switch_attr_t {
108         sparc_attr_t  base;    /**< generic attribute */
109         int           n_projs;
110         long          default_proj_num;
111 };
112
113 #endif