utility.cc (7693:f1db1000d957) utility.cc (7698:e78b6bba67ca)
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * Authors: Korey Sewell
31 * Stephen Hines
32 * Timothy M. Jones
33 */
34
35#include "arch/power/utility.hh"
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007-2008 The Florida State University
4 * Copyright (c) 2009 The University of Edinburgh
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are

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

28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * Authors: Korey Sewell
31 * Stephen Hines
32 * Timothy M. Jones
33 */
34
35#include "arch/power/utility.hh"
36#include "base/misc.hh"
36
37namespace PowerISA {
38
39void
40copyRegs(ThreadContext *src, ThreadContext *dest)
41{
42 // First loop through the integer registers.
43 for (int i = 0; i < NumIntRegs; ++i)

--- 22 unchanged lines hidden ---
37
38namespace PowerISA {
39
40void
41copyRegs(ThreadContext *src, ThreadContext *dest)
42{
43 // First loop through the integer registers.
44 for (int i = 0; i < NumIntRegs; ++i)

--- 22 unchanged lines hidden ---