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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [binutils-2.18.50/] [binutils/] [debug.h] - Diff between revs 156 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 156 Rev 816
/* debug.h -- Describe generic debugging information.
/* debug.h -- Describe generic debugging information.
   Copyright 1995, 1996, 2002, 2003, 2007 Free Software Foundation, Inc.
   Copyright 1995, 1996, 2002, 2003, 2007 Free Software Foundation, Inc.
   Written by Ian Lance Taylor <ian@cygnus.com>.
   Written by Ian Lance Taylor <ian@cygnus.com>.
 
 
   This file is part of GNU Binutils.
   This file is part of GNU Binutils.
 
 
   This program is free software; you can redistribute it and/or modify
   This program 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 of the License, or
   the Free Software Foundation; either version 3 of the License, or
   (at your option) any later version.
   (at your option) any later version.
 
 
   This program is distributed in the hope that it will be useful,
   This program 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 this program; if not, write to the Free Software
   along with this program; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
   02110-1301, USA.  */
   02110-1301, USA.  */
 
 
#ifndef DEBUG_H
#ifndef DEBUG_H
#define DEBUG_H
#define DEBUG_H
 
 
/* This header file describes a generic debugging information format.
/* This header file describes a generic debugging information format.
   We may eventually have readers which convert different formats into
   We may eventually have readers which convert different formats into
   this generic format, and writers which write it out.  The initial
   this generic format, and writers which write it out.  The initial
   impetus for this was writing a converter from stabs to HP IEEE-695
   impetus for this was writing a converter from stabs to HP IEEE-695
   debugging format.  */
   debugging format.  */
 
 
/* Different kinds of types.  */
/* Different kinds of types.  */
 
 
enum debug_type_kind
enum debug_type_kind
{
{
  /* Not used.  */
  /* Not used.  */
  DEBUG_KIND_ILLEGAL,
  DEBUG_KIND_ILLEGAL,
  /* Indirect via a pointer.  */
  /* Indirect via a pointer.  */
  DEBUG_KIND_INDIRECT,
  DEBUG_KIND_INDIRECT,
  /* Void.  */
  /* Void.  */
  DEBUG_KIND_VOID,
  DEBUG_KIND_VOID,
  /* Integer.  */
  /* Integer.  */
  DEBUG_KIND_INT,
  DEBUG_KIND_INT,
  /* Floating point.  */
  /* Floating point.  */
  DEBUG_KIND_FLOAT,
  DEBUG_KIND_FLOAT,
  /* Complex.  */
  /* Complex.  */
  DEBUG_KIND_COMPLEX,
  DEBUG_KIND_COMPLEX,
  /* Boolean.  */
  /* Boolean.  */
  DEBUG_KIND_BOOL,
  DEBUG_KIND_BOOL,
  /* Struct.  */
  /* Struct.  */
  DEBUG_KIND_STRUCT,
  DEBUG_KIND_STRUCT,
  /* Union.  */
  /* Union.  */
  DEBUG_KIND_UNION,
  DEBUG_KIND_UNION,
  /* Class.  */
  /* Class.  */
  DEBUG_KIND_CLASS,
  DEBUG_KIND_CLASS,
  /* Union class (can this really happen?).  */
  /* Union class (can this really happen?).  */
  DEBUG_KIND_UNION_CLASS,
  DEBUG_KIND_UNION_CLASS,
  /* Enumeration type.  */
  /* Enumeration type.  */
  DEBUG_KIND_ENUM,
  DEBUG_KIND_ENUM,
  /* Pointer.  */
  /* Pointer.  */
  DEBUG_KIND_POINTER,
  DEBUG_KIND_POINTER,
  /* Function.  */
  /* Function.  */
  DEBUG_KIND_FUNCTION,
  DEBUG_KIND_FUNCTION,
  /* Reference.  */
  /* Reference.  */
  DEBUG_KIND_REFERENCE,
  DEBUG_KIND_REFERENCE,
  /* Range.  */
  /* Range.  */
  DEBUG_KIND_RANGE,
  DEBUG_KIND_RANGE,
  /* Array.  */
  /* Array.  */
  DEBUG_KIND_ARRAY,
  DEBUG_KIND_ARRAY,
  /* Set.  */
  /* Set.  */
  DEBUG_KIND_SET,
  DEBUG_KIND_SET,
  /* Based pointer.  */
  /* Based pointer.  */
  DEBUG_KIND_OFFSET,
  DEBUG_KIND_OFFSET,
  /* Method.  */
  /* Method.  */
  DEBUG_KIND_METHOD,
  DEBUG_KIND_METHOD,
  /* Const qualified type.  */
  /* Const qualified type.  */
  DEBUG_KIND_CONST,
  DEBUG_KIND_CONST,
  /* Volatile qualified type.  */
  /* Volatile qualified type.  */
  DEBUG_KIND_VOLATILE,
  DEBUG_KIND_VOLATILE,
  /* Named type.  */
  /* Named type.  */
  DEBUG_KIND_NAMED,
  DEBUG_KIND_NAMED,
  /* Tagged type.  */
  /* Tagged type.  */
  DEBUG_KIND_TAGGED
  DEBUG_KIND_TAGGED
};
};
 
 
/* Different kinds of variables.  */
/* Different kinds of variables.  */
 
 
enum debug_var_kind
enum debug_var_kind
{
{
  /* Not used.  */
  /* Not used.  */
  DEBUG_VAR_ILLEGAL,
  DEBUG_VAR_ILLEGAL,
  /* A global variable.  */
  /* A global variable.  */
  DEBUG_GLOBAL,
  DEBUG_GLOBAL,
  /* A static variable.  */
  /* A static variable.  */
  DEBUG_STATIC,
  DEBUG_STATIC,
  /* A local static variable.  */
  /* A local static variable.  */
  DEBUG_LOCAL_STATIC,
  DEBUG_LOCAL_STATIC,
  /* A local variable.  */
  /* A local variable.  */
  DEBUG_LOCAL,
  DEBUG_LOCAL,
  /* A register variable.  */
  /* A register variable.  */
  DEBUG_REGISTER
  DEBUG_REGISTER
};
};
 
 
/* Different kinds of function parameters.  */
/* Different kinds of function parameters.  */
 
 
enum debug_parm_kind
enum debug_parm_kind
{
{
  /* Not used.  */
  /* Not used.  */
  DEBUG_PARM_ILLEGAL,
  DEBUG_PARM_ILLEGAL,
  /* A stack based parameter.  */
  /* A stack based parameter.  */
  DEBUG_PARM_STACK,
  DEBUG_PARM_STACK,
  /* A register parameter.  */
  /* A register parameter.  */
  DEBUG_PARM_REG,
  DEBUG_PARM_REG,
  /* A stack based reference parameter.  */
  /* A stack based reference parameter.  */
  DEBUG_PARM_REFERENCE,
  DEBUG_PARM_REFERENCE,
  /* A register reference parameter.  */
  /* A register reference parameter.  */
  DEBUG_PARM_REF_REG
  DEBUG_PARM_REF_REG
};
};
 
 
/* Different kinds of visibility.  */
/* Different kinds of visibility.  */
 
 
enum debug_visibility
enum debug_visibility
{
{
  /* A public field (e.g., a field in a C struct).  */
  /* A public field (e.g., a field in a C struct).  */
  DEBUG_VISIBILITY_PUBLIC,
  DEBUG_VISIBILITY_PUBLIC,
  /* A protected field.  */
  /* A protected field.  */
  DEBUG_VISIBILITY_PROTECTED,
  DEBUG_VISIBILITY_PROTECTED,
  /* A private field.  */
  /* A private field.  */
  DEBUG_VISIBILITY_PRIVATE,
  DEBUG_VISIBILITY_PRIVATE,
  /* A field which should be ignored.  */
  /* A field which should be ignored.  */
  DEBUG_VISIBILITY_IGNORE
  DEBUG_VISIBILITY_IGNORE
};
};
 
 
/* A type.  */
/* A type.  */
 
 
typedef struct debug_type *debug_type;
typedef struct debug_type *debug_type;
 
 
#define DEBUG_TYPE_NULL ((debug_type) NULL)
#define DEBUG_TYPE_NULL ((debug_type) NULL)
 
 
/* A field in a struct or union.  */
/* A field in a struct or union.  */
 
 
typedef struct debug_field *debug_field;
typedef struct debug_field *debug_field;
 
 
#define DEBUG_FIELD_NULL ((debug_field) NULL)
#define DEBUG_FIELD_NULL ((debug_field) NULL)
 
 
/* A base class for an object.  */
/* A base class for an object.  */
 
 
typedef struct debug_baseclass *debug_baseclass;
typedef struct debug_baseclass *debug_baseclass;
 
 
#define DEBUG_BASECLASS_NULL ((debug_baseclass) NULL)
#define DEBUG_BASECLASS_NULL ((debug_baseclass) NULL)
 
 
/* A method of an object.  */
/* A method of an object.  */
 
 
typedef struct debug_method *debug_method;
typedef struct debug_method *debug_method;
 
 
#define DEBUG_METHOD_NULL ((debug_method) NULL)
#define DEBUG_METHOD_NULL ((debug_method) NULL)
 
 
/* The arguments to a method function of an object.  These indicate
/* The arguments to a method function of an object.  These indicate
   which method to run.  */
   which method to run.  */
 
 
