Home
last modified time | relevance | path

Searched refs:CurrentCycle (Results 1 – 4 of 4) sorted by relevance

/openbsd-src/gnu/llvm/llvm/tools/llvm-mca/Views/
H A DTimelineView.cpp23 : InstructionView(sti, Printer, S), CurrentCycle(0), in TimelineView()
67 if (CurrentCycle < MaxCycle) in onEvent()
68 TVEntry.CycleRetired = CurrentCycle; in onEvent()
80 if (CurrentCycle > TVEntry.CycleExecuted) { in onEvent()
82 (CurrentCycle - 1) - TVEntry.CycleExecuted; in onEvent()
87 Timeline[Index].CycleReady = CurrentCycle; in onEvent()
90 Timeline[Index].CycleIssued = CurrentCycle; in onEvent()
93 Timeline[Index].CycleExecuted = CurrentCycle; in onEvent()
100 Timeline[Index].CycleDispatched = static_cast<int>(CurrentCycle); in onEvent()
105 if (CurrentCycle < MaxCycle) in onEvent()
[all …]
H A DTimelineView.h123 unsigned CurrentCycle; variable
170 void onCycleEnd() override { ++CurrentCycle; } in onCycleEnd()
/openbsd-src/gnu/llvm/llvm/include/llvm/MCA/HardwareUnits/
H A DRegisterFile.h196 unsigned CurrentCycle; variable
302 void cycleEnd() { ++CurrentCycle; } in cycleEnd()
/openbsd-src/gnu/llvm/llvm/lib/MCA/HardwareUnits/
H A DRegisterFile.cpp68 ZeroRegisters(mri.getNumRegs(), false), CurrentCycle() {
128 WR.notifyExecuted(CurrentCycle); in onInstructionExecuted()
133 OtherWR.notifyExecuted(CurrentCycle); in onInstructionExecuted()
142 OtherWR.notifyExecuted(CurrentCycle); in onInstructionExecuted()
499 return CurrentCycle - WR.getWriteBackCycle(); in getElapsedCyclesFromWriteBack()