mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-23 03:29:47 +08:00
[gdb/testsuite] Fix gdb.dwarf2/locexpr-data-member-location.exp with nopie
When running test-case gdb.dwarf2/locexpr-data-member-location.exp with target board unix/-fno-PIE/-no-pie/-m32 I run into: ... (gdb) step^M 26 return 0;^M (gdb) FAIL: gdb.dwarf2/locexpr-data-member-location.exp: step into foo ... The problem is that the test-case tries to mimic some gdb_compile_shlib behaviour using: ... set flags {additional_flags=-fpic debug} get_func_info foo $flags ... but this doesn't work with the target board setting, because we end up doing: ... gcc locexpr-data-member-location-lib.c -fpic -g -lm -fno-PIE -no-pie -m32 \ -o func_addr23029.x ... while gdb_compile_shlib properly filters out the -fno-PIE -no-pie. Consequently, the address for foo determined by get_func_info doesn't match the actual address of foo. Fix this by printing the address of foo using the result of gdb_compile_shlib.
This commit is contained in:
@ -33,16 +33,3 @@ bar (B *v)
|
|||||||
asm ("bar_label: .globl bar_label");
|
asm ("bar_label: .globl bar_label");
|
||||||
return v; /* bar return */
|
return v; /* bar return */
|
||||||
} /* bar end */
|
} /* bar end */
|
||||||
|
|
||||||
/* Some of the DWARF assembler procs (e.g. function_range) compile
|
|
||||||
this file, expecting it to be a complete program with a main()
|
|
||||||
function. When IS_SHAREDLIB is NOT defined, we have main() as
|
|
||||||
defined below. */
|
|
||||||
|
|
||||||
#ifndef IS_SHAREDLIB
|
|
||||||
int
|
|
||||||
main ()
|
|
||||||
{
|
|
||||||
B *b = foo ();
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
|
@ -66,83 +66,93 @@ if ![dwarf2_support] {
|
|||||||
set main_basename ${::gdb_test_file_name}-main
|
set main_basename ${::gdb_test_file_name}-main
|
||||||
set lib_basename ${::gdb_test_file_name}-lib
|
set lib_basename ${::gdb_test_file_name}-lib
|
||||||
|
|
||||||
# We're generating DWARF assembly for the shared object; therefore,
|
# We're generating DWARF assembly for the shared object;
|
||||||
# the source file for the library / shared object must be listed first
|
|
||||||
# (in the standard_testfile invocation) since ${srcfile} is used by
|
|
||||||
# get_func_info (for determining the start, end, and length of a
|
|
||||||
# function).
|
|
||||||
#
|
|
||||||
# The output of Dwarf::assemble will be placed in $lib_basename.S
|
# The output of Dwarf::assemble will be placed in $lib_basename.S
|
||||||
# which will be ${srcfile3} after the execution of standard_testfile.
|
# which will be ${srcfile3} after the execution of standard_testfile.
|
||||||
|
|
||||||
standard_testfile $lib_basename.c $main_basename.c $lib_basename.S
|
standard_testfile $main_basename.c $lib_basename.c $lib_basename.S
|
||||||
|
|
||||||
set libsrc "${::srcdir}/${::subdir}/${::srcfile}"
|
set libsrc "${::srcdir}/${::subdir}/${::srcfile2}"
|
||||||
set lib_so [standard_output_file ${lib_basename}.so]
|
set lib_so [standard_output_file ${lib_basename}.so]
|
||||||
set asm_file [standard_output_file ${::srcfile3}]
|
set asm_file [standard_output_file ${::srcfile3}]
|
||||||
|
|
||||||
# We need to know the size of some types in order to write some of the
|
# Compile the shared library for the first GDB session. Note that debugging
|
||||||
# debugging info that we're about to generate. For that, we ask GDB
|
# symbols will be present for this compilation, because we want to print some
|
||||||
# by debugging the shared object associated with this test case.
|
# type information.
|
||||||
|
|
||||||
# Compile the shared library: -DIS_SHAREDLIB prevents main() from
|
|
||||||
# being defined. Note that debugging symbols will be present for
|
|
||||||
# this compilation.
|
|
||||||
if {[gdb_compile_shlib $libsrc $lib_so \
|
if {[gdb_compile_shlib $libsrc $lib_so \
|
||||||
{additional_flags=-DIS_SHAREDLIB debug}] != ""} {
|
{debug}] != ""} {
|
||||||
untested "failed to compile shared library"
|
untested "failed to compile shared library"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
# Start a fresh GDB and load the shared library.
|
# Compile the main program for use with the shared object. Note we're using
|
||||||
clean_restart $lib_so
|
# debug, such that "finish out of foo" prints:
|
||||||
|
# Value returned is $1 = (class B *) $hex <g_>
|
||||||
|
# instead of:
|
||||||
|
# Value returned is $1 = (B *) $hex <g_>
|
||||||
|
# Note that this compilation is used for all GDB sessions.
|
||||||
|
set exec_options [list debug shlib=$lib_so]
|
||||||
|
if [prepare_for_testing "failed to prepare" ${testfile} \
|
||||||
|
${::srcfile} $exec_options] {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
|
||||||
# Using our running GDB session, determine sizes of several types.
|
# Do whatever is necessary to make sure that the shared library is
|
||||||
set long_size [get_sizeof "long" -1]
|
# loaded for remote targets.
|
||||||
set addr_size [get_sizeof "void *" -1]
|
gdb_load_shlib ${lib_so}
|
||||||
set struct_A_size [get_sizeof "g_A" -1]
|
|
||||||
set struct_B_size [get_sizeof "g_B" -1]
|
|
||||||
|
### First GDB session.
|
||||||
|
|
||||||
|
# Run to foo to make sure foo refers to the function, and not foo@PLT.
|
||||||
|
if ![runto foo qualified] then {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
with_shared_gdb {
|
||||||
|
|
||||||
|
set session_options $exec_options
|
||||||
|
|
||||||
|
# Rather than start a new session, declare the current session the
|
||||||
|
# shared one. Otherwise, get_func_info would compile an executable
|
||||||
|
# in a temp dir, which means -Wl,-rpath,\\\$ORIGIN no longer finds
|
||||||
|
# the shared lib.
|
||||||
|
share_gdb ${srcdir}/${subdir}/$srcfile $session_options
|
||||||
|
|
||||||
|
get_func_info foo $session_options
|
||||||
|
get_func_info bar $session_options
|
||||||
|
|
||||||
|
# Using our running GDB session, determine sizes of several types.
|
||||||
|
set long_size [get_sizeof "long" -1]
|
||||||
|
set addr_size [get_sizeof "void *" -1]
|
||||||
|
set struct_A_size [get_sizeof "g_A" -1]
|
||||||
|
set struct_B_size [get_sizeof "g_B" -1]
|
||||||
|
|
||||||
|
# Retrieve struct offset of MBR in struct TP
|
||||||
|
proc get_offsetof { tp mbr } {
|
||||||
|
return [get_integer_valueof "&((${tp} *) 0)->${mbr}" -1]
|
||||||
|
}
|
||||||
|
|
||||||
|
# Use running GDB session to get struct offsets
|
||||||
|
set A_a [get_offsetof A a]
|
||||||
|
set A_x [get_offsetof A x]
|
||||||
|
set B_a [get_offsetof B a]
|
||||||
|
set B_b [get_offsetof B b]
|
||||||
|
set B_x2 [get_offsetof B x2]
|
||||||
|
}
|
||||||
|
|
||||||
if { $long_size == -1 || $addr_size == -1 \
|
if { $long_size == -1 || $addr_size == -1 \
|
||||||
|| $struct_A_size == -1 || $struct_B_size == -1} {
|
|| $struct_A_size == -1 || $struct_B_size == -1} {
|
||||||
perror "Can't determine type sizes"
|
perror "Can't determine type sizes"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
# Retrieve struct offset of MBR in struct TP
|
|
||||||
proc get_offsetof { tp mbr } {
|
|
||||||
return [get_integer_valueof "&((${tp} *) 0)->${mbr}" -1]
|
|
||||||
}
|
|
||||||
|
|
||||||
# Use running GDB session to get struct offsets
|
|
||||||
set A_a [get_offsetof A a]
|
|
||||||
set A_x [get_offsetof A x]
|
|
||||||
set B_a [get_offsetof B a]
|
|
||||||
set B_b [get_offsetof B b]
|
|
||||||
set B_x2 [get_offsetof B x2]
|
|
||||||
|
|
||||||
# Create the DWARF.
|
# Create the DWARF.
|
||||||
Dwarf::assemble ${asm_file} {
|
Dwarf::assemble ${asm_file} {
|
||||||
declare_labels L
|
declare_labels L
|
||||||
|
global foo_start foo_end
|
||||||
# Find start, end, and length of functions foo and bar.
|
global bar_start bar_end
|
||||||
# These calls to get_func_info will create and set variables
|
global libsrc
|
||||||
# foo_start, bar_start, foo_end, bar_end, foo_len, and
|
|
||||||
# bar_len.
|
|
||||||
#
|
|
||||||
# In order to get the right answers, get_func_info (and,
|
|
||||||
# underneath, function_range) should use the same compiler flags
|
|
||||||
# as those used to make a shared object. For any targets that get
|
|
||||||
# this far, -fpic is probably correct.
|
|
||||||
#
|
|
||||||
# Also, it should be noted that IS_SHAREDLIB is NOT defined as one
|
|
||||||
# of the additional flags. Not defining IS_SHAREDLIB will cause a
|
|
||||||
# main() to be defined for the compilation of the shared library
|
|
||||||
# source file which happens as a result of using get_func_info;
|
|
||||||
# this is currently required in order to this facility.
|
|
||||||
set flags {additional_flags=-fpic debug}
|
|
||||||
get_func_info foo $flags
|
|
||||||
get_func_info bar $flags
|
|
||||||
|
|
||||||
cu { label cu_label } {
|
cu { label cu_label } {
|
||||||
DW_TAG_compile_unit {
|
DW_TAG_compile_unit {
|
||||||
@ -263,17 +273,17 @@ Dwarf::assemble ${asm_file} {
|
|||||||
|
|
||||||
lines {version 2} L {
|
lines {version 2} L {
|
||||||
include_dir "${::srcdir}/${::subdir}"
|
include_dir "${::srcdir}/${::subdir}"
|
||||||
file_name "${::srcfile}" 1
|
file_name "${::srcfile2}" 1
|
||||||
|
|
||||||
# Generate a line table program.
|
# Generate a line table program.
|
||||||
program {
|
program {
|
||||||
DW_LNE_set_address $foo_start
|
DW_LNE_set_address $foo_start
|
||||||
line [gdb_get_line_number "foo prologue"]
|
line [gdb_get_line_number "foo prologue" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
DW_LNE_set_address foo_label
|
DW_LNE_set_address foo_label
|
||||||
line [gdb_get_line_number "foo return"]
|
line [gdb_get_line_number "foo return" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
line [gdb_get_line_number "foo end"]
|
line [gdb_get_line_number "foo end" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
DW_LNE_set_address $foo_end
|
DW_LNE_set_address $foo_end
|
||||||
DW_LNS_advance_line 1
|
DW_LNS_advance_line 1
|
||||||
@ -281,12 +291,12 @@ Dwarf::assemble ${asm_file} {
|
|||||||
DW_LNE_end_sequence
|
DW_LNE_end_sequence
|
||||||
|
|
||||||
DW_LNE_set_address $bar_start
|
DW_LNE_set_address $bar_start
|
||||||
line [gdb_get_line_number "bar prologue"]
|
line [gdb_get_line_number "bar prologue" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
DW_LNE_set_address bar_label
|
DW_LNE_set_address bar_label
|
||||||
line [gdb_get_line_number "bar return"]
|
line [gdb_get_line_number "bar return" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
line [gdb_get_line_number "bar end"]
|
line [gdb_get_line_number "bar end" $libsrc]
|
||||||
DW_LNS_copy
|
DW_LNS_copy
|
||||||
DW_LNE_set_address $bar_end
|
DW_LNE_set_address $bar_end
|
||||||
DW_LNS_advance_line 1
|
DW_LNS_advance_line 1
|
||||||
@ -305,24 +315,20 @@ Dwarf::assemble ${asm_file} {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# Compile the shared object again, but this time include / use the
|
# Compile the shared object again, but this time include / use the
|
||||||
# DWARF info that we've created above. Note that (again)
|
# DWARF info that we've created above. Note the use of the "nodebug" option.
|
||||||
# -DIS_SHAREDLIB is used to prevent inclusion of main() in the shared
|
# Any debugging information that we need will be provided by the DWARF info
|
||||||
# object. Also note the use of the "nodebug" option. Any debugging
|
# created above.
|
||||||
# information that we need will be provided by the DWARF info created
|
|
||||||
# above.
|
|
||||||
if {[gdb_compile_shlib [list $libsrc $asm_file] $lib_so \
|
if {[gdb_compile_shlib [list $libsrc $asm_file] $lib_so \
|
||||||
{additional_flags=-DIS_SHAREDLIB nodebug}] != ""} {
|
{nodebug}] != ""} {
|
||||||
untested "failed to compile shared library"
|
untested "failed to compile shared library"
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
# Compile the main program for use with the shared object.
|
### Second GDB session.
|
||||||
if [prepare_for_testing "failed to prepare" ${testfile} \
|
|
||||||
${::srcfile2} [list debug shlib=$lib_so]] {
|
|
||||||
return -1
|
|
||||||
}
|
|
||||||
|
|
||||||
# Do whatever is necessary to make sure that the shared library is
|
clean_restart $binfile
|
||||||
|
|
||||||
|
# Again, do whatever is necessary to make sure that the shared library is
|
||||||
# loaded for remote targets.
|
# loaded for remote targets.
|
||||||
gdb_load_shlib ${lib_so}
|
gdb_load_shlib ${lib_so}
|
||||||
|
|
||||||
@ -347,6 +353,9 @@ gdb_test "p *$" { = {<A> = {a = 8, x = 9}, b = 10, x2 = 11}} \
|
|||||||
# so we'll do the same here:
|
# so we'll do the same here:
|
||||||
gdb_test "step" "bar \\(.*" "step into bar"
|
gdb_test "step" "bar \\(.*" "step into bar"
|
||||||
|
|
||||||
|
|
||||||
|
### Third GDB session.
|
||||||
|
|
||||||
# We don't want a clean restart here since that will be too clean.
|
# We don't want a clean restart here since that will be too clean.
|
||||||
# The original reproducer for PR28030 set a breakpoint in the shared
|
# The original reproducer for PR28030 set a breakpoint in the shared
|
||||||
# library and then restarted via "run". The command below does roughly
|
# library and then restarted via "run". The command below does roughly
|
||||||
|
@ -268,6 +268,18 @@ proc shared_gdb_disable {} {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Share the current gdb session.
|
||||||
|
|
||||||
|
proc share_gdb { src options } {
|
||||||
|
global shared_gdb_started
|
||||||
|
global shared_gdb_src
|
||||||
|
global shared_gdb_options
|
||||||
|
|
||||||
|
set shared_gdb_started 1
|
||||||
|
set shared_gdb_src $src
|
||||||
|
set shared_gdb_options $options
|
||||||
|
}
|
||||||
|
|
||||||
# See above.
|
# See above.
|
||||||
|
|
||||||
proc shared_gdb_start_use { src options } {
|
proc shared_gdb_start_use { src options } {
|
||||||
@ -299,9 +311,7 @@ proc shared_gdb_start_use { src options } {
|
|||||||
gdb_load "$exe"
|
gdb_load "$exe"
|
||||||
|
|
||||||
if { $shared_gdb_enabled } {
|
if { $shared_gdb_enabled } {
|
||||||
set shared_gdb_started 1
|
share_gdb $src $options
|
||||||
set shared_gdb_src $src
|
|
||||||
set shared_gdb_options $options
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user