From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 8nH5Jeoki2E8aAAAWB0awg (envelope-from ) for ; Tue, 09 Nov 2021 20:48:26 -0500 Received: by simark.ca (Postfix, from userid 112) id 888BC1F0C1; Tue, 9 Nov 2021 20:48:26 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (server2.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 11BD01EE14 for ; Tue, 9 Nov 2021 20:48:26 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 82F4F3857C47 for ; Wed, 10 Nov 2021 01:48:25 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 82F4F3857C47 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1636508905; bh=8uG8j8ZQJqgJNYKyCD3IY+11DzeYp83lc/TmaCEyvw8=; h=To:Subject:Date:List-Id:List-Unsubscribe:List-Archive:List-Post: List-Help:List-Subscribe:From:Reply-To:Cc:From; b=r7Mw51JlX/YiJeeSWukUMg1LdQpmnIePGNPnORQVOFTtwyiqM+uu2UxqpJKjff50B 3/1eqHrIth2az52RCSn24mHNShV1ok/OnRI51cCdjL3sKFr+7QWKym+6+7A+quYCOE SdJPURaDtjVMJz5I2Gxu0dzzs0B8uw/76h19bTPc= 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) To: gdb-patches@sourceware.org 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-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: , From: Aaron Merey via Gdb-patches Reply-To: Aaron Merey Cc: tom@tromey.com, lsix@lancelotsix.com Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" 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