genmodes.c 45.3 KB
Newer Older
1
/* Generate the machine mode enumeration and associated tables.
2
   Copyright (C) 2003-2016 Free Software Foundation, Inc.
3 4 5 6 7

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
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 10 11 12 13 14 15 16
version.

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
17 18
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54

#include "bconfig.h"
#include "system.h"
#include "errors.h"

/* enum mode_class is normally defined by machmode.h but we can't
   include that header here.  */
#include "mode-classes.def"

#define DEF_MODE_CLASS(M) M
enum mode_class { MODE_CLASSES, MAX_MODE_CLASS };
#undef DEF_MODE_CLASS

/* Text names of mode classes, for output.  */
#define DEF_MODE_CLASS(M) #M
static const char *const mode_class_names[MAX_MODE_CLASS] =
{
  MODE_CLASSES
};
#undef DEF_MODE_CLASS
#undef MODE_CLASSES

#ifdef EXTRA_MODES_FILE
# define HAVE_EXTRA_MODES 1
#else
# define HAVE_EXTRA_MODES 0
# define EXTRA_MODES_FILE ""
#endif

/* Data structure for building up what we know about a mode.
   They're clustered by mode class.  */
struct mode_data
{
  struct mode_data *next;	/* next this class - arbitrary order */

  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 58 59
  unsigned int bytesize;	/* storage size in addressable units */
  unsigned int ncomponents;	/* number of subunits */
  unsigned int alignment;	/* mode alignment */
Jon Grimm committed
60
  const char *format;		/* floating point format - float modes only */
61 62 63 64

  struct mode_data *component;	/* mode of components */
  struct mode_data *wider;	/* next wider mode */

65 66 67 68
  struct mode_data *contained;  /* Pointer to list of modes that have
				   this mode as a component.  */
  struct mode_data *next_cont;  /* Next mode in that list.  */

69
  struct mode_data *complex;	/* complex type with mode as component.  */
70 71
  const char *file;		/* file and line of definition, */
  unsigned int line;		/* for error reporting */
Jon Grimm committed
72
  unsigned int counter;		/* Rank ordering of modes */
73 74
  unsigned int ibit;		/* the number of integral bits */
  unsigned int fbit;		/* the number of fractional bits */
75 76
  bool need_bytesize_adj;	/* true if this mode need dynamic size
				   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 82 83 84 85
static unsigned int n_modes[MAX_MODE_CLASS];
static struct mode_data *void_mode;

static const struct mode_data blank_mode = {
  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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
static htab_t modes_by_name;

/* Data structure for recording target-specified runtime adjustments
   to a particular mode.  We support varying the byte size, the
   alignment, and the floating point format.  */
struct mode_adjust
{
  struct mode_adjust *next;
  struct mode_data *mode;
  const char *adjustment;

  const char *file;
  unsigned int line;
};

static struct mode_adjust *adj_bytesize;
static struct mode_adjust *adj_alignment;
static struct mode_adjust *adj_format;
109 110
static struct mode_adjust *adj_ibit;
static struct mode_adjust *adj_fbit;
111

112 113
/* Mode class operations.  */
static enum mode_class
114
complex_class (enum mode_class c)
115
{
116
  switch (c)
117 118 119 120
    {
    case MODE_INT: return MODE_COMPLEX_INT;
    case MODE_FLOAT: return MODE_COMPLEX_FLOAT;
    default:
121
      error ("no complex class for class %s", mode_class_names[c]);
122 123 124 125 126
      return MODE_RANDOM;
    }
}

static enum mode_class
127
vector_class (enum mode_class cl)
128
{
129
  switch (cl)
130 131 132
    {
    case MODE_INT: return MODE_VECTOR_INT;
    case MODE_FLOAT: return MODE_VECTOR_FLOAT;
133 134 135 136
    case MODE_FRACT: return MODE_VECTOR_FRACT;
    case MODE_UFRACT: return MODE_VECTOR_UFRACT;
    case MODE_ACCUM: return MODE_VECTOR_ACCUM;
    case MODE_UACCUM: return MODE_VECTOR_UACCUM;
137
    default:
138
      error ("no vector class for class %s", mode_class_names[cl]);
139 140 141 142
      return MODE_RANDOM;
    }
}

143 144 145
/* Utility routines.  */
static inline struct mode_data *
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 156 157
	  const char *file, unsigned int line)
{
  struct mode_data *m;
Jon Grimm committed
158
  static unsigned int count = 0;
159

160
  m = find_mode (name);
161 162 163 164 165 166 167 168
  if (m)
    {
      error ("%s:%d: duplicate definition of mode \"%s\"",
	     trim_filename (file), line, name);
      error ("%s:%d: previous definition here", m->file, m->line);
      return m;
    }

169
  m = XNEW (struct mode_data);
170
  memcpy (m, &blank_mode, sizeof (struct mode_data));
171
  m->cl = cl;
172 173 174 175
  m->name = name;
  if (file)
    m->file = trim_filename (file);
  m->line = line;
Jon Grimm committed
176
  m->counter = count++;
177

178 179 180
  m->next = modes[cl];
  modes[cl] = m;
  n_modes[cl]++;
181 182

  *htab_find_slot (modes_by_name, m, INSERT) = m;
H.J. Lu committed
183

184 185 186
  return m;
}

187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
static hashval_t
hash_mode (const void *p)
{
  const struct mode_data *m = (const struct mode_data *)p;
  return htab_hash_string (m->name);
}

static int
eq_mode (const void *p, const void *q)
{
  const struct mode_data *a = (const struct mode_data *)p;
  const struct mode_data *b = (const struct mode_data *)q;

  return !strcmp (a->name, b->name);
}

203 204
#define for_all_modes(C, M)			\
  for (C = 0; C < MAX_MODE_CLASS; C++)		\
205 206 207 208 209 210
    for (M = modes[C]; M; M = M->next)

static void ATTRIBUTE_UNUSED
new_adjust (const char *name,
	    struct mode_adjust **category, const char *catname,
	    const char *adjustment,
211 212
	    enum mode_class required_class_from,
	    enum mode_class required_class_to,
213 214 215 216 217 218 219 220 221 222 223 224 225
	    const char *file, unsigned int line)
{
  struct mode_data *mode = find_mode (name);
  struct mode_adjust *a;

  file = trim_filename (file);

  if (!mode)
    {
      error ("%s:%d: no mode \"%s\"", file, line, name);
      return;
    }

226 227
  if (required_class_from != MODE_RANDOM
      && (mode->cl < required_class_from || mode->cl > required_class_to))
228
    {
229 230 231
      error ("%s:%d: mode \"%s\" is not among class {%s, %s}",
	     file, line, name, mode_class_names[required_class_from] + 5,
	     mode_class_names[required_class_to] + 5);
232 233
      return;
    }
H.J. Lu committed
234

235 236 237 238 239 240 241 242 243
  for (a = *category; a; a = a->next)
    if (a->mode == mode)
      {
	error ("%s:%d: mode \"%s\" already has a %s adjustment",
	       file, line, name, catname);
	error ("%s:%d: previous adjustment here", a->file, a->line);
	return;
      }

244
  a = XNEW (struct mode_adjust);
245 246 247 248 249 250 251 252
  a->mode = mode;
  a->adjustment = adjustment;
  a->file = file;
  a->line = line;

  a->next = *category;
  *category = a;
}
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279

/* Diagnose failure to meet expectations in a partially filled out
   mode structure.  */
enum requirement { SET, UNSET, OPTIONAL };

