sc_simcontext.cc revision 13192
112940Sgabeblack@google.com/*
212940Sgabeblack@google.com * Copyright 2018 Google, Inc.
312940Sgabeblack@google.com *
412940Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
512940Sgabeblack@google.com * modification, are permitted provided that the following conditions are
612940Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
712940Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
812940Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
912940Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1012940Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1112940Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1212940Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1312940Sgabeblack@google.com * this software without specific prior written permission.
1412940Sgabeblack@google.com *
1512940Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1612940Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1712940Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1812940Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1912940Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2012940Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2112940Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2212940Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2312940Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2412940Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2512940Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2612940Sgabeblack@google.com *
2712940Sgabeblack@google.com * Authors: Gabe Black
2812940Sgabeblack@google.com */
2912940Sgabeblack@google.com
3012940Sgabeblack@google.com#include "base/logging.hh"
3113192Sgabeblack@google.com#include "systemc/core/object.hh"
3213192Sgabeblack@google.com#include "systemc/core/scheduler.hh"
3313192Sgabeblack@google.com#include "systemc/ext/core/sc_main.hh"
3412940Sgabeblack@google.com#include "systemc/ext/core/sc_simcontext.hh"
3512940Sgabeblack@google.com
3612940Sgabeblack@google.comnamespace sc_core
3712940Sgabeblack@google.com{
3812940Sgabeblack@google.com
3913192Sgabeblack@google.comnamespace
4012940Sgabeblack@google.com{
4112940Sgabeblack@google.com
4213192Sgabeblack@google.comsize_t objIndex = 0;
4313192Sgabeblack@google.comsc_simcontext currContext;
4413192Sgabeblack@google.com
4513192Sgabeblack@google.comsc_curr_proc_info currProcInfo;
4613192Sgabeblack@google.com
4713192Sgabeblack@google.com} // anonymous namespace
4813192Sgabeblack@google.com
4913192Sgabeblack@google.comsc_dt::uint64 sc_simcontext::delta_count() const { return sc_delta_count(); }
5013192Sgabeblack@google.comvoid sc_simcontext::reset() { objIndex = 0; }
5112940Sgabeblack@google.com
5212940Sgabeblack@google.comsc_curr_proc_handle
5312940Sgabeblack@google.comsc_simcontext::get_curr_proc_info()
5412940Sgabeblack@google.com{
5513192Sgabeblack@google.com    ::sc_gem5::Process *p = ::sc_gem5::scheduler.current();
5613192Sgabeblack@google.com    currProcInfo.process_handle = p;
5713192Sgabeblack@google.com    currProcInfo.kind = p ? p->procKind() : SC_NO_PROC_;
5813192Sgabeblack@google.com    return &currProcInfo;
5912940Sgabeblack@google.com}
6012940Sgabeblack@google.com
6112946Sgabeblack@google.comsc_object *
6212946Sgabeblack@google.comsc_simcontext::first_object()
6312946Sgabeblack@google.com{
6413192Sgabeblack@google.com    objIndex = 0;
6513192Sgabeblack@google.com    if (!::sc_gem5::allObjects.empty())
6613192Sgabeblack@google.com        return ::sc_gem5::allObjects[0];
6713192Sgabeblack@google.com    else
6813192Sgabeblack@google.com        return nullptr;
6912946Sgabeblack@google.com}
7012946Sgabeblack@google.com
7112946Sgabeblack@google.comsc_object *
7212946Sgabeblack@google.comsc_simcontext::next_object()
7312946Sgabeblack@google.com{
7413192Sgabeblack@google.com    objIndex++;
7513192Sgabeblack@google.com    if (::sc_gem5::allObjects.size() > objIndex)
7613192Sgabeblack@google.com        return ::sc_gem5::allObjects[objIndex];
7713192Sgabeblack@google.com    else
7813192Sgabeblack@google.com        return nullptr;
7912946Sgabeblack@google.com}
8012946Sgabeblack@google.com
8112940Sgabeblack@google.comsc_simcontext *
8212940Sgabeblack@google.comsc_get_curr_simcontext()
8312940Sgabeblack@google.com{
8413192Sgabeblack@google.com    return &currContext;
8512940Sgabeblack@google.com}
8612940Sgabeblack@google.com
8712940Sgabeblack@google.com} // namespace sc_core
88