From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by sourceware.org (Postfix) with ESMTPS id E9A323858032 for ; Wed, 10 Nov 2021 01:48:04 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org E9A323858032 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-298-bZkBzSyJNbmy63TJh86v1A-1; Tue, 09 Nov 2021 20:48:02 -0500 X-MC-Unique: bZkBzSyJNbmy63TJh86v1A-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id C2F098799EB; Wed, 10 Nov 2021 01:48:01 +0000 (UTC) Received: from localhost.localdomain.com (unknown [10.22.8.49]) by smtp.corp.redhat.com (Postfix) with ESMTP id F06875C1D0; Wed, 10 Nov 2021 01:48:00 +0000 (UTC) From: Aaron Merey To: gdb-patches@sourceware.org Cc: simon.marchi@polymtl.ca, tom@tromey.com, lsix@lancelotsix.com Subject: [PATCH v4 0/3] Add debuginfod core file support Date: Tue, 9 Nov 2021 20:47:52 -0500 Message-Id: <20211110014755.532490-1-amerey@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" X-Spam-Status: No, score=-7.5 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_NONE, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 10 Nov 2021 01:48:07 -0000 v3 of this series can be found here: https://sourceware.org/pipermail/gdb-patches/2021-August/181416.html Aaron Merey (3): gdb: Add aliases for read_core_file_mappings callbacks gdb: Add soname to build-id mapping for corefiles PR gdb/27570: missing support for debuginfod in core_target::build_file_mappings gdb/arch-utils.c | 15 ++-- gdb/arch-utils.h | 15 ++-- gdb/corelow.c | 46 ++++++++++++- gdb/debuginfod-support.c | 44 ++++++++++++ gdb/debuginfod-support.h | 17 +++++ gdb/gcore.in | 3 + gdb/gdbarch.c | 2 +- gdb/gdbarch.h | 16 ++++- gdb/gdbarch.sh | 14 +++- gdb/linux-tdep.c | 52 ++++++++++---- gdb/progspace.c | 32 +++++++++ gdb/progspace.h | 18 +++++ gdb/solib.c | 69 +++++++++++++++++++ gdb/solib.h | 5 ++ .../gdb.debuginfod/fetch_src_and_symbols.exp | 26 ++++++- 15 files changed, 335 insertions(+), 39 deletions(-) -- 2.31.1