#define validate_field_(mname, fname, req, val, unset, file, line) do {	\
  switch (req)								\
    {									\
    case SET:								\
      if (val == unset)							\
	error ("%s:%d: (%s) field %s must be set",			\
	       file, line, mname, fname);				\
      break;								\
    case UNSET:								\
      if (val != unset)							\
	error ("%s:%d: (%s) field %s must not be set",			\
	       file, line, mname, fname);				\
    case OPTIONAL:							\
      break;								\
    }									\
} while (0)

#define validate_field(M, F) \
  validate_field_(M->name, #F, r_##F, M->F, blank_mode.F, M->file, M->line)

static void
validate_mode (struct mode_data *m,
280
	       enum requirement r_precision,
281 282
	       enum requirement r_bytesize,
	       enum requirement r_component,
283 284
	       enum requirement r_ncomponents,
	       enum requirement r_format)
285
{
286
  validate_field (m, precision);
287 288 289
  validate_field (m, bytesize);
  validate_field (m, component);
  validate_field (m, ncomponents);
290
  validate_field (m, format);
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
}
#undef validate_field
#undef validate_field_

/* Given a partially-filled-out mode structure, figure out what we can
   and fill the rest of it in; die if it isn't enough.  */
static void
complete_mode (struct mode_data *m)
{
  unsigned int alignment;

  if (!m->name)
    {
      error ("%s:%d: mode with no name", m->file, m->line);
      return;
    }
307
  if (m->cl == MAX_MODE_CLASS)
308 309 310 311 312
    {
      error ("%s:%d: %smode has no mode class", m->file, m->line, m->name);
      return;
    }

313
  switch (m->cl)
314 315 316 317 318 319
    {
    case MODE_RANDOM:
      /* Nothing more need be said.  */
      if (!strcmp (m->name, "VOID"))
	void_mode = m;

320
      validate_mode (m, UNSET, UNSET, UNSET, UNSET, UNSET);
321

322
      m->precision = 0;
323 324 325 326 327 328 329 330
      m->bytesize = 0;
      m->ncomponents = 0;
      m->component = 0;
      break;

    case MODE_CC:
      /* Again, nothing more need be said.  For historical reasons,
	 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 336 337 338
      m->component = 0;
      break;

    case MODE_INT:
Ilya Enkovich committed
339
    case MODE_POINTER_BOUNDS:
340
    case MODE_FLOAT:
Jon Grimm committed
341
    case MODE_DECIMAL_FLOAT:
342 343 344 345
    case MODE_FRACT:
    case MODE_UFRACT:
    case MODE_ACCUM:
    case MODE_UACCUM:
346
      /* A scalar mode must have a byte size, may have a bit size,
347 348 349
	 and must not have components.   A float mode must have a
         format.  */
      validate_mode (m, OPTIONAL, SET, UNSET, UNSET,
350 351
		     (m->cl == MODE_FLOAT || m->cl == MODE_DECIMAL_FLOAT)
		     ? SET : UNSET);
352

353
      m->ncomponents = 1;
354 355 356 357 358 359 360
      m->component = 0;
      break;

    case MODE_PARTIAL_INT:
      /* A partial integer mode uses ->component to say what the
	 corresponding full-size integer mode is, and may also
	 specify a bit size.  */
361
      validate_mode (m, OPTIONAL, UNSET, SET, UNSET, UNSET);
362 363 364

      m->bytesize = m->component->bytesize;

365
      m->ncomponents = 1;
366 367 368 369 370
      break;

    case MODE_COMPLEX_INT:
    case MODE_COMPLEX_FLOAT:
      /* Complex modes should have a component indicated, but no more.  */
371
      validate_mode (m, UNSET, UNSET, SET, UNSET, UNSET);
372
      m->ncomponents = 2;
373 374
      if (m->component->precision != (unsigned int)-1)
	m->precision = 2 * m->component->precision;
375 376 377 378 379
      m->bytesize = 2 * m->component->bytesize;
      break;

    case MODE_VECTOR_INT:
    case MODE_VECTOR_FLOAT:
380 381 382 383
    case MODE_VECTOR_FRACT:
    case MODE_VECTOR_UFRACT:
    case MODE_VECTOR_ACCUM:
    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 387
      if (m->component->precision != (unsigned int)-1)
	m->precision = m->ncomponents * m->component->precision;
388 389 390 391
      m->bytesize = m->ncomponents * m->component->bytesize;
      break;

    default:
392
      gcc_unreachable ();
393 394 395 396 397
    }

  /* If not already specified, the mode alignment defaults to the largest
     power of two that divides the size of the object.  Complex types are
     not more aligned than their contents.  */
398
  if (m->cl == MODE_COMPLEX_INT || m->cl == MODE_COMPLEX_FLOAT)
399 400 401 402 403
    alignment = m->component->bytesize;
  else
    alignment = m->bytesize;

  m->alignment = alignment & (~alignment + 1);
404 405 406 407 408 409 410 411

  /* If this mode has components, make the component mode point back
     to this mode, for the sake of adjustments.  */
  if (m->component)
    {
      m->next_cont = m->component->contained;
      m->component->contained = m;
    }
412 413 414 415 416 417
}

static void
complete_all_modes (void)
{
  struct mode_data *m;
418 419 420
  int cl;

  for_all_modes (cl, m)
421 422 423 424
    complete_mode (m);
}

/* 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 429 430 431
		    const char *file, unsigned int line)
{
  struct mode_data *m;
  struct mode_data *c;
432
  enum mode_class cclass = complex_class (cl);
433 434 435

  if (cclass == MODE_RANDOM)
    return;
436 437

  for (m = modes[cl]; m; m = m->next)
438
    {
439
      char *p, *buf;
440 441
      size_t m_len;

442
      /* Skip BImode.  FIXME: BImode probably shouldn't be MODE_INT.  */
443
      if (m->precision == 1)
444 445
	continue;

446
      m_len = strlen (m->name);
447 448
      /* The leading "1 +" is in case we prepend a "C" below.  */
      buf = (char *) xmalloc (1 + m_len + 1);
449 450 451 452

      /* Float complex modes are named SCmode, etc.
	 Int complex modes are named CSImode, etc.
         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
	    {
Jon Grimm committed
460
	      error ("%s:%d: float mode \"%s\" has no 'F' or 'D'",
461
		     m->file, m->line, m->name);
462
	      free (buf);
463 464 465
	      continue;
	    }
	}
466 467
      if (p != 0)
	*p = 'C';
468
      else
469 470 471 472
	{
	  buf[0] = 'C';
	  memcpy (buf + 1, m->name, m_len + 1);
	}
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 486 487 488 489 490
		   const char *file, unsigned int line)
{
  struct mode_data *m;
  struct mode_data *v;
  char buf[8];
  unsigned int ncomponents;
491
  enum mode_class vclass = vector_class (cl);
492 493 494 495

  if (vclass == MODE_RANDOM)
    return;

496
  for (m = modes[cl]; m; m = m->next)
497 498 499 500 501 502 503 504 505 506 507 508
    {
      /* Do not construct vector modes with only one element, or
	 vector modes where the element size doesn't divide the full
	 size evenly.  */
      ncomponents = width / m->bytesize;
      if (ncomponents < 2)
	continue;
      if (width % m->bytesize)
	continue;

      /* Skip QFmode and BImode.  FIXME: this special case should
	 not be necessary.  */
509
      if (cl == MODE_FLOAT && m->bytesize == 1)
510
	continue;
511
      if (cl == MODE_INT && m->precision == 1)
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
	continue;

      if ((size_t)snprintf (buf, sizeof buf, "V%u%s", ncomponents, m->name)
	  >= sizeof buf)
	{
	  error ("%s:%d: mode name \"%s\" is too long",
		 m->file, m->line, m->name);
	  continue;
	}

      v = new_mode (vclass, xstrdup (buf), file, line);
      v->component = m;
      v->ncomponents = ncomponents;
    }
}

