Fix a bunch of bugs I introduced when I changed the flags stuff for packets.
[gem5.git] / src / arch / alpha / miscregfile.hh
1 /*
2 * Copyright (c) 2003-2005 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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Steve Reinhardt
29 * Gabe Black
30 */
31
32 #ifndef __ARCH_ALPHA_MISCREGFILE_HH__
33 #define __ARCH_ALPHA_MISCREGFILE_HH__
34
35 #include <iosfwd>
36
37 #include "arch/alpha/ipr.hh"
38 #include "arch/alpha/types.hh"
39 #include "sim/host.hh"
40 #include "sim/serialize.hh"
41
42 class Checkpoint;
43 class ThreadContext;
44
45 namespace AlphaISA {
46
47 enum MiscRegIndex
48 {
49 MISCREG_FPCR = NumInternalProcRegs,
50 MISCREG_UNIQ,
51 MISCREG_LOCKFLAG,
52 MISCREG_LOCKADDR,
53 MISCREG_INTR
54 };
55
56 static inline std::string
57 getMiscRegName(RegIndex)
58 {
59 return "";
60 }
61
62 class MiscRegFile
63 {
64 public:
65 friend class RegFile;
66 typedef uint64_t InternalProcReg;
67
68 protected:
69 uint64_t fpcr; // floating point condition codes
70 uint64_t uniq; // process-unique register
71 bool lock_flag; // lock flag for LL/SC
72 Addr lock_addr; // lock address for LL/SC
73 int intr_flag;
74
75 InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
76
77 protected:
78 InternalProcReg readIpr(int idx, ThreadContext *tc);
79 void setIpr(int idx, InternalProcReg val, ThreadContext *tc);
80
81 public:
82 MiscRegFile()
83 {
84 initializeIprTable();
85 }
86
87 // These functions should be removed once the simplescalar cpu
88 // model has been replaced.
89 int getInstAsid();
90 int getDataAsid();
91
92 MiscReg readRegNoEffect(int misc_reg);
93 MiscReg readReg(int misc_reg, ThreadContext *tc);
94
95 void setRegNoEffect(int misc_reg, const MiscReg &val);
96 void setReg(int misc_reg, const MiscReg &val, ThreadContext *tc);
97
98 void
99 clear()
100 {
101 fpcr = 0;
102 uniq = 0;
103 lock_flag = 0;
104 lock_addr = 0;
105 intr_flag = 0;
106 }
107
108 void serialize(std::ostream &os);
109 void unserialize(Checkpoint *cp, const std::string &section);
110 };
111
112 void copyIprs(ThreadContext *src, ThreadContext *dest);
113
114 } // namespace AlphaISA
115
116 #endif // __ARCH_ALPHA_MISCREGFILE_HH__