Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / sam / cpus / vonk / ss / api / samfe / src / SamUtility.py
# ========== Copyright Header Begin ==========================================
#
# OpenSPARC T2 Processor File: SamUtility.py
# Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES.
#
# The above named program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License version 2 as published by the Free Software Foundation.
#
# The above named 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 work; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ========== Copyright Header End ============================================
#
# collection of utility functions
#
pfeSim = None
def initSamUtility(sim):
"""
this function must be called first before other functions in this file
can be used.
"""
global pfeSim
pfeSim = sim
def lstmode(on=None):
"""
set display mode:
0 - silent mode
1 - display instr & register delta
2 - display instr
"""
global pfeSim
for s in pfeSim.s:
s.lstmode(on)
def stepx(sid=[-1], n=1, d=1):
"""
execute instructions among strands in round-rabin order
sid: the strands to be included in the execution, -1 means all strands
n: number of instructions to be executed per strand
d: number of instructions to be executed per iteration
"""
global pfeSim
ss = []
if -1 in sid:
# include all strands
ss = pfeSim.s
else:
# otherwise only selected strand(s)
for id in sid:
ss.append(pfeSim.s[id])
while n > d:
for s in ss:
brk = s.step(d)
if brk > 0:
# this strand hits a breakpoint, stop execution,
# return remaining instruction count
return n-(d-brk)
n -= d
for s in ss:
brk = s.step(n)
if brk > 0:
# this strand hits a breakpoint, stop execution,
# return remaining instruction count
return brk