Searched refs:SC (Results 1 - 25 of 131) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dllvm-xray.cpp30 for (auto *SC : cl::getRegisteredSubcommands()) {
31 if (*SC) {
34 if (SC == &*cl::TopLevelSubCommand) {
38 if (auto C = dispatch(SC)) {
H A Dxray-registry.cpp24 CommandRegistration::CommandRegistration(cl::SubCommand *SC, argument
26 assert(Commands->count(SC) == 0 &&
29 (*Commands)[SC] = Command;
32 HandlerType dispatch(cl::SubCommand *SC) { argument
33 auto It = Commands->find(SC);
H A Dxray-registry.h22 // and associates it with |SC|. This requires that a command has not been
23 // registered to a given |SC|.
31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
34 // Requires that |SC| is not null and has an associated function to it.
35 std::function<Error()> dispatch(cl::SubCommand *SC);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.cpp47 const MCSchedClassDesc *SC = getSchedClass(SU); local
48 if (!SC->isValid())
51 assert((SC->NumMicroOps != 2 || (SC->BeginGroup && !SC->EndGroup)) &&
53 assert((SC->NumMicroOps < 3 || (SC->BeginGroup && SC->EndGroup)) &&
55 assert((SC->NumMicroOps < 3 || (SC
93 const MCSchedClassDesc *SC = getSchedClass(SU); local
171 const MCSchedClassDesc *SC = getSchedClass(SU); local
272 const MCSchedClassDesc *SC = getSchedClass(SU); local
341 const MCSchedClassDesc *SC = getSchedClass(SU); local
390 const MCSchedClassDesc *SC = getSchedClass(SU); local
418 const MCSchedClassDesc *SC = SchedModel->resolveSchedClass(MI); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSubtargetInfo.h161 const MCSchedClassDesc *SC) const {
162 return &WriteProcResTable[SC->WriteProcResIdx];
165 const MCSchedClassDesc *SC) const {
166 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries;
169 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, argument
171 assert(DefIdx < SC->NumWriteLatencyEntries &&
174 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx];
177 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, argument
182 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC
[all...]
H A DMCSymbolXCOFF.h37 void setStorageClass(XCOFF::StorageClass SC) { argument
38 assert((!StorageClass.hasValue() || StorageClass.getValue() == SC) &&
40 StorageClass = SC;
H A DMCSectionXCOFF.h43 XCOFF::SymbolType ST, XCOFF::StorageClass SC, SectionKind K,
47 StorageClass(SC), QualName(QualName), SymbolTableName(SymbolTableName) {
51 QualName->setStorageClass(SC);
42 MCSectionXCOFF(StringRef Name, XCOFF::StorageMappingClass SMC, XCOFF::SymbolType ST, XCOFF::StorageClass SC, SectionKind K, MCSymbolXCOFF *QualName, MCSymbol *Begin, StringRef SymbolTableName) argument
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetSchedule.h103 const MCSchedClassDesc *SC = nullptr) const;
106 const MCSchedClassDesc *SC = nullptr) const;
110 const MCSchedClassDesc *SC = nullptr) const;
134 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const {
136 return STI->getWriteProcResBegin(SC);
138 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const {
139 return STI->getWriteProcResEnd(SC);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DFormatUtil.cpp192 using SC = COFF::SectionCharacteristics;
198 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NOLOAD, C, Style, "noload");
199 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NO_PAD, C, Style, "no padding");
200 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_CODE, C, Style, "code");
201 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_INITIALIZED_DATA, C, Style,
203 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_UNINITIALIZED_DATA, C, Style,
205 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_OTHER, C, Style, "other");
206 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_INFO, C, Style, "info");
207 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_REMOVE, C, Style, "remove");
208 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_COMDA
[all...]
H A DInputFile.cpp144 if (!SC.hasChecksums() || !SC.hasStrings())
145 SC.initialize(SS);
150 if (SC.hasChecksums() && SC.hasStrings())
170 if (!SC.hasStrings()) {
173 SC.setStrings(StringTable->getStringTable());
178 SC.resetChecksums();
187 SC.initialize(Subsections);
192 if (!SC
[all...]
/freebsd-13-stable/sys/sys/
H A Dposix4.h52 #define SYSCALL_NOT_PRESENT_GEN(SC) \
53 int sys_ ## SC (struct thread *td, struct SC##_args *uap) \
55 return syscall_not_present(td, #SC , (struct nosys_args *)uap); \
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLDebugSections.h112 fromCodeViewSubection(const codeview::StringsAndChecksumsRef &SC,
123 const codeview::StringsAndChecksums &SC);
126 fromDebugS(ArrayRef<uint8_t> Data, const codeview::StringsAndChecksumsRef &SC);
129 codeview::StringsAndChecksums &SC);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetSchedule.cpp86 const MCSchedClassDesc *SC) const {
88 if (!SC)
89 SC = resolveSchedClass(MI);
90 if (SC->isValid())
91 return SC->BeginGroup;
97 const MCSchedClassDesc *SC) const {
99 if (!SC)
100 SC = resolveSchedClass(MI);
101 if (SC->isValid())
102 return SC
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DVarBypassDetector.cpp117 if (const SwitchCase *SC = dyn_cast<SwitchCase>(SubStmt))
118 Next = SC->getSubStmt();
144 for (const SwitchCase *SC = SS->getSwitchCaseList(); SC;
145 SC = SC->getNextSwitchCase()) {
146 Detect(from, ToScopes[SC]);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLDebugSections.cpp94 const codeview::StringsAndChecksums &SC) const = 0;
112 const codeview::StringsAndChecksums &SC) const override;
126 const codeview::StringsAndChecksums &SC) const override;
142 const codeview::StringsAndChecksums &SC) const override;
158 const codeview::StringsAndChecksums &SC) const override;
172 const codeview::StringsAndChecksums &SC) const override;
186 const codeview::StringsAndChecksums &SC) const override;
200 const codeview::StringsAndChecksums &SC) const override;
214 const codeview::StringsAndChecksums &SC) const override;
229 const codeview::StringsAndChecksums &SC) cons
747 toCodeViewSubsectionList( BumpPtrAllocator &Allocator, ArrayRef<YAMLDebugSubsection> Subsections, const codeview::StringsAndChecksums &SC) argument
891 fromCodeViewSubection(const StringsAndChecksumsRef &SC, const DebugSubsectionRecord &SS) argument
901 fromDebugS(ArrayRef<uint8_t> Data, const StringsAndChecksumsRef &SC) argument
922 initializeStringsAndChecksums( ArrayRef<YAMLDebugSubsection> Sections, codeview::StringsAndChecksums &SC) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h515 template<typename SC, typename RetVal=void>
520 return ((SC*)this)->visitConstant((const SCEVConstant*)S);
522 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S);
524 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S);
526 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S);
528 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S);
530 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S);
532 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S);
534 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S);
536 return ((SC*)thi
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTaint.cpp87 while (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym))
88 Sym = SC->getOperand();
113 while (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym))
114 Sym = SC->getOperand();
223 if (const auto *SC = dyn_cast<SymbolCast>(*SI)) {
224 if (isTainted(State, SC->getOperand(), Kind))
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanValue.h54 VPValue(const unsigned char SC, Value *UV = nullptr) argument
55 : SubclassID(SC), UnderlyingVal(UV) {}
136 VPUser(const unsigned char SC) : VPValue(SC) {} argument
137 VPUser(const unsigned char SC, ArrayRef<VPValue *> Operands) : VPValue(SC) { argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp364 MachO::segment_command SC = Obj->getSegmentLoadCommand(L); local
366 Segment.SegName = SC.segname;
367 Segment.cmdsize = SC.cmdsize;
368 Segment.vmaddr = SC.vmaddr;
369 Segment.vmsize = SC.vmsize;
370 Segment.fileoff = SC.fileoff;
371 Segment.filesize = SC.filesize;
372 Segment.maxprot = SC.maxprot;
373 Segment.initprot = SC.initprot;
374 Segment.nsects = SC
378 MachO::segment_command_64 SC = Obj->getSegment64LoadCommand(L); local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Linker/
H A DLinkModules.cpp380 if (const Comdat *SC = GV.getComdat()) {
383 std::tie(SK, LinkFromSrc) = ComdatsChosen[SC];
406 const Comdat *SC = GV.getComdat(); local
407 if (!SC)
409 for (GlobalValue *GV2 : LazyComdatMembers[SC]) {
503 if (const Comdat *SC = GV.getComdat())
504 LazyComdatMembers[SC].push_back(&GV);
508 if (const Comdat *SC = SF.getComdat())
509 LazyComdatMembers[SC].push_back(&SF);
513 if (const Comdat *SC
532 const Comdat *SC = GV->getComdat(); local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DSpecifiers.h253 inline bool isLegalForFunction(StorageClass SC) {
254 return SC <= SC_PrivateExtern;
258 inline bool isLegalForVariable(StorageClass SC) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp62 const SectionContrib &SC) {
63 Layout.SC = SC;
61 setFirstSectionContrib( const SectionContrib &SC) argument
H A DDbiModuleDescriptor.cpp45 return Layout->SC;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsExpandPseudo.cpp82 unsigned LL, SC; local
92 SC = STI->hasMips32r6() ? Mips::SC_MMR6 : Mips::SC_MM;
98 SC = STI->hasMips32r6() ? (ArePtrs64bit ? Mips::SC64_R6 : Mips::SC_R6)
99 : (ArePtrs64bit ? Mips::SC64 : Mips::SC);
163 BuildMI(loop2MBB, DL, TII->get(SC), Scratch)
213 unsigned LL, SC, ZERO, BNE, BEQ, MOVE; local
218 SC = STI->hasMips32r6() ? Mips::SC_MMR6 : Mips::SC_MM;
225 SC = STI->hasMips32r6()
227 : (ArePtrs64bit ? Mips::SC64 : Mips::SC);
236 SC
311 unsigned LL, SC, SLT, SLTu, OR, MOVN, MOVZ, SELNEZ, SELEQZ; local
586 unsigned LL, SC, ZERO, BEQ, SLT, SLTu, OR, MOVN, MOVZ, SELNEZ, SELEQZ; local
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransProtectedScope.cpp42 SwitchCase *SC; member in struct:__anon1543::CaseInfo
50 CaseInfo() : SC(nullptr), State(St_Unchecked) {}
52 : SC(S), Range(Range), State(St_Unchecked) {}
176 Pass.TA.insertAfterToken(info.SC->getColonLoc(), " {");

Completed in 245 milliseconds

123456