simple_thread.hh (14022:a7cdc33dab35) simple_thread.hh (14024:abe47b13653d)
1/*
2 * Copyright (c) 2011-2012, 2016-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 PortProxy &getPhysProxy() override { return ThreadState::getPhysProxy(); }
219 PortProxy &getVirtProxy() override { return ThreadState::getVirtProxy(); }
220
221 void initMemProxies(ThreadContext *tc) override
222 {
223 ThreadState::initMemProxies(tc);
224 }
225
1/*
2 * Copyright (c) 2011-2012, 2016-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 PortProxy &getPhysProxy() override { return ThreadState::getPhysProxy(); }
219 PortProxy &getVirtProxy() override { return ThreadState::getVirtProxy(); }
220
221 void initMemProxies(ThreadContext *tc) override
222 {
223 ThreadState::initMemProxies(tc);
224 }
225
226 PortProxy &
227 getMemProxy() override
228 {
229 return ThreadState::getMemProxy();
230 }
231
232 Process *getProcessPtr() override { return ThreadState::getProcessPtr(); }
233 void setProcessPtr(Process *p) override { ThreadState::setProcessPtr(p); }
234
235 Status status() const override { return _status; }
236
237 void setStatus(Status newStatus) override { _status = newStatus; }
238
239 /// Set the status to Active.

--- 469 unchanged lines hidden ---
226 Process *getProcessPtr() override { return ThreadState::getProcessPtr(); }
227 void setProcessPtr(Process *p) override { ThreadState::setProcessPtr(p); }
228
229 Status status() const override { return _status; }
230
231 void setStatus(Status newStatus) override { _status = newStatus; }
232
233 /// Set the status to Active.

--- 469 unchanged lines hidden ---