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

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 from last patch. 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
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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 \ 184 \
185 X(OutFileType, Ice::FileType, dev_opt_flag, "filetype", \ 185 X(OutFileType, Ice::FileType, dev_opt_flag, "filetype", \
186 cl::desc("Output file type"), cl::init(Ice::FT_Iasm), \ 186 cl::desc("Output file type"), cl::init(Ice::FT_Iasm), \
187 cl::values( \ 187 cl::values( \
188 clEnumValN(Ice::FT_Elf, "obj", "Native ELF object ('.o') file"), \ 188 clEnumValN(Ice::FT_Elf, "obj", "Native ELF object ('.o') file"), \
189 clEnumValN(Ice::FT_Asm, "asm", "Assembly ('.s') file"), \ 189 clEnumValN(Ice::FT_Asm, "asm", "Assembly ('.s') file"), \
190 clEnumValN(Ice::FT_Iasm, "iasm", \ 190 clEnumValN(Ice::FT_Iasm, "iasm", \
191 "Low-level integrated assembly ('.s') file"), \ 191 "Low-level integrated assembly ('.s') file"), \
192 clEnumValEnd)) \ 192 clEnumValEnd)) \
193 \ 193 \
194 X(ParseParallel, bool, dev_opt_flag, "parse-parallel", \
195 cl::desc("Parse function blocks in parallel"), cl::init(false)) \
Jim Stichnoth 2016/03/25 04:31:04 I think the default value should be true, otherwis
Karl 2016/03/29 17:35:02 I intentionally set this to false, so that we don'
196 \
194 X(RandomizeAndPoolImmediatesOption, Ice::RandomizeAndPoolImmediatesEnum, \ 197 X(RandomizeAndPoolImmediatesOption, Ice::RandomizeAndPoolImmediatesEnum, \
195 dev_opt_flag, "randomize-pool-immediates", \ 198 dev_opt_flag, "randomize-pool-immediates", \
196 cl::desc("Randomize or pooling the representation of immediates"), \ 199 cl::desc("Randomize or pooling the representation of immediates"), \
197 cl::init(Ice::RPI_None), \ 200 cl::init(Ice::RPI_None), \
198 cl::values(clEnumValN(Ice::RPI_None, "none", \ 201 cl::values(clEnumValN(Ice::RPI_None, "none", \
199 "Do not randomize or pooling immediates (default)"), \ 202 "Do not randomize or pooling immediates (default)"), \
200 clEnumValN(Ice::RPI_Randomize, "randomize", \ 203 clEnumValN(Ice::RPI_Randomize, "randomize", \
201 "Turn on immediate constants blinding"), \ 204 "Turn on immediate constants blinding"), \
202 clEnumValN(Ice::RPI_Pool, "pool", \ 205 clEnumValN(Ice::RPI_Pool, "pool", \
203 "Turn on immediate constants pooling"), \ 206 "Turn on immediate constants pooling"), \
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ 332 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \
330 \ 333 \
331 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \ 334 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \
332 cl::desc("Override with -verbose=none except for the specified function"), \ 335 cl::desc("Override with -verbose=none except for the specified function"), \
333 cl::init("")) 336 cl::init(""))
334 //#define X(Name, Type, ClType, ...) 337 //#define X(Name, Type, ClType, ...)
335 338
336 } // end of namespace Ice 339 } // end of namespace Ice
337 340
338 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 341 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW
« no previous file with comments | « pydir/run-pnacl-sz.py ('k') | src/IceCompiler.cpp » ('j') | src/IceCompiler.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698