Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Unified Diff: src/IceGlobalContext.h

Issue 1848733002: Subzero: Refine the memory usage report with -szstats . (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Bug fix Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/IceCompiler.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.h
diff --git a/src/IceGlobalContext.h b/src/IceGlobalContext.h
index 3937b2a4ba4b624d016817d837caabaa1bfc099c..5d27f5ddc8d17be2cf7adae7fedf6283697752cd 100644
--- a/src/IceGlobalContext.h
+++ b/src/IceGlobalContext.h
@@ -106,7 +106,9 @@ class GlobalContext {
for (uint32_t i = 0; i < Stats.size(); ++i)
Stats[i] += Other.Stats[i];
}
- void dump(const std::string &Name, GlobalContext *Ctx);
+ /// Dumps the stats for the given Cfg. If Func==nullptr, it identifies it
+ /// as the "final" cumulative stats instead as a specific function's name.
+ void dump(const Cfg *Func, GlobalContext *Ctx);
private:
std::array<uint32_t, CS_NUM> Stats;
@@ -301,7 +303,7 @@ public:
if (BuildDefs::dump())
ICE_TLS_GET_FIELD(TLS)->StatsFunction.reset();
}
- void dumpStats(const std::string &Name, bool Final = false);
+ void dumpStats(const Cfg *Func = nullptr);
void statsUpdateEmitted(uint32_t InstCount) {
if (!getFlags().getDumpStats())
return;
« no previous file with comments | « src/IceCompiler.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698