cpu: Slightly modernize and simplify code in cpu/profile.(hh|cc).
authorGabe Black <gabeblack@google.com>
Sat, 4 Jul 2020 22:28:02 +0000 (15:28 -0700)
committerGabe Black <gabeblack@google.com>
Sat, 11 Jul 2020 00:24:13 +0000 (00:24 +0000)
Change-Id: Ideb104d20b333305ead2356cbfff2aac2e0173b5
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/30960
Maintainer: Gabe Black <gabeblack@google.com>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
src/cpu/o3/thread_state.hh
src/cpu/profile.cc
src/cpu/profile.hh
src/cpu/simple_thread.cc

index 76e201184cc5705fd1e17fd17d668fea69086f9a..833b2b809c2405e3166b716b9dc2f5d56e37ca5d 100644 (file)
@@ -154,7 +154,7 @@ struct O3ThreadState : public ThreadState {
     {
         OutputStream *os(
             simout.create(csprintf("profile.%s.dat", cpu->name())));
-        profile->dump(tc, *os->stream());
+        profile->dump(*os->stream());
         simout.close(os);
     }
 };
index d1826e439623e1abcc6634b08f0e2c57a8a5845f..972346e183ce520cc5178a653fb186f223f2170b 100644 (file)
 
 #include <string>
 
-#include "base/bitfield.hh"
 #include "base/callback.hh"
 #include "base/loader/symtab.hh"
 #include "base/statistics.hh"
 #include "base/trace.hh"
-#include "cpu/base.hh"
 #include "cpu/thread_context.hh"
 
-using namespace std;
-
-ProfileNode::ProfileNode()
-    : count(0)
-{ }
-
 void
