Deleted Added
sdiff udiff text old ( 7680:f4eda002333b ) new ( 9384:877293183bdf )
full compact
1/*
2 * Copyright (c) 2009 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;

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

28 * Authors: Gabe Black
29 */
30
31#include <cassert>
32
33#include "arch/alpha/isa.hh"
34#include "base/misc.hh"
35#include "cpu/thread_context.hh"
36#include "sim/serialize.hh"
37
38namespace AlphaISA
39{
40
41void
42ISA::serialize(EventManager *em, std::ostream &os)
43{
44 SERIALIZE_SCALAR(fpcr);
45 SERIALIZE_SCALAR(uniq);
46 SERIALIZE_SCALAR(lock_flag);
47 SERIALIZE_SCALAR(lock_addr);
48 SERIALIZE_ARRAY(ipr, NumInternalProcRegs);

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

146 return;
147 default:
148 setIpr(misc_reg, val, tc);
149 return;
150 }
151}
152
153}