From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17581 invoked by alias); 27 Jun 2014 10:14:14 -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 17570 invoked by uid 89); 27 Jun 2014 10:14:13 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,FROM_12LTRDOM autolearn=no 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; Fri, 27 Jun 2014 10:14:12 +0000 Received: from svr-orw-fem-01.mgc.mentorg.com ([147.34.98.93]) by relay1.mentorg.com with esmtp id 1X0TAX-0002XX-Jh from Taimoor_Mirza@mentor.com for gdb-patches@sourceware.org; Fri, 27 Jun 2014 03:14:09 -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); Fri, 27 Jun 2014 03:14:09 -0700 Received: from PKL-TAIMOORMI-LT.mgc.mentorg.com (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; Fri, 27 Jun 2014 11:14:07 +0100 From: Taimoor Mirza To: CC: Taimoor Mirza Subject: [PATCH 0/2] Improved variable object invalidation in GDB Date: Fri, 27 Jun 2014 10:14:00 -0000 Message-ID: <1403864035-30650-1-git-send-email-tmirza@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2014-06/txt/msg00927.txt.bz2 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 -- 1.7.9.5