rubytest: seperated read and write ports.
[gem5.git] / src / mem / ruby / slicc_interface / RubySlicc_Profiler_interface.cc
1 /*
2 * Copyright (c) 1999-2008 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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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/common/Global.hh"
30 #include "mem/ruby/profiler/AddressProfiler.hh"
31 #include "mem/ruby/profiler/Profiler.hh"
32 #include "mem/ruby/slicc_interface/RubySlicc_ComponentMapping.hh"
33 #include "mem/ruby/slicc_interface/RubySlicc_Profiler_interface.hh"
34 #include "mem/ruby/system/System.hh"
35
36 using namespace std;
37
38 void
39 profile_request(const string& L1CacheState, const string& L2CacheState,
40 const string& directoryState, const string& requestType)
41 {
42 string requestStr = L1CacheState + ":" + L2CacheState + ":" +
43 directoryState + ":" + requestType;
44
45 g_system_ptr->getProfiler()->profileRequest(requestStr);
46 }
47
48 void
49 profile_outstanding_request(int outstanding)
50 {
51 g_system_ptr->getProfiler()->profileOutstandingRequest(outstanding);
52 }
53
54 void
55 profile_average_latency_estimate(int latency)
56 {
57 g_system_ptr->getProfiler()->profileAverageLatencyEstimate(latency);
58 }
59
60 void
61 profile_sharing(const Address& addr, AccessType type, NodeID requestor,
62 const Set& sharers, const Set& owner)
63 {
64 g_system_ptr->getProfiler()->
65 profileSharing(addr, type, requestor, sharers, owner);
66 }
67
68 void
69 profileMsgDelay(int virtualNetwork, int delayCycles)
70 {
71 g_system_ptr->getProfiler()->profileMsgDelay(virtualNetwork, delayCycles);
72 }
73
74 void
75 profileGetX(const Address& datablock, const Address& PC, const Set& owner,
76 const Set& sharers, NodeID requestor)
77 {
78 g_system_ptr->getProfiler()->getAddressProfiler()->
79 profileGetX(datablock, PC, owner, sharers, requestor);
80 }
81
82 void
83 profileGetS(const Address& datablock, const Address& PC, const Set& owner,
84 const Set& sharers, NodeID requestor)
85 {
86 g_system_ptr->getProfiler()->getAddressProfiler()->
87 profileGetS(datablock, PC, owner, sharers, requestor);
88 }
89
90
91