CheckTable.cc revision 8932
16899SN/A/*
26899SN/A * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
36899SN/A * Copyright (c) 2009 Advanced Micro Devices, Inc.
46899SN/A * All rights reserved.
56899SN/A *
66899SN/A * Redistribution and use in source and binary forms, with or without
76899SN/A * modification, are permitted provided that the following conditions are
86899SN/A * met: redistributions of source code must retain the above copyright
96899SN/A * notice, this list of conditions and the following disclaimer;
106899SN/A * redistributions in binary form must reproduce the above copyright
116899SN/A * notice, this list of conditions and the following disclaimer in the
126899SN/A * documentation and/or other materials provided with the distribution;
136899SN/A * neither the name of the copyright holders nor the names of its
146899SN/A * contributors may be used to endorse or promote products derived from
156899SN/A * this software without specific prior written permission.
166899SN/A *
176899SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186899SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196899SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206899SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216899SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226899SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236899SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246899SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256899SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266899SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276899SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286899SN/A */
296899SN/A
307056SN/A#include "base/intmath.hh"
317632SBrad.Beckmann@amd.com#include "cpu/testers/rubytest/Check.hh"
327632SBrad.Beckmann@amd.com#include "cpu/testers/rubytest/CheckTable.hh"
338232Snate@binkert.org#include "debug/RubyTest.hh"
346899SN/A
358932SBrad.Beckmann@amd.comCheckTable::CheckTable(int _num_writers, int _num_readers, RubyTester* _tester)
368932SBrad.Beckmann@amd.com    : m_num_writers(_num_writers), m_num_readers(_num_readers),
378932SBrad.Beckmann@amd.com      m_tester_ptr(_tester)
386899SN/A{
397053SN/A    physical_address_t physical = 0;
407053SN/A    Address address;
416899SN/A
427053SN/A    const int size1 = 32;
437053SN/A    const int size2 = 100;
446899SN/A
457053SN/A    // The first set is to get some false sharing
467053SN/A    physical = 1000;
477053SN/A    for (int i = 0; i < size1; i++) {
487053SN/A        // Setup linear addresses
497053SN/A        address.setAddress(physical);
507053SN/A        addCheck(address);
517053SN/A        physical += CHECK_SIZE;
527053SN/A    }
536899SN/A
547053SN/A    // The next two sets are to get some limited false sharing and
557053SN/A    // cache conflicts
567053SN/A    physical = 1000;
577053SN/A    for (int i = 0; i < size2; i++) {
587053SN/A        // Setup linear addresses
597053SN/A        address.setAddress(physical);
607053SN/A        addCheck(address);
617053SN/A        physical += 256;
627053SN/A    }
636899SN/A
647053SN/A    physical = 1000 + CHECK_SIZE;
657053SN/A    for (int i = 0; i < size2; i++) {
667053SN/A        // Setup linear addresses
677053SN/A        address.setAddress(physical);
687053SN/A        addCheck(address);
697053SN/A        physical += 256;
707053SN/A    }
716899SN/A}
726899SN/A
736899SN/ACheckTable::~CheckTable()
746899SN/A{
757053SN/A    int size = m_check_vector.size();
767053SN/A    for (int i = 0; i < size; i++)
777053SN/A        delete m_check_vector[i];
786899SN/A}
796899SN/A
807053SN/Avoid
817053SN/ACheckTable::addCheck(const Address& address)
826899SN/A{
837056SN/A    if (floorLog2(CHECK_SIZE) != 0) {
847053SN/A        if (address.bitSelect(0, CHECK_SIZE_BITS - 1) != 0) {
857805Snilay@cs.wisc.edu            panic("Check not aligned");
867053SN/A        }
876899SN/A    }
886899SN/A
897053SN/A    for (int i = 0; i < CHECK_SIZE; i++) {
907455SN/A        if (m_lookup_map.count(Address(address.getAddress()+i))) {
917053SN/A            // A mapping for this byte already existed, discard the
927053SN/A            // entire check
937053SN/A            return;
947053SN/A        }
956899SN/A    }
966899SN/A
977053SN/A    Check* check_ptr = new Check(address, Address(100 + m_check_vector.size()),
988932SBrad.Beckmann@amd.com                                 m_num_writers, m_num_readers, m_tester_ptr);
997053SN/A    for (int i = 0; i < CHECK_SIZE; i++) {
1007053SN/A        // Insert it once per byte
1017455SN/A        m_lookup_map[Address(address.getAddress() + i)] = check_ptr;
1027053SN/A    }
1037454SN/A    m_check_vector.push_back(check_ptr);
1046899SN/A}
1056899SN/A
1067053SN/ACheck*
1077053SN/ACheckTable::getRandomCheck()
1086899SN/A{
1097053SN/A    return m_check_vector[random() % m_check_vector.size()];
1106899SN/A}
1116899SN/A
1127053SN/ACheck*
1137053SN/ACheckTable::getCheck(const Address& address)
1146899SN/A{
1157780Snilay@cs.wisc.edu    DPRINTF(RubyTest, "Looking for check by address: %s", address);
1166899SN/A
1177455SN/A    m5::hash_map<Address, Check*>::iterator i = m_lookup_map.find(address);
1187455SN/A
1197455SN/A    if (i == m_lookup_map.end())
1207053SN/A        return NULL;
1217455SN/A
1227455SN/A    Check* check = i->second;
1237455SN/A    assert(check != NULL);
1247455SN/A    return check;
1256899SN/A}
1266899SN/A
1277053SN/Avoid
1287055SN/ACheckTable::print(std::ostream& out) const
1296899SN/A{
1306899SN/A}
131