Deleted Added
sdiff udiff text old ( 13206:c944ef4abb48 ) new ( 13208:6703cb024823 )
full compact
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

--- 58 unchanged lines hidden (view full) ---

67
68 sc_core::sc_event *sc_event() { return _sc_event; }
69
70 const std::string &name() const;
71 const std::string &basename() const;
72 bool inHierarchy() const;
73 sc_core::sc_object *getParentObject() const;
74
75 void notify();
76 void notify(const sc_core::sc_time &t);
77 void
78 notify(double d, sc_core::sc_time_unit &u)
79 {
80 notify(sc_core::sc_time(d, u));
81 }
82 void cancel();

--- 12 unchanged lines hidden (view full) ---

95 return e->_gem5_event;
96 }
97
98 void
99 addSensitivity(StaticSensitivity *s) const
100 {
101 // Insert static sensitivities in reverse order to match Accellera's
102 // implementation.
103 staticSensitivities.insert(staticSensitivities.begin(), s);
104 }
105 void
106 delSensitivity(StaticSensitivity *s) const
107 {
108 for (auto &t: staticSensitivities) {
109 if (t == s) {
110 t = staticSensitivities.back();
111 staticSensitivities.pop_back();
112 break;
113 }
114 }
115 }
116 void
117 addSensitivity(DynamicSensitivity *s) const
118 {
119 dynamicSensitivities.push_back(s);
120 }
121 void
122 delSensitivity(DynamicSensitivity *s) const
123 {
124 for (auto &t: dynamicSensitivities) {
125 if (t == s) {
126 t = dynamicSensitivities.back();
127 dynamicSensitivities.pop_back();
128 break;
129 }
130 }
131 }
132
133 private:
134 sc_core::sc_event *_sc_event;
135
136 std::string _basename;
137 std::string _name;
138 bool _inHierarchy;
139
140 sc_core::sc_object *parent;
141
142 ScEvent delayedNotify;
143
144 mutable StaticSensitivities staticSensitivities;
145 mutable DynamicSensitivities dynamicSensitivities;
146};
147
148extern Events topLevelEvents;
149extern Events allEvents;
150
151EventsIt findEvent(const std::string &name);
152
153} // namespace sc_gem5
154
155#endif //__SYSTEMC_CORE_EVENT_HH__