AbstractController.cc (9465:4ae4f3f4b870) AbstractController.cc (9496:28d88a0fda74)
1/*
2 * Copyright (c) 2011 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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "mem/ruby/slicc_interface/AbstractController.hh"
30#include "mem/ruby/system/System.hh"
31
32AbstractController::AbstractController(const Params *p)
1/*
2 * Copyright (c) 2011 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;

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

25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "mem/ruby/slicc_interface/AbstractController.hh"
30#include "mem/ruby/system/System.hh"
31
32AbstractController::AbstractController(const Params *p)
33 : ClockedObject(p), Consumer(this)
33 : ClockedObject(p), Consumer(this), m_fully_busy_cycles(0),
34 m_request_count(0)
34{
35 m_version = p->version;
36 m_transitions_per_cycle = p->transitions_per_cycle;
37 m_buffer_size = p->buffer_size;
38 m_recycle_latency = p->recycle_latency;
39 m_number_of_TBEs = p->number_of_TBEs;
40 m_is_blocking = false;
35{
36 m_version = p->version;
37 m_transitions_per_cycle = p->transitions_per_cycle;
38 m_buffer_size = p->buffer_size;
39 m_recycle_latency = p->recycle_latency;
40 m_number_of_TBEs = p->number_of_TBEs;
41 m_is_blocking = false;
41 p->ruby_system->registerAbstractController(this);
42}
42}
43
44void
45AbstractController::init()
46{
47 params()->ruby_system->registerAbstractController(this);
48}
49
50void
51AbstractController::clearStats()
52{
53 m_requestProfileMap.clear();
54 m_request_count = 0;
55}
56
57void
58AbstractController::profileRequest(const std::string &request)
59{
60 m_request_count++;
61
62 // if it doesn't exist, conveniently, it will be created with the
63 // default value which is 0
64 m_requestProfileMap[request]++;
65}