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

Subversion Repositories openrisc

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

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

Rev 816 Rev 826
/* Functions related to the Boehm garbage collector.
/* Functions related to the Boehm garbage collector.
   Copyright (C) 2000, 2003, 2004, 2006, 2009 Free Software Foundation, Inc.
   Copyright (C) 2000, 2003, 2004, 2006, 2009 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
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
the Free Software Foundation; either version 3, or (at your option)
any later version.
any later version.
 
 
GCC is distributed in the hope that it will be useful,
GCC is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
GNU General Public License 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/>.
 
 
Java and all Java-based marks are trademarks or registered trademarks
Java and all Java-based marks are trademarks or registered trademarks
of Sun Microsystems, Inc. in the United States and other countries.
of Sun Microsystems, Inc. in the United States and other countries.
The Free Software Foundation is independent of Sun Microsystems, Inc.  */
The Free Software Foundation is independent of Sun Microsystems, Inc.  */
 
 
/* Written by Tom Tromey <tromey@cygnus.com>.  */
/* Written by Tom Tromey <tromey@cygnus.com>.  */
 
 
#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 "java-tree.h"
#include "java-tree.h"
#include "parse.h"
#include "parse.h"
#include "toplev.h"
#include "toplev.h"
 
 
static void mark_reference_fields (tree, unsigned HOST_WIDE_INT *,
static void mark_reference_fields (tree, unsigned HOST_WIDE_INT *,
                                   unsigned HOST_WIDE_INT *, unsigned int,
                                   unsigned HOST_WIDE_INT *, unsigned int,
                                   int *, int *, int *, HOST_WIDE_INT *);
                                   int *, int *, int *, HOST_WIDE_INT *);
static void set_bit (unsigned HOST_WIDE_INT *, unsigned HOST_WIDE_INT *,
static void set_bit (unsigned HOST_WIDE_INT *, unsigned HOST_WIDE_INT *,
                     unsigned int);
                     unsigned int);
 
 
/* A procedure-based object descriptor.  We know that our
/* A procedure-based object descriptor.  We know that our
   `kind' is 0, and `env' is likewise 0, so we have a simple
   `kind' is 0, and `env' is likewise 0, so we have a simple
   computation.  From the GC sources:
   computation.  From the GC sources:
   (((((env) << LOG_MAX_MARK_PROCS) | (proc_index)) << DS_TAG_BITS)     \
   (((((env) << LOG_MAX_MARK_PROCS) | (proc_index)) << DS_TAG_BITS)     \
   | DS_PROC)
   | DS_PROC)
   Here DS_PROC == 2.  */
   Here DS_PROC == 2.  */
#define PROCEDURE_OBJECT_DESCRIPTOR 2
#define PROCEDURE_OBJECT_DESCRIPTOR 2
 
 
/* Treat two HOST_WIDE_INT's as a contiguous bitmap, with bit 0 being
/* Treat two HOST_WIDE_INT's as a contiguous bitmap, with bit 0 being
   the least significant.  This function sets bit N in the bitmap.  */
   the least significant.  This function sets bit N in the bitmap.  */
