loop splitting
[gcc.git] / gcc / genmodes.c
1 /* Generate the machine mode enumeration and associated tables.
2 Copyright (C) 2003-2016 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
10
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
19
20 #include "bconfig.h"
21 #include "system.h"
22 #include "errors.h"
23
24 /* enum mode_class is normally defined by machmode.h but we can't
25 include that header here. */
26 #include "mode-classes.def"
27
28 #define DEF_MODE_CLASS(M) M
29 enum mode_class { MODE_CLASSES, MAX_MODE_CLASS };
30 #undef DEF_MODE_CLASS
31
32 /* Text names of mode classes, for output. */
33 #define DEF_MODE_CLASS(M) #M
34 static const char *const mode_class_names[MAX_MODE_CLASS] =
35 {
36 MODE_CLASSES
37 };
38 #undef DEF_MODE_CLASS
39 #undef MODE_CLASSES
40
41 #ifdef EXTRA_MODES_FILE
42 # define HAVE_EXTRA_MODES 1
43 #else
44 # define HAVE_EXTRA_MODES 0
45 # define EXTRA_MODES_FILE ""
46 #endif
47
48 /* Data structure for building up what we know about a mode.
49 They're clustered by mode class. */
50 struct mode_data
51 {
52 struct mode_data *next; /* next this class - arbitrary order */
53
54 const char *name; /* printable mode name -- SI, not SImode */
55 enum mode_class cl; /* this mode class */
56 unsigned int precision; /* size in bits, equiv to TYPE_PRECISION */
57 unsigned int bytesize; /* storage size in addressable units */
58 unsigned int ncomponents; /* number of subunits */
59 unsigned int alignment; /* mode alignment */
60 const char *format; /* floating point format - float modes only */
61
62 struct mode_data *component; /* mode of components */
63 struct mode_data *wider; /* next wider mode */
64
65 struct mode_data *contained; /* Pointer to list of modes that have
66 this mode as a component. */
67 struct mode_data *next_cont; /* Next mode in that list. */
68
69 struct mode_data *complex; /* complex type with mode as component. */
70 const char *file; /* file and line of definition, */
71 unsigned int line; /* for error reporting */
72 unsigned int counter; /* Rank ordering of modes */
73 unsigned int ibit; /* the number of integral bits */
74 unsigned int fbit; /* the number of fractional bits */
75 bool need_bytesize_adj; /* true if this mode need dynamic size
76 adjustment */
77 unsigned int int_n; /* If nonzero, then __int<INT_N> will be defined */
78 };
79
80 static struct mode_data *modes[MAX_MODE_CLASS];
81 static unsigned int n_modes[MAX_MODE_CLASS];
82 static struct mode_data *void_mode;
83
84 static const struct mode_data blank_mode = {
85 0, "<unknown>", MAX_MODE_CLASS,
86 -1U, -1U, -1U, -1U,
87 0, 0, 0, 0, 0, 0,
88 "<unknown>", 0, 0, 0, 0, false, 0
89 };
90
91 static htab_t modes_by_name;
92
93 /* Data structure for recording target-specified runtime adjustments
94 to a particular mode. We support varying the byte size, the
95 alignment, and the floating point format. */
96 struct mode_adjust
97 {
98 struct mode_adjust *next;
99 struct mode_data *mode;
100 const char *adjustment;
101
102 const char *file;
103 unsigned int line;
104 };
105
106 static struct mode_adjust *adj_bytesize;
107 static struct mode_adjust *adj_alignment;
108 static struct mode_adjust *adj_format;
109 static struct mode_adjust *adj_ibit;
110 static struct mode_adjust *adj_fbit;
111
112 /* Mode class operations. */
113 static enum mode_class
114 complex_class (enum mode_class c)
115 {
116 switch (c)
117 {
118 case MODE_INT: return MODE_COMPLEX_INT;
119 case MODE_FLOAT: return MODE_COMPLEX_FLOAT;
120 default:
121 error ("no complex class for class %s", mode_class_names[c]);
122 return MODE_RANDOM;
123 }
124 }
125
126 static enum mode_class
127 vector_class (enum mode_class cl)
128 {
129 switch (cl)
130 {
131 case MODE_INT: return MODE_VECTOR_INT;
132 case MODE_FLOAT: return MODE_VECTOR_FLOAT;
133 case MODE_FRACT: return MODE_VECTOR_FRACT;
134 case MODE_UFRACT: return MODE_VECTOR_UFRACT;
135 case MODE_ACCUM: return MODE_VECTOR_ACCUM;
136 case MODE_UACCUM: return MODE_VECTOR_UACCUM;
137 default:
138 error ("no vector class for class %s", mode_class_names[cl]);
139 return MODE_RANDOM;
140 }
141 }
142
143 /* Utility routines. */
144 static inline struct mode_data *
145 find_mode (const char *name)
146 {
147 struct mode_data key;
148
149 key.name = name;
150 return (struct mode_data *) htab_find (modes_by_name, &key);
151 }
152
153 static struct mode_data *
154 new_mode (enum mode_class cl, const char *name,
155 const char *file, unsigned int line)
156 {
157 struct mode_data *m;
158 static unsigned int count = 0;
159
160 m = find_mode (name);
161 if (m)
162 {
163 error ("%s:%d: duplicate definition of mode \"%s\"",
164 trim_filename (file), line, name);
165 error ("%s:%d: previous definition here", m->file, m->line);
166 return m;
167 }
168
169 m = XNEW (struct mode_data);
170 memcpy (m, &blank_mode, sizeof (struct mode_data));
171 m->cl = cl;
172 m->name = name;
173 if (file)
174 m->file = trim_filename (file);
175 m->line = line;
176 m->counter = count++;
177
178 m->next = modes[cl];
179 modes[cl] = m;
180 n_modes[cl]++;
181
182 *htab_find_slot (modes_by_name, m, INSERT) = m;
183
184 return m;
185 }
186
187 static hashval_t
188 hash_mode (const void *p)
189 {
190 const struct mode_data *m = (const struct mode_data *)p;
191 return htab_hash_string (m->name);
192 }
193
194 static int
195 eq_mode (const void *p, const void *q)
196 {
197 const struct mode_data *a = (const struct mode_data *)p;
198 const struct mode_data *b = (const struct mode_data *)q;
199
200 return !strcmp (a->name, b->name);
201 }
202
203 #define for_all_modes(C, M) \
204 for (C = 0; C < MAX_MODE_CLASS; C++) \
205 for (M = modes[C]; M; M = M->next)
206
207 static void ATTRIBUTE_UNUSED
208 new_adjust (const char *name,
209 struct mode_adjust **category, const char *catname,
210 const char *adjustment,
211 enum mode_class required_class_from,
212 enum mode_class required_class_to,
213 const char *file, unsigned int line)
214 {
215 struct mode_data *mode = find_mode (name);
216 struct mode_adjust *a;
217
218 file = trim_filename (file);
219
220 if (!mode)
221 {
222 error ("%s:%d: no mode \"%s\"", file, line, name);
223 return;
224 }
225
226 if (required_class_from != MODE_RANDOM
227 && (mode->cl < required_class_from || mode->cl > required_class_to))
228 {
229 error ("%s:%d: mode \"%s\" is not among class {%s, %s}",
230 file, line, name, mode_class_names[required_class_from] + 5,
231 mode_class_names[required_class_to] + 5);
232 return;
233 }
234
235 for (a = *category; a; a = a->next)
236 if (a->mode == mode)
237 {
238 error ("%s:%d: mode \"%s\" already has a %s adjustment",
239 file, line, name, catname);
240 error ("%s:%d: previous adjustment here", a->file, a->line);
241 return;
242 }
243
244 a = XNEW (struct mode_adjust);
245 a->mode = mode;
246 a->adjustment = adjustment;
247 a->file = file;
248 a->line = line;
249
250 a->next = *category;
251 *category = a;
252 }
253
254 /* Diagnose failure to meet expectations in a partially filled out
255 mode structure. */
256 enum requirement { SET, UNSET, OPTIONAL };
257
258 #define validate_field_(mname, fname, req, val, unset, file, line) do { \
259 switch (req) \
260 { \
261 case SET: \
262 if (val == unset) \
263 error ("%s:%d: (%s) field %s must be set", \
264 file, line, mname, fname); \
265 break; \
266 case UNSET: \
267 if (val != unset) \
268 error ("%s:%d: (%s) field %s must not be set", \
269 file, line, mname, fname); \
270 case OPTIONAL: \
271 break; \
272 } \
273 } while (0)
274
275 #define validate_field(M, F) \
276 validate_field_(M->name, #F, r_##F, M->F, blank_mode.F, M->file, M->line)
277
278 static void
279 validate_mode (struct mode_data *m,
280 enum requirement r_precision,
281 enum requirement r_bytesize,
282 enum requirement r_component,
283 enum requirement r_ncomponents,
284 enum requirement r_format)
285 {
286 validate_field (m, precision);
287 validate_field (m, bytesize);
288 validate_field (m, component);
289 validate_field (m, ncomponents);
290 validate_field (m, format);
291 }
292 #undef validate_field
293 #undef validate_field_
294
295 /* Given a partially-filled-out mode structure, figure out what we can
296 and fill the rest of it in; die if it isn't enough. */
297 static void
298 complete_mode (struct mode_data *m)
299 {
300 unsigned int alignment;
301
302 if (!m->name)
303 {
304 error ("%s:%d: mode with no name", m->file, m->line);
305 return;
306 }
307 if (m->cl == MAX_MODE_CLASS)
308 {
309 error ("%s:%d: %smode has no mode class", m->file, m->line, m->name);
310 return;
311 }
312
313 switch (m->cl)
314 {
315 case MODE_RANDOM:
316 /* Nothing more need be said. */
317 if (!strcmp (m->name, "VOID"))
318 void_mode = m;
319
320 validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
321
322 m->precision = 0;
323 m->bytesize = 0;
324 m->ncomponents = 0;
325 m->component = 0;
326 break;
327
328 case MODE_CC:
329 /* Again, nothing more need be said. For historical reasons,
330 the size of a CC mode is four units. */
331 validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
332
333 m->bytesize = 4;
334 m->ncomponents = 1;
335 m->component = 0;
336 break;
337
338 case MODE_INT:
339 case MODE_POINTER_BOUNDS:
340 case MODE_FLOAT:
341 case MODE_DECIMAL_FLOAT:
342 case MODE_FRACT:
343 case MODE_UFRACT:
344 case MODE_ACCUM:
345 case MODE_UACCUM:
346 /* A scalar mode must have a byte size, may have a bit size,
347 and must not have components. A float mode must have a
348 format. */
349 validate_mode (m, OPTIONAL, SET, UNSET, UNSET,
350 (m->cl == MODE_FLOAT || m->cl == MODE_DECIMAL_FLOAT)
351 ? SET : UNSET);
352
353 m->ncomponents = 1;
354 m->component = 0;
355 break;
356
357 case MODE_PARTIAL_INT:
358 /* A partial integer mode uses ->component to say what the
359 corresponding full-size integer mode is, and may also
360 specify a bit size. */
361 validate_mode (m, OPTIONAL, UNSET, SET, UNSET, UNSET);
362
363 m->bytesize = m->component->bytesize;
364
365 m->ncomponents = 1;
366 break;
367
368 case MODE_COMPLEX_INT:
369 case MODE_COMPLEX_FLOAT:
370 /* Complex modes should have a component indicated, but no more. */
371 validate_mode (m, UNSET, UNSET, SET, UNSET, UNSET);
372 m->ncomponents = 2;
373 if (m->component->precision != (unsigned int)-1)
374 m->precision = 2 * m->component->precision;
375 m->bytesize = 2 * m->component->bytesize;
376 break;
377
378 case MODE_VECTOR_INT:
379 case MODE_VECTOR_FLOAT:
380 case MODE_VECTOR_FRACT:
381 case MODE_VECTOR_UFRACT:
382 case MODE_VECTOR_ACCUM:
383 case MODE_VECTOR_UACCUM:
384 /* Vector modes should have a component and a number of components. */
385 validate_mode (m, UNSET, UNSET, SET, SET, UNSET);
386 if (m->component->precision != (unsigned int)-1)
387 m->precision = m->ncomponents * m->component->precision;
388 m->bytesize = m->ncomponents * m->component->bytesize;
389 break;
390
391 default:
392 gcc_unreachable ();
393 }
394
395 /* If not already specified, the mode alignment defaults to the largest
396 power of two that divides the size of the object. Complex types are
397 not more aligned than their contents. */
398 if (m->cl == MODE_COMPLEX_INT || m->cl == MODE_COMPLEX_FLOAT)
399 alignment = m->component->bytesize;
400 else
401 alignment = m->bytesize;
402
403 m->alignment = alignment & (~alignment + 1);
404
405 /* If this mode has components, make the component mode point back
406 to this mode, for the sake of adjustments. */
407 if (m->component)
408 {
409 m->next_cont = m->component->contained;
410 m->component->contained = m;
411 }
412 }
413
414 static void
415 complete_all_modes (void)
416 {
417 struct mode_data *m;
418 int cl;
419
420 for_all_modes (cl, m)
421 complete_mode (m);
422 }
423
424 /* For each mode in class CLASS, construct a corresponding complex mode. */
425 #define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
426 static void
427 make_complex_modes (enum mode_class cl,
428 const char *file, unsigned int line)
429 {
430 struct mode_data *m;
431 struct mode_data *c;
432 enum mode_class cclass = complex_class (cl);
433
434 if (cclass == MODE_RANDOM)
435 return;
436
437 for (m = modes[cl]; m; m = m->next)
438 {
439 char *p, *buf;
440 size_t m_len;
441
442 /* Skip BImode. FIXME: BImode probably shouldn't be MODE_INT. */
443 if (m->precision == 1)
444 continue;
445
446 m_len = strlen (m->name);
447 /* The leading "1 +" is in case we prepend a "C" below. */
448 buf = (char *) xmalloc (1 + m_len + 1);
449
450 /* Float complex modes are named SCmode, etc.
451 Int complex modes are named CSImode, etc.
452 This inconsistency should be eliminated. */
453 p = 0;
454 if (cl == MODE_FLOAT)
455 {
456 memcpy (buf, m->name, m_len + 1);
457 p = strchr (buf, 'F');
458 if (p == 0 && strchr (buf, 'D') == 0)
459 {
460 error ("%s:%d: float mode \"%s\" has no 'F' or 'D'",
461 m->file, m->line, m->name);
462 free (buf);
463 continue;
464 }
465 }
466 if (p != 0)
467 *p = 'C';
468 else
469 {
470 buf[0] = 'C';
471 memcpy (buf + 1, m->name, m_len + 1);
472 }
473
474 c = new_mode (cclass, buf, file, line);
475 c->component = m;
476 m->complex = c;
477 }
478 }
479
480 /* For all modes in class CL, construct vector modes of width
481 WIDTH, having as many components as necessary. */
482 #define VECTOR_MODES(C, W) make_vector_modes (MODE_##C, W, __FILE__, __LINE__)
483 static void ATTRIBUTE_UNUSED
484 make_vector_modes (enum mode_class cl, unsigned int width,
485 const char *file, unsigned int line)
486 {
487 struct mode_data *m;
488 struct mode_data *v;
489 /* Big enough for a 32-bit UINT_MAX plus the text. */
490 char buf[12];
491 unsigned int ncomponents;
492 enum mode_class vclass = vector_class (cl);
493
494 if (vclass == MODE_RANDOM)
495 return;
496
497 for (m = modes[cl]; m; m = m->next)
498 {
499 /* Do not construct vector modes with only one element, or
500 vector modes where the element size doesn't divide the full
501 size evenly. */
502 ncomponents = width / m->bytesize;
503 if (ncomponents < 2)
504 continue;
505 if (width % m->bytesize)
506 continue;
507
508 /* Skip QFmode and BImode. FIXME: this special case should
509 not be necessary. */
510 if (cl == MODE_FLOAT && m->bytesize == 1)
511 continue;
512 if (cl == MODE_INT && m->precision == 1)
513 continue;
514
515 if ((size_t)snprintf (buf, sizeof buf, "V%u%s", ncomponents, m->name)
516 >= sizeof buf)
517 {
518 error ("%s:%d: mode name \"%s\" is too long",
519 m->file, m->line, m->name);
520 continue;
521 }
522
523 v = new_mode (vclass, xstrdup (buf), file, line);
524 v->component = m;
525 v->ncomponents = ncomponents;
526 }
527 }
528
529 /* Input. */
530
531 #define _SPECIAL_MODE(C, N) \
532 make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
533 #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
534 #define CC_MODE(N) _SPECIAL_MODE (CC, N)
535
536 static void
537 make_special_mode (enum mode_class cl, const char *name,
538 const char *file, unsigned int line)
539 {
540 new_mode (cl, name, file, line);
541 }
542
543 #define POINTER_BOUNDS_MODE(N, Y) \
544 make_pointer_bounds_mode (#N, Y, __FILE__, __LINE__)
545
546 static void ATTRIBUTE_UNUSED
547 make_pointer_bounds_mode (const char *name,
548 unsigned int bytesize,
549 const char *file, unsigned int line)
550 {
551 struct mode_data *m = new_mode (MODE_POINTER_BOUNDS, name, file, line);
552 m->bytesize = bytesize;
553 }
554
555
556 #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
557 #define FRACTIONAL_INT_MODE(N, B, Y) \
558 make_int_mode (#N, B, Y, __FILE__, __LINE__)
559
560 static void
561 make_int_mode (const char *name,
562 unsigned int precision, unsigned int bytesize,
563 const char *file, unsigned int line)
564 {
565 struct mode_data *m = new_mode (MODE_INT, name, file, line);
566 m->bytesize = bytesize;
567 m->precision = precision;
568 }
569
570 #define FRACT_MODE(N, Y, F) \
571 make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
572
573 #define UFRACT_MODE(N, Y, F) \
574 make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
575
576 #define ACCUM_MODE(N, Y, I, F) \
577 make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
578
579 #define UACCUM_MODE(N, Y, I, F) \
580 make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
581
582 /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
583 FILE, and LINE. */
584
585 static void
586 make_fixed_point_mode (enum mode_class cl,
587 const char *name,
588 unsigned int bytesize,
589 unsigned int ibit,
590 unsigned int fbit,
591 const char *file, unsigned int line)
592 {
593 struct mode_data *m = new_mode (cl, name, file, line);
594 m->bytesize = bytesize;
595 m->ibit = ibit;
596 m->fbit = fbit;
597 }
598
599 #define FLOAT_MODE(N, Y, F) FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
600 #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
601 make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
602
603 static void
604 make_float_mode (const char *name,
605 unsigned int precision, unsigned int bytesize,
606 const char *format,
607 const char *file, unsigned int line)
608 {
609 struct mode_data *m = new_mode (MODE_FLOAT, name, file, line);
610 m->bytesize = bytesize;
611 m->precision = precision;
612 m->format = format;
613 }
614
615 #define DECIMAL_FLOAT_MODE(N, Y, F) \
616 FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
617 #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F) \
618 make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
619
620 static void
621 make_decimal_float_mode (const char *name,
622 unsigned int precision, unsigned int bytesize,
623 const char *format,
624 const char *file, unsigned int line)
625 {
626 struct mode_data *m = new_mode (MODE_DECIMAL_FLOAT, name, file, line);
627 m->bytesize = bytesize;
628 m->precision = precision;
629 m->format = format;
630 }
631
632 #define RESET_FLOAT_FORMAT(N, F) \
633 reset_float_format (#N, #F, __FILE__, __LINE__)
634 static void ATTRIBUTE_UNUSED
635 reset_float_format (const char *name, const char *format,
636 const char *file, unsigned int line)
637 {
638 struct mode_data *m = find_mode (name);
639 if (!m)
640 {
641 error ("%s:%d: no mode \"%s\"", file, line, name);
642 return;
643 }
644 if (m->cl != MODE_FLOAT && m->cl != MODE_DECIMAL_FLOAT)
645 {
646 error ("%s:%d: mode \"%s\" is not a FLOAT class", file, line, name);
647 return;
648 }
649 m->format = format;
650 }
651
652 /* __intN support. */
653 #define INT_N(M,PREC) \
654 make_int_n (#M, PREC, __FILE__, __LINE__)
655 static void ATTRIBUTE_UNUSED
656 make_int_n (const char *m, int bitsize,
657 const char *file, unsigned int line)
658 {
659 struct mode_data *component = find_mode (m);
660 if (!component)
661 {
662 error ("%s:%d: no mode \"%s\"", file, line, m);
663 return;
664 }
665 if (component->cl != MODE_INT
666 && component->cl != MODE_PARTIAL_INT)
667 {
668 error ("%s:%d: mode \"%s\" is not class INT or PARTIAL_INT", file, line, m);
669 return;
670 }
671 if (component->int_n != 0)
672 {
673 error ("%s:%d: mode \"%s\" already has an intN", file, line, m);
674 return;
675 }
676
677 component->int_n = bitsize;
678 }
679
680 /* Partial integer modes are specified by relation to a full integer
681 mode. */
682 #define PARTIAL_INT_MODE(M,PREC,NAME) \
683 make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
684 static void ATTRIBUTE_UNUSED
685 make_partial_integer_mode (const char *base, const char *name,
686 unsigned int precision,
687 const char *file, unsigned int line)
688 {
689 struct mode_data *m;
690 struct mode_data *component = find_mode (base);
691 if (!component)
692 {
693 error ("%s:%d: no mode \"%s\"", file, line, name);
694 return;
695 }
696 if (component->cl != MODE_INT)
697 {
698 error ("%s:%d: mode \"%s\" is not class INT", file, line, name);
699 return;
700 }
701
702 m = new_mode (MODE_PARTIAL_INT, name, file, line);
703 m->precision = precision;
704 m->component = component;
705 }
706
707 /* A single vector mode can be specified by naming its component
708 mode and the number of components. */
709 #define VECTOR_MODE(C, M, N) \
710 make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
711 static void ATTRIBUTE_UNUSED
712 make_vector_mode (enum mode_class bclass,
713 const char *base,
714 unsigned int ncomponents,
715 const char *file, unsigned int line)
716 {
717 struct mode_data *v;
718 enum mode_class vclass = vector_class (bclass);
719 struct mode_data *component = find_mode (base);
720 char namebuf[16];
721
722 if (vclass == MODE_RANDOM)
723 return;
724 if (component == 0)
725 {
726 error ("%s:%d: no mode \"%s\"", file, line, base);
727 return;
728 }
729 if (component->cl != bclass
730 && (component->cl != MODE_PARTIAL_INT
731 || bclass != MODE_INT))
732 {
733 error ("%s:%d: mode \"%s\" is not class %s",
734 file, line, base, mode_class_names[bclass] + 5);
735 return;
736 }
737
738 if ((size_t)snprintf (namebuf, sizeof namebuf, "V%u%s",
739 ncomponents, base) >= sizeof namebuf)
740 {
741 error ("%s:%d: mode name \"%s\" is too long",
742 file, line, base);
743 return;
744 }
745
746 v = new_mode (vclass, xstrdup (namebuf), file, line);
747 v->ncomponents = ncomponents;
748 v->component = component;
749 }
750
751 /* Adjustability. */
752 #define _ADD_ADJUST(A, M, X, C1, C2) \
753 new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
754
755 #define ADJUST_BYTESIZE(M, X) _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
756 #define ADJUST_ALIGNMENT(M, X) _ADD_ADJUST (alignment, M, X, RANDOM, RANDOM)
757 #define ADJUST_FLOAT_FORMAT(M, X) _ADD_ADJUST (format, M, X, FLOAT, FLOAT)
758 #define ADJUST_IBIT(M, X) _ADD_ADJUST (ibit, M, X, ACCUM, UACCUM)
759 #define ADJUST_FBIT(M, X) _ADD_ADJUST (fbit, M, X, FRACT, UACCUM)
760
761 static int bits_per_unit;
762 static int max_bitsize_mode_any_int;
763
764 static void
765 create_modes (void)
766 {
767 #include "machmode.def"
768
769 /* So put the default value unless the target needs a non standard
770 value. */
771 #ifdef BITS_PER_UNIT
772 bits_per_unit = BITS_PER_UNIT;
773 #else
774 bits_per_unit = 8;
775 #endif
776
777 #ifdef MAX_BITSIZE_MODE_ANY_INT
778 max_bitsize_mode_any_int = MAX_BITSIZE_MODE_ANY_INT;
779 #else
780 max_bitsize_mode_any_int = 0;
781 #endif
782 }
783
784 /* Processing. */
785
786 /* Sort a list of modes into the order needed for the WIDER field:
787 major sort by precision, minor sort by component precision.
788
789 For instance:
790 QI < HI < SI < DI < TI
791 V4QI < V2HI < V8QI < V4HI < V2SI.
792
793 If the precision is not set, sort by the bytesize. A mode with
794 precision set gets sorted before a mode without precision set, if
795 they have the same bytesize; this is the right thing because
796 the precision must always be smaller than the bytesize * BITS_PER_UNIT.
797 We don't have to do anything special to get this done -- an unset
798 precision shows up as (unsigned int)-1, i.e. UINT_MAX. */
799 static int
800 cmp_modes (const void *a, const void *b)
801 {
802 const struct mode_data *const m = *(const struct mode_data *const*)a;
803 const struct mode_data *const n = *(const struct mode_data *const*)b;
804
805 if (m->bytesize > n->bytesize)
806 return 1;
807 else if (m->bytesize < n->bytesize)
808 return -1;
809
810 if (m->precision > n->precision)
811 return 1;
812 else if (m->precision < n->precision)
813 return -1;
814
815 if (!m->component && !n->component)
816 {
817 if (m->counter < n->counter)
818 return -1;
819 else
820 return 1;
821 }
822
823 if (m->component->bytesize > n->component->bytesize)
824 return 1;
825 else if (m->component->bytesize < n->component->bytesize)
826 return -1;
827
828 if (m->component->precision > n->component->precision)
829 return 1;
830 else if (m->component->precision < n->component->precision)
831 return -1;
832
833 if (m->counter < n->counter)
834 return -1;
835 else
836 return 1;
837 }
838
839 static void
840 calc_wider_mode (void)
841 {
842 int c;
843 struct mode_data *m;
844 struct mode_data **sortbuf;
845 unsigned int max_n_modes = 0;
846 unsigned int i, j;
847
848 for (c = 0; c < MAX_MODE_CLASS; c++)
849 max_n_modes = MAX (max_n_modes, n_modes[c]);
850
851 /* Allocate max_n_modes + 1 entries to leave room for the extra null
852 pointer assigned after the qsort call below. */
853 sortbuf = XALLOCAVEC (struct mode_data *, max_n_modes + 1);
854
855 for (c = 0; c < MAX_MODE_CLASS; c++)
856 {
857 /* "wider" is not meaningful for MODE_RANDOM and MODE_CC.
858 However, we want these in textual order, and we have
859 precisely the reverse. */
860 if (c == MODE_RANDOM || c == MODE_CC)
861 {
862 struct mode_data *prev, *next;
863
864 for (prev = 0, m = modes[c]; m; m = next)
865 {
866 m->wider = void_mode;
867
868 /* this is nreverse */
869 next = m->next;
870 m->next = prev;
871 prev = m;
872 }
873 modes[c] = prev;
874 }
875 else
876 {
877 if (!modes[c])
878 continue;
879
880 for (i = 0, m = modes[c]; m; i++, m = m->next)
881 sortbuf[i] = m;
882
883 qsort (sortbuf, i, sizeof (struct mode_data *), cmp_modes);
884
885 sortbuf[i] = 0;
886 for (j = 0; j < i; j++)
887 {
888 sortbuf[j]->next = sortbuf[j + 1];
889 if (c == MODE_PARTIAL_INT)
890 sortbuf[j]->wider = sortbuf[j]->component;
891 else
892 sortbuf[j]->wider = sortbuf[j]->next;
893 }
894
895 modes[c] = sortbuf[0];
896 }
897 }
898 }
899
900 /* Output routines. */
901
902 #define tagged_printf(FMT, ARG, TAG) do { \
903 int count_ = printf (" " FMT ",", ARG); \
904 printf ("%*s/* %s */\n", 27 - count_, "", TAG); \
905 } while (0)
906
907 #define print_decl(TYPE, NAME, ASIZE) \
908 puts ("\nconst " TYPE " " NAME "[" ASIZE "] =\n{");
909
910 #define print_maybe_const_decl(TYPE, NAME, ASIZE, CATEGORY) \
911 printf ("\n" TYPE " " NAME "[" ASIZE "] = \n{\n", \
912 adj_##CATEGORY ? "" : "const ")
913
914 #define print_closer() puts ("};")
915
916 /* Compute the max bitsize of some of the classes of integers. It may
917 be that there are needs for the other integer classes, and this
918 code is easy to extend. */
919 static void
920 emit_max_int (void)
921 {
922 unsigned int max, mmax;
923 struct mode_data *i;
924 int j;
925
926 puts ("");
927
928 printf ("#define BITS_PER_UNIT (%d)\n", bits_per_unit);
929
930 if (max_bitsize_mode_any_int == 0)
931 {
932 for (max = 1, i = modes[MODE_INT]; i; i = i->next)
933 if (max < i->bytesize)
934 max = i->bytesize;
935 mmax = max;
936 for (max = 1, i = modes[MODE_PARTIAL_INT]; i; i = i->next)
937 if (max < i->bytesize)
938 max = i->bytesize;
939 if (max > mmax)
940 mmax = max;
941 printf ("#define MAX_BITSIZE_MODE_ANY_INT (%d*BITS_PER_UNIT)\n", mmax);
942 }
943 else
944 printf ("#define MAX_BITSIZE_MODE_ANY_INT %d\n", max_bitsize_mode_any_int);
945
946 mmax = 0;
947 for (j = 0; j < MAX_MODE_CLASS; j++)
948 for (i = modes[j]; i; i = i->next)
949 if (mmax < i->bytesize)
950 mmax = i->bytesize;
951 printf ("#define MAX_BITSIZE_MODE_ANY_MODE (%d*BITS_PER_UNIT)\n", mmax);
952 }
953
954 /* Emit mode_size_inline routine into insn-modes.h header. */
955 static void
956 emit_mode_size_inline (void)
957 {
958 int c;
959 struct mode_adjust *a;
960 struct mode_data *m;
961
962 /* Size adjustments must be propagated to all containing modes. */
963 for (a = adj_bytesize; a; a = a->next)
964 {
965 a->mode->need_bytesize_adj = true;
966 for (m = a->mode->contained; m; m = m->next_cont)
967 m->need_bytesize_adj = true;
968 }
969
970 printf ("\
971 #ifdef __cplusplus\n\
972 inline __attribute__((__always_inline__))\n\
973 #else\n\
974 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
975 #endif\n\
976 unsigned char\n\
977 mode_size_inline (machine_mode mode)\n\
978 {\n\
979 extern %sunsigned char mode_size[NUM_MACHINE_MODES];\n\
980 gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\
981 switch (mode)\n\
982 {\n", adj_bytesize ? "" : "const ");
983
984 for_all_modes (c, m)
985 if (!m->need_bytesize_adj)
986 printf (" case %smode: return %u;\n", m->name, m->bytesize);
987
988 puts ("\
989 default: return mode_size[mode];\n\
990 }\n\
991 }\n");
992 }
993
994 /* Emit mode_nunits_inline routine into insn-modes.h header. */
995 static void
996 emit_mode_nunits_inline (void)
997 {
998 int c;
999 struct mode_data *m;
1000
1001 puts ("\
1002 #ifdef __cplusplus\n\
1003 inline __attribute__((__always_inline__))\n\
1004 #else\n\
1005 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1006 #endif\n\
1007 unsigned char\n\
1008 mode_nunits_inline (machine_mode mode)\n\
1009 {\n\
1010 extern const unsigned char mode_nunits[NUM_MACHINE_MODES];\n\
1011 gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\
1012 switch (mode)\n\
1013 {");
1014
1015 for_all_modes (c, m)
1016 printf (" case %smode: return %u;\n", m->name, m->ncomponents);
1017
1018 puts ("\
1019 default: return mode_nunits[mode];\n\
1020 }\n\
1021 }\n");
1022 }
1023
1024 /* Emit mode_inner_inline routine into insn-modes.h header. */
1025 static void
1026 emit_mode_inner_inline (void)
1027 {
1028 int c;
1029 struct mode_data *m;
1030
1031 puts ("\
1032 #ifdef __cplusplus\n\
1033 inline __attribute__((__always_inline__))\n\
1034 #else\n\
1035 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1036 #endif\n\
1037 unsigned char\n\
1038 mode_inner_inline (machine_mode mode)\n\
1039 {\n\
1040 extern const unsigned char mode_inner[NUM_MACHINE_MODES];\n\
1041 gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\
1042 switch (mode)\n\
1043 {");
1044
1045 for_all_modes (c, m)
1046 printf (" case %smode: return %smode;\n", m->name,
1047 c != MODE_PARTIAL_INT && m->component
1048 ? m->component->name : m->name);
1049
1050 puts ("\
1051 default: return mode_inner[mode];\n\
1052 }\n\
1053 }\n");
1054 }
1055
1056 /* Emit mode_unit_size_inline routine into insn-modes.h header. */
1057 static void
1058 emit_mode_unit_size_inline (void)
1059 {
1060 int c;
1061 struct mode_data *m;
1062
1063 puts ("\
1064 #ifdef __cplusplus\n\
1065 inline __attribute__((__always_inline__))\n\
1066 #else\n\
1067 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1068 #endif\n\
1069 unsigned char\n\
1070 mode_unit_size_inline (machine_mode mode)\n\
1071 {\n\
1072 extern CONST_MODE_UNIT_SIZE unsigned char mode_unit_size[NUM_MACHINE_MODES];\
1073 \n\
1074 gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\
1075 switch (mode)\n\
1076 {");
1077
1078 for_all_modes (c, m)
1079 {
1080 const char *name = m->name;
1081 struct mode_data *m2 = m;
1082 if (c != MODE_PARTIAL_INT && m2->component)
1083 m2 = m2->component;
1084 if (!m2->need_bytesize_adj)
1085 printf (" case %smode: return %u;\n", name, m2->bytesize);
1086 }
1087
1088 puts ("\
1089 default: return mode_unit_size[mode];\n\
1090 }\n\
1091 }\n");
1092 }
1093
1094 /* Emit mode_unit_precision_inline routine into insn-modes.h header. */
1095 static void
1096 emit_mode_unit_precision_inline (void)
1097 {
1098 int c;
1099 struct mode_data *m;
1100
1101 puts ("\
1102 #ifdef __cplusplus\n\
1103 inline __attribute__((__always_inline__))\n\
1104 #else\n\
1105 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1106 #endif\n\
1107 unsigned short\n\
1108 mode_unit_precision_inline (machine_mode mode)\n\
1109 {\n\
1110 extern const unsigned short mode_unit_precision[NUM_MACHINE_MODES];\n\
1111 gcc_assert (mode >= 0 && mode < NUM_MACHINE_MODES);\n\
1112 switch (mode)\n\
1113 {");
1114
1115 for_all_modes (c, m)
1116 {
1117 struct mode_data *m2
1118 = (c != MODE_PARTIAL_INT && m->component) ? m->component : m;
1119 if (m2->precision != (unsigned int)-1)
1120 printf (" case %smode: return %u;\n", m->name, m2->precision);
1121 else
1122 printf (" case %smode: return %u*BITS_PER_UNIT;\n",
1123 m->name, m2->bytesize);
1124 }
1125
1126 puts ("\
1127 default: return mode_unit_precision[mode];\n\
1128 }\n\
1129 }\n");
1130 }
1131
1132 static void
1133 emit_insn_modes_h (void)
1134 {
1135 int c;
1136 struct mode_data *m, *first, *last;
1137 int n_int_n_ents = 0;
1138
1139 printf ("/* Generated automatically from machmode.def%s%s\n",
1140 HAVE_EXTRA_MODES ? " and " : "",
1141 EXTRA_MODES_FILE);
1142
1143 puts ("\
1144 by genmodes. */\n\
1145 \n\
1146 #ifndef GCC_INSN_MODES_H\n\
1147 #define GCC_INSN_MODES_H\n\
1148 \n\
1149 enum machine_mode\n{");
1150
1151 for (c = 0; c < MAX_MODE_CLASS; c++)
1152 for (m = modes[c]; m; m = m->next)
1153 {
1154 int count_ = printf (" %smode,", m->name);
1155 printf ("%*s/* %s:%d */\n", 27 - count_, "",
1156 trim_filename (m->file), m->line);
1157 printf ("#define HAVE_%smode\n", m->name);
1158 }
1159
1160 puts (" MAX_MACHINE_MODE,\n");
1161
1162 for (c = 0; c < MAX_MODE_CLASS; c++)
1163 {
1164 first = modes[c];
1165 last = 0;
1166 for (m = first; m; last = m, m = m->next)
1167 ;
1168
1169 /* Don't use BImode for MIN_MODE_INT, since otherwise the middle
1170 end will try to use it for bitfields in structures and the
1171 like, which we do not want. Only the target md file should
1172 generate BImode widgets. */
1173 if (first && first->precision == 1 && c == MODE_INT)
1174 first = first->next;
1175
1176 if (first && last)
1177 printf (" MIN_%s = %smode,\n MAX_%s = %smode,\n\n",
1178 mode_class_names[c], first->name,
1179 mode_class_names[c], last->name);
1180 else
1181 printf (" MIN_%s = %smode,\n MAX_%s = %smode,\n\n",
1182 mode_class_names[c], void_mode->name,
1183 mode_class_names[c], void_mode->name);
1184 }
1185
1186 puts ("\
1187 NUM_MACHINE_MODES = MAX_MACHINE_MODE\n\
1188 };\n");
1189
1190 /* I can't think of a better idea, can you? */
1191 printf ("#define CONST_MODE_SIZE%s\n", adj_bytesize ? "" : " const");
1192 printf ("#define CONST_MODE_UNIT_SIZE%s\n", adj_bytesize ? "" : " const");
1193 printf ("#define CONST_MODE_BASE_ALIGN%s\n", adj_alignment ? "" : " const");
1194 #if 0 /* disabled for backward compatibility, temporary */
1195 printf ("#define CONST_REAL_FORMAT_FOR_MODE%s\n", adj_format ? "" :" const");
1196 #endif
1197 printf ("#define CONST_MODE_IBIT%s\n", adj_ibit ? "" : " const");
1198 printf ("#define CONST_MODE_FBIT%s\n", adj_fbit ? "" : " const");
1199 emit_max_int ();
1200
1201 for_all_modes (c, m)
1202 if (m->int_n)
1203 n_int_n_ents ++;
1204
1205 printf ("#define NUM_INT_N_ENTS %d\n", n_int_n_ents);
1206
1207 puts ("\n#if !defined (USED_FOR_TARGET) && GCC_VERSION >= 4001\n");
1208 emit_mode_size_inline ();
1209 emit_mode_nunits_inline ();
1210 emit_mode_inner_inline ();
1211 emit_mode_unit_size_inline ();
1212 emit_mode_unit_precision_inline ();
1213 puts ("#endif /* GCC_VERSION >= 4001 */");
1214
1215 puts ("\
1216 \n\
1217 #endif /* insn-modes.h */");
1218 }
1219
1220 static void
1221 emit_insn_modes_c_header (void)
1222 {
1223 printf ("/* Generated automatically from machmode.def%s%s\n",
1224 HAVE_EXTRA_MODES ? " and " : "",
1225 EXTRA_MODES_FILE);
1226
1227 puts ("\
1228 by genmodes. */\n\
1229 \n\
1230 #include \"config.h\"\n\
1231 #include \"system.h\"\n\
1232 #include \"coretypes.h\"\n\
1233 #include \"tm.h\"\n\
1234 #include \"machmode.h\"\n\
1235 #include \"real.h\"");
1236 }
1237
1238 static void
1239 emit_min_insn_modes_c_header (void)
1240 {
1241 printf ("/* Generated automatically from machmode.def%s%s\n",
1242 HAVE_EXTRA_MODES ? " and " : "",
1243 EXTRA_MODES_FILE);
1244
1245 puts ("\
1246 by genmodes. */\n\
1247 \n\
1248 #include \"bconfig.h\"\n\
1249 #include \"system.h\"\n\
1250 #include \"machmode.h\"");
1251 }
1252
1253 static void
1254 emit_mode_name (void)
1255 {
1256 int c;
1257 struct mode_data *m;
1258
1259 print_decl ("char *const", "mode_name", "NUM_MACHINE_MODES");
1260
1261 for_all_modes (c, m)
1262 printf (" \"%s\",\n", m->name);
1263
1264 print_closer ();
1265 }
1266
1267 static void
1268 emit_mode_class (void)
1269 {
1270 int c;
1271 struct mode_data *m;
1272
1273 print_decl ("unsigned char", "mode_class", "NUM_MACHINE_MODES");
1274
1275 for_all_modes (c, m)
1276 tagged_printf ("%s", mode_class_names[m->cl], m->name);
1277
1278 print_closer ();
1279 }
1280
1281 static void
1282 emit_mode_precision (void)
1283 {
1284 int c;
1285 struct mode_data *m;
1286
1287 print_decl ("unsigned short", "mode_precision", "NUM_MACHINE_MODES");
1288
1289 for_all_modes (c, m)
1290 if (m->precision != (unsigned int)-1)
1291 tagged_printf ("%u", m->precision, m->name);
1292 else
1293 tagged_printf ("%u*BITS_PER_UNIT", m->bytesize, m->name);
1294
1295 print_closer ();
1296 }
1297
1298 static void
1299 emit_mode_size (void)
1300 {
1301 int c;
1302 struct mode_data *m;
1303
1304 print_maybe_const_decl ("%sunsigned char", "mode_size",
1305 "NUM_MACHINE_MODES", bytesize);
1306
1307 for_all_modes (c, m)
1308 tagged_printf ("%u", m->bytesize, m->name);
1309
1310 print_closer ();
1311 }
1312
1313 static void
1314 emit_mode_nunits (void)
1315 {
1316 int c;
1317 struct mode_data *m;
1318
1319 print_decl ("unsigned char", "mode_nunits", "NUM_MACHINE_MODES");
1320
1321 for_all_modes (c, m)
1322 tagged_printf ("%u", m->ncomponents, m->name);
1323
1324 print_closer ();
1325 }
1326
1327 static void
1328 emit_mode_wider (void)
1329 {
1330 int c;
1331 struct mode_data *m;
1332
1333 print_decl ("unsigned char", "mode_wider", "NUM_MACHINE_MODES");
1334
1335 for_all_modes (c, m)
1336 tagged_printf ("%smode",
1337 m->wider ? m->wider->name : void_mode->name,
1338 m->name);
1339
1340 print_closer ();
1341 print_decl ("unsigned char", "mode_2xwider", "NUM_MACHINE_MODES");
1342
1343 for_all_modes (c, m)
1344 {
1345 struct mode_data * m2;
1346
1347 for (m2 = m;
1348 m2 && m2 != void_mode;
1349 m2 = m2->wider)
1350 {
1351 if (m2->bytesize < 2 * m->bytesize)
1352 continue;
1353 if (m->precision != (unsigned int) -1)
1354 {
1355 if (m2->precision != 2 * m->precision)
1356 continue;
1357 }
1358 else
1359 {
1360 if (m2->precision != (unsigned int) -1)
1361 continue;
1362 }
1363
1364 /* For vectors we want twice the number of components,
1365 with the same element type. */
1366 if (m->cl == MODE_VECTOR_INT
1367 || m->cl == MODE_VECTOR_FLOAT
1368 || m->cl == MODE_VECTOR_FRACT
1369 || m->cl == MODE_VECTOR_UFRACT
1370 || m->cl == MODE_VECTOR_ACCUM
1371 || m->cl == MODE_VECTOR_UACCUM)
1372 {
1373 if (m2->ncomponents != 2 * m->ncomponents)
1374 continue;
1375 if (m->component != m2->component)
1376 continue;
1377 }
1378
1379 break;
1380 }
1381 if (m2 == void_mode)
1382 m2 = 0;
1383 tagged_printf ("%smode",
1384 m2 ? m2->name : void_mode->name,
1385 m->name);
1386 }
1387
1388 print_closer ();
1389 }
1390
1391 static void
1392 emit_mode_complex (void)
1393 {
1394 int c;
1395 struct mode_data *m;
1396
1397 print_decl ("unsigned char", "mode_complex", "NUM_MACHINE_MODES");
1398
1399 for_all_modes (c, m)
1400 tagged_printf ("%smode",
1401 m->complex ? m->complex->name : void_mode->name,
1402 m->name);
1403
1404 print_closer ();
1405 }
1406
1407 static void
1408 emit_mode_mask (void)
1409 {
1410 int c;
1411 struct mode_data *m;
1412
1413 print_decl ("unsigned HOST_WIDE_INT", "mode_mask_array",
1414 "NUM_MACHINE_MODES");
1415 puts ("\
1416 #define MODE_MASK(m) \\\n\
1417 ((m) >= HOST_BITS_PER_WIDE_INT) \\\n\
1418 ? HOST_WIDE_INT_M1U \\\n\
1419 : (HOST_WIDE_INT_1U << (m)) - 1\n");
1420
1421 for_all_modes (c, m)
1422 if (m->precision != (unsigned int)-1)
1423 tagged_printf ("MODE_MASK (%u)", m->precision, m->name);
1424 else
1425 tagged_printf ("MODE_MASK (%u*BITS_PER_UNIT)", m->bytesize, m->name);
1426
1427 puts ("#undef MODE_MASK");
1428 print_closer ();
1429 }
1430
1431 static void
1432 emit_mode_inner (void)
1433 {
1434 int c;
1435 struct mode_data *m;
1436
1437 print_decl ("unsigned char", "mode_inner", "NUM_MACHINE_MODES");
1438
1439 for_all_modes (c, m)
1440 tagged_printf ("%smode",
1441 c != MODE_PARTIAL_INT && m->component
1442 ? m->component->name : m->name,
1443 m->name);
1444
1445 print_closer ();
1446 }
1447
1448 /* Emit mode_unit_size array into insn-modes.c file. */
1449 static void
1450 emit_mode_unit_size (void)
1451 {
1452 int c;
1453 struct mode_data *m;
1454
1455 print_maybe_const_decl ("%sunsigned char", "mode_unit_size",
1456 "NUM_MACHINE_MODES", bytesize);
1457
1458 for_all_modes (c, m)
1459 tagged_printf ("%u",
1460 c != MODE_PARTIAL_INT && m->component
1461 ? m->component->bytesize : m->bytesize, m->name);
1462
1463 print_closer ();
1464 }
1465
1466 /* Emit mode_unit_precision array into insn-modes.c file. */
1467 static void
1468 emit_mode_unit_precision (void)
1469 {
1470 int c;
1471 struct mode_data *m;
1472
1473 print_decl ("unsigned short", "mode_unit_precision", "NUM_MACHINE_MODES");
1474
1475 for_all_modes (c, m)
1476 {
1477 struct mode_data *m2 = (c != MODE_PARTIAL_INT && m->component) ?
1478 m->component : m;
1479 if (m2->precision != (unsigned int)-1)
1480 tagged_printf ("%u", m2->precision, m->name);
1481 else
1482 tagged_printf ("%u*BITS_PER_UNIT", m2->bytesize, m->name);
1483 }
1484
1485 print_closer ();
1486 }
1487
1488
1489 static void
1490 emit_mode_base_align (void)
1491 {
1492 int c;
1493 struct mode_data *m;
1494
1495 print_maybe_const_decl ("%sunsigned char",
1496 "mode_base_align", "NUM_MACHINE_MODES",
1497 alignment);
1498
1499 for_all_modes (c, m)
1500 tagged_printf ("%u", m->alignment, m->name);
1501
1502 print_closer ();
1503 }
1504
1505 static void
1506 emit_class_narrowest_mode (void)
1507 {
1508 int c;
1509
1510 print_decl ("unsigned char", "class_narrowest_mode", "MAX_MODE_CLASS");
1511
1512 for (c = 0; c < MAX_MODE_CLASS; c++)
1513 /* Bleah, all this to get the comment right for MIN_MODE_INT. */
1514 tagged_printf ("MIN_%s", mode_class_names[c],
1515 modes[c]
1516 ? ((c != MODE_INT || modes[c]->precision != 1)
1517 ? modes[c]->name
1518 : (modes[c]->next
1519 ? modes[c]->next->name
1520 : void_mode->name))
1521 : void_mode->name);
1522
1523 print_closer ();
1524 }
1525
1526 static void
1527 emit_real_format_for_mode (void)
1528 {
1529 struct mode_data *m;
1530
1531 /* The entities pointed to by this table are constant, whether
1532 or not the table itself is constant.
1533
1534 For backward compatibility this table is always writable
1535 (several targets modify it in TARGET_OPTION_OVERRIDE). FIXME:
1536 convert all said targets to use ADJUST_FORMAT instead. */
1537 #if 0
1538 print_maybe_const_decl ("const struct real_format *%s",
1539 "real_format_for_mode",
1540 "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1",
1541 format);
1542 #else
1543 print_decl ("struct real_format *\n", "real_format_for_mode",
1544 "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1 "
1545 "+ MAX_MODE_DECIMAL_FLOAT - MIN_MODE_DECIMAL_FLOAT + 1");
1546 #endif
1547
1548 /* The beginning of the table is entries for float modes. */
1549 for (m = modes[MODE_FLOAT]; m; m = m->next)
1550 if (!strcmp (m->format, "0"))
1551 tagged_printf ("%s", m->format, m->name);
1552 else
1553 tagged_printf ("&%s", m->format, m->name);
1554
1555 /* The end of the table is entries for decimal float modes. */
1556 for (m = modes[MODE_DECIMAL_FLOAT]; m; m = m->next)
1557 if (!strcmp (m->format, "0"))
1558 tagged_printf ("%s", m->format, m->name);
1559 else
1560 tagged_printf ("&%s", m->format, m->name);
1561
1562 print_closer ();
1563 }
1564
1565 static void
1566 emit_mode_adjustments (void)
1567 {
1568 struct mode_adjust *a;
1569 struct mode_data *m;
1570
1571 puts ("\
1572 \nvoid\
1573 \ninit_adjust_machine_modes (void)\
1574 \n{\
1575 \n size_t s ATTRIBUTE_UNUSED;");
1576
1577 /* Size adjustments must be propagated to all containing modes.
1578 A size adjustment forces us to recalculate the alignment too. */
1579 for (a = adj_bytesize; a; a = a->next)
1580 {
1581 printf ("\n /* %s:%d */\n s = %s;\n",
1582 a->file, a->line, a->adjustment);
1583 printf (" mode_size[%smode] = s;\n", a->mode->name);
1584 printf (" mode_unit_size[%smode] = s;\n", a->mode->name);
1585 printf (" mode_base_align[%smode] = s & (~s + 1);\n",
1586 a->mode->name);
1587
1588 for (m = a->mode->contained; m; m = m->next_cont)
1589 {
1590 switch (m->cl)
1591 {
1592 case MODE_COMPLEX_INT:
1593 case MODE_COMPLEX_FLOAT:
1594 printf (" mode_size[%smode] = 2*s;\n", m->name);
1595 printf (" mode_unit_size[%smode] = s;\n", m->name);
1596 printf (" mode_base_align[%smode] = s & (~s + 1);\n",
1597 m->name);
1598 break;
1599
1600 case MODE_VECTOR_INT:
1601 case MODE_VECTOR_FLOAT:
1602 case MODE_VECTOR_FRACT:
1603 case MODE_VECTOR_UFRACT:
1604 case MODE_VECTOR_ACCUM:
1605 case MODE_VECTOR_UACCUM:
1606 printf (" mode_size[%smode] = %d*s;\n",
1607 m->name, m->ncomponents);
1608 printf (" mode_unit_size[%smode] = s;\n", m->name);
1609 printf (" mode_base_align[%smode] = (%d*s) & (~(%d*s)+1);\n",
1610 m->name, m->ncomponents, m->ncomponents);
1611 break;
1612
1613 default:
1614 internal_error (
1615 "mode %s is neither vector nor complex but contains %s",
1616 m->name, a->mode->name);
1617 /* NOTREACHED */
1618 }
1619 }
1620 }
1621
1622 /* Alignment adjustments propagate too.
1623 ??? This may not be the right thing for vector modes. */
1624 for (a = adj_alignment; a; a = a->next)
1625 {
1626 printf ("\n /* %s:%d */\n s = %s;\n",
1627 a->file, a->line, a->adjustment);
1628 printf (" mode_base_align[%smode] = s;\n", a->mode->name);
1629
1630 for (m = a->mode->contained; m; m = m->next_cont)
1631 {
1632 switch (m->cl)
1633 {
1634 case MODE_COMPLEX_INT:
1635 case MODE_COMPLEX_FLOAT:
1636 printf (" mode_base_align[%smode] = s;\n", m->name);
1637 break;
1638
1639 case MODE_VECTOR_INT:
1640 case MODE_VECTOR_FLOAT:
1641 case MODE_VECTOR_FRACT:
1642 case MODE_VECTOR_UFRACT:
1643 case MODE_VECTOR_ACCUM:
1644 case MODE_VECTOR_UACCUM:
1645 printf (" mode_base_align[%smode] = %d*s;\n",
1646 m->name, m->ncomponents);
1647 break;
1648
1649 default:
1650 internal_error (
1651 "mode %s is neither vector nor complex but contains %s",
1652 m->name, a->mode->name);
1653 /* NOTREACHED */
1654 }
1655 }
1656 }
1657
1658 /* Ibit adjustments don't have to propagate. */
1659 for (a = adj_ibit; a; a = a->next)
1660 {
1661 printf ("\n /* %s:%d */\n s = %s;\n",
1662 a->file, a->line, a->adjustment);
1663 printf (" mode_ibit[%smode] = s;\n", a->mode->name);
1664 }
1665
1666 /* Fbit adjustments don't have to propagate. */
1667 for (a = adj_fbit; a; a = a->next)
1668 {
1669 printf ("\n /* %s:%d */\n s = %s;\n",
1670 a->file, a->line, a->adjustment);
1671 printf (" mode_fbit[%smode] = s;\n", a->mode->name);
1672 }
1673
1674 /* Real mode formats don't have to propagate anywhere. */
1675 for (a = adj_format; a; a = a->next)
1676 printf ("\n /* %s:%d */\n REAL_MODE_FORMAT (%smode) = %s;\n",
1677 a->file, a->line, a->mode->name, a->adjustment);
1678
1679 puts ("}");
1680 }
1681
1682 /* Emit ibit for all modes. */
1683
1684 static void
1685 emit_mode_ibit (void)
1686 {
1687 int c;
1688 struct mode_data *m;
1689
1690 print_maybe_const_decl ("%sunsigned char",
1691 "mode_ibit", "NUM_MACHINE_MODES",
1692 ibit);
1693
1694 for_all_modes (c, m)
1695 tagged_printf ("%u", m->ibit, m->name);
1696
1697 print_closer ();
1698 }
1699
1700 /* Emit fbit for all modes. */
1701
1702 static void
1703 emit_mode_fbit (void)
1704 {
1705 int c;
1706 struct mode_data *m;
1707
1708 print_maybe_const_decl ("%sunsigned char",
1709 "mode_fbit", "NUM_MACHINE_MODES",
1710 fbit);
1711
1712 for_all_modes (c, m)
1713 tagged_printf ("%u", m->fbit, m->name);
1714
1715 print_closer ();
1716 }
1717
1718 /* Emit __intN for all modes. */
1719
1720 static void
1721 emit_mode_int_n (void)
1722 {
1723 int c;
1724 struct mode_data *m;
1725 struct mode_data **mode_sort;
1726 int n_modes = 0;
1727 int i, j;
1728
1729 print_decl ("int_n_data_t", "int_n_data", "");
1730
1731 n_modes = 0;
1732 for_all_modes (c, m)
1733 if (m->int_n)
1734 n_modes ++;
1735 mode_sort = XALLOCAVEC (struct mode_data *, n_modes);
1736
1737 n_modes = 0;
1738 for_all_modes (c, m)
1739 if (m->int_n)
1740 mode_sort[n_modes++] = m;
1741
1742 /* Yes, this is a bubblesort, but there are at most four (and
1743 usually only 1-2) entries to sort. */
1744 for (i = 0; i<n_modes - 1; i++)
1745 for (j = i + 1; j < n_modes; j++)
1746 if (mode_sort[i]->int_n > mode_sort[j]->int_n)
1747 std::swap (mode_sort[i], mode_sort[j]);
1748
1749 for (i = 0; i < n_modes; i ++)
1750 {
1751 m = mode_sort[i];
1752 printf(" {\n");
1753 tagged_printf ("%u", m->int_n, m->name);
1754 printf ("%smode,", m->name);
1755 printf(" },\n");
1756 }
1757
1758 print_closer ();
1759 }
1760
1761
1762 static void
1763 emit_insn_modes_c (void)
1764 {
1765 emit_insn_modes_c_header ();
1766 emit_mode_name ();
1767 emit_mode_class ();
1768 emit_mode_precision ();
1769 emit_mode_size ();
1770 emit_mode_nunits ();
1771 emit_mode_wider ();
1772 emit_mode_complex ();
1773 emit_mode_mask ();
1774 emit_mode_inner ();
1775 emit_mode_unit_size ();
1776 emit_mode_unit_precision ();
1777 emit_mode_base_align ();
1778 emit_class_narrowest_mode ();
1779 emit_real_format_for_mode ();
1780 emit_mode_adjustments ();
1781 emit_mode_ibit ();
1782 emit_mode_fbit ();
1783 emit_mode_int_n ();
1784 }
1785
1786 static void
1787 emit_min_insn_modes_c (void)
1788 {
1789 emit_min_insn_modes_c_header ();
1790 emit_mode_name ();
1791 emit_mode_class ();
1792 emit_mode_wider ();
1793 emit_class_narrowest_mode ();
1794 }
1795
1796 /* Master control. */
1797 int
1798 main (int argc, char **argv)
1799 {
1800 bool gen_header = false, gen_min = false;
1801 progname = argv[0];
1802
1803 if (argc == 1)
1804 ;
1805 else if (argc == 2 && !strcmp (argv[1], "-h"))
1806 gen_header = true;
1807 else if (argc == 2 && !strcmp (argv[1], "-m"))
1808 gen_min = true;
1809 else
1810 {
1811 error ("usage: %s [-h|-m] > file", progname);
1812 return FATAL_EXIT_CODE;
1813 }
1814
1815 modes_by_name = htab_create_alloc (64, hash_mode, eq_mode, 0, xcalloc, free);
1816
1817 create_modes ();
1818 complete_all_modes ();
1819
1820 if (have_error)
1821 return FATAL_EXIT_CODE;
1822
1823 calc_wider_mode ();
1824
1825 if (gen_header)
1826 emit_insn_modes_h ();
1827 else if (gen_min)
1828 emit_min_insn_modes_c ();
1829 else
1830 emit_insn_modes_c ();
1831
1832 if (fflush (stdout) || fclose (stdout))
1833 return FATAL_EXIT_CODE;
1834 return SUCCESS_EXIT_CODE;
1835 }