2013-01-01 06:33:28 +00:00
|
|
|
# Copyright 2004-2013 Free Software Foundation, Inc.
|
2004-06-07 15:38:52 +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
|
2004-06-07 15:38:52 +00: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-23 18:14:19 +00:00
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2004-06-07 15:38:52 +00: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-03 16:46:06 +00:00
|
|
|
if { ![istarget i?86-*-*] && ![istarget x86_64-*-* ] } {
|
|
|
|
verbose "Skipping x86 SSE tests."
|
2004-06-07 15:38:52 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
set testfile "i386-sse"
|
|
|
|
set srcfile ${testfile}.c
|
|
|
|
set binfile ${objdir}/${subdir}/${testfile}
|
2005-07-12 15:20:00 +00:00
|
|
|
|
2012-06-21 20:46:25 +00:00
|
|
|
if [get_compiler_info] {
|
2005-07-12 15:20:00 +00:00
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
|
|
|
set additional_flags ""
|
|
|
|
if [test_compiler_info gcc*] {
|
gdb: clean up x86 cpuid implementations
We've currently got 3 files doing open coded implementations of cpuid.
Each has its own set of workarounds and varying levels of how well
they're written and are generally hardcoded to specific cpuid functions.
If you try to build the latest gdb as a PIE on an i386 system, the build
will fail because one of them lacks PIC workarounds (wrt ebx).
Specifically, we have:
common/linux-btrace.c:
two copies of cpuid asm w/specific args, one has no workarounds
while the other implicitly does to avoid memcpy
go32-nat.c:
two copies of cpuid asm w/specific args, one has workarounds to
avoid memcpy
gdb/testsuite/gdb.arch/i386-cpuid.h:
one general cpuid asm w/many workarounds copied from older gcc
Fortunately, that last header there is pretty damn good -- it handles
lots of edge cases, the code is nice & tight (uses gcc asm operands
rather than manual movs), and is already almost a general library type
header. It's also the basis of what is now the public cpuid.h that is
shipped with gcc-4.3+.
So what I've done is pull that test header out and into gdb/common/
(not sure if there's a better place), synced to the version found in
gcc-4.8.0, put a wrapper API around it, and then cut over all the
existing call points to this new header.
Since the func already has support for "is cpuid supported on this proc",
it makes it trivial to push the i386/x86_64 ifdefs down into this wrapper
API too. Now it can be safely used for all targets and gcc will elide
the unused code for us.
I've verified the gdb.arch testsuite still passes, and this code compiles
for an armv7a host as well as x86_64. The go32-nat code has been left
ifdef-ed out until someone can test & verify the new stuff works (and if
it doesn't, figure out how to make the new code work).
URL: https://bugs.gentoo.org/467806
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
2013-06-19 22:29:36 +00:00
|
|
|
set additional_flags "additional_flags=-msse -I${srcdir}/../common"
|
2005-07-12 15:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
|
2004-06-19 18:58:42 +00:00
|
|
|
unsupported "compiler does not support SSE"
|
|
|
|
return
|
2004-06-07 15:38:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdb_exit
|
|
|
|
gdb_start
|
|
|
|
gdb_reinitialize_dir $srcdir/$subdir
|
|
|
|
gdb_load ${binfile}
|
|
|
|
|
|
|
|
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 15:52:33 +00:00
|
|
|
"set first breakpoint in main"
|
2004-06-07 15:38:52 +00:00
|
|
|
gdb_continue_to_breakpoint "continue to first breakpoint in main"
|
|
|
|
|
2012-10-11 17:40:30 +00:00
|
|
|
if [is_amd64_regs_target] {
|
2009-06-03 16:46:06 +00:00
|
|
|
set nr_regs 16
|
2012-10-11 17:40:30 +00:00
|
|
|
} else {
|
|
|
|
set nr_regs 8
|
2009-06-03 16:46:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 15:38:52 +00:00
|
|
|
gdb_test "print \$xmm$r.v4_float" \
|
2004-06-21 05:00:37 +00:00
|
|
|
".. = \\{$r, $r.25, $r.5, $r.75\\}.*" \
|
2007-01-26 20:53:15 +00:00
|
|
|
"check float contents of %xmm$r"
|
|
|
|
gdb_test "print \$xmm$r.v16_int8" \
|
2007-09-05 00:51:49 +00:00
|
|
|
".. = \\{(-?\[0-9\]+, ){15}-?\[0-9\]+\\}.*" \
|
2007-01-26 20:53:15 +00:00
|
|
|
"check int8 contents of %xmm$r"
|
2004-06-07 15:38:52 +00:00
|
|
|
}
|
|
|
|
|
2009-06-03 16:46:06 +00:00
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 15:38:52 +00: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 15:52:33 +00:00
|
|
|
"set second breakpoint in main"
|
2004-06-07 15:38:52 +00:00
|
|
|
gdb_continue_to_breakpoint "continue to second breakpoint in main"
|
|
|
|
|
2009-06-03 16:46:06 +00:00
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
2004-06-07 15:38:52 +00:00
|
|
|
gdb_test "print data\[$r\]" \
|
2004-06-21 05:00:37 +00:00
|
|
|
".. = \\{f = \\{[expr $r + 10], $r.25, $r.5, $r.75\\}\\}.*" \
|
2004-06-07 15:38:52 +00:00
|
|
|
"check contents of data\[$r\]"
|
|
|
|
}
|