Searched refs:FS (Results 201 - 225 of 318) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86.h173 FS = 257,
H A DX86Subtarget.h158 /// Processor has FS/GS base insturctions.
529 X86Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
563 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
574 X86Subtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
575 void initSubtargetFeatures(StringRef CPU, StringRef FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp205 auto *FS = cast<FunctionSummary>(S->getBaseObject()); local
206 if (FS->modulePath() == M.getModuleIdentifier()) {
207 F->setEntryCount(Function::ProfileCount(FS->entryCount(),
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSubtarget.h106 HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS,
134 StringRef FS);
138 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
H A DRDFCopy.cpp139 auto FS = CopyMap.find(SA.Id); local
140 if (FS == CopyMap.end())
143 EqualityMap &EM = FS->second;
H A DHexagonSubtarget.cpp79 StringRef FS, const TargetMachine &TM)
80 : HexagonGenSubtargetInfo(TT, CPU, FS), OptLevel(TM.getOptLevel()),
82 TargetTriple(TT), InstrInfo(initializeSubtargetDependencies(CPU, FS)),
85 Hexagon_MC::addArchSubtarget(this, FS);
92 HexagonSubtarget::initializeSubtargetDependencies(StringRef CPU, StringRef FS) { argument
107 ParseSubtargetFeatures(CPUString, FS);
78 HexagonSubtarget(const Triple &TT, StringRef CPU, StringRef FS, const TargetMachine &TM) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsSubtarget.h238 MipsSubtarget(const Triple &TT, StringRef CPU, StringRef FS, bool little,
243 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
365 MipsSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetMachine.cpp379 StringRef CPU, StringRef FS,
385 FS, Options, getEffectiveRelocModel(RM),
495 StringRef CPU, StringRef FS,
500 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {
512 StringRef FS = getFeatureString(F); local
515 SubtargetKey.append(FS);
523 I = std::make_unique<R600Subtarget>(TargetTriple, GPU, FS, *this);
539 StringRef CPU, StringRef FS,
544 : AMDGPUTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL) {}
548 StringRef FS local
378 AMDGPUTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, TargetOptions Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OptLevel) argument
494 R600TargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, TargetOptions Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
538 GCNTargetMachine(const Target &T, const Triple &TT, StringRef CPU, StringRef FS, TargetOptions Options, Optional<Reloc::Model> RM, Optional<CodeModel::Model> CM, CodeGenOpt::Level OL, bool JIT) argument
[all...]
H A DAMDGPUSubtarget.h422 GCNSubtarget(const Triple &TT, StringRef GPU, StringRef FS,
427 StringRef GPU, StringRef FS);
474 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
1268 R600Subtarget(const Triple &TT, StringRef CPU, StringRef FS,
1294 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
1303 StringRef GPU, StringRef FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/IR/
H A DAsmWriter.cpp1627 raw_ostream &operator<<(raw_ostream &OS, FieldSeparator &FS) { argument
1628 if (FS.Skip) {
1629 FS.Skip = false;
1632 return OS << FS.Sep;
1637 FieldSeparator FS; member in struct:__anon3680::MDFieldPrinter
1673 Out << FS << "tag: "; local
1682 Out << FS << "type: "; local
1692 Out << FS << "checksumkind: " << Checksum.getKindAsString();
1701 Out << FS << Name << ": \"";
1722 Out << FS << Nam
2223 FieldSeparator FS; local
2785 FieldSeparator FS; local
2904 FieldSeparator FS; local
2906 Out << FS; local
2919 FieldSeparator FS; local
2921 Out << FS; local
2931 FieldSeparator FS; local
2933 Out << FS; local
2948 FieldSeparator FS; local
2950 Out << FS; local
3008 FieldSeparator FS; local
3010 Out << FS; local
3056 printFunctionSummary(const FunctionSummary *FS) argument
3127 FieldSeparator FS; local
3131 Out << FS; local
3137 Out << FS; local
3176 FieldSeparator FS; local
3178 Out << FS; local
3191 FieldSeparator FS; local
3193 Out << FS; local
3203 FieldSeparator FS; local
3205 Out << FS; local
3240 FieldSeparator FS; local
3242 Out << FS; local
3263 FieldSeparator FS; local
3265 Out << FS; local
[all...]
H A DModuleSummaryIndex.cpp403 auto *FS = dyn_cast_or_null<FunctionSummary>(GVS);
404 if (!FS)
407 return std::string("inst: ") + std::to_string(FS->instCount()) +
408 ", ffl: " + fflagsToString(FS->fflags());
577 if (auto *FS = dyn_cast_or_null<FunctionSummary>(SummaryIt.second))
578 for (auto &CGEdge : FS->calls())
/freebsd-13-stable/contrib/libarchive/libarchive/
H A Darchive_blake2sp_ref.c218 blake2s_state FS[1]; local
280 if( blake2sp_init_root( FS, outlen, keylen ) < 0 )
283 FS->last_node = 1;
286 blake2s_update( FS, hash[i], BLAKE2S_OUTBYTES );
288 return blake2s_final( FS, out, outlen );
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSubtarget.h517 ARMSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS,
529 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
533 ARMSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS);
575 void initSubtargetFeatures(StringRef CPU, StringRef FS);
576 ARMFrameLowering *initializeFrameLowering(StringRef CPU, StringRef FS);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DAMDGPU.cpp199 auto &FS = D.getVFS(); local
204 if (!FS.exists(LibDevicePath))
224 if (CheckLibDevice && !FS.exists(Path))
272 auto &FS = D.getVFS(); local
276 if (InstallPath.empty() || !FS.exists(InstallPath))
287 FS.getBufferForFile(BinPath + "/.hipVersion");
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DSampleProfWriter.cpp275 for (const auto &FS : I->second) {
277 const FunctionSamples &CalleeSamples = FS.second;
313 for (const auto &FS : J.second) {
314 const FunctionSamples &CalleeSamples = FS.second;
536 for (const auto &FS : J.second) {
538 const FunctionSamples &CalleeSamples = FS.second;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Subtarget.h259 AArch64Subtarget &initializeSubtargetDependencies(StringRef FS,
269 const std::string &FS, const TargetMachine &TM,
514 void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DCompilationDatabase.h227 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMCTargetDesc.cpp184 StringRef CPU, StringRef FS) {
186 if (!FS.empty()) {
188 ArchFS = (Twine(ArchFS) + "," + FS).str();
190 ArchFS = std::string(FS);
183 createARMMCSubtargetInfo(const Triple &TT, StringRef CPU, StringRef FS) argument
H A DARMMCTargetDesc.h48 StringRef FS);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MCTargetDesc.h69 StringRef FS);
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCheckSecuritySyntaxOnly.cpp102 void checkLoopConditionForFloat(const ForStmt *FS);
213 void WalkAST::VisitForStmt(ForStmt *FS) { argument
214 checkLoopConditionForFloat(FS);
217 VisitChildren(FS);
262 void WalkAST::checkLoopConditionForFloat(const ForStmt *FS) { argument
267 const Expr *condition = FS->getCond();
273 const Expr *increment = FS->getInc();
337 PathDiagnosticLocation::createBegin(FS, BR.getSourceManager(), AC);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp52 llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS)
53 : ProxyFileSystem(std::move(FS)) {}
51 ProxyFileSystemWithoutChdir( llvm::IntrusiveRefCntPtr<llvm::vfs::FileSystem> FS) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLLVMTargetMachine.cpp79 StringRef FS, const TargetOptions &Options,
82 : TargetMachine(T, DataLayoutString, TT, CPU, FS, Options) {
76 LLVMTargetMachine(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options, Reloc::Model RM, CodeModel::Model CM, CodeGenOpt::Level OL) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Target/
H A DTargetMachine.h68 const Triple &TargetTriple, StringRef CPU, StringRef FS,
340 const Triple &TT, StringRef CPU, StringRef FS,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachine.cpp35 const Triple &TT, StringRef CPU, StringRef FS,
38 TargetCPU(std::string(CPU)), TargetFS(std::string(FS)), AsmInfo(nullptr),
34 TargetMachine(const Target &T, StringRef DataLayoutString, const Triple &TT, StringRef CPU, StringRef FS, const TargetOptions &Options) argument

Completed in 398 milliseconds

1234567891011>>