Deleted Added
sdiff udiff text old ( 9496:28d88a0fda74 ) new ( 9497:2759161b9d7f )
full compact
1/*
2 * Copyright (c) 2009 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

31
32#include <iostream>
33#include <string>
34
35#include "mem/protocol/AccessPermission.hh"
36#include "mem/ruby/common/Address.hh"
37#include "mem/ruby/common/Consumer.hh"
38#include "mem/ruby/common/DataBlock.hh"
39#include "mem/ruby/network/Network.hh"
40#include "mem/ruby/recorder/CacheRecorder.hh"
41#include "mem/ruby/system/MachineID.hh"
42#include "mem/packet.hh"
43#include "params/RubyController.hh"
44#include "sim/clocked_object.hh"
45
46class MessageBuffer;

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

87
88 public:
89 MachineID getMachineID() const { return m_machineID; }
90 uint64_t getFullyBusyCycles() const { return m_fully_busy_cycles; }
91 uint64_t getRequestCount() const { return m_request_count; }
92 const std::map<std::string, uint64_t>& getRequestProfileMap() const
93 { return m_requestProfileMap; }
94
95 protected:
96 //! Profiles original cache requests including PUTs
97 void profileRequest(const std::string &request);
98
99 protected:
100 int m_transitions_per_cycle;
101 int m_buffer_size;
102 int m_recycle_latency;
103 std::string m_name;
104 NodeID m_version;
105 Network* m_net_ptr;

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

116 //! Counter for the number of cycles when the transitions carried out
117 //! were equal to the maximum allowed
118 uint64_t m_fully_busy_cycles;
119
120 //! Map for couting requests of different types. The controller should
121 //! call requisite function for updating the count.
122 std::map<std::string, uint64_t> m_requestProfileMap;
123 uint64_t m_request_count;
124};
125
126#endif // __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCONTROLLER_HH__