diff options
author | Ali Saidi <saidi@eecs.umich.edu> | 2004-01-12 19:59:02 -0500 |
---|---|---|
committer | Ali Saidi <saidi@eecs.umich.edu> | 2004-01-12 19:59:02 -0500 |
commit | a44248aab04a3b48864308a478ad676def175158 (patch) | |
tree | cfb15bdf2876bb4d0bef32c129b757c46fc1018a /kern/linux | |
parent | 60a1b35e4db6dc7ebf189a6aca4549d85480d5ce (diff) | |
download | gem5-a44248aab04a3b48864308a478ad676def175158.tar.xz |
Added code to print out the symbol if one exists for an address
cpu/exetrace.cc:
added code to print out symbol if one is found for address
kern/linux/linux_system.cc:
added code to set the debugSymbolTable to the kernel symbol table
--HG--
extra : convert_revision : 191d7608d04fa42baef5e618c0bbbf5ad4001031
Diffstat (limited to 'kern/linux')
-rw-r--r-- | kern/linux/linux_system.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/kern/linux/linux_system.cc b/kern/linux/linux_system.cc index bdaebbe70..fe655ad74 100644 --- a/kern/linux/linux_system.cc +++ b/kern/linux/linux_system.cc @@ -41,6 +41,8 @@ #include "targetarch/isa_traits.hh" #include "targetarch/vtophys.hh" +extern SymbolTable *debugSymbolTable; + //un-comment this to see the state of call stack when it changes. //#define SW_DEBUG @@ -71,6 +73,7 @@ LinuxSystem::LinuxSystem(const string _name, const uint64_t _init_param, if (!kernel->loadGlobalSymbols(kernelSymtab)) panic("could not load kernel symbols\n"); + debugSymbolTable = kernelSymtab; if (!console->loadGlobalSymbols(consoleSymtab)) panic("could not load console symbols\n"); |