2007-01-09 17:59:20 +00:00
|
|
|
# Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
|
2009-01-03 05:58:08 +00:00
|
|
|
# 2004, 2007, 2008, 2009 Free Software Foundation, Inc.
|
1999-04-16 01:35:26 +00: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 18:14:19 +00:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
1999-04-16 01:35:26 +00:00
|
|
|
# (at your option) any later version.
|
2007-08-23 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00: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 18:14:19 +00:00
|
|
|
#
|
1999-04-16 01:35:26 +00:00
|
|
|
# You should have received a copy of the GNU General Public License
|
2007-08-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1999-04-16 01:35:26 +00:00
|
|
|
|
|
|
|
# This file was written by Fred Fish. (fnf@cygnus.com)
|
|
|
|
# and modified by Bob Manson. (manson@cygnus.com)
|
|
|
|
|
|
|
|
if $tracelevel then {
|
|
|
|
strace $tracelevel
|
|
|
|
}
|
|
|
|
|
|
|
|
set prms_id 0
|
|
|
|
set bug_id 0
|
|
|
|
|
|
|
|
set testfile "callfuncs"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {debug}] != "" } {
|
2006-08-10 05:27:22 +00:00
|
|
|
untested callfuncs.exp
|
|
|
|
return -1
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Create and source the file that provides information about the compiler
|
|
|
|
# used to compile the test case.
|
|
|
|
|
|
|
|
if [get_compiler_info ${binfile}] {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
if {$hp_aCC_compiler} {
|
|
|
|
set prototypes 1
|
|
|
|
} else {
|
|
|
|
set prototypes 0
|
|
|
|
}
|
|
|
|
|
2002-01-06 14:42:39 +00:00
|
|
|
# Some targets can't do function calls, so don't even bother with this
|
|
|
|
# test.
|
1999-04-16 01:35:26 +00:00
|
|
|
if [target_info exists gdb,cannot_call_functions] {
|
|
|
|
setup_xfail "*-*-*" 2416
|
|
|
|
fail "This target can not call functions"
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
# Set the current language to C. This counts as a test. If it
|
|
|
|
# fails, then we skip the other tests.
|
|
|
|
|
|
|
|
proc set_lang_c {} {
|
|
|
|
global gdb_prompt
|
|
|
|
|
|
|
|
send_gdb "set language c\n"
|
|
|
|
gdb_expect {
|
|
|
|
-re ".*$gdb_prompt $" {}
|
|
|
|
timeout { fail "set language c (timeout)" ; return 0; }
|
|
|
|
}
|
|
|
|
|
|
|
|
send_gdb "show language\n"
|
|
|
|
gdb_expect {
|
|
|
|
-re ".* source language is \"c\".*$gdb_prompt $" {
|
|
|
|
pass "set language to \"c\""
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
-re ".*$gdb_prompt $" {
|
|
|
|
fail "setting language to \"c\""
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
timeout {
|
|
|
|
fail "can't show language (timeout)"
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
proc do_function_calls {} {
|
|
|
|
global prototypes
|
1999-08-02 23:48:37 +00:00
|
|
|
global gdb_prompt
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
# We need to up this because this can be really slow on some boards.
|
|
|
|
set timeout 60;
|
|
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
if ![target_info exists gdb,skip_float_tests] {
|
|
|
|
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.
|
1999-08-02 23:48:37 +00:00
|
|
|
setup_xfail "mn10300-*-*"
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "p t_float_values(3.14159,-2.3765)" " = 1"
|
1999-08-02 23:48:37 +00:00
|
|
|
setup_xfail "mn10300-*-*"
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "p t_float_values(float_val1,float_val2)" " = 1"
|
1999-08-02 23:48:37 +00:00
|
|
|
setup_xfail "mn10300-*-*"
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "p t_float_values(3.14159,float_val2)" " = 1"
|
1999-08-02 23:48:37 +00:00
|
|
|
setup_xfail "mn10300-*-*"
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "p t_float_values(float_val1,-2.3765)" " = 1"
|
|
|
|
|
|
|
|
# Test passing of arguments which might not be widened.
|
|
|
|
gdb_test "p t_float_values2(0.0,0.0)" " = 0"
|
|
|
|
|
|
|
|
# Although PR 5318 mentions SunOS specifically, this seems
|
|
|
|
# to be a generic problem on quite a few platforms.
|
|
|
|
if $prototypes then {
|
1999-06-28 16:06:02 +00:00
|
|
|
setup_xfail "sparc-*-*" "mips*-*-*" 5318
|
2003-12-01 22:09:06 +00:00
|
|
|
if { ! [test_compiler_info gcc-*-*] } then {
|
1999-04-16 01:35:26 +00:00
|
|
|
setup_xfail "alpha-dec-osf2*" "i*86-*-sysv4*" 5318
|
|
|
|
}
|
|
|
|
}
|
2001-12-07 21:17:00 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
gdb_test "p t_float_values2(3.14159,float_val2)" " = 1"
|
2001-12-07 21:17:00 +00:00
|
|
|
|
2008-02-06 03:54:12 +00: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."
|
|
|
|
|
1999-04-16 01:35:26 +00: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 15:13:04 +00:00
|
|
|
|
2008-02-06 03:54:12 +00: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."
|
|
|
|
|
2007-08-22 15:13:04 +00: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 01:35:26 +00: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 02:00:04 +00:00
|
|
|
gdb_test "p function_struct.func(5)" " = 10"
|
|
|
|
gdb_test "p function_struct_ptr->func(10)" " = 20"
|
|
|
|
|
2003-11-19 18:34:52 +00: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).
|
|
|
|
setup_kfail "rs6000*-*-aix*" gdb/1457
|
|
|
|
setup_kfail "powerpc*-*-aix*" gdb/1457
|
|
|
|
setup_kfail hppa*-*-hpux* gdb/1457
|
|
|
|
gdb_test "p t_func_values(add,func_val2)" " = 1"
|
|
|
|
setup_kfail "rs6000*-*-aix*" gdb/1457
|
|
|
|
setup_kfail "powerpc*-*-aix*" gdb/1457
|
|
|
|
setup_kfail hppa*-*-hpux* gdb/1457
|
|
|
|
gdb_test "p t_func_values(func_val1,doubleit)" " = 1"
|
|
|
|
setup_kfail "rs6000*-*-aix*" gdb/1457
|
|
|
|
setup_kfail "powerpc*-*-aix*" gdb/1457
|
|
|
|
setup_kfail hppa*-*-hpux* gdb/1457
|
|
|
|
gdb_test "p t_call_add(add,3,4)" " = 7"
|
1999-08-02 23:48:37 +00:00
|
|
|
gdb_test "p t_call_add(func_val1,3,4)" " = 7"
|
1999-04-16 01:35:26 +00: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 06:47:33 +00:00
|
|
|
"call inferior func with struct - returns short"
|
1999-04-16 01:35:26 +00: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"
|
|
|
|
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"
|
|
|
|
gdb_test "p t_structs_a(struct_val1)" "= (.unsigned char .. )?\"foo\"" \
|
|
|
|
"call inferior func with struct - returns char *"
|
|
|
|
}
|
|
|
|
|
2000-11-06 20:38:02 +00:00
|
|
|
# Procedure to get current content of all registers.
|
2007-03-08 20:08:02 +00:00
|
|
|
proc fetch_all_registers {test} {
|
2000-11-06 20:38:02 +00:00
|
|
|
global gdb_prompt
|
|
|
|
|
2007-03-08 20:08:02 +00:00
|
|
|
set all_registers_lines {}
|
|
|
|
set bad -1
|
2009-03-22 21:11:45 +00:00
|
|
|
# Former trailing `\[\r\n\]+' may eat just \r leaving \n in the buffer
|
|
|
|
# corrupting the next matches.
|
2007-03-08 20:08:02 +00:00
|
|
|
if {[gdb_test_multiple "info all-registers" $test {
|
2009-03-22 21:11:45 +00:00
|
|
|
-re "info all-registers\r\n" {
|
2007-03-08 20:08:02 +00:00
|
|
|
exp_continue
|
|
|
|
}
|
|
|
|
-ex "The program has no registers now" {
|
|
|
|
set bad 1
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 21:11:45 +00:00
|
|
|
-re "^bspstore\[ \t\]+\[^\r\n\]+\r\n" {
|
2007-01-31 15:37:49 +00:00
|
|
|
if [istarget "ia64-*-*"] {
|
|
|
|
# Filter out bspstore which is specially tied to bsp,
|
|
|
|
# giving spurious differences.
|
2007-03-08 20:08:02 +00:00
|
|
|
} else {
|
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
|
|
|
}
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 21:11:45 +00:00
|
|
|
-re "^\[^ \t\]+\[ \t\]+\[^\r\n\]+\r\n" {
|
2007-03-08 20:08:02 +00:00
|
|
|
lappend all_registers_lines $expect_out(0,string)
|
|
|
|
exp_continue
|
|
|
|
}
|
2009-03-22 21:11:45 +00:00
|
|
|
-re "$gdb_prompt $" {
|
2007-03-08 20:08:02 +00:00
|
|
|
incr bad
|
|
|
|
}
|
2009-03-22 21:11:45 +00:00
|
|
|
-re "^\[^\r\n\]+\r\n" {
|
2007-03-08 20:08:02 +00:00
|
|
|
if {!$bad} {
|
|
|
|
warning "Unrecognized output: $expect_out(0,string)"
|
|
|
|
set bad 1
|
2007-01-31 15:37:49 +00:00
|
|
|
}
|
2007-03-08 20:08:02 +00:00
|
|
|
exp_continue
|
2000-11-06 20:38:02 +00:00
|
|
|
}
|
2007-03-08 20:08:02 +00:00
|
|
|
}] != 0} {
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
|
|
|
|
if {$bad} {
|
|
|
|
fail $test
|
|
|
|
return {}
|
2000-11-06 20:38:02 +00:00
|
|
|
}
|
2007-03-08 20:08:02 +00:00
|
|
|
|
|
|
|
pass $test
|
|
|
|
return $all_registers_lines
|
2000-11-06 20:38:02 +00:00
|
|
|
}
|
|
|
|
|
2007-03-08 20:08:02 +00:00
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
# Start with a fresh gdb.
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
gdb_test "set print sevenbit-strings" ""
|
|
|
|
gdb_test "set print address off" ""
|
|
|
|
gdb_test "set width 0" ""
|
|
|
|
|
1999-06-28 16:06:02 +00:00
|
|
|
if { $hp_aCC_compiler } {
|
|
|
|
# Do not set language explicitly to 'C'. This will cause aCC
|
|
|
|
# tests to fail because promotion rules are different. Just let
|
|
|
|
# the language be set to the default.
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
if { ![runto_main] } {
|
|
|
|
gdb_suppress_tests;
|
|
|
|
}
|
1999-06-28 16:06:02 +00:00
|
|
|
|
|
|
|
# However, turn off overload-resolution for aCC. Having it on causes
|
|
|
|
# a lot of failures.
|
|
|
|
|
|
|
|
gdb_test "set overload-resolution 0" ".*"
|
|
|
|
} else {
|
|
|
|
if { ![set_lang_c] } {
|
|
|
|
gdb_suppress_tests;
|
|
|
|
} else {
|
|
|
|
if { ![runto_main] } {
|
|
|
|
gdb_suppress_tests;
|
|
|
|
}
|
|
|
|
}
|
1999-04-16 01:35:26 +00:00
|
|
|
}
|
|
|
|
|
2001-12-07 21:17:00 +00:00
|
|
|
get_debug_format
|
|
|
|
|
2000-11-06 20:38:02 +00:00
|
|
|
# Make sure that malloc gets called and that the floating point unit
|
|
|
|
# is initialized via a call to t_double_values.
|
2001-05-23 19:04:13 +00:00
|
|
|
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"
|
2000-11-06 20:38:02 +00:00
|
|
|
|
|
|
|
# Save all register contents.
|
2007-03-08 20:08:02 +00:00
|
|
|
set old_reg_content [fetch_all_registers "retrieve original register contents"]
|
2000-11-06 20:38:02 +00:00
|
|
|
|
|
|
|
# Perform function calls.
|
1999-04-16 01:35:26 +00:00
|
|
|
do_function_calls
|
|
|
|
|
2000-11-06 20:38:02 +00:00
|
|
|
# Check if all registers still have the same value.
|
2007-03-08 20:08:02 +00:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after gdb function calls"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2000-11-06 20:38:02 +00:00
|
|
|
pass "gdb function calls preserve register contents"
|
|
|
|
} else {
|
2007-03-08 20:08:02 +00:00
|
|
|
set old_reg_content $new_reg_content
|
2000-11-06 20:38:02 +00:00
|
|
|
fail "gdb function calls preserve register contents"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Set breakpoint at a function we will call from gdb.
|
|
|
|
gdb_breakpoint add
|
|
|
|
|
|
|
|
# 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.
|
2001-11-09 19:14:54 +00:00
|
|
|
gdb_test "print add(4,5)" \
|
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at breakpoint in call dummy function"
|
2000-11-06 20:38:02 +00:00
|
|
|
gdb_test "continue" "Continuing.*" "continue from call dummy breakpoint"
|
|
|
|
if ![gdb_test "bt 2" \
|
|
|
|
"#0 main.*" \
|
|
|
|
"bt after continuing from call dummy breakpoint"] then {
|
2007-03-08 20:08:02 +00:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after stop in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2000-11-06 20:38:02 +00:00
|
|
|
pass "continue after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "continue after stop in call dummy preserves 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.
|
2003-04-03 16:34:48 +00:00
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
|
|
|
"call function causing a breakpoint then do a finish"
|
2000-11-06 20:38:02 +00:00
|
|
|
gdb_test "finish" \
|
2001-01-12 09:45:57 +00:00
|
|
|
"Value returned is .* = 9" \
|
2000-11-06 20:38:02 +00:00
|
|
|
"finish from call dummy breakpoint returns correct value"
|
|
|
|
if ![gdb_test "bt 2" \
|
|
|
|
"#0 main.*" \
|
|
|
|
"bt after finishing from call dummy breakpoint"] then {
|
2007-03-08 20:08:02 +00:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after finish in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2000-11-06 20:38:02 +00:00
|
|
|
pass "finish after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "finish after stop in call dummy preserves 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.
|
2003-04-03 16:34:48 +00:00
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
|
|
|
"call function causing a breakpoint and then do a return"
|
2000-11-06 20:38:02 +00:00
|
|
|
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 {
|
2007-03-08 20:08:02 +00:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after return in call dummy"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2000-11-06 20:38:02 +00:00
|
|
|
pass "return after stop in call dummy preserves register contents"
|
|
|
|
} else {
|
|
|
|
fail "return after stop in call dummy preserves register contents"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-11-09 19:14:54 +00:00
|
|
|
# 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.*" \
|
|
|
|
"stop at nested call level 1"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#0 add \\(a=2, b=3\\).*\#1 <function called from gdb>.*\#2 main.*" \
|
|
|
|
"backtrace at nested call level 1"
|
|
|
|
gdb_test "print add(4,5)" "The program being debugged stopped while.*" \
|
|
|
|
"stop at nested call level 2"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#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"
|
|
|
|
gdb_test "print sum10(2,4,6,8,10,12,14,16,18,20)" \
|
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at nested call level 3"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#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"
|
|
|
|
gdb_test "print t_small_values(1,3,5,7,9,11,13,15,17,19)" \
|
|
|
|
"The program being debugged stopped while.*" \
|
|
|
|
"stop at nested call level 4"
|
|
|
|
gdb_test "backtrace" \
|
gdb:
2009-03-19 Tom Tromey <tromey@redhat.com>
Julian Brown <julian@codesourcery.com>
PR i18n/7220, PR i18n/7821, PR exp/8815, PR exp/9103,
PR i18n/9401, PR exp/9613:
* NEWS: Update
* value.h (value_typed_string): Declare.
(val_print_string): Update.
* valprint.h (print_char_chars): Update.
* valprint.c (print_char_chars): Add type argument. Update.
(val_print_string): Likewise.
* valops.c (value_typed_string): New function.
* utils.c (host_char_to_target): New function.
(parse_escape): Use host_char_to_target, host_hex_value. Update.
Remove '^' case.
(no_control_char_error): Remove.
* typeprint.c (print_type_scalar): Update.
* scm-valprint.c (scm_scmval_print): Update.
* scm-lang.h (scm_printchar, scm_printstr): Update.
* scm-lang.c (scm_printchar): Add type argument.
(scm_printstr): Likewise.
* printcmd.c (print_formatted): Update.
(print_scalar_formatted): Update.
(printf_command) <wide_string_arg, wide_char_arg>: New constants.
Handle '%lc' and '%ls'.
* parser-defs.h (struct typed_stoken): New type.
(struct stoken_vector): Likewise.
(write_exp_string_vector): Declare.
* parse.c (write_exp_string_vector): New function.
* p-valprint.c (pascal_val_print): Update.
* p-lang.h (is_pascal_string_type, pascal_printchar,
pascal_printstr): Update.
* p-lang.c (is_pascal_string_type): Remove 'char_size' argument.
Add 'char_type' argument.
(pascal_emit_char): Add type argument.
(pascal_printchar): Likewise.
(pascal_printstr): Likewise.
* objc-lang.c (objc_emit_char): Add type argument.
(objc_printchar): Likewise.
(objc_printstr): Likewise.
* macroexp.c (get_character_constant): Handle unicode characters.
Use c_parse_escape.
(get_string_literal): Handle unicode strings. Use
c_parse_escape.
* m2-valprint.c (print_unpacked_pointer): Update.
(m2_print_array_contents): Update.
(m2_val_print): Update.
* m2-lang.c (m2_emit_char): Add type argument.
(m2_printchar): Likewise.
(m2_printstr): Likewise.
* language.h (struct language_defn) <la_printchar>: Add type
argument.
<la_printstr, la_emitchar>: Likewise.
(LA_PRINT_CHAR): Likewise.
(LA_PRINT_STRING): Likewise.
(LA_EMIT_CHAR): Likewise.
* language.c (unk_lang_emit_char): Add type argument.
(unk_lang_printchar): Likewise.
(unk_lang_printstr): Likewise.
* jv-valprint.c (java_val_print): Update.
* jv-lang.c (java_emit_char): Add type argument.
* f-valprint.c (f_val_print): Update.
* f-lang.c (f_emit_char): Add type argument.
(f_printchar): Likewise.
(f_printstr): Likewise.
* expprint.c (print_subexp_standard): Update.
* charset.h (target_wide_charset): Declare.
(c_target_char_has_backslash_escape, c_parse_backslash,
host_char_print_literally, host_char_to_target,
target_char_to_host, target_char_to_control_char): Remove.
(enum transliterations): New type.
(convert_between_encodings): Declare.
(HOST_ESCAPE_CHAR): New define.
(host_letter_to_control_character, host_hex_value): Declare.
(enum wchar_iterate_result): New enum.
(struct wchar_iterator): Declare.
(make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
wchar_push_back): Declare.
* charset-list.h: New file.
* c-valprint.c (textual_name): New function.
(textual_element_type): Handle wide character types.
(c_val_print): Pass original type to textual_element_type. Handle
wide character types.
(c_value_print): Use textual_element_type. Pass original type of
value to val_print.
* c-lang.h (enum c_string_type): New type.
(c_printchar, c_printstr): Update.
* c-lang.c (classify_type): New function.
(print_wchar): Likewise.
(c_emit_char): Add type argument. Handle wide characters.
(c_printchar): Likewise.
(c_printstr): Add type argument. Handle wide and multibyte
character sets.
(convert_ucn): New function.
(emit_numeric_character): Likewise.
(convert_octal): Likewise.
(convert_hex): Likewise.
(ADVANCE): New macro.
(convert_escape): New function.
(parse_one_string): Likewise.
(evaluate_subexp_c): Likewise.
(exp_descriptor_c): New global.
(c_language_defn): Use exp_descriptor_c.
(cplus_language_defn): Likewise.
(asm_language_defn): Likewise.
(minimal_language_defn): Likewise.
(charset_for_string_type): New function.
* c-exp.y (%union): Add 'svec' and 'tsval'.
(CHAR): New token.
(exp): Add CHAR production.
(string_exp): Rewrite.
(exp) <string_exp>: Rewrite.
(tempbuf): Now global.
(tempbuf_init): New global.
(parse_string_or_char): New function.
(yylex) <tempbuf>: Now global.
<tokptr, tempbufindex, tempbufsize, token_string, class_prefix>:
Remove.
Handle 'u', 'U', and 'L' prefixes. Call parse_string_or_char.
(c_parse_escape): New function.
* auxv.c (fprint_target_auxv): Update.
* ada-valprint.c (ada_emit_char): Add type argument.
(ada_printchar): Likewise.
(ada_print_scalar): Update.
(printstr): Add type argument. Update calls to ada_emit_char.
(ada_printstr): Add type argument.
(ada_val_print_array): Update.
(ada_val_print_1): Likewise.
* ada-lang.c (emit_char): Add type argument.
* ada-lang.h (ada_emit_char, ada_printchar, ada_printstr): Add
type arguments.
* gdb_locale.h: Include langinfo.h.
* charset.c (_initialize_charset): Set default host charset from
the locale. Don't register charsets. Add target-wide-charset
commands. Call find_charset_names.
(struct charset, struct translation): Remove.
(GDB_DEFAULT_HOST_CHARSET): Remove.
(GDB_DEFAULT_TARGET_WIDE_CHARSET): New define.
(target_wide_charset_name): New global.
(show_host_charset_name): Handle "auto".
(show_target_wide_charset_name): New function.
(host_charset_enum, target_charset_enum): Remove.
(charset_enum): New global.
(all_charsets, register_charset, lookup_charset, all_translations,
register_translation, lookup_translation): Remove.
(simple_charset, ascii_print_literally, ascii_to_control): Remove.
(iso_8859_print_literally, iso_8859_to_control,
iso_8859_family_charset): Remove.
(ebcdic_print_literally, ebcdic_to_control,
ebcdic_family_charset): Remove.
(struct cached_iconv, check_iconv_cache, cached_iconv_convert,
register_iconv_charsets): Remove.
(target_wide_charset_be_name, target_wide_charset_le_name): New
globals.
(identity_either_char_to_other): Remove.
(set_be_le_names, validate): New functions.
(backslashable, backslashed, represented): Remove.
(default_c_target_char_has_backslash_escape): Remove.
(default_c_parse_backslash, iconv_convert): Remove.
(ascii_to_iso_8859_1_table, ascii_to_ebcdic_us_table,
ascii_to_ibm1047_table, iso_8859_1_to_ascii_table,
iso_8859_1_to_ebcdic_us_table, iso_8859_1_to_ibm1047_table,
ebcdic_us_to_ascii_table, ebcdic_us_to_iso_8859_1_table,
ebcdic_us_to_ibm1047_table, ibm1047_to_ascii_table,
ibm1047_to_iso_8859_1_table, ibm1047_to_ebcdic_us_table): Remove.
(table_convert_char, table_translation, simple_table_translation):
Remove.
(current_host_charset, current_target_charset,
c_target_char_has_backslash_escape_func,
c_target_char_has_backslash_escape_baton): Remove.
(c_parse_backslash_func, c_parse_backslash_baton): Remove.
(host_char_to_target_func, host_char_to_target_baton): Remove.
(target_char_to_host_func, target_char_to_host_baton): Remove.
(cached_iconv_host_to_target, cached_iconv_target_to_host):
Remove.
(lookup_charset_or_error, check_valid_host_charset): Remove.
(set_host_and_target_charsets): Remove.
(set_host_charset, set_target_charset): Remove.
(set_host_charset_sfunc, set_target_charset_sfunc): Rewrite.
(set_target_wide_charset_sfunc): New function.
(show_charset): Print target wide character set.
(host_charset, target_charset): Rewrite.
(target_wide_charset): New function.
(c_target_char_has_backslash_escape): Remove.
(c_parse_backslash): Remove.
(host_letter_to_control_character): New function.
(host_char_print_literally): Remove.
(host_hex_value): New function.
(target_char_to_control_char): Remove.
(cleanup_iconv): New function.
(convert_between_encodings): New function.
(target_char_to_host): Remove.
(struct wchar_iterator): Define.
(make_wchar_iterator, make_cleanup_wchar_iterator, wchar_iterator,
wchar_push_back): New functions.
(do_cleanup_iterator): New function.
(char_ptr): New typedef.
(charsets): New global.
(add_one, find_charset_names): New functions.
(default_charset_names): New global.
(auto_host_charset_name): Likewise.
* aclocal.m4, config.in, configure: Rebuild.
* configure.ac: Call AM_LANGINFO_CODESET.
(GDB_DEFAULT_HOST_CHARSET): Default to UTF-8.
(AM_ICONV): Invoke earlier.
* acinclude.m4: Include codeset.m4. Subst LIBICONV_INCLUDE and
LIBICONV_LIBDIR. Check for libiconv in build tree.
* Makefile.in (LIBICONV_LIBDIR, LIBICONV_INCLUDE): New macros.
(INTERNAL_CFLAGS_BASE): Add LIBICONV_INCLUDE.
(INTERNAL_LDFLAGS): Add LIBICONV_LIBDIR.
* gdb_obstack.h (obstack_grow_wstr): New define.
* gdb_wchar.h: New file.
* defs.h: Include it.
gdb/testsuite:
* gdb.base/store.exp: Update for change to escape output.
* gdb.base/callfuncs.exp (fetch_all_registers): Update for change
to escape output.
* gdb.base/pointers.exp: Update for change to escape output.
* gdb.base/long_long.exp (gdb_test_long_long): Update for change
to escape output.
* gdb.base/constvars.exp (do_constvar_tests): Update for change to
escape output.
* gdb.base/call-rt-st.exp (print_struct_call): Update for change
to escape output.
* gdb.cp/ref-types.exp (gdb_start_again): Update for change to
escape output.
* gdb.base/setvar.exp: Update for change to escape output.
* lib/gdb.exp (default_gdb_start): Set LC_CTYPE to C.
* gdb.base/printcmds.exp (test_print_all_chars): Update for change
to escape output.
(test_print_string_constants): Likewise.
* gdb.base/charset.exp (valid_host_charset): Check size of
wchar_t. Handle UCS-2 and UCS-4. Add tests for wide and unicode
cases. Handle "auto"-related output.
* gdb.base/charset.c (char16_t, char32_t): New typedefs.
(uvar, Uvar): New globals.
gdb/doc:
* gdb.texinfo (Character Sets): Remove obsolete text. Document
set target-wide-charset.
(Requirements): Mention iconv.
2009-03-20 23:04:40 +00:00
|
|
|
"\#0 t_small_values \\(arg1=1 '.1', 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 19:14:54 +00:00
|
|
|
"backtrace at nested call level 4"
|
|
|
|
gdb_test "finish" "Value returned is .* = 100" \
|
|
|
|
"Finish from nested call level 4"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#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"
|
|
|
|
gdb_test "finish" "Value returned is .* = 110" \
|
|
|
|
"Finish from nested call level 3"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#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"
|
|
|
|
gdb_test "finish" "Value returned is .* = 9" \
|
|
|
|
"Finish from nested call level 2"
|
|
|
|
gdb_test "backtrace" \
|
|
|
|
"\#0 add \\(a=2, b=3\\).*\#1 <function called from gdb>.*\#2 main.*" \
|
|
|
|
"backtrace after finish from nested call level 2"
|
|
|
|
gdb_test "finish" "Value returned is .* = 5" \
|
|
|
|
"Finish from nested call level 1"
|
|
|
|
gdb_test "backtrace" "\#0 main .*" \
|
|
|
|
"backtrace after finish from nested call level 1"
|
|
|
|
|
2007-03-08 20:08:02 +00:00
|
|
|
set new_reg_content [fetch_all_registers \
|
|
|
|
"register contents after nested call dummies"]
|
|
|
|
if {$old_reg_content == $new_reg_content} then {
|
2001-11-09 19:14:54 +00:00
|
|
|
pass "nested call dummies preserve register contents"
|
|
|
|
} else {
|
|
|
|
fail "nested call dummies preserve register contents"
|
|
|
|
}
|
|
|
|
|
1999-04-16 01:35:26 +00:00
|
|
|
return 0
|
2001-11-09 19:14:54 +00:00
|
|
|
|