Searched refs:SF (Results 1 - 25 of 37) sorted by relevance

12

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSubtargetFeatureInfo.cpp57 for (const auto &SF : SubtargetFeatures) {
58 const SubtargetFeatureInfo &SFI = SF.second;
70 for (const auto &SF : SubtargetFeatures)
71 if (IndexUB <= SF.second.Index)
72 IndexUB = SF.second.Index+1;
77 for (const auto &SF : SubtargetFeatures)
78 Names[SF.second.Index] = SF.second.getEnumName();
100 for (const auto &SF : SubtargetFeatures) {
101 const SubtargetFeatureInfo &SFI = SF
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/
H A DInterpreter.h189 gep_type_iterator E, ExecutionContext &SF);
195 void SwitchToNewBasicBlock(BasicBlock *Dest, ExecutionContext &SF);
201 GenericValue getConstantExprValue(ConstantExpr *CE, ExecutionContext &SF);
202 GenericValue getOperandValue(Value *V, ExecutionContext &SF);
204 ExecutionContext &SF);
206 ExecutionContext &SF);
208 ExecutionContext &SF);
210 ExecutionContext &SF);
212 ExecutionContext &SF);
214 ExecutionContext &SF);
[all...]
H A DExecution.cpp41 static void SetValue(Value *V, GenericValue Val, ExecutionContext &SF) { argument
42 SF.Values[V] = Val;
63 ExecutionContext &SF = ECStack.back(); local
65 GenericValue Src = getOperandValue(I.getOperand(0), SF);
96 SetValue(&I, R, SF);
332 ExecutionContext &SF = ECStack.back();
334 GenericValue Src1 = getOperandValue(I.getOperand(0), SF);
335 GenericValue Src2 = getOperandValue(I.getOperand(1), SF);
354 SetValue(&I, R, SF);
664 ExecutionContext &SF
2047 return executeBitCastInst(CE->getOperand(0), CE->getType(), SF); local
2104 getOperandValue(Value *V, ExecutionContext &SF) argument
2163 ExecutionContext &SF = ECStack.back(); // Current stack frame local
[all...]
/freebsd-11-stable/contrib/gcc/config/
H A Dfixunssfsi.c4 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfloatunsisf.c4 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfixunsdfsi.c4 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfixsfdi.c5 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfloatundisf.c5 typedef float SFtype __attribute__ ((mode (SF)));
H A Dfloatdisf.c6 typedef float SFtype __attribute__ ((mode (SF)));
H A Ddfp-bit.h421 typedef float SFtype __attribute__ ((mode (SF)));
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp20 // - "SF:<absolute path to source file>"
82 OS << "SF:" << Filename << '\n';
111 for (StringRef SF : Coverage.getUniqueSourceFiles()) {
112 if (!IgnoreFilters.matchesFilename(SF))
113 SourceFiles.emplace_back(SF);
H A DSourceCoverageViewHTML.h40 void emitFileSummary(raw_ostream &OS, StringRef SF,
43 std::string buildLinkToFile(StringRef SF,
H A DCoverageExporterJson.cpp205 for (StringRef SF : Coverage.getUniqueSourceFiles()) {
206 if (!IgnoreFilters.matchesFilename(SF))
207 SourceFiles.emplace_back(SF);
H A DSourceCoverageViewHTML.cpp321 CoveragePrinterHTML::buildLinkToFile(StringRef SF, argument
328 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts);
333 /// false, link the summary to \p SF.
334 void CoveragePrinterHTML::emitFileSummary(raw_ostream &OS, StringRef SF, argument
362 Filename = SF;
364 Filename = buildLinkToFile(SF, FCS);
H A DCoverageReport.cpp384 for (StringRef SF : Coverage.getUniqueSourceFiles()) {
386 if (!IgnoreFilenameFilters.matchesFilename(SF))
387 UniqueSourceFiles.emplace_back(SF.str());
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerDataFlowTrace.cpp108 for (auto &SF : Files) {
109 auto Name = Basename(SF.File);
112 std::ifstream IF(SF.File);
171 for (auto &SF : CorporaFiles)
172 CorporaHashes.insert(Hash(FileToVector(SF.File)));
217 for (auto &SF : Files) {
218 auto Name = Basename(SF.File);
223 std::ifstream IF(SF.File);
H A DFuzzerMerge.cpp269 for (auto &SF: KnownFiles)
270 FilesToSkip.insert(SF.Name);
277 for (auto &SF: OldCorpus)
278 MaybeUseFile(SF.File);
280 for (auto &SF: NewCorpus)
281 MaybeUseFile(SF.File);
H A DFuzzerFork.cpp140 auto &SF = Files[Rand->SkewTowardsLast(Files.size())]; local
141 Seeds += (Seeds.empty() ? "" : ",") + SF;
142 CollectDFT(SF);
/freebsd-11-stable/bin/pax/
H A Doptions.h67 #define SF 0x00001000 macro
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp506 for (Function &SF : *SrcM)
507 if (SF.hasLinkOnceLinkage())
508 if (const Comdat *SC = SF.getComdat())
509 LazyComdatMembers[SC].push_back(&SF);
522 for (Function &SF : *SrcM)
523 if (linkIfNeeded(SF))
H A DIRMover.cpp501 Function *copyFunctionProto(const Function *SF);
654 Function *IRLinker::copyFunctionProto(const Function *SF) { argument
656 // bring SF over.
657 auto *F = Function::Create(TypeMap.get(SF->getFunctionType()),
659 SF->getAddressSpace(), SF->getName(), &DstM);
660 F->copyAttributesFrom(SF);
690 } else if (auto *SF = dyn_cast<Function>(SGV)) {
691 NewGV = copyFunctionProto(SF);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DFunctionImportUtils.cpp300 for (Function &SF : M)
301 processGlobalForThinLTO(SF);
/freebsd-11-stable/contrib/gcc/config/soft-fp/
H A Dsingle.h56 typedef float SFtype __attribute__((mode(SF)));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp1649 template<class SF>
1651 SF &SortFunc;
1653 reverse_sort(SF &sf) : SortFunc(sf) {}
1839 template<class SF>
1840 static SUnit *popFromQueueImpl(std::vector<SUnit *> &Q, SF &Picker) {
1852 template<class SF>
1853 SUnit *popFromQueue(std::vector<SUnit *> &Q, SF &Picker, ScheduleDAG *DAG) {
1856 reverse_sort<SF> RPicker(Picker);
1871 template<class SF>
1873 SF Picke
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonExpandCondsets.cpp689 MachineOperand &SF = MI.getOperand(3); local
690 if (ST.isReg() && SF.isReg()) {
692 if (RT == RegisterRef(SF)) {
711 genCondTfrFor(SF, At, DR, DSR, MP, false, ReadUndef, true);

Completed in 163 milliseconds

12