arch-mips: Delete unused register related constants.
authorGabe Black <gabe.black@gmail.com>
Mon, 25 Jan 2021 07:13:07 +0000 (23:13 -0800)
committerGabe Black <gabe.black@gmail.com>
Wed, 27 Jan 2021 00:42:31 +0000 (00:42 +0000)
Change-Id: If14aa686eda59ff9c148371b4b7f6075b2abd1d8
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/39679
Maintainer: Bobby R. Bruce <bbruce@ucdavis.edu>
Reviewed-by: Bobby R. Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
src/arch/mips/registers.hh

index aaebf3581c1a6dfac38ac95de3b9cf8c9f7428c1..0a7800879f2f792c9ad9191196ee0af15d8cb3b8 100644 (file)
@@ -106,17 +106,11 @@ enum MiscIntRegNums {
 
 // semantically meaningful register indices
 const int ZeroReg = 0;
-const int AssemblerReg = 1;
 const int SyscallSuccessReg = 7;
 const int FirstArgumentReg = 4;
 const int ReturnValueReg = 2;
 
-const int KernelReg0 = 26;
-const int KernelReg1 = 27;
-const int GlobalPointerReg = 28;
 const int StackPointerReg = 29;
-const int FramePointerReg = 30;
-const int ReturnAddressReg = 31;
 
 const int SyscallPseudoReturnReg = 3;
 
@@ -279,8 +273,6 @@ enum MiscRegIndex{
 
 const int NumMiscRegs = MISCREG_NUMREGS;
 
-const int TotalNumRegs = NumIntRegs + NumFloatRegs + NumMiscRegs;
-
 // Not applicable to MIPS
 using VecElem = ::DummyVecElem;
 using VecReg = ::DummyVecReg;