From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id 4bRHKA1nomlrWQ0AWB0awg (envelope-from ) for ; Fri, 27 Feb 2026 22:54:53 -0500 Received: by simark.ca (Postfix, from userid 112) id 98C40378002; Fri, 27 Feb 2026 22:54:53 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.3 required=5.0 tests=ARC_SIGNED,ARC_VALID,BAYES_00, MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED,RCVD_IN_VALIDITY_RPBL_BLOCKED, RCVD_IN_VALIDITY_SAFE_BLOCKED autolearn=ham autolearn_force=no version=4.0.1 Received: from vm01.sourceware.org (vm01.sourceware.org [38.145.34.32]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 6892F1E09A for ; Fri, 27 Feb 2026 22:54:51 -0500 (EST) Received: from vm01.sourceware.org (localhost [127.0.0.1]) by sourceware.org (Postfix) with ESMTP id D9C4D4BAD16C for ; Sat, 28 Feb 2026 03:54:50 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D9C4D4BAD16C Received: from simark.ca (simark.ca [158.69.221.121]) by sourceware.org (Postfix) with ESMTPS id 6CA944BA23F4 for ; Sat, 28 Feb 2026 03:54:27 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 6CA944BA23F4 Authentication-Results: sourceware.org; dmarc=fail (p=none dis=none) header.from=efficios.com Authentication-Results: sourceware.org; spf=fail smtp.mailfrom=efficios.com ARC-Filter: OpenARC Filter v1.0.0 sourceware.org 6CA944BA23F4 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=158.69.221.121 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1772250867; cv=none; b=fdPTaAqrzaIXOVlCTKogQ7ozXXkPCx3mMPujbJRPVlyEQd3z/+FJWG/AInvbhUyJFUPFAEjQfWfafIcRSGdKpOXvXgZXnf6YGWMMH5vFdRMNb4lerFxh0YiAG0aXhlJNRid8lSE2qpdBwaa7xk41yyuoE3WG1FQuVdhRCoa1Zgk= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1772250867; c=relaxed/simple; bh=lYekHhoUd46e2Gd85xTdsJrWFZeWDGvAW0ZX8nN0UIc=; h=From:To:Subject:Date:Message-ID:MIME-Version; b=AYBweylp3DhEDgJjqWNXTkaQXnXcSD7gjWKwZdffEvermh8Uuvc1LT6MTvZ6AI6MRpcIZjKqOxNAWhx1VBkpgb6x/dqjNHvoYJUv101ThEepTSLaD/58dvjyGHXhIi+AcUcWt6nfpFQP91ZL24fsKVjKY8cEhAAzbnjlkDqozGg= ARC-Authentication-Results: i=1; server2.sourceware.org DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 6CA944BA23F4 Received: by simark.ca (Postfix) id F34F51E08D; Fri, 27 Feb 2026 22:54:25 -0500 (EST) From: Simon Marchi To: gdb-patches@sourceware.org Cc: Simon Marchi Subject: [PATCH v3 0/9] Make CTF reader build full symtabs, get rid of psymtab Date: Fri, 27 Feb 2026 22:51:47 -0500 Message-ID: <20260228035425.422765-1-simon.marchi@efficios.com> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260217195329.3833518-1-simon.marchi@polymtl.ca> References: <20260217195329.3833518-1-simon.marchi@polymtl.ca> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.30 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gdb-patches-bounces~public-inbox=simark.ca@sourceware.org This is v3 of: https://inbox.sourceware.org/gdb-patches/20260217195329.3833518-1-simon.marchi@polymtl.ca/ The change is that the last patch now includes necessary test changes (to avoid regressions), plus doc and NEWS changes. Simon Marchi (9): gdb/ctf: add debug logging in ctfread.c gdb/ctf: add unique_ptr types gdb/ctf: editorial renames gdb/ctf: use ctf_per_objfile in ctf_archive_iter_psymtab_data and ctf_context gdb/ctf: check return value of ctf_type_align gdb/ctf: add scoped_time_it in elfctf_build_psymtabs gdb: make expanded_symbols_functions hold compunit symtabs gdb/ctf: don't use psymtabs, create symtabs directly gdb: remove psymtab.{c,h} gdb/Makefile.in | 2 - gdb/NEWS | 12 + gdb/ctfread.c | 737 ++++------ gdb/ctfread.h | 2 +- gdb/doc/gdb.texinfo | 102 +- gdb/elfread.c | 8 +- gdb/expanded-symbol.c | 16 +- gdb/expanded-symbol.h | 8 + gdb/jit.c | 16 +- gdb/psymtab.c | 1575 ---------------------- gdb/psymtab.h | 691 ---------- gdb/testsuite/gdb.ada/maint_with_ada.exp | 2 - gdb/testsuite/gdb.base/check-psymtab.c | 28 - gdb/testsuite/gdb.base/check-psymtab.exp | 26 - gdb/testsuite/gdb.base/main-psymtab.exp | 38 - gdb/testsuite/gdb.base/maint.exp | 96 +- gdb/testsuite/gdb.base/readnever.exp | 4 - gdb/testsuite/lib/gdb.exp | 22 - 18 files changed, 375 insertions(+), 3010 deletions(-) delete mode 100644 gdb/psymtab.c delete mode 100644 gdb/psymtab.h delete mode 100644 gdb/testsuite/gdb.base/check-psymtab.c delete mode 100644 gdb/testsuite/gdb.base/check-psymtab.exp delete mode 100644 gdb/testsuite/gdb.base/main-psymtab.exp base-commit: d7f532cb3a46527c56963a2c713e29cee4f64eee -- 2.53.0