godump.c 36.7 KB
Newer Older
Ian Lance Taylor committed
1
/* Output Go language descriptions of types.
2
   Copyright (C) 2008-2019 Free Software Foundation, Inc.
Ian Lance Taylor committed
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
   Written by Ian Lance Taylor <iant@google.com>.

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
Software Foundation; either version 3, or (at your option) any later
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
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */

/* This file is used during the build process to emit Go language
   descriptions of declarations from C header files.  It uses the
   debug info hooks to emit the descriptions.  The Go language
   descriptions then become part of the Go runtime support
   library.

   All global names are output with a leading underscore, so that they
   are all hidden in Go.  */

#include "config.h"
#include "system.h"
#include "coretypes.h"
33 34 35
#include "tree.h"
#include "diagnostic-core.h"
#include "debug.h"
36
#include "stor-layout.h"
Ian Lance Taylor committed
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

/* We dump this information from the debug hooks.  This gives us a
   stable and maintainable API to hook into.  In order to work
   correctly when -g is used, we build our own hooks structure which
   wraps the hooks we need to change.  */

/* Our debug hooks.  This is initialized by dump_go_spec_init.  */

static struct gcc_debug_hooks go_debug_hooks;

/* The real debug hooks.  */

static const struct gcc_debug_hooks *real_debug_hooks;

/* The file where we should write information.  */

static FILE *go_dump_file;

/* A queue of decls to output.  */

57
static GTY(()) vec<tree, va_gc> *queue;
Ian Lance Taylor committed
58 59 60 61 62

/* A hash table of macros we have seen.  */

static htab_t macro_hash;

63 64 65 66 67 68 69 70 71 72
/* The type of a value in macro_hash.  */

struct macro_hash_value
{
  /* The name stored in the hash table.  */
  char *name;
  /* The value of the macro.  */
  char *value;
};

73 74 75 76 77 78 79 80 81
/* Returns the number of units necessary to represent an integer with the given
   PRECISION (in bits).  */

static inline unsigned int
precision_to_units (unsigned int precision)
{
  return (precision + BITS_PER_UNIT - 1) / BITS_PER_UNIT;
}

82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
/* Calculate the hash value for an entry in the macro hash table.  */

static hashval_t
macro_hash_hashval (const void *val)
{
  const struct macro_hash_value *mhval = (const struct macro_hash_value *) val;
  return htab_hash_string (mhval->name);
}

/* Compare values in the macro hash table for equality.  */

static int
macro_hash_eq (const void *v1, const void *v2)
{
  const struct macro_hash_value *mhv1 = (const struct macro_hash_value *) v1;
  const struct macro_hash_value *mhv2 = (const struct macro_hash_value *) v2;
  return strcmp (mhv1->name, mhv2->name) == 0;
}

/* Free values deleted from the macro hash table.  */

static void
macro_hash_del (void *v)
{
  struct macro_hash_value *mhv = (struct macro_hash_value *) v;
  XDELETEVEC (mhv->name);
  XDELETEVEC (mhv->value);
  XDELETE (mhv);
}

/* For the string hash tables.  */
Ian Lance Taylor committed
113 114 115 116 117 118 119 120 121 122 123 124 125 126

static int
string_hash_eq (const void *y1, const void *y2)
{
  return strcmp ((const char *) y1, (const char *) y2) == 0;
}

/* A macro definition.  */

static void
go_define (unsigned int lineno, const char *buffer)
{
  const char *p;
  const char *name_end;
127
  size_t out_len;
Ian Lance Taylor committed
128 129
  char *out_buffer;
  char *q;
130 131
  bool saw_operand;
  bool need_operand;
132
  struct macro_hash_value *mhval;
Ian Lance Taylor committed
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
  char *copy;
  hashval_t hashval;
  void **slot;

  real_debug_hooks->define (lineno, buffer);

  /* Skip macro functions.  */
  for (p = buffer; *p != '\0' && *p != ' '; ++p)
    if (*p == '(')
      return;

  if (*p == '\0')
    return;

  name_end = p;

  ++p;
  if (*p == '\0')
    return;

  copy = XNEWVEC (char, name_end - buffer + 1);
  memcpy (copy, buffer, name_end - buffer);
  copy[name_end - buffer] = '\0';

157 158 159 160
  mhval = XNEW (struct macro_hash_value);
  mhval->name = copy;
  mhval->value = NULL;

Ian Lance Taylor committed
161
  hashval = htab_hash_string (copy);
162
  slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, NO_INSERT);
Ian Lance Taylor committed
163 164 165

  /* For simplicity, we force all names to be hidden by adding an
     initial underscore, and let the user undo this as needed.  */
166 167
  out_len = strlen (p) * 2 + 1;
  out_buffer = XNEWVEC (char, out_len);
Ian Lance Taylor committed
168
  q = out_buffer;
169 170
  saw_operand = false;
  need_operand = false;