typedef struct debug_method_variant *debug_method_variant;
typedef struct debug_method_variant *debug_method_variant;
 
 
#define DEBUG_METHOD_VARIANT_NULL ((debug_method_variant) NULL)
#define DEBUG_METHOD_VARIANT_NULL ((debug_method_variant) NULL)
 
 
/* This structure is passed to debug_write.  It holds function
/* This structure is passed to debug_write.  It holds function
   pointers that debug_write will call based on the accumulated
   pointers that debug_write will call based on the accumulated
   debugging information.  */
   debugging information.  */
 
 
struct debug_write_fns
struct debug_write_fns
{
{
  /* This is called at the start of each new compilation unit with the
  /* This is called at the start of each new compilation unit with the
     name of the main file in the new unit.  */
     name of the main file in the new unit.  */
  bfd_boolean (*start_compilation_unit) (void *, const char *);
  bfd_boolean (*start_compilation_unit) (void *, const char *);
 
 
  /* This is called at the start of each source file within a
  /* This is called at the start of each source file within a
     compilation unit, before outputting any global information for
     compilation unit, before outputting any global information for
     that file.  The argument is the name of the file.  */
     that file.  The argument is the name of the file.  */
  bfd_boolean (*start_source) (void *, const char *);
  bfd_boolean (*start_source) (void *, const char *);
 
 
  /* Each writer must keep a stack of types.  */
  /* Each writer must keep a stack of types.  */
 
 
  /* Push an empty type onto the type stack.  This type can appear if
  /* Push an empty type onto the type stack.  This type can appear if
     there is a reference to a type which is never defined.  */
     there is a reference to a type which is never defined.  */
  bfd_boolean (*empty_type) (void *);
  bfd_boolean (*empty_type) (void *);
 
 
  /* Push a void type onto the type stack.  */
  /* Push a void type onto the type stack.  */
  bfd_boolean (*void_type) (void *);
  bfd_boolean (*void_type) (void *);
 
 
  /* Push an integer type onto the type stack, given the size and
  /* Push an integer type onto the type stack, given the size and
     whether it is unsigned.  */
     whether it is unsigned.  */
  bfd_boolean (*int_type) (void *, unsigned int, bfd_boolean);
  bfd_boolean (*int_type) (void *, unsigned int, bfd_boolean);
 
 
  /* Push a floating type onto the type stack, given the size.  */
  /* Push a floating type onto the type stack, given the size.  */
  bfd_boolean (*float_type) (void *, unsigned int);
  bfd_boolean (*float_type) (void *, unsigned int);
 
 
  /* Push a complex type onto the type stack, given the size.  */
  /* Push a complex type onto the type stack, given the size.  */
  bfd_boolean (*complex_type) (void *, unsigned int);
  bfd_boolean (*complex_type) (void *, unsigned int);
 
 
  /* Push a bfd_boolean type onto the type stack, given the size.  */
  /* Push a bfd_boolean type onto the type stack, given the size.  */
  bfd_boolean (*bool_type) (void *, unsigned int);
  bfd_boolean (*bool_type) (void *, unsigned int);
 
 
  /* Push an enum type onto the type stack, given the tag, a NULL
  /* Push an enum type onto the type stack, given the tag, a NULL
     terminated array of names and the associated values.  If there is
     terminated array of names and the associated values.  If there is
     no tag, the tag argument will be NULL.  If this is an undefined
     no tag, the tag argument will be NULL.  If this is an undefined
     enum, the names and values arguments will be NULL.  */
     enum, the names and values arguments will be NULL.  */
  bfd_boolean (*enum_type)
  bfd_boolean (*enum_type)
    (void *, const char *, const char **, bfd_signed_vma *);
    (void *, const char *, const char **, bfd_signed_vma *);
 
 
  /* Pop the top type on the type stack, and push a pointer to that
  /* Pop the top type on the type stack, and push a pointer to that
     type onto the type stack.  */
     type onto the type stack.  */
  bfd_boolean (*pointer_type) (void *);
  bfd_boolean (*pointer_type) (void *);
 
 
  /* Push a function type onto the type stack.  The second argument
  /* Push a function type onto the type stack.  The second argument
     indicates the number of argument types that have been pushed onto
     indicates the number of argument types that have been pushed onto
     the stack.  If the number of argument types is passed as -1, then
     the stack.  If the number of argument types is passed as -1, then
     the argument types of the function are unknown, and no types have
     the argument types of the function are unknown, and no types have
     been pushed onto the stack.  The third argument is TRUE if the
     been pushed onto the stack.  The third argument is TRUE if the
     function takes a variable number of arguments.  The return type
     function takes a variable number of arguments.  The return type
     of the function is pushed onto the type stack below the argument
     of the function is pushed onto the type stack below the argument
     types, if any.  */
     types, if any.  */
  bfd_boolean (*function_type) (void *, int, bfd_boolean);
  bfd_boolean (*function_type) (void *, int, bfd_boolean);
 
 
  /* Pop the top type on the type stack, and push a reference to that
  /* Pop the top type on the type stack, and push a reference to that
     type onto the type stack.  */
     type onto the type stack.  */
  bfd_boolean (*reference_type) (void *);
  bfd_boolean (*reference_type) (void *);
 
 
  /* Pop the top type on the type stack, and push a range of that type
  /* Pop the top type on the type stack, and push a range of that type
     with the given lower and upper bounds onto the type stack.  */
     with the given lower and upper bounds onto the type stack.  */
  bfd_boolean (*range_type) (void *, bfd_signed_vma, bfd_signed_vma);
  bfd_boolean (*range_type) (void *, bfd_signed_vma, bfd_signed_vma);
 
 
  /* Push an array type onto the type stack.  The top type on the type
  /* Push an array type onto the type stack.  The top type on the type
     stack is the range, and the next type on the type stack is the
     stack is the range, and the next type on the type stack is the
     element type.  These should be popped before the array type is
     element type.  These should be popped before the array type is
     pushed.  The arguments are the lower bound, the upper bound, and
     pushed.  The arguments are the lower bound, the upper bound, and
     whether the array is a string.  */
     whether the array is a string.  */
  bfd_boolean (*array_type)
  bfd_boolean (*array_type)
    (void *, bfd_signed_vma, bfd_signed_vma, bfd_boolean);
    (void *, bfd_signed_vma, bfd_signed_vma, bfd_boolean);
 
 
  /* Pop the top type on the type stack, and push a set of that type
  /* Pop the top type on the type stack, and push a set of that type
     onto the type stack.  The argument indicates whether this set is
     onto the type stack.  The argument indicates whether this set is
     a bitstring.  */
     a bitstring.  */
  bfd_boolean (*set_type) (void *, bfd_boolean);
  bfd_boolean (*set_type) (void *, bfd_boolean);
 
 
  /* Push an offset type onto the type stack.  The top type on the
  /* Push an offset type onto the type stack.  The top type on the
     type stack is the target type, and the next type on the type
     type stack is the target type, and the next type on the type
     stack is the base type.  These should be popped before the offset
     stack is the base type.  These should be popped before the offset
     type is pushed.  */
     type is pushed.  */
  bfd_boolean (*offset_type) (void *);
  bfd_boolean (*offset_type) (void *);
 
 
  /* Push a method type onto the type stack.  If the second argument
  /* Push a method type onto the type stack.  If the second argument
     is TRUE, the top type on the stack is the class to which the
     is TRUE, the top type on the stack is the class to which the
     method belongs; otherwise, the class must be determined by the
     method belongs; otherwise, the class must be determined by the
     class to which the method is attached.  The third argument is the
     class to which the method is attached.  The third argument is the
     number of argument types; these are pushed onto the type stack in
     number of argument types; these are pushed onto the type stack in
     reverse order (the first type popped is the last argument to the
     reverse order (the first type popped is the last argument to the
     method).  A value of -1 for the third argument means that no
     method).  A value of -1 for the third argument means that no
     argument information is available.  The fourth argument is TRUE
     argument information is available.  The fourth argument is TRUE
     if the function takes a variable number of arguments.  The next
     if the function takes a variable number of arguments.  The next
     type on the type stack below the domain and the argument types is
     type on the type stack below the domain and the argument types is
     the return type of the method.  All these types must be popped,
     the return type of the method.  All these types must be popped,
     and then the method type must be pushed.  */
     and then the method type must be pushed.  */
  bfd_boolean (*method_type) (void *, bfd_boolean, int, bfd_boolean);
  bfd_boolean (*method_type) (void *, bfd_boolean, int, bfd_boolean);
 
 
  /* Pop the top type off the type stack, and push a const qualified
  /* Pop the top type off the type stack, and push a const qualified
     version of that type onto the type stack.  */
     version of that type onto the type stack.  */
  bfd_boolean (*const_type) (void *);
  bfd_boolean (*const_type) (void *);
 
 
  /* Pop the top type off the type stack, and push a volatile
  /* Pop the top type off the type stack, and push a volatile
     qualified version of that type onto the type stack.  */
     qualified version of that type onto the type stack.  */
  bfd_boolean (*volatile_type) (void *);
  bfd_boolean (*volatile_type) (void *);
 
 
  /* Start building a struct.  This is followed by calls to the
  /* Start building a struct.  This is followed by calls to the
     struct_field function, and finished by a call to the
     struct_field function, and finished by a call to the
     end_struct_type function.  The second argument is the tag; this
     end_struct_type function.  The second argument is the tag; this
     will be NULL if there isn't one.  If the second argument is NULL,
     will be NULL if there isn't one.  If the second argument is NULL,
     the third argument is a constant identifying this struct for use
     the third argument is a constant identifying this struct for use
     with tag_type.  The fourth argument is TRUE for a struct, FALSE
     with tag_type.  The fourth argument is TRUE for a struct, FALSE
     for a union.  The fifth argument is the size.  If this is an
     for a union.  The fifth argument is the size.  If this is an
     undefined struct or union, the size will be 0 and struct_field
     undefined struct or union, the size will be 0 and struct_field
     will not be called before end_struct_type is called.  */
     will not be called before end_struct_type is called.  */
  bfd_boolean (*start_struct_type)
  bfd_boolean (*start_struct_type)
    (void *, const char *, unsigned int, bfd_boolean, unsigned int);
    (void *, const char *, unsigned int, bfd_boolean, unsigned int);
 
 
  /* Add a field to the struct type currently being built.  The type
  /* Add a field to the struct type currently being built.  The type
     of the field should be popped off the type stack.  The arguments
     of the field should be popped off the type stack.  The arguments
     are the name, the bit position, the bit size (may be zero if the
     are the name, the bit position, the bit size (may be zero if the
     field is not packed), and the visibility.  */
     field is not packed), and the visibility.  */
  bfd_boolean (*struct_field)
  bfd_boolean (*struct_field)
    (void *, const char *, bfd_vma, bfd_vma, enum debug_visibility);
    (void *, const char *, bfd_vma, bfd_vma, enum debug_visibility);
 
 
  /* Finish building a struct, and push it onto the type stack.  */
  /* Finish building a struct, and push it onto the type stack.  */
  bfd_boolean (*end_struct_type) (void *);
  bfd_boolean (*end_struct_type) (void *);
 
 
  /* Start building a class.  This is followed by calls to several
  /* Start building a class.  This is followed by calls to several
     functions: struct_field, class_static_member, class_baseclass,
     functions: struct_field, class_static_member, class_baseclass,
     class_start_method, class_method_variant,
     class_start_method, class_method_variant,
     class_static_method_variant, and class_end_method.  The class is
     class_static_method_variant, and class_end_method.  The class is
     finished by a call to end_class_type.  The first five arguments
     finished by a call to end_class_type.  The first five arguments
     are the same as for start_struct_type.  The sixth argument is
     are the same as for start_struct_type.  The sixth argument is
     TRUE if there is a virtual function table; if there is, the
     TRUE if there is a virtual function table; if there is, the
     seventh argument is TRUE if the virtual function table can be
     seventh argument is TRUE if the virtual function table can be
     found in the type itself, and is FALSE if the type of the object
     found in the type itself, and is FALSE if the type of the object
     holding the virtual function table should be popped from the type
     holding the virtual function table should be popped from the type
     stack.  */
     stack.  */
  bfd_boolean (*start_class_type)
  bfd_boolean (*start_class_type)
    (void *, const char *, unsigned int, bfd_boolean, unsigned int,
    (void *, const char *, unsigned int, bfd_boolean, unsigned int,
     bfd_boolean, bfd_boolean);
     bfd_boolean, bfd_boolean);
 
 
  /* Add a static member to the class currently being built.  The
  /* Add a static member to the class currently being built.  The
     arguments are the field name, the physical name, and the
     arguments are the field name, the physical name, and the
     visibility.  The type must be popped off the type stack.  */
     visibility.  The type must be popped off the type stack.  */
  bfd_boolean (*class_static_member)
  bfd_boolean (*class_static_member)
    (void *, const char *, const char *, enum debug_visibility);
    (void *, const char *, const char *, enum debug_visibility);
 
 
  /* Add a baseclass to the class currently being built.  The type of
  /* Add a baseclass to the class currently being built.  The type of
     the baseclass must be popped off the type stack.  The arguments
     the baseclass must be popped off the type stack.  The arguments
     are the bit position, whether the class is virtual, and the
     are the bit position, whether the class is virtual, and the
     visibility.  */
     visibility.  */
  bfd_boolean (*class_baseclass)
  bfd_boolean (*class_baseclass)
    (void *, bfd_vma, bfd_boolean, enum debug_visibility);
    (void *, bfd_vma, bfd_boolean, enum debug_visibility);
 
 
  /* Start adding a method to the class currently being built.  This
  /* Start adding a method to the class currently being built.  This
     is followed by calls to class_method_variant and
     is followed by calls to class_method_variant and
     class_static_method_variant to describe different variants of the
     class_static_method_variant to describe different variants of the
     method which take different arguments.  The method is finished
     method which take different arguments.  The method is finished
     with a call to class_end_method.  The argument is the method
     with a call to class_end_method.  The argument is the method
     name.  */
     name.  */
  bfd_boolean (*class_start_method) (void *, const char *);
  bfd_boolean (*class_start_method) (void *, const char *);
 
 
  /* Describe a variant to the class method currently being built.
  /* Describe a variant to the class method currently being built.
     The type of the variant must be popped off the type stack.  The
     The type of the variant must be popped off the type stack.  The
     second argument is the physical name of the function.  The
     second argument is the physical name of the function.  The
     following arguments are the visibility, whether the variant is
     following arguments are the visibility, whether the variant is
     const, whether the variant is volatile, the offset in the virtual
     const, whether the variant is volatile, the offset in the virtual
     function table, and whether the context is on the type stack
     function table, and whether the context is on the type stack
     (below the variant type).  */
     (below the variant type).  */
  bfd_boolean (*class_method_variant)
  bfd_boolean (*class_method_variant)
    (void *, const char *, enum debug_visibility, bfd_boolean,
    (void *, const char *, enum debug_visibility, bfd_boolean,
     bfd_boolean, bfd_vma, bfd_boolean);
     bfd_boolean, bfd_vma, bfd_boolean);
 
 
  /* Describe a static variant to the class method currently being
  /* Describe a static variant to the class method currently being
     built.  The arguments are the same as for class_method_variant,
     built.  The arguments are the same as for class_method_variant,
     except that the last two arguments are omitted.  The type of the
     except that the last two arguments are omitted.  The type of the
     variant must be popped off the type stack.  */
     variant must be popped off the type stack.  */
  bfd_boolean (*class_static_method_variant)
  bfd_boolean (*class_static_method_variant)
    (void *, const char *, enum debug_visibility, bfd_boolean,
    (void *, const char *, enum debug_visibility, bfd_boolean,
     bfd_boolean);
     bfd_boolean);
 
 
  /* Finish describing a class method.  */
  /* Finish describing a class method.  */
  bfd_boolean (*class_end_method) (void *);
  bfd_boolean (*class_end_method) (void *);
 
 
  /* Finish describing a class, and push it onto the type stack.  */
  /* Finish describing a class, and push it onto the type stack.  */
  bfd_boolean (*end_class_type) (void *);
  bfd_boolean (*end_class_type) (void *);
 
 
  /* Push a type on the stack which was given a name by an earlier
  /* Push a type on the stack which was given a name by an earlier
     call to typdef.  */
     call to typdef.  */
  bfd_boolean (*typedef_type) (void *, const char *);
  bfd_boolean (*typedef_type) (void *, const char *);
 
 
  /* Push a tagged type on the stack which was defined earlier.  If
  /* Push a tagged type on the stack which was defined earlier.  If
     the second argument is not NULL, the type was defined by a call
     the second argument is not NULL, the type was defined by a call
     to tag.  If the second argument is NULL, the type was defined by
     to tag.  If the second argument is NULL, the type was defined by
     a call to start_struct_type or start_class_type with a tag of
     a call to start_struct_type or start_class_type with a tag of
     NULL and the number of the third argument.  Either way, the
     NULL and the number of the third argument.  Either way, the
     fourth argument is the tag kind.  Note that this may be called
     fourth argument is the tag kind.  Note that this may be called
     for a struct (class) being defined, in between the call to
     for a struct (class) being defined, in between the call to
     start_struct_type (start_class_type) and the call to
     start_struct_type (start_class_type) and the call to
     end_struct_type (end_class_type).  */
     end_struct_type (end_class_type).  */
  bfd_boolean (*tag_type)
  bfd_boolean (*tag_type)
    (void *, const char *, unsigned int, enum debug_type_kind);
    (void *, const char *, unsigned int, enum debug_type_kind);
 
 
  /* Pop the type stack, and typedef it to the given name.  */
  /* Pop the type stack, and typedef it to the given name.  */
  bfd_boolean (*typdef) (void *, const char *);
  bfd_boolean (*typdef) (void *, const char *);
 
 
  /* Pop the type stack, and declare it as a tagged struct or union or
  /* Pop the type stack, and declare it as a tagged struct or union or
     enum or whatever.  The tag passed down here is redundant, since
     enum or whatever.  The tag passed down here is redundant, since
     was also passed when enum_type, start_struct_type, or
     was also passed when enum_type, start_struct_type, or
     start_class_type was called.  */
     start_class_type was called.  */
  bfd_boolean (*tag) (void *, const char *);
  bfd_boolean (*tag) (void *, const char *);
 
 
  /* This is called to record a named integer constant.  */
  /* This is called to record a named integer constant.  */
  bfd_boolean (*int_constant) (void *, const char *, bfd_vma);
  bfd_boolean (*int_constant) (void *, const char *, bfd_vma);
 
 
  /* This is called to record a named floating point constant.  */
  /* This is called to record a named floating point constant.  */
  bfd_boolean (*float_constant) (void *, const char *, double);
  bfd_boolean (*float_constant) (void *, const char *, double);
 
 
  /* This is called to record a typed integer constant.  The type is
  /* This is called to record a typed integer constant.  The type is
     popped off the type stack.  */
     popped off the type stack.  */
  bfd_boolean (*typed_constant) (void *, const char *, bfd_vma);
  bfd_boolean (*typed_constant) (void *, const char *, bfd_vma);
 
 
  /* This is called to record a variable.  The type is popped off the
  /* This is called to record a variable.  The type is popped off the
     type stack.  */
     type stack.  */
  bfd_boolean (*variable)
  bfd_boolean (*variable)
    (void *, const char *, enum debug_var_kind, bfd_vma);
    (void *, const char *, enum debug_var_kind, bfd_vma);
 
 
  /* Start writing out a function.  The return type must be popped off
  /* Start writing out a function.  The return type must be popped off
     the stack.  The bfd_boolean is TRUE if the function is global.  This
     the stack.  The bfd_boolean is TRUE if the function is global.  This
     is followed by calls to function_parameter, followed by block
     is followed by calls to function_parameter, followed by block
     information.  */
     information.  */
  bfd_boolean (*start_function) (void *, const char *, bfd_boolean);
  bfd_boolean (*start_function) (void *, const char *, bfd_boolean);
 
 
  /* Record a function parameter for the current function.  The type
  /* Record a function parameter for the current function.  The type
     must be popped off the stack.  */
     must be popped off the stack.  */
  bfd_boolean (*function_parameter)
  bfd_boolean (*function_parameter)
    (void *, const char *, enum debug_parm_kind, bfd_vma);
    (void *, const char *, enum debug_parm_kind, bfd_vma);
 
 
  /* Start writing out a block.  There is at least one top level block
  /* Start writing out a block.  There is at least one top level block
     per function.  Blocks may be nested.  The argument is the
     per function.  Blocks may be nested.  The argument is the
     starting address of the block.  */
     starting address of the block.  */
  bfd_boolean (*start_block) (void *, bfd_vma);
  bfd_boolean (*start_block) (void *, bfd_vma);
 
 
  /* Finish writing out a block.  The argument is the ending address
  /* Finish writing out a block.  The argument is the ending address
     of the block.  */
     of the block.  */
  bfd_boolean (*end_block) (void *, bfd_vma);
  bfd_boolean (*end_block) (void *, bfd_vma);
 
 
  /* Finish writing out a function.  */
  /* Finish writing out a function.  */
  bfd_boolean (*end_function) (void *);
  bfd_boolean (*end_function) (void *);
 
 
  /* Record line number information for the current compilation unit.  */
  /* Record line number information for the current compilation unit.  */
  bfd_boolean (*lineno) (void *, const char *, unsigned long, bfd_vma);
  bfd_boolean (*lineno) (void *, const char *, unsigned long, bfd_vma);
};
};
 
 
/* Exported functions.  */
/* Exported functions.  */
 
 
/* The first argument to most of these functions is a handle.  This
/* The first argument to most of these functions is a handle.  This
   handle is returned by the debug_init function.  The purpose of the
   handle is returned by the debug_init function.  The purpose of the
   handle is to permit the debugging routines to not use static
   handle is to permit the debugging routines to not use static
   variables, and hence to be reentrant.  This would be useful for a
   variables, and hence to be reentrant.  This would be useful for a
   program which wanted to handle two executables simultaneously.  */
   program which wanted to handle two executables simultaneously.  */
 
 
