Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
351 assert(SI.getCyclesLeft() && "A zero cycles stall?"); in notifyStallEvent()
399 if (!SI.getCyclesLeft()) { in cycleStart()
410 if (SI.getCyclesLeft()) { in cycleStart()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h122 unsigned Cycles = IR.getInstruction()->getCyclesLeft(); in onGroupIssued()
143 if (OtherIS.getCyclesLeft() < IS.getCyclesLeft()) in onInstructionIssued()
/openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp118 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in onInstructionExecuted()
120 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in onInstructionExecuted()
346 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in removeRegisterWrite()
348 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in removeRegisterWrite()
492 assert((!Write || Write->getCyclesLeft() <= 0) && in getWriteBackCycle()
584 if (WS->getCyclesLeft() == UNKNOWN_CYCLES) { in checkRAWHazards()
593 int CyclesLeft = WS->getCyclesLeft() - ReadAdvance; in checkRAWHazards()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/Stages/
H A DInOrderIssueStage.h44 unsigned getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/openbsd-src/gnu/llvm/llvm/lib/MCA/
H A DInstruction.cpp127 << getRegisterID() << ", Cycles Left=" << getCyclesLeft() << " }"; in dump()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/
H A DInstruction.h258 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
663 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/MCA/
H A DAMDGPUCustomBehaviour.cpp127 const int CyclesLeft = PrevInst.getCyclesLeft(); in handleWaitCnt()