Got rid of some debug output

--HG--
extra : convert_revision : 6e98cf839dc92bde5f06f9b9bf11ca6ac661c907
This commit is contained in:
Gabe Black 2006-10-26 20:23:00 -04:00
parent e441be1b82
commit 5024b20278

View file

@ -336,22 +336,14 @@ void doNormalFault(ThreadContext *tc, TrapType tt)
bool changedCWP = true; bool changedCWP = true;
if(tt == 0x24) if(tt == 0x24)
{
warn("Incrementing the CWP by 1\n");
CWP++; CWP++;
}
else if(0x80 <= tt && tt <= 0xbf) else if(0x80 <= tt && tt <= 0xbf)
{
warn("Incrementing the CWP by %d\n", CANSAVE + 2);
CWP += (CANSAVE + 2); CWP += (CANSAVE + 2);
}
else if(0xc0 <= tt && tt <= 0xff) else if(0xc0 <= tt && tt <= 0xff)
{
warn("Decrementing the CWP by 1\n");
CWP--; CWP--;
}
else else
changedCWP = false; changedCWP = false;
if(changedCWP) if(changedCWP)
{ {
CWP = (CWP + NWindows) % NWindows; CWP = (CWP + NWindows) % NWindows;
@ -395,7 +387,6 @@ void TrapInstruction::invoke(ThreadContext * tc)
void SpillNNormal::invoke(ThreadContext *tc) void SpillNNormal::invoke(ThreadContext *tc)
{ {
warn("I'm in a spill trap\n");
doNormalFault(tc, trapType()); doNormalFault(tc, trapType());
Process *p = tc->getProcessPtr(); Process *p = tc->getProcessPtr();
@ -413,7 +404,6 @@ void SpillNNormal::invoke(ThreadContext *tc)
void FillNNormal::invoke(ThreadContext *tc) void FillNNormal::invoke(ThreadContext *tc)
{ {
warn("I'm in a fill trap\n");
doNormalFault(tc, trapType()); doNormalFault(tc, trapType());
Process * p = tc->getProcessPtr(); Process * p = tc->getProcessPtr();