/* Return a debugging handle.  */
/* Return a debugging handle.  */
 
 
extern void *debug_init (void);
extern void *debug_init (void);
 
 
/* Set the source filename.  This implicitly starts a new compilation
/* Set the source filename.  This implicitly starts a new compilation
   unit.  */
   unit.  */
 
 
extern bfd_boolean debug_set_filename (void *, const char *);
extern bfd_boolean debug_set_filename (void *, const char *);
 
 
/* Change source files to the given file name.  This is used for
/* Change source files to the given file name.  This is used for
   include files in a single compilation unit.  */
   include files in a single compilation unit.  */
 
 
extern bfd_boolean debug_start_source (void *, const char *);
extern bfd_boolean debug_start_source (void *, const char *);
 
 
/* Record a function definition.  This implicitly starts a function
/* Record a function definition.  This implicitly starts a function
   block.  The debug_type argument is the type of the return value.
   block.  The debug_type argument is the type of the return value.
   The bfd_boolean indicates whether the function is globally visible.
   The bfd_boolean indicates whether the function is globally visible.
   The bfd_vma is the address of the start of the function.  Currently
   The bfd_vma is the address of the start of the function.  Currently
   the parameter types are specified by calls to
   the parameter types are specified by calls to
   debug_record_parameter.  */
   debug_record_parameter.  */
 
 
