Chromium Code Reviews

Unified Diff: src/IceClFlags.h

Issue 620373004: Subzero: Add a few performance measurement tools. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Improve the use of containers Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceConverter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index d6c232f2ceef84660e205ad4e9482352294ae77a..f1dec0c2bed27688bce1f16ad99d0a43ff775971 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -25,8 +25,9 @@ public:
: DisableInternal(false), SubzeroTimingEnabled(false),
DisableTranslation(false), DisableGlobals(false),
FunctionSections(false), UseIntegratedAssembler(false),
- UseSandboxing(false), DumpStats(false), DefaultGlobalPrefix(""),
- DefaultFunctionPrefix("") {}
+ UseSandboxing(false), DumpStats(false), TimeEachFunction(false),
+ DefaultGlobalPrefix(""), DefaultFunctionPrefix(""), TimingFocusOn(""),
+ VerboseFocusOn("") {}
bool DisableInternal;
bool SubzeroTimingEnabled;
bool DisableTranslation;
@@ -35,8 +36,11 @@ public:
bool UseIntegratedAssembler;
bool UseSandboxing;
bool DumpStats;
+ bool TimeEachFunction;
IceString DefaultGlobalPrefix;
IceString DefaultFunctionPrefix;
+ IceString TimingFocusOn;
+ IceString VerboseFocusOn;
};
} // end of namespace Ice
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceConverter.cpp » ('j') | no next file with comments »

Powered by Google App Engine