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

Side by Side Diff: src/IceDefs.h

Issue 1318553003: Compute the loop nest depth of each CfgNode and weight Variables by it. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 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/IceInst.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 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 IceV_Preds = 1 << 3, 218 IceV_Preds = 1 << 3,
219 IceV_Succs = 1 << 4, 219 IceV_Succs = 1 << 4,
220 IceV_Liveness = 1 << 5, 220 IceV_Liveness = 1 << 5,
221 IceV_RegOrigins = 1 << 6, 221 IceV_RegOrigins = 1 << 6,
222 IceV_LinearScan = 1 << 7, 222 IceV_LinearScan = 1 << 7,
223 IceV_Frame = 1 << 8, 223 IceV_Frame = 1 << 8,
224 IceV_AddrOpt = 1 << 9, 224 IceV_AddrOpt = 1 << 9,
225 IceV_Random = 1 << 10, 225 IceV_Random = 1 << 10,
226 IceV_Folding = 1 << 11, 226 IceV_Folding = 1 << 11,
227 IceV_RMW = 1 << 12, 227 IceV_RMW = 1 << 12,
228 IceV_Loop = 1 << 13,
228 IceV_All = ~IceV_None, 229 IceV_All = ~IceV_None,
229 IceV_Most = IceV_All & ~IceV_LinearScan 230 IceV_Most = IceV_All & ~IceV_LinearScan
230 }; 231 };
231 typedef uint32_t VerboseMask; 232 typedef uint32_t VerboseMask;
232 233
233 enum FileType { 234 enum FileType {
234 FT_Elf, /// ELF .o file 235 FT_Elf, /// ELF .o file
235 FT_Asm, /// Assembly .s file 236 FT_Asm, /// Assembly .s file
236 FT_Iasm /// "Integrated assembler" .byte-style .s file 237 FT_Iasm /// "Integrated assembler" .byte-style .s file
237 }; 238 };
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 RPE_GlobalVariableReordering, 288 RPE_GlobalVariableReordering,
288 RPE_NopInsertion, 289 RPE_NopInsertion,
289 RPE_PooledConstantReordering, 290 RPE_PooledConstantReordering,
290 RPE_RegAllocRandomization, 291 RPE_RegAllocRandomization,
291 RPE_num 292 RPE_num
292 }; 293 };
293 294
294 } // end of namespace Ice 295 } // end of namespace Ice
295 296
296 #endif // SUBZERO_SRC_ICEDEFS_H 297 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceClFlags.cpp ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698