| 1 | 15 | khays | /* budbg.c -- Interfaces to the generic debugging information routines.
 | 
      
         | 2 |  |  |    Copyright 1995, 1996, 2002, 2003, 2005, 2007, 2008
 | 
      
         | 3 |  |  |    Free Software Foundation, Inc.
 | 
      
         | 4 |  |  |    Written by Ian Lance Taylor <ian@cygnus.com>.
 | 
      
         | 5 |  |  |  
 | 
      
         | 6 |  |  |    This file is part of GNU Binutils.
 | 
      
         | 7 |  |  |  
 | 
      
         | 8 |  |  |    This program is free software; you can redistribute it and/or modify
 | 
      
         | 9 |  |  |    it under the terms of the GNU General Public License as published by
 | 
      
         | 10 |  |  |    the Free Software Foundation; either version 3 of the License, or
 | 
      
         | 11 |  |  |    (at your option) any later version.
 | 
      
         | 12 |  |  |  
 | 
      
         | 13 |  |  |    This program is distributed in the hope that it will be useful,
 | 
      
         | 14 |  |  |    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
      
         | 15 |  |  |    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
      
         | 16 |  |  |    GNU General Public License for more details.
 | 
      
         | 17 |  |  |  
 | 
      
         | 18 |  |  |    You should have received a copy of the GNU General Public License
 | 
      
         | 19 |  |  |    along with this program; if not, write to the Free Software
 | 
      
         | 20 |  |  |    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
 | 
      
         | 21 |  |  |    02110-1301, USA.  */
 | 
      
         | 22 |  |  |  
 | 
      
         | 23 |  |  | #ifndef BUDBG_H
 | 
      
         | 24 |  |  | #define BUDBG_H
 | 
      
         | 25 |  |  |  
 | 
      
         | 26 |  |  | #include <stdio.h>
 | 
      
         | 27 |  |  |  
 | 
      
         | 28 |  |  | /* Routine used to read generic debugging information.  */
 | 
      
         | 29 |  |  |  
 | 
      
         | 30 |  |  | extern void *read_debugging_info (bfd *, asymbol **, long, bfd_boolean);
 | 
      
         | 31 |  |  |  
 | 
      
         | 32 |  |  | /* Routine used to print generic debugging information.  */
 | 
      
         | 33 |  |  |  
 | 
      
         | 34 |  |  | extern bfd_boolean print_debugging_info
 | 
      
         | 35 |  |  |   (FILE *, void *, bfd *, asymbol **, void *, bfd_boolean);
 | 
      
         | 36 |  |  |  
 | 
      
         | 37 |  |  | /* Routines used to read and write stabs information.  */
 | 
      
         | 38 |  |  |  
 | 
      
         | 39 |  |  | extern void *start_stab (void *, bfd *, bfd_boolean, asymbol **, long);
 | 
      
         | 40 |  |  |  
 | 
      
         | 41 |  |  | extern bfd_boolean finish_stab (void *, void *);
 | 
      
         | 42 |  |  |  
 | 
      
         | 43 |  |  | extern bfd_boolean parse_stab
 | 
      
         | 44 |  |  |   (void *, void *, int, int, bfd_vma, const char *);
 | 
      
         | 45 |  |  |  
 | 
      
         | 46 |  |  | extern bfd_boolean write_stabs_in_sections_debugging_info
 | 
      
         | 47 |  |  |   (bfd *, void *, bfd_byte **, bfd_size_type *, bfd_byte **, bfd_size_type *);
 | 
      
         | 48 |  |  |  
 | 
      
         | 49 |  |  | /* Routines used to read and write IEEE debugging information.  */
 | 
      
         | 50 |  |  |  
 | 
      
         | 51 |  |  | extern bfd_boolean parse_ieee (void *, bfd *, const bfd_byte *, bfd_size_type);
 | 
      
         | 52 |  |  |  
 | 
      
         | 53 |  |  | extern bfd_boolean write_ieee_debugging_info (bfd *, void *);
 | 
      
         | 54 |  |  |  
 | 
      
         | 55 |  |  | /* Routine used to read COFF debugging information.  */
 | 
      
         | 56 |  |  |  
 | 
      
         | 57 |  |  | extern bfd_boolean parse_coff (bfd *, asymbol **, long, void *);
 | 
      
         | 58 |  |  |  
 | 
      
         | 59 |  |  | #endif
 |