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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [vec.c] - Diff between revs 154 and 816

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

Rev 154 Rev 816
/* Vector API for GNU compiler.
/* Vector API for GNU compiler.
   Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
   Contributed by Nathan Sidwell <nathan@codesourcery.com>
   Contributed by Nathan Sidwell <nathan@codesourcery.com>
 
 
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/>.  */
 
 
/* This file is compiled twice: once for the generator programs
/* This file is compiled twice: once for the generator programs
   once for the compiler.  */
   once for the compiler.  */
#ifdef GENERATOR_FILE
#ifdef GENERATOR_FILE
#include "bconfig.h"
#include "bconfig.h"
#else
#else
#include "config.h"
#include "config.h"
#endif
#endif
 
 
#include "system.h"
#include "system.h"
#include "ggc.h"
#include "ggc.h"
#include "vec.h"
#include "vec.h"
#include "coretypes.h"
#include "coretypes.h"
#include "tree.h"
#include "tree.h"
#include "toplev.h"
#include "toplev.h"
 
 
struct vec_prefix
struct vec_prefix
{
{
  unsigned num;
  unsigned num;
  unsigned alloc;
  unsigned alloc;
  void *vec[1];
  void *vec[1];
};
};
 
 
/* Calculate the new ALLOC value, making sure that RESERVE slots are
/* Calculate the new ALLOC value, making sure that RESERVE slots are
   free.  If EXACT grow exactly, otherwise grow exponentially.  */
   free.  If EXACT grow exactly, otherwise grow exponentially.  */
 
 
static inline unsigned
static inline unsigned
calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact)
calculate_allocation (const struct vec_prefix *pfx, int reserve, bool exact)
{
{
  unsigned alloc = 0;
  unsigned alloc = 0;
  unsigned num = 0;
  unsigned num = 0;
 
 
  gcc_assert (reserve >= 0);
  gcc_assert (reserve >= 0);
 
 
  if (pfx)
  if (pfx)
    {
    {
      alloc = pfx->alloc;
      alloc = pfx->alloc;
      num = pfx->num;
      num = pfx->num;
    }
    }
  else if (!reserve)
  else if (!reserve)
    /* If there's no prefix, and we've not requested anything, then we
    /* If there's no prefix, and we've not requested anything, then we
       will create a NULL vector.  */
       will create a NULL vector.  */
    return 0;
    return 0;
 
 
  /* We must have run out of room.  */
  /* We must have run out of room.  */
  gcc_assert (alloc - num < (unsigned) reserve);
  gcc_assert (alloc - num < (unsigned) reserve);
 
 
  if (exact)
  if (exact)
    /* Exact size.  */
    /* Exact size.  */
    alloc = num + reserve;
    alloc = num + reserve;
  else
  else
    {
    {
      /* Exponential growth. */
      /* Exponential growth. */
      if (!alloc)
      if (!alloc)
        alloc = 4;
        alloc = 4;
      else if (alloc < 16)
      else if (alloc < 16)
        /* Double when small.  */
        /* Double when small.  */
        alloc = alloc * 2;
        alloc = alloc * 2;
      else
      else
        /* Grow slower when large.  */
        /* Grow slower when large.  */
        alloc = (alloc * 3 / 2);
        alloc = (alloc * 3 / 2);
 
 
      /* If this is still too small, set it to the right size. */
      /* If this is still too small, set it to the right size. */
      if (alloc < num + reserve)
      if (alloc < num + reserve)
        alloc = num + reserve;
        alloc = num + reserve;
    }
    }
  return alloc;
  return alloc;
}
}
 
 
/* Ensure there are at least RESERVE free slots in VEC.  If EXACT grow
/* Ensure there are at least RESERVE free slots in VEC.  If EXACT grow
   exactly, else grow exponentially.  As a special case, if VEC is
   exactly, else grow exponentially.  As a special case, if VEC is
   NULL and RESERVE is 0, no vector will be created.  The vector's
   NULL and RESERVE is 0, no vector will be created.  The vector's
   trailing array is at VEC_OFFSET offset and consists of ELT_SIZE
   trailing array is at VEC_OFFSET offset and consists of ELT_SIZE
   sized elements.  */
   sized elements.  */
 
 
