AbstractCacheEntry.hh revision 8086
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/*
307039Snate@binkert.org * Common base class for a machine node.
316145Snate@binkert.org */
326145Snate@binkert.org
337039Snate@binkert.org#ifndef __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCACHEENTRY_HH__
347039Snate@binkert.org#define __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCACHEENTRY_HH__
356145Snate@binkert.org
367055Snate@binkert.org#include <iostream>
377055Snate@binkert.org
387039Snate@binkert.org#include "mem/protocol/AccessPermission.hh"
397039Snate@binkert.org#include "mem/ruby/common/Address.hh"
406154Snate@binkert.org#include "mem/ruby/common/Global.hh"
416882SBrad.Beckmann@amd.com#include "mem/ruby/slicc_interface/AbstractEntry.hh"
426145Snate@binkert.org
436285Snate@binkert.orgclass DataBlock;
446285Snate@binkert.org
457039Snate@binkert.orgclass AbstractCacheEntry : public AbstractEntry
467039Snate@binkert.org{
477039Snate@binkert.org  public:
487039Snate@binkert.org    AbstractCacheEntry();
497039Snate@binkert.org    virtual ~AbstractCacheEntry() = 0;
506145Snate@binkert.org
518086SBrad.Beckmann@amd.com    // Get/Set permission of the entry
527839Snilay@cs.wisc.edu    void changePermission(AccessPermission new_perm);
537839Snilay@cs.wisc.edu
547039Snate@binkert.org    Address m_Address; // Address of this block, required by CacheMemory
557039Snate@binkert.org    Time m_LastRef; // Last time this block was referenced, required
567039Snate@binkert.org                    // by CacheMemory
577839Snilay@cs.wisc.edu    int m_locked; // Holds info whether the address is locked,
587839Snilay@cs.wisc.edu                  // required for implementing LL/SC
596145Snate@binkert.org};
606145Snate@binkert.org
617055Snate@binkert.orginline std::ostream&
627055Snate@binkert.orgoperator<<(std::ostream& out, const AbstractCacheEntry& obj)
636145Snate@binkert.org{
647039Snate@binkert.org    obj.print(out);
657055Snate@binkert.org    out << std::flush;
667039Snate@binkert.org    return out;
676145Snate@binkert.org}
686145Snate@binkert.org
697039Snate@binkert.org#endif // __MEM_RUBY_SLICC_INTERFACE_ABSTRACTCACHEENTRY_HH__
70