gem5 v24.0.0.0
Loading...
Searching...
No Matches
faults.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2003-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30#include "arch/mips/faults.hh"
31
33#include "base/trace.hh"
34#include "cpu/base.hh"
35#include "cpu/thread_context.hh"
36#include "debug/MipsPRA.hh"
37#include "mem/page_table.hh"
38#include "sim/process.hh"
39
40namespace gem5
41{
42
43namespace MipsISA
44{
45
47
49 { "Syscall", 0x180, ExcCodeSys };
50
52 { "Reserved Instruction Fault", 0x180, ExcCodeRI };
53
55 { "Thread Fault", 0x180, ExcCodeDummy };
56
58 { "Integer Overflow Exception", 0x180, ExcCodeOv };
59
61 { "Trap", 0x180, ExcCodeTr };
62
64 { "Breakpoint", 0x180, ExcCodeBp };
65
67 { "DSP Disabled Fault", 0x180, ExcCodeDummy };
68
70 { "Machine Check", 0x180, ExcCodeMCheck };
71
73 { "Reset Fault", 0x000, ExcCodeDummy };
74
76 { "Soft Reset Fault", 0x000, ExcCodeDummy };
77
79 { "Non Maskable Interrupt", 0x000, ExcCodeDummy };
80
82 { "Coprocessor Unusable Fault", 0x180, ExcCodeCpU };
83
85 { "Interrupt", 0x000, ExcCodeInt };
86
88 { "Address Error", 0x180, ExcCodeDummy };
89
91 { "Invalid TLB Entry Exception", 0x180, ExcCodeDummy };
92
94 { "TLB Refill Exception", 0x180, ExcCodeDummy };
95
97 { "TLB Modified Exception", 0x180, ExcCodeMod };
98
99void
101{
102 // modify SRS Ctl - Save CSS, put ESS into CSS
103 StatusReg status = tc->readMiscReg(misc_reg::Status);
104 if (status.exl != 1 && status.bev != 1) {
105 // SRS Ctl is modified only if Status_EXL and Status_BEV are not set
106 SRSCtlReg srsCtl = tc->readMiscReg(misc_reg::Srsctl);
107 srsCtl.pss = srsCtl.css;
108 srsCtl.css = srsCtl.ess;
110 }
111
112 // set EXL bit (don't care if it is already set!)
113 status.exl = 1;
115
116 // write EPC
117 auto pc = tc->pcState().as<PCState>();
118 DPRINTF(MipsPRA, "PC: %s\n", pc);
119 bool delay_slot = pc.pc() + sizeof(MachInst) != pc.npc();
121 pc.pc() - (delay_slot ? sizeof(MachInst) : 0));
122
123 // Set Cause_EXCCODE field
124 CauseReg cause = tc->readMiscReg(misc_reg::Cause);
125 cause.excCode = excCode;
126 cause.bd = delay_slot ? 1 : 0;
127 cause.ce = 0;
129}
130
131void
133{
134 if (FullSystem) {
135 DPRINTF(MipsPRA, "Fault %s encountered.\n", name());
136 setExceptionState(tc, code());
137 tc->pcState(vect(tc));
138 } else {
139 panic("Fault %s encountered.\n", name());
140 }
141}
142
143void
145{
146 if (FullSystem) {
147 DPRINTF(MipsPRA, "%s encountered.\n", name());
148 /* All reset activity must be invoked from here */
149 Addr handler = vect(tc);
150 tc->pcState(handler);
151 DPRINTF(MipsPRA, "ResetFault::invoke : PC set to %x", handler);
152 }
153
154 // Set Coprocessor 1 (Floating Point) To Usable
156 status.cu.cu1 = 1;
158}
159
160void
162{
163 panic("Soft reset not implemented.\n");
164}
165
166void
168{
169 panic("Non maskable interrupt not implemented.\n");
170}
171
172} // namespace MipsISA
173} // namespace gem5
#define DPRINTF(x,...)
Definition trace.hh:210
virtual FaultName name() const =0
void setExceptionState(ThreadContext *, uint8_t)
Definition faults.cc:100
virtual ExcCode code() const =0
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
Definition faults.cc:132
FaultVect vect(ThreadContext *tc) const
Definition faults.hh:100
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
Definition faults.cc:167
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
Definition faults.cc:144
void invoke(ThreadContext *tc, const StaticInstPtr &inst=nullStaticInstPtr)
Definition faults.cc:161
Target & as()
Definition pcstate.hh:73
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual RegVal readMiscReg(RegIndex misc_reg)=0
virtual void setMiscReg(RegIndex misc_reg, RegVal val)=0
virtual void setMiscRegNoEffect(RegIndex misc_reg, RegVal val)=0
virtual const PCStateBase & pcState() const =0
virtual RegVal readMiscRegNoEffect(RegIndex misc_reg) const =0
#define panic(...)
This implements a cprintf based panic() function.
Definition logging.hh:188
Bitfield< 5, 0 > status
Bitfield< 4 > pc
Bitfield< 6, 2 > excCode
MipsFaultBase::FaultVals FaultVals
Definition faults.cc:46
uint32_t MachInst
Definition types.hh:42
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition root.cc:220
Declarations of a non-full system Page Table.

Generated on Tue Jun 18 2024 16:23:57 for gem5 by doxygen 1.11.0