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

Side by Side Diff: src/IceDefs.h

Issue 807293003: Subzero: Randomize register assignment. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Add a TODO Created 6 years 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/IceRNG.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 //===- subzero/src/IceDefs.h - Common Subzero declaraions -------*- C++ -*-===// 1 //===- subzero/src/IceDefs.h - Common Subzero declaraions -------*- C++ -*-===//
2 // 2 //
3 // The Subzero Code Generator 3 // The Subzero Code Generator
4 // 4 //
5 // This file is distributed under the University of Illinois Open Source 5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details. 6 // License. See LICENSE.TXT for details.
7 // 7 //
8 //===----------------------------------------------------------------------===// 8 //===----------------------------------------------------------------------===//
9 // 9 //
10 // This file declares various useful types and classes that have 10 // This file declares various useful types and classes that have
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 IceV_Deleted = 1 << 1, 115 IceV_Deleted = 1 << 1,
116 IceV_InstNumbers = 1 << 2, 116 IceV_InstNumbers = 1 << 2,
117 IceV_Preds = 1 << 3, 117 IceV_Preds = 1 << 3,
118 IceV_Succs = 1 << 4, 118 IceV_Succs = 1 << 4,
119 IceV_Liveness = 1 << 5, 119 IceV_Liveness = 1 << 5,
120 IceV_RegManager = 1 << 6, 120 IceV_RegManager = 1 << 6,
121 IceV_RegOrigins = 1 << 7, 121 IceV_RegOrigins = 1 << 7,
122 IceV_LinearScan = 1 << 8, 122 IceV_LinearScan = 1 << 8,
123 IceV_Frame = 1 << 9, 123 IceV_Frame = 1 << 9,
124 IceV_AddrOpt = 1 << 10, 124 IceV_AddrOpt = 1 << 10,
125 IceV_Random = 1 << 11,
125 IceV_All = ~IceV_None, 126 IceV_All = ~IceV_None,
126 IceV_Most = IceV_All & ~IceV_LinearScan 127 IceV_Most = IceV_All & ~IceV_LinearScan
127 }; 128 };
128 typedef uint32_t VerboseMask; 129 typedef uint32_t VerboseMask;
129 130
130 typedef llvm::raw_ostream Ostream; 131 typedef llvm::raw_ostream Ostream;
131 typedef llvm::raw_fd_ostream Fdstream; 132 typedef llvm::raw_fd_ostream Fdstream;
132 133
133 } // end of namespace Ice 134 } // end of namespace Ice
134 135
135 #endif // SUBZERO_SRC_ICEDEFS_H 136 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « no previous file | src/IceRNG.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698