OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [VER_5_3/] [gdb-5.3/] [sim/] [arm/] [arminit.c] - Blame information for rev 1765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1181 sfurman
/*  arminit.c -- ARMulator initialization:  ARM6 Instruction Emulator.
2
    Copyright (C) 1994 Advanced RISC Machines Ltd.
3
 
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
6
    the Free Software Foundation; either version 2 of the License, or
7
    (at your option) any later version.
8
 
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.
13
 
14
    You should have received a copy of the GNU General Public License
15
    along with this program; if not, write to the Free Software
16
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
17
 
18
#include "armdefs.h"
19
#include "armemu.h"
20
 
21
/***************************************************************************\
22
*                 Definitions for the emulator architecture                 *
23
\***************************************************************************/
24
 
25
void ARMul_EmulateInit (void);
26
ARMul_State *ARMul_NewState (void);
27
void ARMul_Reset (ARMul_State * state);
28
ARMword ARMul_DoCycle (ARMul_State * state);
29
unsigned ARMul_DoCoPro (ARMul_State * state);
30
ARMword ARMul_DoProg (ARMul_State * state);
31
ARMword ARMul_DoInstr (ARMul_State * state);
32
void ARMul_Abort (ARMul_State * state, ARMword address);
33
 
34
unsigned ARMul_MultTable[32] =
35
  { 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9,
36
  10, 10, 11, 11, 12, 12, 13, 13, 14, 14, 15, 15, 16, 16, 16
37
};
38
ARMword ARMul_ImmedTable[4096]; /* immediate DP LHS values */
39
char ARMul_BitList[256];        /* number of bits in a byte table */
40
 
41
/***************************************************************************\
42
*         Call this routine once to set up the emulator's tables.           *
43
\***************************************************************************/
44
 
45
void
46
ARMul_EmulateInit (void)
47
{
48
  unsigned long i, j;
49
 
50
  for (i = 0; i < 4096; i++)
51
    {                           /* the values of 12 bit dp rhs's */
52
      ARMul_ImmedTable[i] = ROTATER (i & 0xffL, (i >> 7L) & 0x1eL);
53
    }
54
 
55
  for (i = 0; i < 256; ARMul_BitList[i++] = 0);   /* how many bits in LSM */
56
  for (j = 1; j < 256; j <<= 1)
57
    for (i = 0; i < 256; i++)
58
      if ((i & j) > 0)
59
        ARMul_BitList[i]++;
60
 
61
  for (i = 0; i < 256; i++)
62
    ARMul_BitList[i] *= 4;      /* you always need 4 times these values */
63
 
64
}
65
 
66
/***************************************************************************\
67
*            Returns a new instantiation of the ARMulator's state           *
68
\***************************************************************************/
69
 
70
ARMul_State *
71
ARMul_NewState (void)
72
{
73
  ARMul_State *state;
74
  unsigned i, j;
75
 
76
  state = (ARMul_State *) malloc (sizeof (ARMul_State));
77
  memset (state, 0, sizeof (ARMul_State));
78
 
79
  state->Emulate = RUN;
80
  for (i = 0; i < 16; i++)
81
    {
82
      state->Reg[i] = 0;
83
      for (j = 0; j < 7; j++)
84
        state->RegBank[j][i] = 0;
85
    }
86
  for (i = 0; i < 7; i++)
87
    state->Spsr[i] = 0;
88
 
89
  /* state->Mode = USER26MODE;  */
90
  state->Mode = USER32MODE;
91
 
92
  state->CallDebug = FALSE;
93
  state->Debug = FALSE;
94
  state->VectorCatch = 0;
95
  state->Aborted = FALSE;
96
  state->Reseted = FALSE;
97
  state->Inted = 3;
98
  state->LastInted = 3;
99
 
100
  state->MemDataPtr = NULL;
101
  state->MemInPtr = NULL;
102
  state->MemOutPtr = NULL;
103
  state->MemSparePtr = NULL;
104
  state->MemSize = 0;
105
 
106
  state->OSptr = NULL;
107
  state->CommandLine = NULL;
108
 
109
  state->CP14R0_CCD = -1;
110
  state->LastTime = 0;
111
 
112
  state->EventSet = 0;
113
  state->Now = 0;
114
  state->EventPtr = (struct EventNode **) malloc ((unsigned) EVENTLISTSIZE *
115
                                                  sizeof (struct EventNode
116
                                                          *));
117
  for (i = 0; i < EVENTLISTSIZE; i++)
118
    *(state->EventPtr + i) = NULL;
119
 
120
  state->prog32Sig = HIGH;
121
  state->data32Sig = HIGH;
122
 
123
  state->lateabtSig = LOW;
124
  state->bigendSig = LOW;
125
 
126
  state->is_v4 = LOW;
127
  state->is_v5 = LOW;
128
  state->is_v5e = LOW;
129
  state->is_XScale = LOW;
130
 
131
  ARMul_Reset (state);
132
 
133
  return state;
134
}
135
 
