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

Side by Side Diff: src/IceDefs.h

Issue 1897243002: Subzero. Rematerializes shufflevector instructions. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Addresses comments. 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
« no previous file with comments | « src/IceClFlags.def ('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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 IceV_Mem = 1 << 14, 335 IceV_Mem = 1 << 14,
336 // Leave some extra space to make it easier to add new per-pass items. 336 // Leave some extra space to make it easier to add new per-pass items.
337 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19, 337 IceV_NO_PER_PASS_DUMP_BEYOND = 1 << 19,
338 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger 338 // Items greater than IceV_NO_PER_PASS_DUMP_BEYOND don't by themselves trigger
339 // per-pass Cfg dump output. 339 // per-pass Cfg dump output.
340 IceV_Status = 1 << 20, 340 IceV_Status = 1 << 20,
341 IceV_AvailableRegs = 1 << 21, 341 IceV_AvailableRegs = 1 << 21,
342 IceV_GlobalInit = 1 << 22, 342 IceV_GlobalInit = 1 << 22,
343 IceV_ConstPoolStats = 1 << 23, 343 IceV_ConstPoolStats = 1 << 23,
344 IceV_Wasm = 1 << 24, 344 IceV_Wasm = 1 << 24,
345 IceV_ShufMat = 1 << 25,
345 IceV_All = ~IceV_None, 346 IceV_All = ~IceV_None,
346 IceV_Most = 347 IceV_Most =
347 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats 348 IceV_All & ~IceV_LinearScan & ~IceV_GlobalInit & ~IceV_ConstPoolStats
348 }; 349 };
349 using VerboseMask = uint32_t; 350 using VerboseMask = uint32_t;
350 351
351 enum FileType { 352 enum FileType {
352 FT_Elf, /// ELF .o file 353 FT_Elf, /// ELF .o file
353 FT_Asm, /// Assembly .s file 354 FT_Asm, /// Assembly .s file
354 FT_Iasm /// "Integrated assembler" .byte-style .s file 355 FT_Iasm /// "Integrated assembler" .byte-style .s file
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
433 RPE_PooledConstantReordering, 434 RPE_PooledConstantReordering,
434 RPE_RegAllocRandomization, 435 RPE_RegAllocRandomization,
435 RPE_num 436 RPE_num
436 }; 437 };
437 438
438 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>; 439 using RelocOffsetArray = llvm::SmallVector<class RelocOffset *, 4>;
439 440
440 } // end of namespace Ice 441 } // end of namespace Ice
441 442
442 #endif // SUBZERO_SRC_ICEDEFS_H 443 #endif // SUBZERO_SRC_ICEDEFS_H
OLDNEW
« no previous file with comments | « src/IceClFlags.def ('k') | src/IceInst.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698