AddressProfiler.hh (11031:3815437cb231) AddressProfiler.hh (11049:dfb0aa3f0649)
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;

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

70 void regStats(const std::string &name) {}
71 void collateStats() {}
72
73 private:
74 // Private copy constructor and assignment operator
75 AddressProfiler(const AddressProfiler& obj);
76 AddressProfiler& operator=(const AddressProfiler& obj);
77
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;

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

70 void regStats(const std::string &name) {}
71 void collateStats() {}
72
73 private:
74 // Private copy constructor and assignment operator
75 AddressProfiler(const AddressProfiler& obj);
76 AddressProfiler& operator=(const AddressProfiler& obj);
77
78 int64_t m_sharing_miss_counter;
78 int64 m_sharing_miss_counter;
79
80 AddressMap m_dataAccessTrace;
81 AddressMap m_macroBlockAccessTrace;
82 AddressMap m_programCounterAccessTrace;
83 AddressMap m_retryProfileMap;
84 Histogram m_retryProfileHisto;
85 Histogram m_retryProfileHistoWrite;
86 Histogram m_retryProfileHistoRead;

--- 29 unchanged lines hidden ---
79
80 AddressMap m_dataAccessTrace;
81 AddressMap m_macroBlockAccessTrace;
82 AddressMap m_programCounterAccessTrace;
83 AddressMap m_retryProfileMap;
84 Histogram m_retryProfileHisto;
85 Histogram m_retryProfileHistoWrite;
86 Histogram m_retryProfileHistoRead;

--- 29 unchanged lines hidden ---