136
/***************************************************************************\
137
  Call this routine to set ARMulator to model certain processor properities
138
\***************************************************************************/
139
 
140
void
141
ARMul_SelectProcessor (ARMul_State * state, unsigned properties)
142
{
143
  if (properties & ARM_Fix26_Prop)
144
    {
145
      state->prog32Sig = LOW;
146
      state->data32Sig = LOW;
147
    }
148
  else
149
    {
150
      state->prog32Sig = HIGH;
151
      state->data32Sig = HIGH;
152
    }
153
 
154
  state->lateabtSig = LOW;
155
 
156
  state->is_v4 = (properties & (ARM_v4_Prop | ARM_v5_Prop)) ? HIGH : LOW;
157
  state->is_v5 = (properties & ARM_v5_Prop) ? HIGH : LOW;
158
  state->is_v5e = (properties & ARM_v5e_Prop) ? HIGH : LOW;
159
  state->is_XScale = (properties & ARM_XScale_Prop) ? HIGH : LOW;
160
}
161
 
162
/***************************************************************************\
163
* Call this routine to set up the initial machine state (or perform a RESET *
164
\***************************************************************************/
165
 
166
void
167
ARMul_Reset (ARMul_State * state)
168
{
169
  state->NextInstr = 0;
170
 
171
  if (state->prog32Sig)
172
    {
173
      state->Reg[15] = 0;
174
      state->Cpsr = INTBITS | SVC32MODE;
175
      state->Mode = SVC32MODE;
176
    }
177
  else
178
    {
179
      state->Reg[15] = R15INTBITS | SVC26MODE;
180
      state->Cpsr = INTBITS | SVC26MODE;
181
      state->Mode = SVC26MODE;
182
    }
183
 
184
  ARMul_CPSRAltered (state);
185
  state->Bank = SVCBANK;
186
 
187
  FLUSHPIPE;
188
 
189
  state->EndCondition = 0;
190
  state->ErrorCode = 0;
191
 
192
  state->Exception = FALSE;
193
  state->NresetSig = HIGH;
194
  state->NfiqSig = HIGH;
195
  state->NirqSig = HIGH;
196
  state->NtransSig = (state->Mode & 3) ? HIGH : LOW;
197
  state->abortSig = LOW;
198
  state->AbortAddr = 1;
199
 
200
  state->NumInstrs = 0;
201
  state->NumNcycles = 0;
202
  state->NumScycles = 0;
203
  state->NumIcycles = 0;
204
  state->NumCcycles = 0;
205
  state->NumFcycles = 0;
206
#ifdef ASIM
207
  (void) ARMul_MemoryInit ();
208
  ARMul_OSInit (state);
209
#endif
210
}
211
 
212
 
213
/***************************************************************************\
214
* Emulate the execution of an entire program.  Start the correct emulator   *
215
* (Emulate26 for a 26 bit ARM and Emulate32 for a 32 bit ARM), return the   *
216
* address of the last instruction that is executed.                         *
217
\***************************************************************************/
218
 
