gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
CheckTable.hh
Go to the documentation of this file.
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#ifndef __CPU_RUBYTEST_CHECKTABLE_HH__
31#define __CPU_RUBYTEST_CHECKTABLE_HH__
32
33#include <iostream>
34#include <unordered_map>
35#include <vector>
36
37#include "base/random.hh"
39
40namespace gem5
41{
42
43class Check;
44class RubyTester;
45
47{
48 public:
49 CheckTable(int _num_writers, int _num_readers, RubyTester* _tester);
51
53 Check* getCheck(Addr address);
54
55 // bool isPresent(const Address& address) const;
56 // void removeCheckFromTable(const Address& address);
57 // bool isTableFull() const;
58 // Need a method to select a check or retrieve a check
59
60 void print(std::ostream& out) const;
61
62 private:
63 void addCheck(Addr address);
64
65 // Private copy constructor and assignment operator
68
70 std::unordered_map<Addr, Check*> m_lookup_map;
71
76};
77
78inline std::ostream&
79operator<<(std::ostream& out, const CheckTable& obj)
80{
81 obj.print(out);
82 out << std::flush;
83 return out;
84}
85
86} // namespace gem5
87
88#endif // __CPU_RUBYTEST_CHECKTABLE_HH__
RubyTester * m_tester_ptr
Definition CheckTable.hh:74
Check * getRandomCheck()
CheckTable(const CheckTable &obj)
void print(std::ostream &out) const
std::unordered_map< Addr, Check * > m_lookup_map
Definition CheckTable.hh:70
CheckTable & operator=(const CheckTable &obj)
std::vector< Check * > m_check_vector
Definition CheckTable.hh:69
Check * getCheck(Addr address)
Random::RandomPtr rng
Definition CheckTable.hh:75
void addCheck(Addr address)
Definition CheckTable.cc:85
std::shared_ptr< Random > RandomPtr
Definition random.hh:65
static RandomPtr genRandom()
Definition random.hh:68
STL vector class.
Definition stl.hh:37
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
std::ostream & operator<<(std::ostream &os, const BaseSemihosting::InPlaceArg &ipa)

Generated on Mon Jan 13 2025 04:28:32 for gem5 by doxygen 1.9.8