Ian Lance Taylor committed
171 172
  while (*p != '\0')
    {
173
      switch (*p)
Ian Lance Taylor committed
174
	{
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
	case 'A': case 'B': case 'C': case 'D': case 'E': case 'F':
	case 'G': case 'H': case 'I': case 'J': case 'K': case 'L':
	case 'M': case 'N': case 'O': case 'P': case 'Q': case 'R':
	case 'S': case 'T': case 'U': case 'V': case 'W': case 'X':
	case 'Y': case 'Z':
	case 'a': case 'b': case 'c': case 'd': case 'e': case 'f':
	case 'g': case 'h': case 'i': case 'j': case 'k': case 'l':
	case 'm': case 'n': case 'o': case 'p': case 'q': case 'r':
	case 's': case 't': case 'u': case 'v': case 'w': case 'x':
	case 'y': case 'z':
	case '_':
	  {
	    /* The start of an identifier.  Technically we should also
	       worry about UTF-8 identifiers, but they are not a
	       problem for practical uses of -fdump-go-spec so we
	       don't worry about them.  */
	    const char *start;
	    char *n;
193
	    struct macro_hash_value idval;
194

195 196 197
	    if (saw_operand)
	      goto unknown;

198 199 200 201 202 203
	    start = p;
	    while (ISALNUM (*p) || *p == '_')
	      ++p;
	    n = XALLOCAVEC (char, p - start + 1);
	    memcpy (n, start, p - start);
	    n[p - start] = '\0';
204 205 206
	    idval.name = n;
	    idval.value = NULL;
	    if (htab_find (macro_hash, &idval) == NULL)
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
	      {
		/* This is a reference to a name which was not defined
		   as a macro.  */
		goto unknown;
	      }

	    *q++ = '_';
	    memcpy (q, start, p - start);
	    q += p - start;

	    saw_operand = true;
	    need_operand = false;
	  }
	  break;

	case '.':
	  if (!ISDIGIT (p[1]))
	    goto unknown;
	  /* Fall through.  */
	case '0': case '1': case '2': case '3': case '4':
	case '5': case '6': case '7': case '8': case '9':
	  {
	    const char *start;
	    bool is_hex;

	    start = p;
	    is_hex = false;
	    if (*p == '0' && (p[1] == 'x' || p[1] == 'X'))
	      {
		p += 2;
		is_hex = true;
	      }
	    while (ISDIGIT (*p) || *p == '.' || *p == 'e' || *p == 'E'
		   || (is_hex
		       && ((*p >= 'a' && *p <= 'f')
			   || (*p >= 'A' && *p <= 'F'))))
	      ++p;
	    memcpy (q, start, p - start);
	    q += p - start;
	    while (*p == 'u' || *p == 'U' || *p == 'l' || *p == 'L'
		   || *p == 'f' || *p == 'F'
		   || *p == 'd' || *p == 'D')
	      {
		/* Go doesn't use any of these trailing type
		   modifiers.  */
		++p;
	      }

	    /* We'll pick up the exponent, if any, as an
	       expression.  */

	    saw_operand = true;
	    need_operand = false;
	  }
	  break;

	case ' ': case '\t':
	  *q++ = *p++;
	  break;

	case '(':
	  /* Always OK, not part of an operand, presumed to start an
	     operand.  */
	  *q++ = *p++;
	  saw_operand = false;
	  need_operand = false;
	  break;

	case ')':
	  /* OK if we don't need an operand, and presumed to indicate
	     an operand.  */
	  if (need_operand)
	    goto unknown;
	  *q++ = *p++;
	  saw_operand = true;
	  break;

	case '+': case '-':
	  /* Always OK, but not part of an operand.  */
	  *q++ = *p++;
	  saw_operand = false;
	  break;

	case '*': case '/': case '%': case '|': case '&': case '^':
	  /* Must be a binary operator.  */
	  if (!saw_operand)
	    goto unknown;
	  *q++ = *p++;
	  saw_operand = false;
	  need_operand = true;
	  break;

	case '=':
	  *q++ = *p++;
	  if (*p != '=')
	    goto unknown;
	  /* Must be a binary operator.  */
	  if (!saw_operand)
	    goto unknown;
	  *q++ = *p++;
	  saw_operand = false;
	  need_operand = true;
	  break;

	case '!':
	  *q++ = *p++;
	  if (*p == '=')
Ian Lance Taylor committed
314
	    {
315 316 317 318 319 320
	      /* Must be a binary operator.  */
	      if (!saw_operand)
		goto unknown;
	      *q++ = *p++;
	      saw_operand = false;
	      need_operand = true;
Ian Lance Taylor committed
321
	    }
322
	  else
Ian Lance Taylor committed
323
	    {
324 325 326 327
	      /* Must be a unary operator.  */
	      if (saw_operand)
		goto unknown;
	      need_operand = true;
Ian Lance Taylor committed
328
	    }
329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
	  break;

	case '<': case '>':
	  /* Must be a binary operand, may be << or >> or <= or >=.  */
	  if (!saw_operand)
	    goto unknown;
	  *q++ = *p++;
	  if (*p == *(p - 1) || *p == '=')
	    *q++ = *p++;
	  saw_operand = false;
	  need_operand = true;
	  break;

	case '~':
	  /* Must be a unary operand, must be translated for Go.  */
	  if (saw_operand)
	    goto unknown;
	  *q++ = '^';
	  p++;
	  need_operand = true;
	  break;

	case '"':
	case '\'':
	  {
354
	    char quote;
355
	    int count;
356 357 358 359

	    if (saw_operand)
	      goto unknown;
	    quote = *p;
360
	    *q++ = *p++;
361
	    count = 0;
362 363 364 365 366 367 368
	    while (*p != quote)
	      {
		int c;

		if (*p == '\0')
		  goto unknown;

369 370
		++count;

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
		if (*p != '\\')
		  {
		    *q++ = *p++;
		    continue;
		  }

		*q++ = *p++;
		switch (*p)
		  {
		  case '0': case '1': case '2': case '3':
		  case '4': case '5': case '6': case '7':
		    c = 0;
		    while (*p >= '0' && *p <= '7')
		      {
			*q++ = *p++;
			++c;
		      }
		    /* Go octal characters are always 3
		       digits.  */
		    if (c != 3)
		      goto unknown;
		    break;

		  case 'x':
		    *q++ = *p++;
		    c = 0;
		    while (ISXDIGIT (*p))
		      {
			*q++ = *p++;
			++c;
		      }
		    /* Go hex characters are always 2 digits.  */
		    if (c != 2)
		      goto unknown;
		    break;

		  case 'a': case 'b': case 'f': case 'n': case 'r':
		  case 't': case 'v': case '\\': case '\'': case '"':
		    *q++ = *p++;
		    break;

		  default:
		    goto unknown;
		  }
	      }
416

417
	    *q++ = *p++;
418 419 420 421 422 423 424

	    if (quote == '\'' && count != 1)
	      goto unknown;

	    saw_operand = true;
	    need_operand = false;

425 426 427 428 429
	    break;
	  }

	default:
	  goto unknown;
Ian Lance Taylor committed
430 431
	}
    }
432 433 434 435

  if (need_operand)
    goto unknown;

436
  gcc_assert ((size_t) (q - out_buffer) < out_len);
Ian Lance Taylor committed
437 438
  *q = '\0';

439
  mhval->value = out_buffer;
Ian Lance Taylor committed
440

441 442 443 444 445 446 447 448 449 450 451 452
  if (slot == NULL)
    {
      slot = htab_find_slot_with_hash (macro_hash, mhval, hashval, INSERT);
      gcc_assert (slot != NULL && *slot == NULL);
    }
  else
    {
      if (*slot != NULL)
	macro_hash_del (*slot);
    }

  *slot = mhval;
Ian Lance Taylor committed
453

454 455 456 457
  return;

 unknown:
  fprintf (go_dump_file, "// unknowndefine %s\n", buffer);
458 459
  if (slot != NULL)
    htab_clear_slot (macro_hash, slot);
460 461
  XDELETEVEC (out_buffer);
  XDELETEVEC (copy);
Ian Lance Taylor committed
462 463 464 465 466 467 468
}