extern bfd_boolean debug_record_function
extern bfd_boolean debug_record_function
  (void *, const char *, debug_type, bfd_boolean, bfd_vma);
  (void *, const char *, debug_type, bfd_boolean, bfd_vma);
 
 
/* Record a parameter for the current function.  */
/* Record a parameter for the current function.  */
 
 
extern bfd_boolean debug_record_parameter
extern bfd_boolean debug_record_parameter
  (void *, const char *, debug_type, enum debug_parm_kind, bfd_vma);
  (void *, const char *, debug_type, enum debug_parm_kind, bfd_vma);
 
 
/* End a function definition.  The argument is the address where the
/* End a function definition.  The argument is the address where the
   function ends.  */
   function ends.  */
 
 
extern bfd_boolean debug_end_function (void *, bfd_vma);
extern bfd_boolean debug_end_function (void *, bfd_vma);
 
 
/* Start a block in a function.  All local information will be
/* Start a block in a function.  All local information will be
   recorded in this block, until the matching call to debug_end_block.
   recorded in this block, until the matching call to debug_end_block.
   debug_start_block and debug_end_block may be nested.  The argument
   debug_start_block and debug_end_block may be nested.  The argument
   is the address at which this block starts.  */
   is the address at which this block starts.  */
 
 
extern bfd_boolean debug_start_block (void *, bfd_vma);
extern bfd_boolean debug_start_block (void *, bfd_vma);
 
 
/* Finish a block in a function.  This matches the call to
/* Finish a block in a function.  This matches the call to
   debug_start_block.  The argument is the address at which this block
   debug_start_block.  The argument is the address at which this block
   ends.  */
   ends.  */
 
 
