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

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: Adds Basic Block Profiling. 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
Index: src/IceClFlags.h
diff --git a/src/IceClFlags.h b/src/IceClFlags.h
index 517c77fc63f1efd9aad19a967740481ead658074..4a38fad9d84338a7897a3bd4d676994bef19cb46 100644
--- a/src/IceClFlags.h
+++ b/src/IceClFlags.h
@@ -100,6 +100,9 @@ public:
bool getUseSandboxing() const { return UseSandboxing; }
void setUseSandboxing(bool NewValue) { UseSandboxing = NewValue; }
+ bool getEnableBlockProfile() const { return EnableBlockProfile; }
Jim Stichnoth 2015/06/08 23:45:31 Sort these alphabetically within the bool section.
John 2015/06/09 15:36:18 Done.
+ void setEnableBlockProfile(bool NewValue) { EnableBlockProfile = NewValue; }
+
// Enum and integer accessors.
OptLevel getOptLevel() const { return Opt; }
void setOptLevel(OptLevel NewValue) { Opt = NewValue; }
@@ -191,6 +194,7 @@ private:
bool SubzeroTimingEnabled;
bool TimeEachFunction;
bool UseSandboxing;
+ bool EnableBlockProfile;
OptLevel Opt;
FileType OutFileType;

Powered by Google App Engine
This is Rietveld 408576698