1/* Names of various DWARF tags.
2 Copyright (C) 2012-2023 Free Software Foundation, Inc.
3
4This file is part of GNU CC.
5
6GNU CC is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2, or (at your option)
9any later version.
10
11In addition to the permissions in the GNU General Public License, the
12Free Software Foundation gives you unlimited permission to link the
13compiled version of this file into combinations with other programs,
14and to distribute those combinations without any restriction coming
15from the use of this file. (The General Public License restrictions
16do apply in other respects; for example, they cover modification of
17the file, and distribution when not linked into a combined
18executable.)
19
20GNU CC is distributed in the hope that it will be useful,
21but WITHOUT ANY WARRANTY; without even the implied warranty of
22MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23GNU General Public License for more details.
24
25You should have received a copy of the GNU General Public License
26along with GNU CC; see the file COPYING. If not, write to
27the Free Software Foundation, 51 Franklin Street - Fifth Floor,
28Boston, MA 02110-1301, USA. */
29
30#include "dwarf2.h"
31
32#define DW_FIRST_TAG(name, value) \
33 const char *get_DW_TAG_name (unsigned int tag) \
34 { switch (tag) { \
35 DW_TAG (name, value)
36#define DW_END_TAG } return 0; }
37#define DW_FIRST_FORM(name, value) \
38 const char *get_DW_FORM_name (unsigned int form) \
39 { switch (form) { \
40 DW_FORM (name, value)
41#define DW_END_FORM } return 0; }
42#define DW_FIRST_AT(name, value) \
43 const char *get_DW_AT_name (unsigned int attr) { \
44 switch (attr) { \
45 DW_AT (name, value)
46#define DW_END_AT } return 0; }
47#define DW_FIRST_OP(name, value) \
48 const char *get_DW_OP_name (unsigned int op) { \
49 switch (op) { \
50 DW_OP (name, value)
51#define DW_END_OP } return 0; }
52#define DW_FIRST_ATE(name, value) \
53 const char *get_DW_ATE_name (unsigned int enc) { \
54 switch (enc) { \
55 DW_ATE (name, value)
56#define DW_END_ATE } return 0; }
57#define DW_FIRST_CFA(name, value) \
58 const char *get_DW_CFA_name (unsigned int opc) { \
59 switch (opc) { \
60 DW_CFA (name, value)
61#define DW_END_CFA } return 0; }
62#define DW_FIRST_IDX(name, value) \
63 const char *get_DW_IDX_name (unsigned int idx) { \
64 switch (idx) { \
65 DW_IDX (name, value)
66#define DW_END_IDX } return 0; }
67#define DW_FIRST_UT(name, value) \
68 const char *get_DW_UT_name (unsigned int ut) { \
69 switch (ut) { \
70 DW_UT (name, value)
71#define DW_END_UT } return 0; }
72
73#define DW_TAG(name, value) case name: return # name ;
74#define DW_TAG_DUP(name, value)
75#define DW_FORM(name, value) case name: return # name ;
76#define DW_AT(name, value) case name: return # name ;
77#define DW_AT_DUP(name, value)
78#define DW_OP(name, value) case name: return # name ;
79#define DW_OP_DUP(name, value)
80#define DW_ATE(name, value) case name: return # name ;
81#define DW_ATE_DUP(name, value)
82#define DW_CFA(name, value) case name: return # name ;
83#define DW_CFA_DUP(name, value)
84#define DW_IDX(name, value) case name: return # name ;
85#define DW_IDX_DUP(name, value)
86#define DW_UT(name, value) case name: return # name ;
87
88#include "dwarf2.def"
89
90#undef DW_FIRST_TAG
91#undef DW_END_TAG
92#undef DW_FIRST_FORM
93#undef DW_END_FORM
94#undef DW_FIRST_AT
95#undef DW_END_AT
96#undef DW_FIRST_OP
97#undef DW_END_OP
98#undef DW_FIRST_ATE
99#undef DW_END_ATE
100#undef DW_FIRST_CFA
101#undef DW_END_CFA
102#undef DW_FIRST_IDX
103#undef DW_END_IDX
104#undef DW_END_UT
105
106#undef DW_TAG
107#undef DW_TAG_DUP
108#undef DW_FORM
109#undef DW_AT
110#undef DW_AT_DUP
111#undef DW_OP
112#undef DW_OP_DUP
113#undef DW_ATE
114#undef DW_ATE_DUP
115#undef DW_CFA
116#undef DW_CFA_DUP
117#undef DW_IDX
118#undef DW_IDX_DUP
119

source code of libiberty/dwarfnames.c