From: Kevin Buettner <kevinb@redhat.com>
To: gdb-patches@sourceware.org
Subject: [PATCH 3/3] Test case for DW_OP_GNU_variable_value
Date: Fri, 03 Aug 2018 04:22:00 -0000 [thread overview]
Message-ID: <20180802212213.16de7f4f@pinnacle.lan> (raw)
In-Reply-To: <20180802210405.5c04ca7a@pinnacle.lan>
gdb/testsuite/ChangeLog:
* gdb.dwarf2/varval.c: New file.
* gdb.dwarf2/varval.exp: New file.
---
gdb/testsuite/gdb.dwarf2/varval.c | 30 ++++
gdb/testsuite/gdb.dwarf2/varval.exp | 279 ++++++++++++++++++++++++++++++++++++
2 files changed, 309 insertions(+)
diff --git a/gdb/testsuite/gdb.dwarf2/varval.c b/gdb/testsuite/gdb.dwarf2/varval.c
new file mode 100644
index 0000000..ce5592e
--- /dev/null
+++ b/gdb/testsuite/gdb.dwarf2/varval.c
@@ -0,0 +1,30 @@
+/* Copyright (C) 2018 Free Software Foundation, Inc.
+
+ This file is part of GDB.
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
+
+/* Test program for DW_OP_GNU_variable_value. */
+
+int var_a = 8;
+int var_b = 3;
+int *var_p = &var_b;
+struct { int a, b, c, d, e, f, g, h; } var_s = { 101, 102, 103, 104, 105, 106, 107, 108 };
+
+int
+main (void)
+{
+ asm ("main_label: .globl main_label");
+ return 0;
+}
diff --git a/gdb/testsuite/gdb.dwarf2/varval.exp b/gdb/testsuite/gdb.dwarf2/varval.exp
new file mode 100644
index 0000000..f4319ae
--- /dev/null
+++ b/gdb/testsuite/gdb.dwarf2/varval.exp
@@ -0,0 +1,279 @@
+# Copyright 2018 Free Software Foundation, Inc.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+# Test support for DW_OP_GNU_variable_value.
+
+load_lib dwarf.exp
+
+# This test can only be run on targets which support DWARF-2 and use gas.
+if ![dwarf2_support] {
+ return 0
+}
+
+# We'll place the output of Dwarf::assemble in varval.S.
+standard_testfile .c .S
+
+# ${testfile} is now "varval". srcfile2 is "varval.S".
+set executable ${testfile}
+set asm_file [standard_output_file ${srcfile2}]
+
+# We need to know the size of integer and address types in order
+# to write some of the debugging info we'd like to generate.
+#
+# For that, we ask GDB by debugging our varval program.
+# Any program would do, but since we already have varval
+# specifically for this testcase, might as well use that.
+if [prepare_for_testing "failed to prepare" ${testfile} ${srcfile}] {
+ return -1
+}
+
+# Create the DWARF.
+Dwarf::assemble ${asm_file} {
+ global srcdir subdir srcfile
+
+ cu {} {
+ DW_TAG_compile_unit {
+ {DW_AT_language @DW_LANG_C_plus_plus}
+ } {
+ declare_labels int_label ptr_label struct_label var_a_label \
+ var_b_label var_c_label var_p_label var_bad_label \
+ varval_label var_s_label var_untyped_label
+
+ set int_size [get_sizeof "int" -1]
+
+ # gdb always assumes references are implemented as pointers.
+ set addr_size [get_sizeof "void *" -1]
+
+ int_label: DW_TAG_base_type {
+ {DW_AT_byte_size ${int_size} DW_FORM_udata}
+ {DW_AT_encoding @DW_ATE_signed}
+ {DW_AT_name "int"}
+ }
+
+ ptr_label: DW_TAG_pointer_type {
+ {DW_AT_type :$int_label}
+ }
+
+ var_a_label: DW_TAG_variable {
+ {DW_AT_name "var_a"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_a"]} SPECIAL_expr}
+ }
+
+ var_b_label: DW_TAG_variable {
+ {DW_AT_name "var_b"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_b"]} SPECIAL_expr}
+ }
+
+ var_c_label: DW_TAG_variable {
+ {DW_AT_name "var_c"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_const_value 53 DW_FORM_sdata}
+ }
+
+ var_p_label: DW_TAG_variable {
+ {DW_AT_name "var_p"}
+ {DW_AT_type :${ptr_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_p"]} SPECIAL_expr}
+ }
+
+ var_bad_label: DW_TAG_variable {
+ {DW_AT_name "var_bad"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ }
+
+ struct_label: DW_TAG_structure_type {
+ {DW_AT_byte_size 8*$int_size DW_FORM_sdata}
+ } {
+ DW_TAG_member {
+ {DW_AT_name "a"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 0*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "b"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 1*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "c"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 2*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "d"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 3*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "e"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 4*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "f"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 5*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "g"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 6*$int_size DW_FORM_udata}
+ }
+ DW_TAG_member {
+ {DW_AT_name "h"}
+ {DW_AT_type :$int_label}
+ {DW_AT_data_member_location 7*$int_size DW_FORM_udata}
+ }
+ }
+
+ var_s_label: DW_TAG_variable {
+ {DW_AT_name "var_s"}
+ {DW_AT_type :${struct_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_s"]} SPECIAL_expr}
+ }
+
+ var_untyped_label: DW_TAG_variable {
+ {DW_AT_name "var_untyped"}
+ {DW_AT_external 1 DW_FORM_flag}
+ {DW_AT_location {DW_OP_addr [gdb_target_symbol "var_b"]} SPECIAL_expr}
+ }
+
+ DW_TAG_subprogram {
+ {MACRO_AT_func { "main" "${srcdir}/${subdir}/${srcfile}" }}
+ {DW_AT_type :${int_label}}
+ {DW_AT_external 1 DW_FORM_flag}
+ } {
+ varval_label: DW_TAG_variable {
+ {DW_AT_name "varval"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_a_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "constval"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_c_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "mixedval"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_c_label}
+ DW_OP_GNU_variable_value ${var_b_label}
+ DW_OP_div
+ DW_OP_GNU_variable_value ${varval_label}
+ DW_OP_plus
+ DW_OP_dup
+ DW_OP_plus
+ DW_OP_GNU_variable_value ${varval_label}
+ DW_OP_minus
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "pointerval"}
+ {DW_AT_type :${ptr_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_p_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "badval"}
+ {DW_AT_type :${int_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_bad_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "structval"}
+ {DW_AT_type :${struct_label}}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_s_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "untypedval"}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${var_untyped_label}
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "bad_die_val1"}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value 0xabcdef11
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ DW_TAG_variable {
+ {DW_AT_name "bad_die_val2"}
+ {DW_AT_location {
+ DW_OP_GNU_variable_value ${ptr_label}+1
+ DW_OP_stack_value
+ } SPECIAL_expr}
+ }
+ }
+ }
+ }
+}
+
+if [prepare_for_testing "failed to prepare" ${executable} [list ${asm_file} ${srcfile}] {}] {
+ return -1
+}
+
+# DW_OP_GNU_variable_value implementation requires a valid frame.
+if ![runto_main] {
+ return -1
+}
+
+gdb_test "print varval" "= 8"
+gdb_test "print constval" "= 53"
+gdb_test "print mixedval" "= 42"
+gdb_test "print pointerval" "= \\(int \\*\\) $hex <var_b>"
+gdb_test "print *pointerval" "= 3"
+gdb_test "print badval" "value has been optimized out"
+
+# Jakub says: "The intended behavior is that the debug info consumer
+# computes the value of that referenced variable at the current PC,
+# and if it can compute it and pushes the value as a generic type
+# integer into the DWARF stack (it is really only meaningful when
+# referring to integral/pointer typed variables)."
+
+gdb_test "print structval" \
+ "Type of DW_OP_GNU_variable_value DIE must be an integer or pointer\\."
+
+gdb_test "print untypedval" \
+ "Type of DW_OP_GNU_variable_value DIE must be an integer or pointer\\."
+
+gdb_test "print bad_die_val1" \
+ "invalid dwarf2 offset 0xabcdef11"
+gdb_test "print bad_die_val2" \
+ "Bad DW_OP_GNU_variable_value DIE\\."
next prev parent reply other threads:[~2018-08-03 4:22 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-03 4:04 [PATCH 0/3] Add support " Kevin Buettner
2018-08-03 4:18 ` [PATCH 1/3] " Kevin Buettner
2018-08-03 18:36 ` Tom Tromey
2018-08-18 20:32 ` Kevin Buettner
2018-08-22 15:35 ` Tom de Vries
2018-08-23 21:12 ` Kevin Buettner
2018-08-24 13:09 ` [RFC, gdb/exp] Handle DW_OP_GNU_variable_value refs to abstract dies Tom de Vries
2018-08-24 13:18 ` Richard Biener
2018-09-04 10:17 ` [PATCH, " Tom de Vries
2018-09-04 13:06 ` Tom de Vries
2018-09-04 21:54 ` Kevin Buettner
2018-09-05 10:53 ` Tom de Vries
2018-09-06 3:46 ` Tom Tromey
2018-09-06 6:40 ` Tom de Vries
2018-09-06 13:11 ` Tom Tromey
2018-08-03 18:43 ` [PATCH 1/3] Add support for DW_OP_GNU_variable_value Tom Tromey
2018-08-03 4:19 ` [PATCH 2/3] Add support of DW_OP_GNU_variable_value to DWARF assembler Kevin Buettner
2018-08-03 18:37 ` Tom Tromey
2018-08-18 20:32 ` Kevin Buettner
2018-08-03 4:22 ` Kevin Buettner [this message]
2018-08-03 18:40 ` [PATCH 3/3] Test case for DW_OP_GNU_variable_value Tom Tromey
2018-08-18 20:32 ` Kevin Buettner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20180802212213.16de7f4f@pinnacle.lan \
--to=kevinb@redhat.com \
--cc=gdb-patches@sourceware.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox