[PATCH v4 00/10] Multiple solib_ops in a program_space
Simon Marchi <[email protected]>
| Newsgroups | gmane.comp.gdb.patches |
|---|---|
| Message-ID | <[email protected]> |
This is v4 of https://inbox.sourceware.org/gdb-patches/[email protected]/ This version has a minor change in patch 8 ("gdb: add objfile -> solib backlink"), which consists of removing the objfile::solibs() method and add an objfile::first_solib() one. Patch 10 was adjusted to use it. The patches without explicit approvals are still: - [06/10] gdb/solib-rocm: move per-inferior data to rocm_solib_ops - [08/10] gdb: add objfile -> solib backlink Below is the original cover letter, which still applies. This series adds support for having multiple solib_ops instances providing solibs for a given program_space. The main use case to justify this change is to make rocm_solib_ops less clunky. When debugging ROCm programs, we need to have an instance of svr4_solib_ops providing solibs for host shared libraries, and an instance of rocm_solib_ops providing solibs for device code objects. Since there can only be one solib_ops in a program, rocm_solib_ops has to wrap and replce the svr4_solib_ops instance previously installed. By allowing multiple solib_ops in the same program_space, the two solib_ops instances can co-exist without knowing each other. The main change is contained in the last patch. The patches before that are cleanup or preparatory patches. Simon Marchi (10): gdb/solib-rocm: assert that host ops isn't rocm_solib_ops gdb/solib-rocm: pass reference to cache to rocm_code_object_stream_file gdb/solib-rocm: add cached_target_fd to manage cached fd lifetime gdb: de-constify some methods of solib_ops gdb/solib: add remove_solib function gdb/solib-rocm: move per-inferior data to rocm_solib_ops gdb/solib-rocm: save inferior in rocm_solib_ops gdb: add objfile -> solib backlink gdb: change default objfile iteration order to start with current objfile gdb: multiple solib_ops per program space gdb/amd-dbgapi-target.c | 3 +- gdb/infcmd.c | 16 +- gdb/inferior.h | 6 +- gdb/infrun.c | 7 +- gdb/objfiles.h | 25 ++ gdb/observable.h | 8 +- gdb/progspace.c | 92 +++++- gdb/progspace.h | 57 ++-- gdb/solib-aix.c | 14 +- gdb/solib-darwin.c | 14 +- gdb/solib-dsbt.c | 10 +- gdb/solib-frv.c | 10 +- gdb/solib-rocm.c | 342 ++++++++++------------- gdb/solib-svr4.c | 60 ++-- gdb/solib-svr4.h | 20 +- gdb/solib-target.c | 4 +- gdb/solib-target.h | 2 +- gdb/solib.c | 322 ++++++++++++--------- gdb/solib.h | 44 ++- gdb/target.c | 2 +- gdb/testsuite/gdb.rocm/symbol-lookup.cpp | 320 +++++++++++++++++++++ gdb/testsuite/gdb.rocm/symbol-lookup.exp | 243 ++++++++++++++++ gdb/windows-tdep.c | 46 +-- 23 files changed, 1184 insertions(+), 483 deletions(-) create mode 100644 gdb/testsuite/gdb.rocm/symbol-lookup.cpp create mode 100644 gdb/testsuite/gdb.rocm/symbol-lookup.exp base-commit: 6e72ff251801b05ec10bed36130647985658d7c3 -- 2.55.0