mem_checker_monitor.hh (13784:1941dc118243) mem_checker_monitor.hh (13799:15badf7874ee)
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

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

68 MemCheckerMonitor(Params* params);
69
70 /** Destructor */
71 ~MemCheckerMonitor();
72
73 Port &getPort(const std::string &if_name,
74 PortID idx=InvalidPortID) override;
75
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

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

68 MemCheckerMonitor(Params* params);
69
70 /** Destructor */
71 ~MemCheckerMonitor();
72
73 Port &getPort(const std::string &if_name,
74 PortID idx=InvalidPortID) override;
75
76 virtual void init();
76 void init() override;
77
78 private:
79
80 struct MemCheckerMonitorSenderState : public Packet::SenderState
81 {
82 MemCheckerMonitorSenderState(MemChecker::Serial _serial)
83 : serial(_serial)
84 {}

--- 153 unchanged lines hidden ---
77
78 private:
79
80 struct MemCheckerMonitorSenderState : public Packet::SenderState
81 {
82 MemCheckerMonitorSenderState(MemChecker::Serial _serial)
83 : serial(_serial)
84 {}

--- 153 unchanged lines hidden ---