utility.cc (11793:ef606668d247) utility.cc (12334:e0ab29a34764)
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

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

29 *
30 * Authors: Korey Sewell
31 * Stephen Hines
32 * Timothy M. Jones
33 */
34
35#include "arch/power/utility.hh"
36
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

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

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

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

--- 37 unchanged lines hidden ---