AccessTraceForAddress.hh revision 6145
16145Snate@binkert.org
26145Snate@binkert.org/*
36145Snate@binkert.org * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
46145Snate@binkert.org * All rights reserved.
56145Snate@binkert.org *
66145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
76145Snate@binkert.org * modification, are permitted provided that the following conditions are
86145Snate@binkert.org * met: redistributions of source code must retain the above copyright
96145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
106145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
116145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
126145Snate@binkert.org * documentation and/or other materials provided with the distribution;
136145Snate@binkert.org * neither the name of the copyright holders nor the names of its
146145Snate@binkert.org * contributors may be used to endorse or promote products derived from
156145Snate@binkert.org * this software without specific prior written permission.
166145Snate@binkert.org *
176145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286145Snate@binkert.org */
296145Snate@binkert.org
306145Snate@binkert.org/*
316145Snate@binkert.org * $Id$
326145Snate@binkert.org *
336145Snate@binkert.org * Description:
346145Snate@binkert.org *
356145Snate@binkert.org */
366145Snate@binkert.org
376145Snate@binkert.org#ifndef ACCESSTRACEFORADDRESS_H
386145Snate@binkert.org#define ACCESSTRACEFORADDRESS_H
396145Snate@binkert.org
406145Snate@binkert.org#include "Global.hh"
416145Snate@binkert.org#include "RubyConfig.hh"
426145Snate@binkert.org#include "Address.hh"
436145Snate@binkert.org#include "CacheRequestType.hh"
446145Snate@binkert.org#include "AccessModeType.hh"
456145Snate@binkert.org#include "NodeID.hh"
466145Snate@binkert.org#include "Set.hh"
476145Snate@binkert.orgclass Histogram;
486145Snate@binkert.org
496145Snate@binkert.orgclass AccessTraceForAddress {
506145Snate@binkert.orgpublic:
516145Snate@binkert.org  // Constructors
526145Snate@binkert.org  AccessTraceForAddress();
536145Snate@binkert.org  explicit AccessTraceForAddress(const Address& addr);
546145Snate@binkert.org
556145Snate@binkert.org  // Destructor
566145Snate@binkert.org  ~AccessTraceForAddress();
576145Snate@binkert.org
586145Snate@binkert.org  // Public Methods
596145Snate@binkert.org
606145Snate@binkert.org  void update(CacheRequestType type, AccessModeType access_mode, NodeID cpu, bool sharing_miss);
616145Snate@binkert.org  int getTotal() const;
626145Snate@binkert.org  int getSharing() const { return m_sharing; }
636145Snate@binkert.org  int getTouchedBy() const { return m_touched_by.count(); }
646145Snate@binkert.org  const Address& getAddress() const { return m_addr; }
656145Snate@binkert.org  void addSample(int value);
666145Snate@binkert.org
676145Snate@binkert.org  void print(ostream& out) const;
686145Snate@binkert.orgprivate:
696145Snate@binkert.org  // Private Methods
706145Snate@binkert.org
716145Snate@binkert.org  // Private copy constructor and assignment operator
726145Snate@binkert.org  // AccessTraceForAddress(const AccessTraceForAddress& obj);
736145Snate@binkert.org  // AccessTraceForAddress& operator=(const AccessTraceForAddress& obj);
746145Snate@binkert.org
756145Snate@binkert.org  // Data Members (m_ prefix)
766145Snate@binkert.org
776145Snate@binkert.org  Address m_addr;
786145Snate@binkert.org  uint64 m_loads;
796145Snate@binkert.org  uint64 m_stores;
806145Snate@binkert.org  uint64 m_atomics;
816145Snate@binkert.org  uint64 m_total;
826145Snate@binkert.org  uint64 m_user;
836145Snate@binkert.org  uint64 m_sharing;
846145Snate@binkert.org  Set m_touched_by;
856145Snate@binkert.org  Histogram* m_histogram_ptr;
866145Snate@binkert.org};
876145Snate@binkert.org
886145Snate@binkert.orgbool node_less_then_eq(const AccessTraceForAddress* n1, const AccessTraceForAddress* n2);
896145Snate@binkert.org
906145Snate@binkert.org// Output operator declaration
916145Snate@binkert.orgostream& operator<<(ostream& out, const AccessTraceForAddress& obj);
926145Snate@binkert.org
936145Snate@binkert.org// ******************* Definitions *******************
946145Snate@binkert.org
956145Snate@binkert.org// Output operator definition
966145Snate@binkert.orgextern inline
976145Snate@binkert.orgostream& operator<<(ostream& out, const AccessTraceForAddress& obj)
986145Snate@binkert.org{
996145Snate@binkert.org  obj.print(out);
1006145Snate@binkert.org  out << flush;
1016145Snate@binkert.org  return out;
1026145Snate@binkert.org}
1036145Snate@binkert.org
1046145Snate@binkert.org#endif //ACCESSTRACEFORADDRESS_H
105