From 27b43b62b753ba4e2323c487960338b94d156b6c Mon Sep 17 00:00:00 2001 From: Gabe Black Date: Fri, 10 Nov 2006 15:25:52 -0500 Subject: Fixed up the code that prints out registers to take into account microregisters. --HG-- extra : convert_revision : 6809de467e4500ce34447c0544caf0ba04af81e7 --- src/arch/sparc/isa/base.isa | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/arch/sparc/isa/base.isa') 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); } -- cgit v1.2.3