diff options
author | Gabe Black <gabeblack@google.com> | 2018-06-15 18:43:14 -0700 |
---|---|---|
committer | Gabe Black <gabeblack@google.com> | 2018-08-22 01:07:24 +0000 |
commit | 60228015726d89122e92278bde2f34c2dbbec1e3 (patch) | |
tree | 3a1a60d594509562ddde44fd0b3ae9fbd77c6e82 /src/systemc/ext | |
parent | 8bc2186369d5981f0ef5826fad355c4b9663a78c (diff) | |
download | gem5-60228015726d89122e92278bde2f34c2dbbec1e3.tar.xz |
systemc: Add some nonstandard cthread related sc_module functions.
Change-Id: I73f9868b80f9b75e7bd90df6e894daea60a203a1
Reviewed-on: https://gem5-review.googlesource.com/11268
Reviewed-by: Gabe Black <gabeblack@google.com>
Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/ext')
-rw-r--r-- | src/systemc/ext/core/sc_module.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/systemc/ext/core/sc_module.hh b/src/systemc/ext/core/sc_module.hh index 931eb3a86..25053dfa1 100644 --- a/src/systemc/ext/core/sc_module.hh +++ b/src/systemc/ext/core/sc_module.hh @@ -36,6 +36,13 @@ #include "sc_sensitive.hh" #include "sc_time.hh" +namespace sc_dt +{ + +class sc_logic; + +} // namespace sc_dt + namespace sc_core { @@ -186,7 +193,12 @@ class sc_module : public sc_object void wait(const sc_time &, const sc_event_and_list &); void wait(double, sc_time_unit, const sc_event_and_list &); + // Nonstandard void halt(); + void at_posedge(const sc_signal_in_if<bool> &); + void at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &); + void at_negedge(const sc_signal_in_if<bool> &); + void at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &); virtual void before_end_of_elaboration() {} virtual void end_of_elaboration() {} @@ -243,6 +255,10 @@ void wait(double, sc_time_unit, const sc_event_and_list &); // stop the currently executing cthread, or if a cthread isn't running report // an error. void halt(); +void at_posedge(const sc_signal_in_if<bool> &); +void at_posedge(const sc_signal_in_if<sc_dt::sc_logic> &); +void at_negedge(const sc_signal_in_if<bool> &); +void at_negedge(const sc_signal_in_if<sc_dt::sc_logic> &); const char *sc_gen_unique_name(const char *); |