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

Unified Diff: src/IceGlobalContext.cpp

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/IceGlobalContext.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.cpp
diff --git a/src/IceGlobalContext.cpp b/src/IceGlobalContext.cpp
index fdfe0084663049be53efa9a878367db54b0a557d..eb71df13386dda0ba165df37e0c3bd38b1100497 100644
--- a/src/IceGlobalContext.cpp
+++ b/src/IceGlobalContext.cpp
@@ -244,12 +244,13 @@ void GlobalContext::waitForWorkerThreads() {
}
}
-void GlobalContext::CodeStats::dump(const std::string &Name,
- GlobalContext *Ctx) {
+void GlobalContext::CodeStats::dump(const Cfg *Func, GlobalContext *Ctx) {
if (!BuildDefs::dump())
return;
OstreamLocker _(Ctx);
Ostream &Str = Ctx->getStrDump();
+ const std::string Name =
+ (Func == nullptr ? "_FINAL_" : Func->getFunctionNameAndSize());
#define X(str, tag) \
Str << "|" << Name << "|" str "|" << Stats[CS_##tag] << "\n";
CODESTATS_TABLE
@@ -276,6 +277,10 @@ void GlobalContext::CodeStats::dump(const std::string &Name,
Str << "|ExtRel=" << Pool->ExternRelocatables.size();
}
Str << "\n";
+ if (Func != nullptr) {
+ Str << "|" << Name << "|Cfg Memory |" << Func->getTotalMemoryMB()
+ << " MB\n";
+ }
}
GlobalContext::GlobalContext(Ostream *OsDump, Ostream *OsEmit, Ostream *OsError,
@@ -380,7 +385,7 @@ void GlobalContext::translateFunctions() {
// stats have been fully collected into this thread's TLS.
// Dump them before TLS is reset for the next Cfg.
if (BuildDefs::dump())
- dumpStats(Func->getFunctionNameAndSize());
+ dumpStats(Func.get());
auto Asm = Func->releaseAssembler();
// Copy relevant fields into Asm before Func is deleted.
Asm->setFunctionName(Func->getFunctionName());
@@ -634,7 +639,7 @@ void GlobalContext::emitItems() {
// differently-typed copy.
CfgLocalAllocatorScope _(Func.get());
Func->emit();
- dumpStats(Func->getFunctionNameAndSize());
+ dumpStats(Func.get());
} break;
}
}
@@ -944,13 +949,13 @@ std::unique_ptr<EmitterWorkItem> GlobalContext::emitQueueBlockingPop() {
return EmitQ.blockingPop();
}
-void GlobalContext::dumpStats(const std::string &Name, bool Final) {
+void GlobalContext::dumpStats(const Cfg *Func) {
if (!getFlags().getDumpStats())
return;
- if (Final) {
- getStatsCumulative()->dump(Name, this);
+ if (Func == nullptr) {
+ getStatsCumulative()->dump(Func, this);
} else {
- ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Name, this);
+ ICE_TLS_GET_FIELD(TLS)->StatsFunction.dump(Func, this);
}
}
« no previous file with comments | « src/IceGlobalContext.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698