From 219c423f1fb0f9a559bfa87f9812426d5e2c3e29 Mon Sep 17 00:00:00 2001 From: Steve Reinhardt Date: Tue, 15 Oct 2013 14:22:43 -0400 Subject: 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; --- src/cpu/checker/cpu_impl.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/cpu/checker/cpu_impl.hh') diff --git a/src/cpu/checker/cpu_impl.hh b/src/cpu/checker/cpu_impl.hh index 1967e02f3..185fed88e 100644 --- a/src/cpu/checker/cpu_impl.hh +++ b/src/cpu/checker/cpu_impl.hh @@ -607,7 +607,7 @@ Checker::copyResult(DynInstPtr &inst, uint64_t mismatch_val, thread->setFloatRegBits(idx, mismatch_val); break; case MiscRegClass: - thread->setMiscReg(idx - TheISA::Ctrl_Base_DepTag, + thread->setMiscReg(idx - TheISA::Misc_Reg_Base, mismatch_val); break; } @@ -626,7 +626,7 @@ Checker::copyResult(DynInstPtr &inst, uint64_t mismatch_val, break; case MiscRegClass: // Try to get the proper misc register index for ARM here... - thread->setMiscReg(idx - TheISA::Ctrl_Base_DepTag, res); + thread->setMiscReg(idx - TheISA::Misc_Reg_Base, res); break; // else Register is out of range... } -- cgit v1.2.3