AddressProfiler.hh revision 6285:ce086eca1ede
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * AddressProfiler.hh
32 *
33 * Description:
34 *
35 * $Id$
36 *
37 */
38
39#ifndef ADDRESSPROFILER_H
40#define ADDRESSPROFILER_H
41
42#include "mem/ruby/common/Global.hh"
43#include "mem/ruby/system/NodeID.hh"
44#include "mem/ruby/common/Histogram.hh"
45#include "mem/ruby/common/Address.hh"
46#include "mem/protocol/CacheMsg.hh"
47#include "mem/protocol/AccessType.hh"
48
49class AccessTraceForAddress;
50class Set;
51template <class KEY_TYPE, class VALUE_TYPE> class Map;
52
53class AddressProfiler {
54public:
55  // Constructors
56  AddressProfiler();
57
58  // Destructor
59  ~AddressProfiler();
60
61  // Public Methods
62  void printStats(ostream& out) const;
63  void clearStats();
64
65  void addTraceSample(Address data_addr, Address pc_addr, CacheRequestType type, AccessModeType access_mode, NodeID id, bool sharing_miss);
66  void profilePersistentPrediction(const Address& data_addr, AccessType type);
67  void profileRetry(const Address& data_addr, AccessType type, int count);
68  void profileGetX(const Address& datablock, const Address& PC, const Set& owner, const Set& sharers, NodeID requestor);
69  void profileGetS(const Address& datablock, const Address& PC, const Set& owner, const Set& sharers, NodeID requestor);
70
71  void print(ostream& out) const;
72
73  //added by SS
74  void setHotLines(bool hot_lines);
75  void setAllInstructions(bool all_instructions);
76private:
77  // Private Methods
78
79  // Private copy constructor and assignment operator
80  AddressProfiler(const AddressProfiler& obj);
81  AddressProfiler& operator=(const AddressProfiler& obj);
82
83  // Data Members (m_ prefix)
84  int64 m_sharing_miss_counter;
85
86  Map<Address, AccessTraceForAddress>* m_dataAccessTrace;
87  Map<Address, AccessTraceForAddress>* m_macroBlockAccessTrace;
88  Map<Address, AccessTraceForAddress>* m_programCounterAccessTrace;
89  Map<Address, AccessTraceForAddress>* m_retryProfileMap;
90  Map<Address, AccessTraceForAddress>* m_persistentPredictionProfileMap;
91  Histogram m_persistentPredictionProfileHisto;
92  Histogram m_retryProfileHisto;
93  Histogram m_retryProfileHistoWrite;
94  Histogram m_retryProfileHistoRead;
95  Histogram m_getx_sharing_histogram;
96  Histogram m_gets_sharing_histogram;
97//added by SS
98  bool m_hot_lines;
99  bool m_all_instructions;
100
101};
102
103// Output operator declaration
104ostream& operator<<(ostream& out, const AddressProfiler& obj);
105
106// ******************* Definitions *******************
107
108// Output operator definition
109extern inline
110ostream& operator<<(ostream& out, const AddressProfiler& obj)
111{
112  obj.print(out);
113  out << flush;
114  return out;
115}
116
117#endif //ADDRESSPROFILER_H
118