/* A macro undef.  */

static void
go_undef (unsigned int lineno, const char *buffer)
{
469
  struct macro_hash_value mhval;
Ian Lance Taylor committed
470 471 472 473
  void **slot;

  real_debug_hooks->undef (lineno, buffer);

474 475 476 477 478
  mhval.name = CONST_CAST (char *, buffer);
  mhval.value = NULL;
  slot = htab_find_slot (macro_hash, &mhval, NO_INSERT);
  if (slot != NULL)
    htab_clear_slot (macro_hash, slot);
Ian Lance Taylor committed
479 480 481 482 483 484 485 486 487 488 489
}

/* A function or variable decl.  */

static void
go_decl (tree decl)
{
  if (!TREE_PUBLIC (decl)
      || DECL_IS_BUILTIN (decl)
      || DECL_NAME (decl) == NULL_TREE)
    return;
490
  vec_safe_push (queue, decl);
Ian Lance Taylor committed
491 492 493 494 495 496 497 498 499 500 501
}

/* A function decl.  */

static void
go_function_decl (tree decl)
{
  real_debug_hooks->function_decl (decl);
  go_decl (decl);
}

502 503 504 505
static void
go_early_global_decl (tree decl)
{
  go_decl (decl);
506 507
  if (TREE_CODE (decl) != FUNCTION_DECL || DECL_STRUCT_FUNCTION (decl) != NULL)
    real_debug_hooks->early_global_decl (decl);
508 509
}

Ian Lance Taylor committed
510 511 512
/* A global variable decl.  */

static void
513
go_late_global_decl (tree decl)
Ian Lance Taylor committed
514
{
515
  real_debug_hooks->late_global_decl (decl);
Ian Lance Taylor committed
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
}

/* A type declaration.  */

static void
go_type_decl (tree decl, int local)
{
  real_debug_hooks->type_decl (decl, local);

  if (local || DECL_IS_BUILTIN (decl))
    return;
  if (DECL_NAME (decl) == NULL_TREE
      && (TYPE_NAME (TREE_TYPE (decl)) == NULL_TREE
	  || TREE_CODE (TYPE_NAME (TREE_TYPE (decl))) != IDENTIFIER_NODE)
      && TREE_CODE (TREE_TYPE (decl)) != ENUMERAL_TYPE)
    return;
532
  vec_safe_push (queue, decl);
Ian Lance Taylor committed
533 534 535 536 537
}

/* A container for the data we pass around when generating information
   at the end of the compilation.  */

538
class godump_container
Ian Lance Taylor committed
539
{
540
public:
Ian Lance Taylor committed
541
  /* DECLs that we have already seen.  */
542
  hash_set<tree> decls_seen;
Ian Lance Taylor committed
543 544 545

  /* Types which may potentially have to be defined as dummy
     types.  */
546
  hash_set<const char *> pot_dummy_types;
Ian Lance Taylor committed
547 548 549 550 551 552 553

  /* Go keywords.  */
  htab_t keyword_hash;

  /* Global type definitions.  */
  htab_t type_hash;

554 555 556
  /* Invalid types.  */
  htab_t invalid_hash;

Ian Lance Taylor committed
557 558 559 560 561 562 563 564 565 566 567 568
  /* Obstack used to write out a type definition.  */
  struct obstack type_obstack;
};

/* Append an IDENTIFIER_NODE to OB.  */

static void
go_append_string (struct obstack *ob, tree id)
{
  obstack_grow (ob, IDENTIFIER_POINTER (id), IDENTIFIER_LENGTH (id));
}

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 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
/* Given an integer PRECISION in bits, returns a constant string that is the
   matching go int or uint type (depending on the IS_UNSIGNED flag).  Returns a
   NULL pointer if there is no matching go type.  */

static const char *
go_get_uinttype_for_precision (unsigned int precision, bool is_unsigned)
{
  switch (precision)
    {
    case 8:
      return is_unsigned ? "uint8" : "int8";
    case 16:
      return is_unsigned ? "uint16" : "int16";
    case 32:
      return is_unsigned ? "uint32" : "int32";
    case 64:
      return is_unsigned ? "uint64" : "int64";
    default:
      return NULL;
    }
}

/* Append an artificial variable name with the suffix _INDEX to OB.  Returns
   INDEX + 1.  */

static unsigned int
go_append_artificial_name (struct obstack *ob, unsigned int index)
{
  char buf[100];

  /* FIXME: identifier may not be unique.  */
  obstack_grow (ob, "Godump_", 7);
  snprintf (buf, sizeof buf, "%u", index);
  obstack_grow (ob, buf, strlen (buf));

  return index + 1;
}

/* Append the variable name from DECL to OB.  If the name is in the
   KEYWORD_HASH, prepend an '_'.  */

static void
go_append_decl_name (struct obstack *ob, tree decl, htab_t keyword_hash)
{
  const char *var_name;
  void **slot;

  /* Start variable name with an underscore if a keyword.  */
  var_name = IDENTIFIER_POINTER (DECL_NAME (decl));
  slot = htab_find_slot (keyword_hash, var_name, NO_INSERT);
  if (slot != NULL)
    obstack_1grow (ob, '_');
  go_append_string (ob, DECL_NAME (decl));
}

/* Appends a byte array with the necessary number of elements and the name
   "Godump_INDEX_pad" to pad from FROM_OFFSET to TO_OFFSET to OB assuming that
   the next field is automatically aligned to ALIGN_UNITS.  Returns INDEX + 1,
   or INDEX if no padding had to be appended.  The resulting offset where the
   next field is allocated is returned through RET_OFFSET.  */

static unsigned int
go_append_padding (struct obstack *ob, unsigned int from_offset,
		   unsigned int to_offset, unsigned int align_units,
		   unsigned int index, unsigned int *ret_offset)
{
  if (from_offset % align_units > 0)
    from_offset += align_units - (from_offset % align_units);
  gcc_assert (to_offset >= from_offset);
  if (to_offset > from_offset)
    {
      char buf[100];

      index = go_append_artificial_name (ob, index);
      snprintf (buf, sizeof buf, "_pad [%u]byte; ", to_offset - from_offset);
      obstack_grow (ob, buf, strlen (buf));
    }
  *ret_offset = to_offset;

  return index;
}

/* Appends an array of type TYPE_STRING with zero elements and the name
   "Godump_INDEX_align" to OB.  If TYPE_STRING is a null pointer, ERROR_STRING
   is appended instead of the type.  Returns INDEX + 1.  */

