Home
last modified time | relevance | path

Searched refs:getCyclesLeft (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MCA/Stages/
H A DInOrderIssueStage.cpp91 int CyclesLeft = WS.getCyclesLeft(); in findFirstWriteBackCycle()
116 assert(!SI.getCyclesLeft() && "Should not have reached this code!"); in canExecute()
219 << SI.getCyclesLeft() << " cycles\n"); in tryIssue()
275 LastWriteBackCycle = IS.getCyclesLeft(); in tryIssue()
367 assert(SI.getCyclesLeft() && "A zero cycles stall?"); in notifyStallEvent()
415 if (!SI.getCyclesLeft()) { in cycleStart()
426 if (SI.getCyclesLeft()) { in cycleStart()
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp123 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in onInstructionExecuted()
125 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in onInstructionExecuted()
353 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in removeRegisterWrite()
355 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in removeRegisterWrite()
500 assert((!Write || Write->getCyclesLeft() <= 0) && in getWriteBackCycle()
592 if (WS->getCyclesLeft() == UNKNOWN_CYCLES) { in checkRAWHazards()
601 int CyclesLeft = WS->getCyclesLeft() - ReadAdvance; in checkRAWHazards()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h330 unsigned Cycles = IR.getInstruction()->getCyclesLeft(); in onGroupIssued()
352 if (OtherIS.getCyclesLeft() < IS.getCyclesLeft()) in onInstructionIssued()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
H A DInOrderIssueStage.h44 unsigned getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/freebsd/contrib/llvm-project/llvm/lib/MCA/
H A DInstruction.cpp127 << getRegisterID() << ", Cycles Left=" << getCyclesLeft() << " }"; in dump()
/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/
H A DInstruction.h259 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
664 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCA/
H A DAMDGPUCustomBehaviour.cpp131 const int CyclesLeft = PrevInst.getCyclesLeft(); in handleWaitCnt()