Parcourir la source

enhance: organize code

Shellmiao il y a 1 mois
Parent
commit
e750877c7d
3 fichiers modifiés avec 0 ajouts et 13 suppressions
  1. 0 1
      src/Fusion/SliceAnalyzer.cpp
  2. 0 3
      src/ModuleFusion.cpp
  3. 0 9
      src/Util/CallGraphManager.cpp

+ 0 - 1
src/Fusion/SliceAnalyzer.cpp

@@ -397,7 +397,6 @@ void SliceAnalyzer::countFusionPoints(Function& F, CallNode& callNode) {
             succValid = false;
         }
         
-        // 修改:如果前驱有效,则后继必须无效
         if (predValid) {
             succValid = false;
         }

+ 0 - 3
src/ModuleFusion.cpp

@@ -47,9 +47,6 @@ namespace {
             logger.setGlobalLevel(logging::LogLevel::TRACE);
             // 配置Log输出权限
             logger.enableFunction("runOnModule");
-            logger.enableFunction("generateFusionMatchGraph");
-            logger.enableFunction("performCodeFusion");
-            logger.enableFunction("updateCallSite");
 
             LOG_INFO("runOnModule", "Starting analysis for module: {0}", M.getName().str());
 

+ 0 - 9
src/Util/CallGraphManager.cpp

@@ -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(), '%', '_');