1 /* 2 3 Copyright (C) 2000 Silicon Graphics, Inc. All Rights Reserved. 4 5 This program is free software; you can redistribute it and/or modify it 6 under the terms of version 2.1 of the GNU Lesser General Public License 7 as published by the Free Software Foundation. 8 9 This program is distributed in the hope that it would be useful, but 10 WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 12 13 Further, this software is distributed without any warranty that it is 14 free of the rightful claim of any third person regarding infringement 15 or the like. Any license provided herein, whether implied or 16 otherwise, applies only to this software file. Patent licenses, if 17 any, provided herein do not apply to combinations of this program with 18 other software, or any other product whatsoever. 19 20 You should have received a copy of the GNU Lesser General Public 21 License along with this program; if not, write the Free Software 22 Foundation, Inc., 59 Temple Place - Suite 330, Boston MA 02111-1307, 23 USA. 24 25 Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pky, 26 Mountain View, CA 94043, or: 27 28 http://www.sgi.com 29 30 For further information regarding this notice, see: 31 32 http://oss.sgi.com/projects/GenInfo/NoticeExplan 33 34 */ 35 36 37 38 39 /* 40 This struct holds the abbreviation table, before they are written 41 on disk. Holds a linked list of abbreviations, each consisting of 42 a bitmap for attributes and a bitmap for forms 43 */ 44 typedef struct Dwarf_P_Abbrev_s *Dwarf_P_Abbrev; 45 46 struct Dwarf_P_Abbrev_s { 47 Dwarf_Unsigned abb_idx; /* index of abbreviation */ 48 Dwarf_Tag abb_tag; /* tag of die */ 49 Dwarf_Ubyte abb_children; /* if children are present */ 50 Dwarf_ufixed *abb_attrs; /* holds names of attrs */ 51 Dwarf_ufixed *abb_forms; /* forms of attributes */ 52 int abb_n_attr; /* num of attrs = # of forms */ 53 Dwarf_P_Abbrev abb_next; 54 }; 55 56 /* used in pro_section.c */ 57 58 int _dwarf_pro_add_AT_fde(Dwarf_P_Debug dbg, Dwarf_P_Die die, 59 Dwarf_Unsigned offset, Dwarf_Error * error); 60 61 int _dwarf_pro_add_AT_stmt_list(Dwarf_P_Debug dbg, 62 Dwarf_P_Die first_die, 63 Dwarf_Error * error); 64 65 int _dwarf_pro_add_AT_macro_info(Dwarf_P_Debug dbg, 66 Dwarf_P_Die first_die, 67 Dwarf_Unsigned offset, 68 Dwarf_Error * error); 69