Small touchups to SPARC
arch/sparc/regfile.hh: Added debug output to the setAltGlobals function. --HG-- extra : convert_revision : b5ed3ff6d6f30e840c2488d846658dadedb59869
This commit is contained in:
parent
6a962f8343
commit
bb4c2fba25
1 changed files with 4 additions and 0 deletions
|
@ -137,6 +137,8 @@ namespace SparcISA
|
|||
|
||||
void setAltGlobals(bool useAlt)
|
||||
{
|
||||
DPRINTF(Sparc, "Now using %s globals",
|
||||
useAlt ? "alternate" : "regular");
|
||||
regView[Globals] = useAlt ? altGlobals : regGlobals;
|
||||
offset[Globals] = useAlt ? AltGlobalOffset : RegGlobalOffset;
|
||||
}
|
||||
|
@ -782,8 +784,10 @@ namespace SparcISA
|
|||
{
|
||||
case CONTEXT_CWP:
|
||||
intRegFile.setCWP(val.reg);
|
||||
break;
|
||||
case CONTEXT_GLOBALS:
|
||||
intRegFile.setAltGlobals(val.altGlobals);
|
||||
break;
|
||||
default:
|
||||
panic("Tried to set illegal context parameter in the SPARC regfile.\n");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue