gem5  v20.1.0.0
faults.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2003-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __FAULTS_HH__
42 #define __FAULTS_HH__
43 
44 #include "base/types.hh"
45 #include "cpu/static_inst.hh"
46 #include "mem/htm.hh"
47 #include "sim/stats.hh"
48 
50 
51 typedef const char *FaultName;
53 
54 class FaultBase
55 {
56  public:
57  virtual FaultName name() const = 0;
58  virtual void invoke(ThreadContext * tc, const StaticInstPtr &inst=
60  virtual ~FaultBase() {};
61 };
62 
63 class UnimpFault : public FaultBase
64 {
65  private:
66  std::string panicStr;
67  public:
68  UnimpFault(std::string _str) : panicStr(_str) {}
69 
70  FaultName
71  name() const override
72  {
73  return "Unimplemented simulator feature";
74  }
75  void invoke(ThreadContext *tc, const StaticInstPtr &inst =
77 };
78 
79 // A fault to trigger a system call in SE mode.
80 class SESyscallFault : public FaultBase
81 {
82  const char *name() const override { return "syscall_fault"; }
83 
84  void invoke(ThreadContext *tc, const StaticInstPtr &inst=
86 };
87 
88 class ReExec : public FaultBase
89 {
90  public:
91  virtual FaultName name() const override { return "Re-execution fault"; }
92  void invoke(ThreadContext *tc, const StaticInstPtr &inst=
94 };
95 
96 /*
97  * This class is needed to allow system call retries to occur for blocking
98  * system calls in SE mode. A retry fault will be generated by the system call
99  * emulation code if blocking conditions arise; the fault is passed up the
100  * function call chain into the CPU model where it is handled by retrying the
101  * syscall instruction on a later tick.
102  */
104 {
105  public:
106  FaultName name() const override { return "System call retry fault"; }
108  void invoke(ThreadContext *tc, const StaticInstPtr &inst=
110 };
111 
113 {
114  private:
116  public:
117  FaultName name() const override { return "Generic page table fault"; }
119  void invoke(ThreadContext *tc, const StaticInstPtr &inst=
121  Addr getFaultVAddr() const { return vaddr; }
122 };
123 
125 {
126  private:
128  public:
129  FaultName name() const override { return "Generic alignment fault"; }
131  void invoke(ThreadContext *tc, const StaticInstPtr &inst=
133  Addr getFaultVAddr() const { return vaddr; }
134 };
135 
137 {
138  protected:
139  uint64_t htmUid; // unique identifier used for debugging
141 
142  public:
144  : htmUid(htm_uid), cause(_cause)
145  {}
146 
147  FaultName name() const override { return "Generic HTM failure fault"; }
148 
149  uint64_t getHtmUid() const { return htmUid; }
151  void invoke(ThreadContext *tc, const StaticInstPtr &inst =
153 };
154 
155 #endif // __FAULTS_HH__
GenericHtmFailureFault::cause
HtmFailureFaultCause cause
Definition: faults.hh:140
GenericPageTableFault::name
FaultName name() const override
Definition: faults.hh:117
UnimpFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:62
GenericAlignmentFault::getFaultVAddr
Addr getFaultVAddr() const
Definition: faults.hh:133
FaultStat
Stats::Scalar FaultStat
Definition: faults.hh:52
GenericAlignmentFault::GenericAlignmentFault
GenericAlignmentFault(Addr va)
Definition: faults.hh:130
GenericPageTableFault::getFaultVAddr
Addr getFaultVAddr() const
Definition: faults.hh:121
htm.hh
GenericAlignmentFault
Definition: faults.hh:124
FaultBase::invoke
virtual void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr)
Definition: faults.cc:54
ReExec::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:78
SyscallRetryFault::name
FaultName name() const override
Definition: faults.hh:106
GenericAlignmentFault::vaddr
Addr vaddr
Definition: faults.hh:127
GenericAlignmentFault::name
FaultName name() const override
Definition: faults.hh:129
GenericPageTableFault::vaddr
Addr vaddr
Definition: faults.hh:115
HtmFailureFaultCause
HtmFailureFaultCause
Definition: htm.hh:44
GenericHtmFailureFault
Definition: faults.hh:136
SyscallRetryFault::SyscallRetryFault
SyscallRetryFault()
Definition: faults.hh:107
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2533
stats.hh
SyscallRetryFault
Definition: faults.hh:103
SyscallRetryFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:84
UnimpFault::name
FaultName name() const override
Definition: faults.hh:71
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
GenericHtmFailureFault::getHtmFailureFaultCause
HtmFailureFaultCause getHtmFailureFaultCause() const
Definition: faults.hh:150
UnimpFault::UnimpFault
UnimpFault(std::string _str)
Definition: faults.hh:68
FaultName
const typedef char * FaultName
Definition: faults.hh:49
GenericPageTableFault::GenericPageTableFault
GenericPageTableFault(Addr va)
Definition: faults.hh:118
GenericAlignmentFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:103
UnimpFault::panicStr
std::string panicStr
Definition: faults.hh:66
static_inst.hh
ReExec
Definition: faults.hh:88
UnimpFault
Definition: faults.hh:63
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
GenericHtmFailureFault::name
FaultName name() const override
Definition: faults.hh:147
StaticInst::nullStaticInstPtr
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:237
FaultBase::~FaultBase
virtual ~FaultBase()
Definition: faults.hh:60
ReExec::name
virtual FaultName name() const override
Definition: faults.hh:91
SESyscallFault::name
const char * name() const override
Definition: faults.hh:82
GenericPageTableFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:90
GenericPageTableFault
Definition: faults.hh:112
GenericHtmFailureFault::htmUid
uint64_t htmUid
Definition: faults.hh:139
types.hh
GenericHtmFailureFault::getHtmUid
uint64_t getHtmUid() const
Definition: faults.hh:149
GenericHtmFailureFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:108
SESyscallFault
Definition: faults.hh:80
SESyscallFault::invoke
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: faults.cc:68
RefCountingPtr< StaticInst >
FaultBase::name
virtual FaultName name() const =0
FaultBase
Definition: faults.hh:54
GenericHtmFailureFault::GenericHtmFailureFault
GenericHtmFailureFault(uint64_t htm_uid, HtmFailureFaultCause _cause)
Definition: faults.hh:143
ArmISA::va
Bitfield< 8 > va
Definition: miscregs_types.hh:272

Generated on Wed Sep 30 2020 14:01:59 for gem5 by doxygen 1.8.17