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

Unified Diff: src/IceDefs.h

Issue 1744913002: Subzero: Add "-verbose init" to control global initializer dumping. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Naming changes 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 | « src/IceClFlags.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index b8047b40b943cdd450ca5d24d2eb07a5c8345559..f85c3646b65cd6441bfa0b6b32174025ce52367e 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -214,8 +214,9 @@ enum VerboseItem {
IceV_Status = 1 << 14,
IceV_AvailableRegs = 1 << 15,
IceV_Mem = 1 << 16,
+ IceV_GlobalInit = 1 << 17,
IceV_All = ~IceV_None,
- IceV_Most = IceV_All & ~IceV_LinearScan
+ IceV_Most = IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit
};
using VerboseMask = uint32_t;
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698