| /src/external/apache2/llvm/dist/llvm/include/llvm-c/Transforms/ |
| PassBuilder.h | 24 * A set of options passed which are attached to the Pass Manager upon run. 44 LLVMPassBuilderOptionsRef Options); 47 * Create a new set of options for a PassBuilder 51 * to free the pass builder options. 59 void LLVMPassBuilderOptionsSetVerifyEach(LLVMPassBuilderOptionsRef Options, 65 void LLVMPassBuilderOptionsSetDebugLogging(LLVMPassBuilderOptionsRef Options, 69 LLVMPassBuilderOptionsRef Options, LLVMBool LoopInterleaving); 72 LLVMPassBuilderOptionsRef Options, LLVMBool LoopVectorization); 75 LLVMPassBuilderOptionsRef Options, LLVMBool SLPVectorization); 77 void LLVMPassBuilderOptionsSetLoopUnrolling(LLVMPassBuilderOptionsRef Options, [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/ |
| main.cpp | 10 #include "Options.h" 16 Options options; local 17 switch (options.parse(argc, argv)) { 18 case Options::Status::Failure: 20 case Options::Status::Message: 26 return pzstdMain(options);
|
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| AnalysisManager.cpp | 21 AnalyzerOptions &Options, 24 ASTCtx, Options.UnoptimizedCFG, 25 Options.ShouldIncludeImplicitDtorsInCFG, 27 Options.ShouldIncludeTemporaryDtorsInCFG, 28 Options.ShouldIncludeLifetimeInCFG, 31 Options.ShouldIncludeLoopExitInCFG || 32 Options.ShouldUnrollLoops, 33 Options.ShouldIncludeScopesInCFG, 34 Options.ShouldSynthesizeBodies, 35 Options.ShouldConditionalizeStaticInitializers [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CoverageExporter.h | 29 /// The options passed to the tool. 30 const CoverageViewOptions &Options; 36 const CoverageViewOptions &Options, raw_ostream &OS) 37 : Coverage(CoverageMapping), Options(Options), OS(OS) {}
|
| CoverageExporterJson.h | 23 const CoverageViewOptions &Options, raw_ostream &OS) 24 : CoverageExporter(CoverageMapping, Options, OS) {}
|
| CoverageExporterLcov.h | 23 const CoverageViewOptions &Options, raw_ostream &OS) 24 : CoverageExporter(CoverageMapping, Options, OS) {}
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| ilist_node_options.h | 1 //===- llvm/ADT/ilist_node_options.h - ilist_node Options -------*- C++ -*-===// 58 /// Look through \p Options for the \a ilist_sentinel_tracking option, with the 60 template <class... Options> struct extract_sentinel_tracking; 61 template <bool EnableSentinelTracking, class... Options> 63 ilist_sentinel_tracking<EnableSentinelTracking>, Options...> 65 template <class Option1, class... Options> 66 struct extract_sentinel_tracking<Option1, Options...> 67 : extract_sentinel_tracking<Options...> {}; 80 /// Look through \p Options for the \a ilist_tag option, pulling out the 82 template <class... Options> struct extract_tag [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/ |
| MemorySanitizer.h | 31 createMemorySanitizerLegacyPassPass(MemorySanitizerOptions Options = {}); 40 MemorySanitizerPass(MemorySanitizerOptions Options) : Options(Options) {} 47 MemorySanitizerOptions Options;
|
| GCOVProfiler.h | 22 GCOVProfilerPass(const GCOVOptions &Options = GCOVOptions::getDefault()) : GCOVOpts(Options) { }
|
| /src/external/apache2/llvm/dist/llvm/lib/Passes/ |
| PassBuilderBindings.cpp | 23 /// Helper struct for holding a set of builder options for LLVMRunPasses. This 25 /// versions in case we modify the options the new Pass Manager utilizes. 48 LLVMPassBuilderOptionsRef Options) { 50 LLVMPassBuilderOptions *PassOpts = unwrap(Options); 86 void LLVMPassBuilderOptionsSetVerifyEach(LLVMPassBuilderOptionsRef Options, 88 unwrap(Options)->VerifyEach = VerifyEach; 91 void LLVMPassBuilderOptionsSetDebugLogging(LLVMPassBuilderOptionsRef Options, 93 unwrap(Options)->DebugLogging = DebugLogging; 97 LLVMPassBuilderOptionsRef Options, LLVMBool LoopInterleaving) { 98 unwrap(Options)->PTO.LoopInterleaving = LoopInterleaving [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/dsymutil/ |
| dsymutil.cpp | 61 #include "Options.inc" 66 #include "Options.inc" 77 #include "Options.inc" 154 // Verify that the given combination of options makes sense. 155 static Error verifyOptions(const DsymutilOptions &Options) { 156 if (Options.InputFiles.empty()) { 161 if (Options.LinkOpts.Update && llvm::is_contained(Options.InputFiles, "-")) { 172 if (!Options.Flat && Options.OutputFile == "-" [all...] |
| /src/external/bsd/zstd/dist/contrib/pzstd/test/ |
| OptionsTest.cpp | 9 #include "Options.h" 17 bool operator==(const Options &lhs, const Options &rhs) { 27 std::ostream &operator<<(std::ostream &out, const Options &opt) { 76 constexpr auto autoMode = Options::WriteMode::Auto; 79 #define EXPECT_SUCCESS(...) EXPECT_EQ(Options::Status::Success, __VA_ARGS__) 80 #define EXPECT_FAILURE(...) EXPECT_EQ(Options::Status::Failure, __VA_ARGS__) 81 #define EXPECT_MESSAGE(...) EXPECT_EQ(Options::Status::Message, __VA_ARGS__) 88 TEST(Options, ValidInputs) { 90 Options options local 98 Options options; local 106 Options options; local 115 Options options; local 124 Options options; local 132 Options options; local 140 Options options; local 148 Options options; local 165 Options options; local 170 Options options; local 178 Options options; local 184 Options options; local 190 Options options; local 196 Options options; local 202 Options options; local 208 Options options; local 217 Options options; local 226 Options options; local 236 Options options; local 241 Options options; local 246 Options options; local 258 Options options; local 263 Options options; local 268 Options options; local 276 Options options; local 281 Options options; local 286 Options options; local 294 Options options; local 302 Options options; local 311 Options options; local 316 Options options; local 321 Options options; local 326 Options options; local 331 Options options; local 339 Options options; local 345 Options options; local 351 Options options; local 357 Options options; local 366 Options options; local 372 Options options; local 378 Options options; local 384 Options options; local 390 Options options; local 396 Options options; local 402 Options options; local 411 Options options; local 419 Options options; local 430 Options options; local 436 Options options; local 442 Options options; local 448 Options options; local 457 Options options; local 465 Options options; local 473 Options options; local 481 Options options; local 489 Options options; local 494 Options options; local 499 Options options; local 504 Options options; local 512 Options options; local 517 Options options; local 522 Options options; local 527 Options options; local 532 Options options; local [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/ |
| AVRMCAsmInfo.cpp | 19 AVRMCAsmInfo::AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options) {
|
| AVRMCAsmInfo.h | 25 explicit AVRMCAsmInfo(const Triple &TT, const MCTargetOptions &Options);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerUtilPosix.cpp | 86 void SetSignalHandler(const FuzzingOptions& Options) { 87 if (Options.UnitTimeoutSec > 0) 88 SetTimer(Options.UnitTimeoutSec / 2 + 1); 89 if (Options.HandleInt) 91 if (Options.HandleTerm) 93 if (Options.HandleSegv) 95 if (Options.HandleBus) 97 if (Options.HandleAbrt) 99 if (Options.HandleIll) 101 if (Options.HandleFpe [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| LLVMTargetMachine.cpp | 55 *MRI, getTargetTriple().str(), Options.MCOptions); 64 if (Options.BinutilsVersion.first > 0) 65 TmpAsmInfo->setBinutilsVersion(Options.BinutilsVersion); 67 if (Options.DisableIntegratedAS) 70 TmpAsmInfo->setPreserveAsmComments(Options.MCOptions.PreserveAsmComments); 72 TmpAsmInfo->setCompressDebugSections(Options.CompressDebugSections); 74 TmpAsmInfo->setRelaxELFRelocations(Options.RelaxELFRelocations); 76 if (Options.ExceptionModel != ExceptionHandling::None) 77 TmpAsmInfo->setExceptionsType(Options.ExceptionModel); 85 StringRef FS, const TargetOptions &Options, [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/MCTargetDesc/ |
| LanaiMCAsmInfo.cpp | 22 const MCTargetOptions &Options) {
|
| LanaiMCAsmInfo.h | 26 const MCTargetOptions &Options);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/MCTargetDesc/ |
| MSP430MCAsmInfo.cpp | 19 const MCTargetOptions &Options) {
|
| MSP430MCAsmInfo.h | 25 explicit MSP430MCAsmInfo(const Triple &TT, const MCTargetOptions &Options);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/ |
| MipsMCAsmInfo.h | 26 const MCTargetOptions &Options);
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/MCTargetDesc/ |
| WebAssemblyMCAsmInfo.h | 26 const MCTargetOptions &Options);
|
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCTargetOptionsCommandFlags.cpp | 103 MCTargetOptions Options; 104 Options.MCRelaxAll = getRelaxAll(); 105 Options.MCIncrementalLinkerCompatible = getIncrementalLinkerCompatible(); 106 Options.Dwarf64 = getDwarf64(); 107 Options.DwarfVersion = getDwarfVersion(); 108 Options.ShowMCInst = getShowMCInst(); 109 Options.ABIName = getABIName(); 110 Options.MCFatalWarnings = getFatalWarnings(); 111 Options.MCNoWarn = getNoWarn(); 112 Options.MCNoDeprecatedWarn = getNoDeprecatedWarn() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/ |
| MergedLoadStoreMotion.h | 43 MergedLoadStoreMotionOptions Options; 49 : Options(PassOptions) {}
|
| /src/external/apache2/llvm/lib/libLLVMLibDriver/ |
| Makefile | 11 TABLEGEN_SRC= Options.td 13 Options.inc|-gen-opt-parser-defs
|