Retro68/binutils/binutils/budbg.h

52 lines
1.7 KiB
C
Raw Permalink Normal View History

2012-03-26 19:18:29 +00:00
/* budbg.c -- Interfaces to the generic debugging information routines.
2022-10-27 18:45:45 +00:00
Copyright (C) 1995-2022 Free Software Foundation, Inc.
2012-03-26 19:18:29 +00: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
the Free Software Foundation; either version 3 of the License, or
(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
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
02110-1301, USA. */
#ifndef BUDBG_H
#define BUDBG_H
/* Routine used to read generic debugging information. */
2022-10-27 18:45:45 +00:00
extern void *read_debugging_info (bfd *, asymbol **, long, bool);
2012-03-26 19:18:29 +00:00
/* Routine used to print generic debugging information. */
2022-10-27 18:45:45 +00:00
extern bool print_debugging_info
2015-08-28 15:32:19 +00:00
(FILE *, void *, bfd *, asymbol **,
2022-10-27 18:45:45 +00:00
char * (*) (struct bfd *, const char *, int), bool);
2012-03-26 19:18:29 +00:00
/* Routines used to read and write stabs information. */
2022-10-27 18:45:45 +00:00
extern void *start_stab (void *, bfd *, bool, asymbol **, long);
2012-03-26 19:18:29 +00:00
2022-10-27 18:45:45 +00:00
extern bool finish_stab (void *, void *);
2012-03-26 19:18:29 +00:00
2022-10-27 18:45:45 +00:00
extern bool parse_stab
2012-03-26 19:18:29 +00:00
(void *, void *, int, int, bfd_vma, const char *);
2022-10-27 18:45:45 +00:00
extern bool write_stabs_in_sections_debugging_info
2012-03-26 19:18:29 +00:00
(bfd *, void *, bfd_byte **, bfd_size_type *, bfd_byte **, bfd_size_type *);
/* Routine used to read COFF debugging information. */
2022-10-27 18:45:45 +00:00
extern bool parse_coff (bfd *, asymbol **, long, void *);
2012-03-26 19:18:29 +00:00
#endif