static unsigned int
go_force_record_alignment (struct obstack *ob, const char *type_string,
			   unsigned int index, const char *error_string)
{
  index = go_append_artificial_name (ob, index);
  obstack_grow (ob, "_align ", 7);
  if (type_string == NULL)
    obstack_grow (ob, error_string, strlen (error_string));
  else
    {
      obstack_grow (ob, "[0]", 3);
      obstack_grow (ob, type_string, strlen (type_string));
    }
  obstack_grow (ob, "; ", 2);

  return index;
}

Ian Lance Taylor committed
673 674 675
/* Write the Go version of TYPE to CONTAINER->TYPE_OBSTACK.
   USE_TYPE_NAME is true if we can simply use a type name here without
   needing to define it.  IS_FUNC_OK is true if we can output a func
676 677 678 679 680
   type here; the "func" keyword will already have been added.
   Return true if the type can be represented in Go, false otherwise.
   P_ART_I is used for indexing artificial elements in nested structures and
   should always be a NULL pointer when called, except by certain recursive
   calls from go_format_type() itself.  */
Ian Lance Taylor committed
681 682

static bool
683
go_format_type (class godump_container *container, tree type,
684 685
		bool use_type_name, bool is_func_ok, unsigned int *p_art_i,
		bool is_anon_record_or_union)
Ian Lance Taylor committed
686 687 688
{
  bool ret;
  struct obstack *ob;
689
  unsigned int art_i_dummy;
690
  bool is_union = false;
Ian Lance Taylor committed
691

692 693 694 695 696
  if (p_art_i == NULL)
    {
      art_i_dummy = 0;
      p_art_i = &art_i_dummy;
    }
Ian Lance Taylor committed
697 698 699 700
  ret = true;
  ob = &container->type_obstack;

  if (TYPE_NAME (type) != NULL_TREE
701 702
      && (container->decls_seen.contains (type)
	  || container->decls_seen.contains (TYPE_NAME (type)))
Ian Lance Taylor committed
703 704 705 706 707
      && (AGGREGATE_TYPE_P (type)
	  || POINTER_TYPE_P (type)
	  || TREE_CODE (type) == FUNCTION_TYPE))
    {
      tree name;
708
      void **slot;
Ian Lance Taylor committed
709

710
      name = TYPE_IDENTIFIER (type);
711 712 713 714 715 716 717 718 719

      slot = htab_find_slot (container->invalid_hash, IDENTIFIER_POINTER (name),
			     NO_INSERT);
      if (slot != NULL)
	ret = false;

      obstack_1grow (ob, '_');
      go_append_string (ob, name);
      return ret;
Ian Lance Taylor committed
720 721
    }

722
  container->decls_seen.add (type);
Ian Lance Taylor committed
723 724 725 726

  switch (TREE_CODE (type))
    {
    case TYPE_DECL:
727 728 729 730 731 732 733 734 735 736 737 738
      {
	void **slot;

	slot = htab_find_slot (container->invalid_hash,
			       IDENTIFIER_POINTER (DECL_NAME (type)),
			       NO_INSERT);
	if (slot != NULL)
	  ret = false;

	obstack_1grow (ob, '_');
	go_append_string (ob, DECL_NAME (type));
      }
Ian Lance Taylor committed
739 740
      break;

741
    case ENUMERAL_TYPE:
Ian Lance Taylor committed
742 743 744 745 746
    case INTEGER_TYPE:
      {
	const char *s;
	char buf[100];

747 748 749
	s = go_get_uinttype_for_precision (TYPE_PRECISION (type),
					   TYPE_UNSIGNED (type));
	if (s == NULL)
Ian Lance Taylor committed
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784
	  {
	    snprintf (buf, sizeof buf, "INVALID-int-%u%s",
		      TYPE_PRECISION (type),
		      TYPE_UNSIGNED (type) ? "u" : "");
	    s = buf;
	    ret = false;
	  }
	obstack_grow (ob, s, strlen (s));
      }
      break;

    case REAL_TYPE:
      {
	const char *s;
	char buf[100];

	switch (TYPE_PRECISION (type))
	  {
	  case 32:
	    s = "float32";
	    break;
	  case 64:
	    s = "float64";
	    break;
	  default:
	    snprintf (buf, sizeof buf, "INVALID-float-%u",
		      TYPE_PRECISION (type));
	    s = buf;
	    ret = false;
	    break;
	  }
	obstack_grow (ob, s, strlen (s));
      }
      break;

785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
    case COMPLEX_TYPE:
      {
	const char *s;
	char buf[100];
	tree real_type;

	real_type = TREE_TYPE (type);
	if (TREE_CODE (real_type) == REAL_TYPE)
	  {
	    switch (TYPE_PRECISION (real_type))
	      {
	      case 32:
		s = "complex64";
		break;
	      case 64:
		s = "complex128";
		break;
	      default:
		snprintf (buf, sizeof buf, "INVALID-complex-%u",
			  2 * TYPE_PRECISION (real_type));
		s = buf;
		ret = false;
		break;
	      }
	  }
	else
	  {
	    s = "INVALID-complex-non-real";
	    ret = false;
	  }
	obstack_grow (ob, s, strlen (s));
      }
      break;

Ian Lance Taylor committed
819 820 821 822 823 824 825 826 827 828 829 830 831
    case BOOLEAN_TYPE:
      obstack_grow (ob, "bool", 4);
      break;

    case POINTER_TYPE:
      if (use_type_name
          && TYPE_NAME (TREE_TYPE (type)) != NULL_TREE
          && (RECORD_OR_UNION_TYPE_P (TREE_TYPE (type))
	      || (POINTER_TYPE_P (TREE_TYPE (type))
                  && (TREE_CODE (TREE_TYPE (TREE_TYPE (type)))
		      == FUNCTION_TYPE))))
        {
	  tree name;
832
	  void **slot;
Ian Lance Taylor committed
833

834
	  name = TYPE_IDENTIFIER (TREE_TYPE (type));
Ian Lance Taylor committed
835

836 837 838 839
	  slot = htab_find_slot (container->invalid_hash,
				 IDENTIFIER_POINTER (name), NO_INSERT);
	  if (slot != NULL)
	    ret = false;
Ian Lance Taylor committed
840

841 842 843 844 845 846 847
	  obstack_grow (ob, "*_", 2);
	  go_append_string (ob, name);

	  /* The pointer here can be used without the struct or union
	     definition.  So this struct or union is a potential dummy
	     type.  */
	  if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (type)))
848
	    container->pot_dummy_types.add (IDENTIFIER_POINTER (name));
849 850

	  return ret;
Ian Lance Taylor committed
851 852 853 854 855 856 857 858 859 860
        }
      if (TREE_CODE (TREE_TYPE (type)) == FUNCTION_TYPE)
	obstack_grow (ob, "func", 4);
      else
	obstack_1grow (ob, '*');
      if (VOID_TYPE_P (TREE_TYPE (type)))
	obstack_grow (ob, "byte", 4);
      else
	{
	  if (!go_format_type (container, TREE_TYPE (type), use_type_name,
861
			       true, NULL, false))
Ian Lance Taylor committed
862 863 864 865 866 867 868 869 870 871 872 873 874
	    ret = false;
	}
      break;

    case ARRAY_TYPE:
      obstack_1grow (ob, '[');
      if (TYPE_DOMAIN (type) != NULL_TREE
	  && TREE_CODE (TYPE_DOMAIN (type)) == INTEGER_TYPE
	  && TYPE_MIN_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
	  && TREE_CODE (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) == INTEGER_CST
	  && tree_int_cst_sgn (TYPE_MIN_VALUE (TYPE_DOMAIN (type))) == 0
	  && TYPE_MAX_VALUE (TYPE_DOMAIN (type)) != NULL_TREE
	  && TREE_CODE (TYPE_MAX_VALUE (TYPE_DOMAIN (type))) == INTEGER_CST
875
	  && tree_fits_shwi_p (TYPE_MAX_VALUE (TYPE_DOMAIN (type))))
