DirectoryMemory.cc revision 8644
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29#include "base/intmath.hh"
30#include "debug/RubyCache.hh"
31#include "mem/ruby/slicc_interface/RubySlicc_Util.hh"
32#include "mem/ruby/system/DirectoryMemory.hh"
33#include "mem/ruby/system/System.hh"
34
35using namespace std;
36
37int DirectoryMemory::m_num_directories = 0;
38int DirectoryMemory::m_num_directories_bits = 0;
39uint64_t DirectoryMemory::m_total_size_bytes = 0;
40int DirectoryMemory::m_numa_high_bit = 0;
41
42DirectoryMemory::DirectoryMemory(const Params *p)
43    : SimObject(p)
44{
45    m_version = p->version;
46    m_size_bytes = p->size;
47    m_size_bits = floorLog2(m_size_bytes);
48    m_num_entries = 0;
49    m_use_map = p->use_map;
50    m_map_levels = p->map_levels;
51    m_numa_high_bit = p->numa_high_bit;
52}
53
54void
55DirectoryMemory::init()
56{
57    m_num_entries = m_size_bytes / RubySystem::getBlockSizeBytes();
58
59    if (m_use_map) {
60        m_sparseMemory = new SparseMemory(m_map_levels);
61    } else {
62        m_entries = new AbstractEntry*[m_num_entries];
63        for (int i = 0; i < m_num_entries; i++)
64            m_entries[i] = NULL;
65        m_ram = g_system_ptr->getMemoryVector();
66    }
67
68    m_num_directories++;
69    m_num_directories_bits = floorLog2(m_num_directories);
70    m_total_size_bytes += m_size_bytes;
71
72    if (m_numa_high_bit == 0) {
73        m_numa_high_bit = RubySystem::getMemorySizeBits() - 1;
74    }
75    assert(m_numa_high_bit != 0);
76}
77
78DirectoryMemory::~DirectoryMemory()
79{
80    // free up all the directory entries
81    if (m_entries != NULL) {
82        for (uint64 i = 0; i < m_num_entries; i++) {
83            if (m_entries[i] != NULL) {
84                delete m_entries[i];
85            }
86        }
87        delete [] m_entries;
88    } else if (m_use_map) {
89        delete m_sparseMemory;
90    }
91}
92
93void
94DirectoryMemory::printConfig(ostream& out) const
95{
96    out << "DirectoryMemory module config: " << m_name << endl
97        << "  version: " << m_version << endl
98        << "  memory_bits: " << m_size_bits << endl
99        << "  memory_size_bytes: " << m_size_bytes << endl
100        << "  memory_size_Kbytes: " << double(m_size_bytes) / (1<<10) << endl
101        << "  memory_size_Mbytes: " << double(m_size_bytes) / (1<<20) << endl
102        << "  memory_size_Gbytes: " << double(m_size_bytes) / (1<<30) << endl;
103}
104
105// Static method
106void
107DirectoryMemory::printGlobalConfig(ostream & out)
108{
109    out << "DirectoryMemory Global Config: " << endl;
110    out << "  number of directory memories: " << m_num_directories << endl;
111    if (m_num_directories > 1) {
112        out << "  number of selection bits: " << m_num_directories_bits << endl
113            << "  selection bits: " << m_numa_high_bit
114            << "-" << m_numa_high_bit-m_num_directories_bits
115            << endl;
116    }
117    out << "  total memory size bytes: " << m_total_size_bytes << endl;
118    out << "  total memory bits: " << floorLog2(m_total_size_bytes) << endl;
119}
120
121uint64
122DirectoryMemory::mapAddressToDirectoryVersion(PhysAddress address)
123{
124    if (m_num_directories_bits == 0)
125        return 0;
126
127    uint64 ret = address.bitSelect(m_numa_high_bit - m_num_directories_bits + 1,
128                                   m_numa_high_bit);
129    return ret;
130}
131
132bool
133DirectoryMemory::isPresent(PhysAddress address)
134{
135    bool ret = (mapAddressToDirectoryVersion(address) == m_version);
136    return ret;
137}
138
139uint64
140DirectoryMemory::mapAddressToLocalIdx(PhysAddress address)
141{
142    uint64 ret;
143    if (m_num_directories_bits > 0) {
144        ret = address.bitRemove(m_numa_high_bit - m_num_directories_bits + 1,
145                                m_numa_high_bit);
146    } else {
147        ret = address.getAddress();
148    }
149
150    return ret >> (RubySystem::getBlockSizeBits());
151}
152
153AbstractEntry*
154DirectoryMemory::lookup(PhysAddress address)
155{
156    assert(isPresent(address));
157    DPRINTF(RubyCache, "Looking up address: %s\n", address);
158
159    if (m_use_map) {
160        return m_sparseMemory->lookup(address);
161    } else {
162        uint64_t idx = mapAddressToLocalIdx(address);
163        assert(idx < m_num_entries);
164        return m_entries[idx];
165    }
166}
167
168AbstractEntry*
169DirectoryMemory::allocate(const PhysAddress& address, AbstractEntry* entry)
170{
171    assert(isPresent(address));
172    uint64 idx;
173    DPRINTF(RubyCache, "Looking up address: %s\n", address);
174
175    if (m_use_map) {
176        m_sparseMemory->add(address, entry);
177        entry->changePermission(AccessPermission_Read_Write);
178    } else {
179        idx = mapAddressToLocalIdx(address);
180        assert(idx < m_num_entries);
181        entry->getDataBlk().assign(m_ram->getBlockPtr(address));
182        entry->changePermission(AccessPermission_Read_Only);
183        m_entries[idx] = entry;
184    }
185
186    return entry;
187}
188
189void
190DirectoryMemory::invalidateBlock(PhysAddress address)
191{
192    if (m_use_map) {
193        assert(m_sparseMemory->exist(address));
194        m_sparseMemory->remove(address);
195    }
196#if 0
197    else {
198        assert(isPresent(address));
199
200        Index index = address.memoryModuleIndex();
201
202        if (index < 0 || index > m_size) {
203            ERROR_MSG("Directory Memory Assertion: "
204                      "accessing memory out of range.");
205        }
206
207        if (m_entries[index] != NULL){
208            delete m_entries[index];
209            m_entries[index] = NULL;
210        }
211    }
212#endif
213}
214
215void
216DirectoryMemory::print(ostream& out) const
217{
218}
219
220void
221DirectoryMemory::printStats(ostream& out) const
222{
223    if (m_use_map) {
224        m_sparseMemory->printStats(out);
225    }
226}
227
228DirectoryMemory *
229RubyDirectoryMemoryParams::create()
230{
231    return new DirectoryMemory(this);
232}
233