From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14297 invoked by alias); 20 Feb 2017 20:08:23 -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 14230 invoked by uid 89); 20 Feb 2017 20:08:23 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.6 required=5.0 tests=BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS,TRACKER_ID autolearn=no version=3.3.2 spammy= X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 20 Feb 2017 20:08:21 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 8CABB80F9B; Mon, 20 Feb 2017 20:08:21 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-221.ams2.redhat.com [10.36.116.221]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id v1KK8It7009505 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 20 Feb 2017 15:08:20 -0500 Date: Mon, 20 Feb 2017 20:08:00 -0000 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Victor Leschuk Subject: [commit] [PATCH v2 5/8] DWARF-5: call sites Message-ID: <20170220200817.GE24098@host1.jankratochvil.net> References: <148753968011.4016.6818202131640662529.stgit@host1.jankratochvil.net> <148753971276.4016.12278439867773595722.stgit@host1.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <148753971276.4016.12278439867773595722.stgit@host1.jankratochvil.net> User-Agent: Mutt/1.7.1 (2016-10-04) X-IsSubscribed: yes X-SW-Source: 2017-02/txt/msg00552.txt.bz2 On Sun, 19 Feb 2017 22:28:32 +0100, Jan Kratochvil wrote: > gdb/ChangeLog > 2017-02-11 Jan Kratochvil > > * block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and > DW_AT_GNU_*. > * common/common-exceptions.h (enum errors): Likewise. > * dwarf2-frame.c (class dwarf_expr_executor): Likewise. > * dwarf2expr.c (dwarf_block_to_dwarf_reg) > (dwarf_expr_context::execute_stack_op): Likewise. > * dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece): > Likewise. > * dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type) > (dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value) > (show_entry_values_debug, call_site_to_target_addr) > (func_addr_to_tail_call_list, func_verify_no_selftailcall) > (dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value) > (entry_data_value_free_closure, value_of_dwarf_reg_entry) > (value_of_dwarf_block_entry, indirect_pieced_value) > (symbol_needs_eval_context::push_dwarf_reg_entry_value): > (disassemble_dwarf_expression): Likewise. > * dwarf2read.c (process_die, inherit_abstract_dies) > (read_call_site_scope): Likewise. > * gdbtypes.h (struct func_type, struct call_site_parameter) > (struct call_site): Likewise. > * stack.c (read_frame_arg): Likewise. > * std-operator.def (OP_VAR_ENTRY_VALUE): Likewise. > > gdb/doc/ChangeLog > 2017-02-11 Jan Kratochvil > > * gdb.texinfo (Print Settings, Tail Call Frames): Rename DW_OP_GNU_*, > DW_TAG_GNU_* and DW_AT_GNU_*. > > gdb/testsuite/ChangeLog > 2017-02-11 Jan Kratochvil > > * gdb.arch/amd64-entry-value-param-dwarf5.S: New file. > * gdb.arch/amd64-entry-value-param-dwarf5.c: New file. > * gdb.arch/amd64-entry-value-param-dwarf5.exp: New file. > * gdb.arch/amd64-entry-value.exp: Rename DW_OP_GNU_*, DW_TAG_GNU_* and > DW_AT_GNU_*. 216f72a1ed20a8c9cdaea74e03be24601a1ed974 Jan