xref: /illumos-gate/usr/src/lib/libdwarf/common/pro_arange.h (revision bc1f688b4872ace323eaddbb1a6365d054e7bf56)
1 /*
2 
3   Copyright (C) 2000,2004 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., 51 Franklin Street - Fifth Floor, Boston MA 02110-1301,
23   USA.
24 
25   Contact information:  Silicon Graphics, Inc., 1500 Crittenden Lane,
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 	If ag_end_symbol_index is zero,
39 	ag_length must be known and non-zero.
40 
41 
42 	Deals with length being known costant or fr
43 	assembler output, not known.
44 
45 */
46 
47 struct Dwarf_P_Arange_s {
48     Dwarf_Addr ag_begin_address;	/* known address or for
49 					   symbolic assem output,
50 					   offset of symbol */
51     Dwarf_Addr ag_length;	/* zero or address or offset */
52     Dwarf_Unsigned ag_symbol_index;
53 
54     Dwarf_P_Arange ag_next;
55 
56     Dwarf_Unsigned ag_end_symbol_index;	/* zero or index/id of end
57 					   symbol */
58     Dwarf_Addr ag_end_symbol_offset;	/* known address or for
59 					   symbolic assem output,
60 					   offset of end symbol */
61 
62 };
63