static void
static void
set_bit (unsigned HOST_WIDE_INT *low, unsigned HOST_WIDE_INT *high,
set_bit (unsigned HOST_WIDE_INT *low, unsigned HOST_WIDE_INT *high,
         unsigned int n)
         unsigned int n)
{
{
  unsigned HOST_WIDE_INT *which;
  unsigned HOST_WIDE_INT *which;
 
 
  if (n >= HOST_BITS_PER_WIDE_INT)
  if (n >= HOST_BITS_PER_WIDE_INT)
    {
    {
      n -= HOST_BITS_PER_WIDE_INT;
      n -= HOST_BITS_PER_WIDE_INT;
      which = high;
      which = high;
    }
    }
  else
  else
    which = low;
    which = low;
 
 
  *which |= (unsigned HOST_WIDE_INT) 1 << n;
  *which |= (unsigned HOST_WIDE_INT) 1 << n;
}
}
 
 
/* Recursively mark reference fields.  */
/* Recursively mark reference fields.  */
static void
static void
mark_reference_fields (tree field,
mark_reference_fields (tree field,
                       unsigned HOST_WIDE_INT *low,
                       unsigned HOST_WIDE_INT *low,
                       unsigned HOST_WIDE_INT *high,
                       unsigned HOST_WIDE_INT *high,
                       unsigned int ubit,
                       unsigned int ubit,
                       int *pointer_after_end,
                       int *pointer_after_end,
                       int *all_bits_set,
                       int *all_bits_set,
                       int *last_set_index,
                       int *last_set_index,
                       HOST_WIDE_INT *last_view_index)
                       HOST_WIDE_INT *last_view_index)
{
{
  /* See if we have fields from our superclass.  */
  /* See if we have fields from our superclass.  */
  if (DECL_NAME (field) == NULL_TREE)
  if (DECL_NAME (field) == NULL_TREE)
    {
    {
      mark_reference_fields (TYPE_FIELDS (TREE_TYPE (field)),
      mark_reference_fields (TYPE_FIELDS (TREE_TYPE (field)),
                             low, high, ubit,
                             low, high, ubit,
                             pointer_after_end, all_bits_set,
                             pointer_after_end, all_bits_set,
                             last_set_index, last_view_index);
                             last_set_index, last_view_index);
      field = TREE_CHAIN (field);
      field = TREE_CHAIN (field);
    }
    }
 
 
  for (; field != NULL_TREE; field = TREE_CHAIN (field))
  for (; field != NULL_TREE; field = TREE_CHAIN (field))
    {
    {
      HOST_WIDE_INT offset;
      HOST_WIDE_INT offset;
      HOST_WIDE_INT size_bytes;
      HOST_WIDE_INT size_bytes;
 
 
      if (FIELD_STATIC (field))
      if (FIELD_STATIC (field))
        continue;
        continue;
 
 
      offset = int_byte_position (field);
      offset = int_byte_position (field);
      size_bytes = int_size_in_bytes (TREE_TYPE (field));
      size_bytes = int_size_in_bytes (TREE_TYPE (field));
 
 
      if (JREFERENCE_TYPE_P (TREE_TYPE (field))
      if (JREFERENCE_TYPE_P (TREE_TYPE (field))
          /* An `object' of type gnu.gcj.RawData is actually non-Java
          /* An `object' of type gnu.gcj.RawData is actually non-Java
             data.  */
             data.  */
          && TREE_TYPE (field) != rawdata_ptr_type_node)
          && TREE_TYPE (field) != rawdata_ptr_type_node)
        {
        {
          unsigned int count;
          unsigned int count;
          unsigned int size_words;
          unsigned int size_words;
          unsigned int i;
          unsigned int i;
 
 
          /* If this reference slot appears to overlay a slot we think
          /* If this reference slot appears to overlay a slot we think
             we already covered, then we are doomed.  */
             we already covered, then we are doomed.  */
          gcc_assert (offset > *last_view_index);
          gcc_assert (offset > *last_view_index);
 
 
          if (offset % (HOST_WIDE_INT) (POINTER_SIZE / BITS_PER_UNIT))
          if (offset % (HOST_WIDE_INT) (POINTER_SIZE / BITS_PER_UNIT))
            {
            {
              *all_bits_set = -1;
              *all_bits_set = -1;
              *pointer_after_end = 1;
              *pointer_after_end = 1;
              break;
              break;
            }
            }
 
 
          count = offset * BITS_PER_UNIT / POINTER_SIZE;
          count = offset * BITS_PER_UNIT / POINTER_SIZE;
          size_words = size_bytes * BITS_PER_UNIT / POINTER_SIZE;
          size_words = size_bytes * BITS_PER_UNIT / POINTER_SIZE;
 
 
          *last_set_index = count;
          *last_set_index = count;
 
 
          /* First word in object corresponds to most significant byte of
          /* First word in object corresponds to most significant byte of
             bitmap.
             bitmap.
 
 
             In the case of a multiple-word record, we set pointer
             In the case of a multiple-word record, we set pointer
             bits for all words in the record. This is conservative, but the
             bits for all words in the record. This is conservative, but the
             size_words != 1 case is impossible in regular java code. */
             size_words != 1 case is impossible in regular java code. */
          for (i = 0; i < size_words; ++i)
          for (i = 0; i < size_words; ++i)
            set_bit (low, high, ubit - count - i - 1);
            set_bit (low, high, ubit - count - i - 1);
 
 
          if (count >= ubit - 2)
          if (count >= ubit - 2)
            *pointer_after_end = 1;
            *pointer_after_end = 1;
 
 
          /* If we saw a non-reference field earlier, then we can't
          /* If we saw a non-reference field earlier, then we can't
             use the count representation.  We keep track of that in
             use the count representation.  We keep track of that in
             *ALL_BITS_SET.  */
             *ALL_BITS_SET.  */
          if (! *all_bits_set)
          if (! *all_bits_set)
            *all_bits_set = -1;
            *all_bits_set = -1;
        }
        }
      else if (*all_bits_set > 0)
      else if (*all_bits_set > 0)
        *all_bits_set = 0;
        *all_bits_set = 0;
 
 
      *last_view_index = offset;
      *last_view_index = offset;
    }
    }
}
}
 
 
/* Return the marking bitmap for the class TYPE.  For now this is a
/* Return the marking bitmap for the class TYPE.  For now this is a
   single word describing the type.  */
   single word describing the type.  */
