From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15477 invoked by alias); 5 Aug 2014 11:00:04 -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 15453 invoked by uid 89); 5 Aug 2014 11:00:03 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.7 required=5.0 tests=AWL,BAYES_00,FROM_12LTRDOM autolearn=ham version=3.3.2 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 05 Aug 2014 11:00:02 +0000 Received: from svr-orw-exc-10.mgc.mentorg.com ([147.34.98.58]) by relay1.mentorg.com with esmtp id 1XEcTG-0006ph-NQ from Taimoor_Mirza@mentor.com for gdb-patches@sourceware.org; Tue, 05 Aug 2014 03:59:58 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by SVR-ORW-EXC-10.mgc.mentorg.com with Microsoft SMTPSVC(6.0.3790.4675); Tue, 5 Aug 2014 03:59:58 -0700 Received: from [137.202.156.220] (137.202.0.76) by SVR-IES-FEM-01.mgc.mentorg.com (137.202.0.104) with Microsoft SMTP Server (TLS) id 14.2.247.3; Tue, 5 Aug 2014 11:59:57 +0100 Message-ID: <53E0B929.6060900@codesourcery.com> Date: Tue, 05 Aug 2014 11:00:00 -0000 From: Taimoor User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Subject: [PING][PATCH 0/2] Improved variable object invalidation in GDB References: <1403864035-30650-1-git-send-email-tmirza@codesourcery.com> In-Reply-To: <1403864035-30650-1-git-send-email-tmirza@codesourcery.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-08/txt/msg00048.txt.bz2 Ping. On 06/27/2014 03:13 PM, Taimoor Mirza wrote: > Hi, > This patch series improves variable object invalidation in GDB. > This patch has been regression tested on ppc-gnu-linux > and i686 targets using both simulator and real boards. > > > Taimoor Mirza (2): > Fix varobj updation after symbol removal > Testsuite for varobj updation after symbol removal > > gdb/objfiles.c | 19 ++ > gdb/testsuite/gdb.mi/mi-var-invalidate.exp | 67 ++++++ > gdb/testsuite/gdb.mi/sym-file-lib.c | 26 ++ > gdb/testsuite/gdb.mi/sym-file-loader.c | 353 ++++++++++++++++++++++++++++ > gdb/testsuite/gdb.mi/sym-file-loader.h | 99 ++++++++ > gdb/testsuite/gdb.mi/sym-file-main.c | 84 +++++++ > gdb/varobj.c | 37 +++ > gdb/varobj.h | 3 + > 8 files changed, 688 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 >