activity.cc revision 11793
12SN/A/*
27338SAli.Saidi@ARM.com * Copyright (c) 2013-2014 ARM Limited
37338SAli.Saidi@ARM.com * All rights reserved
47338SAli.Saidi@ARM.com *
57338SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall
67338SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual
77338SAli.Saidi@ARM.com * property including but not limited to intellectual property relating
87338SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software
97338SAli.Saidi@ARM.com * licensed hereunder.  You may use the software subject to the license
107338SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated
117338SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software,
127338SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form.
137338SAli.Saidi@ARM.com *
141762SN/A * Redistribution and use in source and binary forms, with or without
152SN/A * modification, are permitted provided that the following conditions are
162SN/A * met: redistributions of source code must retain the above copyright
172SN/A * notice, this list of conditions and the following disclaimer;
182SN/A * redistributions in binary form must reproduce the above copyright
192SN/A * notice, this list of conditions and the following disclaimer in the
202SN/A * documentation and/or other materials provided with the distribution;
212SN/A * neither the name of the copyright holders nor the names of its
222SN/A * contributors may be used to endorse or promote products derived from
232SN/A * this software without specific prior written permission.
242SN/A *
252SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
262SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
272SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
282SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
292SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
302SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
312SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
322SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
332SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
342SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
352SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
362SN/A *
372SN/A * Authors: Andrew Bardsley
382SN/A */
392665Ssaidi@eecs.umich.edu
402665Ssaidi@eecs.umich.edu#include "cpu/minor/activity.hh"
412SN/A
422SN/A#include <sstream>
436216Snate@binkert.org
442439SN/A#include "cpu/minor/trace.hh"
458229Snate@binkert.org
466216Snate@binkert.orgnamespace Minor
47146SN/A{
48146SN/A
49146SN/Avoid
50146SN/AMinorActivityRecorder::minorTrace() const
51146SN/A{
52146SN/A    std::ostringstream stages;
536216Snate@binkert.org    unsigned int num_stages = getNumStages();
546658Snate@binkert.org
558229Snate@binkert.org    unsigned int stage_index = 0;
561717SN/A    while (stage_index < num_stages) {
57146SN/A        stages << (getStageActive(stage_index) ? '1' : 'E');
581977SN/A
592683Sktlim@umich.edu        stage_index++;
601717SN/A        if (stage_index != num_stages)
61146SN/A            stages << ',';
622683Sktlim@umich.edu    }
633348Sbinkertn@umich.edu
646105Ssteve.reinhardt@amd.com    MINORTRACE("activity=%d stages=%s\n", getActivityCount(), stages.str());
656216Snate@binkert.org}
662036SN/A
67146SN/A}
6856SN/A