Fixed up the code that prints out registers to take into account microregisters.
--HG-- extra : convert_revision : 6809de467e4500ce34447c0544caf0ba04af81e7
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user