isa.hh (12109:f29e9c5418aa) isa.hh (13582:989577bf6abc)
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;
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: Gabe Black
29 */
30
31#ifndef __ARCH_ALPHA_ISA_HH__
32#define __ARCH_ALPHA_ISA_HH__
33
34#include <cstring>
35#include <iostream>
36#include <string>
37
38#include "arch/alpha/registers.hh"
39#include "arch/alpha/types.hh"
40#include "base/types.hh"
41#include "cpu/reg_class.hh"
42#include "sim/sim_object.hh"
43#include "sim/system.hh"
44
45struct AlphaISAParams;
46class BaseCPU;
47class Checkpoint;
48class EventManager;
49class ThreadContext;
50
51namespace AlphaISA
52{
53 class ISA : public SimObject
54 {
55 public:
56 typedef uint64_t InternalProcReg;
57 typedef AlphaISAParams Params;
58
59 protected:
60 // Parent system
61 System *system;
62
63 uint64_t fpcr; // floating point condition codes
64 uint64_t uniq; // process-unique register
65 bool lock_flag; // lock flag for LL/SC
66 Addr lock_addr; // lock address for LL/SC
67 int intr_flag;
68
69 InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
70
71 protected:
72 InternalProcReg readIpr(int idx, ThreadContext *tc);
73 void setIpr(int idx, InternalProcReg val, ThreadContext *tc);
74
75 public:
76
77 MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) const;
78 MiscReg readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid = 0);
79
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;
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: Gabe Black
29 */
30
31#ifndef __ARCH_ALPHA_ISA_HH__
32#define __ARCH_ALPHA_ISA_HH__
33
34#include <cstring>
35#include <iostream>
36#include <string>
37
38#include "arch/alpha/registers.hh"
39#include "arch/alpha/types.hh"
40#include "base/types.hh"
41#include "cpu/reg_class.hh"
42#include "sim/sim_object.hh"
43#include "sim/system.hh"
44
45struct AlphaISAParams;
46class BaseCPU;
47class Checkpoint;
48class EventManager;
49class ThreadContext;
50
51namespace AlphaISA
52{
53 class ISA : public SimObject
54 {
55 public:
56 typedef uint64_t InternalProcReg;
57 typedef AlphaISAParams Params;
58
59 protected:
60 // Parent system
61 System *system;
62
63 uint64_t fpcr; // floating point condition codes
64 uint64_t uniq; // process-unique register
65 bool lock_flag; // lock flag for LL/SC
66 Addr lock_addr; // lock address for LL/SC
67 int intr_flag;
68
69 InternalProcReg ipr[NumInternalProcRegs]; // Internal processor regs
70
71 protected:
72 InternalProcReg readIpr(int idx, ThreadContext *tc);
73 void setIpr(int idx, InternalProcReg val, ThreadContext *tc);
74
75 public:
76
77 MiscReg readMiscRegNoEffect(int misc_reg, ThreadID tid = 0) const;
78 MiscReg readMiscReg(int misc_reg, ThreadContext *tc, ThreadID tid = 0);
79
80 void setMiscRegNoEffect(int misc_reg, const MiscReg &val,
81 ThreadID tid = 0);
82 void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc,
83 ThreadID tid = 0);
80 void setMiscRegNoEffect(int misc_reg, MiscReg val, ThreadID tid=0);
81 void setMiscReg(int misc_reg, MiscReg val, ThreadContext *tc,
82 ThreadID tid=0);
84
85 void
86 clear()
87 {
88 fpcr = 0;
89 uniq = 0;
90 lock_flag = 0;
91 lock_addr = 0;
92 intr_flag = 0;
93 memset(ipr, 0, sizeof(ipr));
94 }
95
96 void serialize(CheckpointOut &cp) const override;
97 void unserialize(CheckpointIn &cp) override;
98
99 RegId flattenRegId(const RegId& regId) const { return regId; }
100
101 int
102 flattenIntIndex(int reg) const
103 {
104 return reg;
105 }
106
107 int
108 flattenFloatIndex(int reg) const
109 {
110 return reg;
111 }
112
113 int
114 flattenVecIndex(int reg) const
115 {
116 return reg;
117 }
118
119 int
120 flattenVecElemIndex(int reg) const
121 {
122 return reg;
123 }
124
125 // dummy
126 int
127 flattenCCIndex(int reg) const
128 {
129 return reg;
130 }
131
132 int
133 flattenMiscIndex(int reg) const
134 {
135 return reg;
136 }
137
138 const Params *params() const;
139
140 ISA(Params *p);
141
142 void startup(ThreadContext *tc) {}
143
144 /// Explicitly import the otherwise hidden startup
145 using SimObject::startup;
146 };
147}
148
149#endif
83
84 void
85 clear()
86 {
87 fpcr = 0;
88 uniq = 0;
89 lock_flag = 0;
90 lock_addr = 0;
91 intr_flag = 0;
92 memset(ipr, 0, sizeof(ipr));
93 }
94
95 void serialize(CheckpointOut &cp) const override;
96 void unserialize(CheckpointIn &cp) override;
97
98 RegId flattenRegId(const RegId& regId) const { return regId; }
99
100 int
101 flattenIntIndex(int reg) const
102 {
103 return reg;
104 }
105
106 int
107 flattenFloatIndex(int reg) const
108 {
109 return reg;
110 }
111
112 int
113 flattenVecIndex(int reg) const
114 {
115 return reg;
116 }
117
118 int
119 flattenVecElemIndex(int reg) const
120 {
121 return reg;
122 }
123
124 // dummy
125 int
126 flattenCCIndex(int reg) const
127 {
128 return reg;
129 }
130
131 int
132 flattenMiscIndex(int reg) const
133 {
134 return reg;
135 }
136
137 const Params *params() const;
138
139 ISA(Params *p);
140
141 void startup(ThreadContext *tc) {}
142
143 /// Explicitly import the otherwise hidden startup
144 using SimObject::startup;
145 };
146}
147
148#endif