125f8a3dde
https://sourceware.org/gdb/wiki/Common describes the following directory structure: gdb/nat/ Native target backend files. Code that interfaces with the host debug API. E.g., ptrace code, Windows debug API code, procfs code should go here. gdb/target/ Host-independent, target vector specific code (target_ops). gdb/common/ All other shared code. This commit moves all native target backend files currently in gdb/common to gdb/nat. gdb/ 2014-06-20 Gary Benson <gbenson@redhat.com> * common/gdb_thread_db.h: Moved to nat. All includes updated. * common/glibc_thread_db.h: Likewise. * common/i386-cpuid.h: Likewise. * common/i386-gcc-cpuid.h: Likewise. * common/linux-btrace.h: Likewise. * common/linux-osdata.h: Likewise. * common/linux-procfs.h: Likewise. * common/linux-ptrace.h: Likewise. * common/mips-linux-watch.h: Likewise. * common/linux-btrace.c: Moved to nat. * common/linux-osdata.c: Likewise. * common/linux-procfs.c: Likewise. * common/linux-ptrace.c: Likewise. * common/mips-linux-watch.c: Likewise. * nat/gdb_thread_db.h: Moved from common. * nat/glibc_thread_db.h: Likewise. * nat/i386-cpuid.h: Likewise. * nat/i386-gcc-cpuid.h: Likewise. * nat/linux-btrace.c: Likewise. * nat/linux-btrace.h: Likewise. * nat/linux-osdata.c: Likewise. * nat/linux-osdata.h: Likewise. * nat/linux-procfs.c: Likewise. * nat/linux-procfs.h: Likewise. * nat/linux-ptrace.c: Likewise. * nat/linux-ptrace.h: Likewise. * nat/mips-linux-watch.c: Likewise. * nat/mips-linux-watch.h: Likewise. * Makefile.in (HFILES_NO_SRCDIR): Reflect new locations. (object file files): Reordered. * gdb/copyright.py (EXCLUDE_LIST): Reflect new location of glibc_thread_db.h. gdb/gdbserver/ 2014-06-20 Gary Benson <gbenson@redhat.com> * Makefile.in (SFILES): Update locations for files moved from common to nat. (object file files): Reordered. gdb/testsuite/ 2014-06-20 Gary Benson <gbenson@redhat.com> * gdb.arch/i386-avx.exp: Fix include file location. * gdb.arch/i386-sse.exp: Likewise.
99 lines
2.9 KiB
Text
99 lines
2.9 KiB
Text
# Copyright 2010-2014 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 <http://www.gnu.org/licenses/>.
|
|
|
|
# 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 { ![istarget i?86-*-*] && ![istarget x86_64-*-* ] } {
|
|
verbose "Skipping x86 AVX tests."
|
|
return
|
|
}
|
|
|
|
standard_testfile .c
|
|
|
|
if [get_compiler_info] {
|
|
return -1
|
|
}
|
|
|
|
set additional_flags ""
|
|
if [test_compiler_info gcc*] {
|
|
set additional_flags "additional_flags=-mavx -I${srcdir}/.."
|
|
}
|
|
|
|
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
|
|
unsupported "compiler does not support AVX"
|
|
return
|
|
}
|
|
|
|
clean_restart ${binfile}
|
|
|
|
if ![runto_main] then {
|
|
gdb_suppress_tests
|
|
}
|
|
|
|
send_gdb "print have_avx ()\r"
|
|
gdb_expect {
|
|
-re ".. = 1\r\n$gdb_prompt " {
|
|
pass "check whether processor supports AVX"
|
|
}
|
|
-re ".. = 0\r\n$gdb_prompt " {
|
|
verbose "processor does not support AVX; skipping AVX tests"
|
|
return
|
|
}
|
|
-re ".*$gdb_prompt $" {
|
|
fail "check whether processor supports AVX"
|
|
}
|
|
timeout {
|
|
fail "check whether processor supports AVX (timeout)"
|
|
}
|
|
}
|
|
|
|
gdb_test "break [gdb_get_line_number "first breakpoint here"]" \
|
|
"Breakpoint .* at .*i386-avx.c.*" \
|
|
"set first breakpoint in main"
|
|
gdb_continue_to_breakpoint "continue to first breakpoint in main"
|
|
|
|
if [is_amd64_regs_target] {
|
|
set nr_regs 16
|
|
} else {
|
|
set nr_regs 8
|
|
}
|
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
|
gdb_test "print \$ymm$r.v8_float" \
|
|
".. = \\{$r, $r.125, $r.25, $r.375, $r.5, $r.625, $r.75, $r.875\\}.*" \
|
|
"check float contents of %ymm$r"
|
|
gdb_test "print \$ymm$r.v32_int8" \
|
|
".. = \\{(-?\[0-9\]+, ){31}-?\[0-9\]+\\}.*" \
|
|
"check int8 contents of %ymm$r"
|
|
}
|
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
|
gdb_test "set var \$ymm$r.v8_float\[0\] = $r + 10" "" "set %ymm$r"
|
|
}
|
|
|
|
gdb_test "break [gdb_get_line_number "second breakpoint here"]" \
|
|
"Breakpoint .* at .*i386-avx.c.*" \
|
|
"set second breakpoint in main"
|
|
gdb_continue_to_breakpoint "continue to second breakpoint in main"
|
|
|
|
for { set r 0 } { $r < $nr_regs } { incr r } {
|
|
gdb_test "print data\[$r\]" \
|
|
".. = \\{f = \\{[expr $r + 10], $r.125, $r.25, $r.375, $r.5, $r.625, $r.75, $r.875\\}\\}.*" \
|
|
"check contents of data\[$r\]"
|
|
}
|