remove typedefs for already removed types
[libfirm] / include / libfirm / irmode.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   Data modes of operations.
23  * @author  Martin Trapp, Christian Schaefer, Goetz Lindenmaier, Mathias Heil,
24  *          Michael Beck
25  */
26 #ifndef FIRM_IR_IRMODE_H
27 #define FIRM_IR_IRMODE_H
28
29 #include "firm_types.h"
30 #include "begin.h"
31
32 /**
33  * @defgroup ir_mode Value Modes
34  *  This module specifies the modes that type the firm nodes.  It defines
35  *  a datasturcture that describes a mode and implements constructors and
36  *  access routines to this datastructure. Further it defines a set of
37  *  predefined modes.
38  *
39  *  SEE ALSO:
40  *    UKA tech report 1999-44 for more information about modes.
41  * @{
42  */
43
44 /**
45  * These values represent the different arithmetic operations possible with a
46  * mode.
47  */
48 typedef enum ir_mode_arithmetic {
49         irma_uninitialized = 0,
50         irma_none = 1,            /**< For modes for which no representation is
51                                        specified. These are modes of sort auxiliary,
52                                        internal_boolean and character. */
53         irma_twos_complement = 2, /**< Values of the mode are represented as two's
54                                        complement. Only legal for modes of sort
55                                        int_number and reference. */
56         irma_ieee754 = 256,       /**< Values of the mode are represented according
57                                        to ieee754 floating point standard.  Only
58                                        legal for modes of sort float_number. */
59         irma_x86_extended_float,  /**< x86 extended floatingpoint values */
60         irma_last = irma_x86_extended_float,
61 } ir_mode_arithmetic;
62
63 /**
64  * Creates a new mode.
65  *
66  * @param name          the name of the mode to be created
67  * @param arithmetic    arithmetic operations possible with a mode
68  * @param bit_size      number of bits this mode allocate
69  * @param sign          non-zero if this is a signed mode
70  * @param modulo_shift  Is ignored for modes other than integer.
71  *
72  * This function constructs a new mode given by the parameters.
73  * If the parameters match an already defined mode, this mode is returned
74  * (including the default modes).
75  *
76  * @return
77  *   The new mode or NULL on error.
78  */
79 FIRM_API ir_mode *new_int_mode(const char *name,
80                                ir_mode_arithmetic arithmetic,
81                                unsigned bit_size, int sign,
82                                unsigned modulo_shift);
83
84 /**
85  * Create a new reference mode.
86  *
87  * Reference modes are always unsigned.
88  */
89 FIRM_API ir_mode *new_reference_mode(const char *name,
90                                      ir_mode_arithmetic arithmetic,
91                                      unsigned bit_size,
92                                      unsigned modulo_shift);
93
94 /**
95  * Create a new ieee754 float mode.
96  *
97  * float-modes are always signed and have no modulo shift.
98  * @param name          the name of the mode to be created
99  * @param arithmetic    arithmetic/representation of the mode
100  * @param exponent_size size of exponent in bits
101  * @param mantissa_size size of mantissa in bits
102  */
103 FIRM_API ir_mode *new_float_mode(const char *name,
104                                  ir_mode_arithmetic arithmetic,
105                                  unsigned exponent_size,
106                                  unsigned mantissa_size);
107
108 /**
109  * Checks whether a pointer points to a mode.
110  *
111  * @param thing     an arbitrary pointer
112  *
113  * @return
114  *     true if the thing is a mode, else false
115  */
116 FIRM_API int is_mode(const void *thing);
117
118 /** Returns the ident* of the mode */
119 FIRM_API ident *get_mode_ident(const ir_mode *mode);
120
121 /** Returns the null-terminated name of this mode. */
122 FIRM_API const char *get_mode_name(const ir_mode *mode);
123
124 /** Returns the size of values of the mode in bits. */
125 FIRM_API unsigned get_mode_size_bits(const ir_mode *mode);
126
127 /** Returns the size of values of the mode in bytes.
128  *  If the size is not dividable by 8 returns -1. */
129 FIRM_API unsigned get_mode_size_bytes(const ir_mode *mode);
130
131 /** Returns the signess of a mode.
132  *
133  * Returns the signess of a mode: 1 if mode is signed. */
134 FIRM_API int get_mode_sign(const ir_mode *mode);
135
136 /** Returns the arithmetic of a mode */
137 FIRM_API ir_mode_arithmetic get_mode_arithmetic(const ir_mode *mode);
138
139 /** Get the modulo shift attribute.
140  *
141  *  Attribute modulo shift specifies for modes of kind irms_int_number
142  *  whether shift applies modulo to value of bits to shift.  Zero for
143  *  modes that are not integer.
144  */
145 FIRM_API unsigned int get_mode_modulo_shift(const ir_mode *mode);
146
147 /** Returns the stored intermediate information. */
148 FIRM_API void *get_mode_link(const ir_mode *mode);
149
150 /** Stores new intermediate information. */
151 FIRM_API void set_mode_link(ir_mode *mode, void *l);
152
153 /**
154  * Returns the smallest representable value of a given mode.
155  *
156  * For modes of the sort float_number this is the most negative value
157  * bigger than -infinite.
158  */
159 FIRM_API ir_tarval *get_mode_min(ir_mode *mode);
160
161 /**
162  * Returns the biggest representable value o f a given mode.
163  *
164  * For modes of the sort float_number this is the largest value lower
165  * than infinite.
166  */
167 FIRM_API ir_tarval *get_mode_max(ir_mode *mode);
168
169 /**
170  * Returns the value Zero represented in this mode.
171  *
172  * Zero is the additive neutral element and as such
173  * is defined only for modes allowing addition, i.e.
174  * op_pin_state_floats and ints, and references (NULL-Pointer)
175  * else returns tarval_bad.
176  */
177 FIRM_API ir_tarval *get_mode_null(ir_mode *mode);
178
179 /**
180  * Returns the value One, represented in this mode.
181  *
182  * One, being the multiplicative neutral element,
183  * is defined only for modes allowing multiplication,
184  * i.e. ints and floats.
185  */
186 FIRM_API ir_tarval *get_mode_one(ir_mode *mode);
187
188 /**
189  * Returns the value Minus One, represented in this mode.
190  *
191  * Minus One is defined only for modes allowing
192  * multiplication with signed values, i.e. signed ints and floats.
193  */
194 FIRM_API ir_tarval *get_mode_minus_one(ir_mode *mode);
195
196 /**
197  * Returns the value where all bits are One, represented in this mode.
198  *
199  * All One is defined only for modes integer, reference and boolean modes
200  */
201 FIRM_API ir_tarval *get_mode_all_one(ir_mode *mode);
202
203 /**
204  * Returns the positive infinite value of a mode.
205  *
206  * This is only valid for float_numbers, other modes
207  * will result in tarval_bad.
208  */
209 FIRM_API ir_tarval *get_mode_infinite(ir_mode *mode);
210
211 /**
212  * Returns the NAN value of a given mode.
213  *
214  * This is only valid for float_numbers, other modes
215  * will result in tarval_bad.
216  */
217 FIRM_API ir_tarval *get_mode_NAN(ir_mode *mode);
218
219 FIRM_API ir_mode *mode_M; /**< memory */
220
221 FIRM_API ir_mode *mode_F;   /**< ieee754 binary32 float (single precision) */
222 FIRM_API ir_mode *mode_D;   /**< ieee754 binary64 float (double precision) */
223 FIRM_API ir_mode *mode_Q;   /**< ieee754 binary128 float (quadruple precision)*/
224 FIRM_API ir_mode *mode_Bs;  /**< int8 */
225 FIRM_API ir_mode *mode_Bu;  /**< uint8 */
226 FIRM_API ir_mode *mode_Hs;  /**< int16 */
227 FIRM_API ir_mode *mode_Hu;  /**< uint16 */
228 FIRM_API ir_mode *mode_Is;  /**< int32 */
229 FIRM_API ir_mode *mode_Iu;  /**< uint32 */
230 FIRM_API ir_mode *mode_Ls;  /**< int64 */
231 FIRM_API ir_mode *mode_Lu;  /**< uint64 */
232 FIRM_API ir_mode *mode_LLs; /**< int128 */
233 FIRM_API ir_mode *mode_LLu; /**< uint128 */
234
235 FIRM_API ir_mode *mode_P;   /**< pointer */
236 FIRM_API ir_mode *mode_P_code; /**< A pointer mode that is set by the client of libfirm.  This mode
237                                   represents the pointer size of the target machine code addresses. Is initialized
238                                   to mode_P. */
239 FIRM_API ir_mode *mode_P_data; /**< A pointer mode that is set by the client of libfirm.  This mode
240                                   represents the pointer size of the target machine data addresses. Is initialized
241                                   to mode_P. */
242
243 FIRM_API ir_mode *mode_b;  /**< internal boolean */
244
245 FIRM_API ir_mode *mode_X;  /**< execution */
246 FIRM_API ir_mode *mode_BB; /**< block */
247
248 FIRM_API ir_mode *mode_T;  /**< tuple (none) */
249 FIRM_API ir_mode *mode_ANY;/**< undefined mode */
250 FIRM_API ir_mode *mode_BAD;/**< bad mode */
251
252 FIRM_API ir_mode *get_modeF(void);
253 FIRM_API ir_mode *get_modeD(void);
254 FIRM_API ir_mode *get_modeQ(void);
255 FIRM_API ir_mode *get_modeBs(void);
256 FIRM_API ir_mode *get_modeBu(void);
257 FIRM_API ir_mode *get_modeHs(void);
258 FIRM_API ir_mode *get_modeHu(void);
259 FIRM_API ir_mode *get_modeIs(void);
260 FIRM_API ir_mode *get_modeIu(void);
261 FIRM_API ir_mode *get_modeLs(void);
262 FIRM_API ir_mode *get_modeLu(void);
263 FIRM_API ir_mode *get_modeLLs(void);
264 FIRM_API ir_mode *get_modeLLu(void);
265 FIRM_API ir_mode *get_modeP(void);
266 FIRM_API ir_mode *get_modeb(void);
267 FIRM_API ir_mode *get_modeX(void);
268 FIRM_API ir_mode *get_modeBB(void);
269 FIRM_API ir_mode *get_modeM(void);
270 FIRM_API ir_mode *get_modeT(void);
271 FIRM_API ir_mode *get_modeANY(void);
272 FIRM_API ir_mode *get_modeBAD(void);
273
274 /** Returns the machine specific pointer mode for code addresses. */
275 FIRM_API ir_mode *get_modeP_code(void);
276
277 /** Returns the machine specific pointer mode for data addresses. */
278 FIRM_API ir_mode *get_modeP_data(void);
279
280 /**
281  * Sets the machine specific pointer mode for code addresses.
282  * If not set, the predefined mode mode_P will be used.
283  */
284 FIRM_API void set_modeP_code(ir_mode *p);
285
286 /**
287  * Sets the machine specific pointer mode for data addresses.
288  * If not set, the predefined mode mode_P will be used.
289  */
290 FIRM_API void set_modeP_data(ir_mode *p);
291
292 /*@{
293    Functions to check, whether a mode is signed, float, int, character,
294    reference, num, data, datab or dataM.
295
296    For more exact definitions read the corresponding pages
297    in the firm documentation or the following enumeration
298
299    The set of "float" is defined as:
300    float = {irm_F, irm_D, irm_E}
301
302    The set of "int" is defined as:
303    int   = {irm_Bs, irm_Bu, irm_Hs, irm_Hu, irm_Is, irm_Iu, irm_Ls, irm_Lu}
304
305    The set of "reference" is defined as:
306    reference  = {irm_P}
307
308    The set of "num" is defined as:
309    num   = {float || int}
310
311    The set of "data" is defined as:
312    data  =  {num || reference}
313
314    The set of "datab" is defined as:
315    datab =  {data || irm_b }
316
317    The set of "dataM" is defined as:
318    dataM =  {data || irm_M}
319 */
320
321 FIRM_API int mode_is_signed (const ir_mode *mode);
322 FIRM_API int mode_is_float (const ir_mode *mode);
323 FIRM_API int mode_is_int (const ir_mode *mode);
324 FIRM_API int mode_is_reference (const ir_mode *mode);
325 FIRM_API int mode_is_num (const ir_mode *mode);
326 FIRM_API int mode_is_data (const ir_mode *mode);
327 FIRM_API int mode_is_datab (const ir_mode *mode);
328 FIRM_API int mode_is_dataM (const ir_mode *mode);
329 /*@}*/
330
331 /**
332  * Returns true if sm can be converted to lm without loss
333  * according to firm definition.
334  *
335  * Note that mode_Iu is NOT smaller than mode_Is here.
336  *
337  * @see values_in_mode()
338  */
339 FIRM_API int smaller_mode(const ir_mode *sm, const ir_mode *lm);
340
341 /**
342  * Returns true if a value of mode sm can be converted into mode lm
343  * and backwards without loss.
344  *
345  * Note that mode_Iu values CAN be converted in mode_Is and back.
346  *
347  * @see smaller_mode()
348  */
349 FIRM_API int values_in_mode(const ir_mode *sm, const ir_mode *lm);
350
351 /**
352  * Returns a matching unsigned mode for a given integer signed mode.
353  * Returns NULL if no matching mode exists.
354  */
355 FIRM_API ir_mode *find_unsigned_mode(const ir_mode *mode);
356
357 /**
358  * Returns a matching signed mode for a given integer unsigned mode.
359  * Returns NULL if no matching mode exists.
360  */
361 FIRM_API ir_mode *find_signed_mode(const ir_mode *mode);
362
363 /**
364  * Returns an integer mode with 2*n bits for a given integer mode with n bits.
365  * Returns NULL if no matching mode exists.
366  */
367 FIRM_API ir_mode *find_double_bits_int_mode(const ir_mode *mode);
368
369 /**
370  * Returns non-zero if the given mode honors signed zero's, i.e.,
371  * a +0 and a -0 exists and handled differently.
372  */
373 FIRM_API int mode_honor_signed_zeros(const ir_mode *mode);
374
375 /**
376  * Returns non-zero if the given mode might overflow on unary Minus.
377  */
378 FIRM_API int mode_overflow_on_unary_Minus(const ir_mode *mode);
379
380 /**
381  * Returns non-zero if the mode has a reversed wrap-around
382  * logic, especially (a + x) - x == a.
383  * This is normally true for integer modes, not for floating
384  * point modes.
385  */
386 FIRM_API int mode_wrap_around(const ir_mode *mode);
387
388 /**
389  * Return the signed integer equivalent mode for an reference mode.
390  */
391 FIRM_API ir_mode *get_reference_mode_signed_eq(ir_mode *mode);
392
393 /**
394  * Sets the signed integer equivalent mode for an reference mode.
395  */
396 FIRM_API void set_reference_mode_signed_eq(ir_mode *ref_mode, ir_mode *int_mode);
397
398 /**
399  * Return the unsigned integer equivalent mode for an reference mode.
400  */
401 FIRM_API ir_mode *get_reference_mode_unsigned_eq(ir_mode *mode);
402
403 /**
404  * Sets the unsigned integer equivalent mode for an reference mode.
405  */
406 FIRM_API void set_reference_mode_unsigned_eq(ir_mode *ref_mode, ir_mode *int_mode);
407
408 /**
409  * Return size of mantissa in bits (for float modes)
410  */
411 FIRM_API unsigned get_mode_mantissa_size(const ir_mode *mode);
412
413 /**
414  * Return size of exponent in bits (for float modes)
415  */
416 FIRM_API unsigned get_mode_exponent_size(const ir_mode *mode);
417
418 /**
419  * Returns non-zero if the cast from mode src to mode dst is a
420  * reinterpret cast (ie. only the bit pattern is reinterpreted,
421  * no conversion is done)
422  */
423 FIRM_API int is_reinterpret_cast(const ir_mode *src, const ir_mode *dst);
424
425 /**
426  * Returns the primitive type matching the given mode
427  */
428 FIRM_API ir_type *get_type_for_mode(const ir_mode *mode);
429
430 /** @} */
431
432 #include "end.h"
433
434 #endif