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

Unified Diff: src/IceClFlags.h

Issue 1147023007: Subzero: Basic Block Profiler. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Named constants; fflush; clang-format. Created 5 years, 6 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/IceCfgNode.cpp ('k') | src/IceClFlags.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 517c77fc63f1efd9aad19a967740481ead658074..7df697303c5d6a5d77cae079e25f88a770743aaf 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -65,6 +65,9 @@ public:
bool getDumpStats() const { return ALLOW_DUMP && DumpStats; }
void setDumpStats(bool NewValue) { DumpStats = NewValue; }
+ bool getEnableBlockProfile() const { return EnableBlockProfile; }
+ void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; }
+
bool getFunctionSections() const { return FunctionSections; }
void setFunctionSections(bool NewValue) { FunctionSections = NewValue; }
@@ -182,6 +185,7 @@ private:
bool DisableIRGeneration;
bool DisableTranslation;
bool DumpStats;
+ bool EnableBlockProfile;
bool FunctionSections;
bool GenerateUnitTestMessages;
bool PhiEdgeSplit;
« no previous file with comments | « src/IceCfgNode.cpp ('k') | src/IceClFlags.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698