gem5  v22.1.0.0
SubBlock.hh
Go to the documentation of this file.
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 #ifndef __MEM_RUBY_COMMON_SUBBLOCK_HH__
30 #define __MEM_RUBY_COMMON_SUBBLOCK_HH__
31 
32 #include <iostream>
33 #include <vector>
34 
37 
38 namespace gem5
39 {
40 
41 namespace ruby
42 {
43 
44 class SubBlock
45 {
46  public:
47  SubBlock() { }
48  SubBlock(Addr addr, int size);
49  ~SubBlock() { }
50 
51  Addr getAddress() const { return m_address; }
53 
54  int getSize() const { return m_data.size(); }
55  void resize(int size) { m_data.resize(size); }
56  uint8_t getByte(int offset) const { return m_data[offset]; }
57  void setByte(int offset, uint8_t data) { m_data[offset] = data; }
58 
59  // Shorthands
60  uint8_t readByte() const { return getByte(0); }
61  void writeByte(uint8_t data) { setByte(0, data); }
62 
63  // Merging to and from DataBlocks - We only need to worry about
64  // updates when we are using DataBlocks
67 
68  void print(std::ostream& out) const;
69 
70  private:
71  void internalMergeTo(DataBlock& data) const;
72  void internalMergeFrom(const DataBlock& data);
73 
74  // Data Members (m_ prefix)
77 };
78 
79 inline std::ostream&
80 operator<<(std::ostream& out, const SubBlock& obj)
81 {
82  obj.print(out);
83  out << std::flush;
84  return out;
85 }
86 
87 } // namespace ruby
88 } // namespace gem5
89 
90 #endif // __MEM_RUBY_COMMON_SUBBLOCK_HH__
const char data[]
Addr getAddress() const
Definition: SubBlock.hh:51
uint8_t getByte(int offset) const
Definition: SubBlock.hh:56
void resize(int size)
Definition: SubBlock.hh:55
std::vector< uint8_t > m_data
Definition: SubBlock.hh:76
void setAddress(Addr addr)
Definition: SubBlock.hh:52
void mergeTo(DataBlock &data) const
Definition: SubBlock.hh:65
void writeByte(uint8_t data)
Definition: SubBlock.hh:61
uint8_t readByte() const
Definition: SubBlock.hh:60
void print(std::ostream &out) const
Definition: SubBlock.cc:74
void internalMergeTo(DataBlock &data) const
Definition: SubBlock.cc:62
int getSize() const
Definition: SubBlock.hh:54
void setByte(int offset, uint8_t data)
Definition: SubBlock.hh:57
void mergeFrom(const DataBlock &data)
Definition: SubBlock.hh:66
void internalMergeFrom(const DataBlock &data)
Definition: SubBlock.cc:51
Bitfield< 23, 0 > offset
Definition: types.hh:144
Bitfield< 3 > addr
Definition: types.hh:84
std::ostream & operator<<(std::ostream &os, const BoolVec &myvector)
Definition: BoolVec.cc:49
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147

Generated on Wed Dec 21 2022 10:22:38 for gem5 by doxygen 1.9.1