/third_party/node/deps/v8/src/compiler/backend/riscv64/ |
H A D | instruction-scheduler-riscv64.cc | 427 enum Latency { enum 585 return Latency::MUL32; in Mul32Latency() 587 return Latency::MUL32 + 1; in Mul32Latency() 592 int latency = Latency::DMULT + Latency::MOVF_LOW; in Mul64Latency() 600 int latency = Latency::MULT + Latency::MOVF_HIGH; in Mulh32Latency() 608 int latency = Latency::MULTU + Latency::MOVF_HIGH; in Mulhu32Latency() 616 int latency = Latency in Mulh64Latency() [all...] |
/third_party/node/deps/v8/src/compiler/backend/mips64/ |
H A D | instruction-scheduler-mips64.cc | 421 enum Latency { enum 584 return Latency::MUL; in MulLatency() 586 return Latency::MUL + 1; in MulLatency() 593 latency = Latency::DMUL; in DmulLatency() 595 latency = Latency::DMULT + Latency::MFLO; in DmulLatency() 606 latency = Latency::MUH; in MulhLatency() 608 latency = Latency::MULT + Latency::MFHI; in MulhLatency() 619 latency = Latency in MulhuLatency() [all...] |
/third_party/node/deps/v8/src/compiler/backend/mips/ |
H A D | instruction-scheduler-mips.cc | 396 enum Latency { enum 529 return (6 + 2 * Latency::BRANCH); in ClzLatency() 574 return Latency::MULT + 1; in MulLatency() 576 return Latency::MUL + 1; in MulLatency() 580 return Latency::MULT + 2; in MulLatency() 582 return Latency::MUL + 2; in MulLatency() 608 return latency + Latency::BRANCH + 2; in ShlPairLatency() 622 return latency + Latency::BRANCH + 2; in ShrPairLatency() 636 Latency::BRANCH + 6; in SarPairLatency() 689 return latency + Latency in MuluLatency() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCDisassembler/ |
H A D | Disassembler.cpp | 183 int Latency = 0; in getItineraryLatency() local 186 Latency = std::max(Latency, IID.getOperandCycle(SCClass, OpIdx)); in getItineraryLatency() 188 return Latency; in getItineraryLatency() 216 int16_t Latency = 0; in getLatency() 222 Latency = std::max(Latency, WLEntry->Cycles); in getLatency() 225 return Latency; in getLatency() 231 int Latency = getLatency(DC, Inst); in emitLatency() local 234 if (Latency < in emitLatency() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MCA/ |
H A D | InstrBuilder.cpp | 213 int Latency = MCSchedModel::computeInstrLatency(STI, SCDesc); in computeMaxLatency() local 215 ID.MaxLatency = Latency < 0 ? 100U : static_cast<unsigned>(Latency); in computeMaxLatency() 320 Write.Latency = 325 Write.Latency = ID.MaxLatency; 331 << ", Latency=" << Write.Latency 348 Write.Latency = 353 Write.Latency = ID.MaxLatency; 362 << ", Latency [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCInstrItineraries.h | 153 unsigned Latency = 0, StartCycle = 0; in getStageLatency() local 156 Latency = std::max(Latency, StartCycle + IS->getCycles()); in getStageLatency() 159 return Latency; in getStageLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | ScheduleDAG.h | 94 /// Latency field of the predecessor, however advanced models may provide 96 unsigned Latency; member in llvm::SDep 114 Latency = 0; in SDep() 118 Latency = 1; in SDep() 124 : Dep(S, Order), Contents(), Latency(0) { in SDep() 132 return overlaps(Other) && Latency == Other.Latency; in operator ==() 143 return Latency; in getLatency() 148 Latency = Lat; in setLatency() 273 unsigned short Latency variable [all...] |
H A D | ScheduleDAGInstrs.h | 207 unsigned Latency = 0); 210 void addChainDependencies(SUnit *SU, SUList &SUs, unsigned Latency) { in addChainDependencies() argument 212 addChainDependency(SU, Entry, Latency); in addChainDependencies()
|
H A D | MachinePipeliner.h | 325 unsigned Latency = 0; member in llvm::NodeSet 332 Latency = 0; in NodeSet() 336 Latency += Succ.getLatency(); in NodeSet() 377 unsigned getLatency() { return Latency; } in getLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCSchedule.cpp | 42 int Latency = 0; in computeInstrLatency() local 51 Latency = std::max(Latency, static_cast<int>(WLEntry->Cycles)); in computeInstrLatency() 53 return Latency; in computeInstrLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | ScheduleDAGSDNodes.cpp | 92 SU->Latency = Old->Latency; in Clone() 417 // Assign the Latency field of NodeSUnit using target-provided information. 498 unsigned OpLatency = isChain ? 1 : OpSU->Latency; 615 SU->Latency = 0; 621 SU->Latency = 1; 628 SU->Latency = HighLatencyCycles; 630 SU->Latency = 1; 636 SU->Latency = 0; 639 SU->Latency [all...] |
H A D | ScheduleDAGVLIW.cpp | 242 if (FoundSUnit->Latency) // Don't increment CurCycle for pseudo-ops! in listScheduleTopDown()
|
H A D | ScheduleDAGFast.cpp | 335 D.setLatency(LoadSU->Latency); in CopyAndMoveSuccessors() 410 FromDep.setLatency(SU->Latency); in InsertCopiesAndMoveSuccs() 413 ToDep.setLatency(CopyFromSU->Latency); in InsertCopiesAndMoveSuccs()
|
H A D | ScheduleDAGRRList.cpp | 1116 D.setLatency(LoadSU->Latency); in TryUnfoldSU() 1258 FromDep.setLatency(SU->Latency); in InsertCopiesAndMoveSuccs() 1261 ToDep.setLatency(CopyFromSU->Latency); in InsertCopiesAndMoveSuccs() 2516 if (left->Latency != right->Latency) 2517 return left->Latency > right->Latency ? 1 : -1;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | TargetSchedule.cpp | 224 unsigned Latency = capLatency(WLEntry->Cycles); in computeOperandLatency() local 226 return Latency; in computeOperandLatency() 231 return Latency; in computeOperandLatency() 234 if (Advance > 0 && (unsigned)Advance > Latency) // unsigned wrap in computeOperandLatency() 236 return Latency - Advance; in computeOperandLatency()
|
H A D | CriticalAntiDepBreaker.cpp | 467 if (!Max || SU->getDepth() + SU->Latency > Max->getDepth() + Max->Latency) in BreakAntiDependencies() 475 << (Max->getDepth() + Max->Latency) << "\n"); in BreakAntiDependencies()
|
H A D | ScheduleDAGInstrs.cpp | 545 unsigned Latency) { in addChainDependency() 548 Dep.setLatency(Latency); in addChainDependency() 580 // Assign the Latency field of SU using target-provided information. in initSUnits() 581 SU->Latency = SchedModel.computeInstrLatency(SU->getInstr()); in initSUnits() 877 if (SU->NumSuccs == 0 && SU->Latency > 1 && (HasVRegDef || MI.mayLoad())) { in buildSchedGraph() 879 Dep.setLatency(SU->Latency - 1); in buildSchedGraph() 544 addChainDependency(SUnit *SUa, SUnit *SUb, unsigned Latency) addChainDependency() argument
|
H A D | MachineScheduler.cpp | 1340 unsigned LiveOutDepth = DefSU->getDepth() + DefSU->Latency; in computeCyclicCriticalPath() 1360 unsigned LiveInHeight = SU->getHeight() + DefSU->Latency; in computeCyclicCriticalPath() 1838 /// Given a Count of resource usage and a Latency value, return true if a 1843 unsigned Latency, bool AfterSchedNode) { in checkResourceLimit() 1844 int ResCntFactor = (int)(Count - (Latency * LFactor)); in checkResourceLimit() 2441 << (IsResourceLimited ? " - Resource" : " - Latency") in dumpScheduledState() 2560 << " Latency limited both directions.\n"); in setPolicy() 2597 unsigned Latency = 0; in traceCandidate() local 2617 Latency = Cand.SU->getDepth(); in traceCandidate() 2620 Latency in traceCandidate() 1842 checkResourceLimit(unsigned LFactor, unsigned Count, unsigned Latency, bool AfterSchedNode) checkResourceLimit() argument [all...] |
H A D | AggressiveAntiDepBreaker.cpp | 788 ((SU->getDepth() + SU->Latency) > 789 (CriticalPathSU->getDepth() + CriticalPathSU->Latency))) {
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | GCNILPSched.cpp | 157 if (left->Latency != right->Latency) in BUCompareLatency() 158 return left->Latency > right->Latency ? 1 : -1; in BUCompareLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonSubtarget.cpp | 436 int Latency = (InstrInfo.getOperandLatency(&InstrItins, *SrcI, in restoreLatency() local 441 Latency = std::max(Latency, 0); in restoreLatency() 443 I.setLatency(Latency); in restoreLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A D | ARMBaseInstrInfo.cpp | 4300 unsigned Latency = getInstrLatency(ItinData, DefMI); in getOperandLatencyImpl() local 4306 if (Latency > 0 && Subtarget.isThumb2()) { in getOperandLatencyImpl() 4310 --Latency; in getOperandLatencyImpl() 4312 return Latency; in getOperandLatencyImpl() 4326 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign, UseMCID, in getOperandLatencyImpl() local 4329 if (Latency < 0) in getOperandLatencyImpl() 4330 return Latency; in getOperandLatencyImpl() 4337 if (Adj >= 0 || (int)Latency > -Adj) { in getOperandLatencyImpl() 4338 return Latency + Adj; in getOperandLatencyImpl() 4341 return Latency; in getOperandLatencyImpl() 4360 int Latency = ItinData->getOperandCycle(DefMCID.getSchedClass(), DefIdx); getOperandLatency() local 4373 int Latency = getOperandLatency(ItinData, DefMCID, DefIdx, DefAlign, getOperandLatency() local 4630 unsigned Latency = 0; getInstrLatency() local 4659 unsigned Latency = ItinData->getStageLatency(Class); getInstrLatency() local 4702 unsigned Latency = hasHighOperandLatency() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
H A D | X86CmovConversion.cpp | 465 unsigned Latency = TSchedModel.computeInstrLatency(&MI); in checkForProfitableCmovCandidates() local 466 DepthMap[&MI] = {MIDepth += Latency, MIDepthOpt += Latency}; in checkForProfitableCmovCandidates()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MCA/ |
H A D | Instruction.h | 43 unsigned Latency; member 164 unsigned getLatency() const { return WD->Latency; } in getLatency()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
H A D | PPCInstrInfo.cpp | 158 unsigned Latency = 1; in getInstrLatency() local 169 Latency = std::max(Latency, (unsigned) Cycle); in getInstrLatency() 172 return Latency; in getInstrLatency() 179 int Latency = PPCGenInstrInfo::getOperandLatency(ItinData, DefMI, DefIdx, in getOperandLatency() local 183 return Latency; in getOperandLatency() 200 if (Latency < 0) in getOperandLatency() 201 Latency = getInstrLatency(ItinData, DefMI); in getOperandLatency() 220 Latency += 2; in getOperandLatency() 225 return Latency; in getOperandLatency() [all...] |