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

Side by Side Diff: src/IceClFlags.def

Issue 1834473002: Allow Subzero to parse function blocks in parallel. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Fix issues raised in last CL. 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 | « pydir/run-pnacl-sz.py ('k') | src/IceCompiler.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/IceClFlags.def - Cl Flags for translation ----*- C++ -*-===// 1 //===- subzero/src/IceClFlags.def - Cl Flags for translation ----*- 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 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 \ 189 \
190 X(OutFileType, Ice::FileType, dev_opt_flag, "filetype", \ 190 X(OutFileType, Ice::FileType, dev_opt_flag, "filetype", \
191 cl::desc("Output file type"), cl::init(Ice::FT_Iasm), \ 191 cl::desc("Output file type"), cl::init(Ice::FT_Iasm), \
192 cl::values( \ 192 cl::values( \
193 clEnumValN(Ice::FT_Elf, "obj", "Native ELF object ('.o') file"), \ 193 clEnumValN(Ice::FT_Elf, "obj", "Native ELF object ('.o') file"), \
194 clEnumValN(Ice::FT_Asm, "asm", "Assembly ('.s') file"), \ 194 clEnumValN(Ice::FT_Asm, "asm", "Assembly ('.s') file"), \
195 clEnumValN(Ice::FT_Iasm, "iasm", \ 195 clEnumValN(Ice::FT_Iasm, "iasm", \
196 "Low-level integrated assembly ('.s') file"), \ 196 "Low-level integrated assembly ('.s') file"), \
197 clEnumValEnd)) \ 197 clEnumValEnd)) \
198 \ 198 \
199 X(ParseParallel, bool, dev_opt_flag, "parse-parallel", \
200 cl::desc("Parse function blocks in parallel"), cl::init(true)) \
201 \
199 X(RandomizeAndPoolImmediatesOption, Ice::RandomizeAndPoolImmediatesEnum, \ 202 X(RandomizeAndPoolImmediatesOption, Ice::RandomizeAndPoolImmediatesEnum, \
200 dev_opt_flag, "randomize-pool-immediates", \ 203 dev_opt_flag, "randomize-pool-immediates", \
201 cl::desc("Randomize or pooling the representation of immediates"), \ 204 cl::desc("Randomize or pooling the representation of immediates"), \
202 cl::init(Ice::RPI_None), \ 205 cl::init(Ice::RPI_None), \
203 cl::values(clEnumValN(Ice::RPI_None, "none", \ 206 cl::values(clEnumValN(Ice::RPI_None, "none", \
204 "Do not randomize or pooling immediates (default)"), \ 207 "Do not randomize or pooling immediates (default)"), \
205 clEnumValN(Ice::RPI_Randomize, "randomize", \ 208 clEnumValN(Ice::RPI_Randomize, "randomize", \
206 "Turn on immediate constants blinding"), \ 209 "Turn on immediate constants blinding"), \
207 clEnumValN(Ice::RPI_Pool, "pool", \ 210 clEnumValN(Ice::RPI_Pool, "pool", \
208 "Turn on immediate constants pooling"), \ 211 "Turn on immediate constants pooling"), \
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ 337 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \
335 \ 338 \
336 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \ 339 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \
337 cl::desc("Override with -verbose=none except for the specified function"), \ 340 cl::desc("Override with -verbose=none except for the specified function"), \
338 cl::init("")) 341 cl::init(""))
339 //#define X(Name, Type, ClType, ...) 342 //#define X(Name, Type, ClType, ...)
340 343
341 } // end of namespace Ice 344 } // end of namespace Ice
342 345
343 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 346 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW
« no previous file with comments | « pydir/run-pnacl-sz.py ('k') | src/IceCompiler.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698