SubBlock.hh revision 6154
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 */
346145Snate@binkert.org
356145Snate@binkert.org#ifndef SubBlock_H
366145Snate@binkert.org#define SubBlock_H
376145Snate@binkert.org
386154Snate@binkert.org#include "mem/ruby/common/Global.hh"
396154Snate@binkert.org#include "mem/ruby/common/Address.hh"
406154Snate@binkert.org#include "mem/ruby/config/RubyConfig.hh"
416154Snate@binkert.org#include "mem/ruby/common/DataBlock.hh"
426154Snate@binkert.org#include "mem/gems_common/Vector.hh"
436145Snate@binkert.org
446145Snate@binkert.orgclass SubBlock {
456145Snate@binkert.orgpublic:
466145Snate@binkert.org  // Constructors
476145Snate@binkert.org  SubBlock() { }
486145Snate@binkert.org  SubBlock(const Address& addr, int size);
496145Snate@binkert.org  SubBlock(const Address& addr, const Address& logicalAddress, int size);
506145Snate@binkert.org
516145Snate@binkert.org  // Destructor
526145Snate@binkert.org  ~SubBlock() { }
536145Snate@binkert.org
546145Snate@binkert.org  // Public Methods
556145Snate@binkert.org  const Address& getAddress() const { return m_address; }
566145Snate@binkert.org  const Address& getLogicalAddress() const { return m_logicalAddress; }
576145Snate@binkert.org  void setAddress(const Address& addr) { m_address = addr; }
586145Snate@binkert.org  void setLogicalAddress(const Address& addr) { m_logicalAddress = addr; }
596145Snate@binkert.org
606145Snate@binkert.org  int getSize() const { return m_data.size(); }
616145Snate@binkert.org  void setSize(int size) {  m_data.setSize(size); }
626145Snate@binkert.org  uint8 getByte(int offset) const { return m_data[offset]; }
636145Snate@binkert.org  void setByte(int offset, uint8 data) { m_data[offset] = data; }
646145Snate@binkert.org
656145Snate@binkert.org  // Shorthands
666145Snate@binkert.org  uint8 readByte() const { return getByte(0); }
676145Snate@binkert.org  void writeByte(uint8 data) { setByte(0, data); }
686145Snate@binkert.org
696145Snate@binkert.org  // Merging to and from DataBlocks - We only need to worry about
706145Snate@binkert.org  // updates when we are using DataBlocks
716145Snate@binkert.org  void mergeTo(DataBlock& data) const { if (DATA_BLOCK) { internalMergeTo(data); } }
726145Snate@binkert.org  void mergeFrom(const DataBlock& data) { if (DATA_BLOCK) { internalMergeFrom(data); } }
736145Snate@binkert.org
746145Snate@binkert.org  void print(ostream& out) const;
756145Snate@binkert.orgprivate:
766145Snate@binkert.org  // Private Methods
776145Snate@binkert.org  //  SubBlock(const SubBlock& obj);
786145Snate@binkert.org  //  SubBlock& operator=(const SubBlock& obj);
796145Snate@binkert.org  //  bool bytePresent(const Address& addr) { return ((addr.getAddress() >= m_address.getAddress()) && (addr.getAddress() < (m_address.getAddress()+getSize()))); }
806145Snate@binkert.org  //  uint8 getByte(const Address& addr) { return m_data[addr.getAddress() - m_address.getAddress()]; }
816145Snate@binkert.org
826145Snate@binkert.org  void internalMergeTo(DataBlock& data) const;
836145Snate@binkert.org  void internalMergeFrom(const DataBlock& data);
846145Snate@binkert.org
856145Snate@binkert.org  // Data Members (m_ prefix)
866145Snate@binkert.org  Address m_address;
876145Snate@binkert.org  Address m_logicalAddress;
886145Snate@binkert.org  Vector<uint> m_data;
896145Snate@binkert.org};
906145Snate@binkert.org
916145Snate@binkert.org// Output operator declaration
926145Snate@binkert.orgostream& operator<<(ostream& out, const SubBlock& obj);
936145Snate@binkert.org
946145Snate@binkert.org// ******************* Definitions *******************
956145Snate@binkert.org
966145Snate@binkert.org// Output operator definition
976145Snate@binkert.orgextern inline
986145Snate@binkert.orgostream& operator<<(ostream& out, const SubBlock& obj)
996145Snate@binkert.org{
1006145Snate@binkert.org  obj.print(out);
1016145Snate@binkert.org  out << flush;
1026145Snate@binkert.org  return out;
1036145Snate@binkert.org}
1046145Snate@binkert.org
1056145Snate@binkert.org#endif //SubBlock_H
106