isa.hh (7733:08d6a773d1b6) isa.hh (8232:b28d06a175be)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2009 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Gabe Black
41 */
42
43#ifndef __ARCH_ARM_ISA_HH__
44#define __ARCH_ARM_ISA_HH__
45
46#include "arch/arm/registers.hh"
47#include "arch/arm/tlb.hh"
48#include "arch/arm/types.hh"
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
14 * Copyright (c) 2009 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright
22 * notice, this list of conditions and the following disclaimer in the
23 * documentation and/or other materials provided with the distribution;
24 * neither the name of the copyright holders nor the names of its
25 * contributors may be used to endorse or promote products derived from
26 * this software without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Authors: Gabe Black
41 */
42
43#ifndef __ARCH_ARM_ISA_HH__
44#define __ARCH_ARM_ISA_HH__
45
46#include "arch/arm/registers.hh"
47#include "arch/arm/tlb.hh"
48#include "arch/arm/types.hh"
49#include "debug/Checkpoint.hh"
49
50class ThreadContext;
51class Checkpoint;
52class EventManager;
53
54namespace ArmISA
55{
56 class ISA
57 {
58 protected:
59 MiscReg miscRegs[NumMiscRegs];
60 const IntRegIndex *intRegMap;
61
62 void
63 updateRegMap(CPSR cpsr)
64 {
65 switch (cpsr.mode) {
66 case MODE_USER:
67 case MODE_SYSTEM:
68 intRegMap = IntRegUsrMap;
69 break;
70 case MODE_FIQ:
71 intRegMap = IntRegFiqMap;
72 break;
73 case MODE_IRQ:
74 intRegMap = IntRegIrqMap;
75 break;
76 case MODE_SVC:
77 intRegMap = IntRegSvcMap;
78 break;
79 case MODE_MON:
80 intRegMap = IntRegMonMap;
81 break;
82 case MODE_ABORT:
83 intRegMap = IntRegAbtMap;
84 break;
85 case MODE_UNDEFINED:
86 intRegMap = IntRegUndMap;
87 break;
88 default:
89 panic("Unrecognized mode setting in CPSR.\n");
90 }
91 }
92
93 public:
94 void clear();
95
96 MiscReg readMiscRegNoEffect(int misc_reg);
97 MiscReg readMiscReg(int misc_reg, ThreadContext *tc);
98 void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
99 void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc);
100
101 int
102 flattenIntIndex(int reg)
103 {
104 assert(reg >= 0);
105 if (reg < NUM_ARCH_INTREGS) {
106 return intRegMap[reg];
107 } else if (reg < NUM_INTREGS) {
108 return reg;
109 } else {
110 int mode = reg / intRegsPerMode;
111 reg = reg % intRegsPerMode;
112 switch (mode) {
113 case MODE_USER:
114 case MODE_SYSTEM:
115 return INTREG_USR(reg);
116 case MODE_FIQ:
117 return INTREG_FIQ(reg);
118 case MODE_IRQ:
119 return INTREG_IRQ(reg);
120 case MODE_SVC:
121 return INTREG_SVC(reg);
122 case MODE_MON:
123 return INTREG_MON(reg);
124 case MODE_ABORT:
125 return INTREG_ABT(reg);
126 case MODE_UNDEFINED:
127 return INTREG_UND(reg);
128 default:
129 panic("Flattening into an unknown mode.\n");
130 }
131 }
132 }
133
134 int
135 flattenFloatIndex(int reg)
136 {
137 return reg;
138 }
139
140 int
141 flattenMiscIndex(int reg)
142 {
143 if (reg == MISCREG_SPSR) {
144 int spsr_idx = NUM_MISCREGS;
145 CPSR cpsr = miscRegs[MISCREG_CPSR];
146 switch (cpsr.mode) {
147 case MODE_USER:
148 warn("User mode does not have SPSR\n");
149 spsr_idx = MISCREG_SPSR;
150 break;
151 case MODE_FIQ:
152 spsr_idx = MISCREG_SPSR_FIQ;
153 break;
154 case MODE_IRQ:
155 spsr_idx = MISCREG_SPSR_IRQ;
156 break;
157 case MODE_SVC:
158 spsr_idx = MISCREG_SPSR_SVC;
159 break;
160 case MODE_MON:
161 spsr_idx = MISCREG_SPSR_MON;
162 break;
163 case MODE_ABORT:
164 spsr_idx = MISCREG_SPSR_ABT;
165 break;
166 case MODE_UNDEFINED:
167 spsr_idx = MISCREG_SPSR_UND;
168 break;
169 default:
170 warn("Trying to access SPSR in an invalid mode: %d\n",
171 cpsr.mode);
172 spsr_idx = MISCREG_SPSR;
173 break;
174 }
175 return spsr_idx;
176 }
177 return reg;
178 }
179
180 void serialize(EventManager *em, std::ostream &os)
181 {
182 DPRINTF(Checkpoint, "Serializing Arm Misc Registers\n");
183 SERIALIZE_ARRAY(miscRegs, NumMiscRegs);
184 }
185 void unserialize(EventManager *em, Checkpoint *cp,
186 const std::string &section)
187 {
188 DPRINTF(Checkpoint, "Unserializing Arm Misc Registers\n");
189 UNSERIALIZE_ARRAY(miscRegs, NumMiscRegs);
190 CPSR tmp_cpsr = miscRegs[MISCREG_CPSR];
191 updateRegMap(tmp_cpsr);
192 }
193
194 ISA()
195 {
196 SCTLR sctlr;
197 sctlr = 0;
198 miscRegs[MISCREG_SCTLR_RST] = sctlr;
199
200 clear();
201 }
202 };
203}
204
205#endif
50
51class ThreadContext;
52class Checkpoint;
53class EventManager;
54
55namespace ArmISA
56{
57 class ISA
58 {
59 protected:
60 MiscReg miscRegs[NumMiscRegs];
61 const IntRegIndex *intRegMap;
62
63 void
64 updateRegMap(CPSR cpsr)
65 {
66 switch (cpsr.mode) {
67 case MODE_USER:
68 case MODE_SYSTEM:
69 intRegMap = IntRegUsrMap;
70 break;
71 case MODE_FIQ:
72 intRegMap = IntRegFiqMap;
73 break;
74 case MODE_IRQ:
75 intRegMap = IntRegIrqMap;
76 break;
77 case MODE_SVC:
78 intRegMap = IntRegSvcMap;
79 break;
80 case MODE_MON:
81 intRegMap = IntRegMonMap;
82 break;
83 case MODE_ABORT:
84 intRegMap = IntRegAbtMap;
85 break;
86 case MODE_UNDEFINED:
87 intRegMap = IntRegUndMap;
88 break;
89 default:
90 panic("Unrecognized mode setting in CPSR.\n");
91 }
92 }
93
94 public:
95 void clear();
96
97 MiscReg readMiscRegNoEffect(int misc_reg);
98 MiscReg readMiscReg(int misc_reg, ThreadContext *tc);
99 void setMiscRegNoEffect(int misc_reg, const MiscReg &val);
100 void setMiscReg(int misc_reg, const MiscReg &val, ThreadContext *tc);
101
102 int
103 flattenIntIndex(int reg)
104 {
105 assert(reg >= 0);
106 if (reg < NUM_ARCH_INTREGS) {
107 return intRegMap[reg];
108 } else if (reg < NUM_INTREGS) {
109 return reg;
110 } else {
111 int mode = reg / intRegsPerMode;
112 reg = reg % intRegsPerMode;
113 switch (mode) {
114 case MODE_USER:
115 case MODE_SYSTEM:
116 return INTREG_USR(reg);
117 case MODE_FIQ:
118 return INTREG_FIQ(reg);
119 case MODE_IRQ:
120 return INTREG_IRQ(reg);
121 case MODE_SVC:
122 return INTREG_SVC(reg);
123 case MODE_MON:
124 return INTREG_MON(reg);
125 case MODE_ABORT:
126 return INTREG_ABT(reg);
127 case MODE_UNDEFINED:
128 return INTREG_UND(reg);
129 default:
130 panic("Flattening into an unknown mode.\n");
131 }
132 }
133 }
134
135 int
136 flattenFloatIndex(int reg)
137 {
138 return reg;
139 }
140
141 int
142 flattenMiscIndex(int reg)
143 {
144 if (reg == MISCREG_SPSR) {
145 int spsr_idx = NUM_MISCREGS;
146 CPSR cpsr = miscRegs[MISCREG_CPSR];
147 switch (cpsr.mode) {
148 case MODE_USER:
149 warn("User mode does not have SPSR\n");
150 spsr_idx = MISCREG_SPSR;
151 break;
152 case MODE_FIQ:
153 spsr_idx = MISCREG_SPSR_FIQ;
154 break;
155 case MODE_IRQ:
156 spsr_idx = MISCREG_SPSR_IRQ;
157 break;
158 case MODE_SVC:
159 spsr_idx = MISCREG_SPSR_SVC;
160 break;
161 case MODE_MON:
162 spsr_idx = MISCREG_SPSR_MON;
163 break;
164 case MODE_ABORT:
165 spsr_idx = MISCREG_SPSR_ABT;
166 break;
167 case MODE_UNDEFINED:
168 spsr_idx = MISCREG_SPSR_UND;
169 break;
170 default:
171 warn("Trying to access SPSR in an invalid mode: %d\n",
172 cpsr.mode);
173 spsr_idx = MISCREG_SPSR;
174 break;
175 }
176 return spsr_idx;
177 }
178 return reg;
179 }
180
181 void serialize(EventManager *em, std::ostream &os)
182 {
183 DPRINTF(Checkpoint, "Serializing Arm Misc Registers\n");
184 SERIALIZE_ARRAY(miscRegs, NumMiscRegs);
185 }
186 void unserialize(EventManager *em, Checkpoint *cp,
187 const std::string &section)
188 {
189 DPRINTF(Checkpoint, "Unserializing Arm Misc Registers\n");
190 UNSERIALIZE_ARRAY(miscRegs, NumMiscRegs);
191 CPSR tmp_cpsr = miscRegs[MISCREG_CPSR];
192 updateRegMap(tmp_cpsr);
193 }
194
195 ISA()
196 {
197 SCTLR sctlr;
198 sctlr = 0;
199 miscRegs[MISCREG_SCTLR_RST] = sctlr;
200
201 clear();
202 }
203 };
204}
205
206#endif