/* Input.  */

530 531
#define _SPECIAL_MODE(C, N) \
  make_special_mode (MODE_##C, #N, __FILE__, __LINE__)
532 533 534 535
#define RANDOM_MODE(N) _SPECIAL_MODE (RANDOM, N)
#define CC_MODE(N) _SPECIAL_MODE (CC, N)

static void
536
make_special_mode (enum mode_class cl, const char *name,
537 538
		   const char *file, unsigned int line)
{
539
  new_mode (cl, name, file, line);
540 541
}

Ilya Enkovich committed
542 543 544 545 546 547 548 549 550 551 552 553 554
#define POINTER_BOUNDS_MODE(N, Y) \
  make_pointer_bounds_mode (#N, Y, __FILE__, __LINE__)

static void ATTRIBUTE_UNUSED
make_pointer_bounds_mode (const char *name,
			  unsigned int bytesize,
			  const char *file, unsigned int line)
{
  struct mode_data *m = new_mode (MODE_POINTER_BOUNDS, name, file, line);
  m->bytesize = bytesize;
}


555
#define INT_MODE(N, Y) FRACTIONAL_INT_MODE (N, -1U, Y)
556 557
#define FRACTIONAL_INT_MODE(N, B, Y) \
  make_int_mode (#N, B, Y, __FILE__, __LINE__)
558

559 560
static void
make_int_mode (const char *name,
561
	       unsigned int precision, unsigned int bytesize,
562 563 564 565
	       const char *file, unsigned int line)
{
  struct mode_data *m = new_mode (MODE_INT, name, file, line);
  m->bytesize = bytesize;
566
  m->precision = precision;
567 568
}

569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
#define FRACT_MODE(N, Y, F) \
	make_fixed_point_mode (MODE_FRACT, #N, Y, 0, F, __FILE__, __LINE__)

#define UFRACT_MODE(N, Y, F) \
	make_fixed_point_mode (MODE_UFRACT, #N, Y, 0, F, __FILE__, __LINE__)

#define ACCUM_MODE(N, Y, I, F) \
	make_fixed_point_mode (MODE_ACCUM, #N, Y, I, F, __FILE__, __LINE__)

#define UACCUM_MODE(N, Y, I, F) \
	make_fixed_point_mode (MODE_UACCUM, #N, Y, I, F, __FILE__, __LINE__)

/* Create a fixed-point mode by setting CL, NAME, BYTESIZE, IBIT, FBIT,
   FILE, and LINE.  */

static void
make_fixed_point_mode (enum mode_class cl,
		       const char *name,
		       unsigned int bytesize,
		       unsigned int ibit,
		       unsigned int fbit,
		       const char *file, unsigned int line)
{
  struct mode_data *m = new_mode (cl, name, file, line);
  m->bytesize = bytesize;
  m->ibit = ibit;
  m->fbit = fbit;
}

598
#define FLOAT_MODE(N, Y, F)             FRACTIONAL_FLOAT_MODE (N, -1U, Y, F)
599 600
#define FRACTIONAL_FLOAT_MODE(N, B, Y, F) \
  make_float_mode (#N, B, Y, #F, __FILE__, __LINE__)
601 602

static void
603
make_float_mode (const char *name,
604
		 unsigned int precision, unsigned int bytesize,
605 606
		 const char *format,
		 const char *file, unsigned int line)
607
{
608
  struct mode_data *m = new_mode (MODE_FLOAT, name, file, line);
609
  m->bytesize = bytesize;
610
  m->precision = precision;
611 612 613
  m->format = format;
}

Jon Grimm committed
614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630
#define DECIMAL_FLOAT_MODE(N, Y, F)	\
	FRACTIONAL_DECIMAL_FLOAT_MODE (N, -1U, Y, F)
#define FRACTIONAL_DECIMAL_FLOAT_MODE(N, B, Y, F)	\
  make_decimal_float_mode (#N, B, Y, #F, __FILE__, __LINE__)

static void
make_decimal_float_mode (const char *name,
			 unsigned int precision, unsigned int bytesize,
			 const char *format,
			 const char *file, unsigned int line)
{
  struct mode_data *m = new_mode (MODE_DECIMAL_FLOAT, name, file, line);
  m->bytesize = bytesize;
  m->precision = precision;
  m->format = format;
}

631 632 633 634
#define RESET_FLOAT_FORMAT(N, F) \
  reset_float_format (#N, #F, __FILE__, __LINE__)
static void ATTRIBUTE_UNUSED
reset_float_format (const char *name, const char *format,
635
		    const char *file, unsigned int line)
636
{
637
  struct mode_data *m = find_mode (name);
638 639
  if (!m)
    {
640 641 642
      error ("%s:%d: no mode \"%s\"", file, line, name);
      return;
    }
Jon Grimm committed
643
  if (m->cl != MODE_FLOAT && m->cl != MODE_DECIMAL_FLOAT)
644
    {
Jon Grimm committed
645
      error ("%s:%d: mode \"%s\" is not a FLOAT class", file, line, name);
646 647 648
      return;
    }
  m->format = format;
649 650
}

651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678
/* __intN support.  */
#define INT_N(M,PREC)				\
  make_int_n (#M, PREC, __FILE__, __LINE__)
static void ATTRIBUTE_UNUSED
make_int_n (const char *m, int bitsize,
            const char *file, unsigned int line)
{
  struct mode_data *component = find_mode (m);
  if (!component)
    {
      error ("%s:%d: no mode \"%s\"", file, line, m);
      return;
    }
  if (component->cl != MODE_INT
      && component->cl != MODE_PARTIAL_INT)
    {
      error ("%s:%d: mode \"%s\" is not class INT or PARTIAL_INT", file, line, m);
      return;
    }
  if (component->int_n != 0)
    {
      error ("%s:%d: mode \"%s\" already has an intN", file, line, m);
      return;
    }

  component->int_n = bitsize;
}

679 680 681 682
/* Partial integer modes are specified by relation to a full integer
   mode.  */
#define PARTIAL_INT_MODE(M,PREC,NAME)				\
  make_partial_integer_mode (#M, #NAME, PREC, __FILE__, __LINE__)
683 684
static void ATTRIBUTE_UNUSED
make_partial_integer_mode (const char *base, const char *name,
685
			   unsigned int precision,
686 687 688
			   const char *file, unsigned int line)
{
  struct mode_data *m;
689
  struct mode_data *component = find_mode (base);
690 691
  if (!component)
    {
692 693 694
      error ("%s:%d: no mode \"%s\"", file, line, name);
      return;
    }
695
  if (component->cl != MODE_INT)
696 697
    {
      error ("%s:%d: mode \"%s\" is not class INT", file, line, name);
698 699
      return;
    }
700

701
  m = new_mode (MODE_PARTIAL_INT, name, file, line);
702
  m->precision = precision;
703 704 705 706 707 708 709 710 711 712 713 714 715 716 717
  m->component = component;
}

/* A single vector mode can be specified by naming its component
   mode and the number of components.  */
#define VECTOR_MODE(C, M, N) \
  make_vector_mode (MODE_##C, #M, N, __FILE__, __LINE__);
static void ATTRIBUTE_UNUSED
make_vector_mode (enum mode_class bclass,
		  const char *base,
		  unsigned int ncomponents,
		  const char *file, unsigned int line)
{
  struct mode_data *v;
  enum mode_class vclass = vector_class (bclass);
718
  struct mode_data *component = find_mode (base);
719
  char namebuf[16];
720 721 722 723 724

  if (vclass == MODE_RANDOM)
    return;
  if (component == 0)
    {
725 726 727
      error ("%s:%d: no mode \"%s\"", file, line, base);
      return;
    }
728 729 730
  if (component->cl != bclass
      && (component->cl != MODE_PARTIAL_INT
	  || bclass != MODE_INT))
731 732
    {
      error ("%s:%d: mode \"%s\" is not class %s",
733 734 735 736 737 738 739 740
	     file, line, base, mode_class_names[bclass] + 5);
      return;
    }

  if ((size_t)snprintf (namebuf, sizeof namebuf, "V%u%s",
			ncomponents, base) >= sizeof namebuf)
    {
      error ("%s:%d: mode name \"%s\" is too long",
741
	     file, line, base);
742 743 744 745 746 747 748
      return;
    }

  v = new_mode (vclass, xstrdup (namebuf), file, line);
  v->ncomponents = ncomponents;
  v->component = component;
}
749 750

/* Adjustability.  */
751 752
#define _ADD_ADJUST(A, M, X, C1, C2) \
  new_adjust (#M, &adj_##A, #A, #X, MODE_##C1, MODE_##C2, __FILE__, __LINE__)
753

754 755 756 757 758
#define ADJUST_BYTESIZE(M, X)  _ADD_ADJUST (bytesize, M, X, RANDOM, RANDOM)
#define ADJUST_ALIGNMENT(M, X) _ADD_ADJUST (alignment, M, X, RANDOM, RANDOM)
#define ADJUST_FLOAT_FORMAT(M, X)    _ADD_ADJUST (format, M, X, FLOAT, FLOAT)
#define ADJUST_IBIT(M, X)  _ADD_ADJUST (ibit, M, X, ACCUM, UACCUM)
#define ADJUST_FBIT(M, X)  _ADD_ADJUST (fbit, M, X, FRACT, UACCUM)
759

760 761 762
static int bits_per_unit;
static int max_bitsize_mode_any_int;

763 764 765 766
static void
create_modes (void)
{
#include "machmode.def"
767 768 769 770 771 772 773 774 775 776 777 778 779 780

  /* So put the default value unless the target needs a non standard
     value. */
#ifdef BITS_PER_UNIT
  bits_per_unit = BITS_PER_UNIT;
#else
  bits_per_unit = 8;
#endif

#ifdef MAX_BITSIZE_MODE_ANY_INT
  max_bitsize_mode_any_int = MAX_BITSIZE_MODE_ANY_INT;
#else
  max_bitsize_mode_any_int = 0;
#endif
781 782 783 784 785
}

/* Processing.  */

/* Sort a list of modes into the order needed for the WIDER field:
786
   major sort by precision, minor sort by component precision.
787 788 789 790 791

   For instance:
     QI < HI < SI < DI < TI
     V4QI < V2HI < V8QI < V4HI < V2SI.

792 793
   If the precision is not set, sort by the bytesize.  A mode with
   precision set gets sorted before a mode without precision set, if
794
   they have the same bytesize; this is the right thing because
795
   the precision must always be smaller than the bytesize * BITS_PER_UNIT.
796
   We don't have to do anything special to get this done -- an unset
797
   precision shows up as (unsigned int)-1, i.e. UINT_MAX.  */
798 799 800
static int
cmp_modes (const void *a, const void *b)
{
801 802
  const struct mode_data *const m = *(const struct mode_data *const*)a;
  const struct mode_data *const n = *(const struct mode_data *const*)b;
803 804 805 806 807 808

  if (m->bytesize > n->bytesize)
    return 1;
  else if (m->bytesize < n->bytesize)
    return -1;

809
  if (m->precision > n->precision)
810
    return 1;
811
  else if (m->precision < n->precision)
812 813 814
    return -1;

  if (!m->component && !n->component)
Jon Grimm committed
815 816 817 818 819 820
    {
      if (m->counter < n->counter)
	return -1;
      else
	return 1;
    }
821 822 823 824 825 826

  if (m->component->bytesize > n->component->bytesize)
    return 1;
  else if (m->component->bytesize < n->component->bytesize)
    return -1;

827
  if (m->component->precision > n->component->precision)
828
    return 1;
829
  else if (m->component->precision < n->component->precision)
830 831
    return -1;

Jon Grimm committed
832 833 834 835
  if (m->counter < n->counter)
    return -1;
  else
    return 1;
836 837 838 839 840
}

static void
calc_wider_mode (void)
{
841
  int c;
842 843 844 845 846 847 848 849
  struct mode_data *m;
  struct mode_data **sortbuf;
  unsigned int max_n_modes = 0;
  unsigned int i, j;

  for (c = 0; c < MAX_MODE_CLASS; c++)
    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
     pointer assigned after the qsort call below.  */
852
  sortbuf = XALLOCAVEC (struct mode_data *, max_n_modes + 1);
853 854 855 856 857 858 859 860 861 862

  for (c = 0; c < MAX_MODE_CLASS; c++)
    {
      /* "wider" is not meaningful for MODE_RANDOM and MODE_CC.
	 However, we want these in textual order, and we have
	 precisely the reverse.  */
      if (c == MODE_RANDOM || c == MODE_CC)
	{
	  struct mode_data *prev, *next;

863
	  for (prev = 0, m = modes[c]; m; m = next)
864 865 866 867 868 869 870 871
	    {
	      m->wider = void_mode;

	      /* this is nreverse */
	      next = m->next;
	      m->next = prev;
	      prev = m;
	    }
872
	  modes[c] = prev;
873 874 875
	}
      else
	{
876
	  if (!modes[c])
877 878
	    continue;

879
	  for (i = 0, m = modes[c]; m; i++, m = m->next)
880 881 882 883 884 885
	    sortbuf[i] = m;

	  qsort (sortbuf, i, sizeof (struct mode_data *), cmp_modes);

	  sortbuf[i] = 0;
	  for (j = 0; j < i; j++)
886 887 888 889 890 891 892
	    {
	      sortbuf[j]->next = sortbuf[j + 1];
	      if (c == MODE_PARTIAL_INT)
		sortbuf[j]->wider = sortbuf[j]->component;
	      else
		sortbuf[j]->wider = sortbuf[j]->next;
	    }
893

894
	  modes[c] = sortbuf[0];
895 896 897 898 899 900 901
	}
    }
}

/* Output routines.  */

#define tagged_printf(FMT, ARG, TAG) do {		\
902
  int count_ = printf ("  " FMT ",", ARG);		\
903 904 905 906
  printf ("%*s/* %s */\n", 27 - count_, "", TAG);	\
} while (0)

#define print_decl(TYPE, NAME, ASIZE) \
907 908 909 910 911
  puts ("\nconst " TYPE " " NAME "[" ASIZE "] =\n{");

#define print_maybe_const_decl(TYPE, NAME, ASIZE, CATEGORY)	\
  printf ("\n" TYPE " " NAME "[" ASIZE "] = \n{\n",		\
	  adj_##CATEGORY ? "" : "const ")
912 913 914

#define print_closer() puts ("};")

915 916 917 918 919 920 921 922 923 924 925
/* Compute the max bitsize of some of the classes of integers.  It may
   be that there are needs for the other integer classes, and this
   code is easy to extend.  */
static void
emit_max_int (void)
{
  unsigned int max, mmax;
  struct mode_data *i;
  int j;

  puts ("");
926 927 928 929 930 931 932 933 934 935 936 937 938 939

  printf ("#define BITS_PER_UNIT (%d)\n", bits_per_unit); 
 
  if (max_bitsize_mode_any_int == 0)
    {
      for (max = 1, i = modes[MODE_INT]; i; i = i->next)
	if (max < i->bytesize)
	  max = i->bytesize;
      mmax = max;
      for (max = 1, i = modes[MODE_PARTIAL_INT]; i; i = i->next)
	if (max < i->bytesize)
	  max = i->bytesize;
      if (max > mmax)
	mmax = max;
940
      printf ("#define MAX_BITSIZE_MODE_ANY_INT (%d*BITS_PER_UNIT)\n", mmax);
941 942 943
    }
  else
    printf ("#define MAX_BITSIZE_MODE_ANY_INT %d\n", max_bitsize_mode_any_int);
944 945 946 947 948 949

  mmax = 0;
  for (j = 0; j < MAX_MODE_CLASS; j++)
    for (i = modes[j]; i; i = i->next)
      if (mmax < i->bytesize)
	mmax = i->bytesize;
950
  printf ("#define MAX_BITSIZE_MODE_ANY_MODE (%d*BITS_PER_UNIT)\n", mmax);
951 952
}

953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
/* Emit mode_size_inline routine into insn-modes.h header.  */
static void
emit_mode_size_inline (void)
{
  int c;
  struct mode_adjust *a;
  struct mode_data *m;

  /* Size adjustments must be propagated to all containing modes.  */
  for (a = adj_bytesize; a; a = a->next)
    {
      a->mode->need_bytesize_adj = true;
      for (m = a->mode->contained; m; m = m->next_cont)
	m->need_bytesize_adj = true;
    }

  printf ("\
#ifdef __cplusplus\n\
inline __attribute__((__always_inline__))\n\
#else\n\
extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
#endif\n\
unsigned char\n\
976
mode_size_inline (machine_mode mode)\n\
977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005
{\n\
  extern %sunsigned char mode_size[NUM_MACHINE_MODES];\n\
  switch (mode)\n\
    {\n", adj_bytesize ? "" : "const ");

  for_all_modes (c, m)
    if (!m->need_bytesize_adj)
      printf ("    case %smode: return %u;\n", m->name, m->bytesize);

  puts ("\
    default: return mode_size[mode];\n\
    }\n\
}\n");
}

/* Emit mode_nunits_inline routine into insn-modes.h header.  */
static void
emit_mode_nunits_inline (void)
{
  int c;
  struct mode_data *m;

  puts ("\
#ifdef __cplusplus\n\
inline __attribute__((__always_inline__))\n\
#else\n\
extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
#endif\n\
unsigned char\n\
1006
mode_nunits_inline (machine_mode mode)\n\
1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
{\n\
  extern const unsigned char mode_nunits[NUM_MACHINE_MODES];\n\
  switch (mode)\n\
    {");

  for_all_modes (c, m)
    printf ("    case %smode: return %u;\n", m->name, m->ncomponents);

  puts ("\
    default: return mode_nunits[mode];\n\
    }\n\
}\n");
}

/* Emit mode_inner_inline routine into insn-modes.h header.  */
static void
emit_mode_inner_inline (void)
{
  int c;
  struct mode_data *m;

  puts ("\
#ifdef __cplusplus\n\
inline __attribute__((__always_inline__))\n\
#else\n\
extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
#endif\n\
unsigned char\n\
1035
mode_inner_inline (machine_mode mode)\n\
1036 1037 1038 1039 1040 1041 1042 1043
{\n\
  extern const unsigned char mode_inner[NUM_MACHINE_MODES];\n\
  switch (mode)\n\
    {");

  for_all_modes (c, m)
    printf ("    case %smode: return %smode;\n", m->name,
	    c != MODE_PARTIAL_INT && m->component
1044
	    ? m->component->name : m->name);
1045 1046 1047 1048 1049 1050 1051

  puts ("\
    default: return mode_inner[mode];\n\
    }\n\
}\n");
}

1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067
/* Emit mode_unit_size_inline routine into insn-modes.h header.  */
static void
emit_mode_unit_size_inline (void)
{
  int c;
  struct mode_data *m;

  puts ("\
#ifdef __cplusplus\n\
inline __attribute__((__always_inline__))\n\
#else\n\
extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
#endif\n\
unsigned char\n\
mode_unit_size_inline (machine_mode mode)\n\
{\n\
1068 1069
  extern CONST_MODE_UNIT_SIZE unsigned char mode_unit_size[NUM_MACHINE_MODES];\
\n\
1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125
  switch (mode)\n\
    {");

  for_all_modes (c, m)
    {
      const char *name = m->name;
      struct mode_data *m2 = m;
      if (c != MODE_PARTIAL_INT && m2->component)
	m2 = m2->component;
      if (!m2->need_bytesize_adj)
	printf ("    case %smode: return %u;\n", name, m2->bytesize);
    }

  puts ("\
    default: return mode_unit_size[mode];\n\
    }\n\
}\n");
}

/* Emit mode_unit_precision_inline routine into insn-modes.h header.  */
static void
emit_mode_unit_precision_inline (void)
{
  int c;
  struct mode_data *m;

  puts ("\
#ifdef __cplusplus\n\
inline __attribute__((__always_inline__))\n\
#else\n\
extern __inline__ __attribute__((__always_inline__, __gnu_inline__))\n\
#endif\n\
unsigned short\n\
mode_unit_precision_inline (machine_mode mode)\n\
{\n\
  extern const unsigned short mode_unit_precision[NUM_MACHINE_MODES];\n\
  switch (mode)\n\
    {");

  for_all_modes (c, m)
    {
      struct mode_data *m2
	= (c != MODE_PARTIAL_INT && m->component) ? m->component : m;
      if (m2->precision != (unsigned int)-1)
	printf ("    case %smode: return %u;\n", m->name, m2->precision);
      else
	printf ("    case %smode: return %u*BITS_PER_UNIT;\n",
		m->name, m2->bytesize);
    }

  puts ("\
    default: return mode_unit_precision[mode];\n\
    }\n\
}\n");
}

1126 1127 1128
static void
emit_insn_modes_h (void)
{
1129
  int c;
1130
  struct mode_data *m, *first, *last;
1131
  int n_int_n_ents = 0;
1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145

  printf ("/* Generated automatically from machmode.def%s%s\n",
	   HAVE_EXTRA_MODES ? " and " : "",
	   EXTRA_MODES_FILE);

  puts ("\
   by genmodes.  */\n\
\n\
#ifndef GCC_INSN_MODES_H\n\
#define GCC_INSN_MODES_H\n\
\n\
enum machine_mode\n{");

  for (c = 0; c < MAX_MODE_CLASS; c++)
1146
    for (m = modes[c]; m; m = m->next)
1147
      {
1148
	int count_ = printf ("  %smode,", m->name);
1149 1150
	printf ("%*s/* %s:%d */\n", 27 - count_, "",
		 trim_filename (m->file), m->line);
1151
	printf ("#define HAVE_%smode\n", m->name);
1152 1153 1154 1155 1156 1157
      }

  puts ("  MAX_MACHINE_MODE,\n");

  for (c = 0; c < MAX_MODE_CLASS; c++)
    {
1158
      first = modes[c];
1159 1160 1161 1162 1163 1164 1165 1166
      last = 0;
      for (m = first; m; last = m, m = m->next)
	;

      /* Don't use BImode for MIN_MODE_INT, since otherwise the middle
	 end will try to use it for bitfields in structures and the
	 like, which we do not want.  Only the target md file should
	 generate BImode widgets.  */
1167
      if (first && first->precision == 1 && c == MODE_INT)
1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181
	first = first->next;

      if (first && last)
	printf ("  MIN_%s = %smode,\n  MAX_%s = %smode,\n\n",
		 mode_class_names[c], first->name,
		 mode_class_names[c], last->name);
      else
	printf ("  MIN_%s = %smode,\n  MAX_%s = %smode,\n\n",
		 mode_class_names[c], void_mode->name,
		 mode_class_names[c], void_mode->name);
    }

  puts ("\
  NUM_MACHINE_MODES = MAX_MACHINE_MODE\n\
1182 1183 1184 1185
};\n");

  /* I can't think of a better idea, can you?  */
  printf ("#define CONST_MODE_SIZE%s\n", adj_bytesize ? "" : " const");
1186
  printf ("#define CONST_MODE_UNIT_SIZE%s\n", adj_bytesize ? "" : " const");
1187 1188 1189 1190
  printf ("#define CONST_MODE_BASE_ALIGN%s\n", adj_alignment ? "" : " const");
#if 0 /* disabled for backward compatibility, temporary */
  printf ("#define CONST_REAL_FORMAT_FOR_MODE%s\n", adj_format ? "" :" const");
#endif
1191 1192
  printf ("#define CONST_MODE_IBIT%s\n", adj_ibit ? "" : " const");
  printf ("#define CONST_MODE_FBIT%s\n", adj_fbit ? "" : " const");
1193
  emit_max_int ();
1194 1195 1196 1197 1198 1199 1200

  for_all_modes (c, m)
    if (m->int_n)
      n_int_n_ents ++;

  printf ("#define NUM_INT_N_ENTS %d\n", n_int_n_ents);

1201
  puts ("\n#if !defined (USED_FOR_TARGET) && GCC_VERSION >= 4001\n");
1202 1203 1204
  emit_mode_size_inline ();
  emit_mode_nunits_inline ();
  emit_mode_inner_inline ();
1205 1206
  emit_mode_unit_size_inline ();
  emit_mode_unit_precision_inline ();
1207 1208
  puts ("#endif /* GCC_VERSION >= 4001 */");

1209
  puts ("\
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
\n\
#endif /* insn-modes.h */");
}

static void
emit_insn_modes_c_header (void)
{
  printf ("/* Generated automatically from machmode.def%s%s\n",
	   HAVE_EXTRA_MODES ? " and " : "",
	   EXTRA_MODES_FILE);

  puts ("\
   by genmodes.  */\n\
\n\
#include \"config.h\"\n\
#include \"system.h\"\n\
#include \"coretypes.h\"\n\
#include \"tm.h\"\n\
1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243
#include \"machmode.h\"\n\
#include \"real.h\"");
}

static void
emit_min_insn_modes_c_header (void)
{
  printf ("/* Generated automatically from machmode.def%s%s\n",
	   HAVE_EXTRA_MODES ? " and " : "",
	   EXTRA_MODES_FILE);

  puts ("\
   by genmodes.  */\n\
\n\
#include \"bconfig.h\"\n\
#include \"system.h\"\n\
1244 1245 1246 1247 1248 1249
#include \"machmode.h\"");
}

static void
emit_mode_name (void)
{
1250
  int c;
1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
  struct mode_data *m;

  print_decl ("char *const", "mode_name", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    printf ("  \"%s\",\n", m->name);

  print_closer ();
}

static void
emit_mode_class (void)
{
1264
  int c;
1265 1266 1267 1268 1269
  struct mode_data *m;

  print_decl ("unsigned char", "mode_class", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
1270
    tagged_printf ("%s", mode_class_names[m->cl], m->name);
1271 1272 1273 1274 1275

  print_closer ();
}

static void
1276
emit_mode_precision (void)
1277
{
1278
  int c;
1279 1280
  struct mode_data *m;

1281
  print_decl ("unsigned short", "mode_precision", "NUM_MACHINE_MODES");
1282 1283

  for_all_modes (c, m)
1284 1285
    if (m->precision != (unsigned int)-1)
      tagged_printf ("%u", m->precision, m->name);
1286 1287 1288 1289 1290 1291 1292 1293 1294
    else
      tagged_printf ("%u*BITS_PER_UNIT", m->bytesize, m->name);

  print_closer ();
}

static void
emit_mode_size (void)
{
1295
  int c;
1296 1297
  struct mode_data *m;

1298 1299
  print_maybe_const_decl ("%sunsigned char", "mode_size",
			  "NUM_MACHINE_MODES", bytesize);
1300 1301 1302 1303 1304 1305 1306 1307

  for_all_modes (c, m)
    tagged_printf ("%u", m->bytesize, m->name);

  print_closer ();
}

static void
1308
emit_mode_nunits (void)
1309
{
1310
  int c;
1311 1312
  struct mode_data *m;

1313
  print_decl ("unsigned char", "mode_nunits", "NUM_MACHINE_MODES");
1314 1315

  for_all_modes (c, m)
1316
    tagged_printf ("%u", m->ncomponents, m->name);
1317 1318 1319 1320 1321 1322 1323

  print_closer ();
}

static void
emit_mode_wider (void)
{
1324
  int c;
1325 1326 1327 1328 1329 1330 1331 1332 1333 1334
  struct mode_data *m;

  print_decl ("unsigned char", "mode_wider", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    tagged_printf ("%smode",
		   m->wider ? m->wider->name : void_mode->name,
		   m->name);

  print_closer ();
1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357
  print_decl ("unsigned char", "mode_2xwider", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    {
      struct mode_data * m2;

      for (m2 = m;
	   m2 && m2 != void_mode;
	   m2 = m2->wider)
	{
	  if (m2->bytesize < 2 * m->bytesize)
	    continue;
	  if (m->precision != (unsigned int) -1)
	    {
	      if (m2->precision != 2 * m->precision)
		continue;
	    }
	  else
	    {
	      if (m2->precision != (unsigned int) -1)
		continue;
	    }

1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372
	  /* For vectors we want twice the number of components,
	     with the same element type.  */
	  if (m->cl == MODE_VECTOR_INT
	      || m->cl == MODE_VECTOR_FLOAT
	      || m->cl == MODE_VECTOR_FRACT
	      || m->cl == MODE_VECTOR_UFRACT
	      || m->cl == MODE_VECTOR_ACCUM
	      || m->cl == MODE_VECTOR_UACCUM)
	    {
	      if (m2->ncomponents != 2 * m->ncomponents)
		continue;
	      if (m->component != m2->component)
		continue;
	    }

1373 1374 1375 1376 1377 1378 1379 1380 1381 1382
	  break;
	}
      if (m2 == void_mode)
	m2 = 0;
      tagged_printf ("%smode",
		     m2 ? m2->name : void_mode->name,
		     m->name);
    }

  print_closer ();
1383 1384 1385
}

static void
1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
emit_mode_complex (void)
{
  int c;
  struct mode_data *m;

  print_decl ("unsigned char", "mode_complex", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    tagged_printf ("%smode",
		   m->complex ? m->complex->name : void_mode->name,
		   m->name);

  print_closer ();
}

static void
1402 1403
emit_mode_mask (void)
{
1404
  int c;
1405 1406 1407 1408 1409
  struct mode_data *m;

  print_decl ("unsigned HOST_WIDE_INT", "mode_mask_array",
	      "NUM_MACHINE_MODES");
  puts ("\
1410
#define MODE_MASK(m)                          \\\n\
1411 1412 1413 1414 1415
  ((m) >= HOST_BITS_PER_WIDE_INT)             \\\n\
   ? ~(unsigned HOST_WIDE_INT) 0              \\\n\
   : ((unsigned HOST_WIDE_INT) 1 << (m)) - 1\n");

  for_all_modes (c, m)
1416 1417
    if (m->precision != (unsigned int)-1)
      tagged_printf ("MODE_MASK (%u)", m->precision, m->name);
1418
    else
1419
      tagged_printf ("MODE_MASK (%u*BITS_PER_UNIT)", m->bytesize, m->name);
1420

1421
  puts ("#undef MODE_MASK");
1422 1423 1424 1425 1426 1427
  print_closer ();
}

static void
emit_mode_inner (void)
{
1428
  int c;
1429 1430 1431 1432 1433 1434
  struct mode_data *m;

  print_decl ("unsigned char", "mode_inner", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    tagged_printf ("%smode",
1435
		   c != MODE_PARTIAL_INT && m->component
1436
		   ? m->component->name : m->name,
1437 1438 1439 1440 1441
		   m->name);

  print_closer ();
}

1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
/* Emit mode_unit_size array into insn-modes.c file.  */
static void
emit_mode_unit_size (void)
{
  int c;
  struct mode_data *m;

  print_maybe_const_decl ("%sunsigned char", "mode_unit_size",
			  "NUM_MACHINE_MODES", bytesize);

  for_all_modes (c, m)
    tagged_printf ("%u",
		   c != MODE_PARTIAL_INT && m->component
		   ? m->component->bytesize : m->bytesize, m->name);

  print_closer ();
}

/* Emit mode_unit_precision array into insn-modes.c file.  */
static void
emit_mode_unit_precision (void)
{
  int c;
  struct mode_data *m;

  print_decl ("unsigned short", "mode_unit_precision", "NUM_MACHINE_MODES");

  for_all_modes (c, m)
    {
      struct mode_data *m2 = (c != MODE_PARTIAL_INT && m->component) ?
			     m->component : m;
      if (m2->precision != (unsigned int)-1)
	tagged_printf ("%u", m2->precision, m->name);
      else
	tagged_printf ("%u*BITS_PER_UNIT", m2->bytesize, m->name);
    }

  print_closer ();
}


1483 1484 1485
static void
emit_mode_base_align (void)
{
1486
  int c;
1487 1488
  struct mode_data *m;

1489 1490 1491
  print_maybe_const_decl ("%sunsigned char",
			  "mode_base_align", "NUM_MACHINE_MODES",
			  alignment);
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501

  for_all_modes (c, m)
    tagged_printf ("%u", m->alignment, m->name);

  print_closer ();
}

static void
emit_class_narrowest_mode (void)
{
1502
  int c;
1503 1504 1505 1506 1507 1508

  print_decl ("unsigned char", "class_narrowest_mode", "MAX_MODE_CLASS");

  for (c = 0; c < MAX_MODE_CLASS; c++)
    /* Bleah, all this to get the comment right for MIN_MODE_INT.  */
    tagged_printf ("MIN_%s", mode_class_names[c],
1509
		   modes[c]
1510
		   ? ((c != MODE_INT || modes[c]->precision != 1)
1511 1512 1513
		      ? modes[c]->name
		      : (modes[c]->next
			 ? modes[c]->next->name
1514 1515
			 : void_mode->name))
		   : void_mode->name);
H.J. Lu committed
1516

1517 1518 1519 1520
  print_closer ();
}

static void
1521 1522 1523 1524
emit_real_format_for_mode (void)
{
  struct mode_data *m;

1525 1526 1527 1528
  /* The entities pointed to by this table are constant, whether
     or not the table itself is constant.

     For backward compatibility this table is always writable
1529
     (several targets modify it in TARGET_OPTION_OVERRIDE).   FIXME:
1530 1531 1532 1533 1534 1535 1536 1537
     convert all said targets to use ADJUST_FORMAT instead.  */
#if 0
  print_maybe_const_decl ("const struct real_format *%s",
			  "real_format_for_mode",
			  "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1",
			  format);
#else
  print_decl ("struct real_format *\n", "real_format_for_mode",
Jon Grimm committed
1538 1539
	      "MAX_MODE_FLOAT - MIN_MODE_FLOAT + 1 "
	      "+ MAX_MODE_DECIMAL_FLOAT - MIN_MODE_DECIMAL_FLOAT + 1");
1540
#endif
1541

Jon Grimm committed
1542
  /* The beginning of the table is entries for float modes.  */
1543
  for (m = modes[MODE_FLOAT]; m; m = m->next)
1544 1545 1546 1547 1548
    if (!strcmp (m->format, "0"))
      tagged_printf ("%s", m->format, m->name);
    else
      tagged_printf ("&%s", m->format, m->name);

Jon Grimm committed
1549 1550 1551 1552 1553 1554 1555
  /* The end of the table is entries for decimal float modes.  */
  for (m = modes[MODE_DECIMAL_FLOAT]; m; m = m->next)
    if (!strcmp (m->format, "0"))
      tagged_printf ("%s", m->format, m->name);
    else
      tagged_printf ("&%s", m->format, m->name);

1556 1557 1558 1559
  print_closer ();
}

static void
1560 1561 1562
emit_mode_adjustments (void)
{
  struct mode_adjust *a;
1563
  struct mode_data *m;
1564

1565 1566 1567 1568 1569
  puts ("\
\nvoid\
\ninit_adjust_machine_modes (void)\
\n{\
\n  size_t s ATTRIBUTE_UNUSED;");
1570

1571 1572
  /* Size adjustments must be propagated to all containing modes.
     A size adjustment forces us to recalculate the alignment too.  */
1573
  for (a = adj_bytesize; a; a = a->next)
1574 1575 1576 1577
    {
      printf ("\n  /* %s:%d */\n  s = %s;\n",
	      a->file, a->line, a->adjustment);
      printf ("  mode_size[%smode] = s;\n", a->mode->name);
1578
      printf ("  mode_unit_size[%smode] = s;\n", a->mode->name);
1579 1580 1581 1582 1583
      printf ("  mode_base_align[%smode] = s & (~s + 1);\n",
	      a->mode->name);

      for (m = a->mode->contained; m; m = m->next_cont)
	{
1584
	  switch (m->cl)
1585 1586 1587 1588
	    {
	    case MODE_COMPLEX_INT:
	    case MODE_COMPLEX_FLOAT:
	      printf ("  mode_size[%smode] = 2*s;\n", m->name);
1589
	      printf ("  mode_unit_size[%smode] = s;\n", m->name);
1590 1591 1592 1593 1594 1595
	      printf ("  mode_base_align[%smode] = s & (~s + 1);\n",
		      m->name);
	      break;

	    case MODE_VECTOR_INT:
	    case MODE_VECTOR_FLOAT:
1596 1597 1598 1599
	    case MODE_VECTOR_FRACT:
	    case MODE_VECTOR_UFRACT:
	    case MODE_VECTOR_ACCUM:
	    case MODE_VECTOR_UACCUM:
1600 1601
	      printf ("  mode_size[%smode] = %d*s;\n",
		      m->name, m->ncomponents);
1602
	      printf ("  mode_unit_size[%smode] = s;\n", m->name);
1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614
	      printf ("  mode_base_align[%smode] = (%d*s) & (~(%d*s)+1);\n",
		      m->name, m->ncomponents, m->ncomponents);
	      break;

	    default:
	      internal_error (
	      "mode %s is neither vector nor complex but contains %s",
	      m->name, a->mode->name);
	      /* NOTREACHED */
	    }
	}
    }
1615

1616 1617
  /* Alignment adjustments propagate too.
     ??? This may not be the right thing for vector modes.  */
1618
  for (a = adj_alignment; a; a = a->next)
1619 1620 1621 1622
    {
      printf ("\n  /* %s:%d */\n  s = %s;\n",
	      a->file, a->line, a->adjustment);
      printf ("  mode_base_align[%smode] = s;\n", a->mode->name);
1623

1624 1625
      for (m = a->mode->contained; m; m = m->next_cont)
	{
1626
	  switch (m->cl)
1627 1628 1629 1630 1631 1632 1633 1634
	    {
	    case MODE_COMPLEX_INT:
	    case MODE_COMPLEX_FLOAT:
	      printf ("  mode_base_align[%smode] = s;\n", m->name);
	      break;

	    case MODE_VECTOR_INT:
	    case MODE_VECTOR_FLOAT:
1635 1636 1637 1638
	    case MODE_VECTOR_FRACT:
	    case MODE_VECTOR_UFRACT:
	    case MODE_VECTOR_ACCUM:
	    case MODE_VECTOR_UACCUM:
1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650
	      printf ("  mode_base_align[%smode] = %d*s;\n",
		      m->name, m->ncomponents);
	      break;

	    default:
	      internal_error (
	      "mode %s is neither vector nor complex but contains %s",
	      m->name, a->mode->name);
	      /* NOTREACHED */
	    }
	}
    }
1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666

  /* Ibit adjustments don't have to propagate.  */
  for (a = adj_ibit; a; a = a->next)
    {
      printf ("\n  /* %s:%d */\n  s = %s;\n",
	      a->file, a->line, a->adjustment);
      printf ("  mode_ibit[%smode] = s;\n", a->mode->name);
    }

  /* Fbit adjustments don't have to propagate.  */
  for (a = adj_fbit; a; a = a->next)
    {
      printf ("\n  /* %s:%d */\n  s = %s;\n",
	      a->file, a->line, a->adjustment);
      printf ("  mode_fbit[%smode] = s;\n", a->mode->name);
    }
H.J. Lu committed
1667

1668
  /* Real mode formats don't have to propagate anywhere.  */
1669
  for (a = adj_format; a; a = a->next)
1670
    printf ("\n  /* %s:%d */\n  REAL_MODE_FORMAT (%smode) = %s;\n",
1671 1672 1673 1674 1675
	    a->file, a->line, a->mode->name, a->adjustment);

  puts ("}");
}

1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711
/* Emit ibit for all modes.  */

static void
emit_mode_ibit (void)
{
  int c;
  struct mode_data *m;

  print_maybe_const_decl ("%sunsigned char",
			  "mode_ibit", "NUM_MACHINE_MODES",
			  ibit);

  for_all_modes (c, m)
    tagged_printf ("%u", m->ibit, m->name);

  print_closer ();
}

/* Emit fbit for all modes.  */

static void
emit_mode_fbit (void)
{
  int c;
  struct mode_data *m;

  print_maybe_const_decl ("%sunsigned char",
			  "mode_fbit", "NUM_MACHINE_MODES",
			  fbit);

  for_all_modes (c, m)
    tagged_printf ("%u", m->fbit, m->name);

  print_closer ();
}

1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740
/* Emit __intN for all modes.  */

static void
emit_mode_int_n (void)
{
  int c;
  struct mode_data *m;
  struct mode_data **mode_sort;
  int n_modes = 0;
  int i, j;

  print_decl ("int_n_data_t", "int_n_data", "");

  n_modes = 0;
  for_all_modes (c, m)
    if (m->int_n)
      n_modes ++;
  mode_sort = XALLOCAVEC (struct mode_data *, n_modes);

  n_modes = 0;
  for_all_modes (c, m)
    if (m->int_n)
      mode_sort[n_modes++] = m;

  /* Yes, this is a bubblesort, but there are at most four (and
     usually only 1-2) entries to sort.  */
  for (i = 0; i<n_modes - 1; i++)
    for (j = i + 1; j < n_modes; j++)
      if (mode_sort[i]->int_n > mode_sort[j]->int_n)
1741
	std::swap (mode_sort[i], mode_sort[j]);
1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754

  for (i = 0; i < n_modes; i ++)
    {
      m = mode_sort[i];
      printf(" {\n");
      tagged_printf ("%u", m->int_n, m->name);
      printf ("%smode,", m->name);
      printf(" },\n");
    }

  print_closer ();
}

1755

1756
static void
1757 1758 1759 1760 1761
emit_insn_modes_c (void)
{
  emit_insn_modes_c_header ();
  emit_mode_name ();
  emit_mode_class ();
1762
  emit_mode_precision ();
1763
  emit_mode_size ();
1764
  emit_mode_nunits ();
1765
  emit_mode_wider ();
1766
  emit_mode_complex ();
1767 1768
  emit_mode_mask ();
  emit_mode_inner ();
1769 1770
  emit_mode_unit_size ();
  emit_mode_unit_precision ();
1771 1772
  emit_mode_base_align ();
  emit_class_narrowest_mode ();
1773
  emit_real_format_for_mode ();
1774
  emit_mode_adjustments ();
1775 1776
  emit_mode_ibit ();
  emit_mode_fbit ();
1777
  emit_mode_int_n ();
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
}

static void
emit_min_insn_modes_c (void)
{
  emit_min_insn_modes_c_header ();
  emit_mode_name ();
  emit_mode_class ();
  emit_mode_wider ();
  emit_class_narrowest_mode ();
1788 1789 1790 1791
}

/* Master control.  */
int
1792
main (int argc, char **argv)
1793
{
1794
  bool gen_header = false, gen_min = false;
1795 1796 1797
  progname = argv[0];

  if (argc == 1)
1798
    ;
1799 1800
  else if (argc == 2 && !strcmp (argv[1], "-h"))
    gen_header = true;
1801 1802
  else if (argc == 2 && !strcmp (argv[1], "-m"))
    gen_min = true;
1803 1804
  else
    {
1805
      error ("usage: %s [-h|-m] > file", progname);
1806 1807 1808
      return FATAL_EXIT_CODE;
    }

1809 1810
  modes_by_name = htab_create_alloc (64, hash_mode, eq_mode, 0, xcalloc, free);

1811 1812 1813 1814 1815
  create_modes ();
  complete_all_modes ();

  if (have_error)
    return FATAL_EXIT_CODE;
H.J. Lu committed
1816

1817 1818 1819 1820
  calc_wider_mode ();

  if (gen_header)
    emit_insn_modes_h ();
1821 1822
  else if (gen_min)
    emit_min_insn_modes_c ();
1823 1824 1825 1826 1827 1828 1829
  else
    emit_insn_modes_c ();

  if (fflush (stdout) || fclose (stdout))
    return FATAL_EXIT_CODE;
  return SUCCESS_EXIT_CODE;
}