Ian Lance Taylor committed
876 877 878 879
	{
	  char buf[100];

	  snprintf (buf, sizeof buf, HOST_WIDE_INT_PRINT_DEC "+1",
880
		    tree_to_shwi (TYPE_MAX_VALUE (TYPE_DOMAIN (type))));
Ian Lance Taylor committed
881 882
	  obstack_grow (ob, buf, strlen (buf));
	}
883 884
      else
	obstack_1grow (ob, '0');
Ian Lance Taylor committed
885
      obstack_1grow (ob, ']');
886
      if (!go_format_type (container, TREE_TYPE (type), use_type_name, false,
887
			   NULL, false))
Ian Lance Taylor committed
888 889 890
	ret = false;
      break;

891 892 893
    case UNION_TYPE:
      is_union = true;
      /* Fall through to RECORD_TYPE case.  */
894
      gcc_fallthrough ();
Ian Lance Taylor committed
895 896
    case RECORD_TYPE:
      {
897
	unsigned int prev_field_end;
898
	unsigned int known_alignment;
Ian Lance Taylor committed
899
	tree field;
900
	bool emitted_a_field;
Ian Lance Taylor committed
901

902 903 904 905 906 907
	/* FIXME: Why is this necessary?  Without it we can get a core
	   dump on the s390x headers, or from a file containing simply
	   "typedef struct S T;".  */
	layout_type (type);

	prev_field_end = 0;
908 909 910 911 912 913
	known_alignment = 1;
	/* Anonymous records and unions are flattened, i.e. they are not put
	   into "struct { ... }".  */
	if (!is_anon_record_or_union)
	  obstack_grow (ob, "struct { ", 9);
	for (field = TYPE_FIELDS (type), emitted_a_field = false;
Ian Lance Taylor committed
914 915 916
	     field != NULL_TREE;
	     field = TREE_CHAIN (field))
	  {
917 918
	    if (TREE_CODE (field) != FIELD_DECL)
	      continue;
Ian Lance Taylor committed
919
	    if (DECL_BIT_FIELD (field))
920
	      /* Bit fields are replaced by padding.  */
921
	      continue;
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947
	    /* Only the first non-bitfield field is emitted for unions.  */
	    if (!is_union || !emitted_a_field)
	      {
		/* Emit the field.  */
		bool field_ok;
		bool is_anon_substructure;
		unsigned int decl_align_unit;
		unsigned int decl_offset;

		field_ok = true;
		emitted_a_field = true;
		is_anon_substructure =
		  (DECL_NAME (field) == NULL
		   && (TREE_CODE (TREE_TYPE (field)) == RECORD_TYPE
		       || TREE_CODE (TREE_TYPE (field)) == UNION_TYPE));
		/* Keep track of the alignment of named substructures, either
		   of the whole record, or the alignment of the emitted field
		   (for unions).  */
		decl_align_unit = DECL_ALIGN_UNIT (field);
		if (!is_anon_substructure && decl_align_unit > known_alignment)
		  known_alignment = decl_align_unit;
		/* Pad to start of field.  */
		decl_offset =
		  TREE_INT_CST_LOW (DECL_FIELD_OFFSET (field))
		  + precision_to_units
		  (TREE_INT_CST_LOW (DECL_FIELD_BIT_OFFSET (field)));
948
		{
949 950 951 952 953
		  unsigned int align_unit;

		  /* For anonymous records and unions there is no automatic
		     structure alignment, so use 1 as the alignment.  */
		  align_unit = (is_anon_substructure) ? 1 : decl_align_unit;
954
		  *p_art_i = go_append_padding
955
		    (ob, prev_field_end, decl_offset, align_unit, *p_art_i,
956 957
		     &prev_field_end);
		}
958 959 960 961 962 963 964
		if (DECL_SIZE_UNIT (field))
		  prev_field_end +=
		    TREE_INT_CST_LOW (DECL_SIZE_UNIT (field));
		/* Emit the field name, but not for anonymous records and
		   unions.  */
		if (!is_anon_substructure)
		  {
965
		    if (DECL_NAME (field) == NULL)
966 967 968 969 970 971 972 973
		      *p_art_i = go_append_artificial_name (ob, *p_art_i);
		    else
		      go_append_decl_name
			(ob, field, container->keyword_hash);
		    obstack_1grow (ob, ' ');
		  }
		/* Do not expand type if a record or union type or a function
		   pointer.  */
Ian Lance Taylor committed
974 975 976 977
		if (TYPE_NAME (TREE_TYPE (field)) != NULL_TREE
		    && (RECORD_OR_UNION_TYPE_P (TREE_TYPE (field))
			|| (POINTER_TYPE_P (TREE_TYPE (field))
			    && (TREE_CODE (TREE_TYPE (TREE_TYPE (field)))
978
				== FUNCTION_TYPE))))
Ian Lance Taylor committed
979
		  {
980 981 982
		    tree name;
		    void **slot;

983
		    name = TYPE_IDENTIFIER (TREE_TYPE (field));
984 985 986 987 988

		    slot = htab_find_slot (container->invalid_hash,
					   IDENTIFIER_POINTER (name),
					   NO_INSERT);
		    if (slot != NULL)
989
		      field_ok = false;
990 991 992

		    obstack_1grow (ob, '_');
		    go_append_string (ob, name);
Ian Lance Taylor committed
993 994 995 996
		  }
		else
		  {
		    if (!go_format_type (container, TREE_TYPE (field), true,
997
					 false, p_art_i, is_anon_substructure))
998
		      field_ok = false;
Ian Lance Taylor committed
999
		  }
1000 1001 1002 1003 1004
		if (!is_anon_substructure)
		  obstack_grow (ob, "; ", 2);
		if (!field_ok)
		  ret = false;
	      }
1005
	  }
1006
	/* Padding.  */
1007 1008 1009
	*p_art_i = go_append_padding (ob, prev_field_end,
				      TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type)),
				      1, *p_art_i, &prev_field_end);
