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

Side by Side Diff: src/IceDefs.h

Issue 1571433004: Implements include/exclude register lists for translation. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix nits. Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceGlobalContext.cpp » ('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 declarations ------*- C++ -*-===// 1 //===- subzero/src/IceDefs.h - Common Subzero declarations ------*- 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 /// \file 10 /// \file
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 IceV_Liveness = 1 << 5, 235 IceV_Liveness = 1 << 5,
236 IceV_RegOrigins = 1 << 6, 236 IceV_RegOrigins = 1 << 6,
237 IceV_LinearScan = 1 << 7, 237 IceV_LinearScan = 1 << 7,
238 IceV_Frame = 1 << 8, 238 IceV_Frame = 1 << 8,
239 IceV_AddrOpt = 1 << 9, 239 IceV_AddrOpt = 1 << 9,
240 IceV_Random = 1 << 10, 240 IceV_Random = 1 << 10,
241 IceV_Folding = 1 << 11, 241 IceV_Folding = 1 << 11,
242 IceV_RMW = 1 << 12, 242 IceV_RMW = 1 << 12,
243 IceV_Loop = 1 << 13, 243 IceV_Loop = 1 << 13,
244 IceV_Status = 1 << 14, 244 IceV_Status = 1 << 14,
245 IceV_AvailableRegs = 1 << 15,
245 IceV_All = ~IceV_None, 246 IceV_All = ~IceV_None,
246 IceV_Most = IceV_All & ~IceV_LinearScan 247 IceV_Most = IceV_All & ~IceV_LinearScan
247 }; 248 };
248 using VerboseMask = uint32_t; 249 using VerboseMask = uint32_t;
249 250
250 enum FileType { 251 enum FileType {
251 FT_Elf, /// ELF .o file 252 FT_Elf, /// ELF .o file
252 FT_Asm, /// Assembly .s file 253 FT_Asm, /// Assembly .s file
253 FT_Iasm /// "Integrated assembler" .byte-style .s file 254 FT_Iasm /// "Integrated assembler" .byte-style .s file
254 }; 255 };
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 RPE_GlobalVariableReordering, 305 RPE_GlobalVariableReordering,
305 RPE_NopInsertion, 306 RPE_NopInsertion,
306 RPE_PooledConstantReordering, 307 RPE_PooledConstantReordering,
307 RPE_RegAllocRandomization, 308 RPE_RegAllocRandomization,
308 RPE_num 309 RPE_num
309 }; 310 };
310 311
311 } // end of namespace Ice 312 } // end of namespace Ice
312 313
313 #endif // SUBZERO_SRC_ICEDEFS_H 314 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceGlobalContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698