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/IceDefs.h

Issue 1768173002: Subzero: Count lookups of each constant value in the constant pool. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Code review changes Created 4 years, 9 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/IceCompileServer.cpp ('k') | src/IceGlobalContext.h » ('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 f85c3646b65cd6441bfa0b6b32174025ce52367e..d9c0c234784e0d569ae6c83ed109bb981d37749f 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -211,12 +211,18 @@ enum VerboseItem {
IceV_Folding = 1 << 11,
IceV_RMW = 1 << 12,
IceV_Loop = 1 << 13,
- IceV_Status = 1 << 14,
- IceV_AvailableRegs = 1 << 15,
- IceV_Mem = 1 << 16,
- IceV_GlobalInit = 1 << 17,
+ IceV_Mem = 1 << 14,
+ // Leave some extra space to make it easier to add new per-pass items.
+ IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19,
+ // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger
+ // per-pass Cfg dump output.
+ IceV_Status = 1 << 20,
+ IceV_AvailableRegs = 1 << 21,
+ IceV_GlobalInit = 1 << 22,
+ IceV_ConstPoolStats = 1 << 23,
IceV_All = ~IceV_None,
- IceV_Most = IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit
+ IceV_Most =
+ IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & IceV_ConstPoolStats
};
using VerboseMask = uint32_t;
« no previous file with comments | « src/IceCompileServer.cpp ('k') | src/IceGlobalContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698