| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | FormatUtil.cpp | 149 using SC = COFF::SectionCharacteristics; in formatSectionCharacteristics() typedef 155 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NOLOAD, C, Style, "noload"); in formatSectionCharacteristics() 156 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NO_PAD, C, Style, "no padding"); in formatSectionCharacteristics() 157 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_CODE, C, Style, "code"); in formatSectionCharacteristics() 158 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_INITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 160 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_UNINITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 162 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_OTHER, C, Style, "other"); in formatSectionCharacteristics() 163 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_INFO, C, Style, "info"); in formatSectionCharacteristics() 164 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_REMOVE, C, Style, "remove"); in formatSectionCharacteristics() 165 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_COMDAT, C, Style, "comdat"); in formatSectionCharacteristics() [all …]
|
| H A D | InputFile.cpp | 170 if (!SC.hasChecksums() || !SC.hasStrings()) in SymbolGroup() 171 SC.initialize(SS); in SymbolGroup() 176 if (SC.hasChecksums() && SC.hasStrings()) in SymbolGroup() 196 if (!SC.hasStrings()) { in initializeForPdb() 199 SC.setStrings(StringTable->getStringTable()); in initializeForPdb() 204 SC.resetChecksums(); in initializeForPdb() 213 SC.initialize(Subsections); in initializeForPdb() 218 if (!SC.hasChecksums()) in rebuildChecksumMap() 221 for (const auto &Entry : SC.checksums()) { in rebuildChecksumMap() 222 auto S = SC.strings().getString(Entry.FileNameOffset); in rebuildChecksumMap() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZHazardRecognizer.cpp | 47 const MCSchedClassDesc *SC = getSchedClass(SU); in getNumDecoderSlots() local 48 if (!SC->isValid()) in getNumDecoderSlots() 51 assert((SC->NumMicroOps != 2 || (SC->BeginGroup && !SC->EndGroup)) && in getNumDecoderSlots() 53 assert((SC->NumMicroOps < 3 || (SC->BeginGroup && SC->EndGroup)) && in getNumDecoderSlots() 55 assert((SC->NumMicroOps < 3 || (SC->NumMicroOps % 3 == 0)) && in getNumDecoderSlots() 58 return SC->NumMicroOps; in getNumDecoderSlots() 93 const MCSchedClassDesc *SC = getSchedClass(SU); in fitsIntoCurrentGroup() local 94 if (!SC->isValid()) in fitsIntoCurrentGroup() 99 if (SC->BeginGroup) in fitsIntoCurrentGroup() 171 const MCSchedClassDesc *SC = getSchedClass(SU); in dumpSU() local [all …]
|
| /openbsd-src/regress/usr.bin/mandoc/man/blank/ |
| H A D | afterSH.out_ascii | 6 DDEESSCCRRIIPPTTIIOONN 9 DDEESSCCRRIIPPTTIIOONN 22 12 DDEESSCCRRIIPPTTIIOONN 33 15 DDEESSCCRRIIPPTTIIOONN 44 18 DDEESSCCRRIIPPTTIIOONN 55 21 DDEESSCCRRIIPPTTIIOONN 66 24 DDEESSCCRRIIPPTTIIOONN 77 27 DDEESSCCRRIIPPTTIIOONN 88 30 DDEESSCCRRIIPPTTIIOONN 1100 33 DDEESSCCRRIIPPTTIIOONN 1122 [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCSubtargetInfo.h | 168 const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 169 return &WriteProcResTable[SC->WriteProcResIdx]; in getWriteProcResBegin() 172 const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 173 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries; in getWriteProcResEnd() 176 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, in getWriteLatencyEntry() argument 178 assert(DefIdx < SC->NumWriteLatencyEntries && in getWriteLatencyEntry() 181 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx]; in getWriteLatencyEntry() 184 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, in getReadAdvanceCycles() argument 189 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx], in getReadAdvanceCycles() 190 *E = I + SC->NumReadAdvanceEntries; I != E; ++I) { in getReadAdvanceCycles() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | TargetSchedule.cpp | 70 const MCSchedClassDesc *SC) const { in mustBeginGroup() 72 if (!SC) in mustBeginGroup() 73 SC = resolveSchedClass(MI); in mustBeginGroup() 74 if (SC->isValid()) in mustBeginGroup() 75 return SC->BeginGroup; in mustBeginGroup() 81 const MCSchedClassDesc *SC) const { in mustEndGroup() 83 if (!SC) in mustEndGroup() 84 SC = resolveSchedClass(MI); in mustEndGroup() 85 if (SC->isValid()) in mustEndGroup() 86 return SC->EndGroup; in mustEndGroup() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.cpp | 94 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) const override; [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| H A D | TargetSchedule.h | 102 const MCSchedClassDesc *SC = nullptr) const; 105 const MCSchedClassDesc *SC = nullptr) const; 109 const MCSchedClassDesc *SC = nullptr) const; 133 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 135 return STI->getWriteProcResBegin(SC); in getWriteProcResBegin() 137 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 138 return STI->getWriteProcResEnd(SC); in getWriteProcResEnd()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/ |
| H A D | ScalarEvolutionExpressions.h | 602 template <typename SC, typename RetVal = void> struct SCEVVisitor { 606 return ((SC *)this)->visitConstant((const SCEVConstant *)S); in visit() 608 return ((SC *)this)->visitPtrToIntExpr((const SCEVPtrToIntExpr *)S); in visit() 610 return ((SC *)this)->visitTruncateExpr((const SCEVTruncateExpr *)S); in visit() 612 return ((SC *)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr *)S); in visit() 614 return ((SC *)this)->visitSignExtendExpr((const SCEVSignExtendExpr *)S); in visit() 616 return ((SC *)this)->visitAddExpr((const SCEVAddExpr *)S); in visit() 618 return ((SC *)this)->visitMulExpr((const SCEVMulExpr *)S); in visit() 620 return ((SC *)this)->visitUDivExpr((const SCEVUDivExpr *)S); in visit() 622 return ((SC *)this)->visitAddRecExpr((const SCEVAddRecExpr *)S); in visit() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-xray/ |
| H A D | xray-registry.cpp | 26 CommandRegistration::CommandRegistration(cl::SubCommand *SC, in CommandRegistration() argument 28 assert(getCommands().count(SC) == 0 && in CommandRegistration() 31 getCommands()[SC] = Command; in CommandRegistration() 34 HandlerType dispatch(cl::SubCommand *SC) { in dispatch() argument 35 auto It = getCommands().find(SC); in dispatch()
|
| H A D | llvm-xray.cpp | 30 for (auto *SC : cl::getRegisteredSubcommands()) { in main() local 31 if (*SC) { in main() 34 if (SC == &cl::SubCommand::getTopLevel()) { in main() 38 if (auto C = dispatch(SC)) { in main()
|
| H A D | xray-registry.h | 31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command); 35 std::function<Error()> dispatch(cl::SubCommand *SC);
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | VarBypassDetector.cpp | 117 if (const SwitchCase *SC = dyn_cast<SwitchCase>(SubStmt)) in BuildScopeInformation() local 118 Next = SC->getSubStmt(); in BuildScopeInformation() 144 for (const SwitchCase *SC = SS->getSwitchCaseList(); SC; in Detect() local 145 SC = SC->getNextSwitchCase()) { in Detect() 146 Detect(from, ToScopes[SC]); in Detect()
|
| /openbsd-src/gnu/llvm/llvm/lib/Linker/ |
| H A D | LinkModules.cpp | 386 if (const Comdat *SC = GV.getComdat()) { in linkIfNeeded() local 387 std::tie(std::ignore, ComdatFrom) = ComdatsChosen[SC]; in linkIfNeeded() 412 const Comdat *SC = GV.getComdat(); in addLazyFor() local 413 if (!SC) in addLazyFor() 415 for (GlobalValue *GV2 : LazyComdatMembers[SC]) { in addLazyFor() 502 if (const Comdat *SC = GV.getComdat()) in run() local 503 LazyComdatMembers[SC].push_back(&GV); in run() 507 if (const Comdat *SC = SF.getComdat()) in run() local 508 LazyComdatMembers[SC].push_back(&SF); in run() 512 if (const Comdat *SC = GA.getComdat()) in run() local [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/ |
| H A D | CodeViewYAMLDebugSections.h | 112 fromCodeViewSubection(const codeview::StringsAndChecksumsRef &SC, 123 const codeview::StringsAndChecksums &SC); 126 fromDebugS(ArrayRef<uint8_t> Data, const codeview::StringsAndChecksumsRef &SC); 129 codeview::StringsAndChecksums &SC);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Mips/ |
| H A D | MipsExpandPseudo.cpp | 82 unsigned LL, SC; in expandAtomicCmpSwapSubword() local 92 SC = STI->hasMips32r6() ? Mips::SC_MMR6 : Mips::SC_MM; in expandAtomicCmpSwapSubword() 98 SC = STI->hasMips32r6() ? (ArePtrs64bit ? Mips::SC64_R6 : Mips::SC_R6) in expandAtomicCmpSwapSubword() 99 : (ArePtrs64bit ? Mips::SC64 : Mips::SC); in expandAtomicCmpSwapSubword() 163 BuildMI(loop2MBB, DL, TII->get(SC), Scratch) in expandAtomicCmpSwapSubword() 213 unsigned LL, SC, ZERO, BNE, BEQ, MOVE; in expandAtomicCmpSwap() local 218 SC = STI->hasMips32r6() ? Mips::SC_MMR6 : Mips::SC_MM; in expandAtomicCmpSwap() 225 SC = STI->hasMips32r6() in expandAtomicCmpSwap() 227 : (ArePtrs64bit ? Mips::SC64 : Mips::SC); in expandAtomicCmpSwap() 236 SC = STI->hasMips64r6() ? Mips::SCD_R6 : Mips::SCD; in expandAtomicCmpSwap() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/ |
| H A D | MachODumper.cpp | 374 MachO::segment_command SC = Obj->getSegmentLoadCommand(L); in getSegment() local 376 Segment.SegName = SC.segname; in getSegment() 377 Segment.cmdsize = SC.cmdsize; in getSegment() 378 Segment.vmaddr = SC.vmaddr; in getSegment() 379 Segment.vmsize = SC.vmsize; in getSegment() 380 Segment.fileoff = SC.fileoff; in getSegment() 381 Segment.filesize = SC.filesize; in getSegment() 382 Segment.maxprot = SC.maxprot; in getSegment() 383 Segment.initprot = SC.initprot; in getSegment() 384 Segment.nsects = SC.nsects; in getSegment() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | Taint.cpp | 90 while (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym)) in addTaint() local 91 Sym = SC->getOperand(); in addTaint() 116 while (const SymbolCast *SC = dyn_cast<SymbolCast>(Sym)) in removeTaint() local 117 Sym = SC->getOperand(); in removeTaint() 226 if (const auto *SC = dyn_cast<SymbolCast>(*SI)) { in isTainted() local 227 if (isTainted(State, SC->getOperand(), Kind)) in isTainted()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | CodeGenSchedule.cpp | 915 CodeGenSchedClass &SC = getSchedClass(SCIdx); in collectSchedClasses() local 916 if (SC.ProcIndices[0] != 0) in collectSchedClasses() 921 if (SC.ItinClassDef->getName() != "NoItinerary") { in collectSchedClasses() 924 << SC.ItinClassDef->getName() << '\n'; in collectSchedClasses() 926 if (!SC.Writes.empty()) { in collectSchedClasses() 930 for (unsigned int Write : SC.Writes) in collectSchedClasses() 932 for (unsigned int Read : SC.Reads) in collectSchedClasses() 1015 auto IsKeyEqual = [=](const CodeGenSchedClass &SC) { in addSchedClass() argument 1016 return SC.isKeyEqual(ItinClassDef, OperWrites, OperReads); in addSchedClass() 1035 CodeGenSchedClass &SC = SchedClasses.back(); in addSchedClass() local [all …]
|
| H A D | SubtargetEmitter.cpp | 1023 for (const CodeGenSchedClass &SC : SchedModels.schedClasses()) { in GenSchedClassTables() local 1024 LLVM_DEBUG(SC.dump(&SchedModels)); in GenSchedClassTables() 1040 make_range(SC.Transitions.begin(), SC.Transitions.end())) { in GenSchedClassTables() 1054 assert(!SC.ProcIndices.empty() && "expect at least one procidx"); in GenSchedClassTables() 1055 if (SC.ProcIndices[0] != 0) { in GenSchedClassTables() 1056 if (!is_contained(SC.ProcIndices, ProcModel.Index)) in GenSchedClassTables() 1059 IdxVec Writes = SC.Writes; in GenSchedClassTables() 1060 IdxVec Reads = SC.Reads; in GenSchedClassTables() 1061 if (!SC.InstRWs.empty()) { in GenSchedClassTables() 1065 for (Record *RW : SC.InstRWs) { in GenSchedClassTables() [all …]
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/ |
| H A D | Analysis.h | 71 measurementsMatch(const MCSubtargetInfo &STI, const ResolvedSchedClass &SC, 92 const ResolvedSchedClass &SC, 94 void printSchedClassDescHtml(const ResolvedSchedClass &SC,
|
| /openbsd-src/lib/libc/arch/sparc64/gen/ |
| H A D | divrem.m4 | 86 define(SC, `%g5') macro 164 ! The number of bits in the result here is N*ITER+SC, where SC <= N. 170 mov 1, SC 175 ! Now compute SC. 178 inc SC 187 dec SC 199 ! dec SC 209 deccc SC 229 deccc SC
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | CommandLine.cpp | 178 void addLiteralOption(Option &Opt, SubCommand *SC, StringRef Name) { in addLiteralOption() argument 181 if (!SC->OptionsMap.insert(std::make_pair(Name, &Opt)).second) { in addLiteralOption() 189 if (SC == &SubCommand::getAll()) { in addLiteralOption() 191 if (SC == Sub) in addLiteralOption() 202 for (auto *SC : Opt.Subs) in addLiteralOption() local 203 addLiteralOption(Opt, SC, Name); in addLiteralOption() 207 void addOption(Option *O, SubCommand *SC) { in addOption() argument 212 SC->OptionsMap.find(O->ArgStr) != SC->OptionsMap.end()) in addOption() 216 if (!SC->OptionsMap.insert(std::make_pair(O->ArgStr, O)).second) { in addOption() 225 SC->PositionalOpts.push_back(O); in addOption() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | LoopUnrollAnalyzer.cpp | 36 if (auto *SC = dyn_cast<SCEVConstant>(S)) { in simplifyInstWithSCEV() local 37 SimplifiedValues[I] = SC->getValue(); in simplifyInstWithSCEV() 52 if (auto *SC = dyn_cast<SCEVConstant>(ValueAtIteration)) { in simplifyInstWithSCEV() local 53 SimplifiedValues[I] = SC->getValue(); in simplifyInstWithSCEV()
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | coff2yaml.cpp | 103 codeview::StringsAndChecksumsRef &SC) { in initializeFileAndStringTable() argument 109 if (SC.hasStrings() && SC.hasChecksums()) in initializeFileAndStringTable() 135 SC.initialize(Subsections); in initializeFileAndStringTable() 141 codeview::StringsAndChecksumsRef SC; in dumpSections() local 142 initializeFileAndStringTable(Obj, SC); in dumpSections() 187 NewYAMLSection.DebugS = CodeViewYAML::fromDebugS(sectionData, SC); in dumpSections()
|