]> git.cworth.org Git - vogl/blob - src/libbacktrace/auxincl/dwarf2.h
Initial vogl checkin
[vogl] / src / libbacktrace / auxincl / dwarf2.h
1 /* dwarf2.h -- minimal GCC dwarf2.h replacement for libbacktrace
2    Contributed by Alexander Monakov, ISP RAS
3
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are
6 met:
7
8     (1) Redistributions of source code must retain the above copyright
9     notice, this list of conditions and the following disclaimer.
10
11     (2) Redistributions in binary form must reproduce the above copyright
12     notice, this list of conditions and the following disclaimer in
13     the documentation and/or other materials provided with the
14     distribution.
15
16     (3) The name of the author may not be used to
17     endorse or promote products derived from this software without
18     specific prior written permission.
19
20 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29 IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.  */
31
32 #ifndef BACKTRACE_AUX_DWARF2_H
33 #define BACKTRACE_AUX_DWARF2_H
34
35 /* Use the system header for the bulk of the definitions.  */
36 #include <dwarf.h>
37
38 /* Provide stub enum tags.  */
39 enum dwarf_attribute {_dummy_dwarf_attribute};
40 enum dwarf_form {_dummy_dwarf_form};
41 enum dwarf_tag {_dummy_dwarf_tag};
42
43 /* Define potentially missing enum values.  */
44 #define DW_FORM_GNU_addr_index 0x1f01
45 #define DW_FORM_GNU_str_index  0x1f02
46
47 #define DW_FORM_GNU_ref_alt    0x1f20
48 #define DW_FORM_GNU_strp_alt   0x1f21
49
50 #define DW_LNS_extended_op 0
51
52 #endif