-ProfileNode::dump(const string &symbol, uint64_t id,
-                  const Loader::SymbolTable &symtab, ostream &os) const
+ProfileNode::dump(const std::string &symbol, uint64_t id,
+                  const Loader::SymbolTable &symtab, std::ostream &os) const
 {
     ccprintf(os, "%#x %s %d ", id, symbol, count);
-    ChildList::const_iterator i, end = children.end();
-    for (i = children.begin(); i != end; ++i) {
-        const ProfileNode *node = i->second;
-        ccprintf(os, "%#x ", (intptr_t)node);
-    }
+    for (const auto &p: children)
+        ccprintf(os, "%#x ", (intptr_t)(p.second));
 
     ccprintf(os, "\n");
 
-    Loader::SymbolTable::const_iterator it;
-    for (i = children.begin(); i != end; ++i) {
-        Addr addr = i->first;
-        string symbol;
-        if (addr == 1)
+    for (const auto &p: children) {
+        Addr addr = p.first;
+        std::string symbol;
+        if (addr == 1) {
             symbol = "user";
-        else if (addr == 2)
+        } else if (addr == 2) {
             symbol = "console";
-        else if (addr == 3)
+        } else if (addr == 3) {
             symbol = "unknown";
-        else if ((it = symtab.find(addr)) != symtab.end())
+        } else {
+            const auto it = symtab.find(addr);
+            panic_if(it == symtab.end(),
+                     "Could not find symbol for address %#x\n", addr);
             symbol = it->name;
-        else
-            panic("could not find symbol for address %#x\n", addr);
+        }
 
-        const ProfileNode *node = i->second;
+        const auto *node = p.second;
         node->dump(symbol, (intptr_t)node, symtab, os);
     }
 }
@@ -81,13 +71,12 @@ void
 ProfileNode::clear()
 {
     count = 0;
-    ChildList::iterator i, end = children.end();
-    for (i = children.begin(); i != end; ++i)
-        i->second->clear();
+    for (const auto &p: children)
+        p.second->clear();
 }
 
-FunctionProfile::FunctionProfile(const Loader::SymbolTable &_symtab)
-    : reset(0), symtab(_symtab)
+FunctionProfile::FunctionProfile(const Loader::SymbolTable &_symtab) :
+    symtab(_symtab)
 {
     reset = new MakeCallback<FunctionProfile, &FunctionProfile::clear>(this);
     Stats::registerResetCallback(reset);
@@ -95,17 +84,16 @@ FunctionProfile::FunctionProfile(const Loader::SymbolTable &_symtab)
 
 FunctionProfile::~FunctionProfile()
 {
-    if (reset)
-        delete reset;
+    delete reset;
 }
 
 ProfileNode *
-FunctionProfile::consume(const vector<Addr> &stack)
+FunctionProfile::consume(const std::vector<Addr> &stack)
 {
     ProfileNode *current = &top;
     for (int i = 0, size = stack.size(); i < size; ++i) {
         ProfileNode *&ptr = current->children[stack[size - i - 1]];
-        if (ptr == NULL)
+        if (!ptr)
             ptr = new ProfileNode;
 
         current = ptr;
@@ -122,23 +110,25 @@ FunctionProfile::clear()
 }
 
 void
-FunctionProfile::dump(ThreadContext *tc, ostream &os) const
+FunctionProfile::dump(std::ostream &os) const
 {
     ccprintf(os, ">>>PC data\n");
-    map<Addr, Counter>::const_iterator i, end = pc_count.end();
-    for (i = pc_count.begin(); i != end; ++i) {
-        Addr pc = i->first;
-        Counter count = i->second;
+    for (const auto &p: pc_count) {
+        Addr pc = p.first;
+        Counter count = p.second;
 
-        Loader::SymbolTable::const_iterator it;
         if (pc == 1) {
             ccprintf(os, "user %d\n", count);
-        } else if ((it = symtab.find(pc)) != symtab.end() &&
-                !it->name.empty()) {
+            continue;
+        }
+
+        const auto it = symtab.find(pc);
+        if (it != symtab.end() && !it->name.empty()) {
             ccprintf(os, "%s %d\n", it->name, count);
-        } else {
-            ccprintf(os, "%#x %d\n", pc, count);
+            continue;
         }
+
+        ccprintf(os, "%#x %d\n", pc, count);
     }
 
     ccprintf(os, ">>>function data\n");
index 96d55262975f7c6f948c5e035a562e934b8bbbbb..f6b98d3f69964d155d9a612e50fbbad3e2411f81 100644 (file)
@@ -47,11 +47,9 @@ class ProfileNode
     ChildList children;
 
   public:
-    Counter count;
+    Counter count = 0;
 
   public:
-    ProfileNode();
-
     void dump(const std::string &symbol, uint64_t id,
               const Loader::SymbolTable &symtab, std::ostream &os) const;
     void clear();
@@ -61,7 +59,7 @@ class Callback;
 class FunctionProfile
 {
   private:
-    Callback *reset;
+    Callback *reset = nullptr;
     const Loader::SymbolTable &symtab;
     ProfileNode top;
     std::map<Addr, Counter> pc_count;
@@ -74,7 +72,7 @@ class FunctionProfile
     ProfileNode *consume(ThreadContext *tc, const StaticInstPtr &inst);
     ProfileNode *consume(const std::vector<Addr> &stack);
     void clear();
-    void dump(ThreadContext *tc, std::ostream &out) const;
+    void dump(std::ostream &out) const;
     void sample(ProfileNode *node, Addr pc);
 };
 
@@ -82,7 +80,7 @@ inline ProfileNode *
 FunctionProfile::consume(ThreadContext *tc, const StaticInstPtr &inst)
 {
     if (!trace.trace(tc, inst))
-        return NULL;
+        return nullptr;
     trace.dprintf();
     return consume(trace.getstack());
 }
index 8f2ab54c83bd87fb64cc6fcb680393425cb8f412..c30872c6a3cec3914adfc4a0129992e954855a1b 100644 (file)
@@ -150,7 +150,7 @@ void
 SimpleThread::dumpFuncProfile()
 {
     OutputStream *os(simout.create(csprintf("profile.%s.dat", baseCpu->name())));
-    profile->dump(this, *os->stream());
+    profile->dump(*os->stream());
     simout.close(os);
 }