gem5  v20.0.0.3
faults.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2003-2005 The Regents of The University of Michigan
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met: redistributions of source code must retain the above copyright
8  * notice, this list of conditions and the following disclaimer;
9  * redistributions in binary form must reproduce the above copyright
10  * notice, this list of conditions and the following disclaimer in the
11  * documentation and/or other materials provided with the distribution;
12  * neither the name of the copyright holders nor the names of its
13  * contributors may be used to endorse or promote products derived from
14  * this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  */
28 
29 #ifndef __FAULTS_HH__
30 #define __FAULTS_HH__
31 
32 #include "base/types.hh"
33 #include "cpu/static_inst.hh"
34 #include "sim/stats.hh"
35 
37 
38 typedef const char * FaultName;
40 
41 class FaultBase
42 {
43  public:
44  virtual FaultName name() const = 0;
45  virtual void invoke(ThreadContext * tc, const StaticInstPtr &inst =
47 
48  virtual ~FaultBase() {};
49 };
50 
51 class UnimpFault : public FaultBase
52 {
53  private:
54  std::string panicStr;
55  public:
56  UnimpFault(std::string _str)
57  : panicStr(_str)
58  { }
59 
60  FaultName name() const { return "Unimplemented simulator feature"; }
61  void invoke(ThreadContext * tc, const StaticInstPtr &inst =
63 };
64 
65 class ReExec : public FaultBase
66 {
67  public:
68  virtual FaultName name() const { return "Re-execution fault"; }
69  ReExec() {}
70  void invoke(ThreadContext *tc, const StaticInstPtr &inst =
72 };
73 
74 /*
75  * This class is needed to allow system call retries to occur for blocking
76  * system calls in SE mode. A retry fault will be generated by the system call
77  * emulation code if blocking conditions arise; the fault is passed up the
78  * function call chain into the CPU model where it is handled by retrying the
79  * syscall instruction on a later tick.
80  */
82 {
83  public:
84  virtual FaultName name() const { return "System call retry fault"; }
86  void invoke(ThreadContext *tc, const StaticInstPtr &inst =
88 };
89 
91 {
92  private:
94  public:
95  FaultName name() const { return "Generic page table fault"; }
96  GenericPageTableFault(Addr va) : vaddr(va) {}
97  void invoke(ThreadContext * tc, const StaticInstPtr &inst =
99  Addr getFaultVAddr() const { return vaddr; }
100 };
101 
103 {
104  private:
106  public:
107  FaultName name() const { return "Generic alignment fault"; }
108  GenericAlignmentFault(Addr va) : vaddr(va) {}
109  void invoke(ThreadContext * tc, const StaticInstPtr &inst =
111  Addr getFaultVAddr() const { return vaddr; }
112 };
113 
114 #endif // __FAULTS_HH__
virtual ~FaultBase()
Definition: faults.hh:48
Stats::Scalar FaultStat
Definition: faults.hh:39
virtual FaultName name() const
Definition: faults.hh:68
FaultName name() const
Definition: faults.hh:107
ThreadContext is the external interface to all thread state for anything outside of the CPU...
virtual FaultName name() const
Definition: faults.hh:84
virtual FaultName name() const =0
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
GenericPageTableFault(Addr va)
Definition: faults.hh:96
Definition: faults.hh:65
GenericAlignmentFault(Addr va)
Definition: faults.hh:108
const char * FaultName
Definition: faults.hh:36
UnimpFault(std::string _str)
Definition: faults.hh:56
Addr getFaultVAddr() const
Definition: faults.hh:111
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Bitfield< 8 > va
FaultName name() const
Definition: faults.hh:95
ReExec()
Definition: faults.hh:69
std::string panicStr
Definition: faults.hh:54
FaultName name() const
Definition: faults.hh:60
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:225
virtual void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr)
Definition: faults.cc:40
Addr getFaultVAddr() const
Definition: faults.hh:99

Generated on Fri Jul 3 2020 15:42:38 for gem5 by doxygen 1.8.13