/**************************************************************************** ** TAU Portable Profiling Package ** ** http://www.acl.lanl.gov/tau ** ***************************************************************************** ** Copyright 1997 ** ** Department of Computer and Information Science, University of Oregon ** ** Advanced Computing Laboratory, Los Alamos National Laboratory ** ****************************************************************************/ /*************************************************************************** ** File : KtauSymbols.h ** ** Description : TAU Kernel Profiling Interface ** ** Author : Aroon Nataraj ** ** : Suravee Suthikulpanit ** ** Contact : {suravee,anataraj}@cs.uoregon.edu ** ** Flags : Compile with ** ** -DTAU_KTAU to enable KTAU ** ** Documentation : ** ***************************************************************************/ #ifndef _KTAUSYMBOLS_H_ #define _KTAUSYMBOLS_H_ //-------------------------------------------------------- #include #include using namespace std; class KtauSymbols { public: //cons / dest KtauSymbols(const string& path); ~KtauSymbols(); string& MapSym(unsigned int); unsigned long MapRevSym(string); int ReadKallsyms(); private: //stl map to hold the addr-to-name lookup data typedef map KERN_SYMTAB; KERN_SYMTAB table; typedef map KERN_REV_SYMTAB; KERN_REV_SYMTAB rev_table; //file-path to the kernel-symbol info const string filepath; }; #endif /* _KTAUSYMBOLS_H_ */ /*************************************************************************** * $RCSfile: KtauSymbols.h,v $ $Author: anataraj $ * $Revision: 1.2 $ $Date: 2007/04/19 03:21:44 $ * POOMA_VERSION_ID: $Id: KtauSymbols.h,v 1.2 2007/04/19 03:21:44 anataraj Exp $ ***************************************************************************/