Searched refs:FS (Results 151 - 175 of 318) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/MCTargetDesc/
H A DVEMCTargetDesc.cpp57 StringRef FS) {
60 return createVEMCSubtargetInfoImpl(TT, CPU, FS);
56 createVEMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) argument
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DFileManager.h173 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS; member in class:clang::FileManager
253 /// \param FS if non-null, the VFS to use. Otherwise uses
256 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS = nullptr);
356 llvm::vfs::FileSystem &getVirtualFileSystem() const { return *FS; }
358 void setVirtualFileSystem(IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) { argument
359 this->FS = std::move(FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyTargetMachine.cpp118 const Target &T, const Triple &TT, StringRef CPU, StringRef FS,
124 TT, CPU, FS, Options, getEffectiveRelocModel(RM, TT),
150 std::string FS) const {
151 auto &I = SubtargetMap[CPU + FS];
153 I = std::make_unique<WebAssemblySubtarget>(TargetTriple, CPU, FS, *this);
166 std::string FS = !FSAttr.hasAttribute(Attribute::None) local
175 return getSubtargetImpl(CPU, FS);
117 WebAssemblyTargetMachine( 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-13-stable/contrib/llvm-project/clang/lib/Basic/
H A DFileManager.cpp52 IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS)
53 : FS(std::move(FS)), FileSystemOpts(FSO), SeenDirEntries(64),
57 if (!this->FS)
58 this->FS = llvm::vfs::getRealFileSystem();
442 FS->makeAbsolute(Path);
488 return FS->getBufferForFile(Filename, FileSize, RequiresNullTerminator,
493 return FS->getBufferForFile(FilePath, FileSize, RequiresNullTerminator,
509 StatCache.get(), *FS);
515 StatCache.get(), *FS);
51 FileManager(const FileSystemOptions &FSO, IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiStream.cpp290 auto &FS = *ExpectedStream;
291 if (!FS)
294 size_t StreamLen = FS->getLength();
300 BinaryStreamReader Reader(*FS);
304 OldFpoStream = std::move(FS);
314 auto &FS = *ExpectedStream;
315 if (!FS)
318 if (auto EC = NewFpoRecords.initialize(*FS))
321 NewFpoStream = std::move(FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCTargetMachine.cpp160 static std::string computeFSAdditions(StringRef FS, CodeGenOpt::Level OL, argument
162 std::string FullFS = std::string(FS);
303 StringRef CPU, StringRef FS,
309 computeFSAdditions(FS, OL, TT), Options,
327 std::string FS = !FSAttr.hasAttribute(Attribute::None) local
341 FS += FS.empty() ? "-hard-float" : ",-hard-float";
343 auto &I = SubtargetMap[CPU + FS];
357 computeFSAdditions(FS, getOptLevel(), getTargetTriple()), *this);
302 PPCTargetMachine(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-13-stable/contrib/llvm-project/clang/lib/AST/
H A DPrintfFormatString.cpp38 static bool ParsePrecision(FormatStringHandler &H, PrintfSpecifier &FS, argument
42 FS.setPrecision(ParseNonPositionAmount(Beg, E, *argIndex));
48 FS.setPrecision(Amt);
53 static bool ParseObjCFlags(FormatStringHandler &H, PrintfSpecifier &FS, argument
58 FS.setHasObjCTechnicalTerm(FlagBeg);
112 PrintfSpecifier FS; local
113 if (ParseArgPosition(H, FS, Start, I, E))
148 FS.setMaskType(MaskType);
178 FS.setIsPrivate(MatchedStr.data());
181 FS
459 const analyze_printf::PrintfSpecifier &FS = FSR.getValue(); local
[all...]
H A DScanfFormatString.cpp111 ScanfSpecifier FS; local
112 if (ParseArgPosition(H, FS, Start, I, E))
123 FS.setSuppressAssignment(I);
135 FS.setFieldWidth(Amt);
145 if (ParseLengthModifier(FS, I, E, LO, /*IsScanf=*/true) && I == E) {
205 FS.setConversionSpecifier(CS);
206 if (CS.consumesDataArgument() && !FS.getSuppressAssignment()
207 && !FS.usesPositionalArg())
208 FS.setArgIndex(argIndex++);
217 FS
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.cpp70 MipsSubtarget::MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, argument
73 : MipsGenSubtargetInfo(TT, CPU, FS), MipsArchVersion(MipsDefault),
87 MipsInstrInfo::create(initializeSubtargetDependencies(CPU, FS, TM))),
238 MipsSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS, argument
243 ParseSubtargetFeatures(CPUName, FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.cpp63 AArch64Subtarget::initializeSubtargetDependencies(StringRef FS, argument
70 ParseSubtargetFeatures(CPUString, FS);
201 const std::string &FS,
203 : AArch64GenSubtargetInfo(TT, CPU, FS),
208 InstrInfo(initializeSubtargetDependencies(FS, CPU)), TSInfo(),
200 AArch64Subtarget(const Triple &TT, const std::string &CPU, const std::string &FS, const TargetMachine &TM, bool LittleEndian) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCTargetDesc.cpp75 createAMDGPUMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) { argument
77 return createR600MCSubtargetInfoImpl(TT, CPU, FS);
78 return createAMDGPUMCSubtargetInfoImpl(TT, CPU, FS);
/freebsd-13-stable/usr.bin/tip/tip/
H A Dremote.c104 FS = DEFFS;
132 if (cgetnum(bp, "fs", &FS) == -1)
133 FS = DEFFS;
/freebsd-13-stable/usr.sbin/fmtree/
H A Dspecspec.c41 #define FS(a, b, c, d) \ macro
151 if (FS(n1, n2, F_SLINK, slink))
159 if (FS(n1, n2, F_MD5, md5digest))
161 if (FS(n1, n2, F_SHA1, sha1digest))
163 if (FS(n1, n2, F_RMD160, rmd160digest))
165 if (FS(n1, n2, F_SHA256, sha256digest))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCTargetDesc.cpp48 StringRef CPU, StringRef FS) {
49 return createBPFMCSubtargetInfoImpl(TT, CPU, FS);
47 createBPFMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetMachine.cpp205 StringRef CPU, StringRef FS,
218 TT, CPU, FS, Options, getEffectiveRelocModel(RM),
237 std::string FS = !FSAttr.hasAttribute(Attribute::None) local
247 FS = FS.empty() ? "+unsafe-fp" : "+unsafe-fp," + FS;
249 auto &I = SubtargetMap[CPU + FS];
255 I = std::make_unique<HexagonSubtarget>(TargetTriple, CPU, FS, *this);
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-13-stable/contrib/llvm-project/llvm/lib/Target/Lanai/MCTargetDesc/
H A DLanaiMCTargetDesc.cpp54 createLanaiMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) { argument
59 return createLanaiMCSubtargetInfoImpl(TT, CPUName, FS);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h74 create(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS,
83 createOrDie(const std::vector<std::string> &Paths, llvm::vfs::FileSystem &FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Sparc/MCTargetDesc/
H A DSparcMCTargetDesc.cpp68 createSparcMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) { argument
71 return createSparcMCSubtargetInfoImpl(TT, CPU, FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCTargetDesc.cpp78 StringRef FS) {
79 return createWebAssemblyMCSubtargetInfoImpl(TT, CPU, FS);
77 createMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetMachine.cpp211 StringRef CPU, StringRef FS,
217 T, computeDataLayout(TT), TT, CPU, FS, Options,
247 StringRef FS = !FSAttr.hasAttribute(Attribute::None) local
252 Key.reserve(CPU.size() + FS.size());
254 Key += FS;
266 Key += FS.empty() ? "+soft-float" : ",+soft-float";
300 FS = Key.slice(CPU.size(), CPUFSWidth);
309 TargetTriple, CPU, FS, *this,
210 X86TargetMachine(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-13-stable/contrib/llvm-project/llvm/lib/Target/XCore/MCTargetDesc/
H A DXCoreMCTargetDesc.cpp53 createXCoreMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) { argument
54 return createXCoreMCSubtargetInfoImpl(TT, CPU, FS);
/freebsd-13-stable/tests/sys/cddl/zfs/tests/cli_root/zfs_destroy/
H A Dzfs_destroy_common.kshlib56 if ! datasetexists $FS; then
57 log_must $ZFS create $FS
/freebsd-13-stable/sys/mips/mips/
H A Dfp.S647 bne t1, SEXP_INF, 1f # is FS an infinity?
648 bne ta1, SEXP_INF, result_fs_s # if FT is not inf, result=FS
649 bne t2, zero, result_fs_s # if FS is NAN, result is FS
652 b result_fs_s # result is in FS
655 bne t1, zero, 4f # is FS a denormalized num?
656 beq t2, zero, 3f # is FS zero?
658 beq ta2, zero, result_fs_s # FT is zero, result=FS
679 beq ta2, zero, result_fs_s # FT is zero, result=FS
680 subu t1, t1, SEXP_BIAS # unbias FS exponen
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp266 // If this FS has its own working dir, use it to make Path absolute.
347 static IntrusiveRefCntPtr<FileSystem> FS(new RealFileSystem(true));
348 return FS;
393 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS) { argument
394 FSList.push_back(FS);
397 FS->setCurrentWorkingDirectory(getCurrentWorkingDirectory().get());
429 for (auto &FS : FSList)
430 if (std::error_code EC = FS->setCurrentWorkingDirectory(Path))
436 for (auto &FS : FSList)
437 if (FS
503 OverlayFSDirIterImpl(const Twine &Path, OverlayFileSystem &FS, std::error_code &EC) argument
808 lookupInMemoryNode(const InMemoryFileSystem &FS, detail::InMemoryDirectory *Dir, const Twine &P) argument
1015 RedirectingFileSystem(IntrusiveRefCntPtr<FileSystem> FS) argument
1267 lookupOrCreateEntry(RedirectingFileSystem *FS, StringRef Name, RedirectingFileSystem::Entry *ParentEntry = nullptr) argument
1308 uniqueOverlayTree(RedirectingFileSystem *FS, RedirectingFileSystem::Entry *SrcE, RedirectingFileSystem::Entry *NewParentE = nullptr) argument
1339 parseEntry(yaml::Node *N, RedirectingFileSystem *FS, bool IsRootEntry) argument
1539 parse(yaml::Node *Root, RedirectingFileSystem *FS) argument
[all...]
/freebsd-13-stable/contrib/tzdata/
H A Dchecktab.awk6 FS = "\t"
126 FS = " "

Completed in 371 milliseconds

1234567891011>>