1010 1011 1012
	/* Alignment.  */
	if (!is_anon_record_or_union
	    && known_alignment < TYPE_ALIGN_UNIT (type))
1013 1014 1015
	  {
	    const char *s;
	    char buf[100];
Ian Lance Taylor committed
1016

1017 1018 1019 1020
	    /* Enforce proper record alignment.  */
	    s = go_get_uinttype_for_precision
	      (TYPE_ALIGN (type), TYPE_UNSIGNED (type));
	    if (s == NULL)
1021
	      {
1022 1023 1024 1025
		snprintf (buf, sizeof buf, "INVALID-int-%u%s",
			  TYPE_ALIGN (type), TYPE_UNSIGNED (type) ? "u" : "");
		s = buf;
		ret = false;
1026
	      }
1027 1028
	    *p_art_i = go_force_record_alignment (ob, s, *p_art_i, buf);
	  }
1029 1030
	if (!is_anon_record_or_union)
	  obstack_1grow (ob, '}');
1031
      }
1032
    break;
Ian Lance Taylor committed
1033 1034 1035

    case FUNCTION_TYPE:
      {
1036
	tree arg_type;
Ian Lance Taylor committed
1037 1038
	bool is_varargs;
	tree result;
1039 1040
	function_args_iterator iter;
	bool seen_arg;
Ian Lance Taylor committed
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050

	/* Go has no way to write a type which is a function but not a
	   pointer to a function.  */
	if (!is_func_ok)
	  {
	    obstack_grow (ob, "func*", 5);
	    ret = false;
	  }

	obstack_1grow (ob, '(');
1051 1052 1053
	is_varargs = stdarg_p (type);
	seen_arg = false;
	FOREACH_FUNCTION_ARGS (type, arg_type, iter)
Ian Lance Taylor committed
1054
	  {
1055 1056 1057
	    if (VOID_TYPE_P (arg_type))
	      break;
	    if (seen_arg)
Ian Lance Taylor committed
1058
	      obstack_grow (ob, ", ", 2);
1059
	    if (!go_format_type (container, arg_type, true, false, NULL, false))
Ian Lance Taylor committed
1060
	      ret = false;
1061
	    seen_arg = true;
Ian Lance Taylor committed
1062 1063 1064
	  }
	if (is_varargs)
	  {
1065
	    if (prototype_p (type))
Ian Lance Taylor committed
1066 1067 1068 1069 1070 1071 1072 1073 1074
	      obstack_grow (ob, ", ", 2);
	    obstack_grow (ob, "...interface{}", 14);
	  }
	obstack_1grow (ob, ')');

	result = TREE_TYPE (type);
	if (!VOID_TYPE_P (result))
	  {
	    obstack_1grow (ob, ' ');
1075 1076
	    if (!go_format_type (container, result, use_type_name, false, NULL,
				 false))
Ian Lance Taylor committed
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094
	      ret = false;
	  }
      }
      break;

    default:
      obstack_grow (ob, "INVALID-type", 12);
      ret = false;
      break;
    }

  return ret;
}

/* Output the type which was built on the type obstack, and then free
   it.  */

static void
1095
go_output_type (class godump_container *container)
Ian Lance Taylor committed
1096 1097 1098 1099 1100
{
  struct obstack *ob;

  ob = &container->type_obstack;
  obstack_1grow (ob, '\0');
1101
  fputs ((char *) obstack_base (ob), go_dump_file);
Ian Lance Taylor committed
1102 1103 1104 1105 1106 1107
  obstack_free (ob, obstack_base (ob));
}

/* Output a function declaration.  */

static void
1108
go_output_fndecl (class godump_container *container, tree decl)
Ian Lance Taylor committed
1109
{
1110
  if (!go_format_type (container, TREE_TYPE (decl), false, true, NULL, false))
Ian Lance Taylor committed
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
    fprintf (go_dump_file, "// ");
  fprintf (go_dump_file, "func _%s ",
	   IDENTIFIER_POINTER (DECL_NAME (decl)));
  go_output_type (container);
  fprintf (go_dump_file, " __asm__(\"%s\")\n",
	   IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (decl)));
}

/* Output a typedef or something like a struct definition.  */

