From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 58718 invoked by alias); 4 Jul 2016 09:52:51 -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 58491 invoked by uid 89); 4 Jul 2016 09:52:48 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RCVD_IN_DNSWL_NONE,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=Resolve, allocated, news X-HELO: mga04.intel.com Received: from mga04.intel.com (HELO mga04.intel.com) (192.55.52.120) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 04 Jul 2016 09:52:46 +0000 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga104.fm.intel.com with ESMTP; 04 Jul 2016 02:52:45 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 04 Jul 2016 02:52:43 -0700 Received: from ulvlx001.iul.intel.com (ulvlx001.iul.intel.com [172.28.207.17]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id u649qgBA011730; Mon, 4 Jul 2016 10:52:42 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id u649qgw4021628; Mon, 4 Jul 2016 11:52:42 +0200 Received: (from heckel@localhost) by ulvlx001.iul.intel.com with œ id u649qfTu021624; Mon, 4 Jul 2016 11:52:42 +0200 From: Bernhard Heckel To: qiyaoltc@gmail.com, eliz@gnu.org Cc: gdb-patches@sourceware.org, Bernhard Heckel Subject: [PATCH V2 0/5] Fortran: Resolve target types of pointers. Date: Mon, 04 Jul 2016 09:52:00 -0000 Message-Id: <1467625943-21294-1-git-send-email-bernhard.heckel@intel.com> X-IsSubscribed: yes X-SW-Source: 2016-07/txt/msg00033.txt.bz2 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 (5): Fortran: Typeprint, fix dangling types. Fortran: Testsuite, add print of pointer types. Fortran: Resolve dynamic target types of pointers. Fortran: Fix query of address of not-allocated types. Fortran: Handle cyclic pointers. gdb/NEWS | 2 + gdb/f-typeprint.c | 95 ++++++++++---------- gdb/gdbtypes.c | 96 +++++++++++++++++++- gdb/testsuite/gdb.fortran/pointers.exp | 147 +++++++++++++++++++++++++++++++ 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 | 4 +- gdb/testsuite/gdb.mi/mi-vla-fortran.exp | 12 ++- gdb/valops.c | 6 ++ 11 files changed, 528 insertions(+), 62 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 -- 2.7.1.339.g0233b80