Searched refs:getLatency (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/MCA/
H A DInstruction.cpp56 CyclesLeft = getLatency();
125 dbgs() << "{ OpIdx=" << WD->OpIndex << ", Lat=" << getLatency() << ", RegID "
173 CyclesLeft = getLatency();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAG.cpp85 dbgs() << " Latency=" << getLatency();
91 dbgs() << " Latency=" << getLatency();
94 dbgs() << " Latency=" << getLatency();
117 if (PredDep.getLatency() < D.getLatency()) {
124 SuccDep.setLatency(D.getLatency());
128 PredDep.setLatency(D.getLatency());
168 if (P.getLatency() != 0) {
211 if (P.getLatency() != 0) {
276 PredSU->Depth + PredDep.getLatency());
[all...]
H A DLatencyPriorityQueue.cpp36 unsigned LHSLatency = PQ->getLatency(LHSNum);
37 unsigned RHSLatency = PQ->getLatency(RHSNum);
H A DMachineCombiner.cpp97 unsigned getLatency(MachineInstr *Root, MachineInstr *NewRoot,
224 unsigned MachineCombiner::getLatency(MachineInstr *Root, MachineInstr *NewRoot, function in class:MachineCombiner
292 NewRootLatency += getLatency(&MI, NewRoot, BlockTrace);
H A DMachinePipeliner.cpp1098 unsigned Delay = Nodes.getLatency();
1132 unsigned Lat = D.getLatency();
1388 if (IP->getLatency() == 0)
1393 asap = std::max(asap, (int)(getASAP(pred) + IP->getLatency() -
1412 if (IS->getLatency() == 0)
1417 alap = std::min(alap, (int)(getALAP(succ) - IS->getLatency() +
2415 int EarlyStart = cycle + Dep.getLatency() -
2423 int LateStart = cycle - Dep.getLatency() +
2439 int LateStart = cycle - Dep.getLatency() +
2447 int EarlyStart = cycle + Dep.getLatency()
[all...]
H A DCriticalAntiDepBreaker.cpp152 unsigned PredLatency = P->getLatency();
H A DAggressiveAntiDepBreaker.cpp286 unsigned PredLatency = P->getLatency();
H A DMachineScheduler.cpp639 if (SuccSU->TopReadyCycle < SU->TopReadyCycle + SuccEdge->getLatency())
640 SuccSU->TopReadyCycle = SU->TopReadyCycle + SuccEdge->getLatency();
676 if (PredSU->BotReadyCycle < SU->BotReadyCycle + PredEdge->getLatency())
677 PredSU->BotReadyCycle = SU->BotReadyCycle + PredEdge->getLatency();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLatencyPriorityQueue.h68 unsigned getLatency(unsigned NodeNum) const { function in class:llvm::LatencyPriorityQueue
H A DResourcePriorityQueue.h93 unsigned getLatency(unsigned NodeNum) const { function in class:llvm::ResourcePriorityQueue
H A DMachinePipeliner.h336 Latency += Succ.getLatency();
377 unsigned getLatency() { return Latency; } function in class:llvm::NodeSet
H A DScheduleDAG.h142 unsigned getLatency() const { function in class:llvm::SDep
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHazardRecognizer.cpp144 if (S.isAssignedRegDep() && S.getLatency() == 0 &&
159 if (S.isAssignedRegDep() && S.getLatency() == 0 &&
H A DHexagonMachineScheduler.cpp86 if (S.getSUnit() == SUu && S.getLatency() > 0)
294 unsigned MinLatency = PI.getLatency();
313 unsigned MinLatency = I->getLatency();
708 PI.getLatency() == 0 &&
717 SI.getLatency() == 0 &&
733 if (PI.getLatency() > 0 &&
741 if (SI.getLatency() > 0 &&
H A DHexagonSubtarget.cpp153 if (SI.getKind() != SDep::Order || SI.getLatency() != 0)
415 Dep.setLatency((Dep.getLatency() + 1) >> 1);
452 F->setLatency(I.getLatency());
476 if (I.isAssignedRegDep() && I.getLatency() == 0 &&
H A DHexagonVLIWPacketizer.cpp1863 if ((Pred.getLatency() == 0 && Pred.isAssignedRegDep()) ||
1873 if (Pred.getSUnit() == SUJ && Pred.getLatency() > 1)
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h164 unsigned getLatency() const { return WD->Latency; } function in class:llvm::mca::WriteState
196 return !CyclesLeft || CyclesLeft < getLatency();
420 unsigned getLatency() const { return Desc.MaxLatency; } function in class:llvm::mca::InstructionBase
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp128 SuccSU->setDepthToAtLeast(SU->getDepth() + D.getLatency());
H A DResourcePriorityQueue.cpp190 unsigned LHSLatency = PQ->getLatency(LHSNum);
191 unsigned RHSLatency = PQ->getLatency(RHSNum);
H A DScheduleDAGRRList.cpp414 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge->getLatency());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCDisassembler/
H A DDisassembler.cpp194 static int getLatency(LLVMDisasmContext *DC, const MCInst &Inst) { function
231 int Latency = getLatency(DC, Inst);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNILPSched.cpp283 PredSU->setHeightToAtLeast(SU->getHeight() + PredEdge.getLatency());

Completed in 337 milliseconds