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

Unified Diff: src/IceDefs.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: reformat 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/IceDefs.h
diff --git a/src/IceDefs.h b/src/IceDefs.h
index 71a23f66072b39e03540c795dc54f7f4b243c51a..fbea34cc650069e4f168446ae26c95f4e92f8f10 100644
--- a/src/IceDefs.h
+++ b/src/IceDefs.h
@@ -224,6 +224,13 @@ llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) {
return llvm::make_range(Container.rbegin(), Container.rend());
}
+// Immeidates Pooling and Randomization options
Jim Stichnoth 2015/06/12 23:48:17 "Immediates" misspelled. I would prefer not so mu
qining 2015/06/17 04:28:53 Done.
+enum RandomizeAndPoolImmediatesEnum {
+ NoneImmediatesRandomizationPooling,
Jim Stichnoth 2015/06/12 23:48:17 For non-scoped enum values in the top-level (Ice)
qining 2015/06/17 04:28:53 Done.
+ RandomizeImmediates,
+ PoolImmediates
+};
+
} // end of namespace Ice
#endif // SUBZERO_SRC_ICEDEFS_H

Powered by Google App Engine
This is Rietveld 408576698