gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
debugfaults.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010 Advanced Micro Devices, Inc.
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  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * Authors: Gabe Black
38  */
39 
40 #ifndef __ARCH_GENERIC_DEBUGFAULTS_HH__
41 #define __ARCH_GENERIC_DEBUGFAULTS_HH__
42 
43 #include <string>
44 
45 #include "base/logging.hh"
46 #include "sim/faults.hh"
47 
48 namespace GenericISA
49 {
50 
51 class M5DebugFault : public FaultBase
52 {
53  protected:
54  std::string _message;
55  virtual void debugFunc() = 0;
56  void
58  {
59  if (inst) {
60  auto pc = tc->pcState();
61  inst->advancePC(pc);
62  tc->pcState(pc);
63  }
64  }
65 
66  public:
67  M5DebugFault(std::string _m) : _message(_m) {}
68 
69  template <class ...Args>
70  M5DebugFault(const std::string &format, const Args &...args) :
71  _message(csprintf(format, args...))
72  {}
73 
74  std::string message() { return _message; }
75 
76  void
77  invoke(ThreadContext *tc, const StaticInstPtr &inst =
79  {
80  debugFunc();
81  advancePC(tc, inst);
82  }
83 };
84 
85 // The "Flavor" template parameter is to keep warn, hack or inform messages
86 // with the same token from blocking each other.
87 template <class Flavor>
89 {
90  protected:
91  bool &once;
92 
93  template <class F, class OnceToken>
94  static bool &
95  lookUpToken(const OnceToken &token)
96  {
97  static std::map<OnceToken, bool> tokenMap;
98  return tokenMap[token];
99  }
100 
101  public:
102  template <class OnceToken, class ...Args>
103  M5DebugOnceFault(const OnceToken &token, const std::string &format,
104  const Args &...args) :
105  M5DebugFault(format, args...), once(lookUpToken<Flavor>(token))
106  {}
107 
108  void
109  invoke(ThreadContext *tc, const StaticInstPtr &inst =
111  {
112  if (!once) {
113  once = true;
114  debugFunc();
115  }
116  advancePC(tc, inst);
117  }
118 };
119 
121 {
122  public:
124  void debugFunc() override { panic(message()); }
125  FaultName name() const override { return "panic fault"; }
126 };
127 
129 {
130  public:
132  void debugFunc() override { fatal(message()); }
133  FaultName name() const override { return "fatal fault"; }
134 };
135 
136 template <class Base>
137 class M5WarnFaultBase : public Base
138 {
139  public:
140  using Base::Base;
141  void debugFunc() override { warn(this->message()); }
142  FaultName name() const override { return "warn fault"; }
143 };
144 
147 
148 template <class Base>
149 class M5HackFaultBase : public Base
150 {
151  public:
152  using Base::Base;
153  void debugFunc() override { hack(this->message()); }
154  FaultName name() const override { return "hack fault"; }
155 };
156 
159 
160 template <class Base>
161 class M5InformFaultBase : public Base
162 {
163  public:
164  using Base::Base;
165  void debugFunc() override { inform(this->message()); }
166  FaultName name() const override { return "inform fault"; }
167 };
168 
170 using M5InformOnceFault =
172 
173 } // namespace GenericISA
174 
175 #endif // __ARCH_GENERIC_DEBUGFAULTS_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: debugfaults.hh:109
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:175
virtual TheISA::PCState pcState() const =0
static bool & lookUpToken(const OnceToken &token)
Definition: debugfaults.hh:95
void invoke(ThreadContext *tc, const StaticInstPtr &inst=StaticInst::nullStaticInstPtr) override
Definition: debugfaults.hh:77
virtual void debugFunc()=0
FaultName name() const override
Definition: debugfaults.hh:133
FaultName name() const override
Definition: debugfaults.hh:125
M5DebugFault(const std::string &format, const Args &...args)
Definition: debugfaults.hh:70
FaultName name() const override
Definition: debugfaults.hh:142
ThreadContext is the external interface to all thread state for anything outside of the CPU...
#define inform(...)
Definition: logging.hh:213
#define hack(...)
Definition: logging.hh:214
Bitfield< 4 > pc
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:162
const char * FaultName
Definition: faults.hh:39
void advancePC(ThreadContext *tc, const StaticInstPtr &inst)
Definition: debugfaults.hh:57
Bitfield< 31, 29 > format
virtual void advancePC(TheISA::PCState &pcState) const =0
void debugFunc() override
Definition: debugfaults.hh:124
#define warn(...)
Definition: logging.hh:212
static StaticInstPtr nullStaticInstPtr
Pointer to a statically allocated "null" instruction object.
Definition: static_inst.hh:223
FaultName name() const override
Definition: debugfaults.hh:154
FaultName name() const override
Definition: debugfaults.hh:166
void debugFunc() override
Definition: debugfaults.hh:132
M5DebugFault(std::string _m)
Definition: debugfaults.hh:67
M5DebugOnceFault(const OnceToken &token, const std::string &format, const Args &...args)
Definition: debugfaults.hh:103

Generated on Fri Feb 28 2020 16:26:57 for gem5 by doxygen 1.8.13