From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 76963 invoked by alias); 21 Jul 2017 09:25:45 -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 76821 invoked by uid 89); 21 Jul 2017 09:25:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-7.9 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_3,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD autolearn=ham version=3.3.2 spammy=H*MI:tim X-HELO: mga03.intel.com Received: from mga03.intel.com (HELO mga03.intel.com) (134.134.136.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 21 Jul 2017 09:25:43 +0000 Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jul 2017 02:25:41 -0700 X-ExtLoop1: 1 Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 21 Jul 2017 02:25:38 -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 v6L9PbSc011615; Fri, 21 Jul 2017 10:25:37 +0100 Received: from ulvlx001.iul.intel.com (localhost [127.0.0.1]) by ulvlx001.iul.intel.com with ESMTP id v6L9PXZY013329; Fri, 21 Jul 2017 11:25:33 +0200 Received: (from twiederh@localhost) by ulvlx001.iul.intel.com with LOCAL id v6L9PWkI013325; Fri, 21 Jul 2017 11:25:33 +0200 From: Tim Wiederhake To: gdb-patches@sourceware.org Subject: [PATCH 0/6] Some Fortran patches Date: Fri, 21 Jul 2017 09:25:00 -0000 Message-Id: <1500629040-12972-1-git-send-email-tim.wiederhake@intel.com> X-IsSubscribed: yes X-SW-Source: 2017-07/txt/msg00317.txt.bz2 Hi all, this is a set of mostly unrelated Fortran patches that were originally written by Bernhard Heckel. I rebased them onto current master and, in patch #4, added some error checking to dwarf2_get_pc_bounds. Regards, Tim 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 | 146 ++++++++++++++++++++++++-- gdb/f-exp.y | 7 +- gdb/f-typeprint.c | 31 +++++- 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, 662 insertions(+), 17 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