static void
1122
go_output_typedef (class godump_container *container, tree decl)
Ian Lance Taylor committed
1123 1124 1125 1126 1127
{
  /* If we have an enum type, output the enum constants
     separately.  */
  if (TREE_CODE (TREE_TYPE (decl)) == ENUMERAL_TYPE
      && TYPE_SIZE (TREE_TYPE (decl)) != 0
1128
      && !container->decls_seen.contains (TREE_TYPE (decl))
Ian Lance Taylor committed
1129
      && (TYPE_CANONICAL (TREE_TYPE (decl)) == NULL_TREE
1130 1131
	  || !container->decls_seen.contains
				    (TYPE_CANONICAL (TREE_TYPE (decl)))))
Ian Lance Taylor committed
1132 1133 1134 1135 1136 1137
    {
      tree element;

      for (element = TYPE_VALUES (TREE_TYPE (decl));
	   element != NULL_TREE;
	   element = TREE_CHAIN (element))
1138 1139
	{
	  const char *name;
1140
	  struct macro_hash_value *mhval;
1141
	  void **slot;
Kenneth Zadeck committed
1142
	  char buf[WIDE_INT_PRINT_BUFFER_SIZE];
1143 1144 1145 1146 1147 1148

	  name = IDENTIFIER_POINTER (TREE_PURPOSE (element));

	  /* Sometimes a name will be defined as both an enum constant
	     and a macro.  Avoid duplicate definition errors by
	     treating enum constants as macros.  */
1149 1150 1151 1152 1153 1154 1155
	  mhval = XNEW (struct macro_hash_value);
	  mhval->name = xstrdup (name);
	  mhval->value = NULL;
	  slot = htab_find_slot (macro_hash, mhval, INSERT);
	  if (*slot != NULL)
	    macro_hash_del (*slot);

1156
	  if (tree_fits_shwi_p (TREE_VALUE (element)))
1157
	    snprintf (buf, sizeof buf, HOST_WIDE_INT_PRINT_DEC,
1158
		     tree_to_shwi (TREE_VALUE (element)));
1159
	  else if (tree_fits_uhwi_p (TREE_VALUE (element)))
1160
	    snprintf (buf, sizeof buf, HOST_WIDE_INT_PRINT_UNSIGNED,
1161
		      tree_to_uhwi (TREE_VALUE (element)));
1162
	  else
1163
	    print_hex (wi::to_wide (element), buf);
1164 1165 1166

	  mhval->value = xstrdup (buf);
	  *slot = mhval;
1167
	}
1168
      container->decls_seen.add (TREE_TYPE (decl));
Ian Lance Taylor committed
1169
      if (TYPE_CANONICAL (TREE_TYPE (decl)) != NULL_TREE)
1170
	container->decls_seen.add (TYPE_CANONICAL (TREE_TYPE (decl)));
Ian Lance Taylor committed
1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184
    }

  if (DECL_NAME (decl) != NULL_TREE)
    {
      void **slot;
      const char *type;

      type = IDENTIFIER_POINTER (DECL_NAME (decl));
      /* If type defined already, skip.  */
      slot = htab_find_slot (container->type_hash, type, INSERT);
      if (*slot != NULL)
	return;
      *slot = CONST_CAST (void *, (const void *) type);

1185
      if (!go_format_type (container, TREE_TYPE (decl), true, false, NULL,
1186
			   false))
1187 1188 1189 1190 1191
	{
	  fprintf (go_dump_file, "// ");
	  slot = htab_find_slot (container->invalid_hash, type, INSERT);
	  *slot = CONST_CAST (void *, (const void *) type);
	}
Ian Lance Taylor committed
1192 1193 1194
      fprintf (go_dump_file, "type _%s ",
	       IDENTIFIER_POINTER (DECL_NAME (decl)));
      go_output_type (container);
1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206

      if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl)))
	{
	  HOST_WIDE_INT size = int_size_in_bytes (TREE_TYPE (decl));

	  if (size > 0)
	    fprintf (go_dump_file,
		     "\nconst _sizeof_%s = " HOST_WIDE_INT_PRINT_DEC,
		     IDENTIFIER_POINTER (DECL_NAME (decl)),
		     size);
	}

1207
      container->decls_seen.add (decl);
Ian Lance Taylor committed
1208 1209 1210 1211 1212
    }
  else if (RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl)))
    {
       void **slot;
       const char *type;
1213
       HOST_WIDE_INT size;
Ian Lance Taylor committed
1214 1215 1216 1217 1218 1219 1220 1221

       type = IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE ((decl))));
       /* If type defined already, skip.  */
       slot = htab_find_slot (container->type_hash, type, INSERT);
       if (*slot != NULL)
         return;
       *slot = CONST_CAST (void *, (const void *) type);

1222 1223
       if (!go_format_type (container, TREE_TYPE (decl), false, false, NULL,
			    false))
1224 1225 1226 1227 1228
	 {
	   fprintf (go_dump_file, "// ");
	   slot = htab_find_slot (container->invalid_hash, type, INSERT);
	   *slot = CONST_CAST (void *, (const void *) type);
	 }
Ian Lance Taylor committed
1229 1230 1231
       fprintf (go_dump_file, "type _%s ",
	       IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl))));
       go_output_type (container);
1232 1233 1234 1235 1236 1237 1238

       size = int_size_in_bytes (TREE_TYPE (decl));
       if (size > 0)
	 fprintf (go_dump_file,
		  "\nconst _sizeof_%s = " HOST_WIDE_INT_PRINT_DEC,
		  IDENTIFIER_POINTER (TYPE_NAME (TREE_TYPE (decl))),
		  size);
Ian Lance Taylor committed
1239 1240 1241 1242 1243 1244 1245 1246 1247 1248
    }
  else
    return;

  fprintf (go_dump_file, "\n");
}

/* Output a variable.  */

static void
1249
go_output_var (class godump_container *container, tree decl)
Ian Lance Taylor committed
1250
{
1251
  bool is_valid;
1252 1253
  tree type_name;
  tree id;
1254

1255 1256
  if (container->decls_seen.contains (decl)
      || container->decls_seen.contains (DECL_NAME (decl)))
Ian Lance Taylor committed
1257
    return;
1258 1259
  container->decls_seen.add (decl);
  container->decls_seen.add (DECL_NAME (decl));
1260

1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285
  type_name = TYPE_NAME (TREE_TYPE (decl));
  id = NULL_TREE;
  if (type_name != NULL_TREE && TREE_CODE (type_name) == IDENTIFIER_NODE)
    id = type_name;
  else if (type_name != NULL_TREE && TREE_CODE (type_name) == TYPE_DECL
	   && DECL_SOURCE_LOCATION (type_name) != BUILTINS_LOCATION
	   && DECL_NAME (type_name))
    id = DECL_NAME (type_name);
  if (id != NULL_TREE
      && (!htab_find_slot (container->type_hash, IDENTIFIER_POINTER (id),
			   NO_INSERT)
	  || htab_find_slot (container->invalid_hash, IDENTIFIER_POINTER (id),
			     NO_INSERT)))
    id = NULL_TREE;
  if (id != NULL_TREE)
    {
      struct obstack *ob;

      ob = &container->type_obstack;
      obstack_1grow (ob, '_');
      go_append_string (ob, id);
      is_valid = htab_find_slot (container->type_hash, IDENTIFIER_POINTER (id),
				 NO_INSERT) != NULL;
    }
  else
1286 1287
    is_valid = go_format_type (container, TREE_TYPE (decl), true, false, NULL,
			       false);
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297
  if (is_valid
      && htab_find_slot (container->type_hash,
			 IDENTIFIER_POINTER (DECL_NAME (decl)),
			 NO_INSERT) != NULL)
    {
      /* There is already a type with this name, probably from a
	 struct tag.  Prefer the type to the variable.  */
      is_valid = false;
    }
  if (!is_valid)
Ian Lance Taylor committed
1298
    fprintf (go_dump_file, "// ");
1299

Ian Lance Taylor committed
1300 1301 1302 1303 1304 1305 1306
  fprintf (go_dump_file, "var _%s ",
	   IDENTIFIER_POINTER (DECL_NAME (decl)));
  go_output_type (container);
  fprintf (go_dump_file, "\n");

  /* Sometimes an extern variable is declared with an unknown struct
     type.  */
1307
  if (type_name != NULL_TREE && RECORD_OR_UNION_TYPE_P (TREE_TYPE (decl)))
Ian Lance Taylor committed
1308 1309
    {
      if (TREE_CODE (type_name) == IDENTIFIER_NODE)
1310
	container->pot_dummy_types.add (IDENTIFIER_POINTER (type_name));
Ian Lance Taylor committed
1311
      else if (TREE_CODE (type_name) == TYPE_DECL)
1312 1313
	container->pot_dummy_types.add
			    (IDENTIFIER_POINTER (DECL_NAME (type_name)));
Ian Lance Taylor committed
1314 1315 1316
    }
}

