1999-05-03 15:29:11 +08:00
|
|
|
/* debug.h -- Describe generic debugging information.
|
2024-01-04 19:52:08 +08:00
|
|
|
Copyright (C) 1995-2024 Free Software Foundation, Inc.
|
1999-05-03 15:29:11 +08:00
|
|
|
Written by Ian Lance Taylor <ian@cygnus.com>.
|
|
|
|
|
|
|
|
This file is part of GNU Binutils.
|
|
|
|
|
|
|
|
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
|
2007-07-06 00:54:46 +08:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
1999-05-03 15:29:11 +08:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-08 22:17:41 +08:00
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
|
|
|
|
02110-1301, USA. */
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#ifndef DEBUG_H
|
|
|
|
#define DEBUG_H
|
|
|
|
|
|
|
|
/* This header file describes a generic debugging information format.
|
|
|
|
We may eventually have readers which convert different formats into
|
|
|
|
this generic format, and writers which write it out. The initial
|
2003-10-27 21:20:32 +08:00
|
|
|
impetus for this was writing a converter from stabs to HP IEEE-695
|
1999-05-03 15:29:11 +08:00
|
|
|
debugging format. */
|
|
|
|
|
|
|
|
/* Different kinds of types. */
|
|
|
|
|
|
|
|
enum debug_type_kind
|
|
|
|
{
|
|
|
|
/* Not used. */
|
|
|
|
DEBUG_KIND_ILLEGAL,
|
|
|
|
/* Indirect via a pointer. */
|
|
|
|
DEBUG_KIND_INDIRECT,
|
|
|
|
/* Void. */
|
|
|
|
DEBUG_KIND_VOID,
|
|
|
|
/* Integer. */
|
|
|
|
DEBUG_KIND_INT,
|
|
|
|
/* Floating point. */
|
|
|
|
DEBUG_KIND_FLOAT,
|
|
|
|
/* Complex. */
|
|
|
|
DEBUG_KIND_COMPLEX,
|
|
|
|
/* Boolean. */
|
|
|
|
DEBUG_KIND_BOOL,
|
|
|
|
/* Struct. */
|
|
|
|
DEBUG_KIND_STRUCT,
|
|
|
|
/* Union. */
|
|
|
|
DEBUG_KIND_UNION,
|
|
|
|
/* Class. */
|
|
|
|
DEBUG_KIND_CLASS,
|
|
|
|
/* Union class (can this really happen?). */
|
|
|
|
DEBUG_KIND_UNION_CLASS,
|
|
|
|
/* Enumeration type. */
|
|
|
|
DEBUG_KIND_ENUM,
|
|
|
|
/* Pointer. */
|
|
|
|
DEBUG_KIND_POINTER,
|
|
|
|
/* Function. */
|
|
|
|
DEBUG_KIND_FUNCTION,
|
|
|
|
/* Reference. */
|
|
|
|
DEBUG_KIND_REFERENCE,
|
|
|
|
/* Range. */
|
|
|
|
DEBUG_KIND_RANGE,
|
|
|
|
/* Array. */
|
|
|
|
DEBUG_KIND_ARRAY,
|
|
|
|
/* Set. */
|
|
|
|
DEBUG_KIND_SET,
|
|
|
|
/* Based pointer. */
|
|
|
|
DEBUG_KIND_OFFSET,
|
|
|
|
/* Method. */
|
|
|
|
DEBUG_KIND_METHOD,
|
|
|
|
/* Const qualified type. */
|
|
|
|
DEBUG_KIND_CONST,
|
|
|
|
/* Volatile qualified type. */
|
|
|
|
DEBUG_KIND_VOLATILE,
|
|
|
|
/* Named type. */
|
|
|
|
DEBUG_KIND_NAMED,
|
|
|
|
/* Tagged type. */
|
|
|
|
DEBUG_KIND_TAGGED
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Different kinds of variables. */
|
|
|
|
|
|
|
|
enum debug_var_kind
|
|
|
|
{
|
|
|
|
/* Not used. */
|
|
|
|
DEBUG_VAR_ILLEGAL,
|
|
|
|
/* A global variable. */
|
|
|
|
DEBUG_GLOBAL,
|
|
|
|
/* A static variable. */
|
|
|
|
DEBUG_STATIC,
|
|
|
|
/* A local static variable. */
|
|
|
|
DEBUG_LOCAL_STATIC,
|
|
|
|
/* A local variable. */
|
|
|
|
DEBUG_LOCAL,
|
|
|
|
/* A register variable. */
|
|
|
|
DEBUG_REGISTER
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Different kinds of function parameters. */
|
|
|
|
|
|
|
|
enum debug_parm_kind
|
|
|
|
{
|
|
|
|
/* Not used. */
|
|
|
|
DEBUG_PARM_ILLEGAL,
|
|
|
|
/* A stack based parameter. */
|
|
|
|
DEBUG_PARM_STACK,
|
|
|
|
/* A register parameter. */
|
|
|
|
DEBUG_PARM_REG,
|
|
|
|
/* A stack based reference parameter. */
|
|
|
|
DEBUG_PARM_REFERENCE,
|
|
|
|
/* A register reference parameter. */
|
|
|
|
DEBUG_PARM_REF_REG
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Different kinds of visibility. */
|
|
|
|
|
|
|
|
enum debug_visibility
|
|
|
|
{
|
|
|
|
/* A public field (e.g., a field in a C struct). */
|
|
|
|
DEBUG_VISIBILITY_PUBLIC,
|
|
|
|
/* A protected field. */
|
|
|
|
DEBUG_VISIBILITY_PROTECTED,
|
|
|
|
/* A private field. */
|
|
|
|
DEBUG_VISIBILITY_PRIVATE,
|
|
|
|
/* A field which should be ignored. */
|
|
|
|
DEBUG_VISIBILITY_IGNORE
|
|
|
|
};
|
|
|
|
|
|
|
|
/* A type. */
|
|
|
|
|
2009-09-10 21:40:44 +08:00
|
|
|
typedef struct debug_type_s *debug_type;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define DEBUG_TYPE_NULL ((debug_type) NULL)
|
|
|
|
|
|
|
|
/* A field in a struct or union. */
|
|
|
|
|
2009-09-10 21:40:44 +08:00
|
|
|
typedef struct debug_field_s *debug_field;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define DEBUG_FIELD_NULL ((debug_field) NULL)
|
|
|
|
|
|
|
|
/* A base class for an object. */
|
|
|
|
|
2009-09-10 21:40:44 +08:00
|
|
|
typedef struct debug_baseclass_s *debug_baseclass;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define DEBUG_BASECLASS_NULL ((debug_baseclass) NULL)
|
|
|
|
|
|
|
|
/* A method of an object. */
|
|
|
|
|
2009-09-10 21:40:44 +08:00
|
|
|
typedef struct debug_method_s *debug_method;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define DEBUG_METHOD_NULL ((debug_method) NULL)
|
|
|
|
|
|
|
|
/* The arguments to a method function of an object. These indicate
|
|
|
|
which method to run. */
|
|
|
|
|
2009-09-10 21:40:44 +08:00
|
|
|
typedef struct debug_method_variant_s *debug_method_variant;
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#define DEBUG_METHOD_VARIANT_NULL ((debug_method_variant) NULL)
|
|
|
|
|
|
|
|
/* This structure is passed to debug_write. It holds function
|
|
|
|
pointers that debug_write will call based on the accumulated
|
|
|
|
debugging information. */
|
|
|
|
|
|
|
|
struct debug_write_fns
|
|
|
|
{
|
|
|
|
/* This is called at the start of each new compilation unit with the
|
|
|
|
name of the main file in the new unit. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_compilation_unit) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* This is called at the start of each source file within a
|
|
|
|
compilation unit, before outputting any global information for
|
|
|
|
that file. The argument is the name of the file. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_source) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Each writer must keep a stack of types. */
|
|
|
|
|
|
|
|
/* Push an empty type onto the type stack. This type can appear if
|
|
|
|
there is a reference to a type which is never defined. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*empty_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a void type onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*void_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push an integer type onto the type stack, given the size and
|
|
|
|
whether it is unsigned. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*int_type) (void *, unsigned int, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a floating type onto the type stack, given the size. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*float_type) (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a complex type onto the type stack, given the size. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*complex_type) (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
/* Push a bool type onto the type stack, given the size. */
|
|
|
|
bool (*bool_type) (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push an enum type onto the type stack, given the tag, a NULL
|
|
|
|
terminated array of names and the associated values. If there is
|
|
|
|
no tag, the tag argument will be NULL. If this is an undefined
|
|
|
|
enum, the names and values arguments will be NULL. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*enum_type)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, const char **, bfd_signed_vma *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Pop the top type on the type stack, and push a pointer to that
|
|
|
|
type onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*pointer_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a function type onto the type stack. The second argument
|
|
|
|
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 argument types of the function are unknown, and no types have
|
2002-11-30 16:39:46 +08:00
|
|
|
been pushed onto the stack. The third argument is TRUE if the
|
1999-05-03 15:29:11 +08:00
|
|
|
function takes a variable number of arguments. The return type
|
|
|
|
of the function is pushed onto the type stack below the argument
|
|
|
|
types, if any. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*function_type) (void *, int, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Pop the top type on the type stack, and push a reference to that
|
|
|
|
type onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*reference_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*range_type) (void *, bfd_signed_vma, bfd_signed_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
element type. These should be popped before the array type is
|
|
|
|
pushed. The arguments are the lower bound, the upper bound, and
|
|
|
|
whether the array is a string. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*array_type)
|
|
|
|
(void *, bfd_signed_vma, bfd_signed_vma, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
a bitstring. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*set_type) (void *, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
stack is the base type. These should be popped before the offset
|
|
|
|
type is pushed. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*offset_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a method type onto the type stack. If the second argument
|
2002-11-30 16:39:46 +08:00
|
|
|
is TRUE, the top type on the stack is the class to which the
|
1999-05-03 15:29:11 +08:00
|
|
|
method belongs; otherwise, the class must be determined by 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
|
|
|
|
reverse order (the first type popped is the last argument to the
|
|
|
|
method). A value of -1 for the third argument means that no
|
2002-11-30 16:39:46 +08:00
|
|
|
argument information is available. The fourth argument is TRUE
|
1999-05-03 15:29:11 +08:00
|
|
|
if the function takes a variable number of arguments. The next
|
|
|
|
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,
|
|
|
|
and then the method type must be pushed. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*method_type) (void *, bool, int, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Pop the top type off the type stack, and push a const qualified
|
|
|
|
version of that type onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*const_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Pop the top type off the type stack, and push a volatile
|
|
|
|
qualified version of that type onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*volatile_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start building a struct. This is followed by calls to the
|
|
|
|
struct_field function, and finished by a call to the
|
|
|
|
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,
|
|
|
|
the third argument is a constant identifying this struct for use
|
2002-11-30 16:39:46 +08:00
|
|
|
with tag_type. The fourth argument is TRUE for a struct, FALSE
|
1999-05-03 15:29:11 +08:00
|
|
|
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
|
|
|
|
will not be called before end_struct_type is called. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_struct_type)
|
|
|
|
(void *, const char *, unsigned int, bool, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Add a field to the struct type currently being built. The type
|
|
|
|
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
|
|
|
|
field is not packed), and the visibility. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*struct_field)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, bfd_vma, bfd_vma, enum debug_visibility);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish building a struct, and push it onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*end_struct_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start building a class. This is followed by calls to several
|
|
|
|
functions: struct_field, class_static_member, class_baseclass,
|
|
|
|
class_start_method, class_method_variant,
|
|
|
|
class_static_method_variant, and class_end_method. The class is
|
|
|
|
finished by a call to end_class_type. The first five arguments
|
|
|
|
are the same as for start_struct_type. The sixth argument is
|
2002-11-30 16:39:46 +08:00
|
|
|
TRUE if there is a virtual function table; if there is, the
|
|
|
|
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
|
1999-05-03 15:29:11 +08:00
|
|
|
holding the virtual function table should be popped from the type
|
|
|
|
stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_class_type)
|
|
|
|
(void *, const char *, unsigned int, bool, unsigned int, bool, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Add a static member to the class currently being built. The
|
|
|
|
arguments are the field name, the physical name, and the
|
|
|
|
visibility. The type must be popped off the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_static_member)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, const char *, enum debug_visibility);
|
2002-05-21 02:23:05 +08:00
|
|
|
|
1999-05-03 15:29:11 +08:00
|
|
|
/* Add a baseclass to the class currently being built. The type of
|
|
|
|
the baseclass must be popped off the type stack. The arguments
|
|
|
|
are the bit position, whether the class is virtual, and the
|
|
|
|
visibility. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_baseclass)
|
|
|
|
(void *, bfd_vma, bool, enum debug_visibility);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start adding a method to the class currently being built. This
|
|
|
|
is followed by calls to class_method_variant and
|
|
|
|
class_static_method_variant to describe different variants of the
|
|
|
|
method which take different arguments. The method is finished
|
|
|
|
with a call to class_end_method. The argument is the method
|
|
|
|
name. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_start_method) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Describe a variant to the class method currently being built.
|
|
|
|
The type of the variant must be popped off the type stack. The
|
|
|
|
second argument is the physical name of the function. The
|
|
|
|
following arguments are the visibility, whether the variant is
|
|
|
|
const, whether the variant is volatile, the offset in the virtual
|
|
|
|
function table, and whether the context is on the type stack
|
|
|
|
(below the variant type). */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_method_variant)
|
|
|
|
(void *, const char *, enum debug_visibility, bool, bool, bfd_vma, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Describe a static variant to the class method currently being
|
|
|
|
built. The arguments are the same as for class_method_variant,
|
|
|
|
except that the last two arguments are omitted. The type of the
|
|
|
|
variant must be popped off the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_static_method_variant)
|
|
|
|
(void *, const char *, enum debug_visibility, bool, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish describing a class method. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*class_end_method) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish describing a class, and push it onto the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*end_class_type) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Push a type on the stack which was given a name by an earlier
|
|
|
|
call to typdef. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*typedef_type) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
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
|
|
|
|
NULL and the number of the third argument. Either way, the
|
|
|
|
fourth argument is the tag kind. Note that this may be called
|
|
|
|
for a struct (class) being defined, in between the call to
|
|
|
|
start_struct_type (start_class_type) and the call to
|
|
|
|
end_struct_type (end_class_type). */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*tag_type)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, unsigned int, enum debug_type_kind);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Pop the type stack, and typedef it to the given name. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*typdef) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
was also passed when enum_type, start_struct_type, or
|
|
|
|
start_class_type was called. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*tag) (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* This is called to record a named integer constant. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*int_constant) (void *, const char *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* This is called to record a named floating point constant. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*float_constant) (void *, const char *, double);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* This is called to record a typed integer constant. The type is
|
|
|
|
popped off the type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*typed_constant) (void *, const char *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* This is called to record a variable. The type is popped off the
|
|
|
|
type stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*variable)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, enum debug_var_kind, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start writing out a function. The return type must be popped off
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
the stack. The bool is TRUE if the function is global. This
|
1999-05-03 15:29:11 +08:00
|
|
|
is followed by calls to function_parameter, followed by block
|
|
|
|
information. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_function) (void *, const char *, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a function parameter for the current function. The type
|
|
|
|
must be popped off the stack. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*function_parameter)
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, enum debug_parm_kind, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start writing out a block. There is at least one top level block
|
|
|
|
per function. Blocks may be nested. The argument is the
|
|
|
|
starting address of the block. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*start_block) (void *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish writing out a block. The argument is the ending address
|
|
|
|
of the block. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*end_block) (void *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish writing out a function. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*end_function) (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record line number information for the current compilation unit. */
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool (*lineno) (void *, const char *, unsigned long, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Exported functions. */
|
|
|
|
|
|
|
|
/* 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 to permit the debugging routines to not use static
|
|
|
|
variables, and hence to be reentrant. This would be useful for a
|
|
|
|
program which wanted to handle two executables simultaneously. */
|
|
|
|
|
|
|
|
/* Return a debugging handle. */
|
|
|
|
|
Use bfd_alloc memory for read_debugging_info storage
Trying to free malloc'd memory used by the stabs and coff debug info
parsers is complicated, and traversing the trees generated requires a
lot of code. It's better to bfd_alloc the memory which allows it all
to be freed without fuss when the bfd is closed. In the process of
doing this I reverted most of commit a6336913332.
Some of the stabs handling code grows arrays of pointers with realloc,
to deal with arbitrary numbers of fields, function args, etc. The
code still does that but copies over to bfd_alloc memory when
finished. The alternative is to parse twice, once to size, then again
to populate the arrays. I think that complication is unwarranted.
Note that there is a greater than zero chance this patch breaks
something, eg. that I missed an attempt to free obj_alloc memory.
Also it seems there are no tests in the binutils testsuite aimed at
exercising objdump --debugging.
* budbg.h (finish_stab, parse_stab): Update prototypes
* debug.c: Include bucomm.h.
(struct debug_handle): Add "abfd" field.
(debug_init): Add "abfd" param. bfd_alloc handle.
(debug_xalloc, debug_xzalloc): New functions. Use throughout
in place of xmalloc and memset.
(debug_start_source): Remove "name_used" param.
* debug.h (debug_init, debug_start_source): Update prototypes.
(debug_xalloc, debug_xzalloc): Declare.
* objcopy.c (copy_object): Don't free dhandle.
* objdump.c (dump_bfd): Likewise.
* rdcoff.c (coff_get_slot): Add dhandle arg. debug_xzalloc
memory in place of xcalloc. Update callers.
(parse_coff_struct_type): Don't leak on error return. Copy
fields over to debug_xalloc memory.
(parse_coff_enum_type): Copy names and vals over the
debug_xalloc memory.
* rddbg.c (read_debugging_info): Adjust debug_init call.
Don't free dhandle.
(read_section_stabs_debugging_info): Don't free shandle.
Adjust parse_stab call. Call finish_stab on error return.
(read_symbol_stabs_debugging_info): Similarly.
* stabs.c (savestring): Delete unnecessary forward declaration.
Add dhandle param. debug_xalloc memory. Update callers.
(start_stab): Delete unnecessary casts.
(finish_stab): Add "emit" param. Free file_types, so_string,
and stabs handle.
(parse_stab): Delete string_used param. Revert code dealing
with string_used. Copy so_string passed to debug_set_filename
and stored as main_filename to debug_xalloc memory. Similarly
for string passed to debug_start_source and push_bincl. Copy
args to debug_xalloc memory. Don't leak args.
(parse_stab_enum_type): Copy names and values to debug_xalloc
memory. Don't free name.
(parse_stab_struct_type): Don't free fields.
(parse_stab_baseclasses): Delete unnecessary cast.
(parse_stab_struct_fields): Return debug_xalloc fields.
(parse_stab_cpp_abbrev): Use debug_xalloc for _vb$ type name.
(parse_stab_one_struct_field): Don't free name.
(parse_stab_members): Copy variants and methods to
debug_xalloc memory. Don't free name or argtypes.
(parse_stab_argtypes): Use debug_xalloc memory for physname
and args.
(push_bincl): Add dhandle param. Use debug_xalloc memory.
(stab_record_variable): Use debug_xalloc memory.
(stab_emit_pending_vars): Don't free var list.
(stab_find_slot): Add dhandle param. Use debug_xzalloc
memory. Update all callers.
(stab_find_tagged_type): Don't free name. Use debug_xzalloc.
(stab_demangle_qualified): Don't free name.
(stab_demangle_template): Don't free s1.
(stab_demangle_args): Tidy pvarargs refs. Copy *pargs on
success to debug_xalloc memory, free on failure.
(stab_demangle_fund_type): Don't free name.
(stab_demangle_v3_arglist): Copy args to debug_xalloc memory.
Don't free dt.
2023-04-03 20:51:59 +08:00
|
|
|
extern void *debug_init (bfd *);
|
|
|
|
|
|
|
|
/* Allocate bytes on the debug handle objalloc memory pool. */
|
|
|
|
|
|
|
|
extern void *debug_xalloc (void *, size_t);
|
|
|
|
extern void *debug_xzalloc (void *, size_t);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Set the source filename. This implicitly starts a new compilation
|
|
|
|
unit. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_set_filename (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Change source files to the given file name. This is used for
|
|
|
|
include files in a single compilation unit. */
|
|
|
|
|
Use bfd_alloc memory for read_debugging_info storage
Trying to free malloc'd memory used by the stabs and coff debug info
parsers is complicated, and traversing the trees generated requires a
lot of code. It's better to bfd_alloc the memory which allows it all
to be freed without fuss when the bfd is closed. In the process of
doing this I reverted most of commit a6336913332.
Some of the stabs handling code grows arrays of pointers with realloc,
to deal with arbitrary numbers of fields, function args, etc. The
code still does that but copies over to bfd_alloc memory when
finished. The alternative is to parse twice, once to size, then again
to populate the arrays. I think that complication is unwarranted.
Note that there is a greater than zero chance this patch breaks
something, eg. that I missed an attempt to free obj_alloc memory.
Also it seems there are no tests in the binutils testsuite aimed at
exercising objdump --debugging.
* budbg.h (finish_stab, parse_stab): Update prototypes
* debug.c: Include bucomm.h.
(struct debug_handle): Add "abfd" field.
(debug_init): Add "abfd" param. bfd_alloc handle.
(debug_xalloc, debug_xzalloc): New functions. Use throughout
in place of xmalloc and memset.
(debug_start_source): Remove "name_used" param.
* debug.h (debug_init, debug_start_source): Update prototypes.
(debug_xalloc, debug_xzalloc): Declare.
* objcopy.c (copy_object): Don't free dhandle.
* objdump.c (dump_bfd): Likewise.
* rdcoff.c (coff_get_slot): Add dhandle arg. debug_xzalloc
memory in place of xcalloc. Update callers.
(parse_coff_struct_type): Don't leak on error return. Copy
fields over to debug_xalloc memory.
(parse_coff_enum_type): Copy names and vals over the
debug_xalloc memory.
* rddbg.c (read_debugging_info): Adjust debug_init call.
Don't free dhandle.
(read_section_stabs_debugging_info): Don't free shandle.
Adjust parse_stab call. Call finish_stab on error return.
(read_symbol_stabs_debugging_info): Similarly.
* stabs.c (savestring): Delete unnecessary forward declaration.
Add dhandle param. debug_xalloc memory. Update callers.
(start_stab): Delete unnecessary casts.
(finish_stab): Add "emit" param. Free file_types, so_string,
and stabs handle.
(parse_stab): Delete string_used param. Revert code dealing
with string_used. Copy so_string passed to debug_set_filename
and stored as main_filename to debug_xalloc memory. Similarly
for string passed to debug_start_source and push_bincl. Copy
args to debug_xalloc memory. Don't leak args.
(parse_stab_enum_type): Copy names and values to debug_xalloc
memory. Don't free name.
(parse_stab_struct_type): Don't free fields.
(parse_stab_baseclasses): Delete unnecessary cast.
(parse_stab_struct_fields): Return debug_xalloc fields.
(parse_stab_cpp_abbrev): Use debug_xalloc for _vb$ type name.
(parse_stab_one_struct_field): Don't free name.
(parse_stab_members): Copy variants and methods to
debug_xalloc memory. Don't free name or argtypes.
(parse_stab_argtypes): Use debug_xalloc memory for physname
and args.
(push_bincl): Add dhandle param. Use debug_xalloc memory.
(stab_record_variable): Use debug_xalloc memory.
(stab_emit_pending_vars): Don't free var list.
(stab_find_slot): Add dhandle param. Use debug_xzalloc
memory. Update all callers.
(stab_find_tagged_type): Don't free name. Use debug_xzalloc.
(stab_demangle_qualified): Don't free name.
(stab_demangle_template): Don't free s1.
(stab_demangle_args): Tidy pvarargs refs. Copy *pargs on
success to debug_xalloc memory, free on failure.
(stab_demangle_fund_type): Don't free name.
(stab_demangle_v3_arglist): Copy args to debug_xalloc memory.
Don't free dt.
2023-04-03 20:51:59 +08:00
|
|
|
extern bool debug_start_source (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a function definition. This implicitly starts a function
|
|
|
|
block. The debug_type argument is the type of the return value.
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
The bool indicates whether the function is globally visible.
|
1999-05-03 15:29:11 +08:00
|
|
|
The bfd_vma is the address of the start of the function. Currently
|
|
|
|
the parameter types are specified by calls to
|
|
|
|
debug_record_parameter. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_function
|
|
|
|
(void *, const char *, debug_type, bool, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a parameter for the current function. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_parameter
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, enum debug_parm_kind, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* End a function definition. The argument is the address where the
|
|
|
|
function ends. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_end_function (void *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start a block in a function. All local information will be
|
|
|
|
recorded in this block, until the matching call to debug_end_block.
|
|
|
|
debug_start_block and debug_end_block may be nested. The argument
|
|
|
|
is the address at which this block starts. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_start_block (void *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Finish a block in a function. This matches the call to
|
|
|
|
debug_start_block. The argument is the address at which this block
|
|
|
|
ends. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_end_block (void *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Associate a line number in the current source file with a given
|
|
|
|
address. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_line (void *, unsigned long, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Start a named common block. This is a block of variables that may
|
|
|
|
move in memory. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_start_common_block (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* End a named common block. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_end_common_block (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a named integer constant. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_int_const (void *, const char *, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a named floating point constant. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_float_const (void *, const char *, double);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a typed constant with an integral value. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_typed_const
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a label. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_label
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record a variable. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_variable
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, enum debug_var_kind, bfd_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make an indirect type. The first argument is a pointer to the
|
|
|
|
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
|
|
|
|
purpose of this argument is so that debug_get_type_name can return
|
|
|
|
something useful. This function may be used when a type is
|
|
|
|
referenced before it is defined. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_indirect_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, debug_type *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a void type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_void_type (void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
/* Make an integer type of a given size. The bool argument is TRUE
|
1999-05-03 15:29:11 +08:00
|
|
|
if the integer is unsigned. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern debug_type debug_make_int_type (void *, unsigned int, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a floating point type of a given size. FIXME: On some
|
|
|
|
platforms, like an Alpha, you probably need to be able to specify
|
|
|
|
the format. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_float_type (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a boolean type of a given size. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_bool_type (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a complex type of a given size. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_complex_type (void *, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
/* 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.
|
1999-05-03 15:29:11 +08:00
|
|
|
The fourth argument is a NULL terminated array of fields. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_struct_type
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, bool, bfd_vma, debug_field *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make an object type. The first three arguments after the handle
|
|
|
|
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
|
|
|
|
methods, the type of the object holding the virtual function table
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
if it is not this object, and a bool which is TRUE if this
|
1999-05-03 15:29:11 +08:00
|
|
|
object has its own virtual function table. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_object_type
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, bool, bfd_vma, debug_field *, debug_baseclass *,
|
|
|
|
debug_method *, debug_type, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make an enumeration type. The arguments are a null terminated
|
|
|
|
array of strings, and an array of corresponding values. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_enum_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char **, bfd_signed_vma *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a pointer to a given type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_pointer_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a function type. The second argument is the return type. The
|
|
|
|
third argument is a NULL terminated array of argument types. The
|
2002-11-30 16:39:46 +08:00
|
|
|
fourth argument is TRUE if the function takes a variable number of
|
1999-05-03 15:29:11 +08:00
|
|
|
arguments. If the third argument is NULL, then the argument types
|
|
|
|
are unknown. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_function_type
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, debug_type, debug_type *, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a reference to a given type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_reference_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a range of a given type from a lower to an upper bound. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_range_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, debug_type, bfd_signed_vma, bfd_signed_vma);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
array. The fourth and fifth argument are the lower and upper
|
|
|
|
bounds, respectively (if the bounds are not known, lower should be
|
2002-11-30 16:39:46 +08:00
|
|
|
0 and upper should be -1). The sixth argument is TRUE if this
|
1999-05-03 15:29:11 +08:00
|
|
|
array is actually a string, as in C. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_array_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, debug_type, debug_type, bfd_signed_vma, bfd_signed_vma,
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a set of a given type. For example, a Pascal set type. The
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool argument is TRUE if this set is actually a bitstring, as in
|
1999-05-03 15:29:11 +08:00
|
|
|
CHILL. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern debug_type debug_make_set_type (void *, debug_type, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
relative. The third argument is the type that the pointer points
|
|
|
|
to. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_offset_type (void *, debug_type, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a type for a method function. The second argument is the
|
|
|
|
return type. The third argument is the domain. The fourth
|
|
|
|
argument is a NULL terminated array of argument types. The fifth
|
2002-11-30 16:39:46 +08:00
|
|
|
argument is TRUE if the function takes a variable number of
|
1999-05-03 15:29:11 +08:00
|
|
|
arguments, in which case the array of argument types indicates the
|
|
|
|
types of the first arguments. The domain and the argument array
|
|
|
|
may be NULL, in which case this is a stub method and that
|
|
|
|
information is not available. Stabs debugging uses this, and gets
|
|
|
|
the argument types from the mangled name. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_method_type
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, debug_type, debug_type, debug_type *, bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a const qualified version of a given type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_const_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a volatile qualified version of a given type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_make_volatile_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make an undefined tagged type. For example, a struct which has
|
|
|
|
been mentioned, but not defined. */
|
|
|
|
|
|
|
|
extern debug_type debug_make_undefined_tagged_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, enum debug_type_kind);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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 in the object. The fourth argument is whether this is a
|
|
|
|
virtual class. The fifth argument is the visibility of the base
|
|
|
|
class. */
|
|
|
|
|
|
|
|
extern debug_baseclass debug_make_baseclass
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, debug_type, bfd_vma, bool, enum debug_visibility);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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
|
|
|
|
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
|
|
|
|
of the field. */
|
|
|
|
|
|
|
|
extern debug_field debug_make_field
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, bfd_vma, bfd_vma, enum debug_visibility);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a static member of an object. The second argument is the
|
|
|
|
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
|
|
|
|
global variable). The fifth argument is the visibility of the
|
|
|
|
member. */
|
|
|
|
|
|
|
|
extern debug_field debug_make_static_member
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_type, const char *, enum debug_visibility);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a method. The second argument is the name, and the third
|
|
|
|
argument is a NULL terminated array of method variants. Each
|
|
|
|
method variant is a method with this name but with different
|
|
|
|
argument types. */
|
|
|
|
|
|
|
|
extern debug_method debug_make_method
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, debug_method_variant *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a method variant. The second argument is the physical name of
|
|
|
|
the function. The third argument is the type of the function,
|
|
|
|
probably constructed by debug_make_method_type. The fourth
|
|
|
|
argument is the visibility. The fifth argument is whether this is
|
|
|
|
a const function. The sixth argument is whether this is a volatile
|
|
|
|
function. The seventh argument is the index in the virtual
|
|
|
|
function table, if any. The eighth argument is the virtual
|
|
|
|
function context. */
|
|
|
|
|
|
|
|
extern debug_method_variant debug_make_method_variant
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, const char *, debug_type, enum debug_visibility, bool,
|
|
|
|
bool, bfd_vma, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Make a static method argument. The arguments are the same as for
|
|
|
|
debug_make_method_variant, except that the last two are omitted
|
|
|
|
since a static method can not also be virtual. */
|
|
|
|
|
|
|
|
extern debug_method_variant debug_make_static_method_variant
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, const char *, debug_type, enum debug_visibility, bool,
|
|
|
|
bool);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Name a type. This returns a new type with an attached name. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_name_type (void *, const char *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Give a tag to a type, such as a struct or union. This returns a
|
|
|
|
new type with an attached tag. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_tag_type (void *, const char *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Record the size of a given type. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_record_type_size (void *, debug_type, unsigned int);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Find a named type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_find_named_type (void *, const char *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Find a tagged type. */
|
|
|
|
|
|
|
|
extern debug_type debug_find_tagged_type
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const char *, enum debug_type_kind);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the kind of a type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern enum debug_type_kind debug_get_type_kind (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the name of a type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern const char *debug_get_type_name (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the size of a type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern bfd_vma debug_get_type_size (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the return type of a function or method type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_get_return_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the NULL terminated array of parameter types for a function or
|
|
|
|
method type (actually, parameter types are not currently stored for
|
|
|
|
function types). This may be used to determine whether a method
|
|
|
|
type is a stub method or not. The last argument points to a
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
bool which is set to TRUE if the function takes a variable
|
1999-05-03 15:29:11 +08:00
|
|
|
number of arguments. */
|
|
|
|
|
2002-11-30 16:39:46 +08:00
|
|
|
extern const debug_type *debug_get_parameter_types
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
(void *, debug_type, bool *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the target type of a pointer or reference or const or volatile
|
|
|
|
type. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_get_target_type (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the NULL terminated array of fields for a struct, union, or
|
|
|
|
class. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern const debug_field *debug_get_fields (void *, debug_type);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the type of a field. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern debug_type debug_get_field_type (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the name of a field. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern const char *debug_get_field_name (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the bit position of a field within the containing structure.
|
|
|
|
If the field is a static member, this will return (bfd_vma) -1. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern bfd_vma debug_get_field_bitpos (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the bit size of a field. If the field is a static member, this
|
|
|
|
will return (bfd_vma) -1. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern bfd_vma debug_get_field_bitsize (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Get the visibility of a field. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern enum debug_visibility debug_get_field_visibility (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* 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. */
|
|
|
|
|
2003-09-14 20:20:17 +08:00
|
|
|
extern const char *debug_get_field_physname (void *, debug_field);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
/* Write out the recorded debugging information. This takes a set of
|
|
|
|
function pointers which are called to do the actual writing. The
|
2003-09-14 20:20:17 +08:00
|
|
|
first void * is the debugging handle. The second void * is a handle
|
1999-05-03 15:29:11 +08:00
|
|
|
which is passed to the functions. */
|
|
|
|
|
Use bool in binutils
* sysdep.h (POISON_BFD_BOOLEAN): Define.
* addr2line.c, * ar.c, * arsup.c, * bfdtest2.c, * binemul.c,
* binemul.h, * bucomm.c, * bucomm.h, * budbg.h, * coffgrok.c,
* debug.c, * debug.h, * dlltool.c, * dwarf.c, * dwarf.h,
* elfedit.c, * emul_aix.c, * mclex.c, * nm.c, * objcopy.c,
* objdump.c, * od-macho.c, * prdbg.c, * rdcoff.c, * rddbg.c,
* readelf.c, * rename.c, * stabs.c, * strings.c, * windint.h,
* windmc.c, * windmc.h, * windres.c, * winduni.c,
* wrstabs.c: Replace bfd_boolean with bool, FALSE with false,
and TRUE with true throughout.
2021-03-31 08:09:37 +08:00
|
|
|
extern bool debug_write
|
2003-09-14 20:20:17 +08:00
|
|
|
(void *, const struct debug_write_fns *, void *);
|
1999-05-03 15:29:11 +08:00
|
|
|
|
|
|
|
#endif /* DEBUG_H */
|