kernel - support dummy reallocblks in devfs
[dragonfly.git] / contrib / binutils-2.27 / binutils / budbg.h
blob2b029ac73a1a925fb130071792d7a41889c88768
1 /* budbg.c -- Interfaces to the generic debugging information routines.
2 Copyright (C) 1995-2016 Free Software Foundation, Inc.
3 Written by Ian Lance Taylor <ian@cygnus.com>.
5 This file is part of GNU Binutils.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
20 02110-1301, USA. */
22 #ifndef BUDBG_H
23 #define BUDBG_H
25 /* Routine used to read generic debugging information. */
27 extern void *read_debugging_info (bfd *, asymbol **, long, bfd_boolean);
29 /* Routine used to print generic debugging information. */
31 extern bfd_boolean print_debugging_info
32 (FILE *, void *, bfd *, asymbol **,
33 char * (*) (struct bfd *, const char *, int), bfd_boolean);
35 /* Routines used to read and write stabs information. */
37 extern void *start_stab (void *, bfd *, bfd_boolean, asymbol **, long);
39 extern bfd_boolean finish_stab (void *, void *);
41 extern bfd_boolean parse_stab
42 (void *, void *, int, int, bfd_vma, const char *);
44 extern bfd_boolean write_stabs_in_sections_debugging_info
45 (bfd *, void *, bfd_byte **, bfd_size_type *, bfd_byte **, bfd_size_type *);
47 /* Routines used to read and write IEEE debugging information. */
49 extern bfd_boolean parse_ieee (void *, bfd *, const bfd_byte *, bfd_size_type);
51 extern bfd_boolean write_ieee_debugging_info (bfd *, void *);
53 /* Routine used to read COFF debugging information. */
55 extern bfd_boolean parse_coff (bfd *, asymbol **, long, void *);
57 #endif