lsq.hh (14105:969b4e972b07) lsq.hh (14111:14c05f862590)
1/*
2 * Copyright (c) 2011-2012, 2014, 2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

218 };
219 FlagsType flags;
220
221 enum class State
222 {
223 NotIssued,
224 Translation,
225 Request,
1/*
2 * Copyright (c) 2011-2012, 2014, 2018 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

218 };
219 FlagsType flags;
220
221 enum class State
222 {
223 NotIssued,
224 Translation,
225 Request,
226 Complete,
227 Squashed,
228 Fault,
229 PartialFault,
230 };
231 State _state;
232 LSQSenderState* _senderState;
233 void setState(const State& newState) { _state = newState; }
234
235 uint32_t numTranslatedFragments;

--- 852 unchanged lines hidden ---
226 Fault,
227 PartialFault,
228 };
229 State _state;
230 LSQSenderState* _senderState;
231 void setState(const State& newState) { _state = newState; }
232
233 uint32_t numTranslatedFragments;

--- 852 unchanged lines hidden ---