OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [attribs.c] - Diff between revs 816 and 826

Only display areas with differences | Details | Blame | View Log

Rev 816 Rev 826
/* Functions dealing with attribute handling, used by most front ends.
/* Functions dealing with attribute handling, used by most front ends.
   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
   2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
   2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
   Free Software Foundation, Inc.
   Free Software Foundation, Inc.
 
 
This file is part of GCC.
This file is part of GCC.
 
 
GCC is free software; you can redistribute it and/or modify it under
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
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 3, or (at your option) any later
Software Foundation; either version 3, or (at your option) any later
version.
version.
 
 
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.
for more details.
 
 
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING3.  If not see
along with GCC; see the file COPYING3.  If not see
<http://www.gnu.org/licenses/>.  */
<http://www.gnu.org/licenses/>.  */
 
 
#include "config.h"
#include "config.h"
#include "system.h"
#include "system.h"
#include "coretypes.h"
#include "coretypes.h"
#include "tm.h"
#include "tm.h"
#include "tree.h"
#include "tree.h"
#include "flags.h"
#include "flags.h"
#include "toplev.h"
#include "toplev.h"
#include "output.h"
#include "output.h"
#include "rtl.h"
#include "rtl.h"
#include "ggc.h"
#include "ggc.h"
#include "tm_p.h"
#include "tm_p.h"
#include "cpplib.h"
#include "cpplib.h"
#include "target.h"
#include "target.h"
#include "langhooks.h"
#include "langhooks.h"
#include "hashtab.h"
#include "hashtab.h"
#include "plugin.h"
#include "plugin.h"
 
 
static void init_attributes (void);
static void init_attributes (void);
 
 
/* Table of the tables of attributes (common, language, format, machine)
/* Table of the tables of attributes (common, language, format, machine)
   searched.  */
   searched.  */
static const struct attribute_spec *attribute_tables[4];
static const struct attribute_spec *attribute_tables[4];
 
 
/* Hashtable mapping names (represented as substrings) to attribute specs. */
/* Hashtable mapping names (represented as substrings) to attribute specs. */
static htab_t attribute_hash;
static htab_t attribute_hash;
 
 
/* Substring representation.  */
/* Substring representation.  */
 
 
struct substring
struct substring
{
{
  const char *str;
  const char *str;
  int length;
  int length;
};
};
 
 
static bool attributes_initialized = false;
static bool attributes_initialized = false;
 
 
/* Default empty table of attributes.  */
/* Default empty table of attributes.  */
 
 
static const struct attribute_spec empty_attribute_table[] =
static const struct attribute_spec empty_attribute_table[] =
{
{
  { NULL, 0, 0, false, false, false, NULL }
  { NULL, 0, 0, false, false, false, NULL }
};
};
 
 
/* Return base name of the attribute.  Ie '__attr__' is turned into 'attr'.
/* Return base name of the attribute.  Ie '__attr__' is turned into 'attr'.
   To avoid need for copying, we simply return length of the string.  */
   To avoid need for copying, we simply return length of the string.  */
 
 
static void
static void
extract_attribute_substring (struct substring *str)
extract_attribute_substring (struct substring *str)
{
{
  if (str->length > 4 && str->str[0] == '_' && str->str[1] == '_'
  if (str->length > 4 && str->str[0] == '_' && str->str[1] == '_'
      && str->str[str->length - 1] == '_' && str->str[str->length - 2] == '_')
      && str->str[str->length - 1] == '_' && str->str[str->length - 2] == '_')
    {
    {
      str->length -= 4;
      str->length -= 4;
      str->str += 2;
      str->str += 2;
    }
    }
}
}
 
 
/* Simple hash function to avoid need to scan whole string.  */
/* Simple hash function to avoid need to scan whole string.  */
 
 
static inline hashval_t
static inline hashval_t
substring_hash (const char *str, int l)
substring_hash (const char *str, int l)
{
{
  return str[0] + str[l - 1] * 256 + l * 65536;
  return str[0] + str[l - 1] * 256 + l * 65536;
}
}
 
 
/* Used for attribute_hash.  */
/* Used for attribute_hash.  */
 
 
static hashval_t
static hashval_t
hash_attr (const void *p)
hash_attr (const void *p)
{
{
  const struct attribute_spec *const spec = (const struct attribute_spec *) p;
  const struct attribute_spec *const spec = (const struct attribute_spec *) p;
  const int l = strlen (spec->name);
  const int l = strlen (spec->name);
 
 
  return substring_hash (spec->name, l);
  return substring_hash (spec->name, l);
}
}
 
 
/* Used for attribute_hash.  */
/* Used for attribute_hash.  */
 
 
static int
static int
eq_attr (const void *p, const void *q)
eq_attr (const void *p, const void *q)
{
{
  const struct attribute_spec *const spec = (const struct attribute_spec *) p;
  const struct attribute_spec *const spec = (const struct attribute_spec *) p;
  const struct substring *const str = (const struct substring *) q;
  const struct substring *const str = (const struct substring *) q;
 
 
  return (!strncmp (spec->name, str->str, str->length) && !spec->name[str->length]);
  return (!strncmp (spec->name, str->str, str->length) && !spec->name[str->length]);
}
}
 
 
/* Initialize attribute tables, and make some sanity checks
/* Initialize attribute tables, and make some sanity checks
   if --enable-checking.  */
   if --enable-checking.  */
 
 
