OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gdb-6.8/] [gdb/] [testsuite/] [gdb.arch/] [i386-sse.exp] - Diff between revs 24 and 157

Only display areas with differences | Details | Blame | View Log

Rev 24 Rev 157
# Copyright 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
# Copyright 2004, 2005, 2007, 2008 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see .
# along with this program.  If not, see .
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# bug-gdb@gnu.org
# bug-gdb@gnu.org
# This file is part of the gdb testsuite.
# This file is part of the gdb testsuite.
if $tracelevel {
if $tracelevel {
    strace $tracelevel
    strace $tracelevel
}
}
set prms_id 0
set prms_id 0
set bug_id 0
set bug_id 0
if ![istarget "i?86-*-*"] then {
if ![istarget "i?86-*-*"] then {
    verbose "Skipping i386 SSE tests."
    verbose "Skipping i386 SSE tests."
    return
    return
}
}
set testfile "i386-sse"
set testfile "i386-sse"
set srcfile ${testfile}.c
set srcfile ${testfile}.c
set binfile ${objdir}/${subdir}/${testfile}
set binfile ${objdir}/${subdir}/${testfile}
if [get_compiler_info ${binfile}] {
if [get_compiler_info ${binfile}] {
    return -1
    return -1
}
}
set additional_flags ""
set additional_flags ""
if [test_compiler_info gcc*] {
if [test_compiler_info gcc*] {
    set additional_flags "additional_flags=-msse"
    set additional_flags "additional_flags=-msse"
}
}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable [list debug $additional_flags]] != "" } {
    unsupported "compiler does not support SSE"
    unsupported "compiler does not support SSE"
    return
    return
}
}
gdb_exit
gdb_exit
gdb_start
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
gdb_load ${binfile}
if ![runto_main] then {
if ![runto_main] then {
    gdb_suppress_tests
    gdb_suppress_tests
}
}
send_gdb "print have_sse ()\r"
send_gdb "print have_sse ()\r"
gdb_expect {
gdb_expect {
    -re ".. = 1\r\n$gdb_prompt " {
    -re ".. = 1\r\n$gdb_prompt " {
        pass "check whether processor supports SSE"
        pass "check whether processor supports SSE"
    }
    }
    -re ".. = 0\r\n$gdb_prompt " {
    -re ".. = 0\r\n$gdb_prompt " {
        verbose "processor does not support SSE; skipping SSE tests"
        verbose "processor does not support SSE; skipping SSE tests"
        return
        return
    }
    }
    -re ".*$gdb_prompt $" {
    -re ".*$gdb_prompt $" {
        fail "check whether processor supports SSE"
        fail "check whether processor supports SSE"
    }
    }
    timeout {
    timeout {
        fail "check whether processor supports SSE (timeout)"
        fail "check whether processor supports SSE (timeout)"
    }
    }
}
}
gdb_test "break [gdb_get_line_number "first breakpoint here"]" \
gdb_test "break [gdb_get_line_number "first breakpoint here"]" \
         "Breakpoint .* at .*i386-sse.c.*" \
         "Breakpoint .* at .*i386-sse.c.*" \
         "set breakpoint in main"
         "set breakpoint in main"
gdb_continue_to_breakpoint "continue to first breakpoint in main"
gdb_continue_to_breakpoint "continue to first breakpoint in main"
foreach r {0 1 2 3 4 5 6 7} {
foreach r {0 1 2 3 4 5 6 7} {
    gdb_test "print \$xmm$r.v4_float" \
    gdb_test "print \$xmm$r.v4_float" \
        ".. = \\{$r, $r.25, $r.5, $r.75\\}.*" \
        ".. = \\{$r, $r.25, $r.5, $r.75\\}.*" \
        "check float contents of %xmm$r"
        "check float contents of %xmm$r"
    gdb_test "print \$xmm$r.v16_int8" \
    gdb_test "print \$xmm$r.v16_int8" \
        ".. = \\{(-?\[0-9\]+, ){15}-?\[0-9\]+\\}.*" \
        ".. = \\{(-?\[0-9\]+, ){15}-?\[0-9\]+\\}.*" \
        "check int8 contents of %xmm$r"
        "check int8 contents of %xmm$r"
}
}
foreach r {0 1 2 3 4 5 6 7} {
foreach r {0 1 2 3 4 5 6 7} {
    gdb_test "set var \$xmm$r.v4_float\[0\] = $r + 10" "" "set %xmm$r"
    gdb_test "set var \$xmm$r.v4_float\[0\] = $r + 10" "" "set %xmm$r"
}
}
gdb_test "break [gdb_get_line_number "second breakpoint here"]" \
gdb_test "break [gdb_get_line_number "second breakpoint here"]" \
         "Breakpoint .* at .*i386-sse.c.*" \
         "Breakpoint .* at .*i386-sse.c.*" \
         "set breakpoint in main"
         "set breakpoint in main"
gdb_continue_to_breakpoint "continue to second breakpoint in main"
gdb_continue_to_breakpoint "continue to second breakpoint in main"
foreach r {0 1 2 3 4 5 6 7} {
foreach r {0 1 2 3 4 5 6 7} {
    gdb_test "print data\[$r\]" \
    gdb_test "print data\[$r\]" \
        ".. = \\{f = \\{[expr $r + 10], $r.25, $r.5, $r.75\\}\\}.*" \
        ".. = \\{f = \\{[expr $r + 10], $r.25, $r.5, $r.75\\}\\}.*" \
        "check contents of data\[$r\]"
        "check contents of data\[$r\]"
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.