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

Side by Side Diff: src/IceClFlags.def

Issue 1855683002: Subzero: Fix -timing-funcs and -timing-focus flags. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Rebase 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/IceCfg.cpp ('k') | src/IceGlobalContext.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/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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 cl::desc("Build ICE instructions when reading bitcode"), cl::init(true)) \ 104 cl::desc("Build ICE instructions when reading bitcode"), cl::init(true)) \
105 \ 105 \
106 X(DataSections, bool, dev_opt_flag, "fdata-sections", \ 106 X(DataSections, bool, dev_opt_flag, "fdata-sections", \
107 cl::desc("Emit (global) data into separate sections")) \ 107 cl::desc("Emit (global) data into separate sections")) \
108 \ 108 \
109 X(DecorateAsm, bool, dev_opt_flag, "asm-verbose", \ 109 X(DecorateAsm, bool, dev_opt_flag, "asm-verbose", \
110 cl::desc("Decorate textual asm output with register liveness info")) \ 110 cl::desc("Decorate textual asm output with register liveness info")) \
111 \ 111 \
112 X(DefaultFunctionPrefix, std::string, dev_opt_flag, \ 112 X(DefaultFunctionPrefix, std::string, dev_opt_flag, \
113 "default-function-prefix", \ 113 "default-function-prefix", \
114 cl::desc("Define default function prefix for naming " \ 114 cl::desc("Define default function prefix for naming unnamed functions"), \
115 "unnamed functions"), \ 115 cl::init("Function")) \
116 cl::init(Ice::BuildDefs::dump() ? "Function" : "F")) \
117 \ 116 \
118 X(DefaultGlobalPrefix, std::string, dev_opt_flag, "default-global-prefix", \ 117 X(DefaultGlobalPrefix, std::string, dev_opt_flag, "default-global-prefix", \
119 cl::desc("Define default global prefix for naming " \ 118 cl::desc("Define default global prefix for naming unnamed globals"), \
120 "unnamed globals"), \ 119 cl::init("Global")) \
121 cl::init(Ice::BuildDefs::dump() ? "Global" : "G")) \
122 \ 120 \
123 X(DisableHybridAssembly, bool, dev_opt_flag, "no-hybrid-asm", \ 121 X(DisableHybridAssembly, bool, dev_opt_flag, "no-hybrid-asm", \
124 cl::desc("Disable hybrid assembly when -filetype=iasm"), cl::init(false)) \ 122 cl::desc("Disable hybrid assembly when -filetype=iasm"), cl::init(false)) \
125 \ 123 \
126 X(DisableInternal, bool, dev_opt_flag, "externalize", \ 124 X(DisableInternal, bool, dev_opt_flag, "externalize", \
127 cl::desc("Externalize all symbols")) \ 125 cl::desc("Externalize all symbols")) \
128 \ 126 \
129 X(DisableTranslation, bool, dev_opt_flag, "notranslate", \ 127 X(DisableTranslation, bool, dev_opt_flag, "notranslate", \
130 cl::desc("Disable Subzero translation")) \ 128 cl::desc("Disable Subzero translation")) \
131 \ 129 \
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \ 335 clEnumValN(Ice::IceV_None, "none", "No verbosity"), clEnumValEnd)) \
338 \ 336 \
339 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \ 337 X(VerboseFocusOn, std::string, dev_opt_flag, "verbose-focus", \
340 cl::desc("Override with -verbose=none except for the specified function"), \ 338 cl::desc("Override with -verbose=none except for the specified function"), \
341 cl::init("")) 339 cl::init(""))
342 //#define X(Name, Type, ClType, ...) 340 //#define X(Name, Type, ClType, ...)
343 341
344 } // end of namespace Ice 342 } // end of namespace Ice
345 343
346 #endif // SUBZERO_SRC_ICECLFLAGS_DEF 344 #endif // SUBZERO_SRC_ICECLFLAGS_DEF
OLDNEW
« no previous file with comments | « src/IceCfg.cpp ('k') | src/IceGlobalContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698