|
@@ -69,7 +69,6 @@ void CallGraphManager::generateProjectCallGraph() {
|
|
|
errs() << "```mermaid\n";
|
|
|
errs() << "graph TD\n";
|
|
|
errs() << " %% Project Call Graph\n";
|
|
|
-
|
|
|
for (const auto &pair : callGraph) {
|
|
|
const std::string &name = pair.first;
|
|
|
const CallNode &node = pair.second;
|
|
@@ -80,7 +79,6 @@ void CallGraphManager::generateProjectCallGraph() {
|
|
|
<< "\\nCritical Points: " << criticalPoints
|
|
|
<< "\"]" << style << "\n";
|
|
|
}
|
|
|
-
|
|
|
for (const auto &pair : callGraph) {
|
|
|
const std::string &name = pair.first;
|
|
|
const CallNode &node = pair.second;
|
|
@@ -111,18 +109,15 @@ std::string CallGraphManager::sanitizeNodeId(const std::string &name) {
|
|
|
if (!id.empty() && id[0] == '%') {
|
|
|
id = id.substr(1);
|
|
|
}
|
|
|
-
|
|
|
// 替换非法字符
|
|
|
std::replace(id.begin(), id.end(), '.', '_');
|
|
|
std::replace(id.begin(), id.end(), ' ', '_');
|
|
|
std::replace(id.begin(), id.end(), '-', '_');
|
|
|
std::replace(id.begin(), id.end(), '%', '_');
|
|
|
-
|
|
|
// 确保ID以字母开头
|
|
|
if (!id.empty() && std::isdigit(id[0])) {
|
|
|
id = "block_" + id;
|
|
|
}
|
|
|
-
|
|
|
return id;
|
|
|
}
|
|
|
|
|
@@ -141,16 +136,13 @@ void CallGraphManager::dumpControlFlowGraph(Function &F) {
|
|
|
// logger.enableFunction("dumpControlFlowGraph");
|
|
|
LOG_INFO("dumpControlFlowGraph", "Generating control flow graph for function: {0}",
|
|
|
F.getName().str());
|
|
|
-
|
|
|
if (F.empty()) {
|
|
|
LOG_WARNING("dumpControlFlowGraph", "Function is empty!");
|
|
|
return;
|
|
|
}
|
|
|
-
|
|
|
LOG_INFO("dumpControlFlowGraph", "Starting Mermaid graph generation");
|
|
|
errs() << "```mermaid: " << F.getName().str() << "\n";
|
|
|
errs() << "graph TD\n";
|
|
|
-
|
|
|
for (BasicBlock &BB : F) {
|
|
|
std::string nodeId = getNodeId(&BB);
|
|
|
if (!nodeId.empty() && nodeId[0] == '%') {
|
|
@@ -199,7 +191,6 @@ void CallGraphManager::dumpControlFlowGraph(Function &F) {
|
|
|
if (!succId.empty() && succId[0] == '%') {
|
|
|
succId = succId.substr(1);
|
|
|
}
|
|
|
-
|
|
|
std::replace(succId.begin(), succId.end(), '.', '_');
|
|
|
std::replace(succId.begin(), succId.end(), ' ', '_');
|
|
|
std::replace(succId.begin(), succId.end(), '%', '_');
|