gem5
v21.0.0.0
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
d
e
f
g
h
i
m
n
o
p
r
s
t
u
v
w
x
Enumerations
a
c
d
e
f
i
l
m
o
p
r
s
t
v
x
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
y
Enumerations
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
Enumerator
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Related Functions
:
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
_
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
v
Enumerator
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
arch
generic
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
28
#ifndef __ARCH_GENERIC_INTERRUPTS_HH__
29
#define __ARCH_GENERIC_INTERRUPTS_HH__
30
31
#include "
base/logging.hh
"
32
#include "params/BaseInterrupts.hh"
33
#include "
sim/sim_object.hh
"
34
35
class
ThreadContext
;
36
class
BaseCPU
;
37
38
class
BaseInterrupts
:
public
SimObject
39
{
40
protected
:
41
ThreadContext
*
tc
=
nullptr
;
42
43
public
:
44
using
Params
= BaseInterruptsParams;
45
46
BaseInterrupts
(
const
Params
&
p
) :
SimObject
(
p
) {}
47
48
virtual
void
setThreadContext
(
ThreadContext
*_tc) {
tc
= _tc; }
49
50
/*
51
* Functions for retrieving interrupts for the CPU to handle.
52
*/
53
54
/*
55
* Return whether there are any interrupts waiting to be recognized.
56
*/
57
virtual
bool
checkInterrupts
()
const
= 0;
58
/*
59
* Return an interrupt to process. This should return an interrupt exactly
60
* when checkInterrupts returns true.
61
*/
62
virtual
Fault
getInterrupt
() = 0;
63
/*
64
* Update interrupt related state after an interrupt has been processed.
65
*/
66
virtual
void
updateIntrInfo
() = 0;
67
68
/*
69
* Old functions needed for compatability but which will be phased out
70
* eventually.
71
*/
72
virtual
void
73
post
(
int
int_num,
int
index
)
74
{
75
panic
(
"Interrupts::post unimplemented!\n"
);
76
}
77
78
virtual
void
79
clear
(
int
int_num,
int
index
)
80
{
81
panic
(
"Interrupts::clear unimplemented!\n"
);
82
}
83
84
virtual
void
85
clearAll
()
86
{
87
panic
(
"Interrupts::clearAll unimplemented!\n"
);
88
}
89
};
90
91
#endif // __ARCH_GENERIC_INTERRUPTS_HH__
MipsISA::index
Bitfield< 30, 0 > index
Definition:
pra_constants.hh:44
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:88
sim_object.hh
Fault
std::shared_ptr< FaultBase > Fault
Definition:
types.hh:246
BaseInterrupts::clearAll
virtual void clearAll()
Definition:
interrupts.hh:85
BaseInterrupts::Params
BaseInterruptsParams Params
Definition:
interrupts.hh:44
BaseInterrupts::BaseInterrupts
BaseInterrupts(const Params &p)
Definition:
interrupts.hh:46
BaseInterrupts::clear
virtual void clear(int int_num, int index)
Definition:
interrupts.hh:79
BaseInterrupts::getInterrupt
virtual Fault getInterrupt()=0
BaseCPU
Definition:
base.hh:104
BaseInterrupts::updateIntrInfo
virtual void updateIntrInfo()=0
BaseInterrupts::post
virtual void post(int int_num, int index)
Definition:
interrupts.hh:73
BaseInterrupts::setThreadContext
virtual void setThreadContext(ThreadContext *_tc)
Definition:
interrupts.hh:48
logging.hh
MipsISA::p
Bitfield< 0 > p
Definition:
pra_constants.hh:323
BaseInterrupts
Definition:
interrupts.hh:38
BaseInterrupts::tc
ThreadContext * tc
Definition:
interrupts.hh:41
BaseInterrupts::checkInterrupts
virtual bool checkInterrupts() const =0
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition:
logging.hh:171
SimObject
Abstract superclass for simulation objects.
Definition:
sim_object.hh:141
Generated on Tue Mar 23 2021 19:41:18 for gem5 by
doxygen
1.8.17