extern bfd_boolean debug_end_block (void *, bfd_vma);
extern bfd_boolean debug_end_block (void *, bfd_vma);
 
 
/* Associate a line number in the current source file with a given
/* Associate a line number in the current source file with a given
   address.  */
   address.  */
 
 
extern bfd_boolean debug_record_line (void *, unsigned long, bfd_vma);
extern bfd_boolean debug_record_line (void *, unsigned long, bfd_vma);
 
 
/* Start a named common block.  This is a block of variables that may
/* Start a named common block.  This is a block of variables that may
   move in memory.  */
   move in memory.  */
 
 
extern bfd_boolean debug_start_common_block (void *, const char *);
extern bfd_boolean debug_start_common_block (void *, const char *);
 
 
/* End a named common block.  */
/* End a named common block.  */
 
 
extern bfd_boolean debug_end_common_block (void *, const char *);
extern bfd_boolean debug_end_common_block (void *, const char *);
 
 
/* Record a named integer constant.  */
/* Record a named integer constant.  */
 
 
extern bfd_boolean debug_record_int_const (void *, const char *, bfd_vma);
extern bfd_boolean debug_record_int_const (void *, const char *, bfd_vma);
 
 
/* Record a named floating point constant.  */
/* Record a named floating point constant.  */
 
 
extern bfd_boolean debug_record_float_const (void *, const char *, double);
extern bfd_boolean debug_record_float_const (void *, const char *, double);
 
 
/* Record a typed constant with an integral value.  */
/* Record a typed constant with an integral value.  */
 
 
extern bfd_boolean debug_record_typed_const
extern bfd_boolean debug_record_typed_const
  (void *, const char *, debug_type, bfd_vma);
  (void *, const char *, debug_type, bfd_vma);
 
 
