Home
last modified time | relevance | path

Searched refs:Cycle (Results 1 – 25 of 35) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/X86/
DX86GenExegesis.inc106 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/
DModuloSchedule.h89 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()
DScheduleDAG.h546 void setCurCycle(unsigned Cycle) { in setCurCycle() argument
547 CurCycle = Cycle; in setCurCycle()
DMachineTraceMetrics.h77 unsigned Cycle = 0; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
DP9InstrResources.td457 // 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 …]
DPPCInstrInfo.cpp165 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/
DMachineTraceMetrics.cpp793 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 …]
DMachinePipeliner.cpp533 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()
DModuloSchedule.cpp2127 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()
DIfConversion.cpp286 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/
DHexagonLoopIdiomRecognition.cpp580 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/
DInstruction.h299 bool contains(unsigned Cycle) const { return Cycle >= Begin && Cycle < End; } in contains() argument
/third_party/ffmpeg/doc/
Dffplay.texi221 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/
DPPCGenExegesis.inc16 PPCPfmCounterNames[0], // Cycle counter
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/AArch64/
DAArch64GenExegesis.inc16 AArch64PfmCounterNames[0], // Cycle counter
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/
DMipsGenExegesis.inc16 MipsPfmCounterNames[0], // Cycle counter
/third_party/openssl/doc/life-cycles/
DREADME.md1 Algorithm Life-Cycle Diagrams
/third_party/typescript/tests/baselines/reference/tsbuild/demo/
Din-circular-branch-reports-the-error-about-it-by-stopping-build.js159 error TS6202: Project 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/
DR600InstrInfo.cpp462 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/
Dhi_Latn.txt13 hc{"Hours ki Cycle (12 vs 24)"}
/third_party/node/src/crypto/
Dcrypto_tls.h163 void Cycle();
Dcrypto_tls.cc419 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/
DRELEASE-PROCEDURE.md66 Release Cycle
/third_party/node/deps/npm/docs/content/using-npm/
Dscripts.md36 ### Life Cycle Scripts
105 ### Life Cycle Operation Order
/third_party/typescript/tests/baselines/reference/tsbuildWatch/demo/
Dupdates-with-circular-reference.js161 error TS6202: Project references may not form a circular graph. Cycle detected: /…

12