public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Improved variable object invalidation in GDB
@ 2019-10-17 10:03 Raza, Saqlain
  2019-10-17 10:03 ` [PATCH 2/2] Testsuite for varobj updation after symbol removal Raza, Saqlain
                   ` (3 more replies)
  0 siblings, 4 replies; 12+ messages in thread
From: Raza, Saqlain @ 2019-10-17 10:03 UTC (permalink / raw)
  To: gdb-patches; +Cc: taimoor_mirza, Raza, Saqlain

Hi,
This patch series improves variable object invalidation in GDB.

This is a followup to the patch series submission made in https://sourceware.org/ml/gdb-patches/2015-04/msg00598.html . This problem still holds in the latest GDB master.

Raza, Saqlain (2):
  Fix varobj updation after symbol removal
  Testsuite for varobj updation after symbol removal

 gdb/ChangeLog                              |  13 ++
 gdb/objfiles.c                             |  19 ++
 gdb/testsuite/ChangeLog                    |  11 +
 gdb/testsuite/gdb.mi/mi-var-invalidate.exp |  68 ++++++
 gdb/testsuite/gdb.mi/sym-file-lib.c        |  28 +++
 gdb/testsuite/gdb.mi/sym-file-loader.c     | 355 +++++++++++++++++++++++++++++
 gdb/testsuite/gdb.mi/sym-file-loader.h     | 101 ++++++++
 gdb/testsuite/gdb.mi/sym-file-main.c       |  86 +++++++
 gdb/varobj.c                               |  35 +++
 gdb/varobj.h                               |   4 +
 10 files changed, 720 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

-- 
2.8.1

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/2] Improved variable object invalidation in GDB
@ 2015-04-16  3:33 Taimoor Mirza
  2015-04-16  3:33 ` [PATCH 1/2] Fix varobj updation after symbol removal Taimoor Mirza
  0 siblings, 1 reply; 12+ messages in thread
From: Taimoor Mirza @ 2015-04-16  3:33 UTC (permalink / raw)
  To: gdb-patches; +Cc: Taimoor Mirza

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

^ permalink raw reply	[flat|nested] 12+ messages in thread
* [PATCH 0/2] Improved variable object invalidation in GDB
@ 2014-06-27 10:14 Taimoor Mirza
  2014-06-27 10:14 ` [PATCH 1/2] Fix varobj updation after symbol removal Taimoor Mirza
  0 siblings, 1 reply; 12+ messages in thread
From: Taimoor Mirza @ 2014-06-27 10:14 UTC (permalink / raw)
  To: gdb-patches; +Cc: Taimoor Mirza

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

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2019-12-03  9:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-17 10:03 [PATCH 0/2] Improved variable object invalidation in GDB Raza, Saqlain
2019-10-17 10:03 ` [PATCH 2/2] Testsuite for varobj updation after symbol removal Raza, Saqlain
2019-10-22  6:47   ` [PING][PATCH " Saqlain Raza
2019-10-17 10:03 ` [PATCH 1/2] Fix " Raza, Saqlain
2019-10-22  6:46   ` [PING][PATCH " Saqlain Raza
2019-10-22  6:45 ` [PING][PATCH 0/2] Improved variable object invalidation in GDB Saqlain Raza
2019-10-22 12:54 ` [PATCH " Luis Machado
2019-11-07  7:50   ` Saqlain Raza
2019-12-03  9:46     ` [PING][PATCH " Saqlain Raza
  -- strict thread matches above, loose matches on Subject: below --
2015-04-16  3:33 [PATCH " Taimoor Mirza
2015-04-16  3:33 ` [PATCH 1/2] Fix varobj updation after symbol removal Taimoor Mirza
2014-06-27 10:14 [PATCH 0/2] Improved variable object invalidation in GDB Taimoor Mirza
2014-06-27 10:14 ` [PATCH 1/2] Fix varobj updation after symbol removal Taimoor Mirza
2014-07-13  7:50   ` Taimoor

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).