mshr.hh (9725:0d4ee33078bb) mshr.hh (10028:fb8c44de891a)
1/*
2 * Copyright (c) 2012-2013 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

--- 141 unchanged lines hidden (view full) ---

150 Counter order;
151
152 /** Address of the request. */
153 Addr addr;
154
155 /** Size of the request. */
156 int size;
157
1/*
2 * Copyright (c) 2012-2013 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

--- 141 unchanged lines hidden (view full) ---

150 Counter order;
151
152 /** Address of the request. */
153 Addr addr;
154
155 /** Size of the request. */
156 int size;
157
158 /** True if the request targets the secure memory space. */
159 bool isSecure;
160
158 /** True if the request has been sent to the bus. */
159 bool inService;
160
161 /** True if the request is just a simple forward from an upper level */
162 bool isForward;
163
164 /** The pending* and post* flags are only valid if inService is
165 * true. Using the accessor functions lets us detect if these

--- 139 unchanged lines hidden ---
161 /** True if the request has been sent to the bus. */
162 bool inService;
163
164 /** True if the request is just a simple forward from an upper level */
165 bool isForward;
166
167 /** The pending* and post* flags are only valid if inService is
168 * true. Using the accessor functions lets us detect if these

--- 139 unchanged lines hidden ---