diff options
author | Sean Wilson <spwilson2@wisc.edu> | 2017-06-28 13:34:02 -0500 |
---|---|---|
committer | Sean Wilson <spwilson2@wisc.edu> | 2017-07-12 20:07:05 +0000 |
commit | fc575f8266149c78b29bcbe12ab86ccb7614ffbf (patch) | |
tree | 8f6ad3a6af8a5b4c529638b94ceb7a897d6192fb /src/mem/ruby/system/GPUCoalescer.hh | |
parent | 381aa8498997f5ce93480511f7514be85356687a (diff) | |
download | gem5-fc575f8266149c78b29bcbe12ab86ccb7614ffbf.tar.xz |
ruby: Refactor some Event subclasses to lambdas
Change-Id: I9f47a20a869553515a759d9a29c05f6ce4b42d64
Signed-off-by: Sean Wilson <spwilson2@wisc.edu>
Reviewed-on: https://gem5-review.googlesource.com/3930
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/mem/ruby/system/GPUCoalescer.hh')
-rw-r--r-- | src/mem/ruby/system/GPUCoalescer.hh | 30 |
1 files changed, 2 insertions, 28 deletions
diff --git a/src/mem/ruby/system/GPUCoalescer.hh b/src/mem/ruby/system/GPUCoalescer.hh index 2b42e1933..894683811 100644 --- a/src/mem/ruby/system/GPUCoalescer.hh +++ b/src/mem/ruby/system/GPUCoalescer.hh @@ -255,17 +255,7 @@ class GPUCoalescer : public RubyPort bool handleLlsc(Addr address, GPUCoalescerRequest* request); - class IssueEvent : public Event - { - private: - GPUCoalescer *seq; - public: - IssueEvent(GPUCoalescer *_seq); - void process(); - const char *description() const; - }; - - IssueEvent issueEvent; + EventFunctionWrapper issueEvent; // Changed to protected to enable inheritance by VIPER Coalescer @@ -305,22 +295,7 @@ class GPUCoalescer : public RubyPort bool m_runningGarnetStandalone; - class GPUCoalescerWakeupEvent : public Event - { - private: - GPUCoalescer *m_GPUCoalescer_ptr; - - public: - GPUCoalescerWakeupEvent(GPUCoalescer *_seq) : - m_GPUCoalescer_ptr(_seq) {} - void process() { m_GPUCoalescer_ptr->wakeup(); } - const char *description() const - { - return "GPUCoalescer deadlock check"; - } - }; - - GPUCoalescerWakeupEvent deadlockCheckEvent; + EventFunctionWrapper deadlockCheckEvent; bool assumingRfOCoherence; // m5 style stats for TCP hit/miss counts @@ -382,4 +357,3 @@ operator<<(std::ostream& out, const GPUCoalescer& obj) } #endif // __MEM_RUBY_SYSTEM_GPU_COALESCER_HH__ - |