
Clang up to version 15 (current) adds macros that were defined in the command line or by "other means", according to the Dwarf specification, after the last DW_MACRO_end_file, instead of before the first DW_MACRO_start_file, as the specification dictates. When GDB reads the macros after the last file is closed, the macros never end up "in scope" and so we can't print them. This has been submitted as a bug to Clang developers (https://github.com/llvm/llvm-project/issues/54506), and PR macros/29034 was opened for GDB to keep track of this. Seeing as there is no expected date for it to be fixed, add a workaround for all current versions of Clang. The workaround detects when the main file would be closed and if the producer is Clang, and turns that operation into a noop, so we keep a reference to the current_file as those macros are read. A test case was added to confirm the functionality, and the KFAIL for running gdb.base/macro-source-path when using clang. Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29034 Approved-By: Simon Marchi <simon.marchi@efficios.com>
36 lines
1.3 KiB
C
36 lines
1.3 KiB
C
/* DWARF macro support for GDB.
|
|
|
|
Copyright (C) 2003-2022 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef GDB_DWARF2_MACRO_H
|
|
#define GDB_DWARF2_MACRO_H
|
|
|
|
struct buildsym_compunit;
|
|
|
|
extern void dwarf_decode_macros (dwarf2_per_objfile *per_objfile,
|
|
buildsym_compunit *builder,
|
|
const dwarf2_section_info *section,
|
|
const struct line_header *lh,
|
|
unsigned int offset_size,
|
|
unsigned int offset,
|
|
dwarf2_section_info *str_section,
|
|
dwarf2_section_info *str_offsets_section,
|
|
gdb::optional<ULONGEST> str_offsets_base,
|
|
int section_is_gnu, struct dwarf2_cu *cu);
|
|
|
|
#endif /* GDB_DWARF2_MACRO_H */
|