Searched refs:Options (Results 251 - 275 of 437) sorted by relevance

<<1112131415161718

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Passes/
H A DPassBuilder.cpp630 InstrProfOptions Options; local
632 Options.InstrProfileOutput = ProfileFile;
634 Options.DoCounterPromotion = true;
635 Options.UseBFIInPromotion = IsCS;
636 MPM.addPass(InstrProfiling(Options, IsCS));
655 InstrProfOptions Options; local
657 Options.InstrProfileOutput = ProfileFile;
659 Options.DoCounterPromotion = false;
660 Options.UseBFIInPromotion = IsCS;
661 MPM.addPass(InstrProfiling(Options, IsC
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.cpp631 TTI::MemCmpExpansionOptions Options; local
632 Options.AllowOverlappingLoads = !ST->requiresStrictAlign();
633 Options.MaxNumLoads = TLI->getMaxExpandSizeMemcmp(OptSize);
634 Options.NumLoadsPerBlock = Options.MaxNumLoads;
638 Options.LoadSizes = {8, 4, 2, 1};
639 return Options;
H A DAArch64CallLowering.cpp466 MF.getTarget().Options.GuaranteedTailCallOpt)) {
734 if (MF.getTarget().Options.GuaranteedTailCallOpt)
788 bool IsSibCall = !MF.getTarget().Options.GuaranteedTailCallOpt;
1019 MF.getTarget().Options.GuaranteedTailCallOpt)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp173 const TargetOptions Options; member in class:__anon2076::AMDGPUSimplifyLibCalls
182 : FunctionPass(ID), Options(Opt), Simplifier(TM) {
1723 static bool setFastFlags(Function &F, const TargetOptions &Options) { argument
1726 if (Options.UnsafeFPMath || Options.NoInfsFPMath)
1728 if (Options.UnsafeFPMath || Options.NoNaNsFPMath)
1730 if (Options.UnsafeFPMath) {
1754 Changed |= setFastFlags(F, Options);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp331 InstrProfOptions Options; local
333 Options.InstrProfileOutput = PGOInstrGen;
334 Options.DoCounterPromotion = true;
335 Options.UseBFIInPromotion = IsCS;
337 MPM.add(createInstrProfilingLegacyPass(Options, IsCS));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DLTOBackend.cpp152 TheTriple, Conf.CPU, Features.getString(), Conf.Options, RelocModel,
352 TM->Options.MCOptions.SplitDwarfFile = DwoFile.str().str();
354 TM->Options.MCOptions.SplitDwarfFile = Conf.SplitDwarfFile;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/
H A Dlli.cpp451 TargetOptions Options = InitTargetOptionsFromCodeGenFlags(); local
453 Options.FloatABIType = FloatABIForCalls;
455 builder.setTargetOptions(Options);
/freebsd-11-stable/lib/libefivar/
H A Defivar-dp-format.c1604 UINT16 Options; local
1615 Options = ISCSIDevPath->LoginOption;
1616 UefiDevicePathLibCatPrint (Str, "%s,", (((Options >> 1) & 0x0001) != 0) ? "CRC32C" : "None");
1617 UefiDevicePathLibCatPrint (Str, "%s,", (((Options >> 3) & 0x0001) != 0) ? "CRC32C" : "None");
1618 if (((Options >> 11) & 0x0001) != 0) {
1620 } else if (((Options >> 12) & 0x0001) != 0) {
/freebsd-11-stable/share/mk/
H A Dbsd.dep.mk15 # CTAGSFLAGS Options for ctags(1) [not set]
19 # GTAGSFLAGS Options for gtags(1) [-o]
21 # HTAGSFLAGS Options for htags(1) [not set]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp422 const std::vector<std::string> &Options, bool is64Bit)
425 for (const std::string &Option : Options)
431 const std::vector<std::string> &Options)
433 unsigned Size = ComputeLinkerOptionsLoadCommandSize(Options, is64Bit());
439 W.write<uint32_t>(Options.size());
441 for (const std::string &Option : Options) {
421 ComputeLinkerOptionsLoadCommandSize( const std::vector<std::string> &Options, bool is64Bit) argument
430 writeLinkerOptionsLoadCommand( const std::vector<std::string> &Options) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp19 #include "lldb/Interpreter/Options.h"
36 class CommandOptions : public Options {
38 CommandOptions() : Options() {}
125 Options *GetOptions() override { return &m_options; }
625 class CommandOptions : public Options {
627 CommandOptions() : Options() {}
715 Options *GetOptions() override { return &m_options; }
/freebsd-11-stable/usr.sbin/cron/crontab/
H A Dcrontab.c56 static char *Options[] = { "???", "list", "delete", "edit", "replace" }; variable
231 User, Filename, Options[(int)Option]))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSubtarget.h495 /// Options passed via command line that could influence the target
496 const TargetOptions &Options; member in class:llvm::ARMSubtarget
789 MF.getTarget().Options.DisableFramePointerElim(MF)) ||
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsAsmBackend.cpp587 const MCTargetOptions &Options) {
589 STI.getCPU(), Options);
584 createMipsAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/BPF/AsmParser/
H A DBPFAsmParser.cpp71 const MCInstrInfo &MII, const MCTargetOptions &Options)
72 : MCTargetAsmParser(Options, STI, MII) {
70 BPFAsmParser(const MCSubtargetInfo &STI, MCAsmParser &Parser, const MCInstrInfo &MII, const MCTargetOptions &Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp206 const TargetOptions &Options,
218 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
274 /// Hexagon Code Generator Pass Configuration Options.
204 HexagonTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackProtector.cpp412 (EnableSelectionDAGSP && !TM->Options.EnableFastISel &&
413 !TM->Options.EnableGlobalISel);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_profiling.cpp352 profilingLoggingInit(size_t, size_t, void *Options,
381 ConfigParser.ParseString(static_cast<const char *>(Options));
H A Dxray_basic_logging.cpp373 UNUSED size_t BufferMax, void *Options,
417 P.ParseString(static_cast<const char *>(Options));
/freebsd-11-stable/contrib/groff/contrib/pdfmark/
H A Dpdfroff.sh185 Options:
/freebsd-11-stable/crypto/openssh/
H A Dssh-keysign.c173 Options options;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCAsmBackend.cpp259 const MCTargetOptions &Options) {
256 createPPCAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcAsmBackend.cpp329 const MCTargetOptions &Options) {
326 createSparcAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUAsmBackend.cpp237 const MCTargetOptions &Options) {
234 createAMDGPUAsmBackend(const Target &T, const MCSubtargetInfo &STI, const MCRegisterInfo &MRI, const MCTargetOptions &Options) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h208 void writeLinkerOptionsLoadCommand(const std::vector<std::string> &Options);

Completed in 333 milliseconds

<<1112131415161718