process.hh revision 13285
112952Sgabeblack@google.com/*
212952Sgabeblack@google.com * Copyright 2018 Google, Inc.
312952Sgabeblack@google.com *
412952Sgabeblack@google.com * Redistribution and use in source and binary forms, with or without
512952Sgabeblack@google.com * modification, are permitted provided that the following conditions are
612952Sgabeblack@google.com * met: redistributions of source code must retain the above copyright
712952Sgabeblack@google.com * notice, this list of conditions and the following disclaimer;
812952Sgabeblack@google.com * redistributions in binary form must reproduce the above copyright
912952Sgabeblack@google.com * notice, this list of conditions and the following disclaimer in the
1012952Sgabeblack@google.com * documentation and/or other materials provided with the distribution;
1112952Sgabeblack@google.com * neither the name of the copyright holders nor the names of its
1212952Sgabeblack@google.com * contributors may be used to endorse or promote products derived from
1312952Sgabeblack@google.com * this software without specific prior written permission.
1412952Sgabeblack@google.com *
1512952Sgabeblack@google.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1612952Sgabeblack@google.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1712952Sgabeblack@google.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1812952Sgabeblack@google.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1912952Sgabeblack@google.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2012952Sgabeblack@google.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
2112952Sgabeblack@google.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
2212952Sgabeblack@google.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
2312952Sgabeblack@google.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2412952Sgabeblack@google.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2512952Sgabeblack@google.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
2612952Sgabeblack@google.com *
2712952Sgabeblack@google.com * Authors: Gabe Black
2812952Sgabeblack@google.com */
2912952Sgabeblack@google.com
3012952Sgabeblack@google.com#ifndef __SYSTEMC_CORE_PROCESS_HH__
3112952Sgabeblack@google.com#define __SYSTEMC_CORE_PROCESS_HH__
3212952Sgabeblack@google.com
3312952Sgabeblack@google.com#include <functional>
3412997Sgabeblack@google.com#include <memory>
3512957Sgabeblack@google.com#include <vector>
3612952Sgabeblack@google.com
3712952Sgabeblack@google.com#include "base/fiber.hh"
3812953Sgabeblack@google.com#include "systemc/core/list.hh"
3913285Sgabeblack@google.com#include "systemc/core/module.hh"
4012952Sgabeblack@google.com#include "systemc/core/object.hh"
4113063Sgabeblack@google.com#include "systemc/core/sched_event.hh"
4213206Sgabeblack@google.com#include "systemc/core/sensitivity.hh"
4312952Sgabeblack@google.com#include "systemc/ext/core/sc_event.hh"
4412952Sgabeblack@google.com#include "systemc/ext/core/sc_module.hh"
4512952Sgabeblack@google.com#include "systemc/ext/core/sc_process_handle.hh"
4612952Sgabeblack@google.com
4713196Sgabeblack@google.comnamespace sc_core
4813196Sgabeblack@google.com{
4913196Sgabeblack@google.com
5013196Sgabeblack@google.comclass sc_join;
5113196Sgabeblack@google.com
5213196Sgabeblack@google.com} // namespace sc_core
5313196Sgabeblack@google.com
5412952Sgabeblack@google.comnamespace sc_gem5
5512952Sgabeblack@google.com{
5612952Sgabeblack@google.com
5713175Sgabeblack@google.comclass ScHalt
5813175Sgabeblack@google.com{};
5913175Sgabeblack@google.com
6013087Sgabeblack@google.comclass Process : public ::sc_core::sc_process_b, public ListNode
6112952Sgabeblack@google.com{
6212952Sgabeblack@google.com  public:
6312952Sgabeblack@google.com    virtual ::sc_core::sc_curr_proc_kind procKind() const = 0;
6412961Sgabeblack@google.com    bool needsStart() const { return _needsStart; }
6513093Sgabeblack@google.com    void needsStart(bool ns) { _needsStart = ns; }
6612952Sgabeblack@google.com    bool dynamic() const { return _dynamic; }
6712952Sgabeblack@google.com    bool isUnwinding() const { return _isUnwinding; }
6812997Sgabeblack@google.com    void isUnwinding(bool v) { _isUnwinding = v; }
6912952Sgabeblack@google.com    bool terminated() const { return _terminated; }
7012952Sgabeblack@google.com
7112952Sgabeblack@google.com    void forEachKid(const std::function<void(Process *)> &work);
7212952Sgabeblack@google.com
7312952Sgabeblack@google.com    bool suspended() const { return _suspended; }
7412952Sgabeblack@google.com    bool disabled() const { return _disabled; }
7512952Sgabeblack@google.com
7612952Sgabeblack@google.com    void suspend(bool inc_kids);
7712952Sgabeblack@google.com    void resume(bool inc_kids);
7812952Sgabeblack@google.com    void disable(bool inc_kids);
7912952Sgabeblack@google.com    void enable(bool inc_kids);
8012952Sgabeblack@google.com
8112952Sgabeblack@google.com    void kill(bool inc_kids);
8212952Sgabeblack@google.com    void reset(bool inc_kids);
8312952Sgabeblack@google.com    virtual void throw_it(ExceptionWrapperBase &exc, bool inc_kids);
8412952Sgabeblack@google.com
8512952Sgabeblack@google.com    void injectException(ExceptionWrapperBase &exc);
8612952Sgabeblack@google.com    ExceptionWrapperBase *excWrapper;
8712952Sgabeblack@google.com
8812952Sgabeblack@google.com    void syncResetOn(bool inc_kids);
8912952Sgabeblack@google.com    void syncResetOff(bool inc_kids);
9012952Sgabeblack@google.com
9113260Sgabeblack@google.com    void signalReset(bool set, bool sync);
9213260Sgabeblack@google.com
9312952Sgabeblack@google.com    void incref() { refCount++; }
9412952Sgabeblack@google.com    void decref() { refCount--; }
9512952Sgabeblack@google.com
9612952Sgabeblack@google.com    const ::sc_core::sc_event &resetEvent() { return _resetEvent; }
9712952Sgabeblack@google.com    const ::sc_core::sc_event &terminatedEvent() { return _terminatedEvent; }
9812952Sgabeblack@google.com
9912953Sgabeblack@google.com    void setStackSize(size_t size) { stackSize = size; }
10012953Sgabeblack@google.com
10112953Sgabeblack@google.com    void run();
10212953Sgabeblack@google.com
10313206Sgabeblack@google.com    void addStatic(StaticSensitivity *);
10413206Sgabeblack@google.com    void setDynamic(DynamicSensitivity *);
10513206Sgabeblack@google.com    void clearDynamic() { setDynamic(nullptr); }
10613260Sgabeblack@google.com    void addReset(ResetSensitivity *);
10713206Sgabeblack@google.com
10813206Sgabeblack@google.com    ScEvent timeoutEvent;
10913206Sgabeblack@google.com    void setTimeout(::sc_core::sc_time t);
11013206Sgabeblack@google.com    void cancelTimeout();
11112957Sgabeblack@google.com
11212959Sgabeblack@google.com    void satisfySensitivity(Sensitivity *);
11312959Sgabeblack@google.com
11412959Sgabeblack@google.com    void ready();
11512959Sgabeblack@google.com
11612953Sgabeblack@google.com    virtual Fiber *fiber() { return Fiber::primaryFiber(); }
11712953Sgabeblack@google.com
11812953Sgabeblack@google.com    static Process *newest() { return _newest; }
11912953Sgabeblack@google.com
12012997Sgabeblack@google.com    void lastReport(::sc_core::sc_report *report);
12112997Sgabeblack@google.com    ::sc_core::sc_report *lastReport() const;
12212997Sgabeblack@google.com
12313180Sgabeblack@google.com    bool hasStaticSensitivities() { return !staticSensitivities.empty(); }
12413180Sgabeblack@google.com    bool internal() { return _internal; }
12513189Sgabeblack@google.com    bool timedOut() { return _timedOut; }
12613260Sgabeblack@google.com    bool inReset() { return _syncReset || syncResetCount || asyncResetCount; }
12713180Sgabeblack@google.com
12813194Sgabeblack@google.com    bool dontInitialize() { return _dontInitialize; }
12913194Sgabeblack@google.com    void dontInitialize(bool di) { _dontInitialize = di; }
13013194Sgabeblack@google.com
13113196Sgabeblack@google.com    void joinWait(::sc_core::sc_join *join) { joinWaiters.push_back(join); }
13213196Sgabeblack@google.com
13313260Sgabeblack@google.com    void waitCount(int count) { _waitCount = count; }
13413260Sgabeblack@google.com
13513285Sgabeblack@google.com    const char *uniqueName(const char *seed) { return nameGen.gen(seed); }
13613285Sgabeblack@google.com
13712952Sgabeblack@google.com  protected:
13813206Sgabeblack@google.com    void timeout();
13913206Sgabeblack@google.com
14013180Sgabeblack@google.com    Process(const char *name, ProcessFuncWrapper *func, bool internal=false);
14112953Sgabeblack@google.com
14212953Sgabeblack@google.com    static Process *_newest;
14312952Sgabeblack@google.com
14412957Sgabeblack@google.com    virtual ~Process()
14512957Sgabeblack@google.com    {
14613072Sgabeblack@google.com        popListNode();
14712957Sgabeblack@google.com        delete func;
14813206Sgabeblack@google.com        for (auto s: staticSensitivities) {
14913206Sgabeblack@google.com            s->clear();
15012957Sgabeblack@google.com            delete s;
15113206Sgabeblack@google.com        }
15213206Sgabeblack@google.com        clearDynamic();
15312957Sgabeblack@google.com    }
15412952Sgabeblack@google.com
15512952Sgabeblack@google.com    ::sc_core::sc_event _resetEvent;
15612952Sgabeblack@google.com    ::sc_core::sc_event _terminatedEvent;
15712952Sgabeblack@google.com
15812952Sgabeblack@google.com    ProcessFuncWrapper *func;
15912952Sgabeblack@google.com    sc_core::sc_curr_proc_kind _procKind;
16013180Sgabeblack@google.com
16113180Sgabeblack@google.com    bool _internal;
16213180Sgabeblack@google.com
16313189Sgabeblack@google.com    // Needed to support the deprecated "timed_out" function.
16413189Sgabeblack@google.com    bool _timedOut;
16513189Sgabeblack@google.com
16613194Sgabeblack@google.com    bool _dontInitialize;
16713194Sgabeblack@google.com
16812961Sgabeblack@google.com    bool _needsStart;
16912952Sgabeblack@google.com    bool _dynamic;
17012952Sgabeblack@google.com    bool _isUnwinding;
17112952Sgabeblack@google.com    bool _terminated;
17212952Sgabeblack@google.com
17312998Sgabeblack@google.com    void terminate();
17412998Sgabeblack@google.com
17512952Sgabeblack@google.com    bool _suspended;
17612959Sgabeblack@google.com    bool _suspendedReady;
17712952Sgabeblack@google.com    bool _disabled;
17812952Sgabeblack@google.com
17912952Sgabeblack@google.com    bool _syncReset;
18012952Sgabeblack@google.com
18113260Sgabeblack@google.com    int syncResetCount;
18213260Sgabeblack@google.com    int asyncResetCount;
18313260Sgabeblack@google.com
18413260Sgabeblack@google.com    int _waitCount;
18513260Sgabeblack@google.com
18612952Sgabeblack@google.com    int refCount;
18712952Sgabeblack@google.com
18812953Sgabeblack@google.com    size_t stackSize;
18912957Sgabeblack@google.com
19013206Sgabeblack@google.com    StaticSensitivities staticSensitivities;
19113206Sgabeblack@google.com    DynamicSensitivity *dynamicSensitivity;
19213260Sgabeblack@google.com    ResetSensitivities resetSensitivities;
19312997Sgabeblack@google.com
19412997Sgabeblack@google.com    std::unique_ptr<::sc_core::sc_report> _lastReport;
19513196Sgabeblack@google.com
19613196Sgabeblack@google.com    std::vector<::sc_core::sc_join *> joinWaiters;
19713285Sgabeblack@google.com
19813285Sgabeblack@google.com    UniqueNameGen nameGen;
19912952Sgabeblack@google.com};
20012952Sgabeblack@google.com
20112952Sgabeblack@google.com} // namespace sc_gem5
20212952Sgabeblack@google.com
20312952Sgabeblack@google.com#endif  //__SYSTEMC_CORE_PROCESS_HH__
204