/* Record a label.  */
/* Record a label.  */
 
 
extern bfd_boolean debug_record_label
extern bfd_boolean debug_record_label
  (void *, const char *, debug_type, bfd_vma);
  (void *, const char *, debug_type, bfd_vma);
 
 
/* Record a variable.  */
/* Record a variable.  */
 
 
extern bfd_boolean debug_record_variable
extern bfd_boolean debug_record_variable
  (void *, const char *, debug_type, enum debug_var_kind, bfd_vma);
  (void *, const char *, debug_type, enum debug_var_kind, bfd_vma);
 
 
/* Make an indirect type.  The first argument is a pointer to the
/* Make an indirect type.  The first argument is a pointer to the
   location where the real type will be placed.  The second argument
   location where the real type will be placed.  The second argument
   is the type tag, if there is one; this may be NULL; the only
   is the type tag, if there is one; this may be NULL; the only
   purpose of this argument is so that debug_get_type_name can return
   purpose of this argument is so that debug_get_type_name can return
   something useful.  This function may be used when a type is
   something useful.  This function may be used when a type is
   referenced before it is defined.  */
   referenced before it is defined.  */
 
 
extern debug_type debug_make_indirect_type
extern debug_type debug_make_indirect_type
  (void *, debug_type *, const char *);
  (void *, debug_type *, const char *);
 
 
/* Make a void type.  */
/* Make a void type.  */
 
 
extern debug_type debug_make_void_type (void *);
extern debug_type debug_make_void_type (void *);
 
 
/* Make an integer type of a given size.  The bfd_boolean argument is TRUE
/* Make an integer type of a given size.  The bfd_boolean argument is TRUE
   if the integer is unsigned.  */
   if the integer is unsigned.  */
 
 
extern debug_type debug_make_int_type (void *, unsigned int, bfd_boolean);
extern debug_type debug_make_int_type (void *, unsigned int, bfd_boolean);
 
 
/* Make a floating point type of a given size.  FIXME: On some
/* Make a floating point type of a given size.  FIXME: On some
   platforms, like an Alpha, you probably need to be able to specify
   platforms, like an Alpha, you probably need to be able to specify
   the format.  */
   the format.  */
 
 
extern debug_type debug_make_float_type (void *, unsigned int);
extern debug_type debug_make_float_type (void *, unsigned int);
 
 
/* Make a boolean type of a given size.  */
/* Make a boolean type of a given size.  */
 
 
extern debug_type debug_make_bool_type (void *, unsigned int);
extern debug_type debug_make_bool_type (void *, unsigned int);
 
 
/* Make a complex type of a given size.  */
/* Make a complex type of a given size.  */
 
 
extern debug_type debug_make_complex_type (void *, unsigned int);
extern debug_type debug_make_complex_type (void *, unsigned int);
 
 
/* Make a structure type.  The second argument is TRUE for a struct,
/* Make a structure type.  The second argument is TRUE for a struct,
   FALSE for a union.  The third argument is the size of the struct.
   FALSE for a union.  The third argument is the size of the struct.
   The fourth argument is a NULL terminated array of fields.  */
   The fourth argument is a NULL terminated array of fields.  */
 
 
extern debug_type debug_make_struct_type
extern debug_type debug_make_struct_type
  (void *, bfd_boolean, bfd_vma, debug_field *);
  (void *, bfd_boolean, bfd_vma, debug_field *);
 
 
/* Make an object type.  The first three arguments after the handle
/* Make an object type.  The first three arguments after the handle
   are the same as for debug_make_struct_type.  The next arguments are
   are the same as for debug_make_struct_type.  The next arguments are
   a NULL terminated array of base classes, a NULL terminated array of
   a NULL terminated array of base classes, a NULL terminated array of
   methods, the type of the object holding the virtual function table
   methods, the type of the object holding the virtual function table
   if it is not this object, and a bfd_boolean which is TRUE if this
   if it is not this object, and a bfd_boolean which is TRUE if this
   object has its own virtual function table.  */
   object has its own virtual function table.  */
 
 
extern debug_type debug_make_object_type
extern debug_type debug_make_object_type
  (void *, bfd_boolean, bfd_vma, debug_field *, debug_baseclass *,
  (void *, bfd_boolean, bfd_vma, debug_field *, debug_baseclass *,
   debug_method *, debug_type, bfd_boolean);
   debug_method *, debug_type, bfd_boolean);
 
 
/* Make an enumeration type.  The arguments are a null terminated
/* Make an enumeration type.  The arguments are a null terminated
   array of strings, and an array of corresponding values.  */
   array of strings, and an array of corresponding values.  */
 
 
extern debug_type debug_make_enum_type
extern debug_type debug_make_enum_type
  (void *, const char **, bfd_signed_vma *);
  (void *, const char **, bfd_signed_vma *);
 
 
/* Make a pointer to a given type.  */
/* Make a pointer to a given type.  */
 
 
extern debug_type debug_make_pointer_type (void *, debug_type);
extern debug_type debug_make_pointer_type (void *, debug_type);
 
 
/* Make a function type.  The second argument is the return type.  The
/* Make a function type.  The second argument is the return type.  The
   third argument is a NULL terminated array of argument types.  The
   third argument is a NULL terminated array of argument types.  The
   fourth argument is TRUE if the function takes a variable number of
   fourth argument is TRUE if the function takes a variable number of
   arguments.  If the third argument is NULL, then the argument types
   arguments.  If the third argument is NULL, then the argument types
   are unknown.  */
   are unknown.  */
 
 
extern debug_type debug_make_function_type
extern debug_type debug_make_function_type
  (void *, debug_type, debug_type *, bfd_boolean);
  (void *, debug_type, debug_type *, bfd_boolean);
 
 
/* Make a reference to a given type.  */
/* Make a reference to a given type.  */
 
 
extern debug_type debug_make_reference_type (void *, debug_type);
extern debug_type debug_make_reference_type (void *, debug_type);
 
 
/* Make a range of a given type from a lower to an upper bound.  */
/* Make a range of a given type from a lower to an upper bound.  */
 
 
extern debug_type debug_make_range_type
extern debug_type debug_make_range_type
  (void *, debug_type, bfd_signed_vma, bfd_signed_vma);
  (void *, debug_type, bfd_signed_vma, bfd_signed_vma);
 
 
