2014-01-01 11:54:24 +08:00
|
|
|
# Copyright 2004-2014 Free Software Foundation, Inc.
|
2004-06-07 23:38:52 +08: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-24 02:14:19 +08:00
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
2004-06-07 23:38:52 +08:00
|
|
|
# (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
|
2007-08-24 02:14:19 +08:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-06-07 23:38:52 +08:00
|
|
|
|
|
|
|
# Please email any bugs, comments, and/or additions to this file to:
|
|
|
|
# bug-gdb@gnu.org
|
|
|
|
|
|
|
|
# This file is part of the gdb testsuite.
|
|
|
|
|
|
|
|
|
2009-06-04 00:46:06 +08:00
|
|
|
if { ![istarget i?86-*-*] && ![istarget x86_64-*-* ] } {
|
|
|
|
verbose "Skipping x86 SSE tests."
|
2004-06-07 23:38:52 +08:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
fix gdb.arch to be parallel-safe
This fixes parts of gdb.arch to be parallel-safe.
I only changed the bits I could test on this machine.
I don't have access to many of the machines needed to fully switch
gdb.arch; but I am happy to provide advice to others attempting this.
Or, I can send an untested patch to convert it all.
Tested on x86-64 Fedora 18.
* gdb.arch/amd64-byte.exp: Use standard_testfile,
clean_restart.
* gdb.arch/amd64-disp-step.exp: Use standard_testfile.
* gdb.arch/amd64-dword.exp: Use standard_testfile,
clean_restart.
* gdb.arch/amd64-entry-value-param.exp: Use standard_testfile.
* gdb.arch/amd64-entry-value.exp: Use standard_testfile.
* gdb.arch/amd64-prologue-xmm.exp: Use standard_testfile.
* gdb.arch/amd64-word.exp: Use standard_testfile,
clean_restart.
* gdb.arch/i386-avx.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-byte.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-disp-step.exp: Use standard_testfile.
* gdb.arch/i386-dr3-watch.exp: Use standard_testfile.
* gdb.arch/i386-permbkpt.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-signal.exp: Use standard_testfile.
* gdb.arch/i386-size-overlap.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-sse.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-unwind.exp: Use standard_testfile.
* gdb.arch/i386-word.exp: Use standard_testfile, clean_restart.
2013-08-22 21:54:15 +08:00
|
|
|
standard_testfile .c
|
2005-07-12 23:20:00 +08:00
|
|
|
|
2012-06-22 04:46:25 +08:00
|
|
|
if [get_compiler_info] {
|
2005-07-12 23:20:00 +08:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
set additional_flags ""
|
|
|
|
if [test_compiler_info gcc*] {
|
2014-06-19 21:46:38 +08:00
|
|
|
set additional_flags "additional_flags=-msse -I${srcdir}/.."
|
2005-07-12 23:20:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
|
2004-06-20 02:58:42 +08:00
|
|
|
unsupported "compiler does not support SSE"
|
|
|
|
return
|
2004-06-07 23:38:52 +08:00
|
|
|
}
|
|
|
|
|
fix gdb.arch to be parallel-safe
This fixes parts of gdb.arch to be parallel-safe.
I only changed the bits I could test on this machine.
I don't have access to many of the machines needed to fully switch
gdb.arch; but I am happy to provide advice to others attempting this.
Or, I can send an untested patch to convert it all.
Tested on x86-64 Fedora 18.
* gdb.arch/amd64-byte.exp: Use standard_testfile,
clean_restart.
* gdb.arch/amd64-disp-step.exp: Use standard_testfile.
* gdb.arch/amd64-dword.exp: Use standard_testfile,
clean_restart.
* gdb.arch/amd64-entry-value-param.exp: Use standard_testfile.
* gdb.arch/amd64-entry-value.exp: Use standard_testfile.
* gdb.arch/amd64-prologue-xmm.exp: Use standard_testfile.
* gdb.arch/amd64-word.exp: Use standard_testfile,
clean_restart.
* gdb.arch/i386-avx.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-byte.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-disp-step.exp: Use standard_testfile.
* gdb.arch/i386-dr3-watch.exp: Use standard_testfile.
* gdb.arch/i386-permbkpt.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-signal.exp: Use standard_testfile.
* gdb.arch/i386-size-overlap.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-sse.exp: Use standard_testfile, clean_restart.
* gdb.arch/i386-unwind.exp: Use standard_testfile.
* gdb.arch/i386-word.exp: Use standard_testfile, clean_restart.
2013-08-22 21:54:15 +08:00
|
|
|
clean_restart ${binfile}
|
2004-06-07 23:38:52 +08:00
|
|
|
|
|
|
|
if ![runto_main] then {
|
|
|
|
gdb_suppress_tests
|
|
|
|
}
|
|
|
|
|
|
|
|
send_gdb "print have_sse ()\r"
|
|
|
|
gdb_expect {
|
|
|
|
-re ".. = 1\r\n$gdb_prompt " {
|
|
|
|
pass "check whether processor supports SSE"
|
|
|
|
}
|
|
|
|
-re ".. = 0\r\n$gdb_prompt " {
|
|
|
|
verbose "processor does not support SSE; skipping SSE tests"
|
|
|
|
return
|
|
|
|
}
|
|
|
|
-re ".*$gdb_prompt $" {
|
|
|
|
fail "check whether processor supports SSE"
|
|
|
|
}
|
|
|
|
timeout {
|
|
|
|
fail "check whether processor supports SSE (timeout)"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "break [gdb_get_line_number "first breakpoint here"]" \
|
|
|
|
"Breakpoint .* at .*i386-sse.c.*" \
|
2008-02-27 23:52:33 +08:00
|
|
|
"set first breakpoint in main"
|
2004-06-07 23:38:52 +08:00
|
|
|
gdb_continue_to_breakpoint "continue to first breakpoint in main"
|
|
|
|
|
2012-10-12 01:40:30 +08:00
|
|
|
if [is_amd64_regs_target] {
|
2009-06-04 00:46:06 +08:00
|
|
|
set nr_regs 16
|
2012-10-12 01:40:30 +08:00
|
|
|
} else {
|
|
|
|
set nr_regs 8
|
2009-06-04 00:46:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 23:38:52 +08:00
|
|
|
gdb_test "print \$xmm$r.v4_float" \
|
2004-06-21 13:00:37 +08:00
|
|
|
".. = \\{$r, $r.25, $r.5, $r.75\\}.*" \
|
2007-01-27 04:53:15 +08:00
|
|
|
"check float contents of %xmm$r"
|
|
|
|
gdb_test "print \$xmm$r.v16_int8" \
|
2007-09-05 08:51:49 +08:00
|
|
|
".. = \\{(-?\[0-9\]+, ){15}-?\[0-9\]+\\}.*" \
|
2007-01-27 04:53:15 +08:00
|
|
|
"check int8 contents of %xmm$r"
|
2004-06-07 23:38:52 +08:00
|
|
|
}
|
|
|
|
|
2009-06-04 00:46:06 +08:00
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 23:38:52 +08:00
|
|
|
gdb_test "set var \$xmm$r.v4_float\[0\] = $r + 10" "" "set %xmm$r"
|
|
|
|
}
|
|
|
|
|
|
|
|
gdb_test "break [gdb_get_line_number "second breakpoint here"]" \
|
|
|
|
"Breakpoint .* at .*i386-sse.c.*" \
|
2008-02-27 23:52:33 +08:00
|
|
|
"set second breakpoint in main"
|
2004-06-07 23:38:52 +08:00
|
|
|
gdb_continue_to_breakpoint "continue to second breakpoint in main"
|
|
|
|
|
2009-06-04 00:46:06 +08:00
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 23:38:52 +08:00
|
|
|
gdb_test "print data\[$r\]" \
|
2004-06-21 13:00:37 +08:00
|
|
|
".. = \\{f = \\{[expr $r + 10], $r.25, $r.5, $r.75\\}\\}.*" \
|
2004-06-07 23:38:52 +08:00
|
|
|
"check contents of data\[$r\]"
|
|
|
|
}
|