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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [dejagnu/] [lib/] [targetdb.exp] - Diff between revs 578 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 578 Rev 1765
# Copyright (C) 97, 98, 1999 Free Software Foundation, Inc.
# Copyright (C) 97, 98, 1999 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 2 of the License, or
# the Free Software Foundation; either version 2 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, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Please email any bugs, comments, and/or additions to this file to:
# Please email any bugs, comments, and/or additions to this file to:
# DejaGnu@cygnus.com
# DejaGnu@cygnus.com
#
#
# Searches in the appropriate place (the board_info array) for the specified
# Searches in the appropriate place (the board_info array) for the specified
# information.
# information.
#
#
proc board_info { machine op args } {
proc board_info { machine op args } {
    global target_info
    global target_info
    global board_info
    global board_info
    verbose "board_info $machine $op $args" 3
    verbose "board_info $machine $op $args" 3
    if [info exists target_info($machine,name)] {
    if [info exists target_info($machine,name)] {
        set machine $target_info($machine,name);
        set machine $target_info($machine,name);
    }
    }
    if { $op == "exists" } {
    if { $op == "exists" } {
        if { [llength $args] == 0 } {
        if { [llength $args] == 0 } {
            if [info exists board_info($machine,name)] {
            if [info exists board_info($machine,name)] {
                return 1;
                return 1;
            } else {
            } else {
                return 0;
                return 0;
            }
            }
        } else {
        } else {
            if [info exists "board_info($machine,[lindex $args 0])"] {
            if [info exists "board_info($machine,[lindex $args 0])"] {
                return 1;
                return 1;
            } else {
            } else {
                return 0;
                return 0;
            }
            }
        }
        }
    }
    }
    if { [llength $args] == 0 } {
    if { [llength $args] == 0 } {
        verbose "getting $machine $op" 3
        verbose "getting $machine $op" 3
        if [info exists board_info($machine,$op)] {
        if [info exists board_info($machine,$op)] {
            return $board_info($machine,$op);
            return $board_info($machine,$op);
        } else {
        } else {
            return ""
            return ""
        }
        }
    }
    }
    return "";
    return "";
}
}
proc target_info { op args } {
proc target_info { op args } {
    return [eval "board_info target \"$op\" $args"];
    return [eval "board_info target \"$op\" $args"];
}
}
proc host_info { op args } {
proc host_info { op args } {
    return [eval "board_info host \"$op\" $args"];
    return [eval "board_info host \"$op\" $args"];
}
}
#
#
# Fill in ENTRY with VALUE for the current board being defined.
# Fill in ENTRY with VALUE for the current board being defined.
#
#
proc set_board_info { entry value } {
proc set_board_info { entry value } {
    global board_info board;
    global board_info board;
    if ![info exists board_info($board,$entry)] {
    if ![info exists board_info($board,$entry)] {
        set board_info($board,$entry) $value;
        set board_info($board,$entry) $value;
    }
    }
}
}
#
#
# Fill in ENTRY with VALUE for the current target.
# Fill in ENTRY with VALUE for the current target.
#
#
proc set_currtarget_info { entry value } {
proc set_currtarget_info { entry value } {
    global board_info;
    global board_info;
    set board [target_info name];
    set board [target_info name];
    if ![info exists board_info($board,$entry)] {
    if ![info exists board_info($board,$entry)] {
        set board_info($board,$entry) $value;
        set board_info($board,$entry) $value;
    }
    }
}
}
#
#
# Unset ENTRY for the current board being defined.
# Unset ENTRY for the current board being defined.
#
#
proc unset_board_info { entry } {
proc unset_board_info { entry } {
    global board_info board;
    global board_info board;
    if [info exists board_info($board,$entry)] {
    if [info exists board_info($board,$entry)] {
        unset board_info($board,$entry);
        unset board_info($board,$entry);
    }
    }
}
}
#
#
# Unset ENTRY for the current board being defined.
# Unset ENTRY for the current board being defined.
#
#
proc unset_currtarget_info { entry } {
proc unset_currtarget_info { entry } {
    global board_info;
    global board_info;
    set board [target_info name];
    set board [target_info name];
    if [info exists board_info($board,$entry)] {
    if [info exists board_info($board,$entry)] {
        unset board_info($board,$entry);
        unset board_info($board,$entry);
    }
    }
}
}
 
 

powered by: WebSVN 2.1.0

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