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

Subversion Repositories or1k

[/] [or1k/] [tags/] [nog_patch_47/] [or1ksim/] [cpu/] [or1k/] [except.c] - Blame information for rev 479

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 33 lampret
/* except.c -- Simulation of OR1K exceptions
2
   Copyright (C) 1999 Damjan Lampret, lampret@opencores.org
3
 
4
This file is part of OpenRISC 1000 Architectural Simulator.
5
 
6
This program is free software; you can redistribute it and/or modify
7
it under the terms of the GNU General Public License as published by
8
the Free Software Foundation; either version 2 of the License, or
9
(at your option) any later version.
10
 
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
GNU General Public License for more details.
15
 
16
You should have received a copy of the GNU General Public License
17
along with this program; if not, write to the Free Software
18
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
 
20
#include <stdlib.h>
21
#include <stdio.h>
22
#include <string.h>
23
 
24
#include "abstract.h"
25
#include "except.h"
26
#include "sprs.h"
27 344 markom
#include "sim-config.h"
28 33 lampret
 
29
extern int cont_run;
30
extern struct iqueue_entry iqueue[20];
31
extern unsigned long pc;
32 82 lampret
extern unsigned long pcnext;
33 123 markom
extern unsigned long pc_phy;
34 51 lampret
extern struct iqueue_entry iqueue[];
35 33 lampret
 
36 82 lampret
extern int delay_insn;
37 123 markom
int cycle_delay = 0;  /* Added by CZ 27/05/01 */
38 82 lampret
 
39 437 simons
struct _pending pending;
40 139 chris
 
41 479 markom
/* Discards all pending exceptions */
42
void clear_pending_exception()
43 139 chris
{
44 479 markom
  pending.valid = 0;
45
  pending.type = 0;
46
  pending.address = 0;
47
  pending.saved = 0;
48 139 chris
}
49
 
50 479 markom
/* Asserts OR1K exception. */
51 33 lampret
void except_handle(int except, unsigned long ea)
52
{
53 479 markom
  if(debug_ignore_exception (except)) {
54
    clear_pending_exception ();
55
  } else {
56
    pending.valid = 1;
57
    pending.type = except;
58
    pending.address = ea;
59
    if (delay_insn)
60
      pending.saved = pc - 4;
61
    else
62
      pending.saved = pc;
63
    printf("Exception 0x%x (%s): insn_addr 0x%x, EA 0x%x, pc: 0x%x, pcnext: 0x%x\n",
64
      except, EXCEPT_NAME(except), iqueue[0].insn_addr, ea, pc, pcnext);
65
  }
66 139 chris
 
67
  cycle_delay = 0;  /* An exception stalls the CPU 0 clock cycles */
68
}
69
 
70 479 markom
/* Actually handles exception */
71
void except_handle_backend (int except, unsigned long ea, unsigned long pc_saved)
72 139 chris
{
73 344 markom
  /* Ignore masked exceptions */
74
  if (! IS_NME(except) && (!(mfspr(SPR_SR) & SPR_SR_EXR))) {
75
    if (config.sim.verbose)
76 479 markom
      printf("INFO: Exception occured while exception detection was disabled.\n");
77
    return;
78
  }
79 139 chris
 
80 33 lampret
#if ONLY_VIRTUAL_MACHINE
81 479 markom
  fprintf(stderr, "WARNING: No exception processing while ONLY_VIRTUAL_MACHINE is defined.\n");
82
  cont_run = 0;
83 33 lampret
#else
84 51 lampret
 
85 479 markom
  if (delay_insn) {
86
    printf("INFO: Exception during execution of delay slot insn.\n");
87
    pc -= 4;
88
  }
89 82 lampret
#if 0
90 479 markom
  if ((pcnext != (pc + 4)) && (except != EXCEPT_ITLBMISS)) {  /* Always execute delay slot insn */
91
    printf("XXXXXXXXXXXXXX\n");
92
    fetch();            /* before starting with exception */
93
    decode(&iqueue[0]);         /* (itlbmiss is special case) */
94
    execute();
95
  }
96 82 lampret
#endif
97 123 markom
 
98 64 lampret
        pc_saved = pc & ~0x3;
99 458 simons
  if (except == EXCEPT_ILLEGAL)
100
        mtspr(SPR_EPCR_BASE, pending.saved);
101
  else if (except == EXCEPT_ALIGN)
102
    mtspr(SPR_EPCR_BASE, pending.saved);
103
  else if (except == EXCEPT_DTLBMISS)
104
    mtspr(SPR_EPCR_BASE, pending.saved);
105
  else if (except == EXCEPT_DPF)
106
    mtspr(SPR_EPCR_BASE, pending.saved);
107
  else if (except == EXCEPT_BUSERR)
108
    mtspr(SPR_EPCR_BASE, pending.saved);
109
  else if (except == EXCEPT_TRAP)
110
    mtspr(SPR_EPCR_BASE, pending.saved);
111
  else if (except == EXCEPT_RANGE)
112
    mtspr(SPR_EPCR_BASE, pending.saved);
113
  else
114 479 markom
    mtspr(SPR_EPCR_BASE, pc_saved);
115 458 simons
 
116 479 markom
  mtspr(SPR_EEAR_BASE, ea);
117
  mtspr(SPR_ESR_BASE, mfspr(SPR_SR));
118 64 lampret
 
119 479 markom
  /* Address translation is always disabled when starting exception. */
120
  mtspr(SPR_SR, mfspr(SPR_SR) & ~(SPR_SR_DME));
121
  mtspr(SPR_SR, mfspr(SPR_SR) & ~(SPR_SR_IME));
122 64 lampret
 
123 479 markom
  mtspr(SPR_SR, mfspr(SPR_SR) & ~SPR_SR_OVE);   /* Disable overflow flag exception. */
124 458 simons
 
125 479 markom
  mtspr(SPR_SR, mfspr(SPR_SR) | SPR_SR_SUPV);   /* SUPV mode */
126
  mtspr(SPR_SR, mfspr(SPR_SR) & ~SPR_SR_EIR);   /* Disable interrupts. */
127 167 markom
 
128 479 markom
  clear_pending_exception ();
129
 
130
  pc = (unsigned long)except;
131 458 simons
 
132 479 markom
  /* This has been removed. All exceptions (not just SYSCALL) suffer
133
     from the same problem. The solution is to continue just like
134
     the pipeline would, and issue the exception on the next
135
     clock cycle. We assume now that this function is being called
136
     ->BEFORE<- the instruction fetch and after the previous update
137
     which always yields the correct behavior. This has the added
138
     advantage that a debugger can prevent an exception from
139
     taking place by resetting the pc. */
140 139 chris
#if 0
141 479 markom
  /* MM: We do pc update after the execute (in the simulator), so we
142
     decrease it by 4 so that next instruction points to first exception
143
     instruction.  Do NOT comment this out. */
144
  if (except == EXCEPT_SYSCALL)
145
    pc -= 4;
146 139 chris
#endif
147 479 markom
  pcnext = pc + 4;
148 123 markom
 
149 479 markom
  /* Added by CZ 27/05/01 */
150
  pc_phy = pc;      /* An exception always turns off the MMU, so
151
           pc is always pc_phy */
152 139 chris
 
153 33 lampret
#endif
154
}

powered by: WebSVN 2.1.0

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