gem5 v24.0.0.0
Loading...
Searching...
No Matches
Check.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_CHECK_HH__
31#define __CPU_RUBYTEST_CHECK_HH__
32
33#include <iostream>
34
37#include "mem/ruby/protocol/RubyAccessMode.hh"
38#include "mem/ruby/protocol/TesterStatus.hh"
39
40namespace gem5
41{
42
43namespace ruby
44{
45class SubBlock;
46} // namespace ruby
47
48const int CHECK_SIZE_BITS = 2;
49const int CHECK_SIZE = (1 << CHECK_SIZE_BITS);
50
51class Check
52{
53 public:
54 Check(Addr address, Addr pc, int _num_writers,
55 int _num_readers, RubyTester* _tester);
56
57 void initiate(); // Does Action or Check or nether
59 Cycles curTime);
60 Addr getAddress() const { return m_address; }
61 void changeAddress(Addr address);
62
63 void print(std::ostream& out) const;
64
65 private:
66 void initiateFlush();
67 void initiatePrefetch();
68 void initiateAction();
69 void initiateCheck();
70
71 void pickValue();
72 void pickInitiatingNode();
73
74 void debugPrint();
75
76 ruby::TesterStatus m_status;
77 uint8_t m_value;
82 ruby::RubyAccessMode m_access_mode;
86};
87
88inline std::ostream&
89operator<<(std::ostream& out, const Check& obj)
90{
91 obj.print(out);
92 out << std::flush;
93 return out;
94}
95
96} // namespace gem5
97
98#endif // __CPU_RUBYTEST_CHECK_HH__
const char data[]
void changeAddress(Addr address)
Definition Check.cc:351
Addr m_pc
Definition Check.hh:81
void initiateCheck()
Definition Check.cc:233
void initiate()
Definition Check.cc:59
ruby::RubyAccessMode m_access_mode
Definition Check.hh:82
void initiateAction()
Definition Check.cc:172
void pickInitiatingNode()
Definition Check.cc:370
void print(std::ostream &out) const
Definition Check.cc:382
int m_store_count
Definition Check.hh:78
Addr getAddress() const
Definition Check.hh:60
void performCallback(ruby::NodeID proc, ruby::SubBlock *data, Cycles curTime)
Definition Check.cc:287
void pickValue()
Definition Check.cc:362
Addr m_address
Definition Check.hh:80
void initiateFlush()
Definition Check.cc:142
void initiatePrefetch()
Definition Check.cc:85
RubyTester * m_tester_ptr
Definition Check.hh:85
ruby::NodeID m_initiatingNode
Definition Check.hh:79
void debugPrint()
Definition Check.cc:394
ruby::TesterStatus m_status
Definition Check.hh:76
uint8_t m_value
Definition Check.hh:77
Check(Addr address, Addr pc, int _num_writers, int _num_readers, RubyTester *_tester)
Definition Check.cc:42
int m_num_writers
Definition Check.hh:83
int m_num_readers
Definition Check.hh:84
Cycles is a wrapper class for representing cycle counts, i.e.
Definition types.hh:79
Bitfield< 4 > pc
unsigned int NodeID
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
const int CHECK_SIZE_BITS
Definition Check.hh:48
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
const int CHECK_SIZE
Definition Check.hh:49
static std::ostream & operator<<(std::ostream &os, const DummyMatRegContainer &d)
Definition matrix.hh:564

Generated on Tue Jun 18 2024 16:24:02 for gem5 by doxygen 1.11.0