gem5  v20.1.0.0
gic_v3_distributor.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019-2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2018 Metempsy Technology Consulting
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __DEV_ARM_GICV3_DISTRIBUTOR_H__
42 #define __DEV_ARM_GICV3_DISTRIBUTOR_H__
43 
44 #include "base/addr_range.hh"
45 #include "dev/arm/gic_v3.hh"
46 #include "sim/serialize.hh"
47 
49 {
50  private:
51 
52  friend class Gicv3Redistributor;
53  friend class Gicv3CPUInterface;
54  friend class Gicv3Its;
55 
56  protected:
57 
59  const uint32_t itLines;
60 
61  enum {
62  // Control Register
63  GICD_CTLR = 0x0000,
64  // Interrupt Controller Type Register
65  GICD_TYPER = 0x0004,
66  // Implementer Identification Register
67  GICD_IIDR = 0x0008,
68  // Error Reporting Status Register
69  GICD_STATUSR = 0x0010,
70  // Set Non-secure SPI Pending Register
71  GICD_SETSPI_NSR = 0x0040,
72  // Clear Non-secure SPI Pending Register
73  GICD_CLRSPI_NSR = 0x0048,
74  // Set Secure SPI Pending Register
75  GICD_SETSPI_SR = 0x0050,
76  // Clear Secure SPI Pending Register
77  GICD_CLRSPI_SR = 0x0058,
78  // Software Generated Interrupt Register
79  GICD_SGIR = 0x0f00,
80  // Peripheral ID0 Register
81  GICD_PIDR0 = 0xffe0,
82  // Peripheral ID1 Register
83  GICD_PIDR1 = 0xffe4,
84  // Peripheral ID2 Register
85  GICD_PIDR2 = 0xffe8,
86  // Peripheral ID3 Register
87  GICD_PIDR3 = 0xffec,
88  // Peripheral ID4 Register
89  GICD_PIDR4 = 0xffd0,
90  // Peripheral ID5 Register
91  GICD_PIDR5 = 0xffd4,
92  // Peripheral ID6 Register
93  GICD_PIDR6 = 0xffd8,
94  // Peripheral ID7 Register
95  GICD_PIDR7 = 0xffdc,
96  };
97 
98  // Interrupt Group Registers
99  static const AddrRange GICD_IGROUPR;
100  // Interrupt Set-Enable Registers
101  static const AddrRange GICD_ISENABLER;
102  // Interrupt Clear-Enable Registers
103  static const AddrRange GICD_ICENABLER;
104  // Interrupt Set-Pending Registers
105  static const AddrRange GICD_ISPENDR;
106  // Interrupt Clear-Pending Registers
107  static const AddrRange GICD_ICPENDR;
108  // Interrupt Set-Active Registers
109  static const AddrRange GICD_ISACTIVER;
110  // Interrupt Clear-Active Registers
111  static const AddrRange GICD_ICACTIVER;
112  // Interrupt Priority Registers
114  // Interrupt Processor Targets Registers
115  static const AddrRange GICD_ITARGETSR; // GICv2 legacy
116  // Interrupt Configuration Registers
117  static const AddrRange GICD_ICFGR;
118  // Interrupt Group Modifier Registers
119  static const AddrRange GICD_IGRPMODR;
120  // Non-secure Access Control Registers
121  static const AddrRange GICD_NSACR;
122  // SGI Clear-Pending Registers
123  static const AddrRange GICD_CPENDSGIR; // GICv2 legacy
124  // SGI Set-Pending Registers
125  static const AddrRange GICD_SPENDSGIR; // GICv2 legacy
126  // Interrupt Routing Registers
127  static const AddrRange GICD_IROUTER;
128 
129  BitUnion64(IROUTER)
130  Bitfield<63, 40> res0_1;
131  Bitfield<39, 32> Aff3;
132  Bitfield<31> IRM;
133  Bitfield<30, 24> res0_2;
134  Bitfield<23, 16> Aff2;
135  Bitfield<15, 8> Aff1;
136  Bitfield<7, 0> Aff0;
137  EndBitUnion(IROUTER)
138 
139  static const uint32_t GICD_CTLR_ENABLEGRP0 = 1 << 0;
140  static const uint32_t GICD_CTLR_ENABLEGRP1 = 1 << 0;
141  static const uint32_t GICD_CTLR_ENABLEGRP1NS = 1 << 1;
142  static const uint32_t GICD_CTLR_ENABLEGRP1A = 1 << 1;
143  static const uint32_t GICD_CTLR_ENABLEGRP1S = 1 << 2;
144  static const uint32_t GICD_CTLR_DS = 1 << 6;
145 
146  bool ARE;
147  bool DS;
151  std::vector <uint8_t> irqGroup;
156  std::vector <uint8_t> irqPriority;
157  std::vector <Gicv3::IntTriggerType> irqConfig;
158  std::vector <uint8_t> irqGrpmod;
159  std::vector <uint8_t> irqNsacr;
161 
162  uint32_t gicdTyper;
163  uint32_t gicdPidr0;
164  uint32_t gicdPidr1;
165  uint32_t gicdPidr2;
166  uint32_t gicdPidr3;
167  uint32_t gicdPidr4;
168 
169  public:
170 
171  static const uint32_t ADDR_RANGE_SIZE = 0x10000;
172  static const uint32_t IDBITS = 0xf;
173 
174  protected:
175 
176  void activateIRQ(uint32_t int_id);
177  void deactivateIRQ(uint32_t int_id);
178  void fullUpdate();
179  Gicv3::GroupId getIntGroup(int int_id) const;
180 
181  inline bool
182  groupEnabled(Gicv3::GroupId group) const
183  {
184  if (DS == 0) {
185  switch (group) {
186  case Gicv3::G0S:
187  return EnableGrp0;
188 
189  case Gicv3::G1S:
190  return EnableGrp1S;
191 
192  case Gicv3::G1NS:
193  return EnableGrp1NS;
194 
195  default:
196  panic("Gicv3Distributor::groupEnabled(): "
197  "invalid group!\n");
198  }
199  } else {
200  switch (group) {
201  case Gicv3::G0S:
202  return EnableGrp0;
203 
204  case Gicv3::G1S:
205  case Gicv3::G1NS:
206  return EnableGrp1NS;
207 
208  default:
209  panic("Gicv3Distributor::groupEnabled(): "
210  "invalid group!\n");
211  }
212  }
213  }
214 
215  Gicv3::IntStatus intStatus(uint32_t int_id) const;
216 
217  inline bool isNotSPI(uint32_t int_id) const
218  {
219  if (int_id < (Gicv3::SGI_MAX + Gicv3::PPI_MAX) || int_id >= itLines) {
220  return true;
221  } else {
222  return false;
223  }
224  }
225 
226  bool isLevelSensitive(uint32_t int_id) const
227  {
228  return irqConfig[int_id] == Gicv3::INT_LEVEL_SENSITIVE;
229  }
230 
242  bool treatAsEdgeTriggered(uint32_t int_id) const
243  {
244  return !isLevelSensitive(int_id) || irqPendingIspendr[int_id];
245  }
246 
247  inline bool nsAccessToSecInt(uint32_t int_id, bool is_secure_access) const
248  {
249  return !DS && !is_secure_access && getIntGroup(int_id) != Gicv3::G1NS;
250  }
251 
252  void serialize(CheckpointOut & cp) const override;
253  void unserialize(CheckpointIn & cp) override;
254  void update();
255  Gicv3CPUInterface* route(uint32_t int_id);
256 
257  public:
258 
259  Gicv3Distributor(Gicv3 * gic, uint32_t it_lines);
260 
261  void sendInt(uint32_t int_id);
262  void clearInt(uint32_t int_id);
263  void deassertSPI(uint32_t int_id);
264  void clearIrqCpuInterface(uint32_t int_id);
265  void init();
266  uint64_t read(Addr addr, size_t size, bool is_secure_access);
267  void write(Addr addr, uint64_t data, size_t size,
268  bool is_secure_access);
269 };
270 
271 #endif //__DEV_ARM_GICV3_DISTRIBUTOR_H__
Gicv3Distributor::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gic_v3_distributor.cc:1194
Gicv3Distributor::GICD_PIDR3
@ GICD_PIDR3
Definition: gic_v3_distributor.hh:87
Gicv3Distributor::isNotSPI
bool isNotSPI(uint32_t int_id) const
Definition: gic_v3_distributor.hh:217
Gicv3Distributor::GICD_ICFGR
static const AddrRange GICD_ICFGR
Definition: gic_v3_distributor.hh:117
Gicv3Distributor::GICD_SETSPI_NSR
@ GICD_SETSPI_NSR
Definition: gic_v3_distributor.hh:71
Gicv3Distributor::gicdPidr1
uint32_t gicdPidr1
Definition: gic_v3_distributor.hh:164
Gicv3::G1NS
@ G1NS
Definition: gic_v3.hh:93
Gicv3Distributor::GICD_IIDR
@ GICD_IIDR
Definition: gic_v3_distributor.hh:67
Gicv3Distributor::GICD_PIDR2
@ GICD_PIDR2
Definition: gic_v3_distributor.hh:85
Gicv3Its::size
Bitfield< 7, 0 > size
Definition: gic_v3_its.hh:180
data
const char data[]
Definition: circlebuf.test.cc:42
Gicv3Distributor::GICD_IPRIORITYR
static const AddrRange GICD_IPRIORITYR
Definition: gic_v3_distributor.hh:113
serialize.hh
Gicv3Distributor::irqEnabled
std::vector< bool > irqEnabled
Definition: gic_v3_distributor.hh:152
Gicv3::PPI_MAX
static const int PPI_MAX
Definition: gic_v3.hh:79
Gicv3Distributor::EndBitUnion
EndBitUnion(IROUTER) static const uint32_t GICD_CTLR_ENABLEGRP0
Gicv3Distributor::ARE
bool ARE
Definition: gic_v3_distributor.hh:146
Serializable
Basic support for object serialization.
Definition: serialize.hh:172
Gicv3Distributor::GICD_CTLR_DS
static const uint32_t GICD_CTLR_DS
Definition: gic_v3_distributor.hh:144
Gicv3Distributor::Gicv3Distributor
Gicv3Distributor(Gicv3 *gic, uint32_t it_lines)
Definition: gic_v3_distributor.cc:67
Gicv3::SGI_MAX
static const int SGI_MAX
Definition: gic_v3.hh:77
Gicv3Distributor::GICD_PIDR6
@ GICD_PIDR6
Definition: gic_v3_distributor.hh:93
Gicv3Distributor::GICD_ICACTIVER
static const AddrRange GICD_ICACTIVER
Definition: gic_v3_distributor.hh:111
Gicv3Distributor::GICD_STATUSR
@ GICD_STATUSR
Definition: gic_v3_distributor.hh:69
Gicv3Distributor::itLines
const uint32_t itLines
Definition: gic_v3_distributor.hh:59
Gicv3Distributor::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gic_v3_distributor.cc:1174
Gicv3Distributor::route
Gicv3CPUInterface * route(uint32_t int_id)
Definition: gic_v3_distributor.cc:1033
Gicv3Distributor::GICD_NSACR
static const AddrRange GICD_NSACR
Definition: gic_v3_distributor.hh:121
Gicv3Distributor::GICD_TYPER
@ GICD_TYPER
Definition: gic_v3_distributor.hh:65
Gicv3Distributor::GICD_SETSPI_SR
@ GICD_SETSPI_SR
Definition: gic_v3_distributor.hh:75
Gicv3Distributor::intStatus
Gicv3::IntStatus intStatus(uint32_t int_id) const
Definition: gic_v3_distributor.cc:1113
Gicv3Distributor::getIntGroup
Gicv3::GroupId getIntGroup(int int_id) const
Definition: gic_v3_distributor.cc:1132
Gicv3Distributor::clearInt
void clearInt(uint32_t int_id)
Definition: gic_v3_distributor.cc:1012
Gicv3Distributor::irqActive
std::vector< bool > irqActive
Definition: gic_v3_distributor.hh:155
Gicv3Distributor::GICD_CTLR_ENABLEGRP1S
static const uint32_t GICD_CTLR_ENABLEGRP1S
Definition: gic_v3_distributor.hh:143
Gicv3Distributor::GICD_IGRPMODR
static const AddrRange GICD_IGRPMODR
Definition: gic_v3_distributor.hh:119
Gicv3Distributor::GICD_ICPENDR
static const AddrRange GICD_ICPENDR
Definition: gic_v3_distributor.hh:107
Gicv3Distributor::irqConfig
std::vector< Gicv3::IntTriggerType > irqConfig
Definition: gic_v3_distributor.hh:157
Gicv3Distributor::GICD_CTLR_ENABLEGRP1NS
static const uint32_t GICD_CTLR_ENABLEGRP1NS
Definition: gic_v3_distributor.hh:141
Gicv3::G0S
@ G0S
Definition: gic_v3.hh:91
Gicv3Distributor::GICD_PIDR7
@ GICD_PIDR7
Definition: gic_v3_distributor.hh:95
Gicv3Distributor::GICD_SPENDSGIR
static const AddrRange GICD_SPENDSGIR
Definition: gic_v3_distributor.hh:125
Gicv3::INT_LEVEL_SENSITIVE
@ INT_LEVEL_SENSITIVE
Definition: gic_v3.hh:97
cp
Definition: cprintf.cc:40
Gicv3Distributor::gic
Gicv3 * gic
Definition: gic_v3_distributor.hh:58
Gicv3Distributor::GICD_CTLR_ENABLEGRP1A
static const uint32_t GICD_CTLR_ENABLEGRP1A
Definition: gic_v3_distributor.hh:142
Gicv3Distributor::irqGroup
std::vector< uint8_t > irqGroup
Definition: gic_v3_distributor.hh:151
AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Gicv3Distributor::irqPendingIspendr
std::vector< bool > irqPendingIspendr
Definition: gic_v3_distributor.hh:154
Gicv3Distributor::update
void update()
Definition: gic_v3_distributor.cc:1078
Gicv3Distributor::EnableGrp1S
bool EnableGrp1S
Definition: gic_v3_distributor.hh:148
Gicv3Distributor::groupEnabled
bool groupEnabled(Gicv3::GroupId group) const
Definition: gic_v3_distributor.hh:182
Gicv3Distributor::GICD_IROUTER
static const AddrRange GICD_IROUTER
Definition: gic_v3_distributor.hh:127
Gicv3Distributor::deactivateIRQ
void deactivateIRQ(uint32_t int_id)
Definition: gic_v3_distributor.cc:1168
Gicv3Its
GICv3 ITS module.
Definition: gic_v3_its.hh:74
Gicv3::IntStatus
IntStatus
Definition: gic_v3.hh:82
Gicv3Distributor::GICD_PIDR4
@ GICD_PIDR4
Definition: gic_v3_distributor.hh:89
Gicv3Distributor::gicdPidr0
uint32_t gicdPidr0
Definition: gic_v3_distributor.hh:163
Gicv3Distributor::read
uint64_t read(Addr addr, size_t size, bool is_secure_access)
Definition: gic_v3_distributor.cc:137
Gicv3
Definition: gic_v3.hh:53
Gicv3Distributor::GICD_PIDR5
@ GICD_PIDR5
Definition: gic_v3_distributor.hh:91
Gicv3Distributor::res0_2
Bitfield< 30, 24 > res0_2
Definition: gic_v3_distributor.hh:133
Gicv3Distributor::DS
bool DS
Definition: gic_v3_distributor.hh:147
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
Gicv3::G1S
@ G1S
Definition: gic_v3.hh:92
Gicv3Distributor::GICD_CLRSPI_SR
@ GICD_CLRSPI_SR
Definition: gic_v3_distributor.hh:77
Gicv3Distributor::res0_1
res0_1
Definition: gic_v3_distributor.hh:130
Gicv3Distributor::Aff1
Bitfield< 15, 8 > Aff1
Definition: gic_v3_distributor.hh:135
Gicv3Distributor::EnableGrp0
bool EnableGrp0
Definition: gic_v3_distributor.hh:150
Gicv3Distributor::irqGrpmod
std::vector< uint8_t > irqGrpmod
Definition: gic_v3_distributor.hh:158
addr_range.hh
Gicv3Distributor::gicdTyper
uint32_t gicdTyper
Definition: gic_v3_distributor.hh:162
Gicv3CPUInterface
Definition: gic_v3_cpu_interface.hh:50
Gicv3Distributor::GICD_PIDR1
@ GICD_PIDR1
Definition: gic_v3_distributor.hh:83
Gicv3Distributor::treatAsEdgeTriggered
bool treatAsEdgeTriggered(uint32_t int_id) const
This helper is used to check if an interrupt should be treated as edge triggered in the following sce...
Definition: gic_v3_distributor.hh:242
Gicv3Distributor::GICD_CLRSPI_NSR
@ GICD_CLRSPI_NSR
Definition: gic_v3_distributor.hh:73
Gicv3Distributor::GICD_CTLR_ENABLEGRP1
static const uint32_t GICD_CTLR_ENABLEGRP1
Definition: gic_v3_distributor.hh:140
Gicv3Distributor::GICD_SGIR
@ GICD_SGIR
Definition: gic_v3_distributor.hh:79
Gicv3Distributor::GICD_ICENABLER
static const AddrRange GICD_ICENABLER
Definition: gic_v3_distributor.hh:103
Gicv3Distributor::init
void init()
Definition: gic_v3_distributor.cc:132
std
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
X86ISA::vector
Bitfield< 15, 8 > vector
Definition: intmessage.hh:44
Gicv3Distributor::GICD_ITARGETSR
static const AddrRange GICD_ITARGETSR
Definition: gic_v3_distributor.hh:115
Gicv3Distributor
Definition: gic_v3_distributor.hh:48
Gicv3Distributor::irqPriority
std::vector< uint8_t > irqPriority
Definition: gic_v3_distributor.hh:156
Gicv3Distributor::deassertSPI
void deassertSPI(uint32_t int_id)
Definition: gic_v3_distributor.cc:1022
Gicv3Distributor::nsAccessToSecInt
bool nsAccessToSecInt(uint32_t int_id, bool is_secure_access) const
Definition: gic_v3_distributor.hh:247
Gicv3Distributor::GICD_CTLR
@ GICD_CTLR
Definition: gic_v3_distributor.hh:63
addr
ip6_addr_t addr
Definition: inet.hh:423
Gicv3Distributor::Aff2
Bitfield< 23, 16 > Aff2
Definition: gic_v3_distributor.hh:134
Gicv3Distributor::fullUpdate
void fullUpdate()
Gicv3Distributor::irqNsacr
std::vector< uint8_t > irqNsacr
Definition: gic_v3_distributor.hh:159
Gicv3Distributor::irqAffinityRouting
std::vector< IROUTER > irqAffinityRouting
Definition: gic_v3_distributor.hh:160
Gicv3Distributor::GICD_ISENABLER
static const AddrRange GICD_ISENABLER
Definition: gic_v3_distributor.hh:101
Gicv3Distributor::GICD_PIDR0
@ GICD_PIDR0
Definition: gic_v3_distributor.hh:81
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:63
Gicv3Distributor::isLevelSensitive
bool isLevelSensitive(uint32_t int_id) const
Definition: gic_v3_distributor.hh:226
Gicv3Distributor::BitUnion64
BitUnion64(IROUTER) Bitfield< 63
Gicv3Distributor::GICD_ISPENDR
static const AddrRange GICD_ISPENDR
Definition: gic_v3_distributor.hh:105
Gicv3Distributor::GICD_CPENDSGIR
static const AddrRange GICD_CPENDSGIR
Definition: gic_v3_distributor.hh:123
Gicv3Distributor::irqPending
std::vector< bool > irqPending
Definition: gic_v3_distributor.hh:153
Gicv3Distributor::gicdPidr4
uint32_t gicdPidr4
Definition: gic_v3_distributor.hh:167
Gicv3Distributor::clearIrqCpuInterface
void clearIrqCpuInterface(uint32_t int_id)
Definition: gic_v3_distributor.cc:1070
Gicv3Distributor::Aff3
Bitfield< 39, 32 > Aff3
Definition: gic_v3_distributor.hh:131
CheckpointIn
Definition: serialize.hh:67
Gicv3Distributor::write
void write(Addr addr, uint64_t data, size_t size, bool is_secure_access)
Definition: gic_v3_distributor.cc:506
Gicv3Distributor::gicdPidr2
uint32_t gicdPidr2
Definition: gic_v3_distributor.hh:165
Gicv3Distributor::sendInt
void sendInt(uint32_t int_id)
Definition: gic_v3_distributor.cc:1000
Gicv3Distributor::Aff0
Bitfield< 7, 0 > Aff0
Definition: gic_v3_distributor.hh:136
Gicv3Distributor::GICD_IGROUPR
static const AddrRange GICD_IGROUPR
Definition: gic_v3_distributor.hh:99
Gicv3Distributor::IDBITS
static const uint32_t IDBITS
Definition: gic_v3_distributor.hh:172
gic_v3.hh
Gicv3Redistributor
Definition: gic_v3_redistributor.hh:52
Gicv3Distributor::ADDR_RANGE_SIZE
static const uint32_t ADDR_RANGE_SIZE
Definition: gic_v3_distributor.hh:171
Gicv3Distributor::EnableGrp1NS
bool EnableGrp1NS
Definition: gic_v3_distributor.hh:149
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
Gicv3Distributor::GICD_ISACTIVER
static const AddrRange GICD_ISACTIVER
Definition: gic_v3_distributor.hh:109
Gicv3Distributor::IRM
Bitfield< 31 > IRM
Definition: gic_v3_distributor.hh:132
Gicv3Distributor::gicdPidr3
uint32_t gicdPidr3
Definition: gic_v3_distributor.hh:166
Gicv3Distributor::activateIRQ
void activateIRQ(uint32_t int_id)
Definition: gic_v3_distributor.cc:1159

Generated on Wed Sep 30 2020 14:02:10 for gem5 by doxygen 1.8.17