tree
tree
get_boehm_type_descriptor (tree type)
get_boehm_type_descriptor (tree type)
{
{
  unsigned int count, log2_size, ubit;
  unsigned int count, log2_size, ubit;
  int bit;
  int bit;
  int all_bits_set = 1;
  int all_bits_set = 1;
  int last_set_index = 0;
  int last_set_index = 0;
  HOST_WIDE_INT last_view_index = -1;
  HOST_WIDE_INT last_view_index = -1;
  int pointer_after_end = 0;
  int pointer_after_end = 0;
  unsigned HOST_WIDE_INT low = 0, high = 0;
  unsigned HOST_WIDE_INT low = 0, high = 0;
  tree field, value, value_type;
  tree field, value, value_type;
 
 
  /* If the GC wasn't requested, just use a null pointer.  */
  /* If the GC wasn't requested, just use a null pointer.  */
  if (! flag_use_boehm_gc)
  if (! flag_use_boehm_gc)
    return null_pointer_node;
    return null_pointer_node;
 
 
  value_type = java_type_for_mode (ptr_mode, 1);
  value_type = java_type_for_mode (ptr_mode, 1);
  /* If we have a type of unknown size, use a proc.  */
  /* If we have a type of unknown size, use a proc.  */
  if (int_size_in_bytes (type) == -1)
  if (int_size_in_bytes (type) == -1)
    goto procedure_object_descriptor;
    goto procedure_object_descriptor;
 
 
  bit = POINTER_SIZE / BITS_PER_UNIT;
  bit = POINTER_SIZE / BITS_PER_UNIT;
  /* The size of this node has to be known.  And, we only support 32
  /* The size of this node has to be known.  And, we only support 32
     and 64 bit targets, so we need to know that the log2 is one of
     and 64 bit targets, so we need to know that the log2 is one of
     our values.  */
     our values.  */
  log2_size = exact_log2 (bit);
  log2_size = exact_log2 (bit);
  if (bit == -1 || (log2_size != 2 && log2_size != 3))
  if (bit == -1 || (log2_size != 2 && log2_size != 3))
    {
    {
      /* This means the GC isn't supported.  We should probably
      /* This means the GC isn't supported.  We should probably
         abort or give an error.  Instead, for now, we just silently
         abort or give an error.  Instead, for now, we just silently
         revert.  FIXME.  */
         revert.  FIXME.  */
      return null_pointer_node;
      return null_pointer_node;
    }
    }
  bit *= BITS_PER_UNIT;
  bit *= BITS_PER_UNIT;
 
 
  /* Warning avoidance.  */
  /* Warning avoidance.  */
  ubit = (unsigned int) bit;
  ubit = (unsigned int) bit;
 
 
  if (type == class_type_node)
  if (type == class_type_node)
    goto procedure_object_descriptor;
    goto procedure_object_descriptor;
 
 
  field = TYPE_FIELDS (type);
  field = TYPE_FIELDS (type);
  mark_reference_fields (field, &low, &high, ubit,
  mark_reference_fields (field, &low, &high, ubit,
                         &pointer_after_end, &all_bits_set,
                         &pointer_after_end, &all_bits_set,
                         &last_set_index, &last_view_index);
                         &last_set_index, &last_view_index);
 
 
  /* If the object is all pointers, or if the part with pointers fits
  /* If the object is all pointers, or if the part with pointers fits
     in our bitmap, then we are ok.  Otherwise we have to allocate it
     in our bitmap, then we are ok.  Otherwise we have to allocate it
     a different way.  */
     a different way.  */
  if (all_bits_set != -1 || (pointer_after_end && flag_reduced_reflection))
  if (all_bits_set != -1 || (pointer_after_end && flag_reduced_reflection))
    {
    {
      /* In this case the initial part of the object is all reference
      /* In this case the initial part of the object is all reference
         fields, and the end of the object is all non-reference
         fields, and the end of the object is all non-reference
         fields.  We represent the mark as a count of the fields,
         fields.  We represent the mark as a count of the fields,
         shifted.  In the GC the computation looks something like
         shifted.  In the GC the computation looks something like
         this:
         this:
         value = DS_LENGTH | WORDS_TO_BYTES (last_set_index + 1);
         value = DS_LENGTH | WORDS_TO_BYTES (last_set_index + 1);
         DS_LENGTH is 0.
         DS_LENGTH is 0.
         WORDS_TO_BYTES shifts by log2(bytes-per-pointer).
         WORDS_TO_BYTES shifts by log2(bytes-per-pointer).
 
 
         In the case of flag_reduced_reflection and the bitmap would
         In the case of flag_reduced_reflection and the bitmap would
         overflow, we tell the gc that the object is all pointers so
         overflow, we tell the gc that the object is all pointers so
         that we don't have to emit reflection data for run time
         that we don't have to emit reflection data for run time
         marking. */
         marking. */
      count = 0;
      count = 0;
      low = 0;
      low = 0;
      high = 0;
      high = 0;
      ++last_set_index;
      ++last_set_index;
      while (last_set_index)
      while (last_set_index)
        {
        {
          if ((last_set_index & 1))
          if ((last_set_index & 1))
            set_bit (&low, &high, log2_size + count);
            set_bit (&low, &high, log2_size + count);
          last_set_index >>= 1;
          last_set_index >>= 1;
          ++count;
          ++count;
        }
        }
      value = build_int_cst_wide (value_type, low, high);
      value = build_int_cst_wide (value_type, low, high);
    }
    }
  else if (! pointer_after_end)
  else if (! pointer_after_end)
    {
    {
      /* Bottom two bits for bitmap mark type are 01.  */
      /* Bottom two bits for bitmap mark type are 01.  */
      set_bit (&low, &high, 0);
      set_bit (&low, &high, 0);
      value = build_int_cst_wide (value_type, low, high);
      value = build_int_cst_wide (value_type, low, high);
    }
    }
  else
  else
    {
    {
    procedure_object_descriptor:
    procedure_object_descriptor:
      value = build_int_cst (value_type, PROCEDURE_OBJECT_DESCRIPTOR);
      value = build_int_cst (value_type, PROCEDURE_OBJECT_DESCRIPTOR);
    }
    }
 
 
  return value;
  return value;
}
}
 
 
/* The fourth (index of 3) element in the vtable is the GC descriptor.
/* The fourth (index of 3) element in the vtable is the GC descriptor.
   A value of 2 indicates that the class uses _Jv_MarkObj. */
   A value of 2 indicates that the class uses _Jv_MarkObj. */
