From: Gabe Black Date: Fri, 10 Nov 2006 20:25:52 +0000 (-0500) Subject: Fixed up the code that prints out registers to take into account microregisters. X-Git-Tag: m5_2.0_beta2~65^2~5 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=27b43b62b753ba4e2323c487960338b94d156b6c;p=gem5.git Fixed up the code that prints out registers to take into account microregisters. --HG-- extra : convert_revision : 6809de467e4500ce34447c0544caf0ba04af81e7 --- diff --git a/src/arch/sparc/isa/base.isa b/src/arch/sparc/isa/base.isa index a4c022411..122ad2b52 100644 --- a/src/arch/sparc/isa/base.isa +++ b/src/arch/sparc/isa/base.isa @@ -189,6 +189,7 @@ output decoder {{ const int MaxOutput = 16; const int MaxLocal = 24; const int MaxInput = 32; + const int MaxMicroReg = 33; if (reg == FramePointerReg) ccprintf(os, "%%fp"); else if (reg == StackPointerReg) @@ -201,6 +202,8 @@ output decoder {{ ccprintf(os, "%%l%d", reg - MaxOutput); else if(reg < MaxInput) ccprintf(os, "%%i%d", reg - MaxLocal); + else if(reg < MaxMicroReg) + ccprintf(os, "%%u%d", reg - MaxInput); else { ccprintf(os, "%%f%d", reg - FP_Base_DepTag); }