gem5
v21.0.1.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
cpu
pc_event.cc
Go to the documentation of this file.
1
/*
2
* Copyright (c) 2002-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
#include "
cpu/pc_event.hh
"
30
31
#include <algorithm>
32
#include <string>
33
#include <utility>
34
35
#include "
base/debug.hh
"
36
#include "
base/trace.hh
"
37
#include "debug/PCEvent.hh"
38
#include "
sim/core.hh
"
39
#include "
sim/system.hh
"
40
41
PCEventQueue::PCEventQueue
()
42
{}
43
44
PCEventQueue::~PCEventQueue
()
45
{}
46
47
bool
48
PCEventQueue::remove
(
PCEvent
*
event
)
49
{
50
int
removed = 0;
51
range_t
range =
equal_range
(
event
);
52
iterator
i
= range.first;
53
while
(
i
!= range.second &&
i
!=
pcMap
.end()) {
54
if
(*
i
==
event
) {
55
DPRINTF
(
PCEvent
,
"PC based event removed at %#x: %s\n"
,
56
event
->pc(),
event
->descr());
57
i
=
pcMap
.erase(
i
);
58
++removed;
59
}
else
{
60
i
++;
61
}
62
}
63
64
return
removed > 0;
65
}
66
67
bool
68
PCEventQueue::schedule
(
PCEvent
*
event
)
69
{
70
pcMap
.push_back(
event
);
71
std::sort(
pcMap
.begin(),
pcMap
.end(),
MapCompare
());
72
73
DPRINTF
(
PCEvent
,
"PC based event scheduled for %#x: %s\n"
,
74
event
->pc(),
event
->descr());
75
76
return
true
;
77
}
78
79
bool
80
PCEventQueue::doService
(
Addr
pc
,
ThreadContext
*tc)
81
{
82
// Using the raw PC address will fail to break on Alpha PALcode addresses,
83
// but that is a rare use case.
84
int
serviced = 0;
85
range_t
range =
equal_range
(
pc
);
86
for
(
iterator
i
= range.first;
i
!= range.second; ++
i
) {
87
DPRINTF
(
PCEvent
,
"PC based event serviced at %#x: %s\n"
,
88
(*i)->
pc
(), (*i)->descr());
89
90
(*i)->process(tc);
91
++serviced;
92
}
93
94
return
serviced > 0;
95
}
96
97
void
98
PCEventQueue::dump
()
const
99
{
100
const_iterator
i
=
pcMap
.begin();
101
const_iterator
e
=
pcMap
.end();
102
103
for
(;
i
!=
e
; ++
i
)
104
cprintf
(
"%d: event at %#x: %s\n"
,
curTick
(), (*i)->pc(),
105
(*i)->descr());
106
}
107
108
PCEventQueue::range_t
109
PCEventQueue::equal_range
(
Addr
pc
)
110
{
111
return
std::equal_range(
pcMap
.begin(),
pcMap
.end(),
pc
,
MapCompare
());
112
}
113
114
BreakPCEvent::BreakPCEvent
(
PCEventScope
*
s
,
const
std::string &desc,
Addr
addr
,
115
bool
del)
116
:
PCEvent
(
s
, desc,
addr
), remove(del)
117
{
118
}
119
120
void
121
BreakPCEvent::process
(
ThreadContext
*tc)
122
{
123
StringWrap
name
(
"break_event"
);
124
DPRINTFN
(
"break event %s triggered\n"
,
descr
());
125
Debug::breakpoint
();
126
if
(
remove
)
127
delete
this
;
128
}
129
130
PanicPCEvent::PanicPCEvent
(
PCEventScope
*
s
,
const
std::string &desc,
Addr
pc
)
131
:
PCEvent
(
s
, desc,
pc
)
132
{
133
}
134
135
void
136
PanicPCEvent::process
(
ThreadContext
*tc)
137
{
138
StringWrap
name
(
"panic_event"
);
139
panic
(
descr
());
140
}
PanicPCEvent::process
virtual void process(ThreadContext *tc)
Definition:
pc_event.cc:136
system.hh
PCEventQueue::pcMap
Map pcMap
Definition:
pc_event.hh:103
PCEventQueue::equal_range
range_t equal_range(Addr pc)
Definition:
pc_event.cc:109
Debug::breakpoint
void breakpoint()
Definition:
debug.cc:60
ArmISA::i
Bitfield< 7 > i
Definition:
miscregs_types.hh:63
PCEventQueue::iterator
Map::iterator iterator
Definition:
pc_event.hh:95
PCEvent::name
virtual const std::string name() const
Definition:
pc_event.hh:55
PCEvent::pc
Addr pc() const
Definition:
pc_event.hh:58
BreakPCEvent::BreakPCEvent
BreakPCEvent(PCEventScope *s, const std::string &desc, Addr addr, bool del=false)
Definition:
pc_event.cc:114
PanicPCEvent::PanicPCEvent
PanicPCEvent(PCEventScope *s, const std::string &desc, Addr pc)
Definition:
pc_event.cc:130
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition:
thread_context.hh:88
PCEventQueue::doService
bool doService(Addr pc, ThreadContext *tc)
Definition:
pc_event.cc:80
cprintf
void cprintf(const char *format, const Args &...args)
Definition:
cprintf.hh:152
DPRINTF
#define DPRINTF(x,...)
Definition:
trace.hh:237
MipsISA::pc
Bitfield< 4 > pc
Definition:
pra_constants.hh:240
MipsISA::event
Bitfield< 10, 5 > event
Definition:
pra_constants.hh:297
debug.hh
PCEventQueue::schedule
bool schedule(PCEvent *event) override
Definition:
pc_event.cc:68
PCEventScope
Definition:
pc_event.hh:64
std::pair
STL pair class.
Definition:
stl.hh:58
core.hh
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition:
types.hh:148
PCEventQueue::MapCompare
Definition:
pc_event.hh:74
PCEventQueue::PCEventQueue
PCEventQueue()
Definition:
pc_event.cc:41
ArmISA::e
Bitfield< 9 > e
Definition:
miscregs_types.hh:61
X86ISA::addr
Bitfield< 3 > addr
Definition:
types.hh:80
BreakPCEvent::remove
bool remove
Definition:
pc_event.hh:147
PCEventQueue::const_iterator
Map::const_iterator const_iterator
Definition:
pc_event.hh:96
pc_event.hh
PCEventQueue::remove
bool remove(PCEvent *event) override
Definition:
pc_event.cc:48
PCEventQueue::~PCEventQueue
~PCEventQueue()
Definition:
pc_event.cc:44
StringWrap
Definition:
trace.hh:137
PCEvent
Definition:
pc_event.hh:42
curTick
Tick curTick()
The universal simulation clock.
Definition:
cur_tick.hh:43
trace.hh
DPRINTFN
#define DPRINTFN(...)
Definition:
trace.hh:241
PCEvent::descr
std::string descr() const
Definition:
pc_event.hh:57
PCEventQueue::dump
void dump() const
Definition:
pc_event.cc:98
ArmISA::s
Bitfield< 4 > s
Definition:
miscregs_types.hh:556
BreakPCEvent::process
virtual void process(ThreadContext *tc)
Definition:
pc_event.cc:121
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition:
logging.hh:171
Generated on Tue Jun 22 2021 15:28:26 for gem5 by
doxygen
1.8.17