static void
static void
init_attributes (void)
init_attributes (void)
{
{
  size_t i;
  size_t i;
  int k;
  int k;
 
 
  attribute_tables[0] = lang_hooks.common_attribute_table;
  attribute_tables[0] = lang_hooks.common_attribute_table;
  attribute_tables[1] = lang_hooks.attribute_table;
  attribute_tables[1] = lang_hooks.attribute_table;
  attribute_tables[2] = lang_hooks.format_attribute_table;
  attribute_tables[2] = lang_hooks.format_attribute_table;
  attribute_tables[3] = targetm.attribute_table;
  attribute_tables[3] = targetm.attribute_table;
 
 
  /* Translate NULL pointers to pointers to the empty table.  */
  /* Translate NULL pointers to pointers to the empty table.  */
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
    if (attribute_tables[i] == NULL)
    if (attribute_tables[i] == NULL)
      attribute_tables[i] = empty_attribute_table;
      attribute_tables[i] = empty_attribute_table;
 
 
#ifdef ENABLE_CHECKING
#ifdef ENABLE_CHECKING
  /* Make some sanity checks on the attribute tables.  */
  /* Make some sanity checks on the attribute tables.  */
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
    {
    {
      int j;
      int j;
 
 
      for (j = 0; attribute_tables[i][j].name != NULL; j++)
      for (j = 0; attribute_tables[i][j].name != NULL; j++)
        {
        {
          /* The name must not begin and end with __.  */
          /* The name must not begin and end with __.  */
          const char *name = attribute_tables[i][j].name;
          const char *name = attribute_tables[i][j].name;
          int len = strlen (name);
          int len = strlen (name);
 
 
          gcc_assert (!(name[0] == '_' && name[1] == '_'
          gcc_assert (!(name[0] == '_' && name[1] == '_'
                        && name[len - 1] == '_' && name[len - 2] == '_'));
                        && name[len - 1] == '_' && name[len - 2] == '_'));
 
 
          /* The minimum and maximum lengths must be consistent.  */
          /* The minimum and maximum lengths must be consistent.  */
          gcc_assert (attribute_tables[i][j].min_length >= 0);
          gcc_assert (attribute_tables[i][j].min_length >= 0);
 
 
          gcc_assert (attribute_tables[i][j].max_length == -1
          gcc_assert (attribute_tables[i][j].max_length == -1
                      || (attribute_tables[i][j].max_length
                      || (attribute_tables[i][j].max_length
                          >= attribute_tables[i][j].min_length));
                          >= attribute_tables[i][j].min_length));
 
 
          /* An attribute cannot require both a DECL and a TYPE.  */
          /* An attribute cannot require both a DECL and a TYPE.  */
          gcc_assert (!attribute_tables[i][j].decl_required
          gcc_assert (!attribute_tables[i][j].decl_required
                      || !attribute_tables[i][j].type_required);
                      || !attribute_tables[i][j].type_required);
 
 
          /* If an attribute requires a function type, in particular
          /* If an attribute requires a function type, in particular
             it requires a type.  */
             it requires a type.  */
          gcc_assert (!attribute_tables[i][j].function_type_required
          gcc_assert (!attribute_tables[i][j].function_type_required
                      || attribute_tables[i][j].type_required);
                      || attribute_tables[i][j].type_required);
        }
        }
    }
    }
 
 
  /* Check that each name occurs just once in each table.  */
  /* Check that each name occurs just once in each table.  */
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
    {
    {
      int j, k;
      int j, k;
      for (j = 0; attribute_tables[i][j].name != NULL; j++)
      for (j = 0; attribute_tables[i][j].name != NULL; j++)
        for (k = j + 1; attribute_tables[i][k].name != NULL; k++)
        for (k = j + 1; attribute_tables[i][k].name != NULL; k++)
          gcc_assert (strcmp (attribute_tables[i][j].name,
          gcc_assert (strcmp (attribute_tables[i][j].name,
                              attribute_tables[i][k].name));
                              attribute_tables[i][k].name));
    }
    }
  /* Check that no name occurs in more than one table.  */
  /* Check that no name occurs in more than one table.  */
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
    {
    {
      size_t j, k, l;
      size_t j, k, l;
 
 
      for (j = i + 1; j < ARRAY_SIZE (attribute_tables); j++)
      for (j = i + 1; j < ARRAY_SIZE (attribute_tables); j++)
        for (k = 0; attribute_tables[i][k].name != NULL; k++)
        for (k = 0; attribute_tables[i][k].name != NULL; k++)
          for (l = 0; attribute_tables[j][l].name != NULL; l++)
          for (l = 0; attribute_tables[j][l].name != NULL; l++)
            gcc_assert (strcmp (attribute_tables[i][k].name,
            gcc_assert (strcmp (attribute_tables[i][k].name,
                                attribute_tables[j][l].name));
                                attribute_tables[j][l].name));
    }
    }
#endif
#endif
 
 
  attribute_hash = htab_create (200, hash_attr, eq_attr, NULL);
  attribute_hash = htab_create (200, hash_attr, eq_attr, NULL);
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
  for (i = 0; i < ARRAY_SIZE (attribute_tables); i++)
    for (k = 0; attribute_tables[i][k].name != NULL; k++)
    for (k = 0; attribute_tables[i][k].name != NULL; k++)
      {
      {
        register_attribute (&attribute_tables[i][k]);
        register_attribute (&attribute_tables[i][k]);
      }
      }
  invoke_plugin_callbacks (PLUGIN_ATTRIBUTES, NULL);
  invoke_plugin_callbacks (PLUGIN_ATTRIBUTES, NULL);
  attributes_initialized = true;
  attributes_initialized = true;
}
}
 
 
/* Insert a single ATTR into the attribute table.  */
/* Insert a single ATTR into the attribute table.  */
 
 
void
void
register_attribute (const struct attribute_spec *attr)
register_attribute (const struct attribute_spec *attr)
{
{
  struct substring str;
  struct substring str;
  void **slot;
  void **slot;
 
 
  str.str = attr->name;
  str.str = attr->name;
  str.length = strlen (str.str);
  str.length = strlen (str.str);
  slot = htab_find_slot_with_hash (attribute_hash, &str,
  slot = htab_find_slot_with_hash (attribute_hash, &str,
                                   substring_hash (str.str, str.length),
                                   substring_hash (str.str, str.length),
                                   INSERT);
                                   INSERT);
  gcc_assert (!*slot);
  gcc_assert (!*slot);
  *slot = (void *) CONST_CAST (struct attribute_spec *, attr);
  *slot = (void *) CONST_CAST (struct attribute_spec *, attr);
}
}
 
 
/* Return the spec for the attribute named NAME.  */
/* Return the spec for the attribute named NAME.  */
 
 
const struct attribute_spec *
const struct attribute_spec *
lookup_attribute_spec (tree name)
lookup_attribute_spec (tree name)
{
{
  struct substring attr;
  struct substring attr;
 
 
  attr.str = IDENTIFIER_POINTER (name);
  attr.str = IDENTIFIER_POINTER (name);
  attr.length = IDENTIFIER_LENGTH (name);
  attr.length = IDENTIFIER_LENGTH (name);
  extract_attribute_substring (&attr);
  extract_attribute_substring (&attr);
  return (const struct attribute_spec *)
  return (const struct attribute_spec *)
    htab_find_with_hash (attribute_hash, &attr,
    htab_find_with_hash (attribute_hash, &attr,
                         substring_hash (attr.str, attr.length));
                         substring_hash (attr.str, attr.length));
}
}


