From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26516 invoked by alias); 13 Jul 2014 07:46:32 -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 26350 invoked by uid 89); 13 Jul 2014 07:46:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00 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; Sun, 13 Jul 2014 07:46:26 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1X6EUJ-0004iL-Ga from Taimoor_Mirza@mentor.com for gdb-patches@sourceware.org; Sun, 13 Jul 2014 00:46:23 -0700 Received: from SVR-IES-FEM-01.mgc.mentorg.com ([137.202.0.104]) by svr-orw-fem-01.mgc.mentorg.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.4675); Sun, 13 Jul 2014 00:46:23 -0700 Received: from [172.30.8.81] (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; Sun, 13 Jul 2014 08:46:21 +0100 Message-ID: <53C23945.7010709@codesourcery.com> Date: Sun, 13 Jul 2014 07:49:00 -0000 From: Taimoor User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Subject: Re: [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="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-07/txt/msg00308.txt.bz2 ping. Can anyone kindly review this patch series. Thanks, Taimoor 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 >