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

Unified Diff: src/IceCfg.cpp

Issue 1743043002: Subzero: Print memory usage info when dumping. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.cpp
diff --git a/src/IceCfg.cpp b/src/IceCfg.cpp
index 480893a4ea7fe62c475eefc79312a0ed611b83f3..5c51ae6d3893316efe28aff8793de937b902931b 100644
--- a/src/IceCfg.cpp
+++ b/src/IceCfg.cpp
@@ -203,8 +203,10 @@ void Cfg::translate() {
FunctionTimer.reset(new TimerMarker(
getContext()->getTimerID(GlobalContext::TSK_Funcs, Name),
getContext(), GlobalContext::TSK_Funcs));
- if (isVerbose(IceV_Status))
- getContext()->getStrDump() << ">>>Translating " << Name << "\n";
+ if (isVerbose(IceV_Status)) {
+ getContext()->getStrDump() << ">>>Translating "
+ << getFunctionNameAndSize() << "\n";
+ }
}
TimerMarker T(TimerStack::TT_translate, this);
@@ -1084,6 +1086,12 @@ void Cfg::dump(const IceString &Message) {
Ostream &Str = Ctx->getStrDump();
if (!Message.empty())
Str << "================ " << Message << " ================\n";
+ if (isVerbose(IceV_Mem)) {
+ constexpr size_t OneMB = 1024 * 1024;
+ Str << "Memory size = "
+ << (CfgLocalAllocator<int>().current()->getTotalMemory() / OneMB)
+ << " MB\n";
+ }
setCurrentNode(getEntryNode());
// Print function name+args
if (isVerbose(IceV_Instructions)) {
« no previous file with comments | « no previous file | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698