📄 peq_with_get.h
字号:
/***************************************************************************** The following code is derived, directly or indirectly, from the SystemC source code Copyright (c) 1996-2008 by all Contributors. All Rights reserved. The contents of this file are subject to the restrictions and limitations set forth in the SystemC Open Source License Version 3.0 (the "License"); You may not use this file except in compliance with such restrictions and limitations. You may obtain instructions on how to receive a copy of the License at http://www.systemc.org/. Software distributed by Contributors under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. *****************************************************************************/#ifndef __PEQ_WITH_GET_H__#define __PEQ_WITH_GET_H__//#include "tlm.h"#include <systemc>#include <map>namespace tlm_utils {template <class PAYLOAD>class peq_with_get : public sc_core::sc_object{public: typedef PAYLOAD transaction_type; typedef std::pair<const sc_core::sc_time, transaction_type*> pair_type;public: peq_with_get(const char* name) : sc_core::sc_object(name) { } void notify(transaction_type& trans, sc_core::sc_time& t) { m_scheduled_events.insert(pair_type(t + sc_core::sc_time_stamp(), &trans)); m_event.notify(t); } void notify(transaction_type& trans) { m_scheduled_events.insert(pair_type(sc_core::sc_time_stamp(), &trans)); m_event.notify(); // immediate notification } // needs to be called until it returns 0 transaction_type* get_next_transaction() { if (m_scheduled_events.empty()) { return 0; } sc_core::sc_time now = sc_core::sc_time_stamp(); if (m_scheduled_events.begin()->first <= now) { transaction_type* trans = m_scheduled_events.begin()->second; m_scheduled_events.erase(m_scheduled_events.begin()); return trans; } m_event.notify(m_scheduled_events.begin()->first - now); return 0; } sc_core::sc_event& get_event() { return m_event; }private: std::multimap<const sc_core::sc_time, transaction_type*> m_scheduled_events; sc_core::sc_event m_event;};}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -