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

Side by Side Diff: src/IceDefs.h

Issue 1743043002: Subzero: Print memory usage info when dumping. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 4 years, 9 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') | no next file » | 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 IceV_RegOrigins = 1 << 6, 206 IceV_RegOrigins = 1 << 6,
207 IceV_LinearScan = 1 << 7, 207 IceV_LinearScan = 1 << 7,
208 IceV_Frame = 1 << 8, 208 IceV_Frame = 1 << 8,
209 IceV_AddrOpt = 1 << 9, 209 IceV_AddrOpt = 1 << 9,
210 IceV_Random = 1 << 10, 210 IceV_Random = 1 << 10,
211 IceV_Folding = 1 << 11, 211 IceV_Folding = 1 << 11,
212 IceV_RMW = 1 << 12, 212 IceV_RMW = 1 << 12,
213 IceV_Loop = 1 << 13, 213 IceV_Loop = 1 << 13,
214 IceV_Status = 1 << 14, 214 IceV_Status = 1 << 14,
215 IceV_AvailableRegs = 1 << 15, 215 IceV_AvailableRegs = 1 << 15,
216 IceV_Mem = 1 << 16,
216 IceV_All = ~IceV_None, 217 IceV_All = ~IceV_None,
217 IceV_Most = IceV_All & ~IceV_LinearScan 218 IceV_Most = IceV_All & ~IceV_LinearScan
218 }; 219 };
219 using VerboseMask = uint32_t; 220 using VerboseMask = uint32_t;
220 221
221 enum FileType { 222 enum FileType {
222 FT_Elf, /// ELF .o file 223 FT_Elf, /// ELF .o file
223 FT_Asm, /// Assembly .s file 224 FT_Asm, /// Assembly .s file
224 FT_Iasm /// "Integrated assembler" .byte-style .s file 225 FT_Iasm /// "Integrated assembler" .byte-style .s file
225 }; 226 };
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 RPE_PooledConstantReordering, 278 RPE_PooledConstantReordering,
278 RPE_RegAllocRandomization, 279 RPE_RegAllocRandomization,
279 RPE_num 280 RPE_num
280 }; 281 };
281 282
282 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; 283 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>;
283 284
284 } // end of namespace Ice 285 } // end of namespace Ice
285 286
286 #endif // SUBZERO_SRC_ICEDEFS_H 287 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceClFlags.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698