StoreTrace.hh (9171:ae88ecf37145) StoreTrace.hh (10302:0e9e99e6369a)
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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __MEM_RUBY_PROFILER_STORETRACE_HH__
30#define __MEM_RUBY_PROFILER_STORETRACE_HH__
31
32#include <iostream>
33
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;

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

26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#ifndef __MEM_RUBY_PROFILER_STORETRACE_HH__
30#define __MEM_RUBY_PROFILER_STORETRACE_HH__
31
32#include <iostream>
33
34#include "base/types.hh"
34#include "mem/ruby/common/Address.hh"
35#include "mem/ruby/common/Histogram.hh"
36
37class StoreTrace
38{
39 public:
40 StoreTrace() { }
41 explicit StoreTrace(const Address& addr);

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

56 // of all lines
57 static Histogram* s_store_count_ptr;
58 static Histogram* s_store_first_to_stolen_ptr;
59 static Histogram* s_store_last_to_stolen_ptr;
60 static Histogram* s_store_first_to_last_ptr;
61
62 Address m_addr;
63 NodeID m_last_writer;
35#include "mem/ruby/common/Address.hh"
36#include "mem/ruby/common/Histogram.hh"
37
38class StoreTrace
39{
40 public:
41 StoreTrace() { }
42 explicit StoreTrace(const Address& addr);

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

57 // of all lines
58 static Histogram* s_store_count_ptr;
59 static Histogram* s_store_first_to_stolen_ptr;
60 static Histogram* s_store_last_to_stolen_ptr;
61 static Histogram* s_store_first_to_last_ptr;
62
63 Address m_addr;
64 NodeID m_last_writer;
64 Time m_first_store;
65 Time m_last_store;
65 Tick m_first_store;
66 Tick m_last_store;
66 int m_stores_this_interval;
67
68 int64 m_total_samples; // Total number of store lifetimes of this line
69 Histogram m_store_count;
70 Histogram m_store_first_to_stolen;
71 Histogram m_store_last_to_stolen;
72 Histogram m_store_first_to_last;
73};

--- 16 unchanged lines hidden ---
67 int m_stores_this_interval;
68
69 int64 m_total_samples; // Total number of store lifetimes of this line
70 Histogram m_store_count;
71 Histogram m_store_first_to_stolen;
72 Histogram m_store_last_to_stolen;
73 Histogram m_store_first_to_last;
74};

--- 16 unchanged lines hidden ---