bool
bool
uses_jv_markobj_p (tree dtable)
uses_jv_markobj_p (tree dtable)
{
{
  tree v;
  tree v;
  /* FIXME: what do we return if !flag_use_boehm_gc ? */
  /* FIXME: what do we return if !flag_use_boehm_gc ? */
  gcc_assert (flag_use_boehm_gc);
  gcc_assert (flag_use_boehm_gc);
  /* FIXME: this is wrong if TARGET_VTABLE_USES_DESCRIPTORS.  However,
  /* FIXME: this is wrong if TARGET_VTABLE_USES_DESCRIPTORS.  However,
     this function is only used with flag_reduced_reflection.  No
     this function is only used with flag_reduced_reflection.  No
     point in asserting unless we hit the bad case.  */
     point in asserting unless we hit the bad case.  */
  gcc_assert (!flag_reduced_reflection || TARGET_VTABLE_USES_DESCRIPTORS == 0);
  gcc_assert (!flag_reduced_reflection || TARGET_VTABLE_USES_DESCRIPTORS == 0);
  v = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (dtable), 3)->value;
  v = VEC_index (constructor_elt, CONSTRUCTOR_ELTS (dtable), 3)->value;
  return (PROCEDURE_OBJECT_DESCRIPTOR == TREE_INT_CST_LOW (v));
  return (PROCEDURE_OBJECT_DESCRIPTOR == TREE_INT_CST_LOW (v));
}
}
 
 

powered by: WebSVN 2.1.0

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