/* Make an array type.  The second argument is the type of an element
/* Make an array type.  The second argument is the type of an element
   of the array.  The third argument is the type of a range of the
   of the array.  The third argument is the type of a range of the
   array.  The fourth and fifth argument are the lower and upper
   array.  The fourth and fifth argument are the lower and upper
   bounds, respectively (if the bounds are not known, lower should be
   bounds, respectively (if the bounds are not known, lower should be
   0 and upper should be -1).  The sixth argument is TRUE if this
   0 and upper should be -1).  The sixth argument is TRUE if this
   array is actually a string, as in C.  */
   array is actually a string, as in C.  */
 
 
extern debug_type debug_make_array_type
extern debug_type debug_make_array_type
  (void *, debug_type, debug_type, bfd_signed_vma, bfd_signed_vma,
  (void *, debug_type, debug_type, bfd_signed_vma, bfd_signed_vma,
   bfd_boolean);
   bfd_boolean);
 
 
/* Make a set of a given type.  For example, a Pascal set type.  The
/* Make a set of a given type.  For example, a Pascal set type.  The
   bfd_boolean argument is TRUE if this set is actually a bitstring, as in
   bfd_boolean argument is TRUE if this set is actually a bitstring, as in
   CHILL.  */
   CHILL.  */
 
 
extern debug_type debug_make_set_type (void *, debug_type, bfd_boolean);
extern debug_type debug_make_set_type (void *, debug_type, bfd_boolean);
 
 
/* Make a type for a pointer which is relative to an object.  The
/* Make a type for a pointer which is relative to an object.  The
   second argument is the type of the object to which the pointer is
   second argument is the type of the object to which the pointer is
   relative.  The third argument is the type that the pointer points
   relative.  The third argument is the type that the pointer points
   to.  */
   to.  */
 
 
extern debug_type debug_make_offset_type (void *, debug_type, debug_type);
extern debug_type debug_make_offset_type (void *, debug_type, debug_type);
 
 
/* Make a type for a method function.  The second argument is the
/* Make a type for a method function.  The second argument is the
   return type.  The third argument is the domain.  The fourth
   return type.  The third argument is the domain.  The fourth
   argument is a NULL terminated array of argument types.  The fifth
   argument is a NULL terminated array of argument types.  The fifth
   argument is TRUE if the function takes a variable number of
   argument is TRUE if the function takes a variable number of
   arguments, in which case the array of argument types indicates the
   arguments, in which case the array of argument types indicates the
   types of the first arguments.  The domain and the argument array
   types of the first arguments.  The domain and the argument array
   may be NULL, in which case this is a stub method and that
   may be NULL, in which case this is a stub method and that
   information is not available.  Stabs debugging uses this, and gets
   information is not available.  Stabs debugging uses this, and gets
   the argument types from the mangled name.  */
   the argument types from the mangled name.  */
 
 
extern debug_type debug_make_method_type
extern debug_type debug_make_method_type
  (void *, debug_type, debug_type, debug_type *, bfd_boolean);
  (void *, debug_type, debug_type, debug_type *, bfd_boolean);
 
 
/* Make a const qualified version of a given type.  */
/* Make a const qualified version of a given type.  */
 
 
extern debug_type debug_make_const_type (void *, debug_type);
extern debug_type debug_make_const_type (void *, debug_type);
 
 
/* Make a volatile qualified version of a given type.  */
/* Make a volatile qualified version of a given type.  */
 
 
extern debug_type debug_make_volatile_type (void *, debug_type);
extern debug_type debug_make_volatile_type (void *, debug_type);
 
 
/* Make an undefined tagged type.  For example, a struct which has
/* Make an undefined tagged type.  For example, a struct which has
   been mentioned, but not defined.  */
   been mentioned, but not defined.  */
 
 
extern debug_type debug_make_undefined_tagged_type
extern debug_type debug_make_undefined_tagged_type
  (void *, const char *, enum debug_type_kind);
  (void *, const char *, enum debug_type_kind);
 
 
/* Make a base class for an object.  The second argument is the base
/* Make a base class for an object.  The second argument is the base
   class type.  The third argument is the bit position of this base
   class type.  The third argument is the bit position of this base
   class in the object.  The fourth argument is whether this is a
   class in the object.  The fourth argument is whether this is a
   virtual class.  The fifth argument is the visibility of the base
   virtual class.  The fifth argument is the visibility of the base
   class.  */
   class.  */
 
 
extern debug_baseclass debug_make_baseclass
extern debug_baseclass debug_make_baseclass
  (void *, debug_type, bfd_vma, bfd_boolean, enum debug_visibility);
  (void *, debug_type, bfd_vma, bfd_boolean, enum debug_visibility);
 
 
/* Make a field for a struct.  The second argument is the name.  The
/* Make a field for a struct.  The second argument is the name.  The
   third argument is the type of the field.  The fourth argument is
   third argument is the type of the field.  The fourth argument is
   the bit position of the field.  The fifth argument is the size of
   the bit position of the field.  The fifth argument is the size of
   the field (it may be zero).  The sixth argument is the visibility
   the field (it may be zero).  The sixth argument is the visibility
   of the field.  */
   of the field.  */
 
 
extern debug_field debug_make_field
extern debug_field debug_make_field
  (void *, const char *, debug_type, bfd_vma, bfd_vma, enum debug_visibility);
  (void *, const char *, debug_type, bfd_vma, bfd_vma, enum debug_visibility);
 
 
/* Make a static member of an object.  The second argument is the
/* Make a static member of an object.  The second argument is the
   name.  The third argument is the type of the member.  The fourth
   name.  The third argument is the type of the member.  The fourth
   argument is the physical name of the member (i.e., the name as a
   argument is the physical name of the member (i.e., the name as a
   global variable).  The fifth argument is the visibility of the
   global variable).  The fifth argument is the visibility of the
   member.  */
   member.  */
 
 
extern debug_field debug_make_static_member
extern debug_field debug_make_static_member
  (void *, const char *, debug_type, const char *, enum debug_visibility);
  (void *, const char *, debug_type, const char *, enum debug_visibility);
 
 
/* Make a method.  The second argument is the name, and the third
/* Make a method.  The second argument is the name, and the third
   argument is a NULL terminated array of method variants.  Each
   argument is a NULL terminated array of method variants.  Each
   method variant is a method with this name but with different
   method variant is a method with this name but with different
   argument types.  */
   argument types.  */
 
 
extern debug_method debug_make_method
extern debug_method debug_make_method
  (void *, const char *, debug_method_variant *);
  (void *, const char *, debug_method_variant *);
 
 
/* Make a method variant.  The second argument is the physical name of
/* Make a method variant.  The second argument is the physical name of
   the function.  The third argument is the type of the function,
   the function.  The third argument is the type of the function,
   probably constructed by debug_make_method_type.  The fourth
   probably constructed by debug_make_method_type.  The fourth
   argument is the visibility.  The fifth argument is whether this is
   argument is the visibility.  The fifth argument is whether this is
   a const function.  The sixth argument is whether this is a volatile
   a const function.  The sixth argument is whether this is a volatile
   function.  The seventh argument is the index in the virtual
   function.  The seventh argument is the index in the virtual
   function table, if any.  The eighth argument is the virtual
   function table, if any.  The eighth argument is the virtual
   function context.  */
   function context.  */
 
 
