Home
last modified time | relevance | path

Searched refs:cl (Results 1 – 25 of 2670) sorted by relevance

12345678910>>...107

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
Dllvm-pdbutil.cpp102 cl::SubCommand DumpSubcommand("dump", "Dump MSF and CodeView debug info");
103 cl::SubCommand BytesSubcommand("bytes", "Dump raw bytes from the PDB file");
105 cl::SubCommand
109 cl::SubCommand
112 cl::SubCommand
116 cl::SubCommand
120 cl::SubCommand MergeSubcommand("merge",
123 cl::SubCommand ExplainSubcommand("explain",
126 cl::SubCommand ExportSubcommand("export",
129 cl::OptionCategory TypeCategory("Symbol Type Options");
[all …]
Dllvm-pdbutil.h78 extern llvm::cl::list<std::string> WithName;
80 extern llvm::cl::opt<bool> Compilands;
81 extern llvm::cl::opt<bool> Symbols;
82 extern llvm::cl::opt<bool> Globals;
83 extern llvm::cl::opt<bool> Classes;
84 extern llvm::cl::opt<bool> Enums;
85 extern llvm::cl::opt<bool> Typedefs;
86 extern llvm::cl::opt<bool> All;
87 extern llvm::cl::opt<bool> ExcludeCompilerGenerated;
89 extern llvm::cl::opt<bool> NoEnumDefs;
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/
DTargetMachine.cpp53 static cl::opt<bool, true>
55 cl::desc("Print generated machine code"),
56 cl::location(PrintMachineCode), cl::init(false));
57 static cl::opt<bool, true>
59 cl::desc("Disable frame pointer elimination optimization"),
60 cl::location(NoFramePointerElim),
61 cl::init(false));
62 static cl::opt<bool, true>
64 cl::desc("Disable frame pointer elimination optimization for non-leaf funcs"),
65 cl::location(NoFramePointerElimNonLeaf),
[all …]
/external/grpc-grpc/test/core/util/
Dcmdline_test.cc32 gpr_cmdline* cl; in test_simple_int() local
38 cl = gpr_cmdline_create(nullptr); in test_simple_int()
39 gpr_cmdline_add_int(cl, "foo", nullptr, &x); in test_simple_int()
41 gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); in test_simple_int()
43 gpr_cmdline_destroy(cl); in test_simple_int()
48 gpr_cmdline* cl; in test_eq_int() local
53 cl = gpr_cmdline_create(nullptr); in test_eq_int()
54 gpr_cmdline_add_int(cl, "foo", nullptr, &x); in test_eq_int()
56 gpr_cmdline_parse(cl, GPR_ARRAY_SIZE(args), args); in test_eq_int()
58 gpr_cmdline_destroy(cl); in test_eq_int()
[all …]
Dcmdline.cc50 int (*state)(gpr_cmdline* cl, char* arg);
56 static int normal_state(gpr_cmdline* cl, char* arg);
59 gpr_cmdline* cl = static_cast<gpr_cmdline*>(gpr_zalloc(sizeof(gpr_cmdline))); in gpr_cmdline_create() local
61 cl->description = description; in gpr_cmdline_create()
62 cl->state = normal_state; in gpr_cmdline_create()
64 return cl; in gpr_cmdline_create()
67 void gpr_cmdline_set_survive_failure(gpr_cmdline* cl) { in gpr_cmdline_set_survive_failure() argument
68 cl->survive_failure = 1; in gpr_cmdline_set_survive_failure()
71 void gpr_cmdline_destroy(gpr_cmdline* cl) { in gpr_cmdline_destroy() argument
72 while (cl->args) { in gpr_cmdline_destroy()
[all …]
/external/llvm/tools/llvm-pdbdump/
Dllvm-pdbdump.cpp93 cl::SubCommand RawSubcommand("raw", "Dump raw structure of the PDB file");
94 cl::SubCommand
97 cl::SubCommand
100 cl::SubCommand
104 cl::OptionCategory TypeCategory("Symbol Type Options");
105 cl::OptionCategory FilterCategory("Filtering Options");
106 cl::OptionCategory OtherOptions("Other Options");
109 cl::list<std::string> InputFilenames(cl::Positional,
110 cl::desc("<input PDB files>"),
111 cl::OneOrMore, cl::sub(PrettySubcommand));
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp47 cl::list<std::string> InputFilenames(cl::Positional,
48 cl::desc("<input object files>"),
49 cl::ZeroOrMore);
52 cl::opt<bool> WideOutput("wide",
53 cl::desc("Ignored for compatibility with GNU readelf"));
54 cl::alias WideOutputShort("W",
55 cl::desc("Alias for --wide"),
56 cl::aliasopt(WideOutput));
59 cl::opt<bool> FileHeaders("file-headers",
60 cl::desc("Display file headers "));
[all …]
/external/llvm/include/llvm/CodeGen/
DCommandFlags.h34 cl::opt<std::string>
35 MArch("march", cl::desc("Architecture to generate code for (see --version)"));
37 cl::opt<std::string>
39 cl::desc("Target a specific cpu type (-mcpu=help for details)"),
40 cl::value_desc("cpu-name"),
41 cl::init(""));
43 cl::list<std::string>
45 cl::CommaSeparated,
46 cl::desc("Target specific attributes (-mattr=help for details)"),
47 cl::value_desc("a1,+a2,-a3,..."));
[all …]
/external/llvm/tools/llvm-readobj/
Dllvm-readobj.cpp49 cl::list<std::string> InputFilenames(cl::Positional,
50 cl::desc("<input object files>"),
51 cl::ZeroOrMore);
54 cl::opt<bool> FileHeaders("file-headers",
55 cl::desc("Display file headers "));
56 cl::alias FileHeadersShort("h",
57 cl::desc("Alias for --file-headers"),
58 cl::aliasopt(FileHeaders));
61 cl::opt<bool> Sections("sections",
62 cl::desc("Display all sections."));
[all …]
/external/llvm/tools/llvm-cov/
Dgcov.cpp85 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain()
86 cl::desc("SOURCEFILE")); in gcovMain()
88 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain()
89 cl::desc("Display all basic blocks")); in gcovMain()
90 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
92 cl::opt<bool> BranchProb("b", cl::Grouping, cl::init(false), in gcovMain()
93 cl::desc("Display branch probabilities")); in gcovMain()
94 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); in gcovMain()
96 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain()
97 cl::desc("Display branch counts instead " in gcovMain()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cov/
Dgcov.cpp85 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain()
86 cl::desc("SOURCEFILE")); in gcovMain()
88 cl::opt<bool> AllBlocks("a", cl::Grouping, cl::init(false), in gcovMain()
89 cl::desc("Display all basic blocks")); in gcovMain()
90 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); in gcovMain()
92 cl::opt<bool> BranchProb("b", cl::Grouping, cl::init(false), in gcovMain()
93 cl::desc("Display branch probabilities")); in gcovMain()
94 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); in gcovMain()
96 cl::opt<bool> BranchCount("c", cl::Grouping, cl::init(false), in gcovMain()
97 cl::desc("Display branch counts instead " in gcovMain()
[all …]
/external/ltp/utils/ffsb-6.0-rc2/
Dcirlist.c24 void init_cirlist(struct cirlist *cl) in init_cirlist() argument
26 cl->count = 0; in init_cirlist()
27 cl->head = NULL; in init_cirlist()
30 int cl_empty(struct cirlist *cl) in cl_empty() argument
32 return !(cl->count); in cl_empty()
35 void cl_insert_tail(struct cirlist *cl, cldatatype object) in cl_insert_tail() argument
39 if (cl->count == 0) { in cl_insert_tail()
40 assert(cl->head == NULL); in cl_insert_tail()
41 cl->head = new; in cl_insert_tail()
42 cl->head->next = cl->head; in cl_insert_tail()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-xray/
Dxray-graph-diff.cpp31 static cl::SubCommand GraphDiff("graph-diff",
33 static cl::opt<std::string> GraphDiffInput1(cl::Positional,
34 cl::desc("<xray log file 1>"),
35 cl::Required, cl::sub(GraphDiff));
36 static cl::opt<std::string> GraphDiffInput2(cl::Positional,
37 cl::desc("<xray log file 2>"),
38 cl::Required, cl::sub(GraphDiff));
40 static cl::opt<bool>
42 cl::desc("Keep going on errors encountered"),
43 cl::sub(GraphDiff), cl::init(false));
[all …]
/external/llvm/unittests/Support/
DCommandLineTest.cpp49 class StackOption : public cl::opt<T> {
50 typedef cl::opt<T> Base;
77 class StackSubCommand : public cl::SubCommand {
89 cl::OptionCategory TestCategory("Test Options", "Description");
91 StackOption<int> TestOption("test-option", cl::desc("old description")); in TEST()
97 StringMap<cl::Option *> &Map = in TEST()
98 cl::getRegisteredOptions(*cl::TopLevelSubCommand); in TEST()
103 cl::Option *Retrieved = Map["test-option"]; in TEST()
106 ASSERT_EQ(&cl::GeneralCategory,Retrieved->Category) << in TEST()
125 Retrieved->setHiddenFlag(cl::Hidden); in TEST()
[all …]
/external/libcxx/test/std/utilities/function.objects/func.invoke/
Dinvoke.pass.cpp152 TestClass cl(42); in bullet_one_two_tests() local
153 test_b12<int&(NonCopyable&&) &, int&>(cl); in bullet_one_two_tests()
154 test_b12<int const&(NonCopyable&&) const &, int const&>(cl); in bullet_one_two_tests()
155 test_b12<int volatile&(NonCopyable&&) volatile &, int volatile&>(cl); in bullet_one_two_tests()
156 test_b12<int const volatile&(NonCopyable&&) const volatile &, int const volatile&>(cl); in bullet_one_two_tests()
158 test_b12<int&&(NonCopyable&&) &&, int&&>(std::move(cl)); in bullet_one_two_tests()
159 test_b12<int const&&(NonCopyable&&) const &&, int const&&>(std::move(cl)); in bullet_one_two_tests()
160 test_b12<int volatile&&(NonCopyable&&) volatile &&, int volatile&&>(std::move(cl)); in bullet_one_two_tests()
161 …st_b12<int const volatile&&(NonCopyable&&) const volatile &&, int const volatile&&>(std::move(cl)); in bullet_one_two_tests()
164 DerivedFromTestClass cl(42); in bullet_one_two_tests() local
[all …]
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_cl.h48 static inline void cl_pack_emit_reloc(struct vc4_cl *cl, const struct vc4_cl_reloc *);
69 void vc4_init_cl(struct vc4_job *job, struct vc4_cl *cl);
70 void vc4_reset_cl(struct vc4_cl *cl);
76 static inline uint32_t cl_offset(struct vc4_cl *cl) in cl_offset() argument
78 return (char *)cl->next - (char *)cl->base; in cl_offset()
82 cl_advance(struct vc4_cl_out **cl, uint32_t n) in cl_advance() argument
84 (*cl) = (struct vc4_cl_out *)((char *)(*cl) + n); in cl_advance()
88 cl_start(struct vc4_cl *cl) in cl_start() argument
90 return cl->next; in cl_start()
94 cl_end(struct vc4_cl *cl, struct vc4_cl_out *next) in cl_end() argument
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonTargetMachine.cpp31 static cl::opt<bool> EnableCExtOpt("hexagon-cext", cl::Hidden, cl::ZeroOrMore,
32 cl::init(true), cl::desc("Enable Hexagon constant-extender optimization"));
34 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore,
35 cl::init(true), cl::desc("Enable RDF-based optimizations"));
37 static cl::opt<bool> DisableHardwareLoops("disable-hexagon-hwloops",
38 cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target"));
40 static cl::opt<bool> DisableAModeOpt("disable-hexagon-amodeopt",
41 cl::Hidden, cl::ZeroOrMore, cl::init(false),
42 cl::desc("Disable Hexagon Addressing Mode Optimization"));
44 static cl::opt<bool> DisableHexagonCFGOpt("disable-hexagon-cfgopt",
[all …]
/external/mesa3d/src/gallium/drivers/vc5/
Dvc5_cl.c33 vc5_init_cl(struct vc5_job *job, struct vc5_cl *cl) in vc5_init_cl() argument
35 cl->base = NULL; in vc5_init_cl()
36 cl->next = cl->base; in vc5_init_cl()
37 cl->size = 0; in vc5_init_cl()
38 cl->job = job; in vc5_init_cl()
42 vc5_cl_ensure_space(struct vc5_cl *cl, uint32_t space, uint32_t alignment) in vc5_cl_ensure_space() argument
44 uint32_t offset = align(cl_offset(cl), alignment); in vc5_cl_ensure_space()
46 if (offset + space <= cl->size) { in vc5_cl_ensure_space()
47 cl->next = cl->base + offset; in vc5_cl_ensure_space()
51 vc5_bo_unreference(&cl->bo); in vc5_cl_ensure_space()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/opt/
Dopt.cpp67 static cl::list<const PassInfo*, bool, PassNameParser>
68 PassList(cl::desc("Optimizations available:"));
74 static cl::opt<std::string> PassPipeline(
76 cl::desc("A textual description of the pass pipeline for optimizing"),
77 cl::Hidden);
81 static cl::opt<std::string>
82 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
83 cl::init("-"), cl::value_desc("filename"));
85 static cl::opt<std::string>
86 OutputFilename("o", cl::desc("Override output filename"),
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DTargetPassConfig.cpp51 cl::opt<bool> EnableIPRA("enable-ipra", cl::init(false), cl::Hidden,
52 cl::desc("Enable interprocedural register allocation "
54 static cl::opt<bool> DisablePostRASched("disable-post-ra", cl::Hidden,
55 cl::desc("Disable Post Regalloc Scheduler"));
56 static cl::opt<bool> DisableBranchFold("disable-branch-fold", cl::Hidden,
57 cl::desc("Disable branch folding"));
58 static cl::opt<bool> DisableTailDuplicate("disable-tail-duplicate", cl::Hidden,
59 cl::desc("Disable tail duplication"));
60 static cl::opt<bool> DisableEarlyTailDup("disable-early-taildup", cl::Hidden,
61 cl::desc("Disable pre-register allocation tail duplication"));
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DCommandLineTest.cpp55 template <typename T, typename Base = cl::opt<T>>
69 class StackSubCommand : public cl::SubCommand {
81 cl::OptionCategory TestCategory("Test Options", "Description");
83 StackOption<int> TestOption("test-option", cl::desc("old description")); in TEST()
89 StringMap<cl::Option *> &Map = in TEST()
90 cl::getRegisteredOptions(*cl::TopLevelSubCommand); in TEST()
95 cl::Option *Retrieved = Map["test-option"]; in TEST()
98 ASSERT_EQ(&cl::GeneralCategory,Retrieved->Category) << in TEST()
117 Retrieved->setHiddenFlag(cl::Hidden); in TEST()
118 ASSERT_EQ(cl::Hidden, TestOption.getOptionHiddenFlag()) << in TEST()
[all …]
/external/libchrome/base/
Dcommand_line_unittest.cc50 CommandLine cl(arraysize(argv), argv); in TEST() local
52 EXPECT_FALSE(cl.GetCommandLineString().empty()); in TEST()
53 EXPECT_FALSE(cl.HasSwitch("cruller")); in TEST()
54 EXPECT_FALSE(cl.HasSwitch("flim")); in TEST()
55 EXPECT_FALSE(cl.HasSwitch("program")); in TEST()
56 EXPECT_FALSE(cl.HasSwitch("dog")); in TEST()
57 EXPECT_FALSE(cl.HasSwitch("cat")); in TEST()
58 EXPECT_FALSE(cl.HasSwitch("output-rotation")); in TEST()
59 EXPECT_FALSE(cl.HasSwitch("not-a-switch")); in TEST()
60 EXPECT_FALSE(cl.HasSwitch("--")); in TEST()
[all …]
/external/llvm/lib/Target/Hexagon/
DHexagonSubtarget.cpp29 static cl::opt<bool> EnableMemOps("enable-hexagon-memops",
30 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(true),
31 cl::desc("Generate V4 MEMOP in code generation for Hexagon target"));
33 static cl::opt<bool> DisableMemOps("disable-hexagon-memops",
34 cl::Hidden, cl::ZeroOrMore, cl::ValueDisallowed, cl::init(false),
35 cl::desc("Do not generate V4 MEMOP in code generation for Hexagon target"));
37 static cl::opt<bool> EnableIEEERndNear("enable-hexagon-ieee-rnd-near",
38 cl::Hidden, cl::ZeroOrMore, cl::init(false),
39 cl::desc("Generate non-chopped conversion from fp to int."));
41 static cl::opt<bool> EnableBSBSched("enable-bsb-sched",
[all …]
DHexagonTargetMachine.cpp30 static cl::opt<bool> EnableRDFOpt("rdf-opt", cl::Hidden, cl::ZeroOrMore,
31 cl::init(true), cl::desc("Enable RDF-based optimizations"));
33 static cl::opt<bool> DisableHardwareLoops("disable-hexagon-hwloops",
34 cl::Hidden, cl::desc("Disable Hardware Loops for Hexagon target"));
36 static cl::opt<bool> DisableAModeOpt("disable-hexagon-amodeopt",
37 cl::Hidden, cl::ZeroOrMore, cl::init(false),
38 cl::desc("Disable Hexagon Addressing Mode Optimization"));
40 static cl::opt<bool> DisableHexagonCFGOpt("disable-hexagon-cfgopt",
41 cl::Hidden, cl::ZeroOrMore, cl::init(false),
42 cl::desc("Disable Hexagon CFG Optimization"));
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-mca/
Dllvm-mca.cpp58 static cl::OptionCategory ToolOptions("Tool Options");
59 static cl::OptionCategory ViewOptions("View Options");
61 static cl::opt<std::string> InputFilename(cl::Positional,
62 cl::desc("<input file>"),
63 cl::cat(ToolOptions), cl::init("-"));
65 static cl::opt<std::string> OutputFilename("o", cl::desc("Output filename"),
66 cl::init("-"), cl::cat(ToolOptions),
67 cl::value_desc("filename"));
69 static cl::opt<std::string>
70 ArchName("march", cl::desc("Target arch to assemble for, "
[all …]

12345678910>>...107