gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
interrupts.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  *
27  * Authors: Gabe Black
28  */
29 
30 #ifndef __ARCH_GENERIC_INTERRUPTS_HH__
31 #define __ARCH_GENERIC_INTERRUPTS_HH__
32 
33 #include "params/BaseInterrupts.hh"
34 #include "sim/sim_object.hh"
35 
36 class ThreadContext;
37 class BaseCPU;
38 
39 class BaseInterrupts : public SimObject
40 {
41  protected:
43 
44  public:
45  typedef BaseInterruptsParams Params;
46 
47  BaseInterrupts(Params *p) : SimObject(p) {}
48 
49  virtual void setCPU(BaseCPU * newCPU) = 0;
50 
51  const Params *
52  params() const
53  {
54  return dynamic_cast<const Params *>(_params);
55  }
56 
57  /*
58  * Functions for retrieving interrupts for the CPU to handle.
59  */
60 
61  /*
62  * Return whether there are any interrupts waiting to be recognized.
63  */
64  virtual bool checkInterrupts(ThreadContext *tc) const = 0;
65  /*
66  * Return an interrupt to process. This should return an interrupt exactly
67  * when checkInterrupts returns true.
68  */
69  virtual Fault getInterrupt(ThreadContext *tc) = 0;
70  /*
71  * Update interrupt related state after an interrupt has been processed.
72  */
73  virtual void updateIntrInfo(ThreadContext *tc) = 0;
74 
75  /*
76  * Old functions needed for compatability but which will be phased out
77  * eventually.
78  */
79  virtual void
80  post(int int_num, int index)
81  {
82  panic("Interrupts::post unimplemented!\n");
83  }
84 
85  virtual void
86  clear(int int_num, int index)
87  {
88  panic("Interrupts::clear unimplemented!\n");
89  }
90 
91  virtual void
93  {
94  panic("Interrupts::clearAll unimplemented!\n");
95  }
96 };
97 
98 #endif // __ARCH_GENERIC_INTERRUPTS_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:167
Bitfield< 30, 0 > index
virtual void clearAll()
Definition: interrupts.hh:92
ThreadContext is the external interface to all thread state for anything outside of the CPU...
virtual Fault getInterrupt(ThreadContext *tc)=0
virtual void setCPU(BaseCPU *newCPU)=0
virtual void clear(int int_num, int index)
Definition: interrupts.hh:86
virtual void updateIntrInfo(ThreadContext *tc)=0
const Params * params() const
Definition: interrupts.hh:52
virtual bool checkInterrupts(ThreadContext *tc) const =0
BaseInterrupts(Params *p)
Definition: interrupts.hh:47
BaseInterruptsParams Params
Definition: interrupts.hh:45
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
Bitfield< 0 > p
std::shared_ptr< FaultBase > Fault
Definition: types.hh:240
Abstract superclass for simulation objects.
Definition: sim_object.hh:96
virtual void post(int int_num, int index)
Definition: interrupts.hh:80
BaseCPU * cpu
Definition: interrupts.hh:42

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