# Copyright (C) 2003, 2004, 2006, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@gnu.org
# This file is part of the gdb testsuite.
if $tracelevel {
strace $tracelevel
}
# Test i386 prologue analyzer.
set prms_id 0
set bug_id 0
if ![istarget "i?86-*-*"] then {
verbose "Skipping i386 prologue tests."
return
}
set testfile "i386-prologue"
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
# some targets have leading underscores on assembly symbols.
# TODO: detect this automatically
set additional_flags ""
if [istarget "i?86-*-cygwin*"] then {
set additional_flags "additional_flags=-DSYMBOL_PREFIX=\"_\""
}
# Don't use "debug", so that we don't have line information for the assembly
# fragments.
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list $additional_flags]] != "" } {
untested i386-prologue.exp
return -1
}
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
#
# Run to `main' where we begin our tests.
#
if ![runto_main] then {
gdb_suppress_tests
}
# Testcase for standard prologue.
send_gdb "disassemble standard\n";
gdb_expect 60 {
-re ".*($hex) .*($hex) .*($hex) .*($hex) .*" {
set standard_start $expect_out(1,string);
set address $expect_out(2,string);
set address1 $expect_out(3,string);
set address2 $expect_out(4,string);
}
default {
send_user "Oops, can't find address\n"
gdb_supress_tests
}
}
gdb_breakpoint "*$standard_start"
gdb_breakpoint "*$address"
gdb_test "continue" "Breakpoint .*, $standard_start in standard.*" \
"Stop at the standard start breakpoint (fetching esp)."
# We want to fetch esp at the start of 'standard' function to make sure
# skip_permanent_breakpoint implementation really skips only the perm.
# breakpoint. If, for whatever reason, 'leave' instruction doesn't get
# executed, esp will not have this value.
send_gdb "print \$esp\n"
gdb_expect 60 {
-re ".1.*($hex).*" {
set start_esp $expect_out(1,string);
}
default {
gdb_fail "Fetching esp failed."
}
}
gdb_test "continue" "Breakpoint .*, $address in standard.*" \
"Stop at permanent breakpoint."
gdb_test "stepi" "$address1|$address2 in standard.*" \
"Single stepping past permanent breakpoint."
gdb_test "print \$esp" ".*$start_esp.*" \
"ESP value does not match - step_permanent_breakpoint wrong."