/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/ |
D | X86GenExegesis.inc | 106 X86PfmCounterNames[14], // Cycle counter 113 X86PfmCounterNames[0], // Cycle counter 119 X86PfmCounterNames[0], // Cycle counter 125 X86PfmCounterNames[14], // Cycle counter 131 X86PfmCounterNames[0], // Cycle counter 137 X86PfmCounterNames[0], // Cycle counter 143 X86PfmCounterNames[14], // Cycle counter 150 X86PfmCounterNames[0], // Cycle counter 164 X86PfmCounterNames[14], // Cycle counter 170 X86PfmCounterNames[14], // Cycle counter [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ModuloSchedule.h | 89 DenseMap<MachineInstr *, int> Cycle; variable 107 DenseMap<MachineInstr *, int> Cycle, in ModuloSchedule() argument 109 : Loop(Loop), ScheduledInstrs(ScheduledInstrs), Cycle(std::move(Cycle)), in ModuloSchedule() 126 int getFirstCycle() { return Cycle[ScheduledInstrs.front()]; } in getFirstCycle() 130 int getFinalCycle() { return Cycle[ScheduledInstrs.back()]; } in getFinalCycle() 140 auto I = Cycle.find(MI); in getCycle() 141 return I == Cycle.end() ? -1 : I->second; in getCycle()
|
D | ScheduleDAG.h | 546 void setCurCycle(unsigned Cycle) { in setCurCycle() argument 547 CurCycle = Cycle; in setCurCycle()
|
D | MachineTraceMetrics.h | 77 unsigned Cycle = 0; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | P9InstrResources.td | 457 // 5 Cycle Restricted DP operation and one 2 cycle ALU operation. 520 // Three Cycle PM operation. Only one PM unit per superslice so we use the whole 628 // 12 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 652 // 23 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 660 // 24 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 677 // 37 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 685 // 58 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 694 // 76 Cycle DFU operation. Only one DFU unit per CPU so we use a whole 703 // 6 Cycle Load uses a single slice. 709 // 5 Cycle Load uses a single slice. [all …]
|
D | PPCInstrInfo.cpp | 165 int Cycle = ItinData->getOperandCycle(DefClass, i); in getInstrLatency() local 166 if (Cycle < 0) in getInstrLatency() 169 Latency = std::max(Latency, (unsigned) Cycle); in getInstrLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineTraceMetrics.cpp | 793 unsigned Cycle = 0; in updateDepth() local 806 Cycle = std::max(Cycle, DepCycle); in updateDepth() 810 MICycles.Depth = Cycle; in updateDepth() 814 TBI.CriticalPath = std::max(TBI.CriticalPath, Cycle + MICycles.Height); in updateDepth() 815 LLVM_DEBUG(dbgs() << TBI.CriticalPath << '\t' << Cycle << '\t' << UseMI); in updateDepth() 817 LLVM_DEBUG(dbgs() << Cycle << '\t' << UseMI); in updateDepth() 919 unsigned DepHeight = I->Cycle; in updatePhysDepsUpwards() 938 if (LRU.Cycle <= Height && LRU.MI != &MI) { in updatePhysDepsUpwards() 939 LRU.Cycle = Height; in updatePhysDepsUpwards() 1038 RegUnits[LI.Reg].Cycle = LI.Height; in computeInstrHeights() [all …]
|
D | MachinePipeliner.cpp | 533 for (int Cycle = Schedule.getFirstCycle(); Cycle <= Schedule.getFinalCycle(); in schedule() local 534 ++Cycle) { in schedule() 535 for (SUnit *SU : Schedule.getInstructions(Cycle)) { in schedule() 537 Cycles[SU->getInstr()] = Cycle; in schedule() 2838 for (int Cycle = getFirstCycle(), E = getFinalCycle(); Cycle <= E; ++Cycle) { in finalizeSchedule() local 2839 std::deque<SUnit *> &cycleInstrs = ScheduledInstrs[Cycle]; in finalizeSchedule()
|
D | ModuloSchedule.cpp | 2127 static void parseSymbolString(StringRef S, int &Cycle, int &Stage) { in parseSymbolString() argument 2141 CycleTokenAndValue.second.drop_front().getAsInteger(10, Cycle); in parseSymbolString() 2143 dbgs() << " Stage=" << Stage << ", Cycle=" << Cycle << "\n"; in parseSymbolString() 2151 DenseMap<MachineInstr *, int> Cycle, Stage; in runOnLoop() local 2159 parseSymbolString(Sym->getName(), Cycle[&MI], Stage[&MI]); in runOnLoop() 2163 ModuloSchedule MS(MF, &L, std::move(Instrs), std::move(Cycle), in runOnLoop()
|
D | IfConversion.cpp | 286 unsigned Cycle, unsigned Extra, in MeetIfcvtSizeLimit() argument 288 return Cycle > 0 && TII->isProfitableToIfCvt(BB, Cycle, Extra, in MeetIfcvtSizeLimit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonLoopIdiomRecognition.cpp | 580 bool findCycle(Value *Out, Value *In, ValueSeq &Cycle); 581 void classifyCycle(Instruction *DivI, ValueSeq &Cycle, ValueSeq &Early, 1116 ValueSeq &Cycle) { in findCycle() argument 1137 if (Cycle.count(I)) in findCycle() 1139 Cycle.insert(I); in findCycle() 1140 if (findCycle(I, In, Cycle)) in findCycle() 1142 Cycle.remove(I); in findCycle() 1144 return !Cycle.empty(); in findCycle() 1148 ValueSeq &Cycle, ValueSeq &Early, ValueSeq &Late) { in classifyCycle() argument 1154 unsigned I, N = Cycle.size(); in classifyCycle() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
D | Instruction.h | 299 bool contains(unsigned Cycle) const { return Cycle >= Begin && Cycle < End; } in contains() argument
|
/third_party/ffmpeg/doc/ |
D | ffplay.texi | 221 Cycle audio channel in the current program. 224 Cycle video channel. 227 Cycle subtitle channel in the current program. 230 Cycle program. 233 Cycle video filters or show modes.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/PowerPC/ |
D | PPCGenExegesis.inc | 16 PPCPfmCounterNames[0], // Cycle counter
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/ |
D | AArch64GenExegesis.inc | 16 AArch64PfmCounterNames[0], // Cycle counter
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenExegesis.inc | 16 MipsPfmCounterNames[0], // Cycle counter
|
/third_party/openssl/doc/life-cycles/ |
D | README.md | 1 Algorithm Life-Cycle Diagrams
|
/third_party/typescript/tests/baselines/reference/tsbuild/demo/ |
D | in-circular-branch-reports-the-error-about-it-by-stopping-build.js | 159 [91merror[0m[90m TS6202: [0mProject references may not form a circular graph. Cycle detected: /…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | R600InstrInfo.cpp | 462 unsigned Cycle = getTransSwizzle(TransSwz, i); in isLegalUpTo() local 467 if (Vector[Src.second][Cycle] < 0) in isLegalUpTo() 468 Vector[Src.second][Cycle] = Src.first; in isLegalUpTo() 469 if (Vector[Src.second][Cycle] != Src.first) in isLegalUpTo() 523 unsigned Cycle = getTransSwizzle(TransSwz, i); in isConstCompatible() local 526 if (ConstCount > 0 && Cycle == 0) in isConstCompatible() 528 if (ConstCount > 1 && Cycle == 1) in isConstCompatible()
|
/third_party/icu/icu4c/source/data/lang/ |
D | hi_Latn.txt | 13 hc{"Hours ki Cycle (12 vs 24)"}
|
/third_party/node/src/crypto/ |
D | crypto_tls.h | 163 void Cycle();
|
D | crypto_tls.cc | 419 Cycle(); in NewSessionDoneCb() 1137 Cycle(); in OnStreamRead() 1287 c->Cycle(); in OnClientHelloParseEnd() 2061 void TLSWrap::Cycle() { in Cycle() function in node::crypto::TLSWrap
|
/third_party/curl/docs/ |
D | RELEASE-PROCEDURE.md | 66 Release Cycle
|
/third_party/node/deps/npm/docs/content/using-npm/ |
D | scripts.md | 36 ### Life Cycle Scripts 105 ### Life Cycle Operation Order
|
/third_party/typescript/tests/baselines/reference/tsbuildWatch/demo/ |
D | updates-with-circular-reference.js | 161 [91merror[0m[90m TS6202: [0mProject references may not form a circular graph. Cycle detected: /…
|