| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-cov/ |
| D | gcov.cpp | 86 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain() 87 cl::desc("SOURCEFILE")); in gcovMain() 89 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain() 90 cl::desc("Display all basic blocks")); in gcovMain() 91 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain() 93 cl::opt<bool> BranchProb("b", cl::Grouping, cl::init(false), in gcovMain() 94 cl::desc("Display branch probabilities")); in gcovMain() 95 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); in gcovMain() 97 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain() 98 cl::desc("Display branch counts instead " in gcovMain() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| D | llvm-pdbutil.cpp | 101 cl::SubCommand DumpSubcommand("dump", "Dump MSF and CodeView debug info"); 102 cl::SubCommand BytesSubcommand("bytes", "Dump raw bytes from the PDB file"); 104 cl::SubCommand DiaDumpSubcommand("diadump", 107 cl::SubCommand 111 cl::SubCommand 114 cl::SubCommand 118 cl::SubCommand MergeSubcommand("merge", 121 cl::SubCommand ExplainSubcommand("explain", 124 cl::SubCommand ExportSubcommand("export", 127 cl::OptionCategory TypeCategory("Symbol Type Options"); [all …]
|
| D | llvm-pdbutil.h | 77 extern llvm::cl::list<std::string> WithName; 79 extern llvm::cl::opt<bool> Compilands; 80 extern llvm::cl::opt<bool> Symbols; 81 extern llvm::cl::opt<bool> Globals; 82 extern llvm::cl::opt<bool> Classes; 83 extern llvm::cl::opt<bool> Enums; 84 extern llvm::cl::opt<bool> Funcsigs; 85 extern llvm::cl::opt<bool> Arrays; 86 extern llvm::cl::opt<bool> Typedefs; 87 extern llvm::cl::opt<bool> Pointers; [all …]
|
| /freebsd-12-stable/sys/net/altq/ |
| D | altq_hfsc.c | 161 #define is_a_parent_class(cl) ((cl)->cl_children != NULL) argument 229 struct hfsc_class *cl, *parent; in hfsc_add_queue() local 260 cl = hfsc_class_create(hif, &rtsc, &lssc, &ulsc, in hfsc_add_queue() 262 if (cl == NULL) in hfsc_add_queue() 272 struct hfsc_class *cl; in hfsc_remove_queue() local 277 if ((cl = clh_to_clp(hif, a->qid)) == NULL) in hfsc_remove_queue() 280 return (hfsc_class_destroy(cl)); in hfsc_remove_queue() 287 struct hfsc_class *cl; in hfsc_getqstats() local 298 if ((cl = clh_to_clp(hif, a->qid)) == NULL) in hfsc_getqstats() 307 get_class_stats_v0(&stats.v0, cl); in hfsc_getqstats() [all …]
|
| D | altq_rmclass.c | 195 struct rm_class *cl; in rmc_newclass() local 226 cl = malloc(sizeof(struct rm_class), M_DEVBUF, M_NOWAIT | M_ZERO); in rmc_newclass() 227 if (cl == NULL) in rmc_newclass() 229 CALLOUT_INIT(&cl->callout_); in rmc_newclass() 230 cl->q_ = malloc(sizeof(class_queue_t), M_DEVBUF, M_NOWAIT | M_ZERO); in rmc_newclass() 231 if (cl->q_ == NULL) { in rmc_newclass() 232 free(cl, M_DEVBUF); in rmc_newclass() 239 cl->children_ = NULL; in rmc_newclass() 240 cl->parent_ = parent; in rmc_newclass() 241 cl->borrow_ = borrow; in rmc_newclass() [all …]
|
| D | altq_fairq.c | 192 struct fairq_class *cl; in fairq_add_queue() local 207 cl = fairq_class_create(pif, a->priority, a->qlimit, a->bandwidth, in fairq_add_queue() 209 if (cl == NULL) in fairq_add_queue() 219 struct fairq_class *cl; in fairq_remove_queue() local 224 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in fairq_remove_queue() 227 return (fairq_class_destroy(cl)); in fairq_remove_queue() 234 struct fairq_class *cl; in fairq_getqstats() local 241 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in fairq_getqstats() 247 get_class_stats(&stats, cl); in fairq_getqstats() 262 struct fairq_class *cl; in fairq_clear_interface() local [all …]
|
| D | altq_priq.c | 162 struct priq_class *cl; in priq_add_queue() local 177 cl = priq_class_create(pif, a->priority, a->qlimit, in priq_add_queue() 179 if (cl == NULL) in priq_add_queue() 189 struct priq_class *cl; in priq_remove_queue() local 194 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in priq_remove_queue() 197 return (priq_class_destroy(cl)); in priq_remove_queue() 204 struct priq_class *cl; in priq_getqstats() local 211 if ((cl = clh_to_clp(pif, a->qid)) == NULL) in priq_getqstats() 217 get_class_stats(&stats, cl); in priq_getqstats() 232 struct priq_class *cl; in priq_clear_interface() local [all …]
|
| /freebsd-12-stable/lib/libc/iconv/ |
| D | citrus_lookup.c | 89 seq_get_num_entries_db(struct _citrus_lookup *cl) in seq_get_num_entries_db() argument 92 return (cl->cl_dbnum); in seq_get_num_entries_db() 96 seq_next_db(struct _citrus_lookup *cl, struct _region *key, in seq_next_db() argument 100 if (cl->cl_key) { in seq_next_db() 102 _region_init(key, cl->cl_key, cl->cl_keylen); in seq_next_db() 103 return (_db_lookup_by_s(cl->cl_db, cl->cl_key, data, in seq_next_db() 104 &cl->cl_dblocator)); in seq_next_db() 107 if (cl->cl_rewind) { in seq_next_db() 108 cl->cl_dbidx = 0; in seq_next_db() 110 cl->cl_rewind = 0; in seq_next_db() [all …]
|
| /freebsd-12-stable/contrib/libarchive/libarchive/test/ |
| D | test_archive_cmdline.c | 34 struct archive_cmdline *cl; in DEFINE_TEST() local 37 assert((cl = __archive_cmdline_allocate()) != NULL); in DEFINE_TEST() 38 if (cl == NULL) in DEFINE_TEST() 40 assertEqualInt(ARCHIVE_OK, __archive_cmdline_parse(cl, "gzip")); in DEFINE_TEST() 41 assertEqualInt(1, cl->argc); in DEFINE_TEST() 42 assertEqualString("gzip", cl->path); in DEFINE_TEST() 43 assertEqualString("gzip", cl->argv[0]); in DEFINE_TEST() 44 assertEqualInt(ARCHIVE_OK, __archive_cmdline_free(cl)); in DEFINE_TEST() 46 assert((cl = __archive_cmdline_allocate()) != NULL); in DEFINE_TEST() 47 if (cl == NULL) in DEFINE_TEST() [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | CommandFlags.cpp | 25 static cl::opt<TY> *NAME##View; \ 32 static cl::list<TY> *NAME##View; \ 104 static cl::opt<std::string> MArch( in CGOPT() 105 "march", cl::desc("Architecture to generate code for (see --version)")); in CGOPT() 108 static cl::opt<std::string> MCPU( in CGOPT() 109 "mcpu", cl::desc("Target a specific cpu type (-mcpu=help for details)"), in CGOPT() 110 cl::value_desc("cpu-name"), cl::init("")); in CGOPT() 113 static cl::list<std::string> MAttrs( in CGOPT() 114 "mattr", cl::CommaSeparated, in CGOPT() 115 cl::desc("Target specific attributes (-mattr=help for details)"), in CGOPT() [all …]
|
| D | TargetPassConfig.cpp | 56 static cl::opt<bool> 57 EnableIPRA("enable-ipra", cl::init(false), cl::Hidden, 58 cl::desc("Enable interprocedural register allocation " 60 static cl::opt<bool> DisablePostRASched("disable-post-ra", cl::Hidden, 61 cl::desc("Disable Post Regalloc Scheduler")); 62 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden, 63 cl::desc("Disable branch folding")); 64 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden, 65 cl::desc("Disable tail duplication")); 66 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden, [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonTargetMachine.cpp | 34 static cl::opt<bool> EnableCExtOpt("hexagon-cext", cl::Hidden, cl::ZeroOrMore, 35 cl::init(true), cl::desc("Enable Hexagon constant-extender optimization")); 37 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore, 38 cl::init(true), cl::desc("Enable RDF-based optimizations")); 40 static cl::opt<bool> DisableHardwareLoops("disable-hexagon-hwloops", 41 cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target")); 43 static cl::opt<bool> DisableAModeOpt("disable-hexagon-amodeopt", 44 cl::Hidden, cl::ZeroOrMore, cl::init(false), 45 cl::desc("Disable Hexagon Addressing Mode Optimization")); 47 static cl::opt<bool> DisableHexagonCFGOpt("disable-hexagon-cfgopt", [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mca/ |
| D | llvm-mca.cpp | 71 static cl::OptionCategory ToolOptions("Tool Options"); 72 static cl::OptionCategory ViewOptions("View Options"); 74 static cl::opt<std::string> InputFilename(cl::Positional, 75 cl::desc("<input file>"), 76 cl::cat(ToolOptions), cl::init("-")); 78 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"), 79 cl::init("-"), cl::cat(ToolOptions), 80 cl::value_desc("filename")); 82 static cl::opt<std::string> 84 cl::desc("Target architecture. " [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-xray/ |
| D | xray-graph-diff.cpp | 30 static cl::SubCommand GraphDiff("graph-diff", 32 static cl::opt<std::string> GraphDiffInput1(cl::Positional, 33 cl::desc("<xray log file 1>"), 34 cl::Required, cl::sub(GraphDiff)); 35 static cl::opt<std::string> GraphDiffInput2(cl::Positional, 36 cl::desc("<xray log file 2>"), 37 cl::Required, cl::sub(GraphDiff)); 39 static cl::opt<bool> 41 cl::desc("Keep going on errors encountered"), 42 cl::sub(GraphDiff), cl::init(false)); [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-mc/ |
| D | llvm-mc.cpp | 46 static cl::OptionCategory MCCategory("MC Options"); 48 static cl::opt<std::string> InputFilename(cl::Positional, 49 cl::desc("<input file>"), 50 cl::init("-"), cl::cat(MCCategory)); 52 static cl::list<std::string> 53 DisassemblerOptions("M", cl::desc("Disassembler options"), 54 cl::cat(MCCategory)); 56 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"), 57 cl::value_desc("filename"), 58 cl::init("-"), cl::cat(MCCategory)); [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/opt/ |
| D | opt.cpp | 69 static cl::list<const PassInfo *, bool, PassNameParser> PassList(cl::desc( 72 static cl::opt<bool> EnableNewPassManager( 74 cl::desc("Enable the new pass manager, translating " 77 cl::init(LLVM_ENABLE_NEW_PASS_MANAGER)); 83 static cl::opt<std::string> PassPipeline( 85 cl::desc( 89 static cl::opt<bool> PrintPasses("print-passes", 90 cl::desc("Print available passes that can be " 93 static cl::opt<std::string> 94 InputFilename(cl::Positional, cl::desc("<input bitcode file>"), [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | SizeOpts.cpp | 17 cl::opt<bool> llvm::EnablePGSO( 18 "pgso", cl::Hidden, cl::init(true), 19 cl::desc("Enable the profile guided size optimizations. ")); 21 cl::opt<bool> llvm::PGSOLargeWorkingSetSizeOnly( 22 "pgso-lwss-only", cl::Hidden, cl::init(true), 23 cl::desc("Apply the profile guided size optimizations only " 26 cl::opt<bool> llvm::PGSOColdCodeOnly( 27 "pgso-cold-code-only", cl::Hidden, cl::init(false), 28 cl::desc("Apply the profile guided size optimizations only " 31 cl::opt<bool> llvm::PGSOColdCodeOnlyForInstrPGO( [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-extract/ |
| D | llvm-extract.cpp | 37 cl::OptionCategory ExtractCat("llvm-extract Options"); 40 static cl::opt<std::string> InputFilename(cl::Positional, 41 cl::desc("<input bitcode file>"), 42 cl::init("-"), 43 cl::value_desc("filename")); 45 static cl::opt<std::string> OutputFilename("o", 46 cl::desc("Specify output filename"), 47 cl::value_desc("filename"), 48 cl::init("-"), cl::cat(ExtractCat)); 50 static cl::opt<bool> Force("f", cl::desc("Enable binary output on terminals"), [all …]
|
| /freebsd-12-stable/contrib/llvm-project/clang/tools/clang-format/ |
| D | ClangFormat.cpp | 30 static cl::opt<bool> Help("h", cl::desc("Alias for -help"), cl::Hidden); 34 static cl::OptionCategory ClangFormatCategory("Clang-format options"); 36 static cl::list<unsigned> 38 cl::desc("Format a range starting at this byte offset.\n" 42 cl::cat(ClangFormatCategory)); 43 static cl::list<unsigned> 45 cl::desc("Format a range of this length (in bytes).\n" 52 cl::cat(ClangFormatCategory)); 53 static cl::list<std::string> 55 cl::desc("<start line>:<end line> - format a range of\n" [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-as/ |
| D | llvm-as.cpp | 33 cl::OptionCategory AsCat("llvm-as Options"); 35 static cl::opt<std::string> InputFilename(cl::Positional, 36 cl::desc("<input .llvm file>"), 37 cl::init("-")); 39 static cl::opt<std::string> OutputFilename("o", 40 cl::desc("Override output filename"), 41 cl::value_desc("filename"), 42 cl::cat(AsCat)); 44 static cl::opt<bool> Force("f", cl::desc("Enable binary output on terminals"), 45 cl::cat(AsCat)); [all …]
|
| /freebsd-12-stable/lib/libc/i386/string/ |
| D | strcmp.S | 61 L2: movb (%eax),%cl 62 testb %cl,%cl 64 cmpb %cl,(%edx) 68 movb (%eax),%cl 69 testb %cl,%cl 71 cmpb %cl,(%edx) 75 movb (%eax),%cl 76 testb %cl,%cl 78 cmpb %cl,(%edx) 82 movb (%eax),%cl [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64TargetMachine.cpp | 52 static cl::opt<bool> EnableCCMP("aarch64-enable-ccmp", 53 cl::desc("Enable the CCMP formation pass"), 54 cl::init(true), cl::Hidden); 56 static cl::opt<bool> 58 cl::desc("Enable the conditional branch tuning pass"), 59 cl::init(true), cl::Hidden); 61 static cl::opt<bool> EnableMCR("aarch64-enable-mcr", 62 cl::desc("Enable the machine combiner pass"), 63 cl::init(true), cl::Hidden); 65 static cl::opt<bool> EnableStPairSuppress("aarch64-enable-stp-suppress", [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-lto2/ |
| D | llvm-lto2.cpp | 38 static cl::opt<char> 39 OptLevel("O", cl::desc("Optimization level. [-O0, -O1, -O2, or -O3] " 41 cl::Prefix, cl::ZeroOrMore, cl::init('2')); 43 static cl::opt<char> CGOptLevel( 45 cl::desc("Codegen optimization level (0, 1, 2 or 3, default = '2')"), 46 cl::init('2')); 48 static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore, 49 cl::desc("<input bitcode files>")); 51 static cl::opt<std::string> OutputFilename("o", cl::Required, 52 cl::desc("Output filename"), [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-link/ |
| D | llvm-link.cpp | 44 static cl::OptionCategory LinkCategory("Link Options"); 46 static cl::list<std::string> InputFilenames(cl::Positional, cl::OneOrMore, 47 cl::desc("<input bitcode files>"), 48 cl::cat(LinkCategory)); 50 static cl::list<std::string> OverridingInputs( 51 "override", cl::ZeroOrMore, cl::value_desc("filename"), 52 cl::desc( 54 cl::cat(LinkCategory)); 58 static cl::list<std::string> Imports( 59 "import", cl::ZeroOrMore, cl::value_desc("function:filename"), [all …]
|
| /freebsd-12-stable/contrib/llvm-project/llvm/tools/bugpoint/ |
| D | ExecutionDriver.cpp | 40 cl::opt<double> AbsTolerance("abs-tolerance", 41 cl::desc("Absolute error tolerated"), 42 cl::init(0.0)); 43 cl::opt<double> RelTolerance("rel-tolerance", 44 cl::desc("Relative error tolerated"), 45 cl::init(0.0)); 47 cl::opt<OutputType> InterpreterSel( 48 cl::desc("Specify the \"test\" i.e. suspect back-end:"), 49 cl::values(clEnumValN(AutoPick, "auto", "Use best guess"), 61 cl::init(AutoPick)); [all …]
|