a4efb103af9b56c4c4f6288656d3e9d2bc6bfc2c
[libfirm] / ir / tv / tv.h
1 /**
2  * @file tv.h
3  *
4  * Declarations for Target Values.
5  */
6
7 /* $Id$ */
8
9 /*
10 Discussion of new interface, proposals by Prof. Waite:
11 (email of 13.6.2001)
12 > 1. You say that you plan to replace the tv module.  That replacement is
13 >    absolutely essential for an ANSI C translator:  Section 6.1.3.2 of the
14 >    standard says that the representation of an integer_constant depends
15 >    upon its value as well as any suffixes that are attached to it.  The
16 >    possible Firm modes for such a constant are i, I, l, and L.  The
17 >    current tv module provides only one integer conversion routine, and
18 >    that requires conversion by the client.  Since the type of the value
19 >    argument is long, this may preclude the representation of an unsigned
20 >    long constant.
21 >
22 >    There is a similar problem with floating constants.  Floating
23 >    constants can be suffixed in C, and the mode depends upon the suffix.
24 >    It can indicate that the constant is of type long double, which your
25 >    current tv module is incapable of representing.
26 >
27 >    Your tv module interface accepts two kinds of information: modes and
28 >    values.  Values obtained from the program text might be uninterpreted
29 >    strings, strings interpreted as integers, and strings interpreted as
30 >    reals.  Values provided by the compiler are usually integers.  Modes are
31 >    always Firm modes.  It seems to me that the tv module should provide
32 >    tarval* constructors for three of the four kinds of values.  Each of these
33 >    constructors should have an ir_mode parameter and one or more parameters
34 >    appropriate for the kind of value.  As is currently the case, one
35 >    constructor should be provided for both compiler-generated integers and
36 >    source strings interpreted as integers.  (This avoids problems of
37 >    different conversion radices -- the client does the conversion.)  For
38 >    symmetry, the constructor for source strings interpreted as reals should
39 >    accept a long double parameter and require the client to do the
40 >    conversion.
41
42 */
43
44 #ifndef _TV_H_
45 #define _TV_H_
46
47 # include "irmode.h"
48 # include "entity.h"
49 # include "irnode.h"    /* for pnc_number enum */
50
51 /****h* libfirm/tv
52  *
53  * NAME
54  *    tv -- TargetValue, short tarval.
55  *   Internal representation for machine values.
56  *
57  * AUTHORS
58  *    Christian von Roques
59  *    Matthias Heil
60  *
61  * DESCRIPTION
62  *    Tarvals represent target machine values.  They are typed by modes.
63  *   Tarvals only represent values of mode_sort:
64  *     int_number,
65  *     float_number,
66  *     boolean,
67  *     reference,
68  *     character
69  *
70  *   In case of references the module accepts an entity to represent the
71  *   value.
72  *    Furthermore, computations and conversions of these values can
73  *   be performed.
74  *
75  * USES
76  *    This module is closely related to the irmode module, as the modes
77  *   defined there are thoroughly used throughout the whole module.
78  *    Also, the comparison functions rely on the definition of comparison
79  *   values in the irnode module.
80  *
81  * HISTORY
82  *    The original tv module originated in the fiasco compiler written ...
83  *    This is the new version, described in the tech report 1999-14 by ...
84  *
85  * SEE ALSO
86  *    Techreport 1999-14
87  *    irmode.h for the modes definitions
88  *    irnode.h for the pnc_numbers table
89  *
90  *    tarval_init1 and tarval_init2 for initialization of the
91  *   module
92  *
93  ******/
94
95 #ifndef _TARVAL_TYPEDEF_
96 #define _TARVAL_TYPEDEF_
97   typedef struct tarval tarval;
98 #endif
99
100 /* ************************ Constructors for tarvals ************************ */
101
102 /**
103  * Constructor function for new tarvals.
104  *
105  * @param str   The string representing the target value
106  * @param len   The length of the string
107  * @param mode  The mode requested for the result tarval
108  *
109  * This function creates a new tarval representing the value represented
110  * by a CString, aka char array. If a tarval representing this value already
111  * exists, this tarval is returned instead of a new one. So tarvals are
112  * directly comparable since their representation is unique.
113  *
114  * This function accepts the following strings:
115  *
116  * if mode is int_number:
117  *  - 0(x|X)[0-9a-fA-F]+ (hexadecimal representation)
118  *  - 0[0-7]*            (octal representation)
119  *  - (+|-)?[1-9][0-9]*  (decimal representation)
120  *
121  * if mode if float_number:
122  *  - (+|-)?(decimal int) (. (decimal int))? ((e|E)(+|-)?(decimal int))?
123  *
124  * if mode is boolean: true, True, TRUE ... False... 0, 1,
125  *
126  * if mode is reference: hexadecimal of decimal number as int
127  *
128  * if mode is character: hex or dec
129  *
130  * Leading and/or trailing spaces are ignored
131  *
132  * @return
133  *   A tarval of proper type representing the requested value is returned.
134  *   Tarvals are unique, so for any value/mode pair at most one tarval will
135  *   exist, which will be returned upon further requests with an identical
136  *   value/mode pair.
137  *
138  * @note
139  *   If the string is not representable in the given mode an assertion is
140  *   thrown in assert build.
141  *
142  * @sa
143  *   irmode.h for predefined modes
144  *   new_tarval_from_long()
145  *   new_tarval_from_double()
146  */
147 tarval *new_tarval_from_str(const char *str, size_t len, ir_mode *mode);
148
149 /**
150  * Constructor function for new tarvals
151  *
152  * @param l     The long representing the value
153  * @param mode  The mode requested for the result tarval
154  *
155  * This function creates a new tarval representing the value represented
156  * by a long integer. If a tarval representing this value already exists,
157  * this tarval is returned instead of a new one. So tarvals are directly
158  * comparable since their representation is unique.
159  *
160  * @return
161  *   A tarval of proper type representing the requested value is returned.
162  *   Tarvals are unique, so for any value/mode pair at most one tarval will
163  *   exist, which will be returned upon further requests with an identical
164  *   value/mode pair.
165  *
166  * @note
167  *   If the long is not representable in the given mode an assertion is
168  *   thrown in assert build.
169  *
170  * @sa
171  *   irmode.h for predefined modes
172  *   new_tarval_from_str()
173  *   new_tarval_from_double()
174  *
175  */
176 tarval *new_tarval_from_long(long l, ir_mode *mode);
177
178 /**
179  * This returns a long int with the value represented value, or
180  * gibberish, depending on the size of long int and the size of the
181  * stored value. It works for e.g. 1 as mode_Ls, but might not work for
182  * get_mode_max(mode_Ls).
183  * This will overflow silently, so use only if you know what
184  * you are doing! (better check with tarval_is_long()...)
185  */
186 long tarval_to_long(tarval *tv);
187
188 /**
189  * This validates if tarval_to_long() will return a satisfying
190  * result. I.e. if tv is an int_number and between min, max
191  * of long int (signed!)
192  */
193 int tarval_is_long(tarval *tv);
194
195 /**
196  * Constructor function for new tarvals.
197  *
198  * @param d     The long double representing the value
199  * @param mode  The mode requested for the result tarval
200  *
201  * This function creates a new tarval representing the value represented
202  * by a long double. If a tarval representing this value already exists,
203  * this tarval is returned instead of a new one. So tarvals are directly
204  * comparable since their representation is unique.
205  * Only modes of sort float_number can be constructed this way.
206  *
207  * @return
208  *   A tarval of proper type representing the requested value is returned.
209  *   Tarvals are unique, so for any value/mode pair at most one tarval will
210  *   exist, which will be returned upon further requests with an identical
211  *   value/mode pair.
212  *
213  * @note
214  *   If the long double is not representable in the given mode an assertion
215  *   is thrown. This will happen for any mode not of sort float_number.
216  *
217  * @sa
218  *   irmode.h for predefined values
219  *   new_tarval_from_str()
220  *   new_tarval_from_long()
221  */
222 tarval *new_tarval_from_double(long double d, ir_mode *mode);
223
224 /**
225  * This returns a double with the value represented value, or
226  * gibberish, depending on the size of double and the size of the
227  * stored value.
228  * This will overflow silently, so use only if you know what
229  * you are doing! (better check with tarval_is_long...)
230  */
231 long double tarval_to_double(tarval *tv);
232
233 /**
234  * This validates if tarval_to_double() will return a satisfying
235  * result. I.e. if tv is an float_number and between min, max
236  * of double
237  */
238 int tarval_is_double(tarval *tv);
239
240 /**
241  * Construct a tarval that represents the address of the entity.
242  *
243  * The address must be constant, the entity must have as owner the global type.
244  */
245 tarval *new_tarval_from_entity (entity *ent, ir_mode *mode);
246
247 /**
248  * Returns the associated entity of a tarval.
249  */
250 entity *tarval_to_entity(tarval *tv);
251
252 /**
253  * Returns non-zero if a the given tarval represents an entity.
254  */
255 int tarval_is_entity(tarval *tv);
256
257 /** ********** Access routines for tarval fields ********** **/
258
259 /*
260  * NAME
261  *   get_tarval_mode
262  *   get_tarval_ ...
263  *
264  * SYNOPSIS
265  *   ir_mode *get_tarval_mode(tarval *tv)
266  *   ...
267  *
268  * DESCRIPTION
269  *    These are access function for tarval struct members. It is encouraged
270  *   to use them instead of direct access to the struct fields.
271  *
272  * PARAMETERS
273  *   tv - The tarval to access fields of
274  *
275  * RESULT
276  *   get_tv_mode: The mode of the tarval
277  *
278  * SEE ALSO
279  *   the struct tarval
280  */
281
282 /** Returns the mode of the tarval. */
283
284 /* Testing properties of the represented values */
285
286 /** Returns 0 if tv is positive, else > 0.
287  *
288  * @todo
289  *   not tested!
290  */
291 int tarval_is_negative(tarval *a);
292
293 /** The 'bad' tarval. */
294 extern tarval *tarval_bad;
295 /** Returns the 'bad tarval. */
296 tarval *get_tarval_bad(void);
297
298 /** The 'undefined' tarval. */
299 extern tarval *tarval_undefined;
300 /** Returns the 'undefined' tarval. */
301 tarval *get_tarval_undefined(void);
302
303 /** The mode_b tarval 'false'. */
304 extern tarval *tarval_b_false;
305 /** Returns the mode_b tarval 'false'. */
306 tarval *get_tarval_b_false(void);
307
308 /** The mode_b tarval 'true'. */
309 extern tarval *tarval_b_true;
310 /** Returns the mode_b tarval 'true'. */
311 tarval *get_tarval_b_true(void);
312
313 /** The 'void' pointer tarval. */
314 extern tarval *tarval_P_void;
315 /** Returns the 'void' pointer tarval. */
316 tarval *get_tarval_P_void(void);
317
318 /* These functions calculate and return a tarval representing the requested
319  * value.
320  * The functions get_mode_{Max,Min,...} return tarvals retrieved from these
321  * functions, but these are stored on initialization of the irmode module and
322  * therefore the irmode functions should be prefered to the functions below. */
323
324 /** Returns the maximum value of a given mode. */
325 tarval *get_tarval_max(ir_mode *mode);
326
327 /** Returns the minimum value of a given mode. */
328 tarval *get_tarval_min(ir_mode *mode);
329
330 /** Returns the 0 value (additive neutral) of a given mode. */
331 tarval *get_tarval_null(ir_mode *mode);
332
333 /** Returns the 1 value (multiplicative neutral) of a given mode. */
334 tarval *get_tarval_one(ir_mode *mode);
335
336 /** Return quite nan for float_number modes. */
337 tarval *get_tarval_nan(ir_mode *mode);
338
339 /** Return +inf for float_number modes. */
340 tarval *get_tarval_inf(ir_mode *mode);
341
342 /* ******************** Arithmethic operations on tarvals ******************** */
343
344 /**
345  * Compares two tarvals
346  *
347  * Compare a with b and return a pnc_number describing the relation
348  * between a and b.  This is either Uo, Lt, Eq, Gt, or False if a or b
349  * are symbolic pointers which can not be compared at all.
350  *
351  * @param a   A tarval to be compared
352  * @param b   A tarval to be compared
353  *
354  * @return
355  *   The pnc_number best describing the relation between a and b is returned.
356  *   This means the mode with the least bits set is returned, e.g. if the
357  *   tarvals are equal the pnc_number 'Eq' is returned, not 'Ge' which
358  *   indicates 'greater or equal'
359  *
360  * @sa
361  *    irnode.h for the definition of pnc_numbers
362  */
363 pnc_number tarval_cmp(tarval *a, tarval *b);
364
365 /**
366  * Converts a tarval to another mode.
367  *
368  * Convert tarval 'src' to mode 'mode', this will suceed if and only if mode
369  * 'mode' is wider than the mode of src, as defined in the firm documentation
370  * and as returned by the function mode_is_smaller defined in irmode.h.
371  *
372  * @param src    The tarval to convert
373  * @param mode   Tho mode to convert to
374  *
375  * @return
376  *   If a tarval of mode 'mode' with the result of the conversion of the 'src'
377  *   tarvals value already exists, it will be returned, else a new tarval is
378  *   constructed and returned
379  *
380  * @note
381  *    Illegal conversations will trigger an assertion
382  *
383  * @sa
384  *    FIRM documentation for conversion rules
385  *    mode_is_smaller defined in irmode.h
386  */
387 tarval *tarval_convert_to(tarval *src, ir_mode *m);
388
389 /*
390  * These function implement basic computations representable as opcodes
391  * in FIRM nodes.
392  *
393  * PARAMETERS
394  *    tarval_neg:
395  *    traval_abs:
396  *      a - the tarval to operate on
397  *
398  *    all oters:
399  *      a - the first operand tarval
400  *      b - the second operand tarval
401  *
402  * RESULT
403  *    If neccessary a new tarval is constructed for the resulting value,
404  *   or the one already carrying the computation result is retrieved and
405  *   returned as result.
406  *
407  * NOTES
408  *   The order the arguments are given in is important, imagine postfix
409  *   notation.
410  *   Illegal operations will trigger an assertion.
411  *   The sort member of the struct mode defines which operations are valid
412  */
413
414 /** Negation of a tarval. */
415 tarval *tarval_neg(tarval *a);
416
417 /** Addition of two tarvals. */
418 tarval *tarval_add(tarval *a, tarval *b);
419
420 /** Subtraction from a tarval. */
421 tarval *tarval_sub(tarval *a, tarval *b);
422
423 /** Multiplication of tarvals. */
424 tarval *tarval_mul(tarval *a, tarval *b);
425
426 /** 'Exact' division. */
427 tarval *tarval_quo(tarval *a, tarval *b);
428
429 /** Integer division. */
430 tarval *tarval_div(tarval *a, tarval *b);
431
432 /** Remainder of integer division. */
433 tarval *tarval_mod(tarval *a, tarval *b);
434
435 /** Absolute value. */
436 tarval *tarval_abs(tarval *a);
437
438 /** Bitwise and. */
439 tarval *tarval_and(tarval *a, tarval *b);
440
441 /** Bitwise or. */
442 tarval *tarval_or (tarval *a, tarval *b);
443
444 /** Bitwise exclusive or. */
445 tarval *tarval_eor(tarval *a, tarval *b);
446
447 /** Left shift. */
448 tarval *tarval_shl(tarval *a, tarval *b);
449
450 /** Unsigned (logical) right shift. */
451 tarval *tarval_shr(tarval *a, tarval *b);
452
453 /** Signed (arithmetic) right shift. */
454 tarval *tarval_shrs(tarval *a, tarval *b);
455
456 /** Rotation. */
457 tarval *tarval_rot(tarval *a, tarval *b);
458
459 /* *********** Output of tarvals *********** */
460
461 /**
462  * Returns Bit representation of a tarval value, as string of '0' and '1'
463  *
464  * @param tv   The tarval
465  *
466  * This function returns a printable bit representation of any value
467  * stored as tarval. This representation is a null terminated C string.
468  *
469  * @return
470  *   As usual in C a pointer to a char is returned. The length of the
471  *   returned string if fixed, just read as many chars as the mode defines
472  *   as size.
473  *
474  * @note
475  *   The string is allocated using malloc() and is free()ed on the next call
476  *   of this function.
477  *   The string consists of the ascii characters '0' and '1' and is
478  *   null terminated
479  *
480  * @sa
481  *    irmode.h for the definition of the ir_mode struct
482  *    the size member of aforementioned struct
483  */
484 char *tarval_bitpattern(tarval *tv);
485
486 /**
487  * Returns bitpattern [from, to[.
488  */
489 char *tarval_sub_bitpattern(tarval *tv, int from, int to);
490
491 /**
492  * Returns the bitpattern of the bytes_ofs byte.
493  *
494  * This function succeeds even if the mode of the tarval uses lesser bits
495  * than requested, in that case the bitpattern is filled with zero bits.
496  *
497  * To query a 32bit value the following code can be used:
498  *
499  * val0 = tarval_sub_bits(tv, 0);
500  * val1 = tarval_sub_bits(tv, 1);
501  * val2 = tarval_sub_bits(tv, 2);
502  * val3 = tarval_sub_bits(tv, 3);
503  *
504  * Because this is the bit representation of the target machine, only the following
505  * operations are legal on the result:
506  *
507  * - concatenation (endian dependance MUST be handled by the CALLER)
508  * - bitwise logical operations to select/mask bits
509  *
510  * @param tv            the tarval
511  * @param byte_ofs      the byte offset
512  *
513  * @note
514  *   The result of this funcion is undefined if the mode is neither integer nor float.
515  */
516 unsigned char tarval_sub_bits(tarval *tv, unsigned byte_ofs);
517
518 /**
519  * Identifying some tarvals ???
520  *
521  * @return
522  *   - 0 for additive neutral,
523  *   - +1 for multiplicative neutral,
524  *   - -1 for bitwise-and neutral
525  *   - 2 else
526  *
527  * @deprecated
528  *   This function is deprecated and its use strongly discouraged.
529  *   Implemented for completeness.
530  */
531 long tarval_classify(tarval *tv);
532
533 /**
534  * Initialization of the tarval module.
535  *
536  * Call before init_mode().
537  */
538 void init_tarval_1(void);
539
540 /**
541  * Initialization of the tarval module.
542  *
543  * Call after init_mode().
544  */
545 void init_tarval_2(void);
546
547 typedef int printf_func (void* , const char *, ...) ;
548 int tarval_xprintf(printf_func , void * , tarval *);
549
550 #endif  /* _TV_H_ */