IJmp cannot do 8bit/16bit AM.
[libfirm] / ir / be / ia32 / ia32_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       Type definitions for ia32 node attributes.
23  * @author      Christian Wuerdig
24  * @version     $Id$
25  */
26 #ifndef FIRM_BE_IA32_IA32_NODES_ATTR_H
27 #define FIRM_BE_IA32_IA32_NODES_ATTR_H
28
29 #include "firm_types.h"
30 #include "../bearch_t.h"
31 #include "../bemachine.h"
32 #include "irnode_t.h"
33
34 enum {
35         ia32_pn_Cmp_unsigned = 0x1000,
36         ia32_pn_Cmp_float    = 0x2000,
37 };
38
39 typedef enum {
40         ia32_Normal,
41         ia32_AddrModeD,
42         ia32_AddrModeS
43 } ia32_op_type_t;
44
45 typedef enum {
46         ia32_am_none   = 0,
47         ia32_am_unary  = 1,
48         ia32_am_binary = 2
49 } ia32_am_type_t;
50
51 typedef enum {
52         match_commutative       = 1 << 0,   /**< inputs are commutative */
53         match_am_and_immediates = 1 << 1,   /**< node supports AM and immediate at
54                                                  the same time */
55         match_am                = 1 << 2,   /**< node supports (32bit) source AM */
56         match_8bit_am           = 1 << 3,   /**< node supports 8bit source AM */
57         match_16bit_am          = 1 << 4,   /**< node supports 16bit source AM */
58         match_immediate         = 1 << 5,   /**< node supports immediates */
59         match_8bit              = 1 << 6,   /**< supports 8 bit modes natively */
60         match_16bit             = 1 << 7,   /**< supports 16bit modes natively */
61         match_mode_neutral      = 1 << 8,   /**< 16 and 8 bit modes can be emulated
62                                                  by 32 bit operations */
63         match_try_am            = 1 << 9,   /**< only try to produce AM node, don't
64                                                  do anything if AM isn't possible */
65         match_two_users         = 1 << 10   /**< the instruction uses a load two times ... */
66 } match_flags_t;
67
68 typedef struct ia32_op_attr_t ia32_op_attr_t;
69 struct ia32_op_attr_t {
70         match_flags_t  flags;
71         unsigned       latency;
72 };
73
74 #ifndef NDEBUG
75 typedef enum {
76         IA32_ATTR_INVALID               = 0,
77         IA32_ATTR_ia32_attr_t           = 1 << 0,
78         IA32_ATTR_ia32_x87_attr_t       = 1 << 1,
79         IA32_ATTR_ia32_asm_attr_t       = 1 << 2,
80         IA32_ATTR_ia32_immediate_attr_t = 1 << 3,
81         IA32_ATTR_ia32_condcode_attr_t  = 1 << 4,
82         IA32_ATTR_ia32_copyb_attr_t     = 1 << 5,
83         IA32_ATTR_ia32_call_attr_t      = 1 << 6
84 } ia32_attr_type_t;
85 #endif
86
87 /**
88  * The generic ia32 attributes. Every node has them.
89  */
90 typedef struct ia32_attr_t ia32_attr_t;
91 struct ia32_attr_t {
92         except_attr  exc;               /**< the exception attribute. MUST be the first one. */
93         struct ia32_attr_data_bitfield {
94                 unsigned tp:3;                  /**< ia32 node type. */
95                 unsigned am_arity:2;            /**< Indicates the address mode type supported by this node. */
96                 unsigned am_scale:2;            /**< The address mode scale for index register. */
97                 unsigned am_sc_sign:1;          /**< The sign bit of the address mode symconst. */
98
99                 unsigned use_frame:1;           /**< Indicates whether the operation uses the frame pointer or not. */
100                 unsigned has_except_label:1;        /**< Set if this node needs a label because of possible exception. */
101
102                 unsigned is_commutative:1;      /**< Indicates whether op is commutative or not. */
103
104                 unsigned need_stackent:1;       /**< Set to 1 if node need space on stack. */
105                 unsigned need_64bit_stackent:1; /**< needs a 64bit stack entity (see double->unsigned int conv) */
106                 unsigned need_32bit_stackent:1; /**< needs a 32bit stack entity */
107                 unsigned ins_permuted : 1;      /**< inputs of node have been permuted
108                                                      (for commutative nodes) */
109                 unsigned cmp_unsigned : 1;      /**< compare should be unsigned */
110                 unsigned is_reload : 1;         /**< node performs a reload */
111                 unsigned is_spill : 1;
112                 unsigned is_remat : 1;
113         } data;
114
115         int        am_offs;       /**< offsets for AddrMode */
116         ir_entity *am_sc;         /**< SymConst for AddrMode */
117
118         ir_mode   *ls_mode;       /**< Load/Store mode: This is the mode of the
119                                        value that is manipulated by this node. */
120
121         ir_entity *frame_ent; /**< the frame entity attached to this node */
122
123         const be_execution_unit_t ***exec_units; /**< list of units this operation can be executed on */
124
125         const arch_register_req_t **in_req;  /**< register requirements for arguments */
126         const arch_register_req_t **out_req; /**< register requirements for results */
127
128         ir_label_t        exc_label;       /**< the exception label iff this instruction can throw an exception */
129
130 #ifndef NDEBUG
131         const char       *orig_node;      /**< holds the name of the original ir node */
132         unsigned          attr_type;      /**< bitfield indicating the attribute type */
133 #endif
134 };
135 COMPILETIME_ASSERT(sizeof(struct ia32_attr_data_bitfield) <= 4, attr_bitfield);
136
137 /**
138  * The attributes for a Call node.
139  */
140 typedef struct ia32_call_attr_t ia32_call_attr_t;
141 struct ia32_call_attr_t {
142         ia32_attr_t  attr;    /**< generic attribute */
143         unsigned     pop;     /**< number of bytes that get popped by the callee */
144         ir_type     *call_tp; /**< The call type, copied from the original Call node. */
145 };
146
147 /**
148  * The attributes for nodes with condition code.
149  */
150 typedef struct ia32_condcode_attr_t ia32_condcode_attr_t;
151 struct ia32_condcode_attr_t {
152         ia32_attr_t  attr;      /**< generic attribute */
153         long         pn_code;   /**< projnum "types" (e.g. indicate compare operators */
154 };
155
156 /**
157  * The attributes for CopyB code.
158  */
159 typedef struct ia32_copyb_attr_t ia32_copyb_attr_t;
160 struct ia32_copyb_attr_t {
161         ia32_attr_t  attr;      /**< generic attribute */
162         unsigned     size;      /**< size of copied block */
163 };
164
165 /**
166  * The attributes for immediates.
167  */
168 typedef struct ia32_immediate_attr_t ia32_immediate_attr_t;
169 struct ia32_immediate_attr_t {
170         ia32_attr_t  attr;              /**< generic attribute */
171         ir_entity   *symconst;          /**< An entity if any. */
172         long         offset;            /**< An offset if any. */
173         unsigned     sc_sign:1;         /**< The sign bit of the symconst. */
174 };
175
176 /**
177  * The attributes for x87 nodes.
178  */
179 typedef struct ia32_x87_attr_t ia32_x87_attr_t;
180 struct ia32_x87_attr_t {
181         ia32_attr_t            attr;      /**< the generic attribute */
182         const arch_register_t *x87[3];    /**< register slots for x87 register */
183 };
184
185 typedef struct ia32_asm_reg_t ia32_asm_reg_t;
186 struct ia32_asm_reg_t {
187         unsigned                   use_input  : 1; /* use input or output pos */
188         unsigned                   valid      : 1;
189         unsigned                   memory     : 1;
190         unsigned                   dummy_fill : 13;
191         unsigned                   inout_pos  : 16; /* in/out pos where the
192                                                        register is assigned */
193         const ir_mode             *mode;
194 };
195
196 /**
197  * The attributes for ASM nodes.
198  */
199 typedef struct ia32_asm_attr_t ia32_asm_attr_t;
200 struct ia32_asm_attr_t {
201         ia32_x87_attr_t       x87_attr;
202         ident                *asm_text;
203         const ia32_asm_reg_t *register_map;
204 };
205
206 /* the following union is necessary to indicate to the compiler that we might want to cast
207  * the structs (we use them to simulate OO-inheritance) */
208 union allow_casts_attr_t_ {
209         ia32_attr_t            attr;
210         ia32_call_attr_t       call_attr;
211         ia32_condcode_attr_t   cc_attr;
212         ia32_copyb_attr_t      cpy_attr;
213         ia32_x87_attr_t        x87_attr;
214         ia32_asm_attr_t        asm_attr;
215         ia32_immediate_attr_t  immediate_attr;
216 };
217
218 #ifndef NDEBUG
219 #define CAST_IA32_ATTR(type,ptr)        (assert( ((const ia32_attr_t*)(ptr))->attr_type & IA32_ATTR_ ## type ), (type*) (ptr))
220 #define CONST_CAST_IA32_ATTR(type,ptr)  (assert( ((const ia32_attr_t*)(ptr))->attr_type & IA32_ATTR_ ## type ), (const type*) (ptr))
221 #else
222 #define CAST_IA32_ATTR(type,ptr)        ((type*) (ptr))
223 #define CONST_CAST_IA32_ATTR(type,ptr)  ((const type*) (ptr))
224 #endif
225
226 #endif