Home
last modified time | relevance | path

Searched refs:UsedSQEntries (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/MCA/HardwareUnits/
H A DLSUnit.h47 unsigned UsedSQEntries; variable
69 unsigned getUsedSQEntries() const { return UsedSQEntries; } in getUsedSQEntries()
71 void acquireSQSlot() { ++UsedSQEntries; } in acquireSQSlot()
73 void releaseSQSlot() { --UsedSQEntries; } in releaseSQSlot()
98 bool isSQEmpty() const { return !UsedSQEntries; } in isSQEmpty()
100 bool isSQFull() const { return SQSize && SQSize == UsedSQEntries; } in isSQFull()
/freebsd/contrib/llvm-project/llvm/lib/MCA/HardwareUnits/
H A DLSUnit.cpp26 : LQSize(LQ), SQSize(SQ), UsedLQEntries(0), UsedSQEntries(0), in LSUnitBase()