OpenASIP
2.0
|
#include <LLVMTCECmdLineOptions.hh>
Public Member Functions | |
LLVMTCECmdLineOptions () | |
~LLVMTCECmdLineOptions () | |
virtual FunctionNameList * | primaryFunctions () const |
bool | isStandardEmulationLibDefined () const |
std::string | standardEmulationLib () const |
bool | isOptLevelDefined () const |
int | optLevel () const |
bool | isVerboseSwitchDefined () const |
bool | debugFlag () const |
bool | conservativePreRAScheduler () const |
bool | saveBackendPlugin () const |
bool | useBUScheduler () const |
bool | useTDScheduler () const |
bool | useBubbleFish2Scheduler () const |
bool | useOldBackendSources () const |
bool | disableDelaySlotFiller () const |
bool | isWorkItemAAFileDefined () const |
std::string | workItemAAFile () const |
bool | analyzeInstructionPatterns () const |
std::string | backendCacheDir () const |
TCEString | tempDir () const |
virtual std::string | getLLVMargv () const |
virtual bool | dumpDDGsDot () const |
virtual bool | dumpDDGsXML () const |
virtual bool | disableLLVMAA () const |
bool | useVectorBackend () const |
bool | isInitialStackPointerValueSet () const |
uint64_t | initialStackPointerValue () const |
bool | isDataStartAddressSet () const |
uint64_t | dataStartAddress () const |
bool | printInlineAsmWarnings () const |
bool | generatePluginOnly () const |
bool | disableAddressSpaceAA () const |
bool | disableHWLoops () const |
bool | assumeADFStackAlignment () const |
virtual void | printVersion () const |
Public Member Functions inherited from SchedulerCmdLineOptions | |
SchedulerCmdLineOptions () | |
virtual | ~SchedulerCmdLineOptions () |
virtual bool | isMachineFileDefined () const |
virtual std::string | machineFile () const |
virtual bool | isOutputFileDefined () const |
virtual std::string | outputFile () const |
virtual int | schedulingWindowSize () const |
virtual bool | useRestrictedAliasAnalyzer () const |
virtual bool | renameRegisters () const |
bool | enableStackAA () const |
bool | enableOffsetAA () const |
bool | printResourceConstraints () const |
virtual int | ifConversionThreshold () const |
virtual bool | dumpIfConversionCFGs () const |
virtual int | lowMemModeThreshold () const |
virtual bool | isLoopOptDefined () const |
virtual int | bypassDistance () const |
virtual int | noDreBypassDistance () const |
virtual int | operandShareDistance () const |
virtual bool | killDeadResults () const |
virtual FunctionNameList * | noaliasFunctions () const |
Public Member Functions inherited from CmdLineOptions | |
CmdLineOptions (std::string description, std::string version="") | |
virtual | ~CmdLineOptions () |
void | parse (char *argv[], int argc) |
void | parse (std::string argv[], int argc) |
void | parse (std::vector< std::string > argv) |
virtual void | printHelp () const |
virtual bool | isVerboseSpamSwitchDefined () const |
Public Member Functions inherited from CmdLineParser | |
CmdLineParser (std::string description) | |
virtual | ~CmdLineParser () |
virtual void | storeOptions (Options &options) |
virtual int | numberOfArguments () const |
virtual std::string | argument (int index) const |
Static Private Attributes | |
static const std::string | SWL_EMULATION_LIB = "emulation" |
static const std::string | SWS_EMULATION_LIB = "e" |
static const std::string | SWL_DEBUG_FLAG = "debug" |
static const std::string | SWL_OPT_LEVEL = "optimize" |
static const std::string | SWS_OPT_LEVEL = "O" |
static const std::string | SWL_PRIMARY_FUNCTIONS |
static const std::string | SWS_PRIMARY_FUNCTIONS = "p" |
static const std::string | SWL_EXPERIMENTAL_REGALLOC |
static const std::string | VERBOSE_SWITCH = "verbose" |
Switch for verbose output listing scheduler modules. More... | |
static const std::string | DISABLE_LLVMAA = "disable-llvmaa" |
static const std::string | CONSERVATIVE_PRE_RA_SCHEDULER |
static const std::string | LLVM_USER_ARGS = "llvm-args" |
static const std::string | DISABLE_DSF = "disable-dsf" |
static const std::string | DISABLE_ADDRESS_SPACE_AA = "disable-as-aa" |
static const std::string | SWL_DUMP_DDGS_DOT = "dump-ddgs-dot" |
static const std::string | SWL_DUMP_DDGS_XML = "dump-ddgs-xml" |
static const std::string | SWL_SAVE_BACKEND_PLUGIN |
static const std::string | SWL_BU_SCHEDULER |
static const std::string | SWL_BUBBLEFISH2_SCHEDULER |
static const std::string | SWL_TD_SCHEDULER = "td-scheduler" |
static const std::string | SWL_USE_OLD_BACKEND_SOURCES |
static const std::string | SWL_TEMP_DIR = "temp-dir" |
static const std::string | SWL_ENABLE_VECTOR_BACKEND |
static const std::string | SWL_WORK_ITEM_AA_FILE |
static const std::string | SWL_ANALYZE_INSTRUCTION_PATTERNS |
static const std::string | SWL_BACKEND_CACHE_DIR |
static const std::string | SWL_INIT_SP = "init-sp" |
static const std::string | SWL_DATA_START = "data-start" |
static const std::string | USAGE |
static const std::string | SWL_PRINT_INLINE_ASM_WARNINGS |
static const std::string | SWL_GEN_PLUGIN_ONLY |
static const std::string | SWL_DISABLE_HWLOOPS |
static const std::string | SWL_ASSUME_ADF_STACKALIGNMENT |
Additional Inherited Members | |
Protected Member Functions inherited from CmdLineOptions | |
bool | optionGiven (std::string key) const |
Protected Member Functions inherited from CmdLineParser | |
void | addOption (CmdLineOptionParser *opt) |
CmdLineOptionParser * | findOption (std::string name) const |
bool | parseOption (std::string option, std::string &name, std::string &arguments, std::string &prefix, bool &hasArgument) const |
bool | readPrefix (std::string &option, std::string &prefix, bool &longOption) const |
bool | isPrefix (std::string name) const |
Protected Attributes inherited from CmdLineParser | |
std::map< std::string, CmdLineOptionParser * > | optionLongNames_ |
Database for holding options with their long names as a key. More... | |
std::map< std::string, CmdLineOptionParser * > | optionShortNames_ |
Database for holding options with their short names as a key. More... | |
std::vector< std::string > | commandLine_ |
Command line is stored here. More... | |
std::vector< std::string > | arguments_ |
Command line arguments are stored here. More... | |
std::vector< std::string > | prefixes_ |
Legal prefixes are stored here. More... | |
Command line options class for the llvm-tce compiler CLI.
Definition at line 48 of file LLVMTCECmdLineOptions.hh.
LLVMTCECmdLineOptions::LLVMTCECmdLineOptions | ( | ) |
Constructor.
Definition at line 96 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::addOption(), CONSERVATIVE_PRE_RA_SCHEDULER, DISABLE_ADDRESS_SPACE_AA, DISABLE_DSF, DISABLE_LLVMAA, LLVM_USER_ARGS, SWL_ANALYZE_INSTRUCTION_PATTERNS, SWL_ASSUME_ADF_STACKALIGNMENT, SWL_BACKEND_CACHE_DIR, SWL_BU_SCHEDULER, SWL_BUBBLEFISH2_SCHEDULER, SWL_DATA_START, SWL_DEBUG_FLAG, SWL_DISABLE_HWLOOPS, SWL_DUMP_DDGS_DOT, SWL_DUMP_DDGS_XML, SWL_EMULATION_LIB, SWL_ENABLE_VECTOR_BACKEND, SWL_GEN_PLUGIN_ONLY, SWL_INIT_SP, SWL_OPT_LEVEL, SWL_PRIMARY_FUNCTIONS, SWL_PRINT_INLINE_ASM_WARNINGS, SWL_SAVE_BACKEND_PLUGIN, SWL_TD_SCHEDULER, SWL_TEMP_DIR, SWL_USE_OLD_BACKEND_SOURCES, SWL_WORK_ITEM_AA_FILE, SWS_EMULATION_LIB, SWS_OPT_LEVEL, SWS_PRIMARY_FUNCTIONS, and VERBOSE_SWITCH.
LLVMTCECmdLineOptions::~LLVMTCECmdLineOptions | ( | ) |
bool LLVMTCECmdLineOptions::analyzeInstructionPatterns | ( | ) | const |
Definition at line 414 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_ANALYZE_INSTRUCTION_PATTERNS.
bool LLVMTCECmdLineOptions::assumeADFStackAlignment | ( | ) | const |
Definition at line 463 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_ASSUME_ADF_STACKALIGNMENT.
Referenced by LLVMBackend::compile().
std::string LLVMTCECmdLineOptions::backendCacheDir | ( | ) | const |
Definition at line 419 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), Environment::llvmtceCachePath(), CmdLineOptionParser::String(), and SWL_BACKEND_CACHE_DIR.
Referenced by LLVMBackend::LLVMBackend().
bool LLVMTCECmdLineOptions::conservativePreRAScheduler | ( | ) | const |
Definition at line 339 of file LLVMTCECmdLineOptions.cc.
References CONSERVATIVE_PRE_RA_SCHEDULER, and CmdLineParser::findOption().
Referenced by llvm::TCETargetLowering::TCETargetLowering().
uint64_t LLVMTCECmdLineOptions::dataStartAddress | ( | ) | const |
Definition at line 441 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), SWL_DATA_START, and CmdLineOptionParser::unsignedInteger().
Referenced by llvm::LLVMTCEBuilder::dataEnd().
bool LLVMTCECmdLineOptions::debugFlag | ( | ) | const |
Returns true if the debug flag option was given.
Definition at line 303 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), and SWL_DEBUG_FLAG.
bool LLVMTCECmdLineOptions::disableAddressSpaceAA | ( | ) | const |
Definition at line 319 of file LLVMTCECmdLineOptions.cc.
References DISABLE_ADDRESS_SPACE_AA, CmdLineParser::findOption(), and CmdLineOptionParser::isDefined().
Referenced by DataDependenceGraphBuilder::memoryCategory().
bool LLVMTCECmdLineOptions::disableDelaySlotFiller | ( | ) | const |
Definition at line 324 of file LLVMTCECmdLineOptions.cc.
References DISABLE_DSF, CmdLineParser::findOption(), and CmdLineOptionParser::isDefined().
Referenced by llvm::LLVMTCEIRBuilder::LLVMTCEIRBuilder().
bool LLVMTCECmdLineOptions::disableHWLoops | ( | ) | const |
Definition at line 458 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_DISABLE_HWLOOPS.
Referenced by llvm::TCETargetLowering::TCETargetLowering().
|
virtual |
Definition at line 314 of file LLVMTCECmdLineOptions.cc.
References DISABLE_LLVMAA, CmdLineParser::findOption(), and CmdLineOptionParser::isDefined().
Referenced by DataDependenceGraphBuilder::DataDependenceGraphBuilder().
|
virtual |
Definition at line 359 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_DUMP_DDGS_DOT.
Referenced by BUBasicBlockScheduler::handleDDG(), BasicBlockScheduler::handleDDG(), BUBasicBlockScheduler::handleLoopDDG(), BasicBlockScheduler::handleLoopDDG(), BF2Scheduler::handleLoopDDG(), BBSchedulerController::handleProcedure(), BF2Scheduler::scheduleDDG(), and BasicBlockScheduler::scheduleOperation().
|
virtual |
Definition at line 364 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_DUMP_DDGS_XML.
Referenced by BUBasicBlockScheduler::handleDDG(), BasicBlockScheduler::handleDDG(), BUBasicBlockScheduler::handleLoopDDG(), BasicBlockScheduler::handleLoopDDG(), BF2Scheduler::handleLoopDDG(), BBSchedulerController::handleProcedure(), and BF2Scheduler::scheduleDDG().
bool LLVMTCECmdLineOptions::generatePluginOnly | ( | ) | const |
Definition at line 452 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), and SWL_GEN_PLUGIN_ONLY.
|
virtual |
Definition at line 348 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), LLVM_USER_ARGS, and CmdLineOptionParser::String().
uint64_t LLVMTCECmdLineOptions::initialStackPointerValue | ( | ) | const |
Definition at line 431 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), SWL_INIT_SP, and CmdLineOptionParser::unsignedInteger().
Referenced by LLVMBackend::compile().
bool LLVMTCECmdLineOptions::isDataStartAddressSet | ( | ) | const |
Definition at line 436 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_DATA_START.
Referenced by llvm::LLVMTCEBuilder::dataEnd().
bool LLVMTCECmdLineOptions::isInitialStackPointerValueSet | ( | ) | const |
Definition at line 426 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_INIT_SP.
Referenced by LLVMBackend::compile().
bool LLVMTCECmdLineOptions::isOptLevelDefined | ( | ) | const |
Returns true if optimization level switch was given.
Definition at line 281 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWS_OPT_LEVEL.
bool LLVMTCECmdLineOptions::isStandardEmulationLibDefined | ( | ) | const |
Definition at line 271 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWS_EMULATION_LIB.
|
virtual |
Return true if the verbose switch was defined in the command line.
Reimplemented from CmdLineOptions.
Definition at line 334 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and VERBOSE_SWITCH.
bool LLVMTCECmdLineOptions::isWorkItemAAFileDefined | ( | ) | const |
Definition at line 404 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_WORK_ITEM_AA_FILE.
Referenced by LLVMBackend::compile().
int LLVMTCECmdLineOptions::optLevel | ( | ) | const |
Returns optimization level defined with the -O switch.
Definition at line 292 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::integer(), and SWS_OPT_LEVEL.
Referenced by llvm::LLVMTCEIRBuilder::writeMachineFunction().
|
virtual |
Returns the list of "primary functions" that should be scheduled with the primary scheduling conf.
Rest of the functions are scheduled with the scheduling config given with -s.
Definition at line 254 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::listSize(), CmdLineOptionParser::String(), and SWS_PRIMARY_FUNCTIONS.
Referenced by llvm::LLVMTCEIRBuilder::isHotFunction().
bool LLVMTCECmdLineOptions::printInlineAsmWarnings | ( | ) | const |
Definition at line 446 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), and SWL_PRINT_INLINE_ASM_WARNINGS.
Referenced by llvm::LLVMTCEBuilder::emitInlineAsm().
|
inlinevirtual |
Print the version of the user interface.
Reimplemented from SchedulerCmdLineOptions.
Definition at line 107 of file LLVMTCECmdLineOptions.hh.
References Application::TCEVersionString().
bool LLVMTCECmdLineOptions::saveBackendPlugin | ( | ) | const |
Definition at line 369 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), CmdLineOptionParser::isFlagOn(), and SWL_SAVE_BACKEND_PLUGIN.
Referenced by LLVMBackend::compile().
std::string LLVMTCECmdLineOptions::standardEmulationLib | ( | ) | const |
Definition at line 266 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::String(), and SWS_EMULATION_LIB.
TCEString LLVMTCECmdLineOptions::tempDir | ( | ) | const |
Definition at line 394 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::String(), and SWL_TEMP_DIR.
bool LLVMTCECmdLineOptions::useBubbleFish2Scheduler | ( | ) | const |
Definition at line 379 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_BUBBLEFISH2_SCHEDULER.
Referenced by BBSchedulerController::handleBasicBlock().
bool LLVMTCECmdLineOptions::useBUScheduler | ( | ) | const |
Definition at line 374 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_BU_SCHEDULER.
Referenced by BBSchedulerController::handleBasicBlock().
bool LLVMTCECmdLineOptions::useOldBackendSources | ( | ) | const |
Definition at line 389 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_USE_OLD_BACKEND_SOURCES.
Referenced by LLVMBackend::createPlugin().
bool LLVMTCECmdLineOptions::useTDScheduler | ( | ) | const |
Definition at line 384 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_TD_SCHEDULER.
Referenced by BBSchedulerController::handleBasicBlock().
bool LLVMTCECmdLineOptions::useVectorBackend | ( | ) | const |
Definition at line 399 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::isDefined(), and SWL_ENABLE_VECTOR_BACKEND.
std::string LLVMTCECmdLineOptions::workItemAAFile | ( | ) | const |
Definition at line 409 of file LLVMTCECmdLineOptions.cc.
References CmdLineParser::findOption(), CmdLineOptionParser::String(), and SWL_WORK_ITEM_AA_FILE.
Referenced by LLVMBackend::compile().
|
staticprivate |
Definition at line 127 of file LLVMTCECmdLineOptions.hh.
Referenced by conservativePreRAScheduler(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 130 of file LLVMTCECmdLineOptions.hh.
Referenced by disableAddressSpaceAA(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 129 of file LLVMTCECmdLineOptions.hh.
Referenced by disableDelaySlotFiller(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 126 of file LLVMTCECmdLineOptions.hh.
Referenced by disableLLVMAA(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 128 of file LLVMTCECmdLineOptions.hh.
Referenced by getLLVMargv(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 141 of file LLVMTCECmdLineOptions.hh.
Referenced by analyzeInstructionPatterns(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 149 of file LLVMTCECmdLineOptions.hh.
Referenced by assumeADFStackAlignment(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 142 of file LLVMTCECmdLineOptions.hh.
Referenced by backendCacheDir(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 134 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and useBUScheduler().
|
staticprivate |
Definition at line 135 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and useBubbleFish2Scheduler().
|
staticprivate |
Definition at line 144 of file LLVMTCECmdLineOptions.hh.
Referenced by dataStartAddress(), isDataStartAddressSet(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 118 of file LLVMTCECmdLineOptions.hh.
Referenced by debugFlag(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 148 of file LLVMTCECmdLineOptions.hh.
Referenced by disableHWLoops(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 131 of file LLVMTCECmdLineOptions.hh.
Referenced by dumpDDGsDot(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 132 of file LLVMTCECmdLineOptions.hh.
Referenced by dumpDDGsXML(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 116 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 139 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and useVectorBackend().
|
staticprivate |
Definition at line 123 of file LLVMTCECmdLineOptions.hh.
|
staticprivate |
Definition at line 147 of file LLVMTCECmdLineOptions.hh.
Referenced by generatePluginOnly(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 143 of file LLVMTCECmdLineOptions.hh.
Referenced by initialStackPointerValue(), isInitialStackPointerValueSet(), and LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 119 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 121 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions().
|
staticprivate |
Definition at line 146 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and printInlineAsmWarnings().
|
staticprivate |
Definition at line 133 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and saveBackendPlugin().
|
staticprivate |
Definition at line 136 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and useTDScheduler().
|
staticprivate |
Definition at line 138 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and tempDir().
|
staticprivate |
Definition at line 137 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and useOldBackendSources().
|
staticprivate |
Definition at line 140 of file LLVMTCECmdLineOptions.hh.
Referenced by isWorkItemAAFileDefined(), LLVMTCECmdLineOptions(), and workItemAAFile().
|
staticprivate |
Definition at line 117 of file LLVMTCECmdLineOptions.hh.
Referenced by isStandardEmulationLibDefined(), LLVMTCECmdLineOptions(), and standardEmulationLib().
|
staticprivate |
Definition at line 120 of file LLVMTCECmdLineOptions.hh.
Referenced by isOptLevelDefined(), LLVMTCECmdLineOptions(), and optLevel().
|
staticprivate |
Definition at line 122 of file LLVMTCECmdLineOptions.hh.
Referenced by LLVMTCECmdLineOptions(), and primaryFunctions().
|
staticprivate |
Definition at line 145 of file LLVMTCECmdLineOptions.hh.
|
staticprivate |
Switch for verbose output listing scheduler modules.
Definition at line 125 of file LLVMTCECmdLineOptions.hh.
Referenced by isVerboseSwitchDefined(), and LLVMTCECmdLineOptions().