static void *
static void *
vec_gc_o_reserve_1 (void *vec, int reserve, size_t vec_offset, size_t elt_size,
vec_gc_o_reserve_1 (void *vec, int reserve, size_t vec_offset, size_t elt_size,
                    bool exact MEM_STAT_DECL)
                    bool exact MEM_STAT_DECL)
{
{
  struct vec_prefix *pfx = vec;
  struct vec_prefix *pfx = vec;
  unsigned alloc = alloc = calculate_allocation (pfx, reserve, exact);
  unsigned alloc = alloc = calculate_allocation (pfx, reserve, exact);
 
 
  if (!alloc)
  if (!alloc)
    return NULL;
    return NULL;
 
 
  vec = ggc_realloc_stat (vec, vec_offset + alloc * elt_size PASS_MEM_STAT);
  vec = ggc_realloc_stat (vec, vec_offset + alloc * elt_size PASS_MEM_STAT);
  ((struct vec_prefix *)vec)->alloc = alloc;
  ((struct vec_prefix *)vec)->alloc = alloc;
  if (!pfx)
  if (!pfx)
    ((struct vec_prefix *)vec)->num = 0;
    ((struct vec_prefix *)vec)->num = 0;
 
 
  return vec;
  return vec;
}
}
 
 
/* Ensure there are at least RESERVE free slots in VEC, growing
/* Ensure there are at least RESERVE free slots in VEC, growing
   exponentially.  If RESERVE < 0 grow exactly, else grow
   exponentially.  If RESERVE < 0 grow exactly, else grow
   exponentially.  As a special case, if VEC is NULL, and RESERVE is
   exponentially.  As a special case, if VEC is NULL, and RESERVE is
   0, no vector will be created. */
   0, no vector will be created. */
 
 
void *
void *
vec_gc_p_reserve (void *vec, int reserve MEM_STAT_DECL)
vec_gc_p_reserve (void *vec, int reserve MEM_STAT_DECL)
{
{
  return vec_gc_o_reserve_1 (vec, reserve,
  return vec_gc_o_reserve_1 (vec, reserve,
                             offsetof (struct vec_prefix, vec),
                             offsetof (struct vec_prefix, vec),
                             sizeof (void *), false
                             sizeof (void *), false
                             PASS_MEM_STAT);
                             PASS_MEM_STAT);
}
}
 
 
/* Ensure there are at least RESERVE free slots in VEC, growing
/* Ensure there are at least RESERVE free slots in VEC, growing
   exactly.  If RESERVE < 0 grow exactly, else grow exponentially.  As
   exactly.  If RESERVE < 0 grow exactly, else grow exponentially.  As
   a special case, if VEC is NULL, and RESERVE is 0, no vector will be
   a special case, if VEC is NULL, and RESERVE is 0, no vector will be
   created. */
   created. */
 
 
