@@ -141,7 +141,7 @@ class FlowEdgeFunctionCache {
141141 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
142142 << " (N) Call Stmt : " << problem.NtoString (callStmt));
143143 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
144- << " (M) Dest Mthd : " << problem.MtoString (destMthd));
144+ << " (M) Dest Mthd : " << problem.FtoString (destMthd));
145145 auto key = std::tie (callStmt, destMthd);
146146 if (CallFlowFunctionCache.count (key)) {
147147 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
@@ -172,7 +172,7 @@ class FlowEdgeFunctionCache {
172172 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
173173 << " (N) Call Site : " << problem.NtoString (callSite));
174174 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
175- << " (M) Callee : " << problem.MtoString (calleeMthd));
175+ << " (M) Callee : " << problem.FtoString (calleeMthd));
176176 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
177177 << " (N) Exit Stmt : " << problem.NtoString (exitStmt));
178178 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
@@ -213,7 +213,7 @@ class FlowEdgeFunctionCache {
213213 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG) << " (M) Callee's : " );
214214 for (auto callee : callees) {
215215 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
216- << " " << problem.MtoString (callee));
216+ << " " << problem.FtoString (callee));
217217 }
218218 auto key = std::tie (callSite, retSite, callees);
219219 if (CallToRetFlowFunctionCache.count (key)) {
@@ -248,7 +248,7 @@ class FlowEdgeFunctionCache {
248248 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
249249 << " (N) Call Stmt : " << problem.NtoString (callStmt));
250250 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
251- << " (M) Dest Mthd : " << problem.MtoString (destMthd));
251+ << " (M) Dest Mthd : " << problem.FtoString (destMthd));
252252 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG) << ' ' );
253253 auto ff = problem.getSummaryFlowFunction (callStmt, destMthd);
254254 return ff;
@@ -297,7 +297,7 @@ class FlowEdgeFunctionCache {
297297 << " (D) Src Node : " << problem.DtoString (srcNode));
298298 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
299299 << " (M) Dest Mthd : "
300- << problem.MtoString (destinationMethod));
300+ << problem.FtoString (destinationMethod));
301301 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
302302 << " (D) Dest Node : " << problem.DtoString (destNode));
303303 auto key = std::tie (callStmt, srcNode, destinationMethod, destNode);
@@ -329,7 +329,7 @@ class FlowEdgeFunctionCache {
329329 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
330330 << " (N) Call Site : " << problem.NtoString (callSite));
331331 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
332- << " (M) Callee : " << problem.MtoString (calleeMethod));
332+ << " (M) Callee : " << problem.FtoString (calleeMethod));
333333 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
334334 << " (N) Exit Stmt : " << problem.NtoString (exitStmt));
335335 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
@@ -375,7 +375,7 @@ class FlowEdgeFunctionCache {
375375 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG) << " (M) Callee's : " );
376376 for (auto callee : callees) {
377377 LOG_IF_ENABLE (BOOST_LOG_SEV (lg, DEBUG)
378- << " " << problem.MtoString (callee));
378+ << " " << problem.FtoString (callee));
379379 }
380380 auto key = std::tie (callSite, callNode, retSite, retSiteNode);
381381 if (CallToRetEdgeFunctionCache.count (key)) {
0 commit comments