cpu: O3 switchFreeList checking VecElems instead of FloatRegs
Vector elements should be checked instead of floats since those are the ones mapped to the vector registers. Change-Id: I36088ab90e63720d846fcf5b43360da105b6c736 Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/17850 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
@@ -151,8 +151,9 @@ UnifiedRenameMap::switchFreeList(UnifiedFreeList* freeList)
|
||||
panic_if(freeList->hasFreeVecRegs(),
|
||||
"The free list is already tracking full Vec");
|
||||
panic_if(freeList->numFreeVecElems() !=
|
||||
regFile->numVecElemPhysRegs() - TheISA::NumFloatRegs,
|
||||
"The free list has lost vector register elements");
|
||||
regFile->numVecElemPhysRegs() -
|
||||
TheISA::NumVecRegs * TheISA::NumVecElemPerVecReg,
|
||||
"The free list has lost vector register elements");
|
||||
|
||||
auto range = regFile->getRegIds(VecRegClass);
|
||||
freeList->addRegs(range.first + TheISA::NumVecRegs, range.second);
|
||||
|
||||
Reference in New Issue
Block a user