extern debug_method_variant debug_make_method_variant
extern debug_method_variant debug_make_method_variant
  (void *, const char *, debug_type, enum debug_visibility, bfd_boolean,
  (void *, const char *, debug_type, enum debug_visibility, bfd_boolean,
   bfd_boolean, bfd_vma, debug_type);
   bfd_boolean, bfd_vma, debug_type);
 
 
/* Make a static method argument.  The arguments are the same as for
/* Make a static method argument.  The arguments are the same as for
   debug_make_method_variant, except that the last two are omitted
   debug_make_method_variant, except that the last two are omitted
   since a static method can not also be virtual.  */
   since a static method can not also be virtual.  */
 
 
extern debug_method_variant debug_make_static_method_variant
extern debug_method_variant debug_make_static_method_variant
  (void *, const char *, debug_type, enum debug_visibility, bfd_boolean,
  (void *, const char *, debug_type, enum debug_visibility, bfd_boolean,
   bfd_boolean);
   bfd_boolean);
 
 
/* Name a type.  This returns a new type with an attached name.  */
/* Name a type.  This returns a new type with an attached name.  */
 
 
extern debug_type debug_name_type (void *, const char *, debug_type);
extern debug_type debug_name_type (void *, const char *, debug_type);
 
 
/* Give a tag to a type, such as a struct or union.  This returns a
/* Give a tag to a type, such as a struct or union.  This returns a
   new type with an attached tag.  */
   new type with an attached tag.  */
 
 
extern debug_type debug_tag_type (void *, const char *, debug_type);
extern debug_type debug_tag_type (void *, const char *, debug_type);
 
 
/* Record the size of a given type.  */
/* Record the size of a given type.  */
 
 
extern bfd_boolean debug_record_type_size (void *, debug_type, unsigned int);
extern bfd_boolean debug_record_type_size (void *, debug_type, unsigned int);
 
 
/* Find a named type.  */
/* Find a named type.  */
 
 
extern debug_type debug_find_named_type (void *, const char *);
extern debug_type debug_find_named_type (void *, const char *);
 
 
/* Find a tagged type.  */
/* Find a tagged type.  */
 
 
extern debug_type debug_find_tagged_type
extern debug_type debug_find_tagged_type
  (void *, const char *, enum debug_type_kind);
  (void *, const char *, enum debug_type_kind);
 
 
/* Get the kind of a type.  */
/* Get the kind of a type.  */
 
 
extern enum debug_type_kind debug_get_type_kind (void *, debug_type);
extern enum debug_type_kind debug_get_type_kind (void *, debug_type);
 
 
/* Get the name of a type.  */
/* Get the name of a type.  */
 
 
extern const char *debug_get_type_name (void *, debug_type);
extern const char *debug_get_type_name (void *, debug_type);
 
 
/* Get the size of a type.  */
/* Get the size of a type.  */
 
 
extern bfd_vma debug_get_type_size (void *, debug_type);
extern bfd_vma debug_get_type_size (void *, debug_type);
 
 
/* Get the return type of a function or method type.  */
/* Get the return type of a function or method type.  */
 
 
extern debug_type debug_get_return_type (void *, debug_type);
extern debug_type debug_get_return_type (void *, debug_type);
 
 
/* Get the NULL terminated array of parameter types for a function or
/* Get the NULL terminated array of parameter types for a function or
   method type (actually, parameter types are not currently stored for
   method type (actually, parameter types are not currently stored for
   function types).  This may be used to determine whether a method
   function types).  This may be used to determine whether a method
   type is a stub method or not.  The last argument points to a
   type is a stub method or not.  The last argument points to a
   bfd_boolean which is set to TRUE if the function takes a variable
   bfd_boolean which is set to TRUE if the function takes a variable
   number of arguments.  */
   number of arguments.  */
 
 
extern const debug_type *debug_get_parameter_types
extern const debug_type *debug_get_parameter_types
  (void *, debug_type, bfd_boolean *);
  (void *, debug_type, bfd_boolean *);
 
 
/* Get the target type of a pointer or reference or const or volatile
/* Get the target type of a pointer or reference or const or volatile
   type.  */
   type.  */
 
 
extern debug_type debug_get_target_type (void *, debug_type);
extern debug_type debug_get_target_type (void *, debug_type);
 
 
/* Get the NULL terminated array of fields for a struct, union, or
/* Get the NULL terminated array of fields for a struct, union, or
   class.  */
   class.  */
 
 
extern const debug_field *debug_get_fields (void *, debug_type);
extern const debug_field *debug_get_fields (void *, debug_type);
 
 
/* Get the type of a field.  */
/* Get the type of a field.  */
 
 
extern debug_type debug_get_field_type (void *, debug_field);
extern debug_type debug_get_field_type (void *, debug_field);
 
 
/* Get the name of a field.  */
/* Get the name of a field.  */
 
 
extern const char *debug_get_field_name (void *, debug_field);
extern const char *debug_get_field_name (void *, debug_field);
 
 
/* Get the bit position of a field within the containing structure.
/* Get the bit position of a field within the containing structure.
   If the field is a static member, this will return (bfd_vma) -1.  */
   If the field is a static member, this will return (bfd_vma) -1.  */
 
 
extern bfd_vma debug_get_field_bitpos (void *, debug_field);
extern bfd_vma debug_get_field_bitpos (void *, debug_field);
 
 
/* Get the bit size of a field.  If the field is a static member, this
/* Get the bit size of a field.  If the field is a static member, this
   will return (bfd_vma) -1.  */
   will return (bfd_vma) -1.  */
 
 
extern bfd_vma debug_get_field_bitsize (void *, debug_field);
extern bfd_vma debug_get_field_bitsize (void *, debug_field);
 
 
/* Get the visibility of a field.  */
/* Get the visibility of a field.  */
 
 
extern enum debug_visibility debug_get_field_visibility (void *, debug_field);
extern enum debug_visibility debug_get_field_visibility (void *, debug_field);
 
 
/* Get the physical name of a field, if it is a static member.  If the
/* Get the physical name of a field, if it is a static member.  If the
   field is not a static member, this will return NULL.  */
   field is not a static member, this will return NULL.  */
 
 
extern const char *debug_get_field_physname (void *, debug_field);
extern const char *debug_get_field_physname (void *, debug_field);
 
 
/* Write out the recorded debugging information.  This takes a set of
/* Write out the recorded debugging information.  This takes a set of
   function pointers which are called to do the actual writing.  The
   function pointers which are called to do the actual writing.  The
   first void * is the debugging handle.  The second void * is a handle
   first void * is the debugging handle.  The second void * is a handle
   which is passed to the functions.  */
   which is passed to the functions.  */
 
 
extern bfd_boolean debug_write
extern bfd_boolean debug_write
  (void *, const struct debug_write_fns *, void *);
  (void *, const struct debug_write_fns *, void *);
 
 
#endif /* DEBUG_H */
#endif /* DEBUG_H */
 
 

powered by: WebSVN 2.1.0

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