Profiler.cc revision 8174
16145Snate@binkert.org/*
26145Snate@binkert.org * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
36145Snate@binkert.org * All rights reserved.
46145Snate@binkert.org *
56145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
66145Snate@binkert.org * modification, are permitted provided that the following conditions are
76145Snate@binkert.org * met: redistributions of source code must retain the above copyright
86145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
96145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
106145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
116145Snate@binkert.org * documentation and/or other materials provided with the distribution;
126145Snate@binkert.org * neither the name of the copyright holders nor the names of its
136145Snate@binkert.org * contributors may be used to endorse or promote products derived from
146145Snate@binkert.org * this software without specific prior written permission.
156145Snate@binkert.org *
166145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276145Snate@binkert.org */
286145Snate@binkert.org
296145Snate@binkert.org/*
306145Snate@binkert.org   This file has been modified by Kevin Moore and Dan Nussbaum of the
316145Snate@binkert.org   Scalable Systems Research Group at Sun Microsystems Laboratories
326145Snate@binkert.org   (http://research.sun.com/scalable/) to support the Adaptive
336145Snate@binkert.org   Transactional Memory Test Platform (ATMTP).
346145Snate@binkert.org
356145Snate@binkert.org   Please send email to atmtp-interest@sun.com with feedback, questions, or
366145Snate@binkert.org   to request future announcements about ATMTP.
376145Snate@binkert.org
386145Snate@binkert.org   ----------------------------------------------------------------------
396145Snate@binkert.org
406145Snate@binkert.org   File modification date: 2008-02-23
416145Snate@binkert.org
426145Snate@binkert.org   ----------------------------------------------------------------------
436145Snate@binkert.org*/
446145Snate@binkert.org
457002Snate@binkert.org// Allows use of times() library call, which determines virtual runtime
467002Snate@binkert.org#include <sys/resource.h>
477002Snate@binkert.org#include <sys/times.h>
487002Snate@binkert.org
497454Snate@binkert.org#include <algorithm>
507832Snate@binkert.org#include <fstream>
517454Snate@binkert.org
527454Snate@binkert.org#include "base/stl_helpers.hh"
537056Snate@binkert.org#include "base/str.hh"
548174Snilay@cs.wisc.edu#include "mem/protocol/RubyRequest.hh"
557048Snate@binkert.org#include "mem/protocol/MachineType.hh"
567048Snate@binkert.org#include "mem/protocol/Protocol.hh"
577048Snate@binkert.org#include "mem/ruby/network/Network.hh"
587048Snate@binkert.org#include "mem/ruby/profiler/AddressProfiler.hh"
596154Snate@binkert.org#include "mem/ruby/profiler/Profiler.hh"
606154Snate@binkert.org#include "mem/ruby/system/System.hh"
616876Ssteve.reinhardt@amd.com#include "mem/ruby/system/System.hh"
626876Ssteve.reinhardt@amd.com
637055Snate@binkert.orgusing namespace std;
647454Snate@binkert.orgusing m5::stl_helpers::operator<<;
657055Snate@binkert.org
666145Snate@binkert.orgstatic double process_memory_total();
676145Snate@binkert.orgstatic double process_memory_resident();
686145Snate@binkert.org
696876Ssteve.reinhardt@amd.comProfiler::Profiler(const Params *p)
706876Ssteve.reinhardt@amd.com    : SimObject(p)
716145Snate@binkert.org{
727048Snate@binkert.org    m_inst_profiler_ptr = NULL;
737048Snate@binkert.org    m_address_profiler_ptr = NULL;
746285Snate@binkert.org
757048Snate@binkert.org    m_real_time_start_time = time(NULL); // Not reset in clearStats()
767048Snate@binkert.org    m_stats_period = 1000000; // Default
777048Snate@binkert.org    m_periodic_output_file_ptr = &cerr;
786145Snate@binkert.org
797048Snate@binkert.org    m_hot_lines = p->hot_lines;
807048Snate@binkert.org    m_all_instructions = p->all_instructions;
816876Ssteve.reinhardt@amd.com
827048Snate@binkert.org    m_num_of_sequencers = p->num_of_sequencers;
836896SBrad.Beckmann@amd.com
847048Snate@binkert.org    m_hot_lines = false;
857048Snate@binkert.org    m_all_instructions = false;
866285Snate@binkert.org
877048Snate@binkert.org    m_address_profiler_ptr = new AddressProfiler(m_num_of_sequencers);
887048Snate@binkert.org    m_address_profiler_ptr->setHotLines(m_hot_lines);
897048Snate@binkert.org    m_address_profiler_ptr->setAllInstructions(m_all_instructions);
906285Snate@binkert.org
917048Snate@binkert.org    if (m_all_instructions) {
927048Snate@binkert.org        m_inst_profiler_ptr = new AddressProfiler(m_num_of_sequencers);
937048Snate@binkert.org        m_inst_profiler_ptr->setHotLines(m_hot_lines);
947048Snate@binkert.org        m_inst_profiler_ptr->setAllInstructions(m_all_instructions);
957048Snate@binkert.org    }
966285Snate@binkert.org}
976285Snate@binkert.org
986889SBrad.Beckmann@amd.comProfiler::~Profiler()
996889SBrad.Beckmann@amd.com{
1007048Snate@binkert.org    if (m_periodic_output_file_ptr != &cerr) {
1017048Snate@binkert.org        delete m_periodic_output_file_ptr;
1027048Snate@binkert.org    }
1036889SBrad.Beckmann@amd.com}
1046889SBrad.Beckmann@amd.com
1057048Snate@binkert.orgvoid
1067048Snate@binkert.orgProfiler::wakeup()
1076145Snate@binkert.org{
1087048Snate@binkert.org    // FIXME - avoid the repeated code
1096145Snate@binkert.org
1107454Snate@binkert.org    vector<integer_t> perProcCycleCount(m_num_of_sequencers);
1116145Snate@binkert.org
1127048Snate@binkert.org    for (int i = 0; i < m_num_of_sequencers; i++) {
1137048Snate@binkert.org        perProcCycleCount[i] =
1147048Snate@binkert.org            g_system_ptr->getCycleCount(i) - m_cycles_executed_at_start[i] + 1;
1157048Snate@binkert.org        // The +1 allows us to avoid division by zero
1167048Snate@binkert.org    }
1176145Snate@binkert.org
1187048Snate@binkert.org    ostream &out = *m_periodic_output_file_ptr;
1196889SBrad.Beckmann@amd.com
1207048Snate@binkert.org    out << "ruby_cycles: " << g_eventQueue_ptr->getTime()-m_ruby_start << endl
1217048Snate@binkert.org        << "mbytes_resident: " << process_memory_resident() << endl
1227048Snate@binkert.org        << "mbytes_total: " << process_memory_total() << endl;
1236889SBrad.Beckmann@amd.com
1247048Snate@binkert.org    if (process_memory_total() > 0) {
1257054Snate@binkert.org        out << "resident_ratio: "
1267048Snate@binkert.org            << process_memory_resident() / process_memory_total() << endl;
1277048Snate@binkert.org    }
1286889SBrad.Beckmann@amd.com
1296145Snate@binkert.org    out << "miss_latency: " << m_allMissLatencyHistogram << endl;
1306145Snate@binkert.org
1316145Snate@binkert.org    out << endl;
1326145Snate@binkert.org
1337048Snate@binkert.org    if (m_all_instructions) {
1347048Snate@binkert.org        m_inst_profiler_ptr->printStats(out);
1356145Snate@binkert.org    }
1366145Snate@binkert.org
1377048Snate@binkert.org    //g_system_ptr->getNetwork()->printStats(out);
1387048Snate@binkert.org    g_eventQueue_ptr->scheduleEvent(this, m_stats_period);
1397048Snate@binkert.org}
1407048Snate@binkert.org
1417048Snate@binkert.orgvoid
1427048Snate@binkert.orgProfiler::setPeriodicStatsFile(const string& filename)
1437048Snate@binkert.org{
1447048Snate@binkert.org    cout << "Recording periodic statistics to file '" << filename << "' every "
1457048Snate@binkert.org         << m_stats_period << " Ruby cycles" << endl;
1467048Snate@binkert.org
1477048Snate@binkert.org    if (m_periodic_output_file_ptr != &cerr) {
1487048Snate@binkert.org        delete m_periodic_output_file_ptr;
1496145Snate@binkert.org    }
1506145Snate@binkert.org
1517048Snate@binkert.org    m_periodic_output_file_ptr = new ofstream(filename.c_str());
1527048Snate@binkert.org    g_eventQueue_ptr->scheduleEvent(this, 1);
1537048Snate@binkert.org}
1547048Snate@binkert.org
1557048Snate@binkert.orgvoid
1567048Snate@binkert.orgProfiler::setPeriodicStatsInterval(integer_t period)
1577048Snate@binkert.org{
1587054Snate@binkert.org    cout << "Recording periodic statistics every " << m_stats_period
1597048Snate@binkert.org         << " Ruby cycles" << endl;
1607048Snate@binkert.org
1617048Snate@binkert.org    m_stats_period = period;
1627048Snate@binkert.org    g_eventQueue_ptr->scheduleEvent(this, 1);
1637048Snate@binkert.org}
1647048Snate@binkert.org
1657048Snate@binkert.orgvoid
1667048Snate@binkert.orgProfiler::printConfig(ostream& out) const
1677048Snate@binkert.org{
1687048Snate@binkert.org    out << endl;
1697048Snate@binkert.org    out << "Profiler Configuration" << endl;
1707048Snate@binkert.org    out << "----------------------" << endl;
1717048Snate@binkert.org    out << "periodic_stats_period: " << m_stats_period << endl;
1727048Snate@binkert.org}
1737048Snate@binkert.org
1747048Snate@binkert.orgvoid
1757048Snate@binkert.orgProfiler::print(ostream& out) const
1767048Snate@binkert.org{
1777048Snate@binkert.org    out << "[Profiler]";
1787048Snate@binkert.org}
1797048Snate@binkert.org
1807048Snate@binkert.orgvoid
1817048Snate@binkert.orgProfiler::printStats(ostream& out, bool short_stats)
1827048Snate@binkert.org{
1837048Snate@binkert.org    out << endl;
1847048Snate@binkert.org    if (short_stats) {
1857048Snate@binkert.org        out << "SHORT ";
1867048Snate@binkert.org    }
1877048Snate@binkert.org    out << "Profiler Stats" << endl;
1887048Snate@binkert.org    out << "--------------" << endl;
1897048Snate@binkert.org
1907048Snate@binkert.org    time_t real_time_current = time(NULL);
1917048Snate@binkert.org    double seconds = difftime(real_time_current, m_real_time_start_time);
1927048Snate@binkert.org    double minutes = seconds / 60.0;
1937048Snate@binkert.org    double hours = minutes / 60.0;
1947048Snate@binkert.org    double days = hours / 24.0;
1957048Snate@binkert.org    Time ruby_cycles = g_eventQueue_ptr->getTime()-m_ruby_start;
1967048Snate@binkert.org
1977048Snate@binkert.org    if (!short_stats) {
1987048Snate@binkert.org        out << "Elapsed_time_in_seconds: " << seconds << endl;
1997048Snate@binkert.org        out << "Elapsed_time_in_minutes: " << minutes << endl;
2007048Snate@binkert.org        out << "Elapsed_time_in_hours: " << hours << endl;
2017048Snate@binkert.org        out << "Elapsed_time_in_days: " << days << endl;
2027048Snate@binkert.org        out << endl;
2037048Snate@binkert.org    }
2047048Snate@binkert.org
2057048Snate@binkert.org    // print the virtual runtimes as well
2067048Snate@binkert.org    struct tms vtime;
2077048Snate@binkert.org    times(&vtime);
2087048Snate@binkert.org    seconds = (vtime.tms_utime + vtime.tms_stime) / 100.0;
2097048Snate@binkert.org    minutes = seconds / 60.0;
2107048Snate@binkert.org    hours = minutes / 60.0;
2117048Snate@binkert.org    days = hours / 24.0;
2127048Snate@binkert.org    out << "Virtual_time_in_seconds: " << seconds << endl;
2137048Snate@binkert.org    out << "Virtual_time_in_minutes: " << minutes << endl;
2147048Snate@binkert.org    out << "Virtual_time_in_hours:   " << hours << endl;
2157048Snate@binkert.org    out << "Virtual_time_in_days:    " << days << endl;
2166145Snate@binkert.org    out << endl;
2176145Snate@binkert.org
2187048Snate@binkert.org    out << "Ruby_current_time: " << g_eventQueue_ptr->getTime() << endl;
2197048Snate@binkert.org    out << "Ruby_start_time: " << m_ruby_start << endl;
2207048Snate@binkert.org    out << "Ruby_cycles: " << ruby_cycles << endl;
2216145Snate@binkert.org    out << endl;
2226145Snate@binkert.org
2237048Snate@binkert.org    if (!short_stats) {
2247048Snate@binkert.org        out << "mbytes_resident: " << process_memory_resident() << endl;
2257048Snate@binkert.org        out << "mbytes_total: " << process_memory_total() << endl;
2267048Snate@binkert.org        if (process_memory_total() > 0) {
2277054Snate@binkert.org            out << "resident_ratio: "
2287048Snate@binkert.org                << process_memory_resident()/process_memory_total() << endl;
2297048Snate@binkert.org        }
2307048Snate@binkert.org        out << endl;
2316145Snate@binkert.org    }
2326145Snate@binkert.org
2337454Snate@binkert.org    vector<integer_t> perProcCycleCount(m_num_of_sequencers);
2347048Snate@binkert.org
2357048Snate@binkert.org    for (int i = 0; i < m_num_of_sequencers; i++) {
2367048Snate@binkert.org        perProcCycleCount[i] =
2377048Snate@binkert.org            g_system_ptr->getCycleCount(i) - m_cycles_executed_at_start[i] + 1;
2387048Snate@binkert.org        // The +1 allows us to avoid division by zero
2396145Snate@binkert.org    }
2406145Snate@binkert.org
2417048Snate@binkert.org    out << "ruby_cycles_executed: " << perProcCycleCount << endl;
2427048Snate@binkert.org
2436145Snate@binkert.org    out << endl;
2447048Snate@binkert.org
2457048Snate@binkert.org    if (!short_stats) {
2467048Snate@binkert.org        out << "Busy Controller Counts:" << endl;
2477048Snate@binkert.org        for (int i = 0; i < MachineType_NUM; i++) {
2487048Snate@binkert.org            int size = MachineType_base_count((MachineType)i);
2497048Snate@binkert.org            for (int j = 0; j < size; j++) {
2507048Snate@binkert.org                MachineID machID;
2517048Snate@binkert.org                machID.type = (MachineType)i;
2527048Snate@binkert.org                machID.num = j;
2537048Snate@binkert.org                out << machID << ":" << m_busyControllerCount[i][j] << "  ";
2547048Snate@binkert.org                if ((j + 1) % 8 == 0) {
2557048Snate@binkert.org                    out << endl;
2567048Snate@binkert.org                }
2577048Snate@binkert.org            }
2587048Snate@binkert.org            out << endl;
2597048Snate@binkert.org        }
2607048Snate@binkert.org        out << endl;
2617048Snate@binkert.org
2627048Snate@binkert.org        out << "Busy Bank Count:" << m_busyBankCount << endl;
2637048Snate@binkert.org        out << endl;
2647048Snate@binkert.org
2657048Snate@binkert.org        out << "sequencer_requests_outstanding: "
2667048Snate@binkert.org            << m_sequencer_requests << endl;
2677048Snate@binkert.org        out << endl;
2686145Snate@binkert.org    }
2696145Snate@binkert.org
2707048Snate@binkert.org    if (!short_stats) {
2717048Snate@binkert.org        out << "All Non-Zero Cycle Demand Cache Accesses" << endl;
2727048Snate@binkert.org        out << "----------------------------------------" << endl;
2737048Snate@binkert.org        out << "miss_latency: " << m_allMissLatencyHistogram << endl;
2747048Snate@binkert.org        for (int i = 0; i < m_missLatencyHistograms.size(); i++) {
2757048Snate@binkert.org            if (m_missLatencyHistograms[i].size() > 0) {
2767048Snate@binkert.org                out << "miss_latency_" << RubyRequestType(i) << ": "
2777048Snate@binkert.org                    << m_missLatencyHistograms[i] << endl;
2787048Snate@binkert.org            }
2797048Snate@binkert.org        }
2807048Snate@binkert.org        for (int i = 0; i < m_machLatencyHistograms.size(); i++) {
2817048Snate@binkert.org            if (m_machLatencyHistograms[i].size() > 0) {
2827048Snate@binkert.org                out << "miss_latency_" << GenericMachineType(i) << ": "
2837048Snate@binkert.org                    << m_machLatencyHistograms[i] << endl;
2847048Snate@binkert.org            }
2857048Snate@binkert.org        }
2866145Snate@binkert.org
2877565SBrad.Beckmann@amd.com        out << "miss_latency_wCC_issue_to_initial_request: "
2887565SBrad.Beckmann@amd.com            << m_wCCIssueToInitialRequestHistogram << endl;
2897565SBrad.Beckmann@amd.com        out << "miss_latency_wCC_initial_forward_request: "
2907565SBrad.Beckmann@amd.com            << m_wCCInitialRequestToForwardRequestHistogram << endl;
2917565SBrad.Beckmann@amd.com        out << "miss_latency_wCC_forward_to_first_response: "
2927565SBrad.Beckmann@amd.com            << m_wCCForwardRequestToFirstResponseHistogram << endl;
2937565SBrad.Beckmann@amd.com        out << "miss_latency_wCC_first_response_to_completion: "
2947565SBrad.Beckmann@amd.com            << m_wCCFirstResponseToCompleteHistogram << endl;
2957565SBrad.Beckmann@amd.com        out << "imcomplete_wCC_Times: " << m_wCCIncompleteTimes << endl;
2967565SBrad.Beckmann@amd.com        out << "miss_latency_dir_issue_to_initial_request: "
2977565SBrad.Beckmann@amd.com            << m_dirIssueToInitialRequestHistogram << endl;
2987565SBrad.Beckmann@amd.com        out << "miss_latency_dir_initial_forward_request: "
2997565SBrad.Beckmann@amd.com            << m_dirInitialRequestToForwardRequestHistogram << endl;
3007565SBrad.Beckmann@amd.com        out << "miss_latency_dir_forward_to_first_response: "
3017565SBrad.Beckmann@amd.com            << m_dirForwardRequestToFirstResponseHistogram << endl;
3027565SBrad.Beckmann@amd.com        out << "miss_latency_dir_first_response_to_completion: "
3037565SBrad.Beckmann@amd.com            << m_dirFirstResponseToCompleteHistogram << endl;
3047565SBrad.Beckmann@amd.com        out << "imcomplete_dir_Times: " << m_dirIncompleteTimes << endl;
3057565SBrad.Beckmann@amd.com
3067565SBrad.Beckmann@amd.com        for (int i = 0; i < m_missMachLatencyHistograms.size(); i++) {
3077565SBrad.Beckmann@amd.com            for (int j = 0; j < m_missMachLatencyHistograms[i].size(); j++) {
3087565SBrad.Beckmann@amd.com                if (m_missMachLatencyHistograms[i][j].size() > 0) {
3097565SBrad.Beckmann@amd.com                    out << "miss_latency_" << RubyRequestType(i)
3107565SBrad.Beckmann@amd.com                        << "_" << GenericMachineType(j) << ": "
3117565SBrad.Beckmann@amd.com                        << m_missMachLatencyHistograms[i][j] << endl;
3127565SBrad.Beckmann@amd.com                }
3137565SBrad.Beckmann@amd.com            }
3147565SBrad.Beckmann@amd.com        }
3157565SBrad.Beckmann@amd.com
3167048Snate@binkert.org        out << endl;
3177048Snate@binkert.org
3187048Snate@binkert.org        out << "All Non-Zero Cycle SW Prefetch Requests" << endl;
3197048Snate@binkert.org        out << "------------------------------------" << endl;
3207048Snate@binkert.org        out << "prefetch_latency: " << m_allSWPrefetchLatencyHistogram << endl;
3217048Snate@binkert.org        for (int i = 0; i < m_SWPrefetchLatencyHistograms.size(); i++) {
3227048Snate@binkert.org            if (m_SWPrefetchLatencyHistograms[i].size() > 0) {
3238165Snilay@cs.wisc.edu                out << "prefetch_latency_" << RubyRequestType(i) << ": "
3247048Snate@binkert.org                    << m_SWPrefetchLatencyHistograms[i] << endl;
3257048Snate@binkert.org            }
3267048Snate@binkert.org        }
3277048Snate@binkert.org        for (int i = 0; i < m_SWPrefetchMachLatencyHistograms.size(); i++) {
3287048Snate@binkert.org            if (m_SWPrefetchMachLatencyHistograms[i].size() > 0) {
3297048Snate@binkert.org                out << "prefetch_latency_" << GenericMachineType(i) << ": "
3307048Snate@binkert.org                    << m_SWPrefetchMachLatencyHistograms[i] << endl;
3317048Snate@binkert.org            }
3327048Snate@binkert.org        }
3337048Snate@binkert.org        out << "prefetch_latency_L2Miss:"
3347048Snate@binkert.org            << m_SWPrefetchL2MissLatencyHistogram << endl;
3357048Snate@binkert.org
3367048Snate@binkert.org        if (m_all_sharing_histogram.size() > 0) {
3377048Snate@binkert.org            out << "all_sharing: " << m_all_sharing_histogram << endl;
3387048Snate@binkert.org            out << "read_sharing: " << m_read_sharing_histogram << endl;
3397048Snate@binkert.org            out << "write_sharing: " << m_write_sharing_histogram << endl;
3407048Snate@binkert.org
3417048Snate@binkert.org            out << "all_sharing_percent: ";
3427048Snate@binkert.org            m_all_sharing_histogram.printPercent(out);
3437048Snate@binkert.org            out << endl;
3447048Snate@binkert.org
3457048Snate@binkert.org            out << "read_sharing_percent: ";
3467048Snate@binkert.org            m_read_sharing_histogram.printPercent(out);
3477048Snate@binkert.org            out << endl;
3487048Snate@binkert.org
3497048Snate@binkert.org            out << "write_sharing_percent: ";
3507048Snate@binkert.org            m_write_sharing_histogram.printPercent(out);
3517048Snate@binkert.org            out << endl;
3527048Snate@binkert.org
3537048Snate@binkert.org            int64 total_miss = m_cache_to_cache +  m_memory_to_cache;
3547048Snate@binkert.org            out << "all_misses: " << total_miss << endl;
3557048Snate@binkert.org            out << "cache_to_cache_misses: " << m_cache_to_cache << endl;
3567048Snate@binkert.org            out << "memory_to_cache_misses: " << m_memory_to_cache << endl;
3577048Snate@binkert.org            out << "cache_to_cache_percent: "
3587048Snate@binkert.org                << 100.0 * (double(m_cache_to_cache) / double(total_miss))
3597048Snate@binkert.org                << endl;
3607048Snate@binkert.org            out << "memory_to_cache_percent: "
3617048Snate@binkert.org                << 100.0 * (double(m_memory_to_cache) / double(total_miss))
3627048Snate@binkert.org                << endl;
3637048Snate@binkert.org            out << endl;
3647048Snate@binkert.org        }
3657048Snate@binkert.org
3667048Snate@binkert.org        if (m_outstanding_requests.size() > 0) {
3677048Snate@binkert.org            out << "outstanding_requests: ";
3687048Snate@binkert.org            m_outstanding_requests.printPercent(out);
3697048Snate@binkert.org            out << endl;
3707048Snate@binkert.org            out << endl;
3717048Snate@binkert.org        }
3727048Snate@binkert.org    }
3737048Snate@binkert.org
3747048Snate@binkert.org    if (!short_stats) {
3757048Snate@binkert.org        out << "Request vs. RubySystem State Profile" << endl;
3767048Snate@binkert.org        out << "--------------------------------" << endl;
3777048Snate@binkert.org        out << endl;
3787048Snate@binkert.org
3797455Snate@binkert.org        map<string, int>::const_iterator i = m_requestProfileMap.begin();
3807455Snate@binkert.org        map<string, int>::const_iterator end = m_requestProfileMap.end();
3817455Snate@binkert.org        for (; i != end; ++i) {
3827455Snate@binkert.org            const string &key = i->first;
3837455Snate@binkert.org            int count = i->second;
3847048Snate@binkert.org
3857455Snate@binkert.org            double percent = (100.0 * double(count)) / double(m_requests);
3867056Snate@binkert.org            vector<string> items;
3877455Snate@binkert.org            tokenize(items, key, ':');
3887455Snate@binkert.org            vector<string>::iterator j = items.begin();
3897056Snate@binkert.org            vector<string>::iterator end = items.end();
3907455Snate@binkert.org            for (; j != end; ++i)
3917455Snate@binkert.org                out << setw(10) << *j;
3927455Snate@binkert.org            out << setw(11) << count;
3937048Snate@binkert.org            out << setw(14) << percent << endl;
3947048Snate@binkert.org        }
3957048Snate@binkert.org        out << endl;
3967048Snate@binkert.org
3977048Snate@binkert.org        out << "filter_action: " << m_filter_action_histogram << endl;
3987048Snate@binkert.org
3997048Snate@binkert.org        if (!m_all_instructions) {
4007048Snate@binkert.org            m_address_profiler_ptr->printStats(out);
4017048Snate@binkert.org        }
4027048Snate@binkert.org
4037048Snate@binkert.org        if (m_all_instructions) {
4047048Snate@binkert.org            m_inst_profiler_ptr->printStats(out);
4057048Snate@binkert.org        }
4067048Snate@binkert.org
4077048Snate@binkert.org        out << endl;
4087048Snate@binkert.org        out << "Message Delayed Cycles" << endl;
4097048Snate@binkert.org        out << "----------------------" << endl;
4107048Snate@binkert.org        out << "Total_delay_cycles: " <<   m_delayedCyclesHistogram << endl;
4117048Snate@binkert.org        out << "Total_nonPF_delay_cycles: "
4127048Snate@binkert.org            << m_delayedCyclesNonPFHistogram << endl;
4137048Snate@binkert.org        for (int i = 0; i < m_delayedCyclesVCHistograms.size(); i++) {
4147048Snate@binkert.org            out << "  virtual_network_" << i << "_delay_cycles: "
4157048Snate@binkert.org                << m_delayedCyclesVCHistograms[i] << endl;
4167048Snate@binkert.org        }
4177048Snate@binkert.org
4187048Snate@binkert.org        printResourceUsage(out);
4197048Snate@binkert.org    }
4206145Snate@binkert.org}
4216145Snate@binkert.org
4227048Snate@binkert.orgvoid
4237048Snate@binkert.orgProfiler::printResourceUsage(ostream& out) const
4246145Snate@binkert.org{
4257048Snate@binkert.org    out << endl;
4267048Snate@binkert.org    out << "Resource Usage" << endl;
4277048Snate@binkert.org    out << "--------------" << endl;
4286145Snate@binkert.org
4297048Snate@binkert.org    integer_t pagesize = getpagesize(); // page size in bytes
4307048Snate@binkert.org    out << "page_size: " << pagesize << endl;
4316145Snate@binkert.org
4327048Snate@binkert.org    rusage usage;
4337048Snate@binkert.org    getrusage (RUSAGE_SELF, &usage);
4346145Snate@binkert.org
4357048Snate@binkert.org    out << "user_time: " << usage.ru_utime.tv_sec << endl;
4367048Snate@binkert.org    out << "system_time: " << usage.ru_stime.tv_sec << endl;
4377048Snate@binkert.org    out << "page_reclaims: " << usage.ru_minflt << endl;
4387048Snate@binkert.org    out << "page_faults: " << usage.ru_majflt << endl;
4397048Snate@binkert.org    out << "swaps: " << usage.ru_nswap << endl;
4407048Snate@binkert.org    out << "block_inputs: " << usage.ru_inblock << endl;
4417048Snate@binkert.org    out << "block_outputs: " << usage.ru_oublock << endl;
4426145Snate@binkert.org}
4436145Snate@binkert.org
4447048Snate@binkert.orgvoid
4457048Snate@binkert.orgProfiler::clearStats()
4466145Snate@binkert.org{
4477048Snate@binkert.org    m_ruby_start = g_eventQueue_ptr->getTime();
4486145Snate@binkert.org
4497454Snate@binkert.org    m_cycles_executed_at_start.resize(m_num_of_sequencers);
4507048Snate@binkert.org    for (int i = 0; i < m_num_of_sequencers; i++) {
4517048Snate@binkert.org        if (g_system_ptr == NULL) {
4527048Snate@binkert.org            m_cycles_executed_at_start[i] = 0;
4537048Snate@binkert.org        } else {
4547048Snate@binkert.org            m_cycles_executed_at_start[i] = g_system_ptr->getCycleCount(i);
4557048Snate@binkert.org        }
4566145Snate@binkert.org    }
4576145Snate@binkert.org
4587454Snate@binkert.org    m_busyControllerCount.resize(MachineType_NUM); // all machines
4597048Snate@binkert.org    for (int i = 0; i < MachineType_NUM; i++) {
4607048Snate@binkert.org        int size = MachineType_base_count((MachineType)i);
4617454Snate@binkert.org        m_busyControllerCount[i].resize(size);
4627048Snate@binkert.org        for (int j = 0; j < size; j++) {
4637048Snate@binkert.org            m_busyControllerCount[i][j] = 0;
4647048Snate@binkert.org        }
4656145Snate@binkert.org    }
4667048Snate@binkert.org    m_busyBankCount = 0;
4676145Snate@binkert.org
4687048Snate@binkert.org    m_delayedCyclesHistogram.clear();
4697048Snate@binkert.org    m_delayedCyclesNonPFHistogram.clear();
4707048Snate@binkert.org    int size = RubySystem::getNetwork()->getNumberOfVirtualNetworks();
4717454Snate@binkert.org    m_delayedCyclesVCHistograms.resize(size);
4727048Snate@binkert.org    for (int i = 0; i < size; i++) {
4737048Snate@binkert.org        m_delayedCyclesVCHistograms[i].clear();
4747048Snate@binkert.org    }
4756145Snate@binkert.org
4767454Snate@binkert.org    m_missLatencyHistograms.resize(RubyRequestType_NUM);
4777048Snate@binkert.org    for (int i = 0; i < m_missLatencyHistograms.size(); i++) {
4787048Snate@binkert.org        m_missLatencyHistograms[i].clear(200);
4797048Snate@binkert.org    }
4807454Snate@binkert.org    m_machLatencyHistograms.resize(GenericMachineType_NUM+1);
4817048Snate@binkert.org    for (int i = 0; i < m_machLatencyHistograms.size(); i++) {
4827048Snate@binkert.org        m_machLatencyHistograms[i].clear(200);
4837048Snate@binkert.org    }
4847565SBrad.Beckmann@amd.com    m_missMachLatencyHistograms.resize(RubyRequestType_NUM);
4857565SBrad.Beckmann@amd.com    for (int i = 0; i < m_missLatencyHistograms.size(); i++) {
4867565SBrad.Beckmann@amd.com        m_missMachLatencyHistograms[i].resize(GenericMachineType_NUM+1);
4877565SBrad.Beckmann@amd.com        for (int j = 0; j < m_missMachLatencyHistograms[i].size(); j++) {
4887565SBrad.Beckmann@amd.com            m_missMachLatencyHistograms[i][j].clear(200);
4897565SBrad.Beckmann@amd.com        }
4907565SBrad.Beckmann@amd.com    }
4917048Snate@binkert.org    m_allMissLatencyHistogram.clear(200);
4927565SBrad.Beckmann@amd.com    m_wCCIssueToInitialRequestHistogram.clear(200);
4937565SBrad.Beckmann@amd.com    m_wCCInitialRequestToForwardRequestHistogram.clear(200);
4947565SBrad.Beckmann@amd.com    m_wCCForwardRequestToFirstResponseHistogram.clear(200);
4957565SBrad.Beckmann@amd.com    m_wCCFirstResponseToCompleteHistogram.clear(200);
4967565SBrad.Beckmann@amd.com    m_wCCIncompleteTimes = 0;
4977565SBrad.Beckmann@amd.com    m_dirIssueToInitialRequestHistogram.clear(200);
4987565SBrad.Beckmann@amd.com    m_dirInitialRequestToForwardRequestHistogram.clear(200);
4997565SBrad.Beckmann@amd.com    m_dirForwardRequestToFirstResponseHistogram.clear(200);
5007565SBrad.Beckmann@amd.com    m_dirFirstResponseToCompleteHistogram.clear(200);
5017565SBrad.Beckmann@amd.com    m_dirIncompleteTimes = 0;
5026145Snate@binkert.org
5038165Snilay@cs.wisc.edu    m_SWPrefetchLatencyHistograms.resize(RubyRequestType_NUM);
5047048Snate@binkert.org    for (int i = 0; i < m_SWPrefetchLatencyHistograms.size(); i++) {
5057048Snate@binkert.org        m_SWPrefetchLatencyHistograms[i].clear(200);
5067048Snate@binkert.org    }
5077454Snate@binkert.org    m_SWPrefetchMachLatencyHistograms.resize(GenericMachineType_NUM+1);
5087048Snate@binkert.org    for (int i = 0; i < m_SWPrefetchMachLatencyHistograms.size(); i++) {
5097048Snate@binkert.org        m_SWPrefetchMachLatencyHistograms[i].clear(200);
5107048Snate@binkert.org    }
5117048Snate@binkert.org    m_allSWPrefetchLatencyHistogram.clear(200);
5126145Snate@binkert.org
5137048Snate@binkert.org    m_sequencer_requests.clear();
5147048Snate@binkert.org    m_read_sharing_histogram.clear();
5157048Snate@binkert.org    m_write_sharing_histogram.clear();
5167048Snate@binkert.org    m_all_sharing_histogram.clear();
5177048Snate@binkert.org    m_cache_to_cache = 0;
5187048Snate@binkert.org    m_memory_to_cache = 0;
5196145Snate@binkert.org
5207048Snate@binkert.org    // clear HashMaps
5217455Snate@binkert.org    m_requestProfileMap.clear();
5226145Snate@binkert.org
5237048Snate@binkert.org    // count requests profiled
5247048Snate@binkert.org    m_requests = 0;
5256145Snate@binkert.org
5267048Snate@binkert.org    m_outstanding_requests.clear();
5277048Snate@binkert.org    m_outstanding_persistent_requests.clear();
5286145Snate@binkert.org
5297048Snate@binkert.org    // Flush the prefetches through the system - used so that there
5307048Snate@binkert.org    // are no outstanding requests after stats are cleared
5317048Snate@binkert.org    //g_eventQueue_ptr->triggerAllEvents();
5326145Snate@binkert.org
5337048Snate@binkert.org    // update the start time
5347048Snate@binkert.org    m_ruby_start = g_eventQueue_ptr->getTime();
5356145Snate@binkert.org}
5366145Snate@binkert.org
5377048Snate@binkert.orgvoid
5388174Snilay@cs.wisc.eduProfiler::addAddressTraceSample(const RubyRequest& msg, NodeID id)
5396145Snate@binkert.org{
5408165Snilay@cs.wisc.edu    if (msg.getType() != RubyRequestType_IFETCH) {
5417048Snate@binkert.org        // Note: The following line should be commented out if you
5427048Snate@binkert.org        // want to use the special profiling that is part of the GS320
5437048Snate@binkert.org        // protocol
5446145Snate@binkert.org
5457048Snate@binkert.org        // NOTE: Unless PROFILE_HOT_LINES is enabled, nothing will be
5467048Snate@binkert.org        // profiled by the AddressProfiler
5477048Snate@binkert.org        m_address_profiler_ptr->
5487048Snate@binkert.org            addTraceSample(msg.getLineAddress(), msg.getProgramCounter(),
5497048Snate@binkert.org                           msg.getType(), msg.getAccessMode(), id, false);
5507048Snate@binkert.org    }
5516145Snate@binkert.org}
5526145Snate@binkert.org
5537048Snate@binkert.orgvoid
5547048Snate@binkert.orgProfiler::profileSharing(const Address& addr, AccessType type,
5557048Snate@binkert.org                         NodeID requestor, const Set& sharers,
5567048Snate@binkert.org                         const Set& owner)
5576145Snate@binkert.org{
5587048Snate@binkert.org    Set set_contacted(owner);
5597048Snate@binkert.org    if (type == AccessType_Write) {
5607048Snate@binkert.org        set_contacted.addSet(sharers);
5617048Snate@binkert.org    }
5627048Snate@binkert.org    set_contacted.remove(requestor);
5637048Snate@binkert.org    int number_contacted = set_contacted.count();
5646145Snate@binkert.org
5657048Snate@binkert.org    if (type == AccessType_Write) {
5667048Snate@binkert.org        m_write_sharing_histogram.add(number_contacted);
5677048Snate@binkert.org    } else {
5687048Snate@binkert.org        m_read_sharing_histogram.add(number_contacted);
5697048Snate@binkert.org    }
5707048Snate@binkert.org    m_all_sharing_histogram.add(number_contacted);
5716145Snate@binkert.org
5727048Snate@binkert.org    if (number_contacted == 0) {
5737048Snate@binkert.org        m_memory_to_cache++;
5747048Snate@binkert.org    } else {
5757048Snate@binkert.org        m_cache_to_cache++;
5767048Snate@binkert.org    }
5776145Snate@binkert.org}
5786145Snate@binkert.org
5797048Snate@binkert.orgvoid
5807048Snate@binkert.orgProfiler::profileMsgDelay(int virtualNetwork, int delayCycles)
5817048Snate@binkert.org{
5827048Snate@binkert.org    assert(virtualNetwork < m_delayedCyclesVCHistograms.size());
5837048Snate@binkert.org    m_delayedCyclesHistogram.add(delayCycles);
5847048Snate@binkert.org    m_delayedCyclesVCHistograms[virtualNetwork].add(delayCycles);
5857048Snate@binkert.org    if (virtualNetwork != 0) {
5867048Snate@binkert.org        m_delayedCyclesNonPFHistogram.add(delayCycles);
5877048Snate@binkert.org    }
5886145Snate@binkert.org}
5896145Snate@binkert.org
5906145Snate@binkert.org// profiles original cache requests including PUTs
5917048Snate@binkert.orgvoid
5927048Snate@binkert.orgProfiler::profileRequest(const string& requestStr)
5936145Snate@binkert.org{
5947048Snate@binkert.org    m_requests++;
5956145Snate@binkert.org
5967455Snate@binkert.org    // if it doesn't exist, conveniently, it will be created with the
5977455Snate@binkert.org    // default value which is 0
5987455Snate@binkert.org    m_requestProfileMap[requestStr]++;
5996145Snate@binkert.org}
6006145Snate@binkert.org
6017048Snate@binkert.orgvoid
6027048Snate@binkert.orgProfiler::controllerBusy(MachineID machID)
6036145Snate@binkert.org{
6047048Snate@binkert.org    m_busyControllerCount[(int)machID.type][(int)machID.num]++;
6056145Snate@binkert.org}
6066145Snate@binkert.org
6077048Snate@binkert.orgvoid
6087048Snate@binkert.orgProfiler::profilePFWait(Time waitTime)
6096145Snate@binkert.org{
6107048Snate@binkert.org    m_prefetchWaitHistogram.add(waitTime);
6116145Snate@binkert.org}
6126145Snate@binkert.org
6137048Snate@binkert.orgvoid
6147048Snate@binkert.orgProfiler::bankBusy()
6156145Snate@binkert.org{
6167048Snate@binkert.org    m_busyBankCount++;
6176145Snate@binkert.org}
6186145Snate@binkert.org
6196145Snate@binkert.org// non-zero cycle demand request
6207048Snate@binkert.orgvoid
6217546SBrad.Beckmann@amd.comProfiler::missLatency(Time cycles,
6227546SBrad.Beckmann@amd.com                      RubyRequestType type,
6237546SBrad.Beckmann@amd.com                      const GenericMachineType respondingMach)
6246145Snate@binkert.org{
6257546SBrad.Beckmann@amd.com    m_allMissLatencyHistogram.add(cycles);
6267546SBrad.Beckmann@amd.com    m_missLatencyHistograms[type].add(cycles);
6277546SBrad.Beckmann@amd.com    m_machLatencyHistograms[respondingMach].add(cycles);
6287565SBrad.Beckmann@amd.com    m_missMachLatencyHistograms[type][respondingMach].add(cycles);
6297565SBrad.Beckmann@amd.com}
6307565SBrad.Beckmann@amd.com
6317565SBrad.Beckmann@amd.comvoid
6327565SBrad.Beckmann@amd.comProfiler::missLatencyWcc(Time issuedTime,
6337565SBrad.Beckmann@amd.com                         Time initialRequestTime,
6347565SBrad.Beckmann@amd.com                         Time forwardRequestTime,
6357565SBrad.Beckmann@amd.com                         Time firstResponseTime,
6367565SBrad.Beckmann@amd.com                         Time completionTime)
6377565SBrad.Beckmann@amd.com{
6387565SBrad.Beckmann@amd.com    if ((issuedTime <= initialRequestTime) &&
6397565SBrad.Beckmann@amd.com        (initialRequestTime <= forwardRequestTime) &&
6407565SBrad.Beckmann@amd.com        (forwardRequestTime <= firstResponseTime) &&
6417565SBrad.Beckmann@amd.com        (firstResponseTime <= completionTime)) {
6427565SBrad.Beckmann@amd.com        m_wCCIssueToInitialRequestHistogram.add(initialRequestTime - issuedTime);
6437565SBrad.Beckmann@amd.com
6447565SBrad.Beckmann@amd.com        m_wCCInitialRequestToForwardRequestHistogram.add(forwardRequestTime -
6457565SBrad.Beckmann@amd.com                                                         initialRequestTime);
6467565SBrad.Beckmann@amd.com
6477565SBrad.Beckmann@amd.com        m_wCCForwardRequestToFirstResponseHistogram.add(firstResponseTime -
6487565SBrad.Beckmann@amd.com                                                        forwardRequestTime);
6497565SBrad.Beckmann@amd.com
6507565SBrad.Beckmann@amd.com        m_wCCFirstResponseToCompleteHistogram.add(completionTime -
6517565SBrad.Beckmann@amd.com                                                  firstResponseTime);
6527565SBrad.Beckmann@amd.com    } else {
6537565SBrad.Beckmann@amd.com        m_wCCIncompleteTimes++;
6547565SBrad.Beckmann@amd.com    }
6557565SBrad.Beckmann@amd.com}
6567565SBrad.Beckmann@amd.com
6577565SBrad.Beckmann@amd.comvoid
6587565SBrad.Beckmann@amd.comProfiler::missLatencyDir(Time issuedTime,
6597565SBrad.Beckmann@amd.com                         Time initialRequestTime,
6607565SBrad.Beckmann@amd.com                         Time forwardRequestTime,
6617565SBrad.Beckmann@amd.com                         Time firstResponseTime,
6627565SBrad.Beckmann@amd.com                         Time completionTime)
6637565SBrad.Beckmann@amd.com{
6647565SBrad.Beckmann@amd.com    if ((issuedTime <= initialRequestTime) &&
6657565SBrad.Beckmann@amd.com        (initialRequestTime <= forwardRequestTime) &&
6667565SBrad.Beckmann@amd.com        (forwardRequestTime <= firstResponseTime) &&
6677565SBrad.Beckmann@amd.com        (firstResponseTime <= completionTime)) {
6687565SBrad.Beckmann@amd.com        m_dirIssueToInitialRequestHistogram.add(initialRequestTime - issuedTime);
6697565SBrad.Beckmann@amd.com
6707565SBrad.Beckmann@amd.com        m_dirInitialRequestToForwardRequestHistogram.add(forwardRequestTime -
6717565SBrad.Beckmann@amd.com                                                         initialRequestTime);
6727565SBrad.Beckmann@amd.com
6737565SBrad.Beckmann@amd.com        m_dirForwardRequestToFirstResponseHistogram.add(firstResponseTime -
6747565SBrad.Beckmann@amd.com                                                        forwardRequestTime);
6757565SBrad.Beckmann@amd.com
6767565SBrad.Beckmann@amd.com        m_dirFirstResponseToCompleteHistogram.add(completionTime -
6777565SBrad.Beckmann@amd.com                                                  firstResponseTime);
6787565SBrad.Beckmann@amd.com    } else {
6797565SBrad.Beckmann@amd.com        m_dirIncompleteTimes++;
6807565SBrad.Beckmann@amd.com    }
6816145Snate@binkert.org}
6826145Snate@binkert.org
6836145Snate@binkert.org// non-zero cycle prefetch request
6847048Snate@binkert.orgvoid
6857546SBrad.Beckmann@amd.comProfiler::swPrefetchLatency(Time cycles,
6868165Snilay@cs.wisc.edu                            RubyRequestType type,
6877546SBrad.Beckmann@amd.com                            const GenericMachineType respondingMach)
6886145Snate@binkert.org{
6897546SBrad.Beckmann@amd.com    m_allSWPrefetchLatencyHistogram.add(cycles);
6907546SBrad.Beckmann@amd.com    m_SWPrefetchLatencyHistograms[type].add(cycles);
6917546SBrad.Beckmann@amd.com    m_SWPrefetchMachLatencyHistograms[respondingMach].add(cycles);
6927048Snate@binkert.org    if (respondingMach == GenericMachineType_Directory ||
6937048Snate@binkert.org        respondingMach == GenericMachineType_NUM) {
6947546SBrad.Beckmann@amd.com        m_SWPrefetchL2MissLatencyHistogram.add(cycles);
6957048Snate@binkert.org    }
6966145Snate@binkert.org}
6976145Snate@binkert.org
6986145Snate@binkert.org// Helper function
6997048Snate@binkert.orgstatic double
7007048Snate@binkert.orgprocess_memory_total()
7016145Snate@binkert.org{
7027048Snate@binkert.org    // 4kB page size, 1024*1024 bytes per MB,
7037054Snate@binkert.org    const double MULTIPLIER = 4096.0 / (1024.0 * 1024.0);
7047048Snate@binkert.org    ifstream proc_file;
7057048Snate@binkert.org    proc_file.open("/proc/self/statm");
7067048Snate@binkert.org    int total_size_in_pages = 0;
7077048Snate@binkert.org    int res_size_in_pages = 0;
7087048Snate@binkert.org    proc_file >> total_size_in_pages;
7097048Snate@binkert.org    proc_file >> res_size_in_pages;
7107048Snate@binkert.org    return double(total_size_in_pages) * MULTIPLIER; // size in megabytes
7116145Snate@binkert.org}
7126145Snate@binkert.org
7137048Snate@binkert.orgstatic double
7147048Snate@binkert.orgprocess_memory_resident()
7156145Snate@binkert.org{
7167048Snate@binkert.org    // 4kB page size, 1024*1024 bytes per MB,
7177048Snate@binkert.org    const double MULTIPLIER = 4096.0 / (1024.0 * 1024.0);
7187048Snate@binkert.org    ifstream proc_file;
7197048Snate@binkert.org    proc_file.open("/proc/self/statm");
7207048Snate@binkert.org    int total_size_in_pages = 0;
7217048Snate@binkert.org    int res_size_in_pages = 0;
7227048Snate@binkert.org    proc_file >> total_size_in_pages;
7237048Snate@binkert.org    proc_file >> res_size_in_pages;
7247048Snate@binkert.org    return double(res_size_in_pages) * MULTIPLIER; // size in megabytes
7256145Snate@binkert.org}
7266145Snate@binkert.org
7277048Snate@binkert.orgvoid
7287048Snate@binkert.orgProfiler::rubyWatch(int id)
7297048Snate@binkert.org{
7307010SBrad.Beckmann@amd.com    uint64 tr = 0;
7316285Snate@binkert.org    Address watch_address = Address(tr);
7326285Snate@binkert.org
7337832Snate@binkert.org    DPRINTFN("%7s %3s RUBY WATCH %d\n", g_eventQueue_ptr->getTime(), id,
7347832Snate@binkert.org        watch_address);
7357048Snate@binkert.org
7367455Snate@binkert.org    // don't care about success or failure
7377455Snate@binkert.org    m_watch_address_set.insert(watch_address);
7386285Snate@binkert.org}
7396285Snate@binkert.org
7407048Snate@binkert.orgbool
7417048Snate@binkert.orgProfiler::watchAddress(Address addr)
7427048Snate@binkert.org{
7437455Snate@binkert.org    return m_watch_address_set.count(addr) > 0;
7446285Snate@binkert.org}
7456285Snate@binkert.org
7466876Ssteve.reinhardt@amd.comProfiler *
7476876Ssteve.reinhardt@amd.comRubyProfilerParams::create()
7486876Ssteve.reinhardt@amd.com{
7496876Ssteve.reinhardt@amd.com    return new Profiler(this);
7506876Ssteve.reinhardt@amd.com}
751