summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/instrview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/instrview.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/instrview.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/tdecachegrind/tdecachegrind/instrview.cpp b/tdecachegrind/tdecachegrind/instrview.cpp
index 3df16793..ed3ad4de 100644
--- a/tdecachegrind/tdecachegrind/instrview.cpp
+++ b/tdecachegrind/tdecachegrind/instrview.cpp
@@ -96,7 +96,7 @@ static bool parseLine(char* buf, Addr& addr,
if (strlen(buf+pos2) > 50)
strcpy(buf+pos2+47, "...");
- if (0) qDebug("For 0x%s: Code '%s', Mnc '%s', Args '%s'",
+ if (0) tqDebug("For 0x%s: Code '%s', Mnc '%s', Args '%s'",
addr.toString().ascii(), buf+pos1, buf+pos2, buf+pos3);
return true;
@@ -504,7 +504,7 @@ void InstrView::updateJumpArray(Addr addr, InstrItem* ii,
Addr lowAddr, highAddr;
int iEnd = -1, iStart = -1;
- if (0) qDebug("updateJumpArray(addr 0x%s, jump to %s)",
+ if (0) tqDebug("updateJumpArray(addr 0x%s, jump to %s)",
addr.toString().ascii(),
ii->instrJump()
? ii->instrJump()->instrTo()->name().ascii() : "?" );
@@ -540,7 +540,7 @@ void InstrView::updateJumpArray(Addr addr, InstrItem* ii,
_arrowLevels++;
_jump.resize(_arrowLevels);
}
- if (0) qDebug(" new start at %d for %s", iStart, ij->name().ascii());
+ if (0) tqDebug(" new start at %d for %s", iStart, ij->name().ascii());
_jump[iStart] = ij;
}
ij=_lowList.next();
@@ -569,12 +569,12 @@ void InstrView::updateJumpArray(Addr addr, InstrItem* ii,
}
if (0 && (iEnd>=0))
- qDebug(" end %d (%s to %s)",
+ tqDebug(" end %d (%s to %s)",
iEnd,
_jump[iEnd]->instrFrom()->name().ascii(),
_jump[iEnd]->instrTo()->name().ascii());
- if (0 && ij) qDebug("next end: %s to %s",
+ if (0 && ij) tqDebug("next end: %s to %s",
ij->instrFrom()->name().ascii(),
ij->instrTo()->name().ascii());
@@ -620,7 +620,7 @@ bool InstrView::fillInstrRange(TraceFunction* function,
"--start-address=0x%1 --stop-address=0x%2 \"%3\"")
.arg(dumpStartAddr.toString()).arg(dumpEndAddr.toString())
.arg(objfile);
- if (1) qDebug("Running '%s'...", popencmd.ascii());
+ if (1) tqDebug("Running '%s'...", popencmd.ascii());
// and run...
FILE* iFILE = popen(TQFile::encodeName( popencmd ), "r");
@@ -669,7 +669,7 @@ bool InstrView::fillInstrRange(TraceFunction* function,
objdumpLineno++;
if (readBytes == BUF_SIZE) {
- qDebug("ERROR: Line %d of '%s' too long\n",
+ tqDebug("ERROR: Line %d of '%s' too long\n",
objdumpLineno, popencmd.ascii());
}
else if ((readBytes>0) && (buf[readBytes-1] == '\n'))
@@ -931,7 +931,7 @@ void InstrView::readViewConfig(KConfig* c,
{
KConfigGroup* g = configGroup(c, prefix, postfix);
- if (0) qDebug("InstrView::readViewConfig");
+ if (0) tqDebug("InstrView::readViewConfig");
_showHexCode = g->readBoolEntry("ShowHexCode", DEFAULT_SHOWHEXCODE);