/external/jemalloc_new/include/jemalloc/internal/ |
D | size_classes.h | 43 SC( 0, 3, 3, 0, no, yes, 1, 3) \ 44 SC( 1, 3, 3, 1, no, yes, 1, 3) \ 45 SC( 2, 3, 3, 2, no, yes, 3, 3) \ 46 SC( 3, 3, 3, 3, no, yes, 1, 3) \ 48 SC( 4, 5, 3, 1, no, yes, 5, 3) \ 49 SC( 5, 5, 3, 2, no, yes, 3, 3) \ 50 SC( 6, 5, 3, 3, no, yes, 7, 3) \ 51 SC( 7, 5, 3, 4, no, yes, 1, 3) \ 53 SC( 8, 6, 4, 1, no, yes, 5, 4) \ 54 SC( 9, 6, 4, 2, no, yes, 3, 4) \ [all …]
|
/external/llvm-project/llvm/lib/Target/SystemZ/ |
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 …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
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 …]
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | FormatUtil.cpp | 192 using SC = COFF::SectionCharacteristics; in formatSectionCharacteristics() typedef 198 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NOLOAD, C, Style, "noload"); in formatSectionCharacteristics() 199 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_TYPE_NO_PAD, C, Style, "no padding"); in formatSectionCharacteristics() 200 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_CODE, C, Style, "code"); in formatSectionCharacteristics() 201 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_INITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 203 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_CNT_UNINITIALIZED_DATA, C, Style, in formatSectionCharacteristics() 205 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_OTHER, C, Style, "other"); in formatSectionCharacteristics() 206 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_INFO, C, Style, "info"); in formatSectionCharacteristics() 207 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_REMOVE, C, Style, "remove"); in formatSectionCharacteristics() 208 PUSH_CHARACTERISTIC_FLAG(SC, IMAGE_SCN_LNK_COMDAT, C, Style, "comdat"); in formatSectionCharacteristics() [all …]
|
D | InputFile.cpp | 144 if (!SC.hasChecksums() || !SC.hasStrings()) in SymbolGroup() 145 SC.initialize(SS); in SymbolGroup() 150 if (SC.hasChecksums() && SC.hasStrings()) in SymbolGroup() 170 if (!SC.hasStrings()) { in initializeForPdb() 173 SC.setStrings(StringTable->getStringTable()); in initializeForPdb() 178 SC.resetChecksums(); in initializeForPdb() 187 SC.initialize(Subsections); in initializeForPdb() 192 if (!SC.hasChecksums()) in rebuildChecksumMap() 195 for (const auto &Entry : SC.checksums()) { in rebuildChecksumMap() 196 auto S = SC.strings().getString(Entry.FileNameOffset); in rebuildChecksumMap() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSubtargetInfo.h | 161 const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 162 return &WriteProcResTable[SC->WriteProcResIdx]; in getWriteProcResBegin() 165 const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 166 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries; in getWriteProcResEnd() 169 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, in getWriteLatencyEntry() argument 171 assert(DefIdx < SC->NumWriteLatencyEntries && in getWriteLatencyEntry() 174 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx]; in getWriteLatencyEntry() 177 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, in getReadAdvanceCycles() argument 182 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx], in getReadAdvanceCycles() 183 *E = I + SC->NumReadAdvanceEntries; I != E; ++I) { in getReadAdvanceCycles() [all …]
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCSubtargetInfo.h | 164 const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 165 return &WriteProcResTable[SC->WriteProcResIdx]; in getWriteProcResBegin() 168 const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 169 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries; in getWriteProcResEnd() 172 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, in getWriteLatencyEntry() argument 174 assert(DefIdx < SC->NumWriteLatencyEntries && in getWriteLatencyEntry() 177 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx]; in getWriteLatencyEntry() 180 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, in getReadAdvanceCycles() argument 185 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx], in getReadAdvanceCycles() 186 *E = I + SC->NumReadAdvanceEntries; I != E; ++I) { in getReadAdvanceCycles() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCSubtargetInfo.h | 120 const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 121 return &WriteProcResTable[SC->WriteProcResIdx]; in getWriteProcResBegin() 124 const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 125 return getWriteProcResBegin(SC) + SC->NumWriteProcResEntries; in getWriteProcResEnd() 128 const MCWriteLatencyEntry *getWriteLatencyEntry(const MCSchedClassDesc *SC, in getWriteLatencyEntry() argument 130 assert(DefIdx < SC->NumWriteLatencyEntries && in getWriteLatencyEntry() 133 return &WriteLatencyTable[SC->WriteLatencyIdx + DefIdx]; in getWriteLatencyEntry() 136 int getReadAdvanceCycles(const MCSchedClassDesc *SC, unsigned UseIdx, in getReadAdvanceCycles() argument 141 for (const MCReadAdvanceEntry *I = &ReadAdvanceTable[SC->ReadAdvanceIdx], in getReadAdvanceCycles() 142 *E = I + SC->NumReadAdvanceEntries; I != E; ++I) { in getReadAdvanceCycles()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | TargetSchedule.cpp | 86 const MCSchedClassDesc *SC) const { in mustBeginGroup() 88 if (!SC) in mustBeginGroup() 89 SC = resolveSchedClass(MI); in mustBeginGroup() 90 if (SC->isValid()) in mustBeginGroup() 91 return SC->BeginGroup; in mustBeginGroup() 97 const MCSchedClassDesc *SC) const { in mustEndGroup() 99 if (!SC) in mustEndGroup() 100 SC = resolveSchedClass(MI); in mustEndGroup() 101 if (SC->isValid()) in mustEndGroup() 102 return SC->EndGroup; in mustEndGroup() [all …]
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | TargetSchedule.cpp | 86 const MCSchedClassDesc *SC) const { in mustBeginGroup() 88 if (!SC) in mustBeginGroup() 89 SC = resolveSchedClass(MI); in mustBeginGroup() 90 if (SC->isValid()) in mustBeginGroup() 91 return SC->BeginGroup; in mustBeginGroup() 97 const MCSchedClassDesc *SC) const { in mustEndGroup() 99 if (!SC) in mustEndGroup() 100 SC = resolveSchedClass(MI); in mustEndGroup() 101 if (SC->isValid()) in mustEndGroup() 102 return SC->EndGroup; in mustEndGroup() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
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 …]
|
/external/llvm-project/llvm/lib/ObjectYAML/ |
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 …]
|
/external/llvm-project/llvm/test/DebugInfo/PDB/ |
D | dbi-bytes.test | 4 ; RUN: llvm-pdbutil bytes -sc %p/Inputs/empty.pdb | FileCheck --check-prefix=SC %s 36 SC: Section Contributions 37 SC-NEXT: ============================================================ 38 SC-NEXT: Section Contributions ( 39 SC-NEXT: E12C: 2DBA2EF1 01002511 00000000 0A000000 20000060 01000000 00000000 00000000 |-.....… 40 SC-NEXT: E14C: 01000000 10000000 0A000000 20005060 00000000 347497D7 00000000 02000000 |......… 41 SC-NEXT: E16C: 00000000 38000000 40000040 01000000 00000000 00000000 02000000 44010000 |....8.… 42 SC-NEXT: E18C: 48000000 40003040 01000000 00000000 00000000 02000000 8C010000 14000000 |H...@.… 43 SC-NEXT: E1AC: 40003040 01000000 00000000 00000000 03000000 00000000 04000000 800030C0 |@.0@..… 44 SC-NEXT: E1CC: 00000000 00000000 00000000 |......… [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | TargetSchedule.h | 103 const MCSchedClassDesc *SC = nullptr) const; 106 const MCSchedClassDesc *SC = nullptr) const; 110 const MCSchedClassDesc *SC = nullptr) const; 134 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 136 return STI->getWriteProcResBegin(SC); in getWriteProcResBegin() 138 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 139 return STI->getWriteProcResEnd(SC); in getWriteProcResEnd()
|
/external/llvm-project/llvm/include/llvm/CodeGen/ |
D | TargetSchedule.h | 103 const MCSchedClassDesc *SC = nullptr) const; 106 const MCSchedClassDesc *SC = nullptr) const; 110 const MCSchedClassDesc *SC = nullptr) const; 134 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 136 return STI->getWriteProcResBegin(SC); in getWriteProcResBegin() 138 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 139 return STI->getWriteProcResEnd(SC); in getWriteProcResEnd()
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-registry.cpp | 24 CommandRegistration::CommandRegistration(cl::SubCommand *SC, in CommandRegistration() argument 26 assert(Commands->count(SC) == 0 && in CommandRegistration() 29 (*Commands)[SC] = Command; in CommandRegistration() 32 HandlerType dispatch(cl::SubCommand *SC) { in dispatch() argument 33 auto It = Commands->find(SC); in dispatch()
|
D | llvm-xray.cpp | 30 for (auto *SC : cl::getRegisteredSubcommands()) { in main() local 31 if (*SC) { in main() 34 if (SC == &*cl::TopLevelSubCommand) { in main() 38 if (auto C = dispatch(SC)) { in main()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | ScalarEvolutionExpressions.h | 511 template<typename SC, typename RetVal=void> 516 return ((SC*)this)->visitConstant((const SCEVConstant*)S); in visit() 518 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S); in visit() 520 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S); in visit() 522 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S); in visit() 524 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S); in visit() 526 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S); in visit() 528 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S); in visit() 530 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S); in visit() 532 return ((SC*)this)->visitSMaxExpr((const SCEVSMaxExpr*)S); in visit() [all …]
|
/external/llvm-project/llvm/include/llvm/Analysis/ |
D | ScalarEvolutionExpressions.h | 567 template<typename SC, typename RetVal=void> 572 return ((SC*)this)->visitConstant((const SCEVConstant*)S); in visit() 574 return ((SC *)this)->visitPtrToIntExpr((const SCEVPtrToIntExpr *)S); in visit() 576 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S); in visit() 578 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S); in visit() 580 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S); in visit() 582 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S); in visit() 584 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S); in visit() 586 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S); in visit() 588 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S); in visit() [all …]
|
/external/llvm/include/llvm/Analysis/ |
D | ScalarEvolutionExpressions.h | 438 template<typename SC, typename RetVal=void> 443 return ((SC*)this)->visitConstant((const SCEVConstant*)S); in visit() 445 return ((SC*)this)->visitTruncateExpr((const SCEVTruncateExpr*)S); in visit() 447 return ((SC*)this)->visitZeroExtendExpr((const SCEVZeroExtendExpr*)S); in visit() 449 return ((SC*)this)->visitSignExtendExpr((const SCEVSignExtendExpr*)S); in visit() 451 return ((SC*)this)->visitAddExpr((const SCEVAddExpr*)S); in visit() 453 return ((SC*)this)->visitMulExpr((const SCEVMulExpr*)S); in visit() 455 return ((SC*)this)->visitUDivExpr((const SCEVUDivExpr*)S); in visit() 457 return ((SC*)this)->visitAddRecExpr((const SCEVAddRecExpr*)S); in visit() 459 return ((SC*)this)->visitSMaxExpr((const SCEVSMaxExpr*)S); in visit() [all …]
|
/external/llvm-project/clang/lib/CodeGen/ |
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()
|
/external/llvm-project/lld/test/COFF/ |
D | pdb-publics-import.test | 29 CHECK-NEXT: SC[.text] | mod = 0, 0001:0000, size = 8, data crc = 0, reloc crc = 0 36 CHECK-NEXT: SC[???] | mod = 65535, 65535:0000, size = -1, data crc = 0, reloc crc = 0 42 CHECK-NEXT: SC[.text] | mod = 2, 0001:0032, size = 6, data crc = 0, reloc crc = 0 48 CHECK-NEXT: SC[???] | mod = 65535, 65535:0000, size = -1, data crc = 0, reloc crc = 0 151 CHECK-NEXT: SC[.text] | mod = 0, 0001:0000, size = 8, data crc = 0, reloc crc = 0 155 CHECK-NEXT: SC[.text] | mod = 3, 0001:0016, size = 6, data crc = 0, reloc crc = 0 158 CHECK-NEXT: SC[.text] | mod = 3, 0001:0032, size = 6, data crc = 0, reloc crc = 0 161 CHECK-NEXT: SC[.rdata] | mod = 3, 0002:0000, size = 28, data crc = 0, reloc crc = 0 163 CHECK-NEXT: SC[.rdata] | mod = 3, 0002:0028, size = 33, data crc = 0, reloc crc = 0 165 CHECK-NEXT: SC[.rdata] | mod = 3, 0002:0061, size = 20, data crc = 0, reloc crc = 0 [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | TargetSchedule.h | 98 const MCSchedClassDesc *SC = nullptr) const; 122 ProcResIter getWriteProcResBegin(const MCSchedClassDesc *SC) const { in getWriteProcResBegin() argument 124 return STI->getWriteProcResBegin(SC); in getWriteProcResBegin() 126 ProcResIter getWriteProcResEnd(const MCSchedClassDesc *SC) const { in getWriteProcResEnd() argument 127 return STI->getWriteProcResEnd(SC); in getWriteProcResEnd()
|
/external/jemalloc_new/src/ |
D | sz.c | 9 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \ macro 14 #undef SC 20 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \ macro 23 #undef SC 93 #define SC(index, lg_grp, lg_delta, ndelta, psz, bin, pgs, lg_delta_lookup) \ macro 106 #undef SC
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | VPlanValue.h | 53 VPValue(const unsigned char SC, Value *UV = nullptr) 54 : SubclassID(SC), UnderlyingVal(UV) {} in SubclassID() argument 136 VPUser(const unsigned char SC) : VPValue(SC) {} in VPUser() argument 137 VPUser(const unsigned char SC, ArrayRef<VPValue *> Operands) : VPValue(SC) { in VPUser() argument
|