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

Unified Diff: src/IceGlobalContext.h

Issue 1185703004: Add constant blinding/pooling option for X8632 code translation (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: change the default sz-seed back to 1. 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/IceELFObjectWriter.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceGlobalContext.h
diff --git a/src/IceGlobalContext.h b/src/IceGlobalContext.h
index ff8ff25ed256b1793a01632c4e32c5e7f95fd207..ff3b8b3a7a03725be5185993bb96f866b60df35d 100644
--- a/src/IceGlobalContext.h
+++ b/src/IceGlobalContext.h
@@ -72,7 +72,8 @@ class GlobalContext {
X("Regs Saved ", RegsSaved) \
X("Frame Bytes ", FrameByte) \
X("Spills ", NumSpills) \
- X("Fills ", NumFills)
+ X("Fills ", NumFills) \
+ X("R/P Imms ", NumRPImms)
//#define X(str, tag)
public:
@@ -263,6 +264,15 @@ public:
Tls->StatsCumulative.update(CodeStats::CS_NumFills);
}
+ // Number of Randomized or Pooled Immediates
+ void statsUpdateRPImms() {
+ if (!getFlags().getDumpStats())
+ return;
+ ThreadContext *Tls = ICE_TLS_GET_FIELD(TLS);
+ Tls->StatsFunction.update(CodeStats::CS_NumRPImms);
+ Tls->StatsCumulative.update(CodeStats::CS_NumRPImms);
+ }
+
// These are predefined TimerStackIdT values.
enum TimerStackKind { TSK_Default = 0, TSK_Funcs, TSK_Num };
@@ -400,6 +410,10 @@ public:
return Match.empty() || Match == SymbolName;
}
+ // Return the randomization cookie for diversification.
+ // Initialize the cookie if necessary
+ uint32_t getRandomizationCookie() const { return RandomizationCookie; }
+
private:
// Try to ensure mutexes are allocated on separate cache lines.
@@ -495,6 +509,11 @@ private:
typedef llvm::SmallVector<char, 32> ManglerVector;
void incrementSubstitutions(ManglerVector &OldName) const;
+ // Randomization Cookie
+ // Managed by getRandomizationCookie()
+ GlobalLockType RandomizationCookieLock;
+ uint32_t RandomizationCookie;
+
public:
static void TlsInit() { ICE_TLS_INIT_FIELD(TLS); }
};
« no previous file with comments | « src/IceELFObjectWriter.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698