gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
event_finder.hh
Go to the documentation of this file.
1 /*****************************************************************************
2 
3  Licensed to Accellera Systems Initiative Inc. (Accellera) under one or
4  more contributor license agreements. See the NOTICE file distributed
5  with this work for additional information regarding copyright ownership.
6  Accellera licenses this file to you under the Apache License, Version 2.0
7  (the "License"); you may not use this file except in compliance with the
8  License. You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12  Unless required by applicable law or agreed to in writing, software
13  distributed under the License is distributed on an "AS IS" BASIS,
14  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
15  implied. See the License for the specific language governing
16  permissions and limitations under the License.
17 
18  *****************************************************************************/
19 
20 #ifndef __SYSTEMC_EXT_TLM_CORE_1_REQ_RSP_PORTS_EVENT_FINDER_HH__
21 #define __SYSTEMC_EXT_TLM_CORE_1_REQ_RSP_PORTS_EVENT_FINDER_HH__
22 
23 #include <sstream>
24 
25 #include "../interfaces/tag.hh"
26 
27 namespace tlm
28 {
29 
30 template <class IF, class T>
32 {
33  public:
35  const sc_core::sc_event &(IF::*event_method_)(
36  tlm_tag<T> *) const) :
37  sc_core::sc_event_finder_t<IF>(port_), m_event_method(event_method_)
38  {}
39 
40  virtual ~tlm_event_finder_t() {}
41 
42  virtual const sc_core::sc_event &
43  find_event(sc_core::sc_interface *if_p=nullptr) const;
44 
45  private:
47 
48  private:
49  // disabled
53 };
54 
55 template <class IF, class T>
56 inline const sc_core::sc_event &
58 {
59  const IF *iface = if_p ? dynamic_cast<const IF *>(if_p) :
60  dynamic_cast<const IF *>(this->port()->_gem5Interface(0));
61  if (iface == nullptr) {
62  std::ostringstream out;
63  out << "port is not bound: port '" << this->port()->name() <<
64  "' (" << this->port()->kind() << ")";
65  SC_REPORT_ERROR(sc_core::SC_ID_FIND_EVENT_, out.str().c_str());
66  static sc_core::sc_event none;
67  return none;
68  }
69  return (const_cast<IF *>(iface)->*m_event_method)(nullptr);
70 }
71 
72 } // namespace tlm
73 
74 #endif /* __SYSTEMC_EXT_TLM_CORE_1_REQ_RSP_PORTS_EVENT_FINDER_HH__ */
tlm_event_finder_t< IF, T > & operator=(const tlm_event_finder_t< IF, T > &)
sc_event_finder_t(const sc_port_base &p, const sc_event &(IF::*_method)() const)
Definition: sc_event.hh:229
const char * kind() const
Definition: sc_port.hh:87
const char * name() const
Definition: sc_object.cc:46
const sc_port_base * port() const override
Definition: sc_event.hh:239
virtual sc_interface * _gem5Interface(int n) const =0
const FlagsType none
Nothing extra to print.
Definition: info.hh:45
const sc_core::sc_event &(IF::* m_event_method)(tlm_tag< T > *) const
Definition: event_finder.hh:46
tlm_event_finder_t(const sc_core::sc_port_base &port_, const sc_core::sc_event &(IF::*event_method_)(tlm_tag< T > *) const)
Definition: event_finder.hh:34
#define SC_REPORT_ERROR(msg_type, msg)
virtual const sc_core::sc_event & find_event(sc_core::sc_interface *if_p=nullptr) const
Definition: event_finder.hh:57
const char SC_ID_FIND_EVENT_[]
Definition: messages.cc:59

Generated on Fri Feb 28 2020 16:27:04 for gem5 by doxygen 1.8.13