From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x12e.google.com (mail-il1-x12e.google.com [IPv6:2607:f8b0:4864:20::12e]) by sourceware.org (Postfix) with ESMTPS id 775C33858C83 for ; Fri, 14 Oct 2022 16:09:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 775C33858C83 Received: by mail-il1-x12e.google.com with SMTP id h18so2756754ilh.3 for ; Fri, 14 Oct 2022 09:09:01 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:message-id:date:subject:to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=96HPsZQL9cTtkAuK8eqexMr9N+ce0/nXDL2SYxFAXtg=; b=ROXDR8ld27hMTkFqo0YSc8GnFs986JPtVzs+bZJT+oTp3QoENplxjWJcmRC8yo+omj qiS1iYEd2SM5yPk4gGkC5VCu5/ZejW7ww3BL7m6TG/zbIZyDQOgGA69nZ6IgxvkexTs6 MiGcbMQdzjr1Nb8l6ttaoV8y//oaVg4M4sTkQNzfbY9zQeOWrOjhk9CSZsWm9KRZkIMX cqP4spnEmBgjM95h2mNIzATcKzhBxtjutisDEXCNpCwgD7erAhI+t5jCoSayVF0qVyyD n6Y+8p8PT7f1QmFkCMgOo/5yDIJ6aALphR+8kWmXgHbioKXODQecCF27l8mummtwscL0 JTpw== X-Gm-Message-State: ACrzQf3nj7DpcGXYMxUnl+KITLGefvgUkhAhGkgGwBSYPhIYSarP+PNa JWCOfry7HfmNgWvRAMRvFNE/D+CdmgmZEw== X-Google-Smtp-Source: AMsMyM5wOuMJZYQKLBNBOaWi3ikg4+be5q96rmuXIVRaXgERgrGIa99JGCZG75IuWDtEbEhalvbGzg== X-Received: by 2002:a92:c514:0:b0:2f9:2b06:6283 with SMTP id r20-20020a92c514000000b002f92b066283mr2802038ilg.287.1665763740741; Fri, 14 Oct 2022 09:09:00 -0700 (PDT) Received: from localhost.localdomain (71-211-160-49.hlrn.qwest.net. [71.211.160.49]) by smtp.gmail.com with ESMTPSA id b7-20020a026f47000000b00363b0517662sm1275501jae.12.2022.10.14.09.09.00 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 14 Oct 2022 09:09:00 -0700 (PDT) From: Tom Tromey To: gdb-patches@sourceware.org Subject: [PATCH v2 0/4] Fix .gdb_index with Ada Date: Fri, 14 Oct 2022 10:08:45 -0600 Message-Id: <20221014160849.919621-1-tromey@adacore.com> X-Mailer: git-send-email 2.34.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-5.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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: Fri, 14 Oct 2022 16:09:04 -0000 This is v2 of my series to fix .gdb_index support with Ada. I believe this fixes the issues pointed out by Tom de Vries in the last version -- in particular, c-linkage-name.exp passes now. This version also adds another patch to remove type linkage names from the cooked index (and thus also .gdb_index). I believe when I wrote the new reader, I thought it was necessary to preserve these -- but since they aren't demangled anywhere, this never had any effect anyway. I regression tested this on x86-64 Fedora 34, using both the default and the cc-with-gdb-index board. Tom