diff options
author | Weimin Pan <weimin.pan@oracle.com> | 2021-09-18 20:41:29 -0400 |
---|---|---|
committer | Weimin Pan <weimin.pan@oracle.com> | 2021-09-18 20:41:29 -0400 |
commit | ffb3f587933f20bf9e6e9a26ac547a8589fac081 (patch) | |
tree | fd933456aeadd7e7608c4bc93d233724d5a50675 /gdb/testsuite/gdb.ctf/ctf-a.h | |
parent | 3733650765bf40c8be16fe0a7b8adc0831cbfe22 (diff) | |
download | gdb-ffb3f587933f20bf9e6e9a26ac547a8589fac081.zip gdb-ffb3f587933f20bf9e6e9a26ac547a8589fac081.tar.gz gdb-ffb3f587933f20bf9e6e9a26ac547a8589fac081.tar.bz2 |
CTF: multi-CU and archive support
Now gdb is capable of debugging executable, which consists of multiple
compilation units (CUs) with the CTF debug info. An executable could
potentially have one or more archives, which, in CTF context, contain
conflicting types.
all changes were made in ctfread.c in which elfctf_build_psymtabs was
modified to handle archives, via the ctf archive iterator and its callback
build_ctf_archive_member and scan_partial_symbols was modified to scan
archives, which are treated as subfiles, to build the psymtabs.
Also changes were made to handle CTF's data object section and function
info section which now share the same format of their contents - an array
of type IDs. New functions ctf_psymtab_add_stt_entries, which is called by
ctf_psymtab_add_stt_obj and ctf_psymtab_add_stt_func, and add_stt_entries,
which is called by add_stt_obj and add_stt_func when setting up psymtabs
and full symtab, respectively.
Diffstat (limited to 'gdb/testsuite/gdb.ctf/ctf-a.h')
-rw-r--r-- | gdb/testsuite/gdb.ctf/ctf-a.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gdb/testsuite/gdb.ctf/ctf-a.h b/gdb/testsuite/gdb.ctf/ctf-a.h new file mode 100644 index 0000000..297d740 --- /dev/null +++ b/gdb/testsuite/gdb.ctf/ctf-a.h @@ -0,0 +1,22 @@ +/* This test program is part of GDB, the GNU debugger. + + Copyright 2021 Free Software Foundation, Inc. + + 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/>. */ + +struct A { + struct B *b; + struct A *next; +}; + |