thread_context.hh (14022:a7cdc33dab35) thread_context.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

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

135 PortProxy &getVirtProxy() override;
136
137 void
138 initMemProxies(ThreadContext *tc) override
139 {
140 thread->initMemProxies(tc);
141 }
142
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

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

135 PortProxy &getVirtProxy() override;
136
137 void
138 initMemProxies(ThreadContext *tc) override
139 {
140 thread->initMemProxies(tc);
141 }
142
143 PortProxy &
144 getMemProxy() override
145 {
146 return thread->getMemProxy();
147 }
148
149 /** Returns this thread's status. */
150 Status status() const override { return thread->status(); }
151
152 /** Sets this thread's status. */
153 void
154 setStatus(Status new_status) override
155 {
156 thread->setStatus(new_status);

--- 340 unchanged lines hidden ---
143 /** Returns this thread's status. */
144 Status status() const override { return thread->status(); }
145
146 /** Sets this thread's status. */
147 void
148 setStatus(Status new_status) override
149 {
150 thread->setStatus(new_status);

--- 340 unchanged lines hidden ---