219
ARMword
220
ARMul_DoProg (ARMul_State * state)
221
{
222
  ARMword pc = 0;
223
 
224
  state->Emulate = RUN;
225
  while (state->Emulate != STOP)
226
    {
227
      state->Emulate = RUN;
228
      if (state->prog32Sig && ARMul_MODE32BIT)
229
        pc = ARMul_Emulate32 (state);
230
      else
231
        pc = ARMul_Emulate26 (state);
232
    }
233
  return (pc);
234
}
235
 
236
/***************************************************************************\
237
* Emulate the execution of one instruction.  Start the correct emulator     *
238
* (Emulate26 for a 26 bit ARM and Emulate32 for a 32 bit ARM), return the   *
239
* address of the instruction that is executed.                              *
240
\***************************************************************************/
241
 
242
ARMword
243
ARMul_DoInstr (ARMul_State * state)
244
{
245
  ARMword pc = 0;
246
 
247
  state->Emulate = ONCE;
248
  if (state->prog32Sig && ARMul_MODE32BIT)
249
    pc = ARMul_Emulate32 (state);
250
  else
251
    pc = ARMul_Emulate26 (state);
252
 
253
  return (pc);
254
}
255
 
256
/***************************************************************************\
257
* This routine causes an Abort to occur, including selecting the correct    *
258
* mode, register bank, and the saving of registers.  Call with the          *
259
* appropriate vector's memory address (0,4,8 ....)                          *
260
\***************************************************************************/
261
 
262
void
263
ARMul_Abort (ARMul_State * state, ARMword vector)
264
{
265
  ARMword temp;
266
  int isize = INSN_SIZE;
267
  int esize = (TFLAG ? 0 : 4);
268
  int e2size = (TFLAG ? -4 : 0);
269
 
270
  state->Aborted = FALSE;
271
 
272
  if (ARMul_OSException (state, vector, ARMul_GetPC (state)))
273
    return;
274
 
275
  if (state->prog32Sig)
276
    if (ARMul_MODE26BIT)
277
      temp = R15PC;
278
    else
279
      temp = state->Reg[15];
280
  else
281
    temp = R15PC | ECC | ER15INT | EMODE;
282
 
283
  switch (vector)
284
    {
285
    case ARMul_ResetV:          /* RESET */
286
      SETABORT (INTBITS, state->prog32Sig ? SVC32MODE : SVC26MODE, 0);
287
      break;
288
    case ARMul_UndefinedInstrV: /* Undefined Instruction */
289
      SETABORT (IBIT, state->prog32Sig ? UNDEF32MODE : SVC26MODE, isize);
290
      break;
291
    case ARMul_SWIV:            /* Software Interrupt */
292
      SETABORT (IBIT, state->prog32Sig ? SVC32MODE : SVC26MODE, isize);
293
      break;
294
    case ARMul_PrefetchAbortV:  /* Prefetch Abort */
295
      state->AbortAddr = 1;
296
      SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, esize);
297
      break;
298
    case ARMul_DataAbortV:      /* Data Abort */
299
      SETABORT (IBIT, state->prog32Sig ? ABORT32MODE : SVC26MODE, e2size);
300
      break;
301
    case ARMul_AddrExceptnV:    /* Address Exception */
302
      SETABORT (IBIT, SVC26MODE, isize);
303
      break;
304
    case ARMul_IRQV:            /* IRQ */
305
      if (   ! state->is_XScale
306
          || ! state->CPRead[13] (state, 0, & temp)
307
          || (temp & ARMul_CP13_R0_IRQ))
308
        SETABORT (IBIT, state->prog32Sig ? IRQ32MODE : IRQ26MODE, esize);
309
      break;
310
    case ARMul_FIQV:            /* FIQ */
311
      if (   ! state->is_XScale
312
          || ! state->CPRead[13] (state, 0, & temp)
313
          || (temp & ARMul_CP13_R0_FIQ))
314
        SETABORT (INTBITS, state->prog32Sig ? FIQ32MODE : FIQ26MODE, esize);
315
      break;
316
    }
317
  if (ARMul_MODE32BIT)
318
    ARMul_SetR15 (state, vector);
319
  else
320
    ARMul_SetR15 (state, R15CCINTMODE | vector);
321
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.