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#ifndef __SYSTEMC_EXT_CORE_SC_SIMCONTEXT_HH__
3112940Sgabeblack@google.com#define __SYSTEMC_EXT_CORE_SC_SIMCONTEXT_HH__
3212940Sgabeblack@google.com
3312940Sgabeblack@google.com#include "../dt/int/sc_nbdefs.hh"
3412940Sgabeblack@google.com#include "sc_process_handle.hh"
3512940Sgabeblack@google.com
3612940Sgabeblack@google.comnamespace sc_core
3712940Sgabeblack@google.com{
3812940Sgabeblack@google.com
3912940Sgabeblack@google.comclass sc_simcontext
4012940Sgabeblack@google.com{
4112940Sgabeblack@google.com  public:
4212940Sgabeblack@google.com    sc_dt::uint64 delta_count() const;
4312940Sgabeblack@google.com    void reset();
4412940Sgabeblack@google.com    sc_curr_proc_handle get_curr_proc_info();
4512946Sgabeblack@google.com    sc_object *first_object();
4612946Sgabeblack@google.com    sc_object *next_object();
4713518Sgabeblack@google.com
4813518Sgabeblack@google.com    // Used by TLM.
4913518Sgabeblack@google.com    bool elaboration_done();
5012940Sgabeblack@google.com};
5112940Sgabeblack@google.com
5212940Sgabeblack@google.comsc_simcontext *sc_get_curr_simcontext();
5312940Sgabeblack@google.com
5412940Sgabeblack@google.com} // namespace sc_core
5512940Sgabeblack@google.com
5612940Sgabeblack@google.com#endif  //__SYSTEMC_EXT_CORE_SC_SIMCONTEXT_HH__
57