Automatic Copyright Year update after running gdb/copyright.py
[deliverable/binutils-gdb.git] / gdb / dwarf2 / public.h
CommitLineData
70182375
TT
1/* Public API for gdb DWARF reader
2
88b9d363 3 Copyright (C) 2021-2022 Free Software Foundation, Inc.
70182375
TT
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
20#ifndef DWARF2_PUBLIC_H
21#define DWARF2_PUBLIC_H
22
23extern int dwarf2_has_info (struct objfile *,
24 const struct dwarf2_debug_sections *,
25 bool = false);
26
27/* A DWARF names index variant. */
28enum class dw_index_kind
29{
30 /* GDB's own .gdb_index format. */
31 GDB_INDEX,
32
33 /* DWARF5 .debug_names. */
34 DEBUG_NAMES,
35};
36
edc02ceb
TT
37/* Initialize for reading DWARF for OBJFILE, and push the appropriate
38 entry on the objfile's "qf" list. */
39extern void dwarf2_initialize_objfile (struct objfile *objfile);
70182375 40
eb36a3eb
TT
41struct psymbol_functions;
42extern void dwarf2_build_psymtabs (struct objfile *,
43 psymbol_functions *psf = nullptr);
70182375
TT
44extern void dwarf2_build_frame_info (struct objfile *);
45
46#endif /* DWARF2_PUBLIC_H */
This page took 0.053039 seconds and 4 git commands to generate.