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 599

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
 
38 437 simons
struct _pending pending;
39 139 chris
 
40 479 markom
/* Discards all pending exceptions */
41
void clear_pending_exception()
42 139 chris
{
43 479 markom
  pending.valid = 0;
44
  pending.type = 0;
45
  pending.address = 0;
46
  pending.saved = 0;
47 139 chris
}
48
 
49 479 markom
/* Asserts OR1K exception. */
50 33 lampret
void except_handle(int except, unsigned long ea)
51
{
52 479 markom
  if(debug_ignore_exception (except)) {
53
    clear_pending_exception ();
54
  } else {
55
    pending.valid = 1;
56
    pending.type = except;
57
    pending.address = ea;
58
    if (delay_insn)
59
      pending.saved = pc - 4;
60
    else
61
      pending.saved = pc;
62
    printf("Exception 0x%x (%s): insn_addr 0x%x, EA 0x%x, pc: 0x%x, pcnext: 0x%x\n",
63
      except, EXCEPT_NAME(except), iqueue[0].insn_addr, ea, pc, pcnext);
64
  }
65 139 chris
}
66
 
67 479 markom
/* Actually handles exception */
68
void except_handle_backend (int except, unsigned long ea, unsigned long pc_saved)
69 139 chris
{
70 33 lampret
#if ONLY_VIRTUAL_MACHINE
71 479 markom
  fprintf(stderr, "WARNING: No exception processing while ONLY_VIRTUAL_MACHINE is defined.\n");
72
  cont_run = 0;
73 33 lampret
#else
74 51 lampret
 
75 479 markom
  if (delay_insn) {
76
    printf("INFO: Exception during execution of delay slot insn.\n");
77
    pc -= 4;
78
  }
79 82 lampret
#if 0
80 479 markom
  if ((pcnext != (pc + 4)) && (except != EXCEPT_ITLBMISS)) {  /* Always execute delay slot insn */
81
    printf("XXXXXXXXXXXXXX\n");
82
    fetch();            /* before starting with exception */
83
    decode(&iqueue[0]);         /* (itlbmiss is special case) */
84
    execute();
85
  }
86 82 lampret
#endif
87 123 markom
 
88 556 markom
  pc_saved = pc & ~0x3;
89 458 simons
  if (except == EXCEPT_ILLEGAL)
90 556 markom
    mtspr(SPR_EPCR_BASE, pending.saved);
91 458 simons
  else if (except == EXCEPT_ALIGN)
92
    mtspr(SPR_EPCR_BASE, pending.saved);
93
  else if (except == EXCEPT_DTLBMISS)
94
    mtspr(SPR_EPCR_BASE, pending.saved);
95
  else if (except == EXCEPT_DPF)
96
    mtspr(SPR_EPCR_BASE, pending.saved);
97
  else if (except == EXCEPT_BUSERR)
98
    mtspr(SPR_EPCR_BASE, pending.saved);
99
  else if (except == EXCEPT_TRAP)
100
    mtspr(SPR_EPCR_BASE, pending.saved);
101
  else if (except == EXCEPT_RANGE)
102
    mtspr(SPR_EPCR_BASE, pending.saved);
103 572 simons
  else if (except == EXCEPT_ITLBMISS)
104
    mtspr(SPR_EPCR_BASE, pending.saved);
105
  else if (except == EXCEPT_IPF)
106
    mtspr(SPR_EPCR_BASE, pending.saved);
107 458 simons
  else
108 479 markom
    mtspr(SPR_EPCR_BASE, pc_saved);
109 458 simons
 
110 479 markom
  mtspr(SPR_EEAR_BASE, ea);
111
  mtspr(SPR_ESR_BASE, mfspr(SPR_SR));
112 64 lampret
 
113 479 markom
  /* Address translation is always disabled when starting exception. */
114
  mtspr(SPR_SR, mfspr(SPR_SR) & ~(SPR_SR_DME));
115
  mtspr(SPR_SR, mfspr(SPR_SR) & ~(SPR_SR_IME));
116 64 lampret
 
117 479 markom
  mtspr(SPR_SR, mfspr(SPR_SR) & ~SPR_SR_OVE);   /* Disable overflow flag exception. */
118 458 simons
 
119 599 simons
  mtspr(SPR_SR, mfspr(SPR_SR) | SPR_SR_SM);     /* SUPV mode */
120
  mtspr(SPR_SR, mfspr(SPR_SR) & ~(SPR_SR_IEE | SPR_SR_TEE));    /* Disable interrupts. */
121 167 markom
 
122 479 markom
  clear_pending_exception ();
123 458 simons
 
124 599 simons
  pc = (unsigned long)except + (testsprbits (SPR_SR, SPR_SR_EPH) ? 0xf0000000 : 0x00000000);
125 556 markom
 
126 479 markom
  /* This has been removed. All exceptions (not just SYSCALL) suffer
127
     from the same problem. The solution is to continue just like
128
     the pipeline would, and issue the exception on the next
129
     clock cycle. We assume now that this function is being called
130
     ->BEFORE<- the instruction fetch and after the previous update
131
     which always yields the correct behavior. This has the added
132
     advantage that a debugger can prevent an exception from
133
     taking place by resetting the pc. */
134 139 chris
#if 0
135 479 markom
  /* MM: We do pc update after the execute (in the simulator), so we
136
     decrease it by 4 so that next instruction points to first exception
137
     instruction.  Do NOT comment this out. */
138
  if (except == EXCEPT_SYSCALL)
139
    pc -= 4;
140 139 chris
#endif
141 479 markom
  pcnext = pc + 4;
142 123 markom
 
143 479 markom
  /* Added by CZ 27/05/01 */
144
  pc_phy = pc;      /* An exception always turns off the MMU, so
145
           pc is always pc_phy */
146 139 chris
 
147 556 markom
#endif /* !ONLY_VIRUAL_MACHINE */
148 33 lampret
}

powered by: WebSVN 2.1.0

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