This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PING 3][PATCH V3 0/6] Fortran: Resolve target types of pointers.


On 15/08/2016 13:51, Bernhard Heckel wrote:
On 08/08/2016 13:18, Bernhard Heckel wrote:
On 11/07/2016 17:12, Bernhard Heckel wrote:
Addressed in V3:
- Don't resolve target types of pointers when resolving pointer types.
- Address pointers to dynamic types in C99 as well.
- Resolve dynamic target types of pointers when actual needed.
- Fix some type naming in Fortran testcases.


Addressed in V2:
- The type of the pointer should be known regardless it is
   associated with target or not, [PATCH V2 1/5].
- Removed [PATCH V1 1/3], moved tests to [PATCH V2 2/5].
- Added tests to print derefenced pointers, [PATCH V2 2/5].
- Fix address print of not allocated arrays/pointer to
   not allocated types, [PATCH V2 4/5]

Bernhard Heckel (6):
   Fortran: Testsuite, fix differences in type naming.
   Fortran: Resolve dynamic properties of pointer types.
   Typeprint: Resolve any dynamic target type of a pointer.
   Fortran: Typeprint, fix dangling types.
   Resolve dynamic target types of pointers.
   Fortran: Testsuite, add cyclic pointers.

  gdb/NEWS                                 |   2 +
  gdb/c-valprint.c                         |  22 +++++
  gdb/f-typeprint.c                        |  95 ++++++++++----------
  gdb/gdbtypes.c                           |  29 ++++++-
  gdb/testsuite/gdb.cp/vla-cxx.cc          |   9 ++
  gdb/testsuite/gdb.cp/vla-cxx.exp         |   9 ++
gdb/testsuite/gdb.fortran/pointers.exp | 143 +++++++++++++++++++++++++++++++ gdb/testsuite/gdb.fortran/pointers.f90 | 109 +++++++++++++++++++++++
  gdb/testsuite/gdb.fortran/print_type.exp | 100 +++++++++++++++++++++
  gdb/testsuite/gdb.fortran/vla-ptype.exp  |  12 +--
  gdb/testsuite/gdb.fortran/vla-type.exp   |   7 +-
  gdb/testsuite/gdb.fortran/vla-value.exp  |  12 ++-
  gdb/testsuite/gdb.mi/mi-var-child-f.exp  |   7 +-
  gdb/testsuite/gdb.mi/mi-vla-fortran.exp  |  27 +++---
  gdb/typeprint.c                          |  19 ++++
  gdb/valops.c                             |  16 +++-
  gdb/valprint.c                           |   6 --
  17 files changed, 543 insertions(+), 81 deletions(-)
  create mode 100644 gdb/testsuite/gdb.fortran/pointers.exp
  create mode 100644 gdb/testsuite/gdb.fortran/pointers.f90
  create mode 100755 gdb/testsuite/gdb.fortran/print_type.exp

Ping PATCH V3 2-6/6

Patch V3 1/6was already reviewed.

Intel Deutschland GmbH
Registered Address: Am Campeon 10-12, 85579 Neubiberg, Germany
Tel: +49 89 99 8853-0, www.intel.de
Managing Directors: Christin Eisenschmid, Christian Lamprechter
Chairperson of the Supervisory Board: Nicole Lau
Registered Office: Munich
Commercial Register: Amtsgericht Muenchen HRB 186928


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]