thread_context.cc (11627:fe32a5238754) thread_context.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 2012 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

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

36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Kevin Lim
42 */
43
1/*
2 * Copyright (c) 2012 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

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

36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 *
41 * Authors: Kevin Lim
42 */
43
44#include "cpu/thread_context.hh"
45
44#include "arch/kernel_stats.hh"
45#include "base/misc.hh"
46#include "base/trace.hh"
47#include "config/the_isa.hh"
48#include "cpu/base.hh"
49#include "cpu/quiesce_event.hh"
46#include "arch/kernel_stats.hh"
47#include "base/misc.hh"
48#include "base/trace.hh"
49#include "config/the_isa.hh"
50#include "cpu/base.hh"
51#include "cpu/quiesce_event.hh"
50#include "cpu/thread_context.hh"
51#include "debug/Context.hh"
52#include "debug/Quiesce.hh"
53#include "params/BaseCPU.hh"
54#include "sim/full_system.hh"
55
56void
57ThreadContext::compare(ThreadContext *one, ThreadContext *two)
58{

--- 176 unchanged lines hidden ---
52#include "debug/Context.hh"
53#include "debug/Quiesce.hh"
54#include "params/BaseCPU.hh"
55#include "sim/full_system.hh"
56
57void
58ThreadContext::compare(ThreadContext *one, ThreadContext *two)
59{

--- 176 unchanged lines hidden ---