From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 396 invoked by alias); 4 Sep 2017 08:37:12 -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 385 invoked by uid 89); 4 Sep 2017 08:37:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=H*r:sk:clients, H*r:sk:static. X-HELO: mail-wm0-f68.google.com Received: from mail-wm0-f68.google.com (HELO mail-wm0-f68.google.com) (74.125.82.68) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 04 Sep 2017 08:37:10 +0000 Received: by mail-wm0-f68.google.com with SMTP id p17so5737137wmd.3 for ; Mon, 04 Sep 2017 01:37:09 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=W5T4wojRqyxdDFTXCn77YD/KaNl7kJn2EslJPIlDKtE=; b=dsbBaTsc2j9B6YvWMh1BV0lcyRw3LciQ9075OD0QNRArcRPgMWBvegaPbcUwUUZh7b KsWYQMSPhXmsbqgB9K3RNpwof4HsjhpervszeDDkVRDbddepDPgeYr6si9qnhREGB36H U2hzcqalL60Z+AcRRk+uxyNZEA78desjHNAZiMbhQIX52ulRNKXHjjQqyE8mXorqb+VR /NvxLZnihh/BTEy/rAtuz+EOFgd6ClH608xt39ZKkBVC8FXgJeJ62pNrlK+nqO7G/SZY AQ8UyTAzMCFkXCIm3m/dt70x7y/xrNt+Uw4nWVLYhBe7+XTLU1D14bVcpy/WlojRrZ1K F+mQ== X-Gm-Message-State: AHPjjUgl2uYahEdw7SrUCryYHnebi0PAO4m+6Gnsxdck6KVtllzqSlFL tAVoqVRWDl45QerL X-Google-Smtp-Source: ADKCNb4Q0e6W/kgFoDcrcqlNB3SvMJYq/3z59K3uzCzdoVX25lgAaHVVdNDAt2BZk3WSGFL0MDBJQQ== X-Received: by 10.28.73.133 with SMTP id w127mr32268wma.55.1504514228306; Mon, 04 Sep 2017 01:37:08 -0700 (PDT) Received: from E107787-LIN (static.42.136.251.148.clients.your-server.de. [148.251.136.42]) by smtp.gmail.com with ESMTPSA id 6sm4103376wre.0.2017.09.04.01.37.07 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Mon, 04 Sep 2017 01:37:07 -0700 (PDT) From: Yao Qi To: Tim Wiederhake Cc: gdb-patches@sourceware.org, Bernhard Heckel Subject: Re: [PATCH v3 4/6] Dwarf: Fortran, support DW_TAG_entry_point. References: <1502449611-8865-1-git-send-email-tim.wiederhake@intel.com> <1502449611-8865-5-git-send-email-tim.wiederhake@intel.com> Date: Mon, 04 Sep 2017 08:37:00 -0000 In-Reply-To: <1502449611-8865-5-git-send-email-tim.wiederhake@intel.com> (Tim Wiederhake's message of "Fri, 11 Aug 2017 13:06:49 +0200") Message-ID: <868thueu6o.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-09/txt/msg00029.txt.bz2 Tim Wiederhake writes: > xxxx-yy-zz Bernhard Heckel > Tim Wiederhake > > gdb/ChangeLog: > PR fortran/8043 > PR fortran/9279 > * gdb/dwarf2read.c (add_partial_symbol): Handle DW_TAG_entry_point. > (add_partial_entry_point): New function. > (add_partial_subprogram): Search for entry_points. > (process_die): Handle DW_TAG_entry_point. > (dwarf2_get_pc_bounds): Update low pc from DWARF. > (load_partial_dies): Save DW_TAG_entry_point's. > (load_partial_dies): Save DW_TAG_entry_point to hash table. > (load_partial_dies): Look into child's of DW_TAG_sub_program > for fortran. > (new_symbol_full): Process DW_TAG_entry_point. > (read_type_die_1): Handle DW_TAG_entry_point. > > gdb/testsuite/ChangeLog: > * gdb.fortran/entry_point.f90: New file. > * gdb.fortran/entry_point.exp: New file. Hi Tim, The patch is good to me. Can you add a NEWS entry for this? --=20 Yao (=E9=BD=90=E5=B0=A7)