check that Psi flags input doesn't depend on load when creating AM (fix fehler002)
[libfirm] / ir / tv / tv.c
1 /*
2  * Copyright (C) 1995-2007 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    Representation of and static computations on target machine
23  *           values.
24  * @date     2003
25  * @author   Mathias Heil
26  * @version  $Id$
27  * @summary
28  *
29  * Values are stored in a format depending upon chosen arithmetic
30  * module. Default uses strcalc and fltcalc.
31  * This implementation assumes:
32  *  - target has IEEE-754 floating-point arithmetic.
33  */
34 #ifdef HAVE_CONFIG_H
35 # include "config.h"
36 #endif
37
38 #include <assert.h>         /* assertions */
39 #include <stdlib.h>         /* atoi() */
40 #ifdef HAVE_STRING_H
41 # include <string.h>         /* nice things for strings */
42 #endif
43 #ifdef HAVE_STRINGS_H
44 #include <strings.h>        /* strings.h also includes bsd only function strcasecmp */
45 #endif
46 #ifdef HAVE_STDLIB_H
47 # include <stdlib.h>
48 #endif
49
50 #include "tv_t.h"
51 #include "set.h"            /* to store tarvals in */
52 #include "entity_t.h"       /* needed to store pointers to entities */
53 #include "irmode_t.h"
54 #include "irnode.h"         /* defines boolean return values (pnc_number)*/
55 #include "strcalc.h"
56 #include "fltcalc.h"
57 #include "irtools.h"
58 #include "xmalloc.h"
59 #include "firm_common.h"
60 #include "error.h"
61
62 /** Size of hash tables.  Should correspond to average number of distinct constant
63     target values */
64 #define N_CONSTANTS 2048
65
66 /* get the integer overflow mode */
67 #define GET_OVERFLOW_MODE() int_overflow_mode
68
69 /* unused, float to int doesn't work yet */
70 enum float_to_int_mode {
71         TRUNCATE,
72         ROUND
73 };
74
75 #define GET_FLOAT_TO_INT_MODE() TRUNCATE
76
77 #define SWITCH_NOINFINITY 0
78 #define SWITCH_NODENORMALS 0
79
80 /****************************************************************************
81  *   local definitions and macros
82  ****************************************************************************/
83 #ifndef NDEBUG
84 #  define TARVAL_VERIFY(a) tarval_verify((a))
85 #else
86 #  define TARVAL_VERIFY(a) ((void)0)
87 #endif
88
89 #define INSERT_TARVAL(tv) ((tarval*)set_insert(tarvals, (tv), sizeof(tarval), hash_tv((tv))))
90 #define FIND_TARVAL(tv) ((tarval*)set_find(tarvals, (tv), sizeof(tarval), hash_tv((tv))))
91
92 #define INSERT_VALUE(val, size) (set_insert(values, (val), size, hash_val((val), size)))
93 #define FIND_VALUE(val, size) (set_find(values, (val), size, hash_val((val), size)))
94
95 #define fail_verify(a) _fail_verify((a), __FILE__, __LINE__)
96
97 /****************************************************************************
98  *   private variables
99  ****************************************************************************/
100 static struct set *tarvals = NULL;   /* container for tarval structs */
101 static struct set *values = NULL;    /* container for values */
102 static tarval_int_overflow_mode_t int_overflow_mode = TV_OVERFLOW_WRAP;
103
104 /** if this is set non-zero, the constant folding for floating point is OFF */
105 static int no_float = 0;
106
107 /****************************************************************************
108  *   private functions
109  ****************************************************************************/
110 #ifndef NDEBUG
111 static int hash_val(const void *value, unsigned int length);
112 static int hash_tv(tarval *tv);
113 static void _fail_verify(tarval *tv, const char* file, int line)
114 {
115         /* print a memory image of the tarval and throw an assertion */
116         if (tv)
117                 printf("%s:%d: Invalid tarval:\n  mode: %s\n value: [%p]\n", file, line, get_mode_name(tv->mode), tv->value);
118         else
119                 printf("%s:%d: Invalid tarval (null)", file, line);
120         assert(0);
121 }
122 #ifdef __GNUC__
123 INLINE static void tarval_verify(tarval *tv) __attribute__ ((unused));
124 #endif
125
126 INLINE static void tarval_verify(tarval *tv)
127 {
128         assert(tv);
129         assert(tv->mode);
130         assert(tv->value);
131
132         if ((tv == tarval_bad) || (tv == tarval_undefined)) return;
133         if ((tv == tarval_b_true) || (tv == tarval_b_false)) return;
134
135         if (!FIND_TARVAL(tv)) fail_verify(tv);
136         if (tv->length > 0 && !FIND_VALUE(tv->value, tv->length)) fail_verify(tv);
137
138         return;
139 }
140 #endif /* NDEBUG */
141
142 /** Hash a tarval. */
143 static int hash_tv(tarval *tv) {
144         return (PTR_TO_INT(tv->value) ^ PTR_TO_INT(tv->mode)) + tv->length;
145 }
146
147 /** Hash a value. Treat it as a byte array. */
148 static int hash_val(const void *value, unsigned int length) {
149         unsigned int i;
150         unsigned int hash = 0;
151
152         /* scramble the byte - array */
153         for (i = 0; i < length; ++i) {
154                 hash += (hash << 5) ^ (hash >> 27) ^ ((char*)value)[i];
155                 hash += (hash << 11) ^ (hash >> 17);
156         }
157
158         return hash;
159 }
160
161 /** finds tarval with value/mode or creates new tarval */
162 static tarval *get_tarval(const void *value, int length, ir_mode *mode) {
163         tarval tv;
164
165         tv.kind   = k_tarval;
166         tv.mode   = mode;
167         tv.length = length;
168         if (length > 0) {
169                 /* if there already is such a value, it is returned, else value
170                  * is copied into the set */
171                 char *temp = alloca(length);
172                 memcpy(temp, value, length);
173                 if (get_mode_arithmetic(mode) == irma_twos_complement) {
174                         sign_extend(temp, mode);
175                 }
176                 tv.value = INSERT_VALUE(temp, length);
177         } else {
178                 tv.value = value;
179         }
180         /* if there is such a tarval, it is returned, else tv is copied
181          * into the set */
182         return (tarval *)INSERT_TARVAL(&tv);
183 }
184
185 /**
186  * handle overflow
187  */
188 static tarval *get_tarval_overflow(const void *value, int length, ir_mode *mode)
189 {
190         char *temp;
191
192         switch (get_mode_sort(mode)) {
193         case irms_reference:
194                 /* addresses always wrap around */
195                 temp = alloca(sc_get_buffer_length());
196                 memcpy(temp, value, sc_get_buffer_length());
197                 sc_truncate(get_mode_size_bits(mode), temp);
198                 /* the sc_ module expects that all bits are set ... */
199                 sign_extend(temp, mode);
200                 return get_tarval(temp, length, mode);
201
202         case irms_int_number:
203                 if (sc_comp(value, get_mode_max(mode)->value) == 1) {
204                         switch (GET_OVERFLOW_MODE()) {
205                         case TV_OVERFLOW_SATURATE:
206                                 return get_mode_max(mode);
207                         case TV_OVERFLOW_WRAP:
208                                 temp = alloca(sc_get_buffer_length());
209                                 memcpy(temp, value, sc_get_buffer_length());
210                                 sc_truncate(get_mode_size_bits(mode), temp);
211                                 /* the sc_ module expects that all bits are set ... */
212                                 sign_extend(temp, mode);
213                                 return get_tarval(temp, length, mode);
214                         case TV_OVERFLOW_BAD:
215                                 return tarval_bad;
216                         default:
217                                 return get_tarval(value, length, mode);
218                         }
219                 }
220                 if (sc_comp(value, get_mode_min(mode)->value) == -1) {
221                         switch (GET_OVERFLOW_MODE()) {
222                         case TV_OVERFLOW_SATURATE:
223                                 return get_mode_min(mode);
224                         case TV_OVERFLOW_WRAP: {
225                                 char *temp = alloca(sc_get_buffer_length());
226                                 memcpy(temp, value, sc_get_buffer_length());
227                                 sc_truncate(get_mode_size_bits(mode), temp);
228                                 return get_tarval(temp, length, mode);
229                         }
230                         case TV_OVERFLOW_BAD:
231                                 return tarval_bad;
232                         default:
233                                 return get_tarval(value, length, mode);
234                         }
235                 }
236                 break;
237
238         case irms_float_number:
239                 if (SWITCH_NOINFINITY && fc_is_inf(value)) {
240                         return fc_is_negative(value)?get_mode_min(mode):get_mode_max(mode);
241                 }
242
243                 if (SWITCH_NODENORMALS && fc_is_subnormal(value)) {
244                         return get_mode_null(mode);
245                 }
246                 break;
247
248         default:
249                 break;
250         }
251         return get_tarval(value, length, mode);
252 }
253
254 /*
255  *   public variables declared in tv.h
256  */
257 static tarval reserved_tv[4];
258
259 tarval *tarval_bad       = &reserved_tv[0];
260 tarval *tarval_undefined = &reserved_tv[1];
261 tarval *tarval_b_false   = &reserved_tv[2];
262 tarval *tarval_b_true    = &reserved_tv[3];
263
264 /*
265  *   public functions declared in tv.h
266  */
267
268 /*
269  * Constructors =============================================================
270  */
271 tarval *new_tarval_from_str(const char *str, size_t len, ir_mode *mode)
272 {
273         assert(str);
274         assert(len);
275         assert(mode);
276
277         switch (get_mode_sort(mode)) {
278         case irms_control_flow:
279         case irms_memory:
280         case irms_auxiliary:
281                 assert(0);
282                 break;
283
284         case irms_internal_boolean:
285                 /* match [tT][rR][uU][eE]|[fF][aA][lL][sS][eE] */
286                 if (strcasecmp(str, "true")) return tarval_b_true;
287                 else if (strcasecmp(str, "false")) return tarval_b_true;
288                 else
289                         /* XXX This is C semantics */
290                         return atoi(str) ? tarval_b_true : tarval_b_false;
291
292         case irms_float_number:
293                 switch (get_mode_size_bits(mode)) {
294                 case 32:
295                         fc_val_from_str(str, len, 8, 23, NULL);
296                         break;
297                 case 64:
298                         fc_val_from_str(str, len, 11, 52, NULL);
299                         break;
300                 case 80:
301                         fc_val_from_str(str, len, 15, 64, NULL);
302                         break;
303                 }
304                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
305
306         case irms_reference:
307                 /* same as integer modes */
308         case irms_int_number:
309                 sc_val_from_str(str, len, NULL, mode);
310                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
311         }
312
313         assert(0);  /* can't be reached, can it? */
314         return NULL;
315 }
316
317 /*
318  * helper function, create a tarval from long
319  */
320 tarval *new_tarval_from_long(long l, ir_mode *mode) {
321         assert(mode);
322
323         switch (get_mode_sort(mode))   {
324         case irms_internal_boolean:
325                 /* XXX C semantics ! */
326                 return l ? tarval_b_true : tarval_b_false ;
327
328         case irms_reference:
329                 /* same as integer modes */
330         case irms_int_number:
331                 sc_val_from_long(l, NULL);
332                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
333
334         case irms_float_number:
335                 return new_tarval_from_double((long double)l, mode);
336
337         default:
338                 assert(0 && "unsupported mode sort");
339         }
340         return NULL;
341 }
342
343 /* returns non-zero if can be converted to long */
344 int tarval_is_long(tarval *tv) {
345         if (!mode_is_int(tv->mode) && !mode_is_reference(tv->mode))
346                 return 0;
347
348         if (get_mode_size_bits(tv->mode) > (int) (sizeof(long) << 3)) {
349                 /* the value might be too big to fit in a long */
350                 sc_max_from_bits(sizeof(long) << 3, 0, NULL);
351                 if (sc_comp(sc_get_buffer(), tv->value) == -1) {
352                         /* really doesn't fit */
353                         return 0;
354                 }
355         }
356         return 1;
357 }
358
359 /* this might overflow the machine's long, so use only with small values */
360 long get_tarval_long(tarval* tv) {
361         assert(tarval_is_long(tv) && "tarval too big to fit in long");
362
363         return sc_val_to_long(tv->value);
364 }
365
366 tarval *new_tarval_from_double(long double d, ir_mode *mode) {
367         assert(mode && (get_mode_sort(mode) == irms_float_number));
368
369         switch (get_mode_size_bits(mode)) {
370         case 32:
371                 fc_val_from_ieee754(d, 8, 23, NULL);
372                 break;
373         case 64:
374                 fc_val_from_ieee754(d, 11, 52, NULL);
375                 break;
376         case 80:
377                 fc_val_from_ieee754(d, 15, 64, NULL);
378                 break;
379         }
380         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
381 }
382
383 /* returns non-zero if can be converted to double */
384 int tarval_is_double(tarval *tv) {
385         assert(tv);
386
387         return (get_mode_sort(tv->mode) == irms_float_number);
388 }
389
390 long double get_tarval_double(tarval *tv) {
391         assert(tarval_is_double(tv));
392
393         return fc_val_to_ieee754(tv->value);
394 }
395
396
397 /*
398  * Access routines for tarval fields ========================================
399  */
400
401 /* get the mode of the tarval */
402 ir_mode *(get_tarval_mode)(const tarval *tv) {
403         return _get_tarval_mode(tv);
404 }
405
406 /*
407  * Special value query functions ============================================
408  *
409  * These functions calculate and return a tarval representing the requested
410  * value.
411  * The functions get_mode_{Max,Min,...} return tarvals retrieved from these
412  * functions, but these are stored on initialization of the irmode module and
413  * therefore the irmode functions should be preferred to the functions below.
414  */
415
416 tarval *(get_tarval_bad)(void) {
417         return _get_tarval_bad();
418 }
419
420 tarval *(get_tarval_undefined)(void) {
421         return _get_tarval_undefined();
422 }
423
424 tarval *(get_tarval_b_false)(void) {
425         return _get_tarval_b_false();
426 }
427
428 tarval *(get_tarval_b_true)(void) {
429         return _get_tarval_b_true();
430 }
431
432 tarval *get_tarval_max(ir_mode *mode) {
433         assert(mode);
434
435         if (get_mode_n_vector_elems(mode) > 1) {
436                 /* vector arithmetic not implemented yet */
437                 return tarval_bad;
438         }
439
440         switch(get_mode_sort(mode)) {
441         case irms_control_flow:
442         case irms_memory:
443         case irms_auxiliary:
444                 assert(0);
445                 break;
446
447         case irms_internal_boolean:
448                 return tarval_b_true;
449
450         case irms_float_number:
451                 switch(get_mode_size_bits(mode)) {
452                 case 32:
453                         fc_get_max(8, 23, NULL);
454                         break;
455                 case 64:
456                         fc_get_max(11, 52, NULL);
457                         break;
458                 case 80:
459                         fc_get_max(15, 64, NULL);
460                         break;
461                 }
462                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
463
464         case irms_reference:
465         case irms_int_number:
466                 sc_max_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
467                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
468         }
469         return tarval_bad;
470 }
471
472 tarval *get_tarval_min(ir_mode *mode) {
473         assert(mode);
474
475         if (get_mode_n_vector_elems(mode) > 1) {
476                 /* vector arithmetic not implemented yet */
477                 return tarval_bad;
478         }
479
480         switch(get_mode_sort(mode)) {
481         case irms_control_flow:
482         case irms_memory:
483         case irms_auxiliary:
484                 assert(0);
485                 break;
486
487         case irms_internal_boolean:
488                 return tarval_b_false;
489
490         case irms_float_number:
491                 switch(get_mode_size_bits(mode)) {
492                 case 32:
493                         fc_get_min(8, 23, NULL);
494                         break;
495                 case 64:
496                         fc_get_min(11, 52, NULL);
497                         break;
498                 case 80:
499                         fc_get_min(15, 64, NULL);
500                         break;
501                 }
502                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
503
504         case irms_reference:
505         case irms_int_number:
506                 sc_min_from_bits(get_mode_size_bits(mode), mode_is_signed(mode), NULL);
507                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), mode);
508         }
509         return tarval_bad;
510 }
511
512 /** The bit pattern for the pointer NULL */
513 static long _null_value = 0;
514
515 tarval *get_tarval_null(ir_mode *mode) {
516         assert(mode);
517
518         if (get_mode_n_vector_elems(mode) > 1) {
519                 /* vector arithmetic not implemented yet */
520                 return tarval_bad;
521         }
522
523         switch(get_mode_sort(mode)) {
524         case irms_control_flow:
525         case irms_memory:
526         case irms_auxiliary:
527                 assert(0);
528                 break;
529
530         case irms_float_number:
531                 return new_tarval_from_double(0.0, mode);
532
533         case irms_internal_boolean:
534         case irms_int_number:
535                 return new_tarval_from_long(0l,  mode);
536
537         case irms_reference:
538                 return new_tarval_from_long(_null_value, mode);
539         }
540         return tarval_bad;
541 }
542
543 tarval *get_tarval_one(ir_mode *mode) {
544         assert(mode);
545
546         if (get_mode_n_vector_elems(mode) > 1) {
547                 /* vector arithmetic not implemented yet */
548                 assert(0);
549                 return tarval_bad;
550         }
551
552         switch(get_mode_sort(mode)) {
553         case irms_control_flow:
554         case irms_memory:
555         case irms_auxiliary:
556                 assert(0);
557                 break;
558
559         case irms_internal_boolean:
560                 return tarval_b_true;
561
562         case irms_float_number:
563                 return new_tarval_from_double(1.0, mode);
564
565         case irms_reference:
566         case irms_int_number:
567                 return new_tarval_from_long(1l, mode);
568         }
569         return tarval_bad;
570 }
571
572 tarval *get_tarval_all_one(ir_mode *mode) {
573         assert(mode);
574
575         if (get_mode_n_vector_elems(mode) > 1) {
576                 /* vector arithmetic not implemented yet */
577                 assert(0);
578                 return tarval_bad;
579         }
580
581         switch(get_mode_sort(mode)) {
582         case irms_control_flow:
583         case irms_memory:
584         case irms_auxiliary:
585                 assert(0);
586                 return tarval_bad;
587
588         case irms_int_number:
589         case irms_internal_boolean:
590         case irms_reference:
591                 return tarval_not(get_mode_null(mode));
592
593
594         case irms_float_number:
595                 return new_tarval_from_double(1.0, mode);
596         }
597         return tarval_bad;
598 }
599
600 tarval *get_tarval_minus_one(ir_mode *mode) {
601         assert(mode);
602
603         if (get_mode_n_vector_elems(mode) > 1) {
604                 /* vector arithmetic not implemented yet */
605                 return tarval_bad;
606         }
607
608         switch(get_mode_sort(mode)) {
609         case irms_control_flow:
610         case irms_memory:
611         case irms_auxiliary:
612         case irms_internal_boolean:
613                 assert(0);
614                 break;
615
616         case irms_reference:
617                 return tarval_bad;
618
619         case irms_float_number:
620                 return mode_is_signed(mode) ? new_tarval_from_double(-1.0, mode) : tarval_bad;
621
622         case irms_int_number:
623                 return new_tarval_from_long(-1l, mode);
624         }
625         return tarval_bad;
626 }
627
628 tarval *get_tarval_nan(ir_mode *mode) {
629         assert(mode);
630
631         if (get_mode_n_vector_elems(mode) > 1) {
632                 /* vector arithmetic not implemented yet */
633                 return tarval_bad;
634         }
635
636         if (get_mode_sort(mode) == irms_float_number) {
637                 switch(get_mode_size_bits(mode)) {
638                 case 32:
639                         fc_get_qnan(8, 23, NULL);
640                         break;
641                 case 64:
642                         fc_get_qnan(11, 52, NULL);
643                         break;
644                 case 80:
645                         fc_get_qnan(15, 64, NULL);
646                         break;
647                 }
648                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
649         } else {
650                 assert(0 && "tarval is not floating point");
651                 return tarval_bad;
652         }
653 }
654
655 tarval *get_tarval_plus_inf(ir_mode *mode) {
656         assert(mode);
657
658         if (get_mode_n_vector_elems(mode) > 1) {
659                 /* vector arithmetic not implemented yet */
660                 return tarval_bad;
661         }
662
663         if (get_mode_sort(mode) == irms_float_number) {
664                 switch(get_mode_size_bits(mode)) {
665                 case 32:
666                         fc_get_plusinf(8, 23, NULL);
667                         break;
668                 case 64:
669                         fc_get_plusinf(11, 52, NULL);
670                         break;
671                 case 80:
672                         fc_get_plusinf(15, 64, NULL);
673                         break;
674                 }
675                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
676         } else {
677                 assert(0 && "tarval is not floating point");
678                 return tarval_bad;
679         }
680 }
681
682 tarval *get_tarval_minus_inf(ir_mode *mode) {
683         assert(mode);
684
685         if (get_mode_n_vector_elems(mode) > 1) {
686                 /* vector arithmetic not implemented yet */
687                 return tarval_bad;
688         }
689
690         if (get_mode_sort(mode) == irms_float_number) {
691                 switch(get_mode_size_bits(mode)) {
692                 case 32:
693                         fc_get_minusinf(8, 23, NULL);
694                         break;
695                 case 64:
696                         fc_get_minusinf(11, 52, NULL);
697                         break;
698                 case 80:
699                         fc_get_minusinf(15, 64, NULL);
700                         break;
701                 }
702                 return get_tarval(fc_get_buffer(), fc_get_buffer_length(), mode);
703         } else {
704                 assert(0 && "tarval is not floating point");
705                 return tarval_bad;
706         }
707 }
708
709 /*
710  * Arithmethic operations on tarvals ========================================
711  */
712
713 /*
714  * test if negative number, 1 means 'yes'
715  */
716 int tarval_is_negative(tarval *a) {
717         assert(a);
718
719         if (get_mode_n_vector_elems(a->mode) > 1) {
720                 /* vector arithmetic not implemented yet */
721                 assert(0 && "tarval_is_negative is not allowed for vector modes");
722                 return 0;
723         }
724
725         switch (get_mode_sort(a->mode)) {
726         case irms_int_number:
727                 if (!mode_is_signed(a->mode)) return 0;
728                 else
729                         return sc_comp(a->value, get_mode_null(a->mode)->value) == -1 ? 1 : 0;
730
731         case irms_float_number:
732                 return fc_comp(a->value, get_mode_null(a->mode)->value) == -1 ? 1 : 0;
733
734         default:
735                 assert(0 && "not implemented");
736                 return 0;
737         }
738 }
739
740 /*
741  * test if null, 1 means 'yes'
742  */
743 int tarval_is_null(tarval *a) {
744         return
745                 a != tarval_bad &&
746                 a == get_tarval_null(get_tarval_mode(a));
747 }
748
749 /*
750  * test if one, 1 means 'yes'
751  */
752 int tarval_is_one(tarval *a) {
753         return
754                 a != tarval_bad &&
755                 a == get_tarval_one(get_tarval_mode(a));
756 }
757
758 int tarval_is_all_one(tarval *tv) {
759         return
760                 tv != tarval_bad &&
761                 tv == get_mode_all_one(get_tarval_mode(tv));
762 }
763
764 /*
765  * test if one, 1 means 'yes'
766  */
767 int tarval_is_minus_one(tarval *a) {
768         return
769                 a != tarval_bad &&
770                 a == get_tarval_minus_one(get_tarval_mode(a));
771 }
772
773 /*
774  * comparison
775  */
776 pn_Cmp tarval_cmp(tarval *a, tarval *b) {
777         assert(a);
778         assert(b);
779
780         if (a == tarval_bad || b == tarval_bad) {
781                 assert(0 && "Comparison with tarval_bad");
782                 return pn_Cmp_False;
783         }
784
785         if (a == tarval_undefined || b == tarval_undefined)
786                 return pn_Cmp_False;
787
788         if (a->mode != b->mode)
789                 return pn_Cmp_False;
790
791         if (get_mode_n_vector_elems(a->mode) > 1) {
792                 /* vector arithmetic not implemented yet */
793                 assert(0 && "cmp not implemented for vector modes");
794         }
795
796         /* Here the two tarvals are unequal and of the same mode */
797         switch (get_mode_sort(a->mode)) {
798         case irms_control_flow:
799         case irms_memory:
800         case irms_auxiliary:
801                 if (a == b)
802                         return pn_Cmp_Eq;
803                 return pn_Cmp_False;
804
805         case irms_float_number:
806                 if (no_float)
807                         return pn_Cmp_False;
808                 /*
809                  * BEWARE: we cannot compare a == b here, because
810                  * a NaN is always Unordered to any other value, even to itself!
811                  */
812                 switch (fc_comp(a->value, b->value)) {
813                 case -1: return pn_Cmp_Lt;
814                 case  0: return pn_Cmp_Eq;
815                 case  1: return pn_Cmp_Gt;
816                 case  2: return pn_Cmp_Uo;
817                 default: return pn_Cmp_False;
818                 }
819         case irms_reference:
820         case irms_int_number:
821                 if (a == b)
822                         return pn_Cmp_Eq;
823                 return sc_comp(a->value, b->value) == 1 ? pn_Cmp_Gt : pn_Cmp_Lt;
824
825         case irms_internal_boolean:
826                 if (a == b)
827                         return pn_Cmp_Eq;
828                 return a == tarval_b_true ? pn_Cmp_Gt : pn_Cmp_Lt;
829         }
830         return pn_Cmp_False;
831 }
832
833 /*
834  * convert to other mode
835  */
836 tarval *tarval_convert_to(tarval *src, ir_mode *dst_mode) {
837         char *buffer;
838         fp_value *res;
839
840         assert(src);
841         assert(dst_mode);
842
843         if (src->mode == dst_mode) return src;
844
845         if (get_mode_n_vector_elems(src->mode) > 1) {
846                 /* vector arithmetic not implemented yet */
847                 return tarval_bad;
848         }
849
850         switch (get_mode_sort(src->mode)) {
851         case irms_control_flow:
852         case irms_memory:
853         case irms_auxiliary:
854                 break;
855
856                 /* cast float to something */
857         case irms_float_number:
858                 switch (get_mode_sort(dst_mode)) {
859                 case irms_float_number:
860                         switch (get_mode_size_bits(dst_mode)) {
861                         case 32:
862                                 fc_cast(src->value, 8, 23, NULL);
863                                 break;
864                         case 64:
865                                 fc_cast(src->value, 11, 52, NULL);
866                                 break;
867                         case 80:
868                                 fc_cast(src->value, 15, 64, NULL);
869                                 break;
870                         default:
871                                 break;
872                         }
873                         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), dst_mode);
874
875                 case irms_int_number:
876                         switch (GET_FLOAT_TO_INT_MODE()) {
877                         case TRUNCATE:
878                                 res = fc_int(src->value, NULL);
879                                 break;
880                         case ROUND:
881                                 res = fc_rnd(src->value, NULL);
882                                 break;
883                         default:
884                                 assert(0);
885                                 break;
886                         }
887                         if (! fc_flt2int(res, sc_get_buffer(), dst_mode))
888                                 return tarval_bad;
889                         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), dst_mode);
890
891                 default:
892                         /* the rest can't be converted */
893                         return tarval_bad;
894                 }
895                 break;
896
897         /* cast int/characters to something */
898         case irms_int_number:
899                 switch (get_mode_sort(dst_mode)) {
900
901                 case irms_reference:
902                 case irms_int_number:
903                         buffer = alloca(sc_get_buffer_length());
904                         memcpy(buffer, src->value, sc_get_buffer_length());
905                         sign_extend(buffer, dst_mode);
906                         return get_tarval_overflow(buffer, src->length, dst_mode);
907
908                 case irms_internal_boolean:
909                         /* XXX C semantics */
910                         if (src == get_mode_null(src->mode)) return tarval_b_false;
911                         else return tarval_b_true;
912
913                 case irms_float_number:
914                         /* XXX floating point unit does not understand internal integer
915                          * representation, convert to string first, then create float from
916                          * string */
917                         buffer = alloca(100);
918                         /* decimal string representation because hexadecimal output is
919                          * interpreted unsigned by fc_val_from_str, so this is a HACK */
920                         snprintf(buffer, 100, "%s",
921                                 sc_print(src->value, get_mode_size_bits(src->mode), SC_DEC, mode_is_signed(src->mode)));
922                         buffer[100 - 1] = '\0';
923                         switch (get_mode_size_bits(dst_mode)) {
924                         case 32:
925                                 fc_val_from_str(buffer, 0, 8, 23, NULL);
926                                 break;
927                         case 64:
928                                 fc_val_from_str(buffer, 0, 11, 52, NULL);
929                                 break;
930                         case 80:
931                                 fc_val_from_str(buffer, 0, 15, 64, NULL);
932                                 break;
933                         }
934                         return get_tarval(fc_get_buffer(), fc_get_buffer_length(), dst_mode);
935
936                 default:
937                         break;
938                 }
939                 break;
940
941         case irms_internal_boolean:
942                 /* beware: this is C semantic for the INTERNAL boolean mode */
943                 if (get_mode_sort(dst_mode) == irms_int_number)
944                         return src == tarval_b_true ? get_mode_one(dst_mode) : get_mode_null(dst_mode);
945                 break;
946
947         case irms_reference:
948                 if (get_mode_sort(dst_mode) == irms_int_number) {
949                         buffer = alloca(sc_get_buffer_length());
950                         memcpy(buffer, src->value, sc_get_buffer_length());
951                         sign_extend(buffer, src->mode);
952                         return get_tarval_overflow(buffer, src->length, dst_mode);
953                 }
954                 break;
955         }
956
957         return tarval_bad;
958 }
959
960 /*
961  * bitwise negation
962  */
963 tarval *tarval_not(tarval *a) {
964         char *buffer;
965
966         assert(a);
967
968         /* works for vector mode without changes */
969
970         switch (get_mode_sort(a->mode)) {
971         case irms_reference:
972         case irms_int_number:
973                 buffer = alloca(sc_get_buffer_length());
974                 sc_not(a->value, buffer);
975                 return get_tarval(buffer, a->length, a->mode);
976
977         case irms_internal_boolean:
978                 if (a == tarval_b_true)
979                         return tarval_b_false;
980                 if (a == tarval_b_false)
981                         return tarval_b_true;
982                 return tarval_bad;
983
984         default:
985                 assert(0 && "bitwise negation is only allowed for integer and boolean");
986                 return tarval_bad;
987         }
988 }
989
990 /*
991  * arithmetic negation
992  */
993 tarval *tarval_neg(tarval *a) {
994         char *buffer;
995
996         assert(a);
997         assert(mode_is_num(a->mode)); /* negation only for numerical values */
998
999         /* note: negation is allowed even for unsigned modes. */
1000
1001         if (get_mode_n_vector_elems(a->mode) > 1) {
1002                 /* vector arithmetic not implemented yet */
1003                 return tarval_bad;
1004         }
1005
1006         switch (get_mode_sort(a->mode)) {
1007         case irms_int_number:
1008                 buffer = alloca(sc_get_buffer_length());
1009                 sc_neg(a->value, buffer);
1010                 return get_tarval_overflow(buffer, a->length, a->mode);
1011
1012         case irms_float_number:
1013                 if(no_float)
1014                         return tarval_bad;
1015
1016                 fc_neg(a->value, NULL);
1017                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1018
1019         default:
1020                 return tarval_bad;
1021         }
1022 }
1023
1024 /*
1025  * addition
1026  */
1027 tarval *tarval_add(tarval *a, tarval *b) {
1028         char *buffer;
1029
1030         assert(a);
1031         assert(b);
1032         assert(a->mode == b->mode);
1033
1034         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
1035                 /* vector arithmetic not implemented yet */
1036                 return tarval_bad;
1037         }
1038
1039         switch (get_mode_sort(a->mode)) {
1040         case irms_int_number:
1041                 /* modes of a,b are equal, so result has mode of a as this might be the character */
1042                 buffer = alloca(sc_get_buffer_length());
1043                 sc_add(a->value, b->value, buffer);
1044                 return get_tarval_overflow(buffer, a->length, a->mode);
1045
1046         case irms_float_number:
1047                 if(no_float)
1048                         return tarval_bad;
1049
1050                 fc_add(a->value, b->value, NULL);
1051                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1052
1053         default:
1054                 return tarval_bad;
1055         }
1056 }
1057
1058 /*
1059  * subtraction
1060  */
1061 tarval *tarval_sub(tarval *a, tarval *b) {
1062         char *buffer;
1063
1064         assert(a);
1065         assert(b);
1066         assert(a->mode == b->mode);
1067
1068         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(b->mode) > 1) {
1069                 /* vector arithmetic not implemented yet */
1070                 return tarval_bad;
1071         }
1072         switch (get_mode_sort(a->mode)) {
1073         case irms_int_number:
1074                 /* modes of a,b are equal, so result has mode of a as this might be the character */
1075                 buffer = alloca(sc_get_buffer_length());
1076                 sc_sub(a->value, b->value, buffer);
1077                 return get_tarval_overflow(buffer, a->length, a->mode);
1078
1079         case irms_float_number:
1080                 if(no_float)
1081                         return tarval_bad;
1082
1083                 fc_sub(a->value, b->value, NULL);
1084                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1085
1086         default:
1087                 return tarval_bad;
1088         }
1089 }
1090
1091 /*
1092  * multiplication
1093  */
1094 tarval *tarval_mul(tarval *a, tarval *b) {
1095         char *buffer;
1096
1097         assert(a);
1098         assert(b);
1099         assert(a->mode == b->mode);
1100
1101         if (get_mode_n_vector_elems(a->mode) > 1) {
1102                 /* vector arithmetic not implemented yet */
1103                 return tarval_bad;
1104         }
1105
1106         switch (get_mode_sort(a->mode)) {
1107         case irms_int_number:
1108                 /* modes of a,b are equal */
1109                 buffer = alloca(sc_get_buffer_length());
1110                 sc_mul(a->value, b->value, buffer);
1111                 return get_tarval_overflow(buffer, a->length, a->mode);
1112
1113         case irms_float_number:
1114                 if(no_float)
1115                         return tarval_bad;
1116
1117                 fc_mul(a->value, b->value, NULL);
1118                 return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1119
1120         default:
1121                 return tarval_bad;
1122         }
1123 }
1124
1125 /*
1126  * floating point division
1127  */
1128 tarval *tarval_quo(tarval *a, tarval *b) {
1129         assert(a);
1130         assert(b);
1131         assert((a->mode == b->mode) && mode_is_float(a->mode));
1132
1133         if(no_float)
1134                 return tarval_bad;
1135
1136         if (get_mode_n_vector_elems(a->mode) > 1) {
1137                 /* vector arithmetic not implemented yet */
1138                 return tarval_bad;
1139         }
1140
1141         fc_div(a->value, b->value, NULL);
1142         return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1143 }
1144
1145 /*
1146  * integer division
1147  * overflow is impossible, but look out for division by zero
1148  */
1149 tarval *tarval_div(tarval *a, tarval *b) {
1150         assert(a);
1151         assert(b);
1152         assert((a->mode == b->mode) && mode_is_int(a->mode));
1153
1154         if (get_mode_n_vector_elems(a->mode) > 1) {
1155                 /* vector arithmetic not implemented yet */
1156                 return tarval_bad;
1157         }
1158
1159         /* x/0 error */
1160         if (b == get_mode_null(b->mode)) return tarval_bad;
1161         /* modes of a,b are equal */
1162         sc_div(a->value, b->value, NULL);
1163         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1164 }
1165
1166 /*
1167  * remainder
1168  * overflow is impossible, but look out for division by zero
1169  */
1170 tarval *tarval_mod(tarval *a, tarval *b) {
1171         assert(a);
1172         assert(b);
1173         assert((a->mode == b->mode) && mode_is_int(a->mode));
1174
1175         if (get_mode_n_vector_elems(a->mode) > 1) {
1176                 /* vector arithmetic not implemented yet */
1177                 return tarval_bad;
1178         }
1179
1180         /* x/0 error */
1181         if (b == get_mode_null(b->mode)) return tarval_bad;
1182         /* modes of a,b are equal */
1183         sc_mod(a->value, b->value, NULL);
1184         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1185 }
1186
1187 /*
1188  * integer division AND remainder
1189  * overflow is impossible, but look out for division by zero
1190  */
1191 tarval *tarval_divmod(tarval *a, tarval *b, tarval **mod) {
1192         int len = sc_get_buffer_length();
1193         char *div_res = alloca(len);
1194         char *mod_res = alloca(len);
1195
1196         assert(a);
1197         assert(b);
1198         assert((a->mode == b->mode) && mode_is_int(a->mode));
1199
1200         if (get_mode_n_vector_elems(a->mode) > 1) {
1201                 /* vector arithmetic not implemented yet */
1202                 return tarval_bad;
1203         }
1204
1205
1206         /* x/0 error */
1207         if (b == get_mode_null(b->mode)) return tarval_bad;
1208         /* modes of a,b are equal */
1209         sc_divmod(a->value, b->value, div_res, mod_res);
1210         *mod = get_tarval(mod_res, len, a->mode);
1211         return get_tarval(div_res, len, a->mode);
1212 }
1213
1214 /*
1215  * absolute value
1216  */
1217 tarval *tarval_abs(tarval *a) {
1218         char *buffer;
1219
1220         assert(a);
1221         assert(mode_is_num(a->mode));
1222
1223         if (get_mode_n_vector_elems(a->mode) > 1) {
1224                 /* vector arithmetic not implemented yet */
1225                 return tarval_bad;
1226         }
1227
1228         switch (get_mode_sort(a->mode)) {
1229         case irms_int_number:
1230                 if (sc_comp(a->value, get_mode_null(a->mode)->value) == -1) {
1231                         buffer = alloca(sc_get_buffer_length());
1232                         sc_neg(a->value, buffer);
1233                         return get_tarval_overflow(buffer, a->length, a->mode);
1234                 }
1235                 return a;
1236
1237         case irms_float_number:
1238                 if(no_float)
1239                         return tarval_bad;
1240
1241                 if (fc_comp(a->value, get_mode_null(a->mode)->value) == -1) {
1242                         fc_neg(a->value, NULL);
1243                         return get_tarval_overflow(fc_get_buffer(), fc_get_buffer_length(), a->mode);
1244                 }
1245                 return a;
1246
1247         default:
1248                 return tarval_bad;
1249         }
1250         return tarval_bad;
1251 }
1252
1253 /*
1254  * bitwise and
1255  */
1256 tarval *tarval_and(tarval *a, tarval *b) {
1257         assert(a);
1258         assert(b);
1259         assert(a->mode == b->mode);
1260
1261         /* works even for vector modes */
1262
1263         switch(get_mode_sort(a->mode)) {
1264         case irms_internal_boolean:
1265                 return (a == tarval_b_false) ? a : b;
1266
1267         case irms_int_number:
1268                 sc_and(a->value, b->value, NULL);
1269                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1270
1271         default:
1272                 assert(0 && "operation not defined on mode");
1273                 return tarval_bad;
1274         }
1275 }
1276
1277 /*
1278  * bitwise or
1279  */
1280 tarval *tarval_or (tarval *a, tarval *b) {
1281         assert(a);
1282         assert(b);
1283         assert(a->mode == b->mode);
1284
1285         /* works even for vector modes */
1286
1287         switch (get_mode_sort(a->mode)) {
1288         case irms_internal_boolean:
1289                 return (a == tarval_b_true) ? a : b;
1290
1291         case irms_int_number:
1292                 sc_or(a->value, b->value, NULL);
1293                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1294
1295         default:
1296                 assert(0 && "operation not defined on mode");
1297                 return tarval_bad;
1298         }
1299 }
1300
1301 /*
1302  * bitwise exclusive or (xor)
1303  */
1304 tarval *tarval_eor(tarval *a, tarval *b) {
1305         assert(a);
1306         assert(b);
1307         assert((a->mode == b->mode));
1308
1309         /* works even for vector modes */
1310
1311         switch (get_mode_sort(a->mode)) {
1312         case irms_internal_boolean:
1313                 return (a == b)? tarval_b_false : tarval_b_true;
1314
1315         case irms_int_number:
1316                 sc_xor(a->value, b->value, NULL);
1317                 return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1318
1319         default:
1320                 assert(0 && "operation not defined on mode");
1321                 return tarval_bad;;
1322         }
1323 }
1324
1325 /*
1326  * bitwise left shift
1327  */
1328 tarval *tarval_shl(tarval *a, tarval *b) {
1329         char *temp_val = NULL;
1330
1331         assert(a);
1332         assert(b);
1333         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1334
1335         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1336                 /* vector arithmetic not implemented yet */
1337                 return tarval_bad;
1338         }
1339
1340         if (get_mode_modulo_shift(a->mode) != 0) {
1341                 temp_val = alloca(sc_get_buffer_length());
1342
1343                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1344                 sc_mod(b->value, temp_val, temp_val);
1345         } else
1346                 temp_val = (char*)b->value;
1347
1348         sc_shl(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1349         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1350 }
1351
1352 /*
1353  * bitwise unsigned right shift
1354  */
1355 tarval *tarval_shr(tarval *a, tarval *b) {
1356         char *temp_val = NULL;
1357
1358         assert(a);
1359         assert(b);
1360         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1361
1362         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1363                 /* vector arithmetic not implemented yet */
1364                 return tarval_bad;
1365         }
1366
1367         if (get_mode_modulo_shift(a->mode) != 0) {
1368                 temp_val = alloca(sc_get_buffer_length());
1369
1370                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1371                 sc_mod(b->value, temp_val, temp_val);
1372         } else
1373                 temp_val = (char*)b->value;
1374
1375         sc_shr(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1376         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1377 }
1378
1379 /*
1380  * bitwise signed right shift
1381  */
1382 tarval *tarval_shrs(tarval *a, tarval *b) {
1383         char *temp_val = NULL;
1384
1385         assert(a);
1386         assert(b);
1387         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1388
1389         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1390                 /* vector arithmetic not implemented yet */
1391                 return tarval_bad;
1392         }
1393
1394         if (get_mode_modulo_shift(a->mode) != 0) {
1395                 temp_val = alloca(sc_get_buffer_length());
1396
1397                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1398                 sc_mod(b->value, temp_val, temp_val);
1399         } else
1400                 temp_val = (char*)b->value;
1401
1402         sc_shrs(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1403         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1404 }
1405
1406 /*
1407  * bitwise rotation
1408  */
1409 tarval *tarval_rot(tarval *a, tarval *b) {
1410         char *temp_val = NULL;
1411
1412         assert(a);
1413         assert(b);
1414         assert(mode_is_int(a->mode) && mode_is_int(b->mode));
1415
1416         if (get_mode_n_vector_elems(a->mode) > 1 || get_mode_n_vector_elems(a->mode) > 1) {
1417                 /* vector arithmetic not implemented yet */
1418                 return tarval_bad;
1419         }
1420
1421         if (get_mode_modulo_shift(a->mode) != 0) {
1422                 temp_val = alloca(sc_get_buffer_length());
1423
1424                 sc_val_from_ulong(get_mode_modulo_shift(a->mode), temp_val);
1425                 sc_mod(b->value, temp_val, temp_val);
1426         } else
1427                 temp_val = (char*)b->value;
1428
1429         sc_rot(a->value, temp_val, get_mode_size_bits(a->mode), mode_is_signed(a->mode), NULL);
1430         return get_tarval(sc_get_buffer(), sc_get_buffer_length(), a->mode);
1431 }
1432
1433 /*
1434  * carry flag of the last operation
1435  */
1436 int tarval_carry(void) {
1437         return sc_had_carry();
1438 }
1439
1440 /*
1441  * Output of tarvals
1442  */
1443 int tarval_snprintf(char *buf, size_t len, tarval *tv) {
1444         static const tarval_mode_info default_info = { TVO_NATIVE, NULL, NULL };
1445
1446         const char *str;
1447         char tv_buf[100];
1448         const tarval_mode_info *mode_info;
1449         const char *prefix, *suffix;
1450
1451         mode_info = tv->mode->tv_priv;
1452         if (! mode_info)
1453                 mode_info = &default_info;
1454         prefix = mode_info->mode_prefix ? mode_info->mode_prefix : "";
1455         suffix = mode_info->mode_suffix ? mode_info->mode_suffix : "";
1456
1457         switch (get_mode_sort(tv->mode)) {
1458         case irms_reference:
1459                 if (tv == tv->mode->null) return snprintf(buf, len, "NULL");
1460                 /* fall through */
1461         case irms_int_number:
1462                 switch (mode_info->mode_output) {
1463
1464                 case TVO_DECIMAL:
1465                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_DEC, mode_is_signed(tv->mode));
1466                         break;
1467
1468                 case TVO_OCTAL:
1469                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_OCT, 0);
1470                         break;
1471
1472                 case TVO_HEX:
1473                 case TVO_NATIVE:
1474                 default:
1475                         str = sc_print(tv->value, get_mode_size_bits(tv->mode), SC_HEX, 0);
1476                         break;
1477                 }
1478                 return snprintf(buf, len, "%s%s%s", prefix, str, suffix);
1479
1480         case irms_float_number:
1481                 switch (mode_info->mode_output) {
1482                 case TVO_HEX:
1483                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_PACKED), suffix);
1484
1485                 case TVO_HEXFLOAT:
1486                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_HEX), suffix);
1487
1488                 case TVO_FLOAT:
1489                 case TVO_NATIVE:
1490                 default:
1491                         return snprintf(buf, len, "%s%s%s", prefix, fc_print(tv->value, tv_buf, sizeof(tv_buf), FC_DEC), suffix);
1492                 }
1493                 break;
1494
1495         case irms_internal_boolean:
1496                 switch (mode_info->mode_output) {
1497
1498                 case TVO_DECIMAL:
1499                 case TVO_OCTAL:
1500                 case TVO_HEX:
1501                 case TVO_BINARY:
1502                         return snprintf(buf, len, "%s%c%s", prefix, (tv == tarval_b_true) ? '1' : '0', suffix);
1503
1504                 case TVO_NATIVE:
1505                 default:
1506                         return snprintf(buf, len, "%s%s%s", prefix, (tv == tarval_b_true) ? "true" : "false", suffix);
1507                 }
1508
1509         case irms_control_flow:
1510         case irms_memory:
1511         case irms_auxiliary:
1512                 return snprintf(buf, len, "<TV_OVERFLOW_BAD>");
1513         }
1514
1515         return 0;
1516 }
1517
1518 /**
1519  * Output of tarvals to stdio.
1520  */
1521 int tarval_printf(tarval *tv) {
1522         char buf[1024];
1523         int res;
1524
1525         res = tarval_snprintf(buf, sizeof(buf), tv);
1526         assert(res < (int) sizeof(buf) && "buffer to small for tarval_snprintf");
1527         printf(buf);
1528         return res;
1529 }
1530
1531 char *get_tarval_bitpattern(tarval *tv) {
1532         int i, j, pos = 0;
1533         int n = get_mode_size_bits(tv->mode);
1534         int bytes = (n + 7) / 8;
1535         char *res = xmalloc((n + 1) * sizeof(char));
1536         unsigned char byte;
1537
1538         for(i = 0; i < bytes; i++) {
1539                 byte = get_tarval_sub_bits(tv, i);
1540                 for(j = 1; j < 256; j <<= 1)
1541                         if(pos < n)
1542                                 res[pos++] = j & byte ? '1' : '0';
1543         }
1544
1545         res[n] = '\0';
1546
1547         return res;
1548 }
1549
1550 /*
1551  * access to the bitpattern
1552  */
1553 unsigned char get_tarval_sub_bits(tarval *tv, unsigned byte_ofs) {
1554         switch (get_mode_arithmetic(tv->mode)) {
1555         case irma_twos_complement:
1556                 return sc_sub_bits(tv->value, get_mode_size_bits(tv->mode), byte_ofs);
1557         case irma_ieee754:
1558                 return fc_sub_bits(tv->value, get_mode_size_bits(tv->mode), byte_ofs);
1559         default:
1560                 panic("get_tarval_sub_bits(): arithmetic mode not supported");
1561         }
1562 }
1563
1564 /*
1565  * Specify the output options of one mode.
1566  *
1567  * This functions stores the modinfo, so DO NOT DESTROY it.
1568  *
1569  * Returns zero on success.
1570  */
1571 int  set_tarval_mode_output_option(ir_mode *mode, const tarval_mode_info *modeinfo) {
1572         assert(mode);
1573
1574         mode->tv_priv = modeinfo;
1575         return 0;
1576 }
1577
1578 /*
1579  * Returns the output options of one mode.
1580  *
1581  * This functions returns the mode info of a given mode.
1582  */
1583 const tarval_mode_info *get_tarval_mode_output_option(ir_mode *mode) {
1584         assert(mode);
1585
1586         return mode->tv_priv;
1587 }
1588
1589 /*
1590  * Returns non-zero if a given (integer) tarval has only one single bit
1591  * set.
1592  */
1593 int tarval_is_single_bit(tarval *tv) {
1594         int i, l;
1595         int bits;
1596
1597         if (!tv || tv == tarval_bad) return 0;
1598         if (! mode_is_int(tv->mode)) return 0;
1599
1600         l = get_mode_size_bytes(tv->mode);
1601         for (bits = 0, i = l - 1; i >= 0; --i) {
1602                 unsigned char v = get_tarval_sub_bits(tv, (unsigned)i);
1603
1604                 /* check for more than one bit in these */
1605                 if (v) {
1606                         if (v & (v-1))
1607                                 return 0;
1608                         if (++bits > 1)
1609                                 return 0;
1610                 }
1611         }
1612         return bits;
1613 }
1614
1615 /*
1616  * Returns non-zero if the mantissa of a floating point IEEE-754
1617  * tarval is zero (i.e. 1.0Exxx)
1618  */
1619 int tarval_ieee754_zero_mantissa(tarval *tv) {
1620         assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
1621         return fc_zero_mantissa(tv->value);
1622 }
1623
1624 /* Returns the exponent of a floating point IEEE-754 tarval. */
1625 int tarval_ieee754_get_exponent(tarval *tv) {
1626         assert(get_mode_arithmetic(tv->mode) == irma_ieee754);
1627         return fc_get_exponent(tv->value);
1628 }
1629
1630 /* Set the immediate precision for IEEE-754 results. */
1631 unsigned tarval_ieee754_set_immediate_precision(unsigned bits) {
1632         return fc_set_immediate_precision(bits);
1633 }
1634
1635 /* Returns non-zero if the result of the last IEEE-754 operation was exact. */
1636 unsigned tarval_ieee754_get_exact(void) {
1637         return fc_is_exact();
1638 }
1639
1640 /*
1641  * Sets the overflow mode for integer operations.
1642  */
1643 void tarval_set_integer_overflow_mode(tarval_int_overflow_mode_t ov_mode) {
1644         int_overflow_mode = ov_mode;
1645 }
1646
1647 /* Get the overflow mode for integer operations. */
1648 tarval_int_overflow_mode_t tarval_get_integer_overflow_mode(void) {
1649         return int_overflow_mode;
1650 }
1651
1652 /* Enable/Disable floating point constant folding. */
1653 int tarval_enable_fp_ops(int enable) {
1654         int old = !no_float;
1655
1656         no_float = !enable;
1657         return old;
1658 }
1659
1660 /**
1661  * default mode_info for output as HEX
1662  */
1663 static const tarval_mode_info hex_output = {
1664         TVO_HEX,
1665         "0x",
1666         NULL,
1667 };
1668
1669 /*
1670  * Initialization of the tarval module: called before init_mode()
1671  */
1672 void init_tarval_1(long null_value) {
1673         _null_value = null_value;
1674
1675         /* initialize the sets holding the tarvals with a comparison function and
1676          * an initial size, which is the expected number of constants */
1677         tarvals = new_set(memcmp, N_CONSTANTS);
1678         values  = new_set(memcmp, N_CONSTANTS);
1679         /* init strcalc with precision of 68 to support floating point values with 64
1680          * bit mantissa (needs extra bits for rounding and overflow) */
1681         init_strcalc(68);
1682         init_fltcalc(0);
1683 }
1684
1685 /*
1686  * Initialization of the tarval module: called after init_mode()
1687  */
1688 void init_tarval_2(void) {
1689         tarval_bad->kind        = k_tarval;
1690         tarval_bad->mode        = mode_BAD;
1691         tarval_bad->value       = INT_TO_PTR(resid_tarval_bad);
1692
1693         tarval_undefined->kind  = k_tarval;
1694         tarval_undefined->mode  = mode_ANY;
1695         tarval_undefined->value = INT_TO_PTR(resid_tarval_undefined);
1696
1697         tarval_b_true->kind     = k_tarval;
1698         tarval_b_true->mode     = mode_b;
1699         tarval_b_true->value    = INT_TO_PTR(resid_tarval_b_true);
1700
1701         tarval_b_false->kind    = k_tarval;
1702         tarval_b_false->mode    = mode_b;
1703         tarval_b_false->value   = INT_TO_PTR(resid_tarval_b_false);
1704
1705         /*
1706          * assign output modes that are compatible with the
1707          * old implementation: Hex output
1708          */
1709         set_tarval_mode_output_option(mode_Bs, &hex_output);
1710         set_tarval_mode_output_option(mode_Bu, &hex_output);
1711         set_tarval_mode_output_option(mode_Hs, &hex_output);
1712         set_tarval_mode_output_option(mode_Hu, &hex_output);
1713         set_tarval_mode_output_option(mode_Is, &hex_output);
1714         set_tarval_mode_output_option(mode_Iu, &hex_output);
1715         set_tarval_mode_output_option(mode_Ls, &hex_output);
1716         set_tarval_mode_output_option(mode_Lu, &hex_output);
1717         set_tarval_mode_output_option(mode_P,  &hex_output);
1718 }
1719
1720 /* free all memory occupied by tarval. */
1721 void finish_tarval(void) {
1722         finish_strcalc();
1723         finish_fltcalc();
1724         del_set(tarvals); tarvals = NULL;
1725         del_set(values);  values = NULL;
1726 }
1727
1728 /****************************************************************************
1729  *   end of tv.c
1730  ****************************************************************************/