mem_checker_monitor.hh (10713:eddb533708cb) mem_checker_monitor.hh (13784:1941dc118243)
1/*
2 * Copyright (c) 2012-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

65 *
66 * @param params Python parameters
67 */
68 MemCheckerMonitor(Params* params);
69
70 /** Destructor */
71 ~MemCheckerMonitor();
72
1/*
2 * Copyright (c) 2012-2014 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

65 *
66 * @param params Python parameters
67 */
68 MemCheckerMonitor(Params* params);
69
70 /** Destructor */
71 ~MemCheckerMonitor();
72
73 virtual BaseMasterPort& getMasterPort(const std::string& if_name,
74 PortID idx = InvalidPortID);
73 Port &getPort(const std::string &if_name,
74 PortID idx=InvalidPortID) override;
75
75
76 virtual BaseSlavePort& getSlavePort(const std::string& if_name,
77 PortID idx = InvalidPortID);
78
79 virtual void init();
80
81 private:
82
83 struct MemCheckerMonitorSenderState : public Packet::SenderState
84 {
85 MemCheckerMonitorSenderState(MemChecker::Serial _serial)
86 : serial(_serial)

--- 154 unchanged lines hidden ---
76 virtual void init();
77
78 private:
79
80 struct MemCheckerMonitorSenderState : public Packet::SenderState
81 {
82 MemCheckerMonitorSenderState(MemChecker::Serial _serial)
83 : serial(_serial)

--- 154 unchanged lines hidden ---