gem5  v20.1.0.0
sc_prim.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2018 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __SYSTEMC_EXT_CORE_SC_PRIM_HH__
29 #define __SYSTEMC_EXT_CORE_SC_PRIM_HH__
30 
31 #include "sc_object.hh"
32 #include "sc_time.hh"
33 
34 namespace sc_gem5
35 {
36 
37 class Channel;
38 
39 uint64_t getChangeStamp();
40 
41 } // namespace sc_gem5
42 
43 namespace sc_core
44 {
45 
46 class sc_event;
47 class sc_event_and_list;
48 class sc_event_or_list;
49 
50 class sc_prim_channel : public sc_object
51 {
52  public:
53  virtual const char *kind() const { return "sc_prim_channel"; }
54 
55  protected:
57  explicit sc_prim_channel(const char *);
58  virtual ~sc_prim_channel();
59 
60  void request_update();
61  void async_request_update();
62  virtual void update() {}
63 
64  void next_trigger();
65  void next_trigger(const sc_event &);
66  void next_trigger(const sc_event_or_list &);
67  void next_trigger(const sc_event_and_list &);
68  void next_trigger(const sc_time &);
69  void next_trigger(double, sc_time_unit);
70  void next_trigger(const sc_time &, const sc_event &);
71  void next_trigger(double, sc_time_unit, const sc_event &);
72  void next_trigger(const sc_time &, const sc_event_or_list &);
73  void next_trigger(double, sc_time_unit, const sc_event_or_list &);
74  void next_trigger(const sc_time &, const sc_event_and_list &);
75  void next_trigger(double, sc_time_unit, const sc_event_and_list &);
76 
77  // Nonstandard.
78  bool timed_out();
79 
80  void wait();
81  void wait(int);
82  void wait(const sc_event &);
83  void wait(const sc_event_or_list &);
84  void wait(const sc_event_and_list &);
85  void wait(const sc_time &);
86  void wait(double, sc_time_unit);
87  void wait(const sc_time &, const sc_event &);
88  void wait(double, sc_time_unit, const sc_event &);
89  void wait(const sc_time &, const sc_event_or_list &);
90  void wait(double, sc_time_unit, const sc_event_or_list &);
91  void wait(const sc_time &, const sc_event_and_list &);
92  void wait(double, sc_time_unit, const sc_event_and_list &);
93 
94  friend class sc_gem5::Kernel;
95 
96  virtual void before_end_of_elaboration() {}
97  virtual void end_of_elaboration() {}
98  virtual void start_of_simulation() {}
99  virtual void end_of_simulation() {}
100 
101  private:
102  // Disabled
105 
106  friend class sc_gem5::Channel;
108 };
109 
110 } // namespace sc_core
111 
112 #endif //__SYSTEMC_EXT_CORE_SC_PRIM_HH__
sc_core::sc_prim_channel::timed_out
bool timed_out()
Definition: sc_prim.cc:156
sc_core::sc_prim_channel::end_of_elaboration
virtual void end_of_elaboration()
Definition: sc_prim.hh:97
sc_core::sc_prim_channel::operator=
sc_prim_channel & operator=(const sc_prim_channel &)
sc_core
Definition: messages.cc:31
sc_core::sc_time_unit
sc_time_unit
Definition: sc_time.hh:40
sc_core::sc_event_and_list
Definition: sc_event.hh:61
sc_core::sc_prim_channel::wait
void wait()
Definition: sc_prim.cc:162
sc_core::sc_event_or_list
Definition: sc_event.hh:93
sc_core::sc_prim_channel::next_trigger
void next_trigger()
Definition: sc_prim.cc:82
sc_core::sc_prim_channel::request_update
void request_update()
Definition: sc_prim.cc:70
sc_gem5::Kernel
Definition: kernel.hh:45
sc_core::sc_prim_channel::kind
virtual const char * kind() const
Definition: sc_prim.hh:53
sc_gem5::getChangeStamp
uint64_t getChangeStamp()
Definition: sc_prim.cc:37
sc_core::sc_prim_channel::~sc_prim_channel
virtual ~sc_prim_channel()
Definition: sc_prim.cc:67
sc_core::sc_prim_channel::async_request_update
void async_request_update()
Definition: sc_prim.cc:76
sc_core::sc_event
Definition: sc_event.hh:169
sc_core::sc_time
Definition: sc_time.hh:49
sc_core::sc_prim_channel::sc_prim_channel
sc_prim_channel()
Definition: sc_prim.cc:44
sc_core::sc_object
Definition: sc_object.hh:50
sc_core::sc_prim_channel::update
virtual void update()
Definition: sc_prim.hh:62
sc_core::sc_prim_channel::before_end_of_elaboration
virtual void before_end_of_elaboration()
Definition: sc_prim.hh:96
sc_core::sc_prim_channel
Definition: sc_prim.hh:50
sc_object.hh
sc_gem5
Definition: sc_clock.cc:42
sc_core::sc_prim_channel::start_of_simulation
virtual void start_of_simulation()
Definition: sc_prim.hh:98
sc_gem5::Channel
Definition: channel.hh:39
sc_time.hh
sc_core::sc_prim_channel::end_of_simulation
virtual void end_of_simulation()
Definition: sc_prim.hh:99
sc_core::sc_prim_channel::_gem5_channel
sc_gem5::Channel * _gem5_channel
Definition: sc_prim.hh:107

Generated on Wed Sep 30 2020 14:02:15 for gem5 by doxygen 1.8.17