summaryrefslogtreecommitdiffstats
path: root/tdecachegrind/tdecachegrind/coverage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecachegrind/tdecachegrind/coverage.cpp')
-rw-r--r--tdecachegrind/tdecachegrind/coverage.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/tdecachegrind/tdecachegrind/coverage.cpp b/tdecachegrind/tdecachegrind/coverage.cpp
index 86e6f7ff..b9291163 100644
--- a/tdecachegrind/tdecachegrind/coverage.cpp
+++ b/tdecachegrind/tdecachegrind/coverage.cpp
@@ -114,7 +114,7 @@ void Coverage::addCallerCoverage(TraceFunctionList& fList,
if (_active) {
#ifdef DEBUG_COVERAGE
- qDebug("CallerCov: D %d, %s (was active, incl %f, self %f): newP %f", d,
+ tqDebug("CallerCov: D %d, %s (was active, incl %f, self %f): newP %f", d,
_function->prettyName().ascii(), _incl, _self, pBack);
#endif
_inRecursion = true;
@@ -137,7 +137,7 @@ void Coverage::addCallerCoverage(TraceFunctionList& fList,
}
#ifdef DEBUG_COVERAGE
- qDebug("CallerCov: D %d, %s (now active, new incl %f): newP %f",
+ tqDebug("CallerCov: D %d, %s (now active, new incl %f): newP %f",
d, _function->prettyName().ascii(), _incl, pBack);
#endif
}
@@ -215,7 +215,7 @@ void Coverage::addCallingCoverage(TraceFunctionList& fList,
incl = (double) (_function->inclusive()->subCost(_costType));
#ifdef DEBUG_COVERAGE
- qDebug("CngCov:%s - %s (incl %f, self %f): forward %f, back %f",
+ tqDebug("CngCov:%s - %s (incl %f, self %f): forward %f, back %f",
spaces+strlen(spaces)-d,
_function->prettyName().ascii(), _incl, _self, pForward, pBack);
#endif
@@ -225,7 +225,7 @@ void Coverage::addCallingCoverage(TraceFunctionList& fList,
_inRecursion = true;
#ifdef DEBUG_COVERAGE
- qDebug("CngCov:%s < %s: STOP (is active)",
+ tqDebug("CngCov:%s < %s: STOP (is active)",
spaces+strlen(spaces)-d,
_function->prettyName().ascii());
#endif
@@ -252,7 +252,7 @@ void Coverage::addCallingCoverage(TraceFunctionList& fList,
}
#ifdef DEBUG_COVERAGE
- qDebug("CngCov:%s < %s (incl %f, self %f)",
+ tqDebug("CngCov:%s < %s (incl %f, self %f)",
spaces+strlen(spaces)-d,
_function->prettyName().ascii(), _incl, _self);
#endif
@@ -290,7 +290,7 @@ void Coverage::addCallingCoverage(TraceFunctionList& fList,
c->callCount() += pBack * call->callCount();
#ifdef DEBUG_COVERAGE
- qDebug("CngCov:%s > %s: forward %f, back %f, calls %f -> %f, now %f",
+ tqDebug("CngCov:%s > %s: forward %f, back %f, calls %f -> %f, now %f",
spaces+strlen(spaces)-d,
calling->prettyName().ascii(),
pForwardNew, pBackNew,
@@ -305,7 +305,7 @@ void Coverage::addCallingCoverage(TraceFunctionList& fList,
double fFactor = 1.0 / (1.0 - pForwardNew / c->firstPercentage());
double bFactor = 1.0 / (1.0 - pBackNew);
#ifdef DEBUG_COVERAGE
- qDebug("CngCov:%s Recursion - origP %f, actP %f => factor %f, newP %f",
+ tqDebug("CngCov:%s Recursion - origP %f, actP %f => factor %f, newP %f",
spaces+strlen(spaces)-d,
c->firstPercentage(), pForwardNew,
fFactor, pForwardNew * fFactor);