| Index: src/IceDefs.h
|
| diff --git a/src/IceDefs.h b/src/IceDefs.h
|
| index 2565aeece78a55ad525d8b8e31dc7b9e71c77de1..7ea34be88f1f40415bdd02346193629adfd3b3a0 100644
|
| --- a/src/IceDefs.h
|
| +++ b/src/IceDefs.h
|
| @@ -279,6 +279,18 @@ llvm::iterator_range<typename T::reverse_iterator> reverse_range(T &Container) {
|
| /// Options for pooling and randomization of immediates.
|
| enum RandomizeAndPoolImmediatesEnum { RPI_None, RPI_Randomize, RPI_Pool };
|
|
|
| +/// Salts for Random number generator for different randomization passes.
|
| +enum RandomizationPassesEnum {
|
| + RPE_BasicBlockReordering,
|
| + RPE_ConstantBlinding,
|
| + RPE_FunctionReordering,
|
| + RPE_GlobalVariableReordering,
|
| + RPE_NopInsertion,
|
| + RPE_PooledConstantReordering,
|
| + RPE_RegAllocRandomization,
|
| + RPE_num
|
| +};
|
| +
|
| } // end of namespace Ice
|
|
|
| #endif // SUBZERO_SRC_ICEDEFS_H
|
|
|