diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2013-10-15 14:22:43 -0400 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2013-10-15 14:22:43 -0400 |
commit | 219c423f1fb0f9a559bfa87f9812426d5e2c3e29 (patch) | |
tree | 7980ae867c4642e710af7cd5d0ad7fe51c0b6687 /src/arch/power/registers.hh | |
parent | a830e63de71e5929b8ff8e334bc872faa9193a8b (diff) | |
download | gem5-219c423f1fb0f9a559bfa87f9812426d5e2c3e29.tar.xz |
cpu: rename *_DepTag constants to *_Reg_Base
Make these names more meaningful.
Specifically, made these substitutions:
s/FP_Base_DepTag/FP_Reg_Base/g;
s/Ctrl_Base_DepTag/Misc_Reg_Base/g;
s/Max_DepTag/Max_Reg_Index/g;
Diffstat (limited to 'src/arch/power/registers.hh')
-rw-r--r-- | src/arch/power/registers.hh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/arch/power/registers.hh b/src/arch/power/registers.hh index 723d664d2..89de3719c 100644 --- a/src/arch/power/registers.hh +++ b/src/arch/power/registers.hh @@ -84,9 +84,9 @@ const int SyscallPseudoReturnReg = 3; const int SyscallSuccessReg = 3; // These help enumerate all the registers for dependence tracking. -const int FP_Base_DepTag = NumIntRegs; -const int Ctrl_Base_DepTag = FP_Base_DepTag + NumFloatRegs; -const int Max_DepTag = Ctrl_Base_DepTag + NumMiscRegs; +const int FP_Reg_Base = NumIntRegs; +const int Misc_Reg_Base = FP_Reg_Base + NumFloatRegs; +const int Max_Reg_Index = Misc_Reg_Base + NumMiscRegs; typedef union { IntReg intreg; |