2015-06-25 Zhouyi Zhou <yizhouzhou@ict.ac.cn>
[official-gcc.git] / gcc / genmodes.c
blob8e9337c18d6d53da2db74b8684e375c7a5753464
1 /* Generate the machine mode enumeration and associated tables.
2 Copyright (C) 2003-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
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.
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.
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/>. */
20 #include "bconfig.h"
21 #include "system.h"
22 #include "errors.h"
24 /* enum mode_class is normally defined by machmode.h but we can't
25 include that header here. */
26 #include "mode-classes.def"
28 #define DEF_MODE_CLASS(M) M
29 enum mode_class { MODE_CLASSES, MAX_MODE_CLASS };
30 #undef DEF_MODE_CLASS
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] =
36 MODE_CLASSES
38 #undef DEF_MODE_CLASS
39 #undef MODE_CLASSES
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
48 /* Data structure for building up what we know about a mode.
49 They're clustered by mode class. */
50 struct mode_data
52 struct mode_data *next; /* next this class - arbitrary order */
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 */
62 struct mode_data *component; /* mode of components */
63 struct mode_data *wider; /* next wider mode */
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. */
69 const char *file; /* file and line of definition, */
70 unsigned int line; /* for error reporting */
71 unsigned int counter; /* Rank ordering of modes */
72 unsigned int ibit; /* the number of integral bits */
73 unsigned int fbit; /* the number of fractional bits */
74 bool need_bytesize_adj; /* true if this mode need dynamic size
75 adjustment */
76 unsigned int int_n; /* If nonzero, then __int<INT_N> will be defined */
79 static struct mode_data *modes[MAX_MODE_CLASS];
80 static unsigned int n_modes[MAX_MODE_CLASS];
81 static struct mode_data *void_mode;
83 static const struct mode_data blank_mode = {
84 0, "<unknown>", MAX_MODE_CLASS,
85 -1U, -1U, -1U, -1U,
86 0, 0, 0, 0, 0,
87 "<unknown>", 0, 0, 0, 0, false, 0
90 static htab_t modes_by_name;
92 /* Data structure for recording target-specified runtime adjustments
93 to a particular mode. We support varying the byte size, the
94 alignment, and the floating point format. */
95 struct mode_adjust
97 struct mode_adjust *next;
98 struct mode_data *mode;
99 const char *adjustment;
101 const char *file;
102 unsigned int line;
105 static struct mode_adjust *adj_bytesize;
106 static struct mode_adjust *adj_alignment;
107 static struct mode_adjust *adj_format;
108 static struct mode_adjust *adj_ibit;
109 static struct mode_adjust *adj_fbit;
111 /* Mode class operations. */
112 static enum mode_class
113 complex_class (enum mode_class c)
115 switch (c)
117 case MODE_INT: return MODE_COMPLEX_INT;
118 case MODE_FLOAT: return MODE_COMPLEX_FLOAT;
119 default:
120 error ("no complex class for class %s", mode_class_names[c]);
121 return MODE_RANDOM;
125 static enum mode_class
126 vector_class (enum mode_class cl)
128 switch (cl)
130 case MODE_INT: return MODE_VECTOR_INT;
131 case MODE_FLOAT: return MODE_VECTOR_FLOAT;
132 case MODE_FRACT: return MODE_VECTOR_FRACT;
133 case MODE_UFRACT: return MODE_VECTOR_UFRACT;
134 case MODE_ACCUM: return MODE_VECTOR_ACCUM;
135 case MODE_UACCUM: return MODE_VECTOR_UACCUM;
136 default:
137 error ("no vector class for class %s", mode_class_names[cl]);
138 return MODE_RANDOM;
142 /* Utility routines. */
143 static inline struct mode_data *
144 find_mode (const char *name)
146 struct mode_data key;
148 key.name = name;
149 return (struct mode_data *) htab_find (modes_by_name, &key);
152 static struct mode_data *
153 new_mode (enum mode_class cl, const char *name,
154 const char *file, unsigned int line)
156 struct mode_data *m;
157 static unsigned int count = 0;
159 m = find_mode (name);
160 if (m)
162 error ("%s:%d: duplicate definition of mode \"%s\"",
163 trim_filename (file), line, name);
164 error ("%s:%d: previous definition here", m->file, m->line);
165 return m;
168 m = XNEW (struct mode_data);
169 memcpy (m, &blank_mode, sizeof (struct mode_data));
170 m->cl = cl;
171 m->name = name;
172 if (file)
173 m->file = trim_filename (file);
174 m->line = line;
175 m->counter = count++;
177 m->next = modes[cl];
178 modes[cl] = m;
179 n_modes[cl]++;
181 *htab_find_slot (modes_by_name, m, INSERT) = m;
183 return m;
186 static hashval_t
187 hash_mode (const void *p)
189 const struct mode_data *m = (const struct mode_data *)p;
190 return htab_hash_string (m->name);
193 static int
194 eq_mode (const void *p, const void *q)
196 const struct mode_data *a = (const struct mode_data *)p;
197 const struct mode_data *b = (const struct mode_data *)q;
199 return !strcmp (a->name, b->name);
202 #define for_all_modes(C, M) \
203 for (C = 0; C < MAX_MODE_CLASS; C++) \
204 for (M = modes[C]; M; M = M->next)
206 static void ATTRIBUTE_UNUSED
207 new_adjust (const char *name,
208 struct mode_adjust **category, const char *catname,
209 const char *adjustment,
210 enum mode_class required_class_from,
211 enum mode_class required_class_to,
212 const char *file, unsigned int line)
214 struct mode_data *mode = find_mode (name);
215 struct mode_adjust *a;
217 file = trim_filename (file);
219 if (!mode)
221 error ("%s:%d: no mode \"%s\"", file, line, name);
222 return;
225 if (required_class_from != MODE_RANDOM
226 && (mode->cl < required_class_from || mode->cl > required_class_to))
228 error ("%s:%d: mode \"%s\" is not among class {%s, %s}",
229 file, line, name, mode_class_names[required_class_from] + 5,
230 mode_class_names[required_class_to] + 5);
231 return;
234 for (a = *category; a; a = a->next)
235 if (a->mode == mode)
237 error ("%s:%d: mode \"%s\" already has a %s adjustment",
238 file, line, name, catname);
239 error ("%s:%d: previous adjustment here", a->file, a->line);
240 return;
243 a = XNEW (struct mode_adjust);
244 a->mode = mode;
245 a->adjustment = adjustment;
246 a->file = file;
247 a->line = line;
249 a->next = *category;
250 *category = a;
253 /* Diagnose failure to meet expectations in a partially filled out
254 mode structure. */
255 enum requirement { SET, UNSET, OPTIONAL };
257 #define validate_field_(mname, fname, req, val, unset, file, line) do { \
258 switch (req) \
260 case SET: \
261 if (val == unset) \
262 error ("%s:%d: (%s) field %s must be set", \
263 file, line, mname, fname); \
264 break; \
265 case UNSET: \
266 if (val != unset) \
267 error ("%s:%d: (%s) field %s must not be set", \
268 file, line, mname, fname); \
269 case OPTIONAL: \
270 break; \
272 } while (0)
274 #define validate_field(M, F) \
275 validate_field_(M->name, #F, r_##F, M->F, blank_mode.F, M->file, M->line)
277 static void
278 validate_mode (struct mode_data *m,
279 enum requirement r_precision,
280 enum requirement r_bytesize,
281 enum requirement r_component,
282 enum requirement r_ncomponents,
283 enum requirement r_format)
285 validate_field (m, precision);
286 validate_field (m, bytesize);
287 validate_field (m, component);
288 validate_field (m, ncomponents);
289 validate_field (m, format);
291 #undef validate_field
292 #undef validate_field_
294 /* Given a partially-filled-out mode structure, figure out what we can
295 and fill the rest of it in; die if it isn't enough. */
296 static void
297 complete_mode (struct mode_data *m)
299 unsigned int alignment;
301 if (!m->name)
303 error ("%s:%d: mode with no name", m->file, m->line);
304 return;
306 if (m->cl == MAX_MODE_CLASS)
308 error ("%s:%d: %smode has no mode class", m->file, m->line, m->name);
309 return;
312 switch (m->cl)
314 case MODE_RANDOM:
315 /* Nothing more need be said. */
316 if (!strcmp (m->name, "VOID"))
317 void_mode = m;
319 validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
321 m->precision = 0;
322 m->bytesize = 0;
323 m->ncomponents = 0;
324 m->component = 0;
325 break;
327 case MODE_CC:
328 /* Again, nothing more need be said. For historical reasons,
329 the size of a CC mode is four units. */
330 validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
332 m->bytesize = 4;
333 m->ncomponents = 1;
334 m->component = 0;
335 break;
337 case MODE_INT:
338 case MODE_POINTER_BOUNDS:
339 case MODE_FLOAT:
340 case MODE_DECIMAL_FLOAT:
341 case MODE_FRACT:
342 case MODE_UFRACT:
343 case MODE_ACCUM:
344 case MODE_UACCUM:
345 /* A scalar mode must have a byte size, may have a bit size,
346 and must not have components. A float mode must have a
347 format. */
348 validate_mode (m, OPTIONAL, SET, UNSET, UNSET,
349 (m->cl == MODE_FLOAT || m->cl == MODE_DECIMAL_FLOAT)
350 ? SET : UNSET);
352 m->ncomponents = 1;
353 m->component = 0;
354 break;
356 case MODE_PARTIAL_INT:
357 /* A partial integer mode uses ->component to say what the
358 corresponding full-size integer mode is, and may also
359 specify a bit size. */
360 validate_mode (m, OPTIONAL, UNSET, SET, UNSET, UNSET);
362 m->bytesize = m->component->bytesize;
364 m->ncomponents = 1;
365 break;
367 case MODE_COMPLEX_INT:
368 case MODE_COMPLEX_FLOAT:
369 /* Complex modes should have a component indicated, but no more. */
370 validate_mode (m, UNSET, UNSET, SET, UNSET, UNSET);
371 m->ncomponents = 2;
372 if (m->component->precision != (unsigned int)-1)
373 m->precision = 2 * m->component->precision;
374 m->bytesize = 2 * m->component->bytesize;
375 break;
377 case MODE_VECTOR_INT:
378 case MODE_VECTOR_FLOAT:
379 case MODE_VECTOR_FRACT:
380 case MODE_VECTOR_UFRACT:
381 case MODE_VECTOR_ACCUM:
382 case MODE_VECTOR_UACCUM:
383 /* Vector modes should have a component and a number of components. */
384 validate_mode (m, UNSET, UNSET, SET, SET, UNSET);
385 if (m->component->precision != (unsigned int)-1)
386 m->precision = m->ncomponents * m->component->precision;
387 m->bytesize = m->ncomponents * m->component->bytesize;
388 break;
390 default:
391 gcc_unreachable ();
394 /* If not already specified, the mode alignment defaults to the largest
395 power of two that divides the size of the object. Complex types are
396 not more aligned than their contents. */
397 if (m->cl == MODE_COMPLEX_INT || m->cl == MODE_COMPLEX_FLOAT)
398 alignment = m->component->bytesize;
399 else
400 alignment = m->bytesize;
402 m->alignment = alignment & (~alignment + 1);
404 /* If this mode has components, make the component mode point back
405 to this mode, for the sake of adjustments. */
406 if (m->component)
408 m->next_cont = m->component->contained;
409 m->component->contained = m;
413 static void
414 complete_all_modes (void)
416 struct mode_data *m;
417 int cl;
419 for_all_modes (cl, m)
420 complete_mode (m);
423 /* For each mode in class CLASS, construct a corresponding complex mode. */
424 #define COMPLEX_MODES(C) make_complex_modes (MODE_##C, __FILE__, __LINE__)
425 static void
426 make_complex_modes (enum mode_class cl,
427 const char *file, unsigned int line)
429 struct mode_data *m;
430 struct mode_data *c;
431 enum mode_class cclass = complex_class (cl);
433 if (cclass == MODE_RANDOM)
434 return;
436 for (m = modes[cl]; m; m = m->next)
438 char *p, *buf;
439 size_t m_len;
441 /* Skip BImode. FIXME: BImode probably shouldn't be MODE_INT. */
442 if (m->precision == 1)
443 continue;
445 m_len = strlen (m->name);
446 /* The leading "1 +" is in case we prepend a "C" below. */
447 buf = (char *) xmalloc (1 + m_len + 1);
449 /* Float complex modes are named SCmode, etc.
450 Int complex modes are named CSImode, etc.
451 This inconsistency should be eliminated. */
452 p = 0;
453 if (cl == MODE_FLOAT)
455 memcpy (buf, m->name, m_len + 1);
456 p = strchr (buf, 'F');
457 if (p == 0 && strchr (buf, 'D') == 0)
459 error ("%s:%d: float mode \"%s\" has no 'F' or 'D'",
460 m->file, m->line, m->name);
461 free (buf);
462 continue;
465 if (p != 0)
466 *p = 'C';
467 else
469 buf[0] = 'C';
470 memcpy (buf + 1, m->name, m_len + 1);
473 c = new_mode (cclass, buf, file, line);
474 c->component = m;
478 /* For all modes in class CL, construct vector modes of width
479 WIDTH, having as many components as necessary. */
480 #define VECTOR_MODES(C, W) make_vector_modes (MODE_##C, W, __FILE__, __LINE__)
481 static void ATTRIBUTE_UNUSED
482 make_vector_modes (enum mode_class cl, unsigned int width,
483 const char *file, unsigned int line)
485 struct mode_data *m;
486 struct mode_data *v;
487 char buf[8];
488 unsigned int ncomponents;
489 enum mode_class vclass = vector_class (cl);
491 if (vclass == MODE_RANDOM)
492 return;
494 for (m = modes[cl]; m; m = m->next)
496 /* Do not construct vector modes with only one element, or
497 vector modes where the element size doesn't divide the full
498 size evenly. */
499 ncomponents = width / m->bytesize;
500 if (ncomponents < 2)
501 continue;
502 if (width % m->bytesize)
503 continue;
505 /* Skip QFmode and BImode. FIXME: this special case should
506 not be necessary. */
507 if (cl == MODE_FLOAT && m->bytesize == 1)
508 continue;
509 if (cl == MODE_INT && m->precision == 1)
510 continue;
512 if ((size_t)snprintf (buf, sizeof buf, "V%u%s", ncomponents, m->name)
513 >= sizeof buf)
515 error ("%s:%d: mode name \"%s\" is too long",
516 m->file, m->line, m->name);
517 continue;
520 v = new_mode (vclass, xstrdup (buf), file, line);
521 v->component = m;
522 v->ncomponents = ncomponents;
526 /* Input. */
528 #define _SPECIAL_MODE(C, N) \
529 make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
530 #define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
531 #define CC_MODE(N) _SPECIAL_MODE (CC, N)
533 static void
534 make_special_mode (enum mode_class cl, const char *name,
535 const char *file, unsigned int line)
537 new_mode (cl, name, file, line);
540 #define POINTER_BOUNDS_MODE(N, Y) \
541 make_pointer_bounds_mode (#N, Y, __FILE__, __LINE__)
543 static void ATTRIBUTE_UNUSED
544 make_pointer_bounds_mode (const char *name,
545 unsigned int bytesize,
546 const char *file, unsigned int line)
548 struct mode_data *m = new_mode (MODE_POINTER_BOUNDS, name, file, line);
549 m->bytesize = bytesize;
553 #define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
554 #define FRACTIONAL_INT_MODE(N, B, Y) \
555 make_int_mode (#N, B, Y, __FILE__, __LINE__)
557 static void
558 make_int_mode (const char *name,
559 unsigned int precision, unsigned int bytesize,
560 const char *file, unsigned int line)
562 struct mode_data *m = new_mode (MODE_INT, name, file, line);
563 m->bytesize = bytesize;
564 m->precision = precision;
567 #define FRACT_MODE(N, Y, F) \
568 make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)
570 #define UFRACT_MODE(N, Y, F) \
571 make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)
573 #define ACCUM_MODE(N, Y, I, F) \
574 make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)
576 #define UACCUM_MODE(N, Y, I, F) \
577 make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)
579 /* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
580 FILE, and LINE. */
582 static void
583 make_fixed_point_mode (enum mode_class cl,
584 const char *name,
585 unsigned int bytesize,
586 unsigned int ibit,
587 unsigned int fbit,
588 const char *file, unsigned int line)
590 struct mode_data *m = new_mode (cl, name, file, line);
591 m->bytesize = bytesize;
592 m->ibit = ibit;
593 m->fbit = fbit;
596 #define FLOAT_MODE(N, Y, F) FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
597 #define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
598 make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
600 static void
601 make_float_mode (const char *name,
602 unsigned int precision, unsigned int bytesize,
603 const char *format,
604 const char *file, unsigned int line)
606 struct mode_data *m = new_mode (MODE_FLOAT, name, file, line);
607 m->bytesize = bytesize;
608 m->precision = precision;
609 m->format = format;
612 #define DECIMAL_FLOAT_MODE(N, Y, F) \
613 FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
614 #define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F) \
615 make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
617 static void
618 make_decimal_float_mode (const char *name,
619 unsigned int precision, unsigned int bytesize,
620 const char *format,
621 const char *file, unsigned int line)
623 struct mode_data *m = new_mode (MODE_DECIMAL_FLOAT, name, file, line);
624 m->bytesize = bytesize;
625 m->precision = precision;
626 m->format = format;
629 #define RESET_FLOAT_FORMAT(N, F) \
630 reset_float_format (#N, #F, __FILE__, __LINE__)
631 static void ATTRIBUTE_UNUSED
632 reset_float_format (const char *name, const char *format,
633 const char *file, unsigned int line)
635 struct mode_data *m = find_mode (name);
636 if (!m)
638 error ("%s:%d: no mode \"%s\"", file, line, name);
639 return;
641 if (m->cl != MODE_FLOAT && m->cl != MODE_DECIMAL_FLOAT)
643 error ("%s:%d: mode \"%s\" is not a FLOAT class", file, line, name);
644 return;
646 m->format = format;
649 /* __intN support. */
650 #define INT_N(M,PREC) \
651 make_int_n (#M, PREC, __FILE__, __LINE__)
652 static void ATTRIBUTE_UNUSED
653 make_int_n (const char *m, int bitsize,
654 const char *file, unsigned int line)
656 struct mode_data *component = find_mode (m);
657 if (!component)
659 error ("%s:%d: no mode \"%s\"", file, line, m);
660 return;
662 if (component->cl != MODE_INT
663 && component->cl != MODE_PARTIAL_INT)
665 error ("%s:%d: mode \"%s\" is not class INT or PARTIAL_INT", file, line, m);
666 return;
668 if (component->int_n != 0)
670 error ("%s:%d: mode \"%s\" already has an intN", file, line, m);
671 return;
674 component->int_n = bitsize;
677 /* Partial integer modes are specified by relation to a full integer
678 mode. */
679 #define PARTIAL_INT_MODE(M,PREC,NAME) \
680 make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
681 static void ATTRIBUTE_UNUSED
682 make_partial_integer_mode (const char *base, const char *name,
683 unsigned int precision,
684 const char *file, unsigned int line)
686 struct mode_data *m;
687 struct mode_data *component = find_mode (base);
688 if (!component)
690 error ("%s:%d: no mode \"%s\"", file, line, name);
691 return;
693 if (component->cl != MODE_INT)
695 error ("%s:%d: mode \"%s\" is not class INT", file, line, name);
696 return;
699 m = new_mode (MODE_PARTIAL_INT, name, file, line);
700 m->precision = precision;
701 m->component = component;
704 /* A single vector mode can be specified by naming its component
705 mode and the number of components. */
706 #define VECTOR_MODE(C, M, N) \
707 make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
708 static void ATTRIBUTE_UNUSED
709 make_vector_mode (enum mode_class bclass,
710 const char *base,
711 unsigned int ncomponents,
712 const char *file, unsigned int line)
714 struct mode_data *v;
715 enum mode_class vclass = vector_class (bclass);
716 struct mode_data *component = find_mode (base);
717 char namebuf[16];
719 if (vclass == MODE_RANDOM)
720 return;
721 if (component == 0)
723 error ("%s:%d: no mode \"%s\"", file, line, base);
724 return;
726 if (component->cl != bclass
727 && (component->cl != MODE_PARTIAL_INT
728 || bclass != MODE_INT))
730 error ("%s:%d: mode \"%s\" is not class %s",
731 file, line, base, mode_class_names[bclass] + 5);
732 return;
735 if ((size_t)snprintf (namebuf, sizeof namebuf, "V%u%s",
736 ncomponents, base) >= sizeof namebuf)
738 error ("%s:%d: mode name \"%s\" is too long",
739 file, line, base);
740 return;
743 v = new_mode (vclass, xstrdup (namebuf), file, line);
744 v->ncomponents = ncomponents;
745 v->component = component;
748 /* Adjustability. */
749 #define _ADD_ADJUST(A, M, X, C1, C2) \
750 new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
752 #define ADJUST_BYTESIZE(M, X) _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
753 #define ADJUST_ALIGNMENT(M, X) _ADD_ADJUST (alignment, M, X, RANDOM, RANDOM)
754 #define ADJUST_FLOAT_FORMAT(M, X) _ADD_ADJUST (format, M, X, FLOAT, FLOAT)
755 #define ADJUST_IBIT(M, X) _ADD_ADJUST (ibit, M, X, ACCUM, UACCUM)
756 #define ADJUST_FBIT(M, X) _ADD_ADJUST (fbit, M, X, FRACT, UACCUM)
758 static int bits_per_unit;
759 static int max_bitsize_mode_any_int;
761 static void
762 create_modes (void)
764 #include "machmode.def"
766 /* So put the default value unless the target needs a non standard
767 value. */
768 #ifdef BITS_PER_UNIT
769 bits_per_unit = BITS_PER_UNIT;
770 #else
771 bits_per_unit = 8;
772 #endif
774 #ifdef MAX_BITSIZE_MODE_ANY_INT
775 max_bitsize_mode_any_int = MAX_BITSIZE_MODE_ANY_INT;
776 #else
777 max_bitsize_mode_any_int = 0;
778 #endif
781 /* Processing. */
783 /* Sort a list of modes into the order needed for the WIDER field:
784 major sort by precision, minor sort by component precision.
786 For instance:
787 QI < HI < SI < DI < TI
788 V4QI < V2HI < V8QI < V4HI < V2SI.
790 If the precision is not set, sort by the bytesize. A mode with
791 precision set gets sorted before a mode without precision set, if
792 they have the same bytesize; this is the right thing because
793 the precision must always be smaller than the bytesize * BITS_PER_UNIT.
794 We don't have to do anything special to get this done -- an unset
795 precision shows up as (unsigned int)-1, i.e. UINT_MAX. */
796 static int
797 cmp_modes (const void *a, const void *b)
799 const struct mode_data *const m = *(const struct mode_data *const*)a;
800 const struct mode_data *const n = *(const struct mode_data *const*)b;
802 if (m->bytesize > n->bytesize)
803 return 1;
804 else if (m->bytesize < n->bytesize)
805 return -1;
807 if (m->precision > n->precision)
808 return 1;
809 else if (m->precision < n->precision)
810 return -1;
812 if (!m->component && !n->component)
814 if (m->counter < n->counter)
815 return -1;
816 else
817 return 1;
820 if (m->component->bytesize > n->component->bytesize)
821 return 1;
822 else if (m->component->bytesize < n->component->bytesize)
823 return -1;
825 if (m->component->precision > n->component->precision)
826 return 1;
827 else if (m->component->precision < n->component->precision)
828 return -1;
830 if (m->counter < n->counter)
831 return -1;
832 else
833 return 1;
836 static void
837 calc_wider_mode (void)
839 int c;
840 struct mode_data *m;
841 struct mode_data **sortbuf;
842 unsigned int max_n_modes = 0;
843 unsigned int i, j;
845 for (c = 0; c < MAX_MODE_CLASS; c++)
846 max_n_modes = MAX (max_n_modes, n_modes[c]);
848 /* Allocate max_n_modes + 1 entries to leave room for the extra null
849 pointer assigned after the qsort call below. */
850 sortbuf = XALLOCAVEC (struct mode_data *, max_n_modes + 1);
852 for (c = 0; c < MAX_MODE_CLASS; c++)
854 /* "wider" is not meaningful for MODE_RANDOM and MODE_CC.
855 However, we want these in textual order, and we have
856 precisely the reverse. */
857 if (c == MODE_RANDOM || c == MODE_CC)
859 struct mode_data *prev, *next;
861 for (prev = 0, m = modes[c]; m; m = next)
863 m->wider = void_mode;
865 /* this is nreverse */
866 next = m->next;
867 m->next = prev;
868 prev = m;
870 modes[c] = prev;
872 else
874 if (!modes[c])
875 continue;
877 for (i = 0, m = modes[c]; m; i++, m = m->next)
878 sortbuf[i] = m;
880 qsort (sortbuf, i, sizeof (struct mode_data *), cmp_modes);
882 sortbuf[i] = 0;
883 for (j = 0; j < i; j++)
885 sortbuf[j]->next = sortbuf[j + 1];
886 if (c == MODE_PARTIAL_INT)
887 sortbuf[j]->wider = sortbuf[j]->component;
888 else
889 sortbuf[j]->wider = sortbuf[j]->next;
892 modes[c] = sortbuf[0];
897 /* Output routines. */
899 #define tagged_printf(FMT, ARG, TAG) do { \
900 int count_ = printf (" " FMT ",", ARG); \
901 printf ("%*s/* %s */\n", 27 - count_, "", TAG); \
902 } while (0)
904 #define print_decl(TYPE, NAME, ASIZE) \
905 puts ("\nconst " TYPE " " NAME "[" ASIZE "] =\n{");
907 #define print_maybe_const_decl(TYPE, NAME, ASIZE, CATEGORY) \
908 printf ("\n" TYPE " " NAME "[" ASIZE "] = \n{\n", \
909 adj_##CATEGORY ? "" : "const ")
911 #define print_closer() puts ("};")
913 /* Compute the max bitsize of some of the classes of integers. It may
914 be that there are needs for the other integer classes, and this
915 code is easy to extend. */
916 static void
917 emit_max_int (void)
919 unsigned int max, mmax;
920 struct mode_data *i;
921 int j;
923 puts ("");
925 printf ("#define BITS_PER_UNIT (%d)\n", bits_per_unit);
927 if (max_bitsize_mode_any_int == 0)
929 for (max = 1, i = modes[MODE_INT]; i; i = i->next)
930 if (max < i->bytesize)
931 max = i->bytesize;
932 mmax = max;
933 for (max = 1, i = modes[MODE_PARTIAL_INT]; i; i = i->next)
934 if (max < i->bytesize)
935 max = i->bytesize;
936 if (max > mmax)
937 mmax = max;
938 printf ("#define MAX_BITSIZE_MODE_ANY_INT (%d*BITS_PER_UNIT)\n", mmax);
940 else
941 printf ("#define MAX_BITSIZE_MODE_ANY_INT %d\n", max_bitsize_mode_any_int);
943 mmax = 0;
944 for (j = 0; j < MAX_MODE_CLASS; j++)
945 for (i = modes[j]; i; i = i->next)
946 if (mmax < i->bytesize)
947 mmax = i->bytesize;
948 printf ("#define MAX_BITSIZE_MODE_ANY_MODE (%d*BITS_PER_UNIT)\n", mmax);
951 /* Emit mode_size_inline routine into insn-modes.h header. */
952 static void
953 emit_mode_size_inline (void)
955 int c;
956 struct mode_adjust *a;
957 struct mode_data *m;
959 /* Size adjustments must be propagated to all containing modes. */
960 for (a = adj_bytesize; a; a = a->next)
962 a->mode->need_bytesize_adj = true;
963 for (m = a->mode->contained; m; m = m->next_cont)
964 m->need_bytesize_adj = true;
967 printf ("\
968 #ifdef __cplusplus\n\
969 inline __attribute__((__always_inline__))\n\
970 #else\n\
971 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
972 #endif\n\
973 unsigned char\n\
974 mode_size_inline (machine_mode mode)\n\
975 {\n\
976 extern %sunsigned char mode_size[NUM_MACHINE_MODES];\n\
977 switch (mode)\n\
978 {\n", adj_bytesize ? "" : "const ");
980 for_all_modes (c, m)
981 if (!m->need_bytesize_adj)
982 printf (" case %smode: return %u;\n", m->name, m->bytesize);
984 puts ("\
985 default: return mode_size[mode];\n\
986 }\n\
987 }\n");
990 /* Emit mode_nunits_inline routine into insn-modes.h header. */
991 static void
992 emit_mode_nunits_inline (void)
994 int c;
995 struct mode_data *m;
997 puts ("\
998 #ifdef __cplusplus\n\
999 inline __attribute__((__always_inline__))\n\
1000 #else\n\
1001 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1002 #endif\n\
1003 unsigned char\n\
1004 mode_nunits_inline (machine_mode mode)\n\
1005 {\n\
1006 extern const unsigned char mode_nunits[NUM_MACHINE_MODES];\n\
1007 switch (mode)\n\
1008 {");
1010 for_all_modes (c, m)
1011 printf (" case %smode: return %u;\n", m->name, m->ncomponents);
1013 puts ("\
1014 default: return mode_nunits[mode];\n\
1015 }\n\
1016 }\n");
1019 /* Emit mode_inner_inline routine into insn-modes.h header. */
1020 static void
1021 emit_mode_inner_inline (void)
1023 int c;
1024 struct mode_data *m;
1026 puts ("\
1027 #ifdef __cplusplus\n\
1028 inline __attribute__((__always_inline__))\n\
1029 #else\n\
1030 extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
1031 #endif\n\
1032 unsigned char\n\
1033 mode_inner_inline (machine_mode mode)\n\
1034 {\n\
1035 extern const unsigned char mode_inner[NUM_MACHINE_MODES];\n\
1036 switch (mode)\n\
1037 {");
1039 for_all_modes (c, m)
1040 printf (" case %smode: return %smode;\n", m->name,
1041 c != MODE_PARTIAL_INT && m->component
1042 ? m->component->name : void_mode->name);
1044 puts ("\
1045 default: return mode_inner[mode];\n\
1046 }\n\
1047 }\n");
1050 static void
1051 emit_insn_modes_h (void)
1053 int c;
1054 struct mode_data *m, *first, *last;
1055 int n_int_n_ents = 0;
1057 printf ("/* Generated automatically from machmode.def%s%s\n",
1058 HAVE_EXTRA_MODES ? " and " : "",
1059 EXTRA_MODES_FILE);
1061 puts ("\
1062 by genmodes. */\n\
1064 #ifndef GCC_INSN_MODES_H\n\
1065 #define GCC_INSN_MODES_H\n\
1067 enum machine_mode\n{");
1069 for (c = 0; c < MAX_MODE_CLASS; c++)
1070 for (m = modes[c]; m; m = m->next)
1072 int count_ = printf (" %smode,", m->name);
1073 printf ("%*s/* %s:%d */\n", 27 - count_, "",
1074 trim_filename (m->file), m->line);
1075 printf ("#define HAVE_%smode\n", m->name);
1078 puts (" MAX_MACHINE_MODE,\n");
1080 for (c = 0; c < MAX_MODE_CLASS; c++)
1082 first = modes[c];
1083 last = 0;
1084 for (m = first; m; last = m, m = m->next)
1087 /* Don't use BImode for MIN_MODE_INT, since otherwise the middle
1088 end will try to use it for bitfields in structures and the
1089 like, which we do not want. Only the target md file should
1090 generate BImode widgets. */
1091 if (first && first->precision == 1 && c == MODE_INT)
1092 first = first->next;
1094 if (first && last)
1095 printf (" MIN_%s = %smode,\n MAX_%s = %smode,\n\n",
1096 mode_class_names[c], first->name,
1097 mode_class_names[c], last->name);
1098 else
1099 printf (" MIN_%s = %smode,\n MAX_%s = %smode,\n\n",
1100 mode_class_names[c], void_mode->name,
1101 mode_class_names[c], void_mode->name);
1104 puts ("\
1105 NUM_MACHINE_MODES = MAX_MACHINE_MODE\n\
1106 };\n");
1108 /* I can't think of a better idea, can you? */
1109 printf ("#define CONST_MODE_SIZE%s\n", adj_bytesize ? "" : " const");
1110 printf ("#define CONST_MODE_BASE_ALIGN%s\n", adj_alignment ? "" : " const");
1111 #if 0 /* disabled for backward compatibility, temporary */
1112 printf ("#define CONST_REAL_FORMAT_FOR_MODE%s\n", adj_format ? "" :" const");
1113 #endif
1114 printf ("#define CONST_MODE_IBIT%s\n", adj_ibit ? "" : " const");
1115 printf ("#define CONST_MODE_FBIT%s\n", adj_fbit ? "" : " const");
1116 emit_max_int ();
1118 for_all_modes (c, m)
1119 if (m->int_n)
1120 n_int_n_ents ++;
1122 printf ("#define NUM_INT_N_ENTS %d\n", n_int_n_ents);
1124 puts ("\n#if !defined (USED_FOR_TARGET) && GCC_VERSION >= 4001\n");
1125 emit_mode_size_inline ();
1126 emit_mode_nunits_inline ();
1127 emit_mode_inner_inline ();
1128 puts ("#endif /* GCC_VERSION >= 4001 */");
1130 puts ("\
1132 #endif /* insn-modes.h */");
1135 static void
1136 emit_insn_modes_c_header (void)
1138 printf ("/* Generated automatically from machmode.def%s%s\n",
1139 HAVE_EXTRA_MODES ? " and " : "",
1140 EXTRA_MODES_FILE);
1142 puts ("\
1143 by genmodes. */\n\
1145 #include \"config.h\"\n\
1146 #include \"system.h\"\n\
1147 #include \"coretypes.h\"\n\
1148 #include \"tm.h\"\n\
1149 #include \"machmode.h\"\n\
1150 #include \"real.h\"");
1153 static void
1154 emit_min_insn_modes_c_header (void)
1156 printf ("/* Generated automatically from machmode.def%s%s\n",
1157 HAVE_EXTRA_MODES ? " and " : "",
1158 EXTRA_MODES_FILE);
1160 puts ("\
1161 by genmodes. */\n\
1163 #include \"bconfig.h\"\n\
1164 #include \"system.h\"\n\
1165 #include \"machmode.h\"");
1168 static void
1169 emit_mode_name (void)
1171 int c;
1172 struct mode_data *m;
1174 print_decl ("char *const", "mode_name", "NUM_MACHINE_MODES");
1176 for_all_modes (c, m)
1177 printf (" \"%s\",\n", m->name);
1179 print_closer ();
1182 static void
1183 emit_mode_class (void)
1185 int c;
1186 struct mode_data *m;
1188 print_decl ("unsigned char", "mode_class", "NUM_MACHINE_MODES");
1190 for_all_modes (c, m)
1191 tagged_printf ("%s", mode_class_names[m->cl], m->name);
1193 print_closer ();
1196 static void
1197 emit_mode_precision (void)
1199 int c;
1200 struct mode_data *m;
1202 print_decl ("unsigned short", "mode_precision", "NUM_MACHINE_MODES");
1204 for_all_modes (c, m)
1205 if (m->precision != (unsigned int)-1)
1206 tagged_printf ("%u", m->precision, m->name);
1207 else
1208 tagged_printf ("%u*BITS_PER_UNIT", m->bytesize, m->name);
1210 print_closer ();
1213 static void
1214 emit_mode_size (void)
1216 int c;
1217 struct mode_data *m;
1219 print_maybe_const_decl ("%sunsigned char", "mode_size",
1220 "NUM_MACHINE_MODES", bytesize);
1222 for_all_modes (c, m)
1223 tagged_printf ("%u", m->bytesize, m->name);
1225 print_closer ();
1228 static void
1229 emit_mode_nunits (void)
1231 int c;
1232 struct mode_data *m;
1234 print_decl ("unsigned char", "mode_nunits", "NUM_MACHINE_MODES");
1236 for_all_modes (c, m)
1237 tagged_printf ("%u", m->ncomponents, m->name);
1239 print_closer ();
1242 static void
1243 emit_mode_wider (void)
1245 int c;
1246 struct mode_data *m;
1248 print_decl ("unsigned char", "mode_wider", "NUM_MACHINE_MODES");
1250 for_all_modes (c, m)
1251 tagged_printf ("%smode",
1252 m->wider ? m->wider->name : void_mode->name,
1253 m->name);
1255 print_closer ();
1256 print_decl ("unsigned char", "mode_2xwider", "NUM_MACHINE_MODES");
1258 for_all_modes (c, m)
1260 struct mode_data * m2;
1262 for (m2 = m;
1263 m2 && m2 != void_mode;
1264 m2 = m2->wider)
1266 if (m2->bytesize < 2 * m->bytesize)
1267 continue;
1268 if (m->precision != (unsigned int) -1)
1270 if (m2->precision != 2 * m->precision)
1271 continue;
1273 else
1275 if (m2->precision != (unsigned int) -1)
1276 continue;
1279 /* For vectors we want twice the number of components,
1280 with the same element type. */
1281 if (m->cl == MODE_VECTOR_INT
1282 || m->cl == MODE_VECTOR_FLOAT
1283 || m->cl == MODE_VECTOR_FRACT
1284 || m->cl == MODE_VECTOR_UFRACT
1285 || m->cl == MODE_VECTOR_ACCUM
1286 || m->cl == MODE_VECTOR_UACCUM)
1288 if (m2->ncomponents != 2 * m->ncomponents)
1289 continue;
1290 if (m->component != m2->component)
1291 continue;
1294 break;
1296 if (m2 == void_mode)
1297 m2 = 0;
1298 tagged_printf ("%smode",
1299 m2 ? m2->name : void_mode->name,
1300 m->name);
1303 print_closer ();
1306 static void
1307 emit_mode_mask (void)
1309 int c;
1310 struct mode_data *m;
1312 print_decl ("unsigned HOST_WIDE_INT", "mode_mask_array",
1313 "NUM_MACHINE_MODES");
1314 puts ("\
1315 #define MODE_MASK(m) \\\n\
1316 ((m) >= HOST_BITS_PER_WIDE_INT) \\\n\
1317 ? ~(unsigned HOST_WIDE_INT) 0 \\\n\
1318 : ((unsigned HOST_WIDE_INT) 1 << (m)) - 1\n");
1320 for_all_modes (c, m)
1321 if (m->precision != (unsigned int)-1)
1322 tagged_printf ("MODE_MASK (%u)", m->precision, m->name);
1323 else
1324 tagged_printf ("MODE_MASK (%u*BITS_PER_UNIT)", m->bytesize, m->name);
1326 puts ("#undef MODE_MASK");
1327 print_closer ();
1330 static void
1331 emit_mode_inner (void)
1333 int c;
1334 struct mode_data *m;
1336 print_decl ("unsigned char", "mode_inner", "NUM_MACHINE_MODES");
1338 for_all_modes (c, m)
1339 tagged_printf ("%smode",
1340 c != MODE_PARTIAL_INT && m->component
1341 ? m->component->name : void_mode->name,
1342 m->name);
1344 print_closer ();
1347 static void
1348 emit_mode_base_align (void)
1350 int c;
1351 struct mode_data *m;
1353 print_maybe_const_decl ("%sunsigned char",
1354 "mode_base_align", "NUM_MACHINE_MODES",
1355 alignment);
1357 for_all_modes (c, m)
1358 tagged_printf ("%u", m->alignment, m->name);
1360 print_closer ();
1363 static void
1364 emit_class_narrowest_mode (void)
1366 int c;
1368 print_decl ("unsigned char", "class_narrowest_mode", "MAX_MODE_CLASS");
1370 for (c = 0; c < MAX_MODE_CLASS; c++)
1371 /* Bleah, all this to get the comment right for MIN_MODE_INT. */
1372 tagged_printf ("MIN_%s", mode_class_names[c],
1373 modes[c]
1374 ? ((c != MODE_INT || modes[c]->precision != 1)
1375 ? modes[c]->name
1376 : (modes[c]->next
1377 ? modes[c]->next->name
1378 : void_mode->name))
1379 : void_mode->name);
1381 print_closer ();
1384 static void
1385 emit_real_format_for_mode (void)
1387 struct mode_data *m;
1389 /* The entities pointed to by this table are constant, whether
1390 or not the table itself is constant.
1392 For backward compatibility this table is always writable
1393 (several targets modify it in TARGET_OPTION_OVERRIDE). FIXME:
1394 convert all said targets to use ADJUST_FORMAT instead. */
1395 #if 0
1396 print_maybe_const_decl ("const struct real_format *%s",
1397 "real_format_for_mode",
1398 "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1",
1399 format);
1400 #else
1401 print_decl ("struct real_format *\n", "real_format_for_mode",
1402 "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1 "
1403 "+ MAX_MODE_DECIMAL_FLOAT - MIN_MODE_DECIMAL_FLOAT + 1");
1404 #endif
1406 /* The beginning of the table is entries for float modes. */
1407 for (m = modes[MODE_FLOAT]; m; m = m->next)
1408 if (!strcmp (m->format, "0"))
1409 tagged_printf ("%s", m->format, m->name);
1410 else
1411 tagged_printf ("&%s", m->format, m->name);
1413 /* The end of the table is entries for decimal float modes. */
1414 for (m = modes[MODE_DECIMAL_FLOAT]; m; m = m->next)
1415 if (!strcmp (m->format, "0"))
1416 tagged_printf ("%s", m->format, m->name);
1417 else
1418 tagged_printf ("&%s", m->format, m->name);
1420 print_closer ();
1423 static void
1424 emit_mode_adjustments (void)
1426 struct mode_adjust *a;
1427 struct mode_data *m;
1429 puts ("\
1430 \nvoid\
1431 \ninit_adjust_machine_modes (void)\
1432 \n{\
1433 \n size_t s ATTRIBUTE_UNUSED;");
1435 /* Size adjustments must be propagated to all containing modes.
1436 A size adjustment forces us to recalculate the alignment too. */
1437 for (a = adj_bytesize; a; a = a->next)
1439 printf ("\n /* %s:%d */\n s = %s;\n",
1440 a->file, a->line, a->adjustment);
1441 printf (" mode_size[%smode] = s;\n", a->mode->name);
1442 printf (" mode_base_align[%smode] = s & (~s + 1);\n",
1443 a->mode->name);
1445 for (m = a->mode->contained; m; m = m->next_cont)
1447 switch (m->cl)
1449 case MODE_COMPLEX_INT:
1450 case MODE_COMPLEX_FLOAT:
1451 printf (" mode_size[%smode] = 2*s;\n", m->name);
1452 printf (" mode_base_align[%smode] = s & (~s + 1);\n",
1453 m->name);
1454 break;
1456 case MODE_VECTOR_INT:
1457 case MODE_VECTOR_FLOAT:
1458 case MODE_VECTOR_FRACT:
1459 case MODE_VECTOR_UFRACT:
1460 case MODE_VECTOR_ACCUM:
1461 case MODE_VECTOR_UACCUM:
1462 printf (" mode_size[%smode] = %d*s;\n",
1463 m->name, m->ncomponents);
1464 printf (" mode_base_align[%smode] = (%d*s) & (~(%d*s)+1);\n",
1465 m->name, m->ncomponents, m->ncomponents);
1466 break;
1468 default:
1469 internal_error (
1470 "mode %s is neither vector nor complex but contains %s",
1471 m->name, a->mode->name);
1472 /* NOTREACHED */
1477 /* Alignment adjustments propagate too.
1478 ??? This may not be the right thing for vector modes. */
1479 for (a = adj_alignment; a; a = a->next)
1481 printf ("\n /* %s:%d */\n s = %s;\n",
1482 a->file, a->line, a->adjustment);
1483 printf (" mode_base_align[%smode] = s;\n", a->mode->name);
1485 for (m = a->mode->contained; m; m = m->next_cont)
1487 switch (m->cl)
1489 case MODE_COMPLEX_INT:
1490 case MODE_COMPLEX_FLOAT:
1491 printf (" mode_base_align[%smode] = s;\n", m->name);
1492 break;
1494 case MODE_VECTOR_INT:
1495 case MODE_VECTOR_FLOAT:
1496 case MODE_VECTOR_FRACT:
1497 case MODE_VECTOR_UFRACT:
1498 case MODE_VECTOR_ACCUM:
1499 case MODE_VECTOR_UACCUM:
1500 printf (" mode_base_align[%smode] = %d*s;\n",
1501 m->name, m->ncomponents);
1502 break;
1504 default:
1505 internal_error (
1506 "mode %s is neither vector nor complex but contains %s",
1507 m->name, a->mode->name);
1508 /* NOTREACHED */
1513 /* Ibit adjustments don't have to propagate. */
1514 for (a = adj_ibit; a; a = a->next)
1516 printf ("\n /* %s:%d */\n s = %s;\n",
1517 a->file, a->line, a->adjustment);
1518 printf (" mode_ibit[%smode] = s;\n", a->mode->name);
1521 /* Fbit adjustments don't have to propagate. */
1522 for (a = adj_fbit; a; a = a->next)
1524 printf ("\n /* %s:%d */\n s = %s;\n",
1525 a->file, a->line, a->adjustment);
1526 printf (" mode_fbit[%smode] = s;\n", a->mode->name);
1529 /* Real mode formats don't have to propagate anywhere. */
1530 for (a = adj_format; a; a = a->next)
1531 printf ("\n /* %s:%d */\n REAL_MODE_FORMAT (%smode) = %s;\n",
1532 a->file, a->line, a->mode->name, a->adjustment);
1534 puts ("}");
1537 /* Emit ibit for all modes. */
1539 static void
1540 emit_mode_ibit (void)
1542 int c;
1543 struct mode_data *m;
1545 print_maybe_const_decl ("%sunsigned char",
1546 "mode_ibit", "NUM_MACHINE_MODES",
1547 ibit);
1549 for_all_modes (c, m)
1550 tagged_printf ("%u", m->ibit, m->name);
1552 print_closer ();
1555 /* Emit fbit for all modes. */
1557 static void
1558 emit_mode_fbit (void)
1560 int c;
1561 struct mode_data *m;
1563 print_maybe_const_decl ("%sunsigned char",
1564 "mode_fbit", "NUM_MACHINE_MODES",
1565 fbit);
1567 for_all_modes (c, m)
1568 tagged_printf ("%u", m->fbit, m->name);
1570 print_closer ();
1573 /* Emit __intN for all modes. */
1575 static void
1576 emit_mode_int_n (void)
1578 int c;
1579 struct mode_data *m;
1580 struct mode_data **mode_sort;
1581 int n_modes = 0;
1582 int i, j;
1584 print_decl ("int_n_data_t", "int_n_data", "");
1586 n_modes = 0;
1587 for_all_modes (c, m)
1588 if (m->int_n)
1589 n_modes ++;
1590 mode_sort = XALLOCAVEC (struct mode_data *, n_modes);
1592 n_modes = 0;
1593 for_all_modes (c, m)
1594 if (m->int_n)
1595 mode_sort[n_modes++] = m;
1597 /* Yes, this is a bubblesort, but there are at most four (and
1598 usually only 1-2) entries to sort. */
1599 for (i = 0; i<n_modes - 1; i++)
1600 for (j = i + 1; j < n_modes; j++)
1601 if (mode_sort[i]->int_n > mode_sort[j]->int_n)
1602 std::swap (mode_sort[i], mode_sort[j]);
1604 for (i = 0; i < n_modes; i ++)
1606 m = mode_sort[i];
1607 printf(" {\n");
1608 tagged_printf ("%u", m->int_n, m->name);
1609 printf ("%smode,", m->name);
1610 printf(" },\n");
1613 print_closer ();
1617 static void
1618 emit_insn_modes_c (void)
1620 emit_insn_modes_c_header ();
1621 emit_mode_name ();
1622 emit_mode_class ();
1623 emit_mode_precision ();
1624 emit_mode_size ();
1625 emit_mode_nunits ();
1626 emit_mode_wider ();
1627 emit_mode_mask ();
1628 emit_mode_inner ();
1629 emit_mode_base_align ();
1630 emit_class_narrowest_mode ();
1631 emit_real_format_for_mode ();
1632 emit_mode_adjustments ();
1633 emit_mode_ibit ();
1634 emit_mode_fbit ();
1635 emit_mode_int_n ();
1638 static void
1639 emit_min_insn_modes_c (void)
1641 emit_min_insn_modes_c_header ();
1642 emit_mode_name ();
1643 emit_mode_class ();
1644 emit_mode_wider ();
1645 emit_class_narrowest_mode ();
1648 /* Master control. */
1650 main (int argc, char **argv)
1652 bool gen_header = false, gen_min = false;
1653 progname = argv[0];
1655 if (argc == 1)
1657 else if (argc == 2 && !strcmp (argv[1], "-h"))
1658 gen_header = true;
1659 else if (argc == 2 && !strcmp (argv[1], "-m"))
1660 gen_min = true;
1661 else
1663 error ("usage: %s [-h|-m] > file", progname);
1664 return FATAL_EXIT_CODE;
1667 modes_by_name = htab_create_alloc (64, hash_mode, eq_mode, 0, xcalloc, free);
1669 create_modes ();
1670 complete_all_modes ();
1672 if (have_error)
1673 return FATAL_EXIT_CODE;
1675 calc_wider_mode ();
1677 if (gen_header)
1678 emit_insn_modes_h ();
1679 else if (gen_min)
1680 emit_min_insn_modes_c ();
1681 else
1682 emit_insn_modes_c ();
1684 if (fflush (stdout) || fclose (stdout))
1685 return FATAL_EXIT_CODE;
1686 return SUCCESS_EXIT_CODE;