base: Fix broken IPython argument handling
[gem5.git] / src / cpu / profile.hh
index 7f96252417bac6a92d106a801096c8fd0a132d15..8fb0e3a8e3308714ea4a11ea4c4d0b3baf372f0d 100644 (file)
 
 #include <map>
 
-#include "cpu/static_inst.hh"
-#include "sim/host.hh"
 #include "arch/stacktrace.hh"
+#include "base/types.hh"
+#include "config/the_isa.hh"
+#include "cpu/static_inst.hh"
 
 class ThreadContext;
 
@@ -66,7 +67,7 @@ class FunctionProfile
     const SymbolTable *symtab;
     ProfileNode top;
     std::map<Addr, Counter> pc_count;
-    StackTrace trace;
+    TheISA::StackTrace trace;
 
   public:
     FunctionProfile(const SymbolTable *symtab);