2017-01-01 07:50:51 +01:00
|
|
|
# Copyright 1992-2017 Free Software Foundation, Inc.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
# 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
|
2007-08-23 20:14:19 +02:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 03:35:26 +02:00
|
|
|
# (at your option) any later version.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
1999-04-16 03:35:26 +02:00
|
|
|
# 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.
|
2007-08-23 20:14:19 +02:00
|
|
|
#
|
1999-04-16 03:35:26 +02:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 20:14:19 +02:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
# This file was written by Fred Fish. (fnf@cygnus.com)
|
|
|
|
# and modified by Bob Manson. (manson@cygnus.com)
|
|
|
|
|
test suite update - gdb.base/[cd]
Convert files gdb.base/[cd]*.exp to use standard_output_file et al.
* call-ar-st.exp, call-rt-st.exp, call-sc.exp,
call-signal-resume.exp, call-strs.exp, callexit.exp,
callfuncs.exp, catch-load.exp, catch-syscall.exp, charset.exp,
checkpoint.exp, chng-syms.exp, code-expr.exp, code_elim.exp,
commands.exp, completion.exp, complex.exp, cond-expr.exp,
condbreak.exp, consecutive.exp, constvars.exp, corefile.exp,
ctxobj.exp, cursal.exp, cvexpr.exp, dbx.exp, default.exp,
define.exp, del.exp, detach.exp, dfp-test.exp, display.exp,
dmsym.exp, dump.exp, dup-sect.exp: Use standard_testfile,
standard_output_file, prepare_for_testing, clean_restart.
2013-06-27 20:49:03 +02:00
|
|
|
standard_testfile
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2011-05-30 04:51:58 +02:00
|
|
|
set compile_flags {debug}
|
|
|
|
if [support_complex_tests] {
|
|
|
|
lappend compile_flags "additional_flags=-DTEST_COMPLEX"
|
|
|
|
}
|
|
|
|
|
2002-01-06 15:42:39 +01:00
|
|
|
# Some targets can't do function calls, so don't even bother with this
|
|
|
|
# test.
|
1999-04-16 03:35:26 +02:00
|
|
|
if [target_info exists gdb,cannot_call_functions] {
|
2016-12-01 21:40:05 +01:00
|
|
|
unsupported "this target can not call functions"
|
1999-04-16 03:35:26 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-09-02 10:22:13 +02:00
|
|
|
set skip_float_test [gdb_skip_float_test]
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
# FIXME: Before calling this proc, we should probably verify that
|
|
|
|
# we can call inferior functions and get a valid integral value
|
|
|
|
# returned.
|
|
|
|
# Note that it is OK to check for 0 or 1 as the returned values, because C
|
|
|
|
# specifies that the numeric value of a relational or logical expression
|
|
|
|
# (computed in the inferior) is 1 for true and 0 for false.
|
|
|
|
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
proc do_function_calls {prototypes} {
|
2016-09-02 10:22:13 +02:00
|
|
|
global gdb_prompt skip_float_test
|
1999-08-03 01:48:37 +02:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
# We need to up this because this can be really slow on some boards.
|
2013-06-07 19:31:09 +02:00
|
|
|
set timeout 60
|
1999-04-16 03:35:26 +02:00
|
|
|
|
2012-09-20 16:43:48 +02:00
|
|
|
# If any of these calls segv we don't want to affect subsequent tests.
|
|
|
|
# E.g., we want to ensure register values are restored.
|
|
|
|
gdb_test_no_output "set unwindonsignal on"
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_char_values(0,0)" " = 0"
|
|
|
|
gdb_test "p t_char_values('a','b')" " = 1"
|
|
|
|
gdb_test "p t_char_values(char_val1,char_val2)" " = 1"
|
|
|
|
gdb_test "p t_char_values('a',char_val2)" " = 1"
|
|
|
|
gdb_test "p t_char_values(char_val1,'b')" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p t_short_values(0,0)" " = 0"
|
|
|
|
gdb_test "p t_short_values(10,-23)" " = 1"
|
|
|
|
gdb_test "p t_short_values(short_val1,short_val2)" " = 1"
|
|
|
|
gdb_test "p t_short_values(10,short_val2)" " = 1"
|
|
|
|
gdb_test "p t_short_values(short_val1,-23)" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p t_int_values(0,0)" " = 0"
|
|
|
|
gdb_test "p t_int_values(87,-26)" " = 1"
|
|
|
|
gdb_test "p t_int_values(int_val1,int_val2)" " = 1"
|
|
|
|
gdb_test "p t_int_values(87,int_val2)" " = 1"
|
|
|
|
gdb_test "p t_int_values(int_val1,-26)" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p t_long_values(0,0)" " = 0"
|
|
|
|
gdb_test "p t_long_values(789,-321)" " = 1"
|
|
|
|
gdb_test "p t_long_values(long_val1,long_val2)" " = 1"
|
|
|
|
gdb_test "p t_long_values(789,long_val2)" " = 1"
|
|
|
|
gdb_test "p t_long_values(long_val1,-321)" " = 1"
|
|
|
|
|
2016-09-02 10:22:13 +02:00
|
|
|
if {!$skip_float_test} {
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_float_values(0.0,0.0)" " = 0"
|
|
|
|
|
|
|
|
# These next four tests fail on the mn10300.
|
|
|
|
# The first value is passed in regs, the other in memory.
|
|
|
|
# Gcc emits different stabs for the two parameters; the first is
|
|
|
|
# claimed to be a float, the second a double.
|
|
|
|
# dbxout.c in gcc claims this is the desired behavior.
|
2010-03-24 22:06:33 +01:00
|
|
|
# These tests also fail for RealView, because GDB can not tell that
|
|
|
|
# the function is unprototyped.
|
1999-08-03 01:48:37 +02:00
|
|
|
setup_xfail "mn10300-*-*"
|
2010-03-24 22:06:33 +01:00
|
|
|
if { [test_compiler_info "armcc-*"] } { setup_xfail "*-*-*" }
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_float_values(3.14159,-2.3765)" " = 1"
|
1999-08-03 01:48:37 +02:00
|
|
|
setup_xfail "mn10300-*-*"
|
2010-03-24 22:06:33 +01:00
|
|
|
if { [test_compiler_info "armcc-*"] } { setup_xfail "*-*-*" }
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_float_values(float_val1,float_val2)" " = 1"
|
1999-08-03 01:48:37 +02:00
|
|
|
setup_xfail "mn10300-*-*"
|
2010-03-24 22:06:33 +01:00
|
|
|
if { [test_compiler_info "armcc-*"] } { setup_xfail "*-*-*" }
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_float_values(3.14159,float_val2)" " = 1"
|
1999-08-03 01:48:37 +02:00
|
|
|
setup_xfail "mn10300-*-*"
|
2010-03-24 22:06:33 +01:00
|
|
|
if { [test_compiler_info "armcc-*"] } { setup_xfail "*-*-*" }
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_float_values(float_val1,-2.3765)" " = 1"
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
# Same, via unprototyped function pointer (t_float_values is
|
|
|
|
# always unprototyped).
|
|
|
|
gdb_test "p ((int (*) ()) t_float_values)(float_val1,-2.3765)" " = 1"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
# Test passing of arguments which might not be widened.
|
|
|
|
gdb_test "p t_float_values2(0.0,0.0)" " = 0"
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
# Same, via function pointer.
|
|
|
|
if {$prototypes} {
|
|
|
|
gdb_test "p ((int (*) (float, float)) t_float_values2)(0.0,0.0)" " = 0"
|
|
|
|
} else {
|
|
|
|
gdb_test "p ((int (*) ()) t_float_values2)(0.0,0.0)" " = 0"
|
|
|
|
}
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
gdb_test "p t_float_values2(3.14159,float_val2)" " = 1"
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
if {$prototypes} {
|
|
|
|
gdb_test "p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)" " = 1"
|
|
|
|
} else {
|
|
|
|
gdb_test "p ((int (*) ()) t_float_values2)(3.14159,float_val2)" " = 1"
|
|
|
|
}
|
2001-12-07 22:17:00 +01:00
|
|
|
|
2016-12-01 21:41:23 +01:00
|
|
|
gdb_test "p t_float_many_args (float_val1, float_val2, float_val3, float_val4, float_val5, float_val6, float_val7, float_val8, float_val9, float_val10, float_val11, float_val12, float_val13, float_val14, float_val15)" " = 1" "call function with many float arguments."
|
2008-02-06 04:54:12 +01:00
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_small_values(1,2,3,4,5,6,7,8,9,10)" " = 55"
|
|
|
|
|
|
|
|
gdb_test "p t_double_values(0.0,0.0)" " = 0"
|
|
|
|
gdb_test "p t_double_values(45.654,-67.66)" " = 1"
|
|
|
|
gdb_test "p t_double_values(double_val1,double_val2)" " = 1"
|
|
|
|
gdb_test "p t_double_values(45.654,double_val2)" " = 1"
|
|
|
|
gdb_test "p t_double_values(double_val1,-67.66)" " = 1"
|
2007-08-22 17:13:04 +02:00
|
|
|
|
2016-12-01 21:41:23 +01:00
|
|
|
gdb_test "p t_double_many_args (double_val1, double_val2, double_val3, double_val4, double_val5, double_val6, double_val7, double_val8, double_val9, double_val10, double_val11, double_val12, double_val13, double_val14, double_val15)" " = 1" "call function with many double arguments."
|
2008-02-06 04:54:12 +01:00
|
|
|
|
2007-08-22 17:13:04 +02:00
|
|
|
gdb_test "p t_double_int(99.0, 1)" " = 0"
|
|
|
|
gdb_test "p t_double_int(99.0, 99)" " = 1"
|
|
|
|
gdb_test "p t_int_double(99, 1.0)" " = 0"
|
|
|
|
gdb_test "p t_int_double(99, 99.0)" " = 1"
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2011-05-30 04:51:58 +02:00
|
|
|
if [support_complex_tests] {
|
|
|
|
gdb_test "p t_float_complex_values(fc1, fc2)" " = 1"
|
|
|
|
gdb_test "p t_float_complex_values(fc3, fc4)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p t_float_complex_many_args(fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4, fc1, fc2, fc3, fc4)" " = 1"
|
|
|
|
gdb_test "p t_float_complex_many_args(fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1, fc1)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p t_double_complex_values(dc1, dc2)" " = 1"
|
|
|
|
gdb_test "p t_double_complex_values(dc3, dc4)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p t_double_complex_many_args(dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4, dc1, dc2, dc3, dc4)" " = 1"
|
|
|
|
gdb_test "p t_double_complex_many_args(dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1, dc1)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p t_long_double_complex_values(ldc1, ldc2)" " = 1"
|
|
|
|
gdb_test "p t_long_double_complex_values(ldc3, ldc4)" " = 0"
|
|
|
|
gdb_test "p t_long_double_complex_many_args(ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4, ldc1, ldc2, ldc3, ldc4)" " = 1"
|
|
|
|
gdb_test "p t_long_double_complex_many_args(ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1,ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1, ldc1)" " = 0"
|
|
|
|
}
|
|
|
|
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_string_values(string_val2,string_val1)" " = 0"
|
|
|
|
gdb_test "p t_string_values(string_val1,string_val2)" " = 1"
|
|
|
|
gdb_test "p t_string_values(\"string 1\",\"string 2\")" " = 1"
|
|
|
|
gdb_test "p t_string_values(\"string 1\",string_val2)" " = 1"
|
|
|
|
gdb_test "p t_string_values(string_val1,\"string 2\")" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p t_char_array_values(char_array_val2,char_array_val1)" " = 0"
|
|
|
|
gdb_test "p t_char_array_values(char_array_val1,char_array_val2)" " = 1"
|
|
|
|
gdb_test "p t_char_array_values(\"carray 1\",\"carray 2\")" " = 1"
|
|
|
|
gdb_test "p t_char_array_values(\"carray 1\",char_array_val2)" " = 1"
|
|
|
|
gdb_test "p t_char_array_values(char_array_val1,\"carray 2\")" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p doubleit(4)" " = 8"
|
|
|
|
gdb_test "p add(4,5)" " = 9"
|
|
|
|
gdb_test "p t_func_values(func_val2,func_val1)" " = 0"
|
|
|
|
gdb_test "p t_func_values(func_val1,func_val2)" " = 1"
|
|
|
|
|
2008-07-27 04:00:04 +02:00
|
|
|
gdb_test "p function_struct.func(5)" " = 10"
|
|
|
|
gdb_test "p function_struct_ptr->func(10)" " = 20"
|
|
|
|
|
2003-11-19 19:34:52 +01:00
|
|
|
# GDB currently screws up the passing of function parameters for
|
|
|
|
# ABIs that use function descriptors. Instead of passing the
|
|
|
|
# address of te function descriptor, GDB passes the address of the
|
|
|
|
# function body. This results in the called function treating the
|
|
|
|
# first few instructions of the function proper as a descriptor
|
|
|
|
# and attempting a jump through that (a totally random address).
|
2010-05-25 23:02:00 +02:00
|
|
|
setup_kfail gdb/1457 "rs6000*-*-aix*"
|
|
|
|
setup_kfail gdb/1457 "powerpc*-*-aix*"
|
2003-11-19 19:34:52 +01:00
|
|
|
gdb_test "p t_func_values(add,func_val2)" " = 1"
|
2010-05-25 23:02:00 +02:00
|
|
|
setup_kfail gdb/1457 "rs6000*-*-aix*"
|
|
|
|
setup_kfail gdb/1457 "powerpc*-*-aix*"
|
2003-11-19 19:34:52 +01:00
|
|
|
gdb_test "p t_func_values(func_val1,doubleit)" " = 1"
|
2010-05-25 23:02:00 +02:00
|
|
|
setup_kfail gdb/1457 "rs6000*-*-aix*"
|
|
|
|
setup_kfail gdb/1457 "powerpc*-*-aix*"
|
2003-11-19 19:34:52 +01:00
|
|
|
gdb_test "p t_call_add(add,3,4)" " = 7"
|
1999-08-03 01:48:37 +02:00
|
|
|
gdb_test "p t_call_add(func_val1,3,4)" " = 7"
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
gdb_test "p t_enum_value1(enumval1)" " = 1"
|
|
|
|
gdb_test "p t_enum_value1(enum_val1)" " = 1"
|
|
|
|
gdb_test "p t_enum_value1(enum_val2)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p t_enum_value2(enumval2)" " = 1"
|
|
|
|
gdb_test "p t_enum_value2(enum_val2)" " = 1"
|
|
|
|
gdb_test "p t_enum_value2(enum_val1)" " = 0"
|
|
|
|
|
|
|
|
gdb_test "p sum_args(1,{2})" " = 2"
|
|
|
|
gdb_test "p sum_args(2,{2,3})" " = 5"
|
|
|
|
gdb_test "p sum_args(3,{2,3,4})" " = 9"
|
|
|
|
gdb_test "p sum_args(4,{2,3,4,5})" " = 14"
|
|
|
|
|
|
|
|
gdb_test "p sum10 (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)" " = 55"
|
|
|
|
|
|
|
|
gdb_test "p cmp10 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9)" " = 1"
|
|
|
|
|
|
|
|
gdb_test "p t_structs_c(struct_val1)" "= 120 'x'" \
|
|
|
|
"call inferior func with struct - returns char"
|
|
|
|
gdb_test "p t_structs_s(struct_val1)" "= 87" \
|
2004-02-20 07:47:33 +01:00
|
|
|
"call inferior func with struct - returns short"
|
1999-04-16 03:35:26 +02:00
|
|
|
gdb_test "p t_structs_i(struct_val1)" "= 76" \
|
|
|
|
"call inferior func with struct - returns int"
|
|
|
|
gdb_test "p t_structs_l(struct_val1)" "= 51" \
|
|
|
|
"call inferior func with struct - returns long"
|
2010-12-02 22:34:14 +01:00
|
|
|
|
2016-09-02 10:22:13 +02:00
|
|
|
if {!$skip_float_test} {
|
2010-12-02 22:34:14 +01:00
|
|
|
gdb_test "p t_structs_f(struct_val1)" "= 2.12.*" \
|
|
|
|
"call inferior func with struct - returns float"
|
|
|
|
gdb_test "p t_structs_d(struct_val1)" "= 9.87.*" \
|
|
|
|
"call inferior func with struct - returns double"
|
|
|
|
}
|
|
|
|
|
2011-05-30 04:51:58 +02:00
|
|
|
if [support_complex_tests] {
|
|
|
|
|
|
|
|
gdb_test "p t_structs_fc(struct_val1)" ".*= 3 \\+ 3 \\* I" \
|
|
|
|
"call inferior func with struct - returns float _Complex"
|
|
|
|
|
|
|
|
gdb_test "p t_structs_dc(struct_val1)" ".*= 4 \\+ 4 \\* I" \
|
|
|
|
"call inferior func with struct - returns double _Complex"
|
|
|
|
|
|
|
|
gdb_test "p t_structs_ldc(struct_val1)" "= 5 \\+ 5 \\* I" \
|
|
|
|
"call inferior func with struct - returns long double _Complex"
|
|
|
|
}
|
|
|
|
|
2015-09-15 22:21:28 +02:00
|
|
|
gdb_test "p t_structs_a(struct_val1)" "= (.unsigned char .. )?<.*buf.*> \"foo\"" \
|
1999-04-16 03:35:26 +02:00
|
|
|
"call inferior func with struct - returns char *"
|
2012-09-20 16:43:48 +02:00
|
|
|
|
|
|
|
# Restore default value.
|
|
|
|
gdb_test_no_output "set unwindonsignal off"
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|
|
|
|
|
2000-11-06 21:38:02 +01:00
|
|
|
# Procedure to get current content of all registers.
|
2007-03-08 21:08:02 +01:00
|
|
|
proc fetch_all_registers {test} {
|
2000-11-06 21:38:02 +01:00
|
|
|
global gdb_prompt
|
|
|
|
|
2007-03-08 21:08:02 +01:00
|
|
|
set all_registers_lines {}
|
|
|
|
set bad -1
|
2009-03-22 22:11:45 +01:00
|
|
|
# Former trailing `\[\r\n\]+' may eat just \r leaving \n in the buffer
|
|
|
|
# corrupting the next matches.
|
2007-03-08 21:08:02 +01:00
|
|
|
if {[gdb_test_multiple "info all-registers" $test {
|
2009-03-22 22:11:45 +01:00
|
|
|
-re "info all-registers\r\n" {
|
2007-03-08 21:08:02 +01:00
|
|
|
exp_continue
|
|
|
|
}
|
|
|
|
-ex "The program has no registers now" {
|
|
|
|
set bad 1
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 22:11:45 +01:00
|
|
|
-re "^bspstore\[ \t\]+\[^\r\n\]+\r\n" {
|
2007-01-31 16:37:49 +01:00
|
|
|
if [istarget "ia64-*-*"] {
|
|
|
|
# Filter out bspstore which is specially tied to bsp,
|
|
|
|
# giving spurious differences.
|
2007-03-08 21:08:02 +01:00
|
|
|
} else {
|
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
ChangeLog:
* s390-tdep.h (S390_ORIG_R2_REGNUM): Define.
(S390_LAST_BREAK_REGNUM): Likewise.
(S390_SYSTEM_CALL_REGNUM): Likewise.
(S390_NUM_REGS): Update.
(s390_regmap_last_break): Add declaration.
(s390x_regmap_last_break): Likewise.
(s390_regmap_system_call): Likewise.
(tdesc_s390_linux32v1): Add declaration.
(tdesc_s390_linux32v2): Likewise.
(tdesc_s390_linux64v1): Likewise.
(tdesc_s390_linux64v2): Likewise.
(tdesc_s390x_linux64v1): Likewise.
(tdesc_s390x_linux64v2): Likewise.
* s390-tdep.c: Include new target description files
"features/s390-linux32v1.c", "features/s390-linux32v2.c",
"features/s390-linux64v1.c", "features/s390-linux64v2.c",
"features/s390x-linux64v1.c", and "features/s390x-linux64v2.c".
(s390_cannot_store_register): New function.
(s390_write_pc): Likewise.
(s390_dwarf_regmap): Add fields for new registers.
(s390_regmap_gregset): Likewise.
(s390x_regmap_gregset): Likewise.
(s390_regmap_fpregset): Likewise.
(s390_regmap_upper): Likewise.
(s390_regmap_last_break): New variable.
(s390x_regmap_last_break): Likewise.
(s390_regmap_system_call): Likewise.
(s390_last_break_regset): Likewise.
(s390x_last_break_regset): Likewise.
(s390_system_call_regset): Likewise.
(s390_upper_regset_sections): Rename to ...
(s390_linux64_regset_sections): ... this.
(s390_linux32_regset_sections): New variable.
(s390x_linux64_regset_sections): Likewise.
(s390_linux32v1_regset_sections): Likewise.
(s390_linux32v2_regset_sections): Likewise.
(s390_linux64v1_regset_sections): Likewise.
(s390_linux64v2_regset_sections): Likewise.
(s390x_linux64v1_regset_sections): Likewise.
(s390x_linux64v2_regset_sections): Likewise.
(s390_regset_from_core_section): Handle .reg-s390-last-break and
.reg-s390-system-call core file sections.
(s390_core_read_description): Check for presence of
.reg-s390-last-break and .reg-s390-system-call core file
sections and return appropriate target description.
(s390_gdbarch_init): Detect Linux-specific registers "orig_r2",
"last_break" and "system_call" in target description. Install
appropriate gdbarch_core_regset_sections array.
Call set_gdbarch_cannot_store_register and set_gdbarch_write_pc.
(_initialize_s390_tdep): Initialize additional target descriptions.
* s390-nat.c: Include "elf/common.h".
(PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
(have_regset_last_break): New static variable.
(have_regset_system_call): Likewise.
(s390_native_supply): Handle S390_ORIG_R2_REGNUM.
(s390_native_collect): Likewise.
(fetch_regset, store_regset, check_regset): New functions.
(s390_linux_fetch_inferior_registers): Handle S390_LAST_BREAK_REGNUM
and S390_SYSTEM_CALL_REGNUM.
(s390_linux_store_inferior_registers): Likewise.
(s390_read_description): Check for presence of NT_S390_LAST_BREAK
and NT_S390_SYSTEM_CALL regsets and use appropriate description.
* features/Makefile (WHICH): Add s390-linux32v1, s390-linux64v1,
s390x-linux64v1, s390-linux32v2, s390-linux64v2, and s390x-linux64v2.
(s390-linux32v1-expedite): Define.
(s390-linux32v2-expedite): Likewise.
(s390-linux64v1-expedite): Likewise.
(s390-linux64v2-expedite): Likewise.
(s390x-linux64v1-expedite): Likewise.
(s390x-linux64v2-expedite): Likewise.
* features/s390-linux32.xml: Add orig_r2 register.
* features/s390-linux64.xml: Likewise.
* features/s390x-linux64.xml: Likewise.
* features/s390-linux32v1.xml: New file.
* features/s390-linux32v2.xml: Likewise.
* features/s390-linux64v1.xml: Likewise.
* features/s390-linux64v2.xml: Likewise.
* features/s390x-linux64v1.xml: Likewise.
* features/s390x-linux64v2.xml: Likewise.
* features/s390-linux32.c: Regenerate.
* features/s390-linux64.c: Likewise.
* features/s390x-linux64.c: Likewise.
* features/s390-linux32v1.c: New generated file.
* features/s390-linux32v2.c: Likewise.
* features/s390-linux64v1.c: Likewise.
* features/s390-linux64v2.c: Likewise.
* features/s390x-linux64v1.c: Likewise.
* features/s390x-linux64v2.c: Likewise.
* regformats/s390-linux32.dat: Regenerate.
* regformats/s390-linux64.dat: Regenerate.
* regformats/s390x-linux64.dat: Regenerate.
* regformats/s390-linux32v1.dat: New generated file.
* regformats/s390-linux32v2.dat: Likewise.
* regformats/s390-linux64v1.dat: Likewise.
* regformats/s390-linux64v2.dat: Likewise.
* regformats/s390x-linux64v1.dat: Likewise.
* regformats/s390x-linux64v2.dat: Likewise.
gdbserver/ChangeLog:
* Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
(s390-linux32v2.o, s390-linux32v2.c): Likewise.
(s390-linux64v1.o, s390-linux64v1.c): Likewise.
(s390-linux64v2.o, s390-linux64v2.c): Likewise.
(s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
(s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
* configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
(srv_xmlfiles): Add new XML files.
* linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
and <sys/uio.h>.
(PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
(init_registers_s390_linux32v1): Add prototype.
(init_registers_s390_linux32v2): Likewise.
(init_registers_s390_linux64v1): Likewise.
(init_registers_s390_linux64v2): Likewise.
(init_registers_s390x_linux64v1): Likewise.
(init_registers_s390x_linux64v2): Likewise.
(s390_num_regs): Increment to 52.
(s390_regmap): Add orig_r2 register.
(s390_num_regs_3264): Increment to 68.
(s390_regmap_3264): Add orig_r2 register.
(s390_collect_ptrace_register): Handle orig_r2 register.
(s390_supply_ptrace_register): Likewise.
(s390_fill_last_break): New function.
(s390_store_last_break): Likewise.
(s390_fill_system_call): New function.
(s390_store_system_call): Likewise.
(target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
register sets.
(s390_check_regset): New function.
(s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
NT_S390_SYSTEM_CALL regsets and use appropriate description.
Update target_regsets for available register sets.
testsuite/ChangeLog:
* gdb.base/callfuncs.exp (fetch_all_registers): Filter out read-only
last_break register on s390*-*-* targets.
2011-12-06 15:14:50 +01:00
|
|
|
}
|
|
|
|
exp_continue
|
|
|
|
}
|
2015-11-20 11:36:07 +01:00
|
|
|
-re "^pstate\[ \t\]+\[^\r\n\]+\r\n" {
|
|
|
|
if [istarget "sparc64-*-linux-gnu"] {
|
|
|
|
# Filter out the pstate register, since in sparc64
|
|
|
|
# targets the Linux kernel disables pstate.PEF when
|
|
|
|
# returning from traps, giving spurious differences.
|
|
|
|
} else {
|
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
|
|
|
}
|
|
|
|
exp_continue
|
|
|
|
}
|
ChangeLog:
* s390-tdep.h (S390_ORIG_R2_REGNUM): Define.
(S390_LAST_BREAK_REGNUM): Likewise.
(S390_SYSTEM_CALL_REGNUM): Likewise.
(S390_NUM_REGS): Update.
(s390_regmap_last_break): Add declaration.
(s390x_regmap_last_break): Likewise.
(s390_regmap_system_call): Likewise.
(tdesc_s390_linux32v1): Add declaration.
(tdesc_s390_linux32v2): Likewise.
(tdesc_s390_linux64v1): Likewise.
(tdesc_s390_linux64v2): Likewise.
(tdesc_s390x_linux64v1): Likewise.
(tdesc_s390x_linux64v2): Likewise.
* s390-tdep.c: Include new target description files
"features/s390-linux32v1.c", "features/s390-linux32v2.c",
"features/s390-linux64v1.c", "features/s390-linux64v2.c",
"features/s390x-linux64v1.c", and "features/s390x-linux64v2.c".
(s390_cannot_store_register): New function.
(s390_write_pc): Likewise.
(s390_dwarf_regmap): Add fields for new registers.
(s390_regmap_gregset): Likewise.
(s390x_regmap_gregset): Likewise.
(s390_regmap_fpregset): Likewise.
(s390_regmap_upper): Likewise.
(s390_regmap_last_break): New variable.
(s390x_regmap_last_break): Likewise.
(s390_regmap_system_call): Likewise.
(s390_last_break_regset): Likewise.
(s390x_last_break_regset): Likewise.
(s390_system_call_regset): Likewise.
(s390_upper_regset_sections): Rename to ...
(s390_linux64_regset_sections): ... this.
(s390_linux32_regset_sections): New variable.
(s390x_linux64_regset_sections): Likewise.
(s390_linux32v1_regset_sections): Likewise.
(s390_linux32v2_regset_sections): Likewise.
(s390_linux64v1_regset_sections): Likewise.
(s390_linux64v2_regset_sections): Likewise.
(s390x_linux64v1_regset_sections): Likewise.
(s390x_linux64v2_regset_sections): Likewise.
(s390_regset_from_core_section): Handle .reg-s390-last-break and
.reg-s390-system-call core file sections.
(s390_core_read_description): Check for presence of
.reg-s390-last-break and .reg-s390-system-call core file
sections and return appropriate target description.
(s390_gdbarch_init): Detect Linux-specific registers "orig_r2",
"last_break" and "system_call" in target description. Install
appropriate gdbarch_core_regset_sections array.
Call set_gdbarch_cannot_store_register and set_gdbarch_write_pc.
(_initialize_s390_tdep): Initialize additional target descriptions.
* s390-nat.c: Include "elf/common.h".
(PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
(have_regset_last_break): New static variable.
(have_regset_system_call): Likewise.
(s390_native_supply): Handle S390_ORIG_R2_REGNUM.
(s390_native_collect): Likewise.
(fetch_regset, store_regset, check_regset): New functions.
(s390_linux_fetch_inferior_registers): Handle S390_LAST_BREAK_REGNUM
and S390_SYSTEM_CALL_REGNUM.
(s390_linux_store_inferior_registers): Likewise.
(s390_read_description): Check for presence of NT_S390_LAST_BREAK
and NT_S390_SYSTEM_CALL regsets and use appropriate description.
* features/Makefile (WHICH): Add s390-linux32v1, s390-linux64v1,
s390x-linux64v1, s390-linux32v2, s390-linux64v2, and s390x-linux64v2.
(s390-linux32v1-expedite): Define.
(s390-linux32v2-expedite): Likewise.
(s390-linux64v1-expedite): Likewise.
(s390-linux64v2-expedite): Likewise.
(s390x-linux64v1-expedite): Likewise.
(s390x-linux64v2-expedite): Likewise.
* features/s390-linux32.xml: Add orig_r2 register.
* features/s390-linux64.xml: Likewise.
* features/s390x-linux64.xml: Likewise.
* features/s390-linux32v1.xml: New file.
* features/s390-linux32v2.xml: Likewise.
* features/s390-linux64v1.xml: Likewise.
* features/s390-linux64v2.xml: Likewise.
* features/s390x-linux64v1.xml: Likewise.
* features/s390x-linux64v2.xml: Likewise.
* features/s390-linux32.c: Regenerate.
* features/s390-linux64.c: Likewise.
* features/s390x-linux64.c: Likewise.
* features/s390-linux32v1.c: New generated file.
* features/s390-linux32v2.c: Likewise.
* features/s390-linux64v1.c: Likewise.
* features/s390-linux64v2.c: Likewise.
* features/s390x-linux64v1.c: Likewise.
* features/s390x-linux64v2.c: Likewise.
* regformats/s390-linux32.dat: Regenerate.
* regformats/s390-linux64.dat: Regenerate.
* regformats/s390x-linux64.dat: Regenerate.
* regformats/s390-linux32v1.dat: New generated file.
* regformats/s390-linux32v2.dat: Likewise.
* regformats/s390-linux64v1.dat: Likewise.
* regformats/s390-linux64v2.dat: Likewise.
* regformats/s390x-linux64v1.dat: Likewise.
* regformats/s390x-linux64v2.dat: Likewise.
gdbserver/ChangeLog:
* Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
(s390-linux32v2.o, s390-linux32v2.c): Likewise.
(s390-linux64v1.o, s390-linux64v1.c): Likewise.
(s390-linux64v2.o, s390-linux64v2.c): Likewise.
(s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
(s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
* configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
(srv_xmlfiles): Add new XML files.
* linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
and <sys/uio.h>.
(PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
(init_registers_s390_linux32v1): Add prototype.
(init_registers_s390_linux32v2): Likewise.
(init_registers_s390_linux64v1): Likewise.
(init_registers_s390_linux64v2): Likewise.
(init_registers_s390x_linux64v1): Likewise.
(init_registers_s390x_linux64v2): Likewise.
(s390_num_regs): Increment to 52.
(s390_regmap): Add orig_r2 register.
(s390_num_regs_3264): Increment to 68.
(s390_regmap_3264): Add orig_r2 register.
(s390_collect_ptrace_register): Handle orig_r2 register.
(s390_supply_ptrace_register): Likewise.
(s390_fill_last_break): New function.
(s390_store_last_break): Likewise.
(s390_fill_system_call): New function.
(s390_store_system_call): Likewise.
(target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
register sets.
(s390_check_regset): New function.
(s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
NT_S390_SYSTEM_CALL regsets and use appropriate description.
Update target_regsets for available register sets.
testsuite/ChangeLog:
* gdb.base/callfuncs.exp (fetch_all_registers): Filter out read-only
last_break register on s390*-*-* targets.
2011-12-06 15:14:50 +01:00
|
|
|
-re "^last_break\[ \t\]+\[^\r\n\]+\r\n" {
|
|
|
|
if [istarget "s390*-*-*"] {
|
|
|
|
# Filter out last_break which is read-only,
|
|
|
|
# giving spurious differences.
|
|
|
|
} else {
|
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
2007-03-08 21:08:02 +01:00
|
|
|
}
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 22:11:45 +01:00
|
|
|
-re "^\[^ \t\]+\[ \t\]+\[^\r\n\]+\r\n" {
|
2007-03-08 21:08:02 +01:00
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 22:11:45 +01:00
|
|
|
-re "$gdb_prompt $" {
|
2007-03-08 21:08:02 +01:00
|
|
|
incr bad
|
|
|
|
}
|
2009-03-22 22:11:45 +01:00
|
|
|
-re "^\[^\r\n\]+\r\n" {
|
2007-03-08 21:08:02 +01:00
|
|
|
if {!$bad} {
|
|
|
|
warning "Unrecognized output: $expect_out(0,string)"
|
|
|
|
set bad 1
|
2007-01-31 16:37:49 +01:00
|
|
|
}
|
2007-03-08 21:08:02 +01:00
|
|
|
exp_continue
|
2000-11-06 21:38:02 +01:00
|
|
|
}
|
2007-03-08 21:08:02 +01:00
|
|
|
}] != 0} {
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
|
|
|
|
if {$bad} {
|
|
|
|
fail $test
|
|
|
|
return {}
|
2000-11-06 21:38:02 +01:00
|
|
|
}
|
2007-03-08 21:08:02 +01:00
|
|
|
|
|
|
|
pass $test
|
|
|
|
return $all_registers_lines
|
2000-11-06 21:38:02 +01:00
|
|
|
}
|
|
|
|
|
2011-05-30 04:32:21 +02:00
|
|
|
proc rerun_and_prepare {} {
|
2014-11-04 13:55:30 +01:00
|
|
|
if { ![runto_main] } {
|
|
|
|
gdb_suppress_tests
|
|
|
|
}
|
2015-12-21 17:23:43 +01:00
|
|
|
|
|
|
|
gdb_test_no_output "set language c"
|
2011-05-30 04:32:21 +02:00
|
|
|
|
|
|
|
get_debug_format
|
|
|
|
|
|
|
|
# Make sure that malloc gets called and that the floating point unit
|
|
|
|
# is initialized via a call to t_double_values.
|
|
|
|
gdb_test "next" "t_double_values\\(double_val1, double_val2\\);.*" \
|
|
|
|
"next to t_double_values"
|
|
|
|
gdb_test "next" "t_structs_c\\(struct_val1\\);.*" \
|
|
|
|
"next to t_structs_c"
|
|
|
|
}
|
|
|
|
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
proc perform_all_tests {prototypes} {
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test_no_output "set print sevenbit-strings"
|
|
|
|
gdb_test_no_output "set print address off"
|
|
|
|
gdb_test_no_output "set width 0"
|
2011-05-30 04:32:21 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
rerun_and_prepare
|
2000-11-06 21:38:02 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Save all register contents.
|
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
2000-11-06 21:38:02 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Perform function calls.
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
do_function_calls $prototypes
|
2011-05-30 04:32:21 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Check if all registers still have the same value.
|
2007-03-08 21:08:02 +01:00
|
|
|
set new_reg_content [fetch_all_registers \
|
2014-11-04 14:50:42 +01:00
|
|
|
"register contents after gdb function calls"]
|
2007-03-08 21:08:02 +01:00
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2014-11-04 14:50:42 +01:00
|
|
|
pass "gdb function calls preserve register contents"
|
2000-11-06 21:38:02 +01:00
|
|
|
} else {
|
2014-11-04 14:50:42 +01:00
|
|
|
set old_reg_content $new_reg_content
|
|
|
|
fail "gdb function calls preserve register contents"
|
2000-11-06 21:38:02 +01:00
|
|
|
}
|
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
rerun_and_prepare
|
|
|
|
# Save all register contents.
|
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
2011-05-30 04:32:21 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Set breakpoint at a function we will call from gdb.
|
|
|
|
gdb_breakpoint add
|
2000-11-06 21:38:02 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Call function (causing a breakpoint hit in the call dummy) and do a continue,
|
|
|
|
# make sure we are back at main and still have the same register contents.
|
|
|
|
gdb_test "print add(4,5)" \
|
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at breakpoint in call dummy function"
|
|
|
|
gdb_test "continue" "Continuing.*" "continue from call dummy breakpoint"
|
|
|
|
if ![gdb_test "bt 2" \
|
|
|
|
"#0 main.*" \
|
|
|
|
"bt after continuing from call dummy breakpoint"] then {
|
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after stop in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
|
|
|
pass "continue after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "continue after stop in call dummy preserves register contents"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rerun_and_prepare
|
|
|
|
# Set breakpoint at a function we will call from gdb.
|
|
|
|
gdb_breakpoint add
|
|
|
|
# Save all register contents.
|
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
|
|
|
|
|
|
|
# Call function (causing a breakpoint hit in the call dummy) and do a finish,
|
|
|
|
# make sure we are back at main and still have the same register contents.
|
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
|
|
|
"call function causing a breakpoint then do a finish"
|
|
|
|
gdb_test "finish" \
|
|
|
|
"Value returned is .* = 9" \
|
|
|
|
"finish from call dummy breakpoint returns correct value"
|
|
|
|
if ![gdb_test "bt 2" \
|
|
|
|
"#0 main.*" \
|
|
|
|
"bt after finishing from call dummy breakpoint"] then {
|
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after finish in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
|
|
|
pass "finish after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "finish after stop in call dummy preserves register contents"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rerun_and_prepare
|
|
|
|
# Set breakpoint at a function we will call from gdb.
|
|
|
|
gdb_breakpoint add
|
|
|
|
# Save all register contents.
|
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
|
|
|
|
|
|
|
# Call function (causing a breakpoint hit in the call dummy) and do a return
|
|
|
|
# with a value, make sure we are back at main with the same register contents.
|
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
|
|
|
"call function causing a breakpoint and then do a return"
|
|
|
|
if ![gdb_test "return 7" \
|
|
|
|
"#0 main.*" \
|
|
|
|
"back at main after return from call dummy breakpoint" \
|
|
|
|
"Make add return now. .y or n.*" \
|
|
|
|
"y"] then {
|
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after return in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
|
|
|
pass "return after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "return after stop in call dummy preserves register contents"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rerun_and_prepare
|
|
|
|
# Set breakpoint at a function we will call from gdb.
|
|
|
|
gdb_breakpoint add
|
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
|
|
|
|
|
|
|
# Call function (causing a breakpoint hit in the call dummy), and
|
|
|
|
# call another function from the call dummy frame (thereby setting up
|
|
|
|
# several nested call dummy frames). Test that backtrace and finish
|
|
|
|
# work when several call dummies are nested.
|
|
|
|
gdb_breakpoint sum10
|
|
|
|
gdb_breakpoint t_small_values
|
|
|
|
gdb_test "print add(2,3)" "The program being debugged stopped while.*" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"stop at nested call level 1"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 add \\(a=2, b=3\\).*\#1 <function called from gdb>.*\#2 main.*" \
|
|
|
|
"backtrace at nested call level 1"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"stop at nested call level 2"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 add \\(a=4, b=5\\).*\#1 <function called from gdb>.*\#2 add \\(a=2, b=3\\).*\#3 <function called from gdb>.*\#4 main.*" \
|
|
|
|
"backtrace at nested call level 2"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "print sum10(2,4,6,8,10,12,14,16,18,20)" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at nested call level 3"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 sum10 \\(i0=2, i1=4, i2=6, i3=8, i4=10, i5=12, i6=14, i7=16, i8=18, i9=20\\).*\#1 <function called from gdb>.*\#2 add \\(a=4, b=5\\).*\#3 <function called from gdb>.*\#4 add \\(a=2, b=3\\).*\#5 <function called from gdb>.*\#6 main.*" \
|
|
|
|
"backtrace at nested call level 3"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "print t_small_values(1,3,5,7,9,11,13,15,17,19)" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at nested call level 4"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2009-07-07 23:33:50 +02:00
|
|
|
"\#0 t_small_values \\(arg1=1 '.001', arg2=3, arg3=5, arg4=7 '.a', arg5=9, arg6=11 '.v', arg7=13, arg8=15, arg9=17, arg10=19\\).*\#2 sum10 \\(i0=2, i1=4, i2=6, i3=8, i4=10, i5=12, i6=14, i7=16, i8=18, i9=20\\).*\#3 <function called from gdb>.*\#4 add \\(a=4, b=5\\).*\#5 <function called from gdb>.*\#6 add \\(a=2, b=3\\).*\#7 <function called from gdb>.*\#8 main.*" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"backtrace at nested call level 4"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "finish" "Value returned is .* = 100" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"Finish from nested call level 4"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 sum10 \\(i0=2, i1=4, i2=6, i3=8, i4=10, i5=12, i6=14, i7=16, i8=18, i9=20\\).*\#1 <function called from gdb>.*\#2 add \\(a=4, b=5\\).*\#3 <function called from gdb>.*\#4 add \\(a=2, b=3\\).*\#5 <function called from gdb>.*\#6 main.*" \
|
|
|
|
"backtrace after finish from nested call level 4"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "finish" "Value returned is .* = 110" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"Finish from nested call level 3"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 add \\(a=4, b=5\\).*\#1 <function called from gdb>.*\#2 add \\(a=2, b=3\\).*\#3 <function called from gdb>.*\#4 main.*" \
|
|
|
|
"backtrace after finish from nested call level 3"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "finish" "Value returned is .* = 9" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"Finish from nested call level 2"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"\#0 add \\(a=2, b=3\\).*\#1 <function called from gdb>.*\#2 main.*" \
|
|
|
|
"backtrace after finish from nested call level 2"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "finish" "Value returned is .* = 5" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"Finish from nested call level 1"
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "backtrace" "\#0 main .*" \
|
2001-11-09 20:14:54 +01:00
|
|
|
"backtrace after finish from nested call level 1"
|
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after nested call dummies"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
|
|
|
pass "nested call dummies preserve register contents"
|
|
|
|
} else {
|
|
|
|
fail "nested call dummies preserve register contents"
|
|
|
|
}
|
2001-11-09 20:14:54 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# GDB should not crash by internal error on $sp underflow during the inferior
|
|
|
|
# call. It is OK it will stop on some: Cannot access memory at address 0x$hex.
|
2001-11-09 20:14:54 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
if {![target_info exists gdb,nosignals] && ![istarget "*-*-uclinux*"]} {
|
|
|
|
gdb_test {set $old_sp = $sp}
|
2010-02-28 18:56:37 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test {set $sp = 0}
|
|
|
|
gdb_test "call doubleit (1)" ".*" "sp == 0: call doubleit (1)"
|
2010-02-28 18:56:37 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test {set $sp = -1}
|
|
|
|
gdb_test "call doubleit (1)" ".*" "sp == -1: call doubleit (1)"
|
2010-02-28 18:56:37 +01:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test {set $sp = $old_sp}
|
|
|
|
}
|
2011-04-17 20:09:02 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Test function descriptor resolution - the separate debug info .opd section
|
|
|
|
# handling vs. local labels `.L'... as `Lcallfunc' starts with `L'.
|
2011-04-17 20:09:02 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
gdb_test "print callfunc (Lcallfunc, 5)" " = 12"
|
2012-07-09 16:20:52 +02:00
|
|
|
|
2014-11-04 14:50:42 +01:00
|
|
|
# Regression test for function pointer cast.
|
|
|
|
gdb_test "print *((int *(*) (void)) voidfunc)()" " = 23"
|
2014-11-04 13:55:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
# Perform all tests with and without function prototypes.
|
|
|
|
|
2016-12-23 17:52:18 +01:00
|
|
|
if { ![prepare_for_testing "failed to prepare" $testfile $srcfile "$compile_flags additional_flags=-DPROTOTYPES"] } {
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
perform_all_tests 1
|
2014-11-04 13:55:30 +01:00
|
|
|
}
|
|
|
|
|
2016-12-23 17:52:18 +01:00
|
|
|
if { ![prepare_for_testing "failed to prepare" $testfile $srcfile "$compile_flags additional_flags=-DNO_PROTOTYPES"] } {
|
Fix calling prototyped functions via function pointers
Calling a prototyped function via a function pointer with the right
prototype doesn't work correctly, if the called function requires
argument coercion... Like, e.g., with:
float mult (float f1, float f2) { return f1 * f2; }
(gdb) p mult (2, 3.5)
$1 = 7
(gdb) p ((float (*) (float, float)) mult) (2, 3.5)
$2 = 0
both calls should have returned the same, of course. The problem is
that GDB misses marking the type of the function pointer target as
prototyped...
Without the fix, the new test fails like this:
(gdb) p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
$30 = 0
(gdb) FAIL: gdb.base/callfuncs.exp: p ((int (*) (float, float)) t_float_values2)(3.14159,float_val2)
gdb/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdbtypes.c (lookup_function_type_with_arguments): Mark function
types with more than one parameter as prototyped.
gdb/testsuite/ChangeLog:
2017-09-04 Pedro Alves <palves@redhat.com>
* gdb.base/callfuncs.exp (do_function_calls): New parameter
"prototypes". Test calling float functions via prototyped and
unprototyped function pointers.
(perform_all_tests): New parameter "prototypes". Pass it down.
(top level): Pass down "prototypes" parameter to
perform_all_tests.
2017-09-04 21:21:13 +02:00
|
|
|
with_test_prefix "noproto" {
|
|
|
|
perform_all_tests 0
|
|
|
|
}
|
2014-11-04 13:55:30 +01:00
|
|
|
}
|