Searched refs:cl (Results 126 - 150 of 878) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp46 static cl::list<std::string>
47 InputFileList(cl::Positional, cl::ZeroOrMore,
48 cl::desc("<input files>"));
58 static cl::opt<ActionType>
59 Action(cl::desc("Action to perform:"),
60 cl::init(AC_Execute),
61 cl::values(clEnumValN(AC_Execute, "execute",
72 static cl::opt<std::string>
74 cl
[all...]
/freebsd-11-stable/sys/rpc/
H A Dclnt_rc.c80 CLIENT *cl = NULL; /* client handle */ local
88 cl = mem_alloc(sizeof (CLIENT));
110 cl->cl_refs = 1;
111 cl->cl_ops = &clnt_reconnect_ops;
112 cl->cl_private = (caddr_t)(void *)rc;
113 cl->cl_auth = authnone_create();
114 cl->cl_tp = NULL;
115 cl->cl_netid = NULL;
116 return (cl);
120 clnt_reconnect_connect(CLIENT *cl) argument
224 clnt_reconnect_call( CLIENT *cl, struct rpc_callextra *ext, rpcproc_t proc, struct mbuf *args, struct mbuf **resultsp, struct timeval utimeout) argument
336 clnt_reconnect_geterr(CLIENT *cl, struct rpc_err *errp) argument
348 clnt_reconnect_freeres(CLIENT *cl, xdrproc_t xdr_res, void *res_ptr) argument
366 clnt_reconnect_control(CLIENT *cl, u_int request, void *info) argument
465 clnt_reconnect_close(CLIENT *cl) argument
490 clnt_reconnect_destroy(CLIENT *cl) argument
[all...]
H A Dclnt_bck.c122 CLIENT *cl; /* client handle */ local
132 cl = (CLIENT *)mem_alloc(sizeof (*cl));
170 cl->cl_refs = 1;
171 cl->cl_ops = &clnt_bck_ops;
172 cl->cl_private = ct;
173 cl->cl_auth = authnone_create();
175 return (cl);
180 mem_free(cl, sizeof (CLIENT));
186 CLIENT *cl, /* clien
185 clnt_bck_call( CLIENT *cl, struct rpc_callextra *ext, rpcproc_t proc, struct mbuf *args, struct mbuf **resultsp, struct timeval utimeout, SVCXPRT *xprt) argument
472 clnt_bck_geterr(CLIENT *cl, struct rpc_err *errp) argument
480 clnt_bck_freeres(CLIENT *cl, xdrproc_t xdr_res, void *res_ptr) argument
493 clnt_bck_abort(CLIENT *cl) argument
498 clnt_bck_control(CLIENT *cl, u_int request, void *info) argument
505 clnt_bck_close(CLIENT *cl) argument
531 clnt_bck_destroy(CLIENT *cl) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.cpp36 static cl::opt<unsigned> SmallDataThreshold("hexagon-small-data-threshold",
37 cl::init(8), cl::Hidden,
38 cl::desc("The maximum size of an object in the sdata section"));
40 static cl::opt<bool> NoSmallDataSorting("mno-sort-sda", cl::init(false),
41 cl::Hidden, cl::desc("Disable small data sections sorting"));
43 static cl::opt<bool> StaticsInSData("hexagon-statics-in-small-data",
44 cl
[all...]
H A DHexagonGenExtract.cpp33 static cl::opt<unsigned> ExtractCutoff("extract-cutoff", cl::init(~0U),
34 cl::Hidden, cl::desc("Cutoff for generating \"extract\""
43 static cl::opt<bool> NoSR0("extract-nosr0", cl::init(true), cl::Hidden,
44 cl::desc("No extract instruction with offset 0"));
46 static cl::opt<bool> NeedAnd("extract-needand", cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOMemOPSizeOpt.cpp63 static cl::opt<unsigned>
64 MemOPCountThreshold("pgo-memop-count-threshold", cl::Hidden, cl::ZeroOrMore,
65 cl::init(1000),
66 cl::desc("The minimum count to optimize memory "
71 static cl::opt<bool> DisableMemOPOPT("disable-memop-opt", cl::init(false),
72 cl::Hidden, cl::desc("Disable optimize"));
75 static cl
[all...]
H A DInstrProfiling.cpp62 cl::opt<std::string> MemOPSizeRange(
64 cl::desc("Set the range of size in memory intrinsic calls to be profiled "
66 cl::init(""));
69 cl::opt<unsigned> MemOPSizeLarge(
71 cl::desc("Set large value thresthold in memory intrinsic size profiling. "
73 cl::init(8192));
77 cl::opt<bool> DoNameCompression("enable-name-compression",
78 cl::desc("Enable name string compression"),
79 cl::init(true));
81 cl
[all...]
H A DHWAddressSanitizer.cpp76 static cl::opt<std::string> ClMemoryAccessCallbackPrefix(
78 cl::desc("Prefix for memory access callbacks"), cl::Hidden,
79 cl::init("__hwasan_"));
81 static cl::opt<bool>
83 cl::desc("instrument reads and writes with callbacks"),
84 cl::Hidden, cl::init(false));
86 static cl::opt<bool> ClInstrumentReads("hwasan-instrument-reads",
87 cl
[all...]
/freebsd-11-stable/sys/dev/scc/
H A Dscc_core.c58 struct scc_class *cl; local
62 cl = sc->sc_class;
70 for (c = 0; c < cl->cl_channels; c++) {
81 for (c = 0; c < cl->cl_channels; c++) {
101 struct scc_class *cl; local
116 cl = sc0->sc_class;
117 if (cl->size > sizeof(*sc)) {
118 sc = malloc(cl->size, M_SCC, M_WAITOK|M_ZERO);
124 size = abs(cl->cl_range) << sc->sc_bas.regshft;
133 &sc->sc_rrid, cl
307 struct scc_class *cl; local
353 struct scc_class *cl; local
460 struct scc_class *cl; local
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DExecution.cpp18 llvm::cl::opt<std::string>
19 ExecutorName("executor", llvm::cl::desc("The name of the executor to use."),
20 llvm::cl::init("standalone"));
59 llvm::cl::OptionCategory &Category,
62 CommonOptionsParser::create(argc, argv, Category, llvm::cl::ZeroOrMore,
91 llvm::cl::OptionCategory &Category,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86DiscriminateMemOps.cpp29 static cl::opt<bool> EnableDiscriminateMemops(
30 DEBUG_TYPE, cl::init(false),
31 cl::desc("Generate unique debug info for each instruction with a memory "
35 cl::Hidden);
37 static cl::opt<bool> BypassPrefetchInstructions(
38 "x86-bypass-prefetch-instructions", cl::init(true),
39 cl::desc("When discriminating instructions with memory operands, ignore "
43 cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DRegionInfo.cpp43 static cl::opt<bool,true>
46 cl::location(RegionInfoBase<RegionTraits<Function>>::VerifyRegionInfo),
47 cl::desc("Verify region info (time consuming)"));
49 static cl::opt<Region::PrintStyle, true> printStyleX("print-region-style",
50 cl::location(RegionInfo::printStyle),
51 cl::Hidden,
52 cl::desc("style of printing regions"),
53 cl::values(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/RISCV/MCTargetDesc/
H A DRISCVInstPrinter.cpp37 static cl::opt<bool>
39 cl::desc("Disable the emission of assembler pseudo instructions"),
40 cl::init(false), cl::Hidden);
42 static cl::opt<bool>
44 cl::desc("Print architectural register names rather than the "
46 cl::init(false), cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DRegisterUsageInfo.cpp33 static cl::opt<bool> DumpRegUsage(
34 "print-regusage", cl::init(false), cl::Hidden,
35 cl::desc("print register usage details collected for analysis."));
H A DMachineDominators.cpp31 static cl::opt<bool, true> VerifyMachineDomInfoX(
32 "verify-machine-dom-info", cl::location(VerifyMachineDomInfo), cl::Hidden,
33 cl::desc("Verify machine dominator info (time consuming)"));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MCAsmInfo.cpp27 static cl::opt<AsmWriterVariantTy> AsmWriterVariant(
28 "aarch64-neon-syntax", cl::init(Default),
29 cl::desc("Choose style of NEON code to emit from AArch64 backend:"),
30 cl::values(clEnumValN(Generic, "generic", "Emit generic NEON assembly"),
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanVerifier.cpp23 static cl::opt<bool> EnableHCFGVerifier("vplan-verify-hcfg", cl::init(false),
24 cl::Hidden,
25 cl::desc("Verify VPlan H-CFG."));
/freebsd-11-stable/contrib/netbsd-tests/lib/libm/
H A Dt_round.c60 long double al = VALL, bl, cl; local
72 cl = roundl(-al);
76 ATF_CHECK(fabsl(cl) < SMALL_NUM);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMachineScheduler.cpp14 static cl::opt<bool>
16 cl::desc("Disable scheduling addi instruction before"
17 "load for ppc"), cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZSubtarget.cpp21 static cl::opt<bool> UseSubRegLiveness(
23 cl::desc("Enable subregister liveness tracking for SystemZ (experimental)"),
24 cl::Hidden);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/i386/
H A Dashrdi3.S59 shrdl %cl, %edx, %eax // right shift low by count
60 sarl %cl, %edx // right shift high by count
65 sarl %cl, %eax // shift low by count - 32
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInline.cpp41 static cl::opt<int>
42 ArgAllocaCost("amdgpu-inline-arg-alloca-cost", cl::Hidden, cl::init(4000),
43 cl::desc("Cost of alloca argument"));
48 static cl::opt<unsigned>
49 ArgAllocaCutoff("amdgpu-inline-arg-alloca-cutoff", cl::Hidden, cl::init(256),
50 cl::desc("Maximum alloca size to use for inline cost"));
53 static cl::opt<size_t>
54 MaxBB("amdgpu-inline-max-bb", cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSpeculativeExecution.cpp80 static cl::opt<unsigned> SpecExecMaxSpeculationCost(
81 "spec-exec-max-speculation-cost", cl::init(7), cl::Hidden,
82 cl::desc("Speculative execution is not applied to basic blocks where "
90 static cl::opt<unsigned> SpecExecMaxNotHoisted(
91 "spec-exec-max-not-hoisted", cl::init(5), cl::Hidden,
92 cl::desc("Speculative execution is not applied to basic blocks where the "
96 static cl::opt<bool> SpecExecOnlyIfDivergentTarget(
97 "spec-exec-only-if-divergent-target", cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetMachine.cpp42 static cl::opt<bool>
44 cl::desc("Disable load/store vectorizer"),
45 cl::init(false), cl::Hidden);
48 static cl::opt<bool> DisableRequireStructuredCFG(
50 cl::desc("Transitional flag to turn off NVPTX's requirement on preserving "
53 cl::init(false), cl::Hidden);
55 static cl::opt<bool> UseShortPointersOpt(
57 cl
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp36 static cl::opt<bool>
37 EnableEarlyIfConvert("aarch64-early-ifcvt", cl::desc("Enable the early if "
38 "converter pass"), cl::init(true), cl::Hidden);
41 static cl::opt<bool>
42 UseAddressTopByteIgnored("aarch64-use-tbi", cl::desc("Assume that top byte of "
43 "an address is ignored"), cl::init(false), cl::Hidden);
45 static cl::opt<bool>
47 cl
[all...]

Completed in 333 milliseconds

1234567891011>>