Address.hh revision 7002
16285Snate@binkert.org
26145Snate@binkert.org/*
36239Snate@binkert.org * Copyright (c) 1999 Mark D. Hill and David A. Wood
46239Snate@binkert.org * All rights reserved.
56145Snate@binkert.org *
66239Snate@binkert.org * Redistribution and use in source and binary forms, with or without
76239Snate@binkert.org * modification, are permitted provided that the following conditions are
86239Snate@binkert.org * met: redistributions of source code must retain the above copyright
96239Snate@binkert.org * notice, this list of conditions and the following disclaimer;
106239Snate@binkert.org * redistributions in binary form must reproduce the above copyright
116239Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
126239Snate@binkert.org * documentation and/or other materials provided with the distribution;
136239Snate@binkert.org * neither the name of the copyright holders nor the names of its
146239Snate@binkert.org * contributors may be used to endorse or promote products derived from
156239Snate@binkert.org * this software without specific prior written permission.
166145Snate@binkert.org *
176239Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186239Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196239Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206239Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216239Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226239Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236239Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246239Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256239Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266239Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276239Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286145Snate@binkert.org */
296145Snate@binkert.org
306285Snate@binkert.org/*
316285Snate@binkert.org * $Id$
326285Snate@binkert.org */
336285Snate@binkert.org
346145Snate@binkert.org#ifndef ADDRESS_H
356145Snate@binkert.org#define ADDRESS_H
366145Snate@binkert.org
376145Snate@binkert.org#include <iomanip>
387002Snate@binkert.org
397002Snate@binkert.org#include "base/hashmap.hh"
406154Snate@binkert.org#include "mem/ruby/common/Global.hh"
416285Snate@binkert.org#include "mem/ruby/system/System.hh"
426154Snate@binkert.org#include "mem/ruby/system/NodeID.hh"
436154Snate@binkert.org#include "mem/ruby/system/MachineID.hh"
446145Snate@binkert.org
456145Snate@binkert.orgconst int ADDRESS_WIDTH = 64; // address width in bytes
466145Snate@binkert.org
476145Snate@binkert.orgclass Address;
486145Snate@binkert.orgtypedef Address PhysAddress;
496145Snate@binkert.orgtypedef Address VirtAddress;
506145Snate@binkert.org
516145Snate@binkert.orgclass Address {
526145Snate@binkert.orgpublic:
536145Snate@binkert.org  // Constructors
546145Snate@binkert.org  Address() { m_address = 0; }
556145Snate@binkert.org  explicit Address(physical_address_t address) { m_address = address; }
566145Snate@binkert.org
576145Snate@binkert.org  Address(const Address& obj);
586145Snate@binkert.org  Address& operator=(const Address& obj);
596145Snate@binkert.org
606145Snate@binkert.org  // Destructor
616145Snate@binkert.org  //  ~Address();
626145Snate@binkert.org
636145Snate@binkert.org  // Public Methods
646145Snate@binkert.org
656145Snate@binkert.org  void setAddress(physical_address_t address) { m_address = address; }
666145Snate@binkert.org  physical_address_t getAddress() const {return m_address;}
676145Snate@binkert.org  // selects bits inclusive
686145Snate@binkert.org  physical_address_t bitSelect(int small, int big) const;
696145Snate@binkert.org  physical_address_t maskLowOrderBits(int number) const;
706145Snate@binkert.org  physical_address_t maskHighOrderBits(int number) const;
716145Snate@binkert.org  physical_address_t shiftLowOrderBits(int number) const;
726145Snate@binkert.org  physical_address_t getLineAddress() const
736285Snate@binkert.org    { return bitSelect(RubySystem::getBlockSizeBits(), ADDRESS_WIDTH); }
746145Snate@binkert.org  physical_address_t getOffset() const
756285Snate@binkert.org    { return bitSelect(0, RubySystem::getBlockSizeBits()-1); }
766145Snate@binkert.org
776285Snate@binkert.org  void makeLineAddress() { m_address = maskLowOrderBits(RubySystem::getBlockSizeBits()); }
786145Snate@binkert.org  // returns the next stride address based on line address
796145Snate@binkert.org  void makeNextStrideAddress( int stride) {
806285Snate@binkert.org    m_address = maskLowOrderBits(RubySystem::getBlockSizeBits())
816285Snate@binkert.org      + RubySystem::getBlockSizeBytes()*stride;
826145Snate@binkert.org  }
836145Snate@binkert.org  int getBankSetNum() const;
846145Snate@binkert.org  int getBankSetDist() const;
856145Snate@binkert.org
866145Snate@binkert.org  Index memoryModuleIndex() const;
876145Snate@binkert.org
886145Snate@binkert.org  void print(ostream& out) const;
896145Snate@binkert.org  void output(ostream& out) const;
906145Snate@binkert.org  void input(istream& in);
916145Snate@binkert.org
926145Snate@binkert.org  void setOffset( int offset ){
936145Snate@binkert.org    // first, zero out the offset bits
946145Snate@binkert.org    makeLineAddress();
956145Snate@binkert.org    m_address |= (physical_address_t) offset;
966145Snate@binkert.org  }
976145Snate@binkert.org
986145Snate@binkert.orgprivate:
996145Snate@binkert.org  // Private Methods
1006145Snate@binkert.org
1016145Snate@binkert.org  // Private copy constructor and assignment operator
1026145Snate@binkert.org  //  Address(const Address& obj);
1036145Snate@binkert.org  //  Address& operator=(const Address& obj);
1046145Snate@binkert.org
1056145Snate@binkert.org  // Data Members (m_ prefix)
1066145Snate@binkert.org  physical_address_t m_address;
1076145Snate@binkert.org};
1086145Snate@binkert.org
1096145Snate@binkert.orginline
1106145Snate@binkert.orgAddress line_address(const Address& addr) { Address temp(addr); temp.makeLineAddress(); return temp; }
1116145Snate@binkert.org
1126145Snate@binkert.org// Output operator declaration
1136145Snate@binkert.orgostream& operator<<(ostream& out, const Address& obj);
1146145Snate@binkert.org// comparison operator declaration
1156145Snate@binkert.orgbool operator==(const Address& obj1, const Address& obj2);
1166145Snate@binkert.orgbool operator!=(const Address& obj1, const Address& obj2);
1176145Snate@binkert.orgbool operator<(const Address& obj1, const Address& obj2);
1186145Snate@binkert.org/* Address& operator=(const physical_address_t address); */
1196145Snate@binkert.org
1206145Snate@binkert.orginline
1216145Snate@binkert.orgbool operator<(const Address& obj1, const Address& obj2)
1226145Snate@binkert.org{
1236145Snate@binkert.org  return obj1.getAddress() < obj2.getAddress();
1246145Snate@binkert.org}
1256145Snate@binkert.org
1266145Snate@binkert.org// ******************* Definitions *******************
1276145Snate@binkert.org
1286145Snate@binkert.org// Output operator definition
1296145Snate@binkert.orginline
1306145Snate@binkert.orgostream& operator<<(ostream& out, const Address& obj)
1316145Snate@binkert.org{
1326145Snate@binkert.org  obj.print(out);
1336145Snate@binkert.org  out << flush;
1346145Snate@binkert.org  return out;
1356145Snate@binkert.org}
1366145Snate@binkert.org
1376145Snate@binkert.orginline
1386145Snate@binkert.orgbool operator==(const Address& obj1, const Address& obj2)
1396145Snate@binkert.org{
1406145Snate@binkert.org  return (obj1.getAddress() == obj2.getAddress());
1416145Snate@binkert.org}
1426145Snate@binkert.org
1436145Snate@binkert.orginline
1446145Snate@binkert.orgbool operator!=(const Address& obj1, const Address& obj2)
1456145Snate@binkert.org{
1466145Snate@binkert.org  return (obj1.getAddress() != obj2.getAddress());
1476145Snate@binkert.org}
1486145Snate@binkert.org
1496145Snate@binkert.orginline
1506145Snate@binkert.orgphysical_address_t Address::bitSelect(int small, int big) const // rips bits inclusive
1516145Snate@binkert.org{
1526145Snate@binkert.org  physical_address_t mask;
1536712Snate@binkert.org  assert((unsigned)big >= (unsigned)small);
1546145Snate@binkert.org
1556145Snate@binkert.org  if (big >= ADDRESS_WIDTH - 1) {
1566145Snate@binkert.org    return (m_address >> small);
1576145Snate@binkert.org  } else {
1586145Snate@binkert.org    mask = ~((physical_address_t)~0 << (big + 1));
1596145Snate@binkert.org    // FIXME - this is slow to manipulate a 64-bit number using 32-bits
1606145Snate@binkert.org    physical_address_t partial = (m_address & mask);
1616145Snate@binkert.org    return (partial >> small);
1626145Snate@binkert.org  }
1636145Snate@binkert.org}
1646145Snate@binkert.org
1656145Snate@binkert.orginline
1666145Snate@binkert.orgphysical_address_t Address::maskLowOrderBits(int number) const
1676145Snate@binkert.org{
1686145Snate@binkert.org  physical_address_t mask;
1696145Snate@binkert.org
1706145Snate@binkert.org  if (number >= ADDRESS_WIDTH - 1) {
1716145Snate@binkert.org    mask = ~0;
1726145Snate@binkert.org  } else {
1736145Snate@binkert.org    mask = (physical_address_t)~0 << number;
1746145Snate@binkert.org  }
1756145Snate@binkert.org  return (m_address & mask);
1766145Snate@binkert.org}
1776145Snate@binkert.org
1786145Snate@binkert.orginline
1796145Snate@binkert.orgphysical_address_t Address::maskHighOrderBits(int number) const
1806145Snate@binkert.org{
1816145Snate@binkert.org  physical_address_t mask;
1826145Snate@binkert.org
1836145Snate@binkert.org  if (number >= ADDRESS_WIDTH - 1) {
1846145Snate@binkert.org    mask = ~0;
1856145Snate@binkert.org  } else {
1866145Snate@binkert.org    mask = (physical_address_t)~0 >> number;
1876145Snate@binkert.org  }
1886145Snate@binkert.org  return (m_address & mask);
1896145Snate@binkert.org}
1906145Snate@binkert.org
1916145Snate@binkert.orginline
1926145Snate@binkert.orgphysical_address_t Address::shiftLowOrderBits(int number) const
1936145Snate@binkert.org{
1946145Snate@binkert.org  return (m_address >> number);
1956145Snate@binkert.org}
1966145Snate@binkert.org
1976145Snate@binkert.orginline
1986145Snate@binkert.orginteger_t Address::memoryModuleIndex() const
1996145Snate@binkert.org{
2006285Snate@binkert.org  integer_t index = bitSelect(RubySystem::getBlockSizeBits()+RubySystem::getMemorySizeBits(), ADDRESS_WIDTH);
2016145Snate@binkert.org  assert (index >= 0);
2026145Snate@binkert.org  return index;
2036145Snate@binkert.org
2046145Snate@binkert.org  //  Index indexHighPortion = address.bitSelect(MEMORY_SIZE_BITS-1, PAGE_SIZE_BITS+NUMBER_OF_MEMORY_MODULE_BITS);
2056145Snate@binkert.org  //  Index indexLowPortion  = address.bitSelect(DATA_BLOCK_BITS, PAGE_SIZE_BITS-1);
2066145Snate@binkert.org
2076145Snate@binkert.org  //Index index = indexLowPortion | (indexHighPortion << (PAGE_SIZE_BITS - DATA_BLOCK_BITS));
2086145Snate@binkert.org
2096145Snate@binkert.org  /*
2106145Snate@binkert.org  Round-robin mapping of addresses, at page size granularity
2116145Snate@binkert.org
2126145Snate@binkert.orgADDRESS_WIDTH    MEMORY_SIZE_BITS        PAGE_SIZE_BITS  DATA_BLOCK_BITS
2136145Snate@binkert.org  |                    |                       |               |
2146145Snate@binkert.org \ /                  \ /                     \ /             \ /       0
2156145Snate@binkert.org  -----------------------------------------------------------------------
2166145Snate@binkert.org  |       unused        |xxxxxxxxxxxxxxx|       |xxxxxxxxxxxxxxx|       |
2176145Snate@binkert.org  |                     |xxxxxxxxxxxxxxx|       |xxxxxxxxxxxxxxx|       |
2186145Snate@binkert.org  -----------------------------------------------------------------------
2196145Snate@binkert.org                        indexHighPortion         indexLowPortion
2206145Snate@binkert.org                                        <------->
2216145Snate@binkert.org                               NUMBER_OF_MEMORY_MODULE_BITS
2226145Snate@binkert.org  */
2236145Snate@binkert.org}
2246145Snate@binkert.org
2256145Snate@binkert.orginline
2266145Snate@binkert.orgvoid Address::print(ostream& out) const
2276145Snate@binkert.org{
2287002Snate@binkert.org    using namespace std;
2297002Snate@binkert.org    out << "[" << hex << "0x" << m_address << "," << " line 0x" << maskLowOrderBits(RubySystem::getBlockSizeBits()) << dec << "]" << flush;
2306145Snate@binkert.org}
2316145Snate@binkert.org
2326145Snate@binkert.orgclass Address;
2337002Snate@binkert.orgnamespace __hash_namespace {
2346145Snate@binkert.org  template <> struct hash<Address>
2356145Snate@binkert.org  {
2366145Snate@binkert.org    size_t operator()(const Address &s) const { return (size_t) s.getAddress(); }
2376145Snate@binkert.org  };
2386145Snate@binkert.org}
2396145Snate@binkert.orgnamespace std {
2406145Snate@binkert.org  template <> struct equal_to<Address>
2416145Snate@binkert.org  {
2426145Snate@binkert.org    bool operator()(const Address& s1, const Address& s2) const { return s1 == s2; }
2436145Snate@binkert.org  };
2446145Snate@binkert.org}
2456145Snate@binkert.org
2466145Snate@binkert.org#endif //ADDRESS_H
2476145Snate@binkert.org
248