thread_context.cc (7720:65d338a8dba4) thread_context.cc (8232:b28d06a175be)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Kevin Lim
29 */
30
31#include "base/misc.hh"
32#include "base/trace.hh"
33#include "config/the_isa.hh"
34#include "cpu/thread_context.hh"
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

27 *
28 * Authors: Kevin Lim
29 */
30
31#include "base/misc.hh"
32#include "base/trace.hh"
33#include "config/the_isa.hh"
34#include "cpu/thread_context.hh"
35#include "debug/Context.hh"
35
36void
37ThreadContext::compare(ThreadContext *one, ThreadContext *two)
38{
39 DPRINTF(Context, "Comparing thread contexts\n");
40
41 // First loop through the integer registers.
42 for (int i = 0; i < TheISA::NumIntRegs; ++i) {

--- 39 unchanged lines hidden ---
36
37void
38ThreadContext::compare(ThreadContext *one, ThreadContext *two)
39{
40 DPRINTF(Context, "Comparing thread contexts\n");
41
42 // First loop through the integer registers.
43 for (int i = 0; i < TheISA::NumIntRegs; ++i) {

--- 39 unchanged lines hidden ---