From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 41798 invoked by alias); 22 Oct 2019 06:45:57 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 41783 invoked by uid 89); 22 Oct 2019 06:45:57 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy=submission X-HELO: esa3.mentor.iphmx.com Received: from esa3.mentor.iphmx.com (HELO esa3.mentor.iphmx.com) (68.232.137.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 22 Oct 2019 06:45:55 +0000 IronPort-SDR: OlHIBMRe4qMjD/i49vZTCSqYO2uNdTSzA0XtsnMt0s0YrFA3ZoeHub0kMCo/x696Cut8o8Yvo8 Up2LRuVslN6SlPEQ4quqBOzP0mlUheGLxh2TP0IYY2hJiiXxox3elcaXApPq98wvu/67Mi5MF4 VbAaNkf6G86/R9neOIXDrZ1RR+LIZzMXcl+wS2HY/FKtU5FHVkmj2WFHnPBIZwt51INWJvvNxV v7yNacBrc0+PbCjXVhD9PhOPaGfcxO8pETd8LQINMthMyXHXjX2zQrpM5osXcM59ZHsxw63pMx Tgs= Received: from orw-gwy-02-in.mentorg.com ([192.94.38.167]) by esa3.mentor.iphmx.com with ESMTP; 21 Oct 2019 22:45:52 -0800 IronPort-SDR: y3I95RQX/h7+leZRuc3sFq2g0AH6YzLy/k+65/zb/N4uDW99d/f37ZRMkWYPun1cVCUlBH8rht dEF0H/3CvzmycSrViYETnJsNJsV7vtoejfvXDr0VmSmkZnNBMduxqFsva1qnT6k0AoVxWTMqU3 fkrw5ohDmLN+cE3/uPHtjdMWJtVqIFBfEvw2pDh/mVABK4jhAU2ko5yT7+T3EhEaE9eXyQrzO/ QTlp2Vd4ZK8hZie3Dq+x4JMEs5le+svU6H2hc18TXChR5UvvNHbH7TNu9IO0aGWmfcvnWrlNn3 82s= Subject: Re: [PING][PATCH 0/2] Improved variable object invalidation in GDB To: CC: References: <1571306592-24472-1-git-send-email-Saqlain_Raza@mentor.com> From: Saqlain Raza Message-ID: Date: Tue, 22 Oct 2019 06:45:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: <1571306592-24472-1-git-send-email-Saqlain_Raza@mentor.com> Content-Type: text/plain; charset="utf-8"; format=flowed Content-Transfer-Encoding: 7bit Return-Path: saqlain_raza@mentor.com X-SW-Source: 2019-10/txt/msg00779.txt.bz2 Ping ! Thanks, Saqlain On 10/17/19 3:03 PM, Raza, Saqlain wrote: > Hi, > This patch series improves variable object invalidation in GDB. > > This is a followup to the patch series submission made in https://sourceware.org/ml/gdb-patches/2015-04/msg00598.html . This problem still holds in the latest GDB master. > > Raza, Saqlain (2): > Fix varobj updation after symbol removal > Testsuite for varobj updation after symbol removal > > gdb/ChangeLog | 13 ++ > gdb/objfiles.c | 19 ++ > gdb/testsuite/ChangeLog | 11 + > gdb/testsuite/gdb.mi/mi-var-invalidate.exp | 68 ++++++ > gdb/testsuite/gdb.mi/sym-file-lib.c | 28 +++ > gdb/testsuite/gdb.mi/sym-file-loader.c | 355 +++++++++++++++++++++++++++++ > gdb/testsuite/gdb.mi/sym-file-loader.h | 101 ++++++++ > gdb/testsuite/gdb.mi/sym-file-main.c | 86 +++++++ > gdb/varobj.c | 35 +++ > gdb/varobj.h | 4 + > 10 files changed, 720 insertions(+) > create mode 100644 gdb/testsuite/gdb.mi/sym-file-lib.c > create mode 100644 gdb/testsuite/gdb.mi/sym-file-loader.c > create mode 100644 gdb/testsuite/gdb.mi/sym-file-loader.h > create mode 100644 gdb/testsuite/gdb.mi/sym-file-main.c >