gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pc_event.hh
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  * Authors: Nathan Binkert
29  * Steve Reinhardt
30  */
31 
32 #ifndef __PC_EVENT_HH__
33 #define __PC_EVENT_HH__
34 
35 #include <vector>
36 
37 #include "base/misc.hh"
38 #include "base/types.hh"
39 
40 class ThreadContext;
41 class PCEventQueue;
42 class System;
43 
44 class PCEvent
45 {
46  protected:
47  std::string description;
50 
51  public:
52  PCEvent(PCEventQueue *q, const std::string &desc, Addr pc);
53 
54  virtual ~PCEvent() { if (queue) remove(); }
55 
56  // for DPRINTF
57  virtual const std::string name() const { return description; }
58 
59  std::string descr() const { return description; }
60  Addr pc() const { return evpc; }
61 
62  bool remove();
63  virtual void process(ThreadContext *tc) = 0;
64 };
65 
67 {
68  protected:
69  typedef PCEvent * record_t;
70  class MapCompare {
71  public:
72  bool operator()(const record_t &l, const record_t &r) const {
73  return l->pc() < r->pc();
74  }
75  bool operator()(const record_t &l, Addr pc) const {
76  return l->pc() < pc;
77  }
78  bool operator()(Addr pc, const record_t &r) const {
79  return pc < r->pc();
80  }
81  };
83 
84  public:
85  typedef map_t::iterator iterator;
86  typedef map_t::const_iterator const_iterator;
87 
88  protected:
91 
92  protected:
94 
95  bool doService(ThreadContext *tc);
96 
97  public:
98  PCEventQueue();
99  ~PCEventQueue();
100 
101  bool remove(PCEvent *event);
102  bool schedule(PCEvent *event);
104  {
105  if (pc_map.empty())
106  return false;
107 
108  return doService(tc);
109  }
110 
112  range_t equal_range(PCEvent *event) { return equal_range(event->pc()); }
113 
114  void dump() const;
115 };
116 
117 
118 inline
119 PCEvent::PCEvent(PCEventQueue *q, const std::string &desc, Addr pc)
120  : description(desc), queue(q), evpc(pc)
121 {
122  queue->schedule(this);
123 }
124 
125 inline bool
127 {
128  if (!queue)
129  panic("cannot remove an uninitialized event;");
130 
131  return queue->remove(this);
132 }
133 
134 class BreakPCEvent : public PCEvent
135 {
136  protected:
137  bool remove;
138 
139  public:
140  BreakPCEvent(PCEventQueue *q, const std::string &desc, Addr addr,
141  bool del = false);
142  virtual void process(ThreadContext *tc);
143 };
144 
145 void sched_break_pc_sys(System *sys, Addr addr);
146 
147 void sched_break_pc(Addr addr);
148 
149 class PanicPCEvent : public PCEvent
150 {
151  public:
152  PanicPCEvent(PCEventQueue *q, const std::string &desc, Addr pc);
153  virtual void process(ThreadContext *tc);
154 };
155 
156 #endif // __PC_EVENT_HH__
bool operator()(const record_t &l, const record_t &r) const
Definition: pc_event.hh:72
bool doService(ThreadContext *tc)
Definition: pc_event.cc:89
map_t::const_iterator const_iterator
Definition: pc_event.hh:86
bool operator()(const record_t &l, Addr pc) const
Definition: pc_event.hh:75
void sched_break_pc(Addr addr)
Definition: pc_event.cc:154
bool remove()
Definition: pc_event.hh:126
STL pair class.
Definition: stl.hh:61
Addr pc() const
Definition: pc_event.hh:60
#define panic(...)
Definition: misc.hh:153
ip6_addr_t addr
Definition: inet.hh:335
virtual ~PCEvent()
Definition: pc_event.hh:54
void sched_break_pc_sys(System *sys, Addr addr)
Definition: pc_event.cc:148
virtual void process(ThreadContext *tc)
Definition: pc_event.cc:169
Definition: system.hh:83
Addr evpc
Definition: pc_event.hh:49
ThreadContext is the external interface to all thread state for anything outside of the CPU...
std::vector< record_t > map_t
Definition: pc_event.hh:82
PCEventQueue * queue
Definition: pc_event.hh:48
bool service(ThreadContext *tc)
Definition: pc_event.hh:103
std::pair< iterator, iterator > range_t
Definition: pc_event.hh:89
std::string description
Definition: pc_event.hh:47
std::string descr() const
Definition: pc_event.hh:59
Bitfield< 27 > q
Definition: miscregs.hh:1367
virtual const std::string name() const
Definition: pc_event.hh:57
range_t equal_range(PCEvent *event)
Definition: pc_event.hh:112
range_t equal_range(Addr pc)
Definition: pc_event.cc:126
PanicPCEvent(PCEventQueue *q, const std::string &desc, Addr pc)
Definition: pc_event.cc:163
bool schedule(PCEvent *event)
Definition: pc_event.cc:77
BreakPCEvent(PCEventQueue *q, const std::string &desc, Addr addr, bool del=false)
Definition: pc_event.cc:131
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
Bitfield< 10, 5 > event
bool operator()(Addr pc, const record_t &r) const
Definition: pc_event.hh:78
std::pair< const_iterator, const_iterator > const_range_t
Definition: pc_event.hh:90
map_t pc_map
Definition: pc_event.hh:93
virtual void process(ThreadContext *tc)=0
void dump() const
Definition: pc_event.cc:115
PCEvent(PCEventQueue *q, const std::string &desc, Addr pc)
Definition: pc_event.hh:119
virtual void process(ThreadContext *tc)
Definition: pc_event.cc:138
bool remove(PCEvent *event)
Definition: pc_event.cc:55
IntReg pc
Definition: remote_gdb.hh:91
map_t::iterator iterator
Definition: pc_event.hh:85
PCEvent * record_t
Definition: pc_event.hh:69
Bitfield< 5 > l

Generated on Fri Jun 9 2017 13:03:44 for gem5 by doxygen 1.8.6