Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/Stages/
DInOrderIssueStage.cpp90 int CyclesLeft = WS.getCyclesLeft(); in findFirstWriteBackCycle()
115 assert(!SI.getCyclesLeft() && "Should not have reached this code!"); in canExecute()
207 << SI.getCyclesLeft() << " cycles\n"); in tryIssue()
259 LastWriteBackCycle = IS.getCyclesLeft(); in tryIssue()
331 assert(SI.getCyclesLeft() && "A zero cycles stall?"); in notifyStallEvent()
378 if (!SI.getCyclesLeft()) { in cycleStart()
389 if (SI.getCyclesLeft()) { in cycleStart()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
DRegisterFile.cpp118 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in onInstructionExecuted()
120 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in onInstructionExecuted()
333 assert(WS.getCyclesLeft() != UNKNOWN_CYCLES && in removeRegisterWrite()
335 assert(WS.getCyclesLeft() <= 0 && "Invalid cycles left for this write!"); in removeRegisterWrite()
479 assert((!Write || Write->getCyclesLeft() <= 0) && in getWriteBackCycle()
571 if (WS->getCyclesLeft() == UNKNOWN_CYCLES) { in checkRAWHazards()
580 int CyclesLeft = WS->getCyclesLeft() - ReadAdvance; in checkRAWHazards()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
DLSUnit.h122 unsigned Cycles = IR.getInstruction()->getCyclesLeft(); in onGroupIssued()
143 if (OtherIS.getCyclesLeft() < IS.getCyclesLeft()) in onInstructionIssued()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MCA/Stages/
DInOrderIssueStage.h42 unsigned getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/MCA/
DInstruction.h258 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
630 int getCyclesLeft() const { return CyclesLeft; } in getCyclesLeft() function
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MCA/
DInstruction.cpp127 << getRegisterID() << ", Cycles Left=" << getCyclesLeft() << " }"; in dump()