stacktrace.hh revision 2239
11196Shsul@eecs.umich.edu/* 21196Shsul@eecs.umich.edu * Copyright (c) 2005 The Regents of The University of Michigan 31196Shsul@eecs.umich.edu * All rights reserved. 41196Shsul@eecs.umich.edu * 51196Shsul@eecs.umich.edu * Redistribution and use in source and binary forms, with or without 61196Shsul@eecs.umich.edu * modification, are permitted provided that the following conditions are 71196Shsul@eecs.umich.edu * met: redistributions of source code must retain the above copyright 81196Shsul@eecs.umich.edu * notice, this list of conditions and the following disclaimer; 91242Ssaidi@eecs.umich.edu * redistributions in binary form must reproduce the above copyright 101196Shsul@eecs.umich.edu * notice, this list of conditions and the following disclaimer in the 111196Shsul@eecs.umich.edu * documentation and/or other materials provided with the distribution; 121196Shsul@eecs.umich.edu * neither the name of the copyright holders nor the names of its 131196Shsul@eecs.umich.edu * contributors may be used to endorse or promote products derived from 141196Shsul@eecs.umich.edu * this software without specific prior written permission. 151196Shsul@eecs.umich.edu * 161196Shsul@eecs.umich.edu * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 171196Shsul@eecs.umich.edu * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 181196Shsul@eecs.umich.edu * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 191196Shsul@eecs.umich.edu * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 201196Shsul@eecs.umich.edu * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 211196Shsul@eecs.umich.edu * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 221196Shsul@eecs.umich.edu * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 231196Shsul@eecs.umich.edu * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 241196Shsul@eecs.umich.edu * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 251196Shsul@eecs.umich.edu * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 261196Shsul@eecs.umich.edu * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 271196Shsul@eecs.umich.edu */ 281196Shsul@eecs.umich.edu 291196Shsul@eecs.umich.edu#ifndef __ARCH_ALPHA_STACKTRACE_HH__ 301196Shsul@eecs.umich.edu#define __ARCH_ALPHA_STACKTRACE_HH__ 311196Shsul@eecs.umich.edu 321196Shsul@eecs.umich.edu#include "base/trace.hh" 331196Shsul@eecs.umich.edu#include "cpu/static_inst.hh" 341196Shsul@eecs.umich.edu 351196Shsul@eecs.umich.educlass ExecContext; 361196Shsul@eecs.umich.educlass StackTrace; 371196Shsul@eecs.umich.edu 381196Shsul@eecs.umich.educlass ProcessInfo 391196Shsul@eecs.umich.edu{ 401196Shsul@eecs.umich.edu private: 411196Shsul@eecs.umich.edu ExecContext *xc; 421196Shsul@eecs.umich.edu 431196Shsul@eecs.umich.edu int thread_info_size; 441196Shsul@eecs.umich.edu int task_struct_size; 451196Shsul@eecs.umich.edu int task_off; 461196Shsul@eecs.umich.edu int pid_off; 471196Shsul@eecs.umich.edu int name_off; 481196Shsul@eecs.umich.edu 491196Shsul@eecs.umich.edu public: 501196Shsul@eecs.umich.edu ProcessInfo(ExecContext *_xc); 511196Shsul@eecs.umich.edu 52 Addr task(Addr ksp) const; 53 int pid(Addr ksp) const; 54 std::string name(Addr ksp) const; 55}; 56 57class StackTrace 58{ 59 protected: 60 typedef TheISA::MachInst MachInst; 61 private: 62 ExecContext *xc; 63 std::vector<Addr> stack; 64 65 private: 66 bool isEntry(Addr addr); 67 bool decodePrologue(Addr sp, Addr callpc, Addr func, int &size, Addr &ra); 68 bool decodeSave(MachInst inst, int ®, int &disp); 69 bool decodeStack(MachInst inst, int &disp); 70 71 void trace(ExecContext *xc, bool is_call); 72 73 public: 74 StackTrace(); 75 StackTrace(ExecContext *xc, StaticInstPtr inst); 76 ~StackTrace(); 77 78 void clear() 79 { 80 xc = 0; 81 stack.clear(); 82 } 83 84 bool valid() const { return xc != NULL; } 85 bool trace(ExecContext *xc, StaticInstPtr inst); 86 87 public: 88 const std::vector<Addr> &getstack() const { return stack; } 89 90 static const int user = 1; 91 static const int console = 2; 92 static const int unknown = 3; 93 94#if TRACING_ON 95 private: 96 void dump(); 97 98 public: 99 void dprintf() { if (DTRACE(Stack)) dump(); } 100#else 101 public: 102 void dprintf() {} 103#endif 104}; 105 106inline bool 107StackTrace::trace(ExecContext *xc, StaticInstPtr inst) 108{ 109 if (!inst->isCall() && !inst->isReturn()) 110 return false; 111 112 if (valid()) 113 clear(); 114 115 trace(xc, !inst->isReturn()); 116 return true; 117} 118 119#endif // __ARCH_ALPHA_STACKTRACE_HH__ 120