void *
void *
vec_gc_p_reserve_exact (void *vec, int reserve MEM_STAT_DECL)
vec_gc_p_reserve_exact (void *vec, int reserve MEM_STAT_DECL)
{
{
  return vec_gc_o_reserve_1 (vec, reserve,
  return vec_gc_o_reserve_1 (vec, reserve,
                             offsetof (struct vec_prefix, vec),
                             offsetof (struct vec_prefix, vec),
                             sizeof (void *), true
                             sizeof (void *), true
                             PASS_MEM_STAT);
                             PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_p_reserve, but for object vectors.  The vector's
/* As for vec_gc_p_reserve, but for object vectors.  The vector's
   trailing array is at VEC_OFFSET offset and consists of ELT_SIZE
   trailing array is at VEC_OFFSET offset and consists of ELT_SIZE
   sized elements.  */
   sized elements.  */
 
 
void *
void *
vec_gc_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
vec_gc_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
                  MEM_STAT_DECL)
                  MEM_STAT_DECL)
{
{
  return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, false
  return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, false
                             PASS_MEM_STAT);
                             PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_p_reserve_exact, but for object vectors.  The
/* As for vec_gc_p_reserve_exact, but for object vectors.  The
   vector's trailing array is at VEC_OFFSET offset and consists of
   vector's trailing array is at VEC_OFFSET offset and consists of
   ELT_SIZE sized elements.  */
   ELT_SIZE sized elements.  */
 
 
void *
void *
vec_gc_o_reserve_exact (void *vec, int reserve, size_t vec_offset,
vec_gc_o_reserve_exact (void *vec, int reserve, size_t vec_offset,
                        size_t elt_size MEM_STAT_DECL)
                        size_t elt_size MEM_STAT_DECL)
{
{
  return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, true
  return vec_gc_o_reserve_1 (vec, reserve, vec_offset, elt_size, true
                             PASS_MEM_STAT);
                             PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_o_reserve_1, but for heap allocated vectors.  */
/* As for vec_gc_o_reserve_1, but for heap allocated vectors.  */
 
 
static void *
static void *
vec_heap_o_reserve_1 (void *vec, int reserve, size_t vec_offset,
vec_heap_o_reserve_1 (void *vec, int reserve, size_t vec_offset,
                      size_t elt_size, bool exact MEM_STAT_DECL)
                      size_t elt_size, bool exact MEM_STAT_DECL)
{
{
  struct vec_prefix *pfx = vec;
  struct vec_prefix *pfx = vec;
  unsigned alloc = calculate_allocation (pfx, reserve, exact);
  unsigned alloc = calculate_allocation (pfx, reserve, exact);
 
 
  if (!alloc)
  if (!alloc)
    return NULL;
    return NULL;
 
 
  vec = xrealloc (vec, vec_offset + alloc * elt_size);
  vec = xrealloc (vec, vec_offset + alloc * elt_size);
  ((struct vec_prefix *)vec)->alloc = alloc;
  ((struct vec_prefix *)vec)->alloc = alloc;
  if (!pfx)
  if (!pfx)
    ((struct vec_prefix *)vec)->num = 0;
    ((struct vec_prefix *)vec)->num = 0;
 
 
  return vec;
  return vec;
}
}
 
 
/* As for vec_gc_p_reserve, but for heap allocated vectors.  */
/* As for vec_gc_p_reserve, but for heap allocated vectors.  */
 
 
void *
void *
vec_heap_p_reserve (void *vec, int reserve MEM_STAT_DECL)
vec_heap_p_reserve (void *vec, int reserve MEM_STAT_DECL)
{
{
  return vec_heap_o_reserve_1 (vec, reserve,
  return vec_heap_o_reserve_1 (vec, reserve,
                               offsetof (struct vec_prefix, vec),
                               offsetof (struct vec_prefix, vec),
                               sizeof (void *), false
                               sizeof (void *), false
                               PASS_MEM_STAT);
                               PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_p_reserve_exact, but for heap allocated vectors.  */
/* As for vec_gc_p_reserve_exact, but for heap allocated vectors.  */
 
 
void *
void *
vec_heap_p_reserve_exact (void *vec, int reserve MEM_STAT_DECL)
vec_heap_p_reserve_exact (void *vec, int reserve MEM_STAT_DECL)
{
{
  return vec_heap_o_reserve_1 (vec, reserve,
  return vec_heap_o_reserve_1 (vec, reserve,
                               offsetof (struct vec_prefix, vec),
                               offsetof (struct vec_prefix, vec),
                               sizeof (void *), true
                               sizeof (void *), true
                               PASS_MEM_STAT);
                               PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_o_reserve, but for heap allocated vectors.  */
/* As for vec_gc_o_reserve, but for heap allocated vectors.  */
 
 
void *
void *
vec_heap_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
vec_heap_o_reserve (void *vec, int reserve, size_t vec_offset, size_t elt_size
                    MEM_STAT_DECL)
                    MEM_STAT_DECL)
{
{
  return vec_heap_o_reserve_1 (vec, reserve, vec_offset, elt_size, false
  return vec_heap_o_reserve_1 (vec, reserve, vec_offset, elt_size, false
                               PASS_MEM_STAT);
                               PASS_MEM_STAT);
}
}
 
 
/* As for vec_gc_o_reserve_exact, but for heap allocated vectors.  */
/* As for vec_gc_o_reserve_exact, but for heap allocated vectors.  */
 
 
void *
void *
vec_heap_o_reserve_exact (void *vec, int reserve, size_t vec_offset,
vec_heap_o_reserve_exact (void *vec, int reserve, size_t vec_offset,
                          size_t elt_size MEM_STAT_DECL)
                          size_t elt_size MEM_STAT_DECL)
{
{
  return vec_heap_o_reserve_1 (vec, reserve, vec_offset, elt_size, true
  return vec_heap_o_reserve_1 (vec, reserve, vec_offset, elt_size, true
                               PASS_MEM_STAT);
                               PASS_MEM_STAT);
}
}
 
 
#if ENABLE_CHECKING
#if ENABLE_CHECKING
/* Issue a vector domain error, and then fall over.  */
/* Issue a vector domain error, and then fall over.  */
 
 
void
void
vec_assert_fail (const char *op, const char *struct_name,
vec_assert_fail (const char *op, const char *struct_name,
                 const char *file, unsigned int line, const char *function)
                 const char *file, unsigned int line, const char *function)
{
{
  internal_error ("vector %s %s domain error, in %s at %s:%u",
  internal_error ("vector %s %s domain error, in %s at %s:%u",
                  struct_name, op, function, trim_filename (file), line);
                  struct_name, op, function, trim_filename (file), line);
}
}
#endif
#endif
 
 

powered by: WebSVN 2.1.0

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