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

Side by Side Diff: src/IceDefs.h

Issue 1837663002: Initial Subzero WASM prototype. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Cleanup Created 4 years, 8 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
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 322 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 IceV_Loop = 1 << 13, 333 IceV_Loop = 1 << 13,
334 IceV_Mem = 1 << 14, 334 IceV_Mem = 1 << 14,
335 // Leave some extra space to make it easier to add new per-pass items. 335 // Leave some extra space to make it easier to add new per-pass items.
336 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, 336 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19,
337 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger 337 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger
338 // per-pass Cfg dump output. 338 // per-pass Cfg dump output.
339 IceV_Status = 1 << 20, 339 IceV_Status = 1 << 20,
340 IceV_AvailableRegs = 1 << 21, 340 IceV_AvailableRegs = 1 << 21,
341 IceV_GlobalInit = 1 << 22, 341 IceV_GlobalInit = 1 << 22,
342 IceV_ConstPoolStats = 1 << 23, 342 IceV_ConstPoolStats = 1 << 23,
343 IceV_Wasm = 1 << 24,
343 IceV_All = ~IceV_None, 344 IceV_All = ~IceV_None,
344 IceV_Most = 345 IceV_Most =
345 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats 346 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats
346 }; 347 };
347 using VerboseMask = uint32_t; 348 using VerboseMask = uint32_t;
348 349
349 enum FileType { 350 enum FileType {
350 FT_Elf, /// ELF .o file 351 FT_Elf, /// ELF .o file
351 FT_Asm, /// Assembly .s file 352 FT_Asm, /// Assembly .s file
352 FT_Iasm /// "Integrated assembler" .byte-style .s file 353 FT_Iasm /// "Integrated assembler" .byte-style .s file
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 RPE_PooledConstantReordering, 406 RPE_PooledConstantReordering,
406 RPE_RegAllocRandomization, 407 RPE_RegAllocRandomization,
407 RPE_num 408 RPE_num
408 }; 409 };
409 410
410 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; 411 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>;
411 412
412 } // end of namespace Ice 413 } // end of namespace Ice
413 414
414 #endif // SUBZERO_SRC_ICEDEFS_H 415 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698