gem5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
stacktrace.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2006 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  */
30 
31 #ifndef __ARCH_X86_STACKTRACE_HH__
32 #define __ARCH_X86_STACKTRACE_HH__
33 
34 #include "base/trace.hh"
35 #include "cpu/static_inst.hh"
36 #include "debug/Stack.hh"
37 
38 class ThreadContext;
39 namespace X86ISA
40 {
41  class StackTrace;
42 
44  {
45  private:
47 
50  int task_off;
51  int pid_off;
52  int name_off;
53 
54  public:
56 
57  Addr task(Addr ksp) const;
58  int pid(Addr ksp) const;
59  std::string name(Addr ksp) const;
60  };
61 
62  class StackTrace
63  {
64  private:
67 
68  private:
69  bool isEntry(Addr addr);
70  bool decodePrologue(Addr sp, Addr callpc, Addr func, int &size, Addr &ra);
71  bool decodeSave(MachInst inst, int &reg, int &disp);
72  bool decodeStack(MachInst inst, int &disp);
73 
74  void trace(ThreadContext *tc, bool is_call);
75 
76  public:
77  StackTrace();
79  ~StackTrace();
80 
81  void clear()
82  {
83  tc = 0;
84  stack.clear();
85  }
86 
87  bool valid() const { return tc != NULL; }
88  bool trace(ThreadContext *tc, const StaticInstPtr &inst);
89 
90  public:
91  const std::vector<Addr> &getstack() const { return stack; }
92 
93  static const int user = 1;
94  static const int console = 2;
95  static const int unknown = 3;
96 
97 #if TRACING_ON
98  private:
99  void dump();
100 
101  public:
102  void dprintf() { if (DTRACE(Stack)) dump(); }
103 #else
104  public:
105  void dprintf() {}
106 #endif
107  };
108 
109  inline bool
111  {
112  if (!inst->isCall() && !inst->isReturn())
113  return false;
114 
115  if (valid())
116  clear();
117 
118  trace(tc, !inst->isReturn());
119  return true;
120  }
121 }
122 
123 #endif // __ARCH_X86_STACKTRACE_HH__
Bitfield< 5, 3 > reg
Definition: types.hh:89
ThreadContext * tc
Definition: stacktrace.hh:65
ThreadContext * tc
Definition: stacktrace.hh:46
ProcessInfo(ThreadContext *_tc)
Definition: stacktrace.cc:47
bool isCall() const
Definition: static_inst.hh:146
Bitfield< 0 > sp
Definition: miscregs.hh:1386
std::string name(Addr ksp) const
Definition: stacktrace.cc:106
bool isEntry(Addr addr)
Definition: stacktrace.cc:141
const std::vector< Addr > & getstack() const
Definition: stacktrace.hh:91
Addr task(Addr ksp) const
Definition: stacktrace.cc:76
ThreadContext is the external interface to all thread state for anything outside of the CPU...
bool decodePrologue(Addr sp, Addr callpc, Addr func, int &size, Addr &ra)
Definition: stacktrace.cc:166
bool decodeStack(MachInst inst, int &disp)
Definition: stacktrace.cc:147
int pid(Addr ksp) const
Definition: stacktrace.cc:91
#define DTRACE(x)
Definition: trace.hh:210
static const int unknown
Definition: stacktrace.hh:95
uint64_t MachInst
Definition: types.hh:54
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
bool decodeSave(MachInst inst, int &reg, int &disp)
Definition: stacktrace.cc:154
Bitfield< 20, 16 > ra
Definition: types.hh:47
void trace(ThreadContext *tc, bool is_call)
Definition: stacktrace.cc:136
int size()
Definition: pagetable.hh:146
static const int console
Definition: stacktrace.hh:94
static const int user
Definition: stacktrace.hh:93
void dump()
Dump all statistics data to the registered outputs.
Definition: statistics.cc:517
bool isReturn() const
Definition: static_inst.hh:147
bool valid() const
Definition: stacktrace.hh:87
Bitfield< 3 > addr
Definition: types.hh:81
std::vector< Addr > stack
Definition: stacktrace.hh:66

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