1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
/* Output the final value of a preprocessor macro or enum constant.
   This is called via htab_traverse_noresize.  */

static int
go_print_macro (void **slot, void *arg ATTRIBUTE_UNUSED)
{
  struct macro_hash_value *mhval = (struct macro_hash_value *) *slot;
  fprintf (go_dump_file, "const _%s = %s\n", mhval->name, mhval->value);
  return 1;
}

Ian Lance Taylor committed
1328 1329 1330 1331 1332 1333 1334 1335 1336 1337
/* Build a hash table with the Go keywords.  */

static const char * const keywords[] = {
  "__asm__", "break", "case", "chan", "const", "continue", "default",
  "defer", "else", "fallthrough", "for", "func", "go", "goto", "if",
  "import", "interface", "map", "package", "range", "return", "select",
  "struct", "switch", "type", "var"
};

static void
1338
keyword_hash_init (class godump_container *container)
Ian Lance Taylor committed
1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352
{
  size_t i;
  size_t count = sizeof (keywords) / sizeof (keywords[0]);
  void **slot;

  for (i = 0; i < count; i++)
    {
      slot = htab_find_slot (container->keyword_hash, keywords[i], INSERT);
      *slot = CONST_CAST (void *, (const void *) keywords[i]);
    }
}

/* Traversing the pot_dummy_types and seeing which types are present
   in the global types hash table and creating dummy definitions if
1353
   not found.  This function is invoked by hash_set::traverse.  */
Ian Lance Taylor committed
1354

1355 1356
bool
find_dummy_types (const char *const &ptr, godump_container *adata)
Ian Lance Taylor committed
1357
{
1358
  class godump_container *data = (class godump_container *) adata;
Ian Lance Taylor committed
1359 1360
  const char *type = (const char *) ptr;
  void **slot;
1361
  void **islot;
Ian Lance Taylor committed
1362 1363

  slot = htab_find_slot (data->type_hash, type, NO_INSERT);
1364 1365
  islot = htab_find_slot (data->invalid_hash, type, NO_INSERT);
  if (slot == NULL || islot != NULL)
Ian Lance Taylor committed
1366 1367 1368 1369 1370 1371 1372 1373 1374
    fprintf (go_dump_file, "type _%s struct {}\n", type);
  return true;
}

/* Output symbols.  */

static void
go_finish (const char *filename)
{
1375
  class godump_container container;
Ian Lance Taylor committed
1376 1377 1378 1379 1380 1381 1382
  unsigned int ix;
  tree decl;

  real_debug_hooks->finish (filename);

  container.type_hash = htab_create (100, htab_hash_string,
                                     string_hash_eq, NULL);
1383 1384
  container.invalid_hash = htab_create (10, htab_hash_string,
					string_hash_eq, NULL);
Ian Lance Taylor committed
1385 1386 1387 1388 1389 1390
  container.keyword_hash = htab_create (50, htab_hash_string,
                                        string_hash_eq, NULL);
  obstack_init (&container.type_obstack);

  keyword_hash_init (&container);

1391
  FOR_EACH_VEC_SAFE_ELT (queue, ix, decl)
Ian Lance Taylor committed
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407
    {
      switch (TREE_CODE (decl))
	{
	case FUNCTION_DECL:
	  go_output_fndecl (&container, decl);
	  break;

	case TYPE_DECL:
	  go_output_typedef (&container, decl);
	  break;

	case VAR_DECL:
	  go_output_var (&container, decl);
	  break;

	default:
1408
	  gcc_unreachable ();
Ian Lance Taylor committed
1409 1410 1411
	}
    }

1412 1413
  htab_traverse_noresize (macro_hash, go_print_macro, NULL);

Ian Lance Taylor committed
1414
  /* To emit dummy definitions.  */
1415 1416
  container.pot_dummy_types.traverse<godump_container *, find_dummy_types>
                        (&container);
Ian Lance Taylor committed
1417 1418

  htab_delete (container.type_hash);
1419
  htab_delete (container.invalid_hash);
Ian Lance Taylor committed
1420 1421 1422
  htab_delete (container.keyword_hash);
  obstack_free (&container.type_obstack, NULL);

1423
  vec_free (queue);
Ian Lance Taylor committed
1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448

  if (fclose (go_dump_file) != 0)
    error ("could not close Go dump file: %m");
  go_dump_file = NULL;
}

/* Set up our hooks.  */

const struct gcc_debug_hooks *
dump_go_spec_init (const char *filename, const struct gcc_debug_hooks *hooks)
{
  go_dump_file = fopen (filename, "w");
  if (go_dump_file == NULL)
    {
      error ("could not open Go dump file %qs: %m", filename);
      return hooks;
    }

  go_debug_hooks = *hooks;
  real_debug_hooks = hooks;

  go_debug_hooks.finish = go_finish;
  go_debug_hooks.define = go_define;
  go_debug_hooks.undef = go_undef;
  go_debug_hooks.function_decl = go_function_decl;
1449 1450
  go_debug_hooks.early_global_decl = go_early_global_decl;
  go_debug_hooks.late_global_decl = go_late_global_decl;
Ian Lance Taylor committed
1451 1452
  go_debug_hooks.type_decl = go_type_decl;

1453 1454
  macro_hash = htab_create (100, macro_hash_hashval, macro_hash_eq,
			    macro_hash_del);
Ian Lance Taylor committed
1455 1456 1457 1458 1459

  return &go_debug_hooks;
}

#include "gt-godump.h"