/* Process the attributes listed in ATTRIBUTES and install them in *NODE,
/* Process the attributes listed in ATTRIBUTES and install them in *NODE,
   which is either a DECL (including a TYPE_DECL) or a TYPE.  If a DECL,
   which is either a DECL (including a TYPE_DECL) or a TYPE.  If a DECL,
   it should be modified in place; if a TYPE, a copy should be created
   it should be modified in place; if a TYPE, a copy should be created
   unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS.  FLAGS gives further
   unless ATTR_FLAG_TYPE_IN_PLACE is set in FLAGS.  FLAGS gives further
   information, in the form of a bitwise OR of flags in enum attribute_flags
   information, in the form of a bitwise OR of flags in enum attribute_flags
   from tree.h.  Depending on these flags, some attributes may be
   from tree.h.  Depending on these flags, some attributes may be
   returned to be applied at a later stage (for example, to apply
   returned to be applied at a later stage (for example, to apply
   a decl attribute to the declaration rather than to its type).  */
   a decl attribute to the declaration rather than to its type).  */
 
 
tree
tree
decl_attributes (tree *node, tree attributes, int flags)
decl_attributes (tree *node, tree attributes, int flags)
{
{
  tree a;
  tree a;
  tree returned_attrs = NULL_TREE;
  tree returned_attrs = NULL_TREE;
 
 
  if (TREE_TYPE (*node) == error_mark_node)
  if (TREE_TYPE (*node) == error_mark_node)
    return NULL_TREE;
    return NULL_TREE;
 
 
  if (!attributes_initialized)
  if (!attributes_initialized)
    init_attributes ();
    init_attributes ();
 
 
  /* If this is a function and the user used #pragma GCC optimize, add the
  /* If this is a function and the user used #pragma GCC optimize, add the
     options to the attribute((optimize(...))) list.  */
     options to the attribute((optimize(...))) list.  */
  if (TREE_CODE (*node) == FUNCTION_DECL && current_optimize_pragma)
  if (TREE_CODE (*node) == FUNCTION_DECL && current_optimize_pragma)
    {
    {
      tree cur_attr = lookup_attribute ("optimize", attributes);
      tree cur_attr = lookup_attribute ("optimize", attributes);
      tree opts = copy_list (current_optimize_pragma);
      tree opts = copy_list (current_optimize_pragma);
 
 
      if (! cur_attr)
      if (! cur_attr)
        attributes
        attributes
          = tree_cons (get_identifier ("optimize"), opts, attributes);
          = tree_cons (get_identifier ("optimize"), opts, attributes);
      else
      else
        TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
        TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
    }
    }
 
 
  if (TREE_CODE (*node) == FUNCTION_DECL
  if (TREE_CODE (*node) == FUNCTION_DECL
      && optimization_current_node != optimization_default_node
      && optimization_current_node != optimization_default_node
      && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node))
      && !DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node))
    DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node) = optimization_current_node;
    DECL_FUNCTION_SPECIFIC_OPTIMIZATION (*node) = optimization_current_node;
 
 
  /* If this is a function and the user used #pragma GCC target, add the
  /* If this is a function and the user used #pragma GCC target, add the
     options to the attribute((target(...))) list.  */
     options to the attribute((target(...))) list.  */
  if (TREE_CODE (*node) == FUNCTION_DECL
  if (TREE_CODE (*node) == FUNCTION_DECL
      && current_target_pragma
      && current_target_pragma
      && targetm.target_option.valid_attribute_p (*node, NULL_TREE,
      && targetm.target_option.valid_attribute_p (*node, NULL_TREE,
                                                  current_target_pragma, 0))
                                                  current_target_pragma, 0))
    {
    {
      tree cur_attr = lookup_attribute ("target", attributes);
      tree cur_attr = lookup_attribute ("target", attributes);
      tree opts = copy_list (current_target_pragma);
      tree opts = copy_list (current_target_pragma);
 
 
      if (! cur_attr)
      if (! cur_attr)
        attributes = tree_cons (get_identifier ("target"), opts, attributes);
        attributes = tree_cons (get_identifier ("target"), opts, attributes);
      else
      else
        TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
        TREE_VALUE (cur_attr) = chainon (opts, TREE_VALUE (cur_attr));
    }
    }
 
 
  targetm.insert_attributes (*node, &attributes);
  targetm.insert_attributes (*node, &attributes);
 
 
  for (a = attributes; a; a = TREE_CHAIN (a))
  for (a = attributes; a; a = TREE_CHAIN (a))
    {
    {
      tree name = TREE_PURPOSE (a);
      tree name = TREE_PURPOSE (a);
      tree args = TREE_VALUE (a);
      tree args = TREE_VALUE (a);
      tree *anode = node;
      tree *anode = node;
      const struct attribute_spec *spec = lookup_attribute_spec (name);
      const struct attribute_spec *spec = lookup_attribute_spec (name);
      bool no_add_attrs = 0;
      bool no_add_attrs = 0;
      int fn_ptr_quals = 0;
      int fn_ptr_quals = 0;
      tree fn_ptr_tmp = NULL_TREE;
      tree fn_ptr_tmp = NULL_TREE;
 
 
      if (spec == NULL)
      if (spec == NULL)
        {
        {
          warning (OPT_Wattributes, "%qE attribute directive ignored",
          warning (OPT_Wattributes, "%qE attribute directive ignored",
                   name);
                   name);
          continue;
          continue;
        }
        }
      else if (list_length (args) < spec->min_length
      else if (list_length (args) < spec->min_length
               || (spec->max_length >= 0
               || (spec->max_length >= 0
                   && list_length (args) > spec->max_length))
                   && list_length (args) > spec->max_length))
        {
        {
          error ("wrong number of arguments specified for %qE attribute",
          error ("wrong number of arguments specified for %qE attribute",
                 name);
                 name);
          continue;
          continue;
        }
        }
      gcc_assert (is_attribute_p (spec->name, name));
      gcc_assert (is_attribute_p (spec->name, name));
 
 
      if (spec->decl_required && !DECL_P (*anode))
      if (spec->decl_required && !DECL_P (*anode))
        {
        {
          if (flags & ((int) ATTR_FLAG_DECL_NEXT
          if (flags & ((int) ATTR_FLAG_DECL_NEXT
                       | (int) ATTR_FLAG_FUNCTION_NEXT
                       | (int) ATTR_FLAG_FUNCTION_NEXT
                       | (int) ATTR_FLAG_ARRAY_NEXT))
                       | (int) ATTR_FLAG_ARRAY_NEXT))
            {
            {
              /* Pass on this attribute to be tried again.  */
              /* Pass on this attribute to be tried again.  */
              returned_attrs = tree_cons (name, args, returned_attrs);
              returned_attrs = tree_cons (name, args, returned_attrs);
              continue;
              continue;
            }
            }
          else
          else
            {
            {
              warning (OPT_Wattributes, "%qE attribute does not apply to types",
              warning (OPT_Wattributes, "%qE attribute does not apply to types",
                       name);
                       name);
              continue;
              continue;
            }
            }
        }
        }
 
 
      /* If we require a type, but were passed a decl, set up to make a
      /* If we require a type, but were passed a decl, set up to make a
         new type and update the one in the decl.  ATTR_FLAG_TYPE_IN_PLACE
         new type and update the one in the decl.  ATTR_FLAG_TYPE_IN_PLACE
         would have applied if we'd been passed a type, but we cannot modify
         would have applied if we'd been passed a type, but we cannot modify
         the decl's type in place here.  */
         the decl's type in place here.  */
      if (spec->type_required && DECL_P (*anode))
      if (spec->type_required && DECL_P (*anode))
        {
        {
          anode = &TREE_TYPE (*anode);
          anode = &TREE_TYPE (*anode);
          /* Allow ATTR_FLAG_TYPE_IN_PLACE for the type's naming decl.  */
          /* Allow ATTR_FLAG_TYPE_IN_PLACE for the type's naming decl.  */
          if (!(TREE_CODE (*anode) == TYPE_DECL
          if (!(TREE_CODE (*anode) == TYPE_DECL
                && *anode == TYPE_NAME (TYPE_MAIN_VARIANT
                && *anode == TYPE_NAME (TYPE_MAIN_VARIANT
                                        (TREE_TYPE (*anode)))))
                                        (TREE_TYPE (*anode)))))
            flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
            flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
        }
        }
 
 
      if (spec->function_type_required && TREE_CODE (*anode) != FUNCTION_TYPE
      if (spec->function_type_required && TREE_CODE (*anode) != FUNCTION_TYPE
          && TREE_CODE (*anode) != METHOD_TYPE)
          && TREE_CODE (*anode) != METHOD_TYPE)
        {
        {
          if (TREE_CODE (*anode) == POINTER_TYPE
          if (TREE_CODE (*anode) == POINTER_TYPE
              && (TREE_CODE (TREE_TYPE (*anode)) == FUNCTION_TYPE
              && (TREE_CODE (TREE_TYPE (*anode)) == FUNCTION_TYPE
                  || TREE_CODE (TREE_TYPE (*anode)) == METHOD_TYPE))
                  || TREE_CODE (TREE_TYPE (*anode)) == METHOD_TYPE))
            {
            {
              /* OK, this is a bit convoluted.  We can't just make a copy
              /* OK, this is a bit convoluted.  We can't just make a copy
                 of the pointer type and modify its TREE_TYPE, because if
                 of the pointer type and modify its TREE_TYPE, because if
                 we change the attributes of the target type the pointer
                 we change the attributes of the target type the pointer
                 type needs to have a different TYPE_MAIN_VARIANT.  So we
                 type needs to have a different TYPE_MAIN_VARIANT.  So we
                 pull out the target type now, frob it as appropriate, and
                 pull out the target type now, frob it as appropriate, and
                 rebuild the pointer type later.
                 rebuild the pointer type later.
 
 
                 This would all be simpler if attributes were part of the
                 This would all be simpler if attributes were part of the
                 declarator, grumble grumble.  */
                 declarator, grumble grumble.  */
              fn_ptr_tmp = TREE_TYPE (*anode);
              fn_ptr_tmp = TREE_TYPE (*anode);
              fn_ptr_quals = TYPE_QUALS (*anode);
              fn_ptr_quals = TYPE_QUALS (*anode);
              anode = &fn_ptr_tmp;
              anode = &fn_ptr_tmp;
              flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
              flags &= ~(int) ATTR_FLAG_TYPE_IN_PLACE;
            }
            }
          else if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
          else if (flags & (int) ATTR_FLAG_FUNCTION_NEXT)
            {
            {
              /* Pass on this attribute to be tried again.  */
              /* Pass on this attribute to be tried again.  */
              returned_attrs = tree_cons (name, args, returned_attrs);
              returned_attrs = tree_cons (name, args, returned_attrs);
              continue;
              continue;
            }
            }
 
 
          if (TREE_CODE (*anode) != FUNCTION_TYPE
          if (TREE_CODE (*anode) != FUNCTION_TYPE
              && TREE_CODE (*anode) != METHOD_TYPE)
              && TREE_CODE (*anode) != METHOD_TYPE)
            {
            {
              warning (OPT_Wattributes,
              warning (OPT_Wattributes,
                       "%qE attribute only applies to function types",
                       "%qE attribute only applies to function types",
                       name);
                       name);
              continue;
              continue;
            }
            }
        }
        }
 
 
      if (TYPE_P (*anode)
      if (TYPE_P (*anode)
          && (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
          && (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
          && TYPE_SIZE (*anode) != NULL_TREE)
          && TYPE_SIZE (*anode) != NULL_TREE)
        {
        {
          warning (OPT_Wattributes, "type attributes ignored after type is already defined");
          warning (OPT_Wattributes, "type attributes ignored after type is already defined");
          continue;
          continue;
        }
        }
 
 
      if (spec->handler != NULL)
      if (spec->handler != NULL)
        returned_attrs = chainon ((*spec->handler) (anode, name, args,
        returned_attrs = chainon ((*spec->handler) (anode, name, args,
                                                    flags, &no_add_attrs),
                                                    flags, &no_add_attrs),
                                  returned_attrs);
                                  returned_attrs);
 
 
      /* Layout the decl in case anything changed.  */
      /* Layout the decl in case anything changed.  */
      if (spec->type_required && DECL_P (*node)
      if (spec->type_required && DECL_P (*node)
          && (TREE_CODE (*node) == VAR_DECL
          && (TREE_CODE (*node) == VAR_DECL
              || TREE_CODE (*node) == PARM_DECL
              || TREE_CODE (*node) == PARM_DECL
              || TREE_CODE (*node) == RESULT_DECL))
              || TREE_CODE (*node) == RESULT_DECL))
        relayout_decl (*node);
        relayout_decl (*node);
 
 
      if (!no_add_attrs)
      if (!no_add_attrs)
        {
        {
          tree old_attrs;
          tree old_attrs;
          tree a;
          tree a;
 
 
          if (DECL_P (*anode))
          if (DECL_P (*anode))
            old_attrs = DECL_ATTRIBUTES (*anode);
            old_attrs = DECL_ATTRIBUTES (*anode);
          else
          else
            old_attrs = TYPE_ATTRIBUTES (*anode);
            old_attrs = TYPE_ATTRIBUTES (*anode);
 
 
          for (a = lookup_attribute (spec->name, old_attrs);
          for (a = lookup_attribute (spec->name, old_attrs);
               a != NULL_TREE;
               a != NULL_TREE;
               a = lookup_attribute (spec->name, TREE_CHAIN (a)))
               a = lookup_attribute (spec->name, TREE_CHAIN (a)))
            {
            {
              if (simple_cst_equal (TREE_VALUE (a), args) == 1)
              if (simple_cst_equal (TREE_VALUE (a), args) == 1)
                break;
                break;
            }
            }
 
 
          if (a == NULL_TREE)
          if (a == NULL_TREE)
            {
            {
              /* This attribute isn't already in the list.  */
              /* This attribute isn't already in the list.  */
              if (DECL_P (*anode))
              if (DECL_P (*anode))
                DECL_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
                DECL_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
              else if (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
              else if (flags & (int) ATTR_FLAG_TYPE_IN_PLACE)
                {
                {
                  TYPE_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
                  TYPE_ATTRIBUTES (*anode) = tree_cons (name, args, old_attrs);
                  /* If this is the main variant, also push the attributes
                  /* If this is the main variant, also push the attributes
                     out to the other variants.  */
                     out to the other variants.  */
                  if (*anode == TYPE_MAIN_VARIANT (*anode))
                  if (*anode == TYPE_MAIN_VARIANT (*anode))
                    {
                    {
                      tree variant;
                      tree variant;
                      for (variant = *anode; variant;
                      for (variant = *anode; variant;
                           variant = TYPE_NEXT_VARIANT (variant))
                           variant = TYPE_NEXT_VARIANT (variant))
                        {
                        {
                          if (TYPE_ATTRIBUTES (variant) == old_attrs)
                          if (TYPE_ATTRIBUTES (variant) == old_attrs)
                            TYPE_ATTRIBUTES (variant)
                            TYPE_ATTRIBUTES (variant)
                              = TYPE_ATTRIBUTES (*anode);
                              = TYPE_ATTRIBUTES (*anode);
                          else if (!lookup_attribute
                          else if (!lookup_attribute
                                   (spec->name, TYPE_ATTRIBUTES (variant)))
                                   (spec->name, TYPE_ATTRIBUTES (variant)))
                            TYPE_ATTRIBUTES (variant) = tree_cons
                            TYPE_ATTRIBUTES (variant) = tree_cons
                              (name, args, TYPE_ATTRIBUTES (variant));
                              (name, args, TYPE_ATTRIBUTES (variant));
                        }
                        }
                    }
                    }
                }
                }
              else
              else
                *anode = build_type_attribute_variant (*anode,
                *anode = build_type_attribute_variant (*anode,
                                                       tree_cons (name, args,
                                                       tree_cons (name, args,
                                                                  old_attrs));
                                                                  old_attrs));
            }
            }
        }
        }
 
 
      if (fn_ptr_tmp)
      if (fn_ptr_tmp)
        {
        {
          /* Rebuild the function pointer type and put it in the
          /* Rebuild the function pointer type and put it in the
             appropriate place.  */
             appropriate place.  */
          fn_ptr_tmp = build_pointer_type (fn_ptr_tmp);
          fn_ptr_tmp = build_pointer_type (fn_ptr_tmp);
          if (fn_ptr_quals)
          if (fn_ptr_quals)
            fn_ptr_tmp = build_qualified_type (fn_ptr_tmp, fn_ptr_quals);
            fn_ptr_tmp = build_qualified_type (fn_ptr_tmp, fn_ptr_quals);
          if (DECL_P (*node))
          if (DECL_P (*node))
            TREE_TYPE (*node) = fn_ptr_tmp;
            TREE_TYPE (*node) = fn_ptr_tmp;
          else
          else
            {
            {
              gcc_assert (TREE_CODE (*node) == POINTER_TYPE);
              gcc_assert (TREE_CODE (*node) == POINTER_TYPE);
              *node = fn_ptr_tmp;
              *node = fn_ptr_tmp;
            }
            }
        }
        }
    }
    }
 
 
  return returned_attrs;
  return returned_attrs;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.