From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8164 invoked by alias); 1 Sep 2014 07:28:24 -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 8149 invoked by uid 89); 1 Sep 2014 07:28:23 -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 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; Mon, 01 Sep 2014 07:28:21 +0000 Received: from nat-ies.mentorg.com ([192.94.31.2] helo=SVR-IES-FEM-01.mgc.mentorg.com) by relay1.mentorg.com with esmtp id 1XOM2D-0001wk-Ei from Taimoor_Mirza@mentor.com for gdb-patches@sourceware.org; Mon, 01 Sep 2014 00:28:17 -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; Mon, 1 Sep 2014 08:28:16 +0100 Message-ID: <5404200D.2060802@codesourcery.com> Date: Mon, 01 Sep 2014 07:28: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: Re: [PING][PATCH 0/2] Improved variable object invalidation in GDB References: <1403864035-30650-1-git-send-email-tmirza@codesourcery.com> <53E0B929.6060900@codesourcery.com> In-Reply-To: <53E0B929.6060900@codesourcery.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2014-09/txt/msg00007.txt.bz2 Hi, Ping. Regards, Taimoor On 08/05/2014 03:59 PM, Taimoor wrote: > > 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 >>