17d62b00eSchristos /* DWARF stringify code 27d62b00eSchristos 3*6881a400Schristos Copyright (C) 2003-2023 Free Software Foundation, Inc. 47d62b00eSchristos 57d62b00eSchristos This file is part of GDB. 67d62b00eSchristos 77d62b00eSchristos This program is free software; you can redistribute it and/or modify 87d62b00eSchristos it under the terms of the GNU General Public License as published by 97d62b00eSchristos the Free Software Foundation; either version 3 of the License, or 107d62b00eSchristos (at your option) any later version. 117d62b00eSchristos 127d62b00eSchristos This program is distributed in the hope that it will be useful, 137d62b00eSchristos but WITHOUT ANY WARRANTY; without even the implied warranty of 147d62b00eSchristos MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 157d62b00eSchristos GNU General Public License for more details. 167d62b00eSchristos 177d62b00eSchristos You should have received a copy of the GNU General Public License 187d62b00eSchristos along with this program. If not, see <http://www.gnu.org/licenses/>. */ 197d62b00eSchristos 207d62b00eSchristos #ifndef GDB_DWARF2_STRINGIFY_H 217d62b00eSchristos #define GDB_DWARF2_STRINGIFY_H 227d62b00eSchristos 237d62b00eSchristos /* Convert a DIE tag into its string name. */ 247d62b00eSchristos extern const char *dwarf_tag_name (unsigned tag); 257d62b00eSchristos 267d62b00eSchristos /* Convert a DWARF attribute code into its string name. */ 277d62b00eSchristos extern const char *dwarf_attr_name (unsigned attr); 287d62b00eSchristos 297d62b00eSchristos /* Convert a DWARF value form code into its string name. */ 307d62b00eSchristos extern const char *dwarf_form_name (unsigned form); 317d62b00eSchristos 327d62b00eSchristos /* Convert a boolean to a string form. */ 337d62b00eSchristos extern const char *dwarf_bool_name (unsigned mybool); 347d62b00eSchristos 357d62b00eSchristos /* Convert a DWARF type code into its string name. */ 367d62b00eSchristos extern const char *dwarf_type_encoding_name (unsigned enc); 377d62b00eSchristos 38*6881a400Schristos /* Convert a DWARF unit type into its string name. */ 39*6881a400Schristos extern const char *dwarf_unit_type_name (int unit_type); 40*6881a400Schristos 417d62b00eSchristos #endif /* GDB_DWARF2_STRINGIFY_H */ 42