From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 70860 invoked by alias); 11 Aug 2017 11:07:34 -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 70625 invoked by uid 89); 11 Aug 2017 11:07:32 -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=Hx-languages-length:2290 X-HELO: mga01.intel.com Received: from mga01.intel.com (HELO mga01.intel.com) (192.55.52.88) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 11 Aug 2017 11:07:30 +0000 Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 11 Aug 2017 04:07:22 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 11 Aug 2017 04:07:21 -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 v7BB7KBQ007177; Fri, 11 Aug 2017 12:07:20 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id v7BB7E8T009117; Fri, 11 Aug 2017 13:07:14 +0200 Received: (from twiederh@localhost) by ulvlx001.iul.intel.com with LOCAL id v7BB7DAL009113; Fri, 11 Aug 2017 13:07:14 +0200 From: Tim Wiederhake To: gdb-patches@sourceware.org Cc: qiyaoltc@gmail.com Subject: [PATCH v3 0/6] Some Fortran Patches Date: Fri, 11 Aug 2017 11:07:00 -0000 Message-Id: <1502449611-8865-1-git-send-email-tim.wiederhake@intel.com> X-IsSubscribed: yes X-SW-Source: 2017-08/txt/msg00232.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 Changes since V2: * Removed unneccesary variable in f_type_print_varspec_suffix. * Unified "runto MAIN__" in tests. * Replaced kfail with xfail in tests. * Patch #6 mentions changes in the correct ChangeLog. Patch #1 was OK'd by Yao. Patch #6 (documentation) was OK'd by Eli. I believe I have addressed all feedback I got so far, please let me know If I missed something. Regards, Tim *** BLURB HERE *** Bernhard Heckel (6): 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: Enable setting breakpoint on nested functions. Fortran: Nested functions, add scope parameter. gdb/doc/gdb.texinfo | 3 + gdb/dwarf2read.c | 144 +++++++++++++++++++++++--- 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 | 28 +++++ 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 ++ 13 files changed, 654 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