Home | History | Annotate | Line # | Download | only in gcc
dwarf2out.h revision 1.1
      1  1.1  mrg /* dwarf2out.h - Various declarations for functions found in dwarf2out.c
      2  1.1  mrg    Copyright (C) 1998, 1999, 2000, 2003, 2007
      3  1.1  mrg    Free Software Foundation, Inc.
      4  1.1  mrg 
      5  1.1  mrg This file is part of GCC.
      6  1.1  mrg 
      7  1.1  mrg GCC is free software; you can redistribute it and/or modify it under
      8  1.1  mrg the terms of the GNU General Public License as published by the Free
      9  1.1  mrg Software Foundation; either version 3, or (at your option) any later
     10  1.1  mrg version.
     11  1.1  mrg 
     12  1.1  mrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY
     13  1.1  mrg WARRANTY; without even the implied warranty of MERCHANTABILITY or
     14  1.1  mrg FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
     15  1.1  mrg for more details.
     16  1.1  mrg 
     17  1.1  mrg You should have received a copy of the GNU General Public License
     18  1.1  mrg along with GCC; see the file COPYING3.  If not see
     19  1.1  mrg <http://www.gnu.org/licenses/>.  */
     20  1.1  mrg 
     21  1.1  mrg extern void dwarf2out_decl (tree);
     22  1.1  mrg extern void dwarf2out_frame_debug (rtx, bool);
     23  1.1  mrg extern void dwarf2out_begin_epilogue (rtx);
     24  1.1  mrg extern void dwarf2out_frame_debug_restore_state (void);
     25  1.1  mrg extern void dwarf2out_flush_queued_reg_saves (void);
     26  1.1  mrg 
     27  1.1  mrg extern void debug_dwarf (void);
     28  1.1  mrg struct die_struct;
     29  1.1  mrg extern void debug_dwarf_die (struct die_struct *);
     30  1.1  mrg extern void dwarf2out_set_demangle_name_func (const char *(*) (const char *));
     31  1.1  mrg 
     32  1.1  mrg struct array_descr_info
     33  1.1  mrg {
     34  1.1  mrg   int ndimensions;
     35  1.1  mrg   tree element_type;
     36  1.1  mrg   tree base_decl;
     37  1.1  mrg   tree data_location;
     38  1.1  mrg   tree allocated;
     39  1.1  mrg   tree associated;
     40  1.1  mrg   struct array_descr_dimen
     41  1.1  mrg     {
     42  1.1  mrg       tree lower_bound;
     43  1.1  mrg       tree upper_bound;
     44  1.1  mrg       tree stride;
     45  1.1  mrg     } dimen[10];
     46  1.1  mrg };
     47