From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22689 invoked by alias); 8 Sep 2017 13:33:32 -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 22657 invoked by uid 89); 8 Sep 2017 13:33:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-12.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_2,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*MI:tim X-HELO: mga05.intel.com Received: from mga05.intel.com (HELO mga05.intel.com) (192.55.52.43) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 08 Sep 2017 13:33:29 +0000 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga105.fm.intel.com with ESMTP; 08 Sep 2017 06:33:27 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga003.jf.intel.com with ESMTP; 08 Sep 2017 06:33:26 -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 v88DXQVp024572; Fri, 8 Sep 2017 14:33:26 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id v88DXQpL022698; Fri, 8 Sep 2017 15:33:26 +0200 Received: (from twiederh@localhost) by ulvlx001.iul.intel.com with LOCAL id v88DXPvP022694; Fri, 8 Sep 2017 15:33:25 +0200 From: Tim Wiederhake To: gdb-patches@sourceware.org Cc: qiyaoltc@gmail.com Subject: [PATCH v4 0/5] Some Fortran Patches Date: Fri, 08 Sep 2017 13:33:00 -0000 Message-Id: <1504877571-22441-1-git-send-email-tim.wiederhake@intel.com> X-IsSubscribed: yes X-SW-Source: 2017-09/txt/msg00210.txt.bz2 Hi all, this is a set of mostly unrelated Fortran patches that were originally written by Bernhard Heckel. V1 of this series can be found here: https://sourceware.org/ml/gdb-patches/2017-07/msg00317.html V2 of this series can be found here: https://sourceware.org/ml/gdb-patches/2017-07/msg00317.html V3 of this series can be found here: https://sourceware.org/ml/gdb-patches/2017-08/msg00232.html Changes since V3: * Replaced "%test" with "$test" in patch #3. * Added NEWS entry in patch #4. * Merged patches #5 and #6, added fall-through annotation and removed unnecessary changes. With these changes: Patch #1, #3 and #4 were OK'd by Yao. Documentation in Patch #5 (was: #6), was OK'd by Eli. Missing: * OK on patch #2 * OK on NEWS file in patches #4 and #5. Thanks, Tim Bernhard Heckel (5): DWARF: Don't add nameless modules to partial symbol table. Fortran: Accessing fields of inherited types via fully qualified name. Fortran: Ptype, print type extension. Dwarf: Fortran, support DW_TAG_entry_point. Fortran: Nested functions, add scope parameter. gdb/NEWS | 5 + gdb/doc/gdb.texinfo | 3 + gdb/dwarf2read.c | 145 +++++++++++++++++++++++--- gdb/f-exp.y | 7 +- gdb/f-typeprint.c | 28 ++++- gdb/testsuite/gdb.fortran/block-data.exp | 49 +++++++++ gdb/testsuite/gdb.fortran/block-data.f | 56 ++++++++++ gdb/testsuite/gdb.fortran/entry_point.exp | 70 +++++++++++++ gdb/testsuite/gdb.fortran/entry_point.f90 | 48 +++++++++ gdb/testsuite/gdb.fortran/nested-funcs.exp | 20 ++++ gdb/testsuite/gdb.fortran/nested-funcs.f90 | 66 +++++++++++- gdb/testsuite/gdb.fortran/oop_extend_type.exp | 113 ++++++++++++++++++++ gdb/testsuite/gdb.fortran/oop_extend_type.f90 | 56 ++++++++++ gdb/valops.c | 6 ++ 14 files changed, 652 insertions(+), 20 deletions(-) create mode 100644 gdb/testsuite/gdb.fortran/block-data.exp create mode 100644 gdb/testsuite/gdb.fortran/block-data.f create mode 100644 gdb/testsuite/gdb.fortran/entry_point.exp create mode 100644 gdb/testsuite/gdb.fortran/entry_point.f90 mode change 100755 => 100644 gdb/testsuite/gdb.fortran/nested-funcs.exp mode change 100755 => 100644 gdb/testsuite/gdb.fortran/nested-funcs.f90 create mode 100644 gdb/testsuite/gdb.fortran/oop_extend_type.exp create mode 100644 gdb/testsuite/gdb.fortran/oop_extend_type.f90 -- 2.7.4