From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 65607 invoked by alias); 16 Apr 2015 03:33:02 -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 65541 invoked by uid 89); 16 Apr 2015 03:33:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_LOW,SPF_PASS,T_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; Thu, 16 Apr 2015 03:33:00 +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 1YiaXw-0003iT-HR from Taimoor_Mirza@mentor.com for gdb-patches@sourceware.org; Wed, 15 Apr 2015 20:32:56 -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.3.224.2; Thu, 16 Apr 2015 04:32:55 +0100 From: Taimoor Mirza To: CC: Taimoor Mirza Subject: [PATCH 0/2] Improved variable object invalidation in GDB Date: Thu, 16 Apr 2015 03:33:00 -0000 Message-ID: <1429155160-4816-1-git-send-email-tmirza@codesourcery.com> MIME-Version: 1.0 Content-Type: text/plain X-IsSubscribed: yes X-SW-Source: 2015-04/txt/msg00598.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