btrace: honour scheduler-locking for all-stop targets
[deliverable/binutils-gdb.git] / sim / arm / arminit.c
CommitLineData
c906108c
SS
1/* arminit.c -- ARMulator initialization: ARM6 Instruction Emulator.
2 Copyright (C) 1994 Advanced RISC Machines Ltd.
454de2ee 3
c906108c
SS
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
3fd725ef 6 the Free Software Foundation; either version 3 of the License, or
c906108c 7 (at your option) any later version.
454de2ee 8
c906108c
SS
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
454de2ee 13
c906108c 14 You should have received a copy of the GNU General Public License
51b318de 15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
c906108c 16
a85c0b49
JS
17#include <string.h>
18
c906108c
SS
19#include "armdefs.h"
20#include "armemu.h"
0f026fd0 21#include "dbg_rdi.h"
c906108c
SS
22
23/***************************************************************************\
24* Definitions for the emulator architecture *
25\***************************************************************************/
26
dfcd3bfb
JM
27void ARMul_EmulateInit (void);
28ARMul_State *ARMul_NewState (void);
29void ARMul_Reset (ARMul_State * state);
30ARMword ARMul_DoCycle (ARMul_State * state);
31unsigned ARMul_DoCoPro (ARMul_State * state);
32ARMword ARMul_DoProg (ARMul_State * state);
33ARMword ARMul_DoInstr (ARMul_State * state);
34void ARMul_Abort (ARMul_State * state, ARMword address);
35
36unsigned ARMul_MultTable[32] =
37 { 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
38 10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 16
39};
40ARMword ARMul_ImmedTable[4096]; /* immediate DP LHS values */
41char ARMul_BitList[256]; /* number of bits in a byte table */
c906108c
SS
42
43/***************************************************************************\
44* Call this routine once to set up the emulator's tables. *
45\***************************************************************************/
46
dfcd3bfb
JM
47void
48ARMul_EmulateInit (void)
49{
50 unsigned long i, j;
c906108c 51
dfcd3bfb
JM
52 for (i = 0; i < 4096; i++)
53 { /* the values of 12 bit dp rhs's */
54 ARMul_ImmedTable[i] = ROTATER (i & 0xffL, (i >> 7L) & 0x1eL);
c906108c
SS
55 }
56
dfcd3bfb
JM
57 for (i = 0; i < 256; ARMul_BitList[i++] = 0); /* how many bits in LSM */
58 for (j = 1; j < 256; j <<= 1)
59 for (i = 0; i < 256; i++)
60 if ((i & j) > 0)
61 ARMul_BitList[i]++;
62
63 for (i = 0; i < 256; i++)
64 ARMul_BitList[i] *= 4; /* you always need 4 times these values */
c906108c 65
c906108c
SS
66}
67
68/***************************************************************************\
69* Returns a new instantiation of the ARMulator's state *
70\***************************************************************************/
71
dfcd3bfb
JM
72ARMul_State *
73ARMul_NewState (void)
74{
75 ARMul_State *state;
76 unsigned i, j;
77
78 state = (ARMul_State *) malloc (sizeof (ARMul_State));
79 memset (state, 0, sizeof (ARMul_State));
80
81 state->Emulate = RUN;
82 for (i = 0; i < 16; i++)
83 {
84 state->Reg[i] = 0;
85 for (j = 0; j < 7; j++)
86 state->RegBank[j][i] = 0;
c906108c 87 }
dfcd3bfb
JM
88 for (i = 0; i < 7; i++)
89 state->Spsr[i] = 0;
3943c96b 90
f1129fb8
NC
91 /* state->Mode = USER26MODE; */
92 state->Mode = USER32MODE;
dfcd3bfb
JM
93
94 state->CallDebug = FALSE;
95 state->Debug = FALSE;
96 state->VectorCatch = 0;
97 state->Aborted = FALSE;
98 state->Reseted = FALSE;
99 state->Inted = 3;
100 state->LastInted = 3;
101
102 state->MemDataPtr = NULL;
103 state->MemInPtr = NULL;
104 state->MemOutPtr = NULL;
105 state->MemSparePtr = NULL;
106 state->MemSize = 0;
107
108 state->OSptr = NULL;
109 state->CommandLine = NULL;
110
c3ae2f98
MG
111 state->CP14R0_CCD = -1;
112 state->LastTime = 0;
113
dfcd3bfb
JM
114 state->EventSet = 0;
115 state->Now = 0;
116 state->EventPtr = (struct EventNode **) malloc ((unsigned) EVENTLISTSIZE *
117 sizeof (struct EventNode
118 *));
119 for (i = 0; i < EVENTLISTSIZE; i++)
120 *(state->EventPtr + i) = NULL;
c906108c 121
dfcd3bfb
JM
122 state->prog32Sig = HIGH;
123 state->data32Sig = HIGH;
c906108c 124
dfcd3bfb
JM
125 state->lateabtSig = LOW;
126 state->bigendSig = LOW;
c906108c 127
3943c96b
NC
128 state->is_v4 = LOW;
129 state->is_v5 = LOW;
f1129fb8
NC
130 state->is_v5e = LOW;
131 state->is_XScale = LOW;
0f026fd0 132 state->is_iWMMXt = LOW;
8207e0f2 133 state->is_v6 = LOW;
1e6b544a 134
dfcd3bfb 135 ARMul_Reset (state);
3943c96b
NC
136
137 return state;
dfcd3bfb 138}
c906108c
SS
139
140/***************************************************************************\
3943c96b 141 Call this routine to set ARMulator to model certain processor properities
c906108c 142\***************************************************************************/
dfcd3bfb
JM
143
144void
3943c96b 145ARMul_SelectProcessor (ARMul_State * state, unsigned properties)
dfcd3bfb 146{
3943c96b 147 if (properties & ARM_Fix26_Prop)
dfcd3bfb
JM
148 {
149 state->prog32Sig = LOW;
150 state->data32Sig = LOW;
151 }
152 else
153 {
154 state->prog32Sig = HIGH;
155 state->data32Sig = HIGH;
156 }
157
c906108c 158 state->lateabtSig = LOW;
1e6b544a 159
3943c96b
NC
160 state->is_v4 = (properties & (ARM_v4_Prop | ARM_v5_Prop)) ? HIGH : LOW;
161 state->is_v5 = (properties & ARM_v5_Prop) ? HIGH : LOW;
f1129fb8
NC
162 state->is_v5e = (properties & ARM_v5e_Prop) ? HIGH : LOW;
163 state->is_XScale = (properties & ARM_XScale_Prop) ? HIGH : LOW;
0f026fd0 164 state->is_iWMMXt = (properties & ARM_iWMMXt_Prop) ? HIGH : LOW;
f603c8fe 165 state->is_ep9312 = (properties & ARM_ep9312_Prop) ? HIGH : LOW;
8207e0f2 166 state->is_v6 = (properties & ARM_v6_Prop) ? HIGH : LOW;
f603c8fe
NC
167
168 /* Only initialse the coprocessor support once we
169 know what kind of chip we are dealing with. */
170 ARMul_CoProInit (state);
c906108c
SS
171}
172
173/***************************************************************************\
174* Call this routine to set up the initial machine state (or perform a RESET *
175\***************************************************************************/
176
dfcd3bfb
JM
177void
178ARMul_Reset (ARMul_State * state)
179{
180 state->NextInstr = 0;
c1a72ffd 181
dfcd3bfb
JM
182 if (state->prog32Sig)
183 {
184 state->Reg[15] = 0;
185 state->Cpsr = INTBITS | SVC32MODE;
c1a72ffd 186 state->Mode = SVC32MODE;
c906108c 187 }
dfcd3bfb
JM
188 else
189 {
190 state->Reg[15] = R15INTBITS | SVC26MODE;
191 state->Cpsr = INTBITS | SVC26MODE;
c1a72ffd 192 state->Mode = SVC26MODE;
c906108c 193 }
c1a72ffd 194
dfcd3bfb
JM
195 ARMul_CPSRAltered (state);
196 state->Bank = SVCBANK;
c1a72ffd 197
dfcd3bfb
JM
198 FLUSHPIPE;
199
200 state->EndCondition = 0;
201 state->ErrorCode = 0;
202
203 state->Exception = FALSE;
204 state->NresetSig = HIGH;
205 state->NfiqSig = HIGH;
206 state->NirqSig = HIGH;
207 state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
208 state->abortSig = LOW;
209 state->AbortAddr = 1;
210
211 state->NumInstrs = 0;
212 state->NumNcycles = 0;
213 state->NumScycles = 0;
214 state->NumIcycles = 0;
215 state->NumCcycles = 0;
216 state->NumFcycles = 0;
217#ifdef ASIM
218 (void) ARMul_MemoryInit ();
219 ARMul_OSInit (state);
220#endif
c906108c
SS
221}
222
223
224/***************************************************************************\
225* Emulate the execution of an entire program. Start the correct emulator *
226* (Emulate26 for a 26 bit ARM and Emulate32 for a 32 bit ARM), return the *
227* address of the last instruction that is executed. *
228\***************************************************************************/
229
dfcd3bfb
JM
230ARMword
231ARMul_DoProg (ARMul_State * state)
232{
233 ARMword pc = 0;
234
235 state->Emulate = RUN;
236 while (state->Emulate != STOP)
237 {
238 state->Emulate = RUN;
239 if (state->prog32Sig && ARMul_MODE32BIT)
240 pc = ARMul_Emulate32 (state);
241 else
242 pc = ARMul_Emulate26 (state);
c906108c 243 }
dfcd3bfb
JM
244 return (pc);
245}
c906108c
SS
246
247/***************************************************************************\
248* Emulate the execution of one instruction. Start the correct emulator *
249* (Emulate26 for a 26 bit ARM and Emulate32 for a 32 bit ARM), return the *
250* address of the instruction that is executed. *
251\***************************************************************************/
252
dfcd3bfb
JM
253ARMword
254ARMul_DoInstr (ARMul_State * state)
255{
256 ARMword pc = 0;
c906108c 257
dfcd3bfb
JM
258 state->Emulate = ONCE;
259 if (state->prog32Sig && ARMul_MODE32BIT)
260 pc = ARMul_Emulate32 (state);
261 else
262 pc = ARMul_Emulate26 (state);
c906108c 263
dfcd3bfb
JM
264 return (pc);
265}
c906108c
SS
266
267/***************************************************************************\
268* This routine causes an Abort to occur, including selecting the correct *
269* mode, register bank, and the saving of registers. Call with the *
270* appropriate vector's memory address (0,4,8 ....) *
271\***************************************************************************/
272
dfcd3bfb
JM
273void
274ARMul_Abort (ARMul_State * state, ARMword vector)
275{
276 ARMword temp;
e063aa3b 277 int isize = INSN_SIZE;
f1129fb8
NC
278 int esize = (TFLAG ? 0 : 4);
279 int e2size = (TFLAG ? -4 : 0);
c906108c 280
dfcd3bfb 281 state->Aborted = FALSE;
c906108c 282
dfcd3bfb
JM
283 if (ARMul_OSException (state, vector, ARMul_GetPC (state)))
284 return;
c906108c 285
dfcd3bfb 286 if (state->prog32Sig)
c906108c 287 if (ARMul_MODE26BIT)
dfcd3bfb 288 temp = R15PC;
c906108c 289 else
dfcd3bfb
JM
290 temp = state->Reg[15];
291 else
292 temp = R15PC | ECC | ER15INT | EMODE;
293
294 switch (vector)
295 {
296 case ARMul_ResetV: /* RESET */
e063aa3b 297 SETABORT (INTBITS, state->prog32Sig ? SVC32MODE : SVC26MODE, 0);
dfcd3bfb
JM
298 break;
299 case ARMul_UndefinedInstrV: /* Undefined Instruction */
e063aa3b 300 SETABORT (IBIT, state->prog32Sig ? UNDEF32MODE : SVC26MODE, isize);
dfcd3bfb
JM
301 break;
302 case ARMul_SWIV: /* Software Interrupt */
e063aa3b 303 SETABORT (IBIT, state->prog32Sig ? SVC32MODE : SVC26MODE, isize);
dfcd3bfb
JM
304 break;
305 case ARMul_PrefetchAbortV: /* Prefetch Abort */
306 state->AbortAddr = 1;
f1129fb8 307 SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, esize);
dfcd3bfb
JM
308 break;
309 case ARMul_DataAbortV: /* Data Abort */
f1129fb8 310 SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, e2size);
dfcd3bfb
JM
311 break;
312 case ARMul_AddrExceptnV: /* Address Exception */
e063aa3b 313 SETABORT (IBIT, SVC26MODE, isize);
dfcd3bfb
JM
314 break;
315 case ARMul_IRQV: /* IRQ */
57165fb4
NC
316 if ( ! state->is_XScale
317 || ! state->CPRead[13] (state, 0, & temp)
318 || (temp & ARMul_CP13_R0_IRQ))
c3ae2f98 319 SETABORT (IBIT, state->prog32Sig ? IRQ32MODE : IRQ26MODE, esize);
dfcd3bfb
JM
320 break;
321 case ARMul_FIQV: /* FIQ */
57165fb4
NC
322 if ( ! state->is_XScale
323 || ! state->CPRead[13] (state, 0, & temp)
324 || (temp & ARMul_CP13_R0_FIQ))
c3ae2f98 325 SETABORT (INTBITS, state->prog32Sig ? FIQ32MODE : FIQ26MODE, esize);
dfcd3bfb 326 break;
c906108c 327 }
dfcd3bfb
JM
328 if (ARMul_MODE32BIT)
329 ARMul_SetR15 (state, vector);
330 else
331 ARMul_SetR15 (state, R15CCINTMODE | vector);
0f026fd0
NC
332
333 if (ARMul_ReadWord (state, ARMul_GetPC (state)) == 0)
334 {
335 /* No vector has been installed. Rather than simulating whatever
336 random bits might happen to be at address 0x20 onwards we elect
337 to stop. */
338 switch (vector)
339 {
340 case ARMul_ResetV: state->EndCondition = RDIError_Reset; break;
341 case ARMul_UndefinedInstrV: state->EndCondition = RDIError_UndefinedInstruction; break;
342 case ARMul_SWIV: state->EndCondition = RDIError_SoftwareInterrupt; break;
343 case ARMul_PrefetchAbortV: state->EndCondition = RDIError_PrefetchAbort; break;
344 case ARMul_DataAbortV: state->EndCondition = RDIError_DataAbort; break;
345 case ARMul_AddrExceptnV: state->EndCondition = RDIError_AddressException; break;
346 case ARMul_IRQV: state->EndCondition = RDIError_IRQ; break;
347 case ARMul_FIQV: state->EndCondition = RDIError_FIQ; break;
348 default: break;
349 }
350 state->Emulate = FALSE;
351 }
c906108c 352}